From 6addca09bea681b8421a054e8235397d0c8b21ba Mon Sep 17 00:00:00 2001 From: Joywambui-maina Date: Mon, 17 Aug 2026 17:16:53 -0700 Subject: [PATCH] feat(wrapper-generator): generate remaining OData operation shapes - Emit media/content downloads (78 routes), completing the shape list in #3709 - Stamp each cmdlet with a [GraphRoute] attribute so the parity gate reads the operation's route from the compiled assembly rather than reconstructing it from generated C#, removing the cast and parameterized-function exclusions that left 1,669 cmdlets unverified - Order Count before the cast suffix on /$count routes (126 cmdlets) - Drop the unusable -OutFile parameter from content writes returning an entity - Collapse the three parallel OData segment tables into one - Refresh generator docs against measured figures 38/38 modules generate and build, 184/184 tests. --- tools/Build-WrapperModule.ps1 | 111 +- tools/Compare-WrapperCmdletNames.ps1 | 174 +- tools/Compare-WrapperOperationInventory.ps1 | 35 +- tools/Derive-CollisionResolutions.ps1 | 76 +- tools/Derive-ParityResolutions.ps1 | 282 + tools/Invoke-WrapperGates.ps1 | 250 + tools/Templates/WrapperClient.csproj.template | 17 + tools/Templates/WrapperModule.csproj.template | 29 + tools/Test-WrapperModule.ps1 | 54 +- .../ActionFunctionTests.cs | 866 + .../GenerationServiceRegressionTests.cs | 24 +- tools/WrapperGenerator.Tests/NamingTests.cs | 9 + .../ParityDataDriftTests.cs | 48 + tools/WrapperGenerator/CmdletEmitter.cs | 477 +- tools/WrapperGenerator/CmdletNaming.cs | 369 +- .../DerivedCollisionResolutions.cs | 26 +- tools/WrapperGenerator/NamingOverrides.cs | 85 +- tools/WrapperGenerator/OperationInfo.cs | 17 +- .../PowerShellWrapperGenerationService.cs | 397 +- tools/WrapperGenerator/Program.cs | 12 +- tools/WrapperGenerator/README.md | 16 +- tools/WrapperGenerator/SchemaProperties.cs | 26 +- .../WrapperGenerator/WrapperGenerator.csproj | 3 + .../data/collision-inventory.v1.0.txt | 527 +- .../data/collision-renames.v1.0.json | 2105 +- .../data/collision-resolution-ledger.v1.0.csv | 935 +- .../data/collision-suppressions.v1.0.json | 4017 ++- .../data/parity-input-ledger.v1.0.csv | 13947 ++++++++++ .../data/parity-renames.v1.0.json | 19688 ++++++++++++++ .../data/parity-resolution-ledger.v1.0.csv | 10929 ++++++++ .../data/parity-suppressions.v1.0.json | 22682 ++++++++++++++++ .../docs/body-property-binding.md | 40 +- .../edge-cases/action-function-edge-cases.md | 192 + .../edge-cases/body-binding-edge-cases.md | 50 +- 34 files changed, 76378 insertions(+), 2137 deletions(-) create mode 100644 tools/Derive-ParityResolutions.ps1 create mode 100644 tools/Invoke-WrapperGates.ps1 create mode 100644 tools/Templates/WrapperClient.csproj.template create mode 100644 tools/Templates/WrapperModule.csproj.template create mode 100644 tools/WrapperGenerator.Tests/ActionFunctionTests.cs create mode 100644 tools/WrapperGenerator.Tests/ParityDataDriftTests.cs create mode 100644 tools/WrapperGenerator/data/parity-input-ledger.v1.0.csv create mode 100644 tools/WrapperGenerator/data/parity-renames.v1.0.json create mode 100644 tools/WrapperGenerator/data/parity-resolution-ledger.v1.0.csv create mode 100644 tools/WrapperGenerator/data/parity-suppressions.v1.0.json create mode 100644 tools/WrapperGenerator/docs/edge-cases/action-function-edge-cases.md diff --git a/tools/Build-WrapperModule.ps1 b/tools/Build-WrapperModule.ps1 index 571994e82ce..c7bbff8dfa7 100644 --- a/tools/Build-WrapperModule.ps1 +++ b/tools/Build-WrapperModule.ps1 @@ -8,9 +8,10 @@ For each module name, reproduces the pipeline the Mail spike proved: 1. kiota generate -> //src/Client (ApiClient + models) 2. WrapperGenerator -> //src/Cmdlets (one *.g.cs per cmdlet) - 3. write csproj -> //src/ - 4. dotnet build -> //src/bin//net10.0/ - 5. New-ModuleManifest -> .psd1 next to the dll + 3. write client project -> //src/Client/Client.csproj + 4. write wrapper project -> //src/.csproj + 5. dotnet build -> //src/bin//net10.0/ + 6. New-ModuleManifest -> .psd1 next to the dll Both generators consume the SAME OpenAPI document, so the wrappers always match the client they compile against. @@ -86,26 +87,55 @@ if (-not $SpecRoot) { $SpecRoot = Join-Path $repoRoot 'openApiDocs_KiotaCompat' if (-not $OutputRoot) { $OutputRoot = Join-Path $repoRoot 'artifacts\wrapper-modules' } $generatorProject = Join-Path $repoRoot 'tools\WrapperGenerator' $authCsproj = Join-Path $repoRoot 'src\Authentication\Authentication\Microsoft.Graph.Authentication.csproj' +$clientProjectTemplate = Join-Path $PSScriptRoot 'Templates\WrapperClient.csproj.template' +$moduleProjectTemplate = Join-Path $PSScriptRoot 'Templates\WrapperModule.csproj.template' if (-not (Get-Command kiota -ErrorAction SilentlyContinue)) { Write-Error "kiota CLI not found on PATH. Install: dotnet tool install --global Microsoft.OpenApi.Kiota" exit 1 } -# Same extraction the parity gate uses: the emitted [Cmdlet(VerbsX.Verb, "Noun")] attribute -# is the source of truth for what the dll will export, without having to load the assembly. -$cmdletAttrPattern = '\[Cmdlet\(Verbs\w+\.(\w+),\s*"((?:\\.|[^"\\])*)"' -function Get-EmittedCmdletNames { - param([string]$CmdletsDir) - Get-ChildItem -Path $CmdletsDir -Filter '*.g.cs' -File | ForEach-Object { - $match = [regex]::Match((Get-Content -Path $_.FullName -Raw), $cmdletAttrPattern) - if ($match.Success) { - "$($match.Groups[1].Value)-$([regex]::Unescape($match.Groups[2].Value))" - } +function New-ProjectFromTemplate { + param( + [Parameter(Mandatory)][string]$TemplatePath, + [Parameter(Mandatory)][string]$DestinationPath, + [Parameter(Mandatory)][hashtable]$Replacements + ) + + $content = Get-Content -Path $TemplatePath -Raw + foreach ($placeholder in $Replacements.Keys) { + $content = $content.Replace("{$placeholder}", $Replacements[$placeholder]) + } + $unresolved = [regex]::Matches($content, '\{[A-Za-z][A-Za-z0-9]*\}') | ForEach-Object Value | Sort-Object -Unique + if ($unresolved) { + throw "unresolved placeholder(s) in $TemplatePath`: $($unresolved -join ', ')" + } + Set-Content -Path $DestinationPath -Value $content -Encoding utf8 +} + +function Get-CompiledCmdletNames { + param([Parameter(Mandatory)][string]$AssemblyPath) + + # Import in a child process so discovery observes the compiled binary PowerShell will load, + # and so assemblies from one module cannot contaminate or lock the next module's build. + $escapedAssemblyPath = $AssemblyPath.Replace("'", "''") + $discovery = @" +`$ErrorActionPreference = 'Stop' +`$module = Import-Module -Name '$escapedAssemblyPath' -PassThru +[pscustomobject]@{ Cmdlets = @(`$module.ExportedCmdlets.Keys | Sort-Object) } | + ConvertTo-Json -Compress +"@ + $encodedDiscovery = [Convert]::ToBase64String([Text.Encoding]::Unicode.GetBytes($discovery)) + $output = & pwsh -NoProfile -NonInteractive -EncodedCommand $encodedDiscovery 2>&1 + if ($LASTEXITCODE -ne 0) { + throw "compiled module discovery failed: $(($output | Select-Object -Last 3) -join ' | ')" } + $json = $output | Where-Object { $_ -match '^\{' } | Select-Object -Last 1 + if (-not $json) { throw 'compiled module discovery produced no result' } + @((ConvertFrom-Json $json).Cmdlets) } -function Build-OneModule { +function Build-Module { param([string]$Name) $started = Get-Date @@ -168,7 +198,7 @@ function Build-OneModule { $result.FailedAt = 'wrapper-generator' $lines = @($wrapperOut | ForEach-Object { "$_" }) $exception = $lines | Where-Object { $_ -match 'Unhandled exception|Exception:' } | Select-Object -First 1 - $exceptionIndex = if ($exception) { $lines.IndexOf($exception) } else { -1 } + $exceptionIndex = if ($exception) { [Array]::IndexOf($lines, $exception) } else { -1 } $result.Error = if ($exceptionIndex -ge 0) { ($lines[$exceptionIndex..([Math]::Min($exceptionIndex + 5, $lines.Count - 1))] | Where-Object { $_ -notmatch '^\s+at ' }) -join ' | ' } else { @@ -177,38 +207,22 @@ function Build-OneModule { return $result } - # Relative to $srcDir rather than the absolute $authCsproj, so the csproj is portable - # across clones and stays correct if a module's output folder ever moves (the eventual - # src/// commit target sits at a different depth than - # artifacts/wrapper-modules//src/). + $clientAssemblyName = "$moduleName.Client" + $clientCsprojPath = Join-Path $clientDir 'Client.csproj' + New-ProjectFromTemplate -TemplatePath $clientProjectTemplate -DestinationPath $clientCsprojPath -Replacements @{ + ClientAssemblyName = $clientAssemblyName + } + + # Project references are relative so generated projects remain portable across clones + # and across the artifacts and eventual src///wrapper layouts. $csprojPath = Join-Path $srcDir "$moduleName.csproj" $authCsprojRelative = [System.IO.Path]::GetRelativePath($srcDir, $authCsproj) -replace '/', '\' - @" - - - - - net10.0 - latest - enable - enable - $moduleName - - true - `$(NoWarn);CS1591 - - - - - - - - - - - - -"@ | Set-Content -Path $csprojPath -Encoding utf8 + $clientCsprojRelative = [System.IO.Path]::GetRelativePath($srcDir, $clientCsprojPath) -replace '/', '\' + New-ProjectFromTemplate -TemplatePath $moduleProjectTemplate -DestinationPath $csprojPath -Replacements @{ + ModuleAssemblyName = $moduleName + ClientProjectPath = $clientCsprojRelative + AuthenticationProjectPath = $authCsprojRelative + } $buildOut = & dotnet build $csprojPath -c $Configuration --nologo -v minimal 2>&1 if ($LASTEXITCODE -ne 0) { @@ -217,10 +231,11 @@ function Build-OneModule { return $result } - $cmdlets = @(Get-EmittedCmdletNames -CmdletsDir $cmdletsDir) + $binDir = Join-Path $srcDir "bin\$Configuration\net10.0" + $assemblyPath = Join-Path $binDir "$moduleName.dll" + $cmdlets = @(Get-CompiledCmdletNames -AssemblyPath $assemblyPath) if ($cmdlets.Count -eq 0) { $result.FailedAt = 'manifest'; $result.Error = 'no cmdlets emitted'; return $result } - $binDir = Join-Path $srcDir "bin\$Configuration\net10.0" $psd1Path = Join-Path $binDir "$moduleName.psd1" New-ModuleManifest -Path $psd1Path ` -RootModule "$moduleName.dll" ` @@ -247,7 +262,7 @@ function Build-OneModule { $results = foreach ($name in $Module) { Write-Host "=== $name ===" -ForegroundColor Cyan - $r = Build-OneModule -Name $name + $r = Build-Module -Name $name if ($r.Status -eq 'OK') { Write-Host " OK: $($r.CmdletCount) cmdlets -> $($r.Psd1) ($($r.Seconds)s)" -ForegroundColor Green } diff --git a/tools/Compare-WrapperCmdletNames.ps1 b/tools/Compare-WrapperCmdletNames.ps1 index de2564b7088..5ce9651446a 100644 --- a/tools/Compare-WrapperCmdletNames.ps1 +++ b/tools/Compare-WrapperCmdletNames.ps1 @@ -57,7 +57,10 @@ Path to MgCommandMetadata.json. [CmdletBinding()] param( [string]$GeneratedPath = (Join-Path $PSScriptRoot '..\generated'), - [string]$OraclePath = (Join-Path $PSScriptRoot '..\src\Authentication\Authentication\custom\common\MgCommandMetadata.json') + [string]$OraclePath = (Join-Path $PSScriptRoot '..\src\Authentication\Authentication\custom\common\MgCommandMetadata.json'), + # Machine-readable copy of every per-file disposition, so downstream tooling (the parity + # derivation) consumes this gate's oracle join instead of re-implementing it and drifting. + [string]$OutLedger ) $ErrorActionPreference = 'Stop' @@ -98,28 +101,56 @@ function ConvertTo-NormalizedOracleUri { '/' + ($norm -join '/') } -function ConvertTo-NormalizedGeneratedUri { - param([string]$BuilderExpression) - $segments = @() - foreach ($token in ($BuilderExpression -split '\.')) { - if ($token -notmatch '^([A-Za-z0-9]+)(\[([A-Za-z0-9]+)\])?$') { - return $null +# Reads the v1.0/beta segment out of a module's kiota-lock.json ("descriptionLocation": +# "../../openApiDocs/v1.0/Mail.yml"), so the oracle join can be scoped to the ApiVersion +# the module was actually generated from instead of guessing. +# The [GraphRoute] attribute the generator stamps on every emitted cmdlet, read from the module's +# COMPILED assembly rather than from the source text. The route is the operation's identity exactly +# as the spec declares it, so the oracle join needs no reconstruction: deriving the route from the +# builder expression is lossy for a parameterized function (the member keeps the argument names but +# not the OData argument syntax) and wrong for a namespace-qualified action (kiota keeps the +# qualifier, the route does not) — which is why those two shapes could not be verified at all. +function Get-GraphRouteMap { + param([Parameter(Mandatory)][string]$CmdletsPath, [string]$BuildConfiguration = 'Release') + + $binDir = Join-Path (Split-Path $CmdletsPath -Parent) "bin/$BuildConfiguration/net10.0" + if (-not (Test-Path $binDir)) { return $null } + $dll = Get-ChildItem -Path $binDir -Filter 'Microsoft.Graph.Wrapper.*.dll' -File -ErrorAction SilentlyContinue | + Where-Object { $_.Name -notlike '*.Client.dll' } | Select-Object -First 1 + if (-not $dll) { return $null } + + $assembly = [System.Reflection.Assembly]::LoadFrom($dll.FullName) + # The cmdlet classes derive from PSCmdlet, so a host without the PowerShell SDK loaded cannot + # realise them; the partial list the exception carries is the usable result. + try { $types = $assembly.GetTypes() } + catch [System.Reflection.ReflectionTypeLoadException] { $types = $_.Exception.Types | Where-Object { $_ } } + + $map = @{} + foreach ($type in $types) { + $attr = $type.GetCustomAttributesData() | Where-Object { $_.AttributeType.Name -eq 'GraphRouteAttribute' } + if ($attr) { + $map[$type.Name] = [pscustomobject]@{ + Method = [string]$attr.ConstructorArguments[0].Value + Path = [string]$attr.ConstructorArguments[1].Value + } } - $prop = $Matches[1] - # Kiota cast builder members (MicrosoftGraphUser, or GraphUser from the KiotaCompat - # specs' "graph.user" form) cannot be translated back to the oracle's URI spelling - # ("microsoft.graph.user"), so cast chains are unparseable here and get reported as - # skipped at the call site until cast endpoints are supported end to end. - if ($prop -match '^(MicrosoftGraph|Graph)[A-Z]') { return $null } - $segments += ($prop.Substring(0, 1).ToLowerInvariant() + $prop.Substring(1)) - if ($Matches[3]) { $segments += '{param}' } } - '/' + ($segments -join '/') + return $map +} + +# The route as the oracle spells it. Two differences are systematic: the oracle drops a cast or +# namespace qualifier from a segment ("graph.room" and "microsoft.graph.security.moveAlerts" ship +# as "room" and "moveAlerts"), and it records a zero-argument function without its parentheses. +function ConvertTo-OracleJoinKey { + param([Parameter(Mandatory)][string]$Path) + + $withoutEmptyArgs = $Path -replace '\(\)', '' + $unqualified = ($withoutEmptyArgs -split '/' | ForEach-Object { + if ($_ -match '^(microsoft\.)?graph\.') { ($_ -split '\.')[-1] } else { $_ } + }) -join '/' + ConvertTo-NormalizedOracleUri -Uri $unqualified } -# Reads the v1.0/beta segment out of a module's kiota-lock.json ("descriptionLocation": -# "../../openApiDocs/v1.0/Mail.yml"), so the oracle join can be scoped to the ApiVersion -# the module was actually generated from instead of guessing. function Get-ModuleApiVersion { param([string]$ModulePath) $lockPath = Join-Path $ModulePath 'kiota-lock.json' @@ -133,8 +164,8 @@ function Get-ModuleApiVersion { # Published names the generator deliberately corrects instead of reproducing. Each entry maps # the shipped (wrong) command to the corrected one the generator emits, and must have a matching -# entry in tools/WrapperGenerator/docs/edge-cases/naming-edge-cases.md and a pinned naming test. The -# gate reports these as [CORRECTED] instead of [MISMATCH] and does not fail on them. +# entry in tools/WrapperGenerator/docs/edge-cases/naming-edge-cases.md and a pinned naming test. +# The gate reports these as [CORRECTED] instead of [MISMATCH] and does not fail on them. $deliberateCorrections = @{ # AutoRest inflected the trailing /whois segment to "Whoi"; the other 28 whois-family # cmdlets (whoisRecords, whoisHistoryRecords) all keep "Whois". @@ -172,22 +203,32 @@ Write-Host '' # determined, so an unresolvable version shows up as a real ambiguity, not a false match. function Find-OracleCommands { param([hashtable]$Index, [string]$ApiVersion, [string]$Method, [string]$NormalizedUri) - if ($ApiVersion) { - return $Index["$ApiVersion|$Method|$NormalizedUri"] - } - $merged = [System.Collections.Generic.HashSet[string]]::new() - foreach ($v in 'v1.0', 'beta') { - $found = $Index["$v|$Method|$NormalizedUri"] - if ($found) { [void]$merged.UnionWith($found) } + + # A media download is reached by two spellings — the OData /$value segment and a literal + # /content segment — and the oracle does not always use the one the spec declares. Both are + # tried so neither shape silently reads as "the SDK ships nothing for this route". + $candidates = @($NormalizedUri) + if ($NormalizedUri.Contains('$value')) { $candidates += $NormalizedUri.Replace('$value', 'content') } + + foreach ($uri in $candidates) { + if ($ApiVersion) { + $hit = $Index["$ApiVersion|$Method|$uri"] + if ($hit) { return $hit } + continue + } + $merged = [System.Collections.Generic.HashSet[string]]::new() + foreach ($v in 'v1.0', 'beta') { + $found = $Index["$v|$Method|$uri"] + if ($found) { [void]$merged.UnionWith($found) } + } + if ($merged.Count -gt 0) { return $merged } } - if ($merged.Count -eq 0) { return $null } - return $merged + return $null } # The emitter escapes spec-derived nouns for C# string literals (CmdletEmitter.EscapeLiteral), # so the pattern accepts escaped sequences and the noun is unescaped after matching. $cmdletAttrPattern = '\[Cmdlet\(Verbs\w+\.(\w+),\s*"((?:\\.|[^"\\])*)"' -$callChainPattern = 'client\.([A-Za-z0-9_.\[\]]+)\.(Get|Post|Patch|Put|Delete)Async\(' $modules = @(Get-WrapperModuleFolders -Root $GeneratedPath) if ($modules.Count -eq 0) { @@ -195,6 +236,16 @@ if ($modules.Count -eq 0) { exit 1 } +$ledger = [System.Collections.Generic.List[object]]::new() +function Add-LedgerRow { + param($Module, $File, $ApiVersion, $Command, $Method, $Uri, $Disposition, $OracleCommands) + $ledger.Add([pscustomobject]@{ + Module = $Module; File = $File; ApiVersion = $ApiVersion; Command = $Command + Method = $Method; Uri = $Uri; Disposition = $Disposition + OracleCommands = (@($OracleCommands) -join ';') + }) +} + $totalJoinable = 0 $totalMatched = 0 $totalMismatches = 0 @@ -205,6 +256,15 @@ $totalCorrected = 0 foreach ($module in $modules | Sort-Object Name) { $files = Get-ChildItem -Path $module.Path -Filter '*.g.cs' -File | Sort-Object Name $apiVersion = Get-ModuleApiVersion -ModulePath $module.Path + + # Ground truth comes from the compiled assembly. Without it there is nothing to verify against, + # and a gate that quietly falls back to guessing the route is how 1,585 cmdlets came to pass by + # never being examined — so this fails loudly instead. + $routeMap = Get-GraphRouteMap -CmdletsPath $module.Path + if (-not $routeMap -or $routeMap.Count -eq 0) { + Write-Error "No compiled assembly with [GraphRoute] metadata for '$($module.Name)'. Build the module before running the parity gate." + exit 1 + } $moduleJoinable = 0 $moduleMatched = 0 $moduleDispatchers = 0 @@ -227,53 +287,51 @@ foreach ($module in $modules | Sort-Object Name) { $generatedCommand = "$verb-$generatedNoun" $expectedCommand = "$verb-$publishedNoun" - $callMatch = [regex]::Match($content, $callChainPattern) - if (-not $callMatch.Success) { - # Only a real dispatcher (forwards via InvokeScript) legitimately has no Graph - # call. Anything else with no reconstructable call is a malformed emission and - # must fail the gate instead of hiding in the dispatcher bucket. - if ($content -match 'InvokeCommand\.InvokeScript') { - $moduleDispatchers++ - continue # dispatcher: delegates to internal cmdlets, nothing to reconstruct here - } - $moduleJoinable++ - $moduleProblems += " [NO CALL] $($file.Name): contains no reconstructable Graph call and is not a dispatcher - likely a malformed emission." + # A dispatcher issues no request of its own; it forwards to the _List/_Get pair, whose + # names carry the same published noun and are verified in their own right. + if ($content -match 'InvokeCommand\.InvokeScript') { + $moduleDispatchers++ + Add-LedgerRow $module.Name $file.Name $apiVersion $expectedCommand '' '' 'dispatcher' @() continue } - $builderExpr = $callMatch.Groups[1].Value - $method = $callMatch.Groups[2].Value.ToUpperInvariant() - $normalizedUri = ConvertTo-NormalizedGeneratedUri -BuilderExpression $builderExpr - - if (-not $normalizedUri) { - # Known-unsupported shapes (OData cast chains) are reported but excluded from the - # match ratio and do not fail the gate, mirroring how dispatchers are handled. - $moduleUnparseable++ - $moduleSkips += " [UNPARSEABLE] $($file.Name): builder expression '$builderExpr' contains an OData cast segment - cast endpoints aren't generated end to end yet, so there is nothing to verify." + $route = $routeMap[(($file.Name -replace '\.g\.cs$', '') + 'Command')] + if (-not $route) { + $moduleJoinable++ + $moduleProblems += " [NO ROUTE] $($file.Name): the compiled assembly carries no [GraphRoute] for this cmdlet - it was not emitted by this generator, or the build is stale." + Add-LedgerRow $module.Name $file.Name $apiVersion $expectedCommand '' '' 'no-route' @() continue } + $method = $route.Method.ToUpperInvariant() + $normalizedUri = ConvertTo-OracleJoinKey -Path $route.Path + $moduleJoinable++ $candidates = Find-OracleCommands -Index $oracleIndex -ApiVersion $apiVersion -Method $method -NormalizedUri $normalizedUri if (-not $candidates -or $candidates.Count -eq 0) { $moduleProblems += " [NO ORACLE ENTRY] $($file.Name): '$generatedCommand' -> reconstructed $method $normalizedUri, no oracle row for that Method+URI." + Add-LedgerRow $module.Name $file.Name $apiVersion $expectedCommand $method $normalizedUri 'no-oracle' @() } elseif ($candidates.Count -gt 1) { $moduleProblems += " [AMBIGUOUS] $($file.Name): $method $normalizedUri matches multiple oracle commands: $($candidates -join ', ')." + Add-LedgerRow $module.Name $file.Name $apiVersion $expectedCommand $method $normalizedUri 'ambiguous' $candidates } elseif ($candidates.Contains($expectedCommand)) { $moduleMatched++ + Add-LedgerRow $module.Name $file.Name $apiVersion $expectedCommand $method $normalizedUri 'matched' $candidates } else { $oracleCommand = $candidates | Select-Object -First 1 if ($deliberateCorrections[$oracleCommand] -eq $expectedCommand) { $moduleCorrected++ $moduleCorrections += " [CORRECTED] $($file.Name): oracle ships '$oracleCommand'; generator deliberately emits '$expectedCommand' (see tools/WrapperGenerator/docs/edge-cases/naming-edge-cases.md)." + Add-LedgerRow $module.Name $file.Name $apiVersion $expectedCommand $method $normalizedUri 'corrected' $candidates } else { $moduleProblems += " [MISMATCH] $($file.Name): generated '$expectedCommand', oracle says '$oracleCommand' for $method $normalizedUri." + Add-LedgerRow $module.Name $file.Name $apiVersion $expectedCommand $method $normalizedUri 'mismatch' $candidates } } } @@ -299,7 +357,21 @@ foreach ($module in $modules | Sort-Object Name) { Write-Host '' Write-Host "TOTAL: $totalMatched of $totalJoinable cmdlets match the oracle across $($modules.Count) module(s) (+$totalDispatchers dispatcher cmdlet(s) skipped, +$totalUnparseable cast cmdlet(s) skipped, +$totalCorrected deliberately corrected)." +if ($OutLedger) { + $ledger | Export-Csv -Path $OutLedger -NoTypeInformation + Write-Host "ledger: $($ledger.Count) row(s) -> $OutLedger" +} + if ($totalMismatches -gt 0) { exit 1 } + +# Only mismatches failed above, so a run that joined nothing reported "0 of 0" and exited clean - +# a pass earned by comparing no cmdlet to no oracle entry. That is indistinguishable from success +# in CI, and it is the shape a wrong -GeneratedPath or an empty output tree produces. +if ($totalJoinable -eq 0) { + Write-Host "FAILED: no generated cmdlet could be joined to the oracle, so nothing was verified." -ForegroundColor Red + Write-Host " Check -GeneratedPath points at a folder of emitted *.g.cs cmdlets." -ForegroundColor Red + exit 1 +} exit 0 diff --git a/tools/Compare-WrapperOperationInventory.ps1 b/tools/Compare-WrapperOperationInventory.ps1 index 31e08476111..de7b51686fe 100644 --- a/tools/Compare-WrapperOperationInventory.ps1 +++ b/tools/Compare-WrapperOperationInventory.ps1 @@ -22,11 +22,26 @@ param( [string]$Path, [Parameter(Mandatory)] [string]$Baseline, - [string]$Compare + [string]$Compare, + [switch]$AllowSameGenerator ) $ErrorActionPreference = 'Stop' +# The comparison answers "did the generator change which operations become cmdlets", which it can +# only answer if the generator actually changed between the two captures. A baseline taken from the +# same generator build reports "unchanged" no matter what, so the stamp is recorded alongside it and +# checked on compare. -AllowSameGenerator is for the legitimate case: proving regeneration is +# deterministic, where an identical generator is the point. +function Get-GeneratorStamp { + # Code AND embedded data: the derived naming data changes which operations generate without + # touching a .cs file, so a code-only stamp would call a data-driven change "same generator". + $sources = @(Get-ChildItem -Path (Join-Path $PSScriptRoot 'WrapperGenerator') -Recurse -File -Include *.cs, *.json -ErrorAction SilentlyContinue | + Where-Object { $_.FullName -notmatch '\\(bin|obj)\\' }) + if (-not $sources) { return 'unknown' } + ($sources | Sort-Object LastWriteTimeUtc -Descending | Select-Object -First 1).LastWriteTimeUtc.ToString('o') +} + $cmdletAttrPattern = '\[Cmdlet\(Verbs\w+\.(\w+),\s*"((?:\\.|[^"\\])*)"' $builderPattern = 'client\.([A-Za-z0-9_\[\]\.]+?)\.(?:Get|Post|Patch|Delete|Put)Async' @@ -65,8 +80,11 @@ if ($inventory.Count -eq 0) { exit 2 } +$stampFile = "$Baseline.generator" + if (-not $Compare) { $inventory | Export-Csv $Baseline -NoTypeInformation + Set-Content -Path $stampFile -Value (Get-GeneratorStamp) -NoNewline "baseline: $($inventory.Count) cmdlets -> $Baseline" exit 0 } @@ -75,6 +93,21 @@ $inventory | Export-Csv $Compare -NoTypeInformation $before = Import-Csv $Baseline $after = Import-Csv $Compare +$nowStamp = Get-GeneratorStamp +if (Test-Path $stampFile) { + $thenStamp = (Get-Content $stampFile -Raw).Trim() + if ($thenStamp -eq $nowStamp -and -not $AllowSameGenerator) { + Write-Host "FAILED: the baseline was captured from this same generator ($nowStamp)." -ForegroundColor Red + Write-Host " 'unchanged' would be guaranteed, so the comparison proves nothing." -ForegroundColor Red + Write-Host " Capture the baseline before changing the generator, or pass -AllowSameGenerator" -ForegroundColor Red + Write-Host " if an identical generator is deliberate (a determinism check)." -ForegroundColor Red + exit 2 + } +} +else { + Write-Warning "No generator stamp beside '$Baseline'; cannot tell whether it predates this generator." +} + # Identity is the whole tuple, so an operation swapping which cmdlet/file it owns shows up as # one removal plus one addition rather than as no change at all. function Key($r) { "{0}|{1}|{2}|{3}" -f $r.Module, $r.Cmdlet, $r.RequestPath, $r.File } diff --git a/tools/Derive-CollisionResolutions.ps1 b/tools/Derive-CollisionResolutions.ps1 index 6171f01fbb7..a1665741b09 100644 --- a/tools/Derive-CollisionResolutions.ps1 +++ b/tools/Derive-CollisionResolutions.ps1 @@ -66,18 +66,17 @@ $ErrorActionPreference = 'Stop' # ---- parse the inventory ------------------------------------------------------------------- $lineRx = "^(?[^:]+?) :: (?\S+): '(?[A-Za-z]+)-(?[A-Za-z0-9]+) \[(?[^\]]*(?:\[[^\]]*\][^\]]*)*)\]' collides with already-written '(?[A-Za-z]+)-(?[A-Za-z0-9]+) \[(?[^\]]*(?:\[[^\]]*\][^\]]*)*)\]'$" -$verbToMethod = @{ Get = 'GET'; New = 'POST'; Update = 'PATCH'; Set = 'PUT'; Remove = 'DELETE' } - -# Builder expression -> the same normalized URI skeleton NamingOverrides.NormalizePath -# produces from a path template: lowercase fixed segments, every parameter erased to {}. -function ConvertTo-UriSkeleton([string]$builder) { - $parts = @() - foreach ($seg in ($builder -split '\.')) { - if ($seg -notmatch '^(?[A-Za-z0-9]+)(\[(?[^\]]+)\])?$') { return $null } - $parts += $Matches.n.ToLowerInvariant() - if ($Matches.i) { $parts += '{}' } - } - '/' + ($parts -join '/') +$verbToMethod = @{ Get = 'GET'; New = 'POST'; Update = 'PATCH'; Set = 'PUT'; Remove = 'DELETE'; Invoke = 'POST' } + +# The generator reports each colliding operation's route already normalized (lowercase, every +# parameter erased to {}), so a route is taken from the inventory rather than reconstructed +# from a builder expression. Reconstruction cannot round-trip a function (the builder member +# spells the argument NAMES but not the OData argument syntax) or a namespace-qualified action +# (kiota keeps the "microsoft.graph.security." qualifier that the route does not carry), and a +# route rebuilt wrongly would be resolved against the wrong oracle row. +function ConvertTo-UriSkeleton([string]$route) { + if ($route -notmatch '^/') { return $null } + $route } $lines = @(Get-Content $InventoryPath | Where-Object { $_.Trim() }) @@ -102,15 +101,45 @@ if ($unparsed) { Write-Host "inventory: $($parsed.Count) collision lines" # ---- oracle lookup: METHOD + skeleton -> published commands -------------------------------- +# Normalized exactly as NamingOverrides.NormalizePath normalizes a spec path, so an oracle row +# and a generated route are the same string for the same operation. Erasing EVERY {...} matters +# for functions, whose arguments carry placeholders inside the segment +# ("allowedCalendarSharingRoles(User='{User}')"). +function ConvertTo-OracleSkeleton([string]$uri) { + ($uri -replace '\{[^}]*\}', '{}').TrimEnd('/').ToLowerInvariant() +} + +# The shipped inventory records an action's route unqualified ("…/custodians/{}/applyhold") +# while the spec qualifies it with the namespace that declares the action +# ("…/custodians/{}/microsoft.graph.security.applyhold"). They are the same operation, so a +# route that finds no oracle row is retried without the qualifier before being called unshipped +# — otherwise these actions would derive as "suppress" and prune cmdlets the SDK does ship. +function Get-UnqualifiedRoute([string]$skel) { + $i = $skel.LastIndexOf('/') + if ($i -lt 0) { return $null } + $last = $skel.Substring($i + 1) + $dot = $last.LastIndexOf('.') + if ($dot -lt 0) { return $null } + $skel.Substring(0, $i + 1) + $last.Substring($dot + 1) +} + $oracle = @{} foreach ($e in (Get-Content $OraclePath -Raw | ConvertFrom-Json)) { if ($e.ApiVersion -ne $ApiVersion) { continue } - $skel = (($e.Uri -split '/') | ForEach-Object { if ($_ -match '^\{') { '{}' } else { $_.ToLowerInvariant() } }) -join '/' - $k = "$($e.Method) $skel" + $k = "$($e.Method) $(ConvertTo-OracleSkeleton $e.Uri)" if (-not $oracle.ContainsKey($k)) { $oracle[$k] = [System.Collections.Generic.SortedSet[string]]::new() } [void]$oracle[$k].Add($e.Command) } +# Every published command for a route, qualifier-insensitively. +function Get-ShippedCommands([string]$method, [string]$skel) { + $k = "$method $skel" + if ($oracle.ContainsKey($k)) { return @($oracle[$k]) } + $bare = Get-UnqualifiedRoute $skel + if ($bare -and $oracle.ContainsKey("$method $bare")) { return @($oracle["$method $bare"]) } + @() +} + # ---- derive one action per route ------------------------------------------------------------ # Route identity is (method, skeleton). Every inventory line contributes both of its routes. $routes = @{} @@ -143,7 +172,7 @@ Write-Host "routes contested: $($routes.Count)" $failures = @() foreach ($key in ($routes.Keys | Sort-Object)) { $r = $routes[$key] - $ships = if ($oracle.ContainsKey($key)) { @($oracle[$key]) } else { @() } + $ships = @(Get-ShippedCommands $r.Method $r.Uri) # The comma operator keeps a single-element array an array through Add-Member's binder. $r | Add-Member ShipsAs (, $ships) $action = @@ -154,6 +183,16 @@ foreach ($key in ($routes.Keys | Sort-Object)) { if ($shippedNouns.Count -ne 1) { $failures += "ambiguous rename: $key ships as [$($ships -join ', ')] - more than one target noun." } + # The published verb travels with the noun. Two actions on one resource routinely share + # a noun and differ only by verb (applyHold ships Add-…Hold, removeHold Remove-…Hold), + # so a noun-only rename would give both the same name and collide. + $shippedVerbs = @($ships | ForEach-Object { ($_ -split '-', 2)[0] } | Sort-Object -Unique) + if ($shippedVerbs.Count -ne 1) { + $failures += "ambiguous rename: $key ships as [$($ships -join ', ')] - more than one target verb." + } + elseif ($shippedVerbs[0] -cne ($r.OurName -split '-', 2)[0]) { + $r | Add-Member Verb $shippedVerbs[0] + } 'rename' } $r | Add-Member Action $action @@ -194,7 +233,12 @@ foreach ($key in ($routes.Keys | Sort-Object)) { } } if ($r.Action -eq 'suppress-deferred') { $entry.deferredCrossPathMerge = $true } - if ($r.Action -eq 'rename') { $entry.replacementNoun = (@($r.ShipsAs)[0] -split '-', 2)[1] -replace '^Mg', '' } + if ($r.Action -eq 'rename') { + $entry.replacementNoun = (@($r.ShipsAs)[0] -split '-', 2)[1] -replace '^Mg', '' + # Emitted only where the published verb differs from the one the generator derives, so + # the data stays the diff against structural naming rather than a full restatement of it. + if ($r.PSObject.Properties['Verb']) { $entry.replacementVerb = $r.Verb } + } switch ($entry.action) { 'suppress' { $suppressions += [pscustomobject]$entry } 'rename' { $renames += [pscustomobject]$entry } diff --git a/tools/Derive-ParityResolutions.ps1 b/tools/Derive-ParityResolutions.ps1 new file mode 100644 index 00000000000..d3439121246 --- /dev/null +++ b/tools/Derive-ParityResolutions.ps1 @@ -0,0 +1,282 @@ +<# +.SYNOPSIS +Derives naming-parity resolutions (renames and suppressions) for the WHOLE generated surface +from the published-command oracle, and validates the checked-in files against a fresh +derivation. + +.DESCRIPTION +The rule-based approach to the residual parity mismatches was measured and rejected: the +largest candidate rule (drop "IdentityGovernance") fixed 297 names and broke 417, because the +published SDK's naming is not rule-based. The published surface itself is the only authority, +so - like the collision pipeline in Derive-CollisionResolutions.ps1 - the resolutions are +DERIVED from MgCommandMetadata.json per operation and reviewed as data. + +Input is the parity gate's own ledger (Compare-WrapperCmdletNames.ps1 -OutLedger), so this +script reuses the gate's oracle join instead of re-implementing it; the two cannot drift. + +Per ledger row, exactly one action: + + matched / corrected no entry - the name is already right (or deliberately corrected) + mismatch, same verb rename - entry carries the published noun + no-oracle, name unshipped suppress - the published SDK pruned the operation + everything else defer - reported, NO entry emitted: + mismatch where the published verb differs (a noun rename cannot fix a verb), + no-oracle where our name ships from a DIFFERENT uri (cross-path; curated only), + ambiguous oracle rows, and GET list/item pairs whose published nouns diverge + (renaming one side would break pairing). + +Anything conflicting (one method+uri deriving two actions) is a hard failure. + +Output (deterministic: sorted, no timestamps): + tools/WrapperGenerator/data/parity-renames..json + tools/WrapperGenerator/data/parity-suppressions..json + tools/WrapperGenerator/data/parity-resolution-ledger..csv (evidence) + +.PARAMETER Validate +Re-derive and byte-compare against the checked-in data files instead of writing them. + +.EXAMPLE +.\tools\Derive-ParityResolutions.ps1 +.EXAMPLE +.\tools\Derive-ParityResolutions.ps1 -Validate +#> +[CmdletBinding()] +param( + [string]$GeneratedRoot = "$PSScriptRoot\..\artifacts\wrapper-modules", + [string]$OraclePath = "$PSScriptRoot\..\src\Authentication\Authentication\custom\common\MgCommandMetadata.json", + [string]$OutDir = "$PSScriptRoot\WrapperGenerator\data", + [ValidateSet('v1.0', 'beta')] + [string]$ApiVersion = 'v1.0', + [switch]$Validate, + # Sweep the generated tree and OVERWRITE the frozen input ledger. Only valid against a tree + # generated with the derived data DISABLED (--no-collision-data): sweeping a tree that + # already has the renames applied re-derives "nothing to fix" and destroys the data - which + # is precisely what happened when capture was the default mode. + [switch]$CaptureInput +) +$ErrorActionPreference = 'Stop' + +# The frozen derivation input, like the collision pipeline's collision-inventory snapshot: the +# parity gate's ledger captured from a tree generated with the derived data DISABLED +# (--no-collision-data). It must be checked in, because once the data is embedded the live tree +# has the renames applied and re-deriving from it would validate the data against itself. +$inputLedgerPath = Join-Path $OutDir "parity-input-ledger.$ApiVersion.csv" + +if (-not $CaptureInput) { + if (-not (Test-Path $inputLedgerPath)) { + Write-Error "frozen input ledger missing: $inputLedgerPath. Capture it with -CaptureInput against a --no-collision-data tree." + exit 1 + } + $rows = @(Import-Csv $inputLedgerPath | Where-Object { $_.ApiVersion -eq $ApiVersion }) +} +else { + # ---- 1. collect the gate's ledger over every module ------------------------------------- + $moduleDirs = @(Get-ChildItem $GeneratedRoot -Directory | ForEach-Object { + $c = Join-Path $_.FullName 'src\Cmdlets' + if ((Test-Path $c) -and @(Get-ChildItem $c -Filter *.g.cs -File | Where-Object Name -ne 'Shared.g.cs')) { $c } + }) + if (-not $moduleDirs) { Write-Error "no generated cmdlet folders under $GeneratedRoot"; exit 1 } + + $rows = [System.Collections.Generic.List[object]]::new() + $tmp = Join-Path ([System.IO.Path]::GetTempPath()) "parity-ledger-$PID.csv" + foreach ($d in $moduleDirs) { + & "$PSScriptRoot\Compare-WrapperCmdletNames.ps1" -GeneratedPath $d -OraclePath $OraclePath -OutLedger $tmp *> $null + foreach ($r in Import-Csv $tmp) { $rows.Add($r) } + } + Remove-Item $tmp -ErrorAction SilentlyContinue + $rows = @($rows | Where-Object { $_.ApiVersion -eq $ApiVersion }) + if ($rows.Count -eq 0) { Write-Error "ledger produced no $ApiVersion rows; wrong tree?"; exit 1 } + $rows | Export-Csv $inputLedgerPath -NoTypeInformation +} + +# ---- 2. oracle name set (for the cross-path test) and list/item noun map ------------------- +$oracle = Get-Content $OraclePath -Raw | ConvertFrom-Json +$shippedNames = [System.Collections.Generic.HashSet[string]]::new([System.StringComparer]::Ordinal) +foreach ($e in $oracle) { if ($e.ApiVersion -eq $ApiVersion) { [void]$shippedNames.Add($e.Command) } } + +# ---- 3. derive one action per METHOD+URI ---------------------------------------------------- +function NounOf([string]$command) { ($command -split '-', 2)[1] -replace '^Mg', '' } + +function VerbOf([string]$command) { ($command -split '-', 2)[0] } + +$byKey = @{} +foreach ($r in $rows) { + # A dispatcher issues no request of its own; its published name is decided by the _List/_Get + # pair it forwards to, which carry the same noun and are resolved on their own rows. + # + # 'cast' and 'parameterized-function' are rows the gate can no longer produce: it now reads + # each route from the [GraphRoute] attribute in the compiled assembly, so those shapes arrive + # as ordinary matched/mismatch/no-oracle rows. They are still skipped because the FROZEN input + # ledger predates that change and carries 1,121 and 466 of them respectively; dropping the skip + # makes this script fail on the checked-in data. They disappear from the data on the next + # -CaptureInput sweep, and the skip can go with them. + if ($r.Disposition -in 'dispatcher', 'cast', 'parameterized-function') { continue } + $key = "$($r.Method) $($r.Uri)" + $action, $noun, $verb, $evidence = switch ($r.Disposition) { + 'matched' { 'keep', $null, $null, $r.OracleCommands } + 'corrected' { 'keep', $null, $null, "deliberate correction; oracle ships $($r.OracleCommands)" } + 'ambiguous' { 'defer-ambiguous', $null, $null, $r.OracleCommands } + 'mismatch' { + # The published verb travels with the noun. An action's verb is the SDK's own choice + # per operation (sendMail ships Send-, checkMemberGroups Confirm-), so a rename that + # carried only the noun would leave every one of those a mismatch - and would collide + # the pairs that differ by verb alone (applyHold/removeHold both ship ...Hold). + $oc = ($r.OracleCommands -split ';')[0] + $ocVerb = VerbOf $oc + 'rename', (NounOf $oc), $(if ($ocVerb -cne (VerbOf $r.Command)) { $ocVerb } else { $null }), $oc + } + 'no-oracle' { + if ($shippedNames.Contains($r.Command)) { 'defer-crosspath', $null, $null, "$($r.Command) ships from a different uri" } + else { 'suppress', $null, $null, "no oracle row for $key and '$($r.Command)' unshipped" } + } + # The gate found no [GraphRoute] on the compiled cmdlet, so there is no route to resolve + # against. Deriving anything here would be guessing; a stale build is the usual cause. + 'no-route' { Write-Error "no [GraphRoute] metadata for '$($r.Command)' ($($r.File)) - rebuild the module before deriving"; exit 1 } + default { Write-Error "unknown disposition '$($r.Disposition)'"; exit 1 } + } + if ($byKey.ContainsKey($key)) { + $prev = $byKey[$key] + # The same operation appears in several modules (crosspath spec duplication) and as + # both a worker and its own file; identical decisions collapse, conflicts are fatal. + if ($prev.Action -ne $action -or $prev.Noun -ne $noun -or $prev.Verb -ne $verb) { + Write-Error "conflicting derivations for $key : $($prev.Action)/$($prev.Verb)/$($prev.Noun) vs $action/$verb/$noun" + exit 1 + } + continue + } + $byKey[$key] = [pscustomobject]@{ + Method = $r.Method; Uri = $r.Uri; Action = $action; Noun = $noun; Verb = $verb + OurCommand = $r.Command; Evidence = $evidence + } +} + +# ---- 4. GET list/item pairs whose published nouns diverge cannot be renamed safely ---------- +foreach ($e in @($byKey.Values | Where-Object { $_.Method -eq 'GET' -and $_.Action -eq 'rename' })) { + $partnerKey = if ($e.Uri.EndsWith('/{param}')) { "GET $($e.Uri.Substring(0, $e.Uri.Length - 8))" } else { "GET $($e.Uri)/{param}" } + if (-not $byKey.ContainsKey($partnerKey)) { continue } + $p = $byKey[$partnerKey] + $pNoun = if ($p.Action -eq 'rename') { $p.Noun } elseif ($p.Action -eq 'keep') { NounOf $p.OurCommand } else { $null } + if ($null -ne $pNoun -and $pNoun -ne $e.Noun) { + $e.Action = 'defer-pair-divergence'; $e.Evidence = "partner $partnerKey resolves to noun '$pNoun'" + $e.Noun = $null + if ($p.Action -eq 'rename') { $p.Action = 'defer-pair-divergence'; $p.Noun = $null } + } +} + +# ---- 4b. two route families converging on one cmdlet name -------------------------------- +# The published SDK sometimes serves ONE command surface from a DIFFERENT uri family than the +# spec's obvious one: Get-MgTeamChannelMember ships its rows from /allMembers, and /members +# ships nothing. Every generating route contributes a file under its FINAL noun - including +# deferred routes, which keep their old noun - so if two families converge on one (method, +# noun) the generator writes the same file twice and fails loudly. +# +# Resolution is derivable when exactly one side ships: a family whose routes are all +# defer-crosspath ships nothing (that is what the disposition means), and the sibling family's +# rename tells us where its name actually ships - so the unshipped family is suppressed with +# that evidence. If BOTH families have oracle rows, no side can be picked mechanically: the +# renames are deferred and the mismatch stays visible for curated review. +# List/item pairs share a noun BY DESIGN, so the item uri collapses onto its list uri first. +$familyGroups = @($byKey.Values | + Where-Object { $_.Action -in 'keep', 'rename', 'defer-crosspath' } | + Group-Object { + # The key is the emitted FILE's identity - verb plus noun - and deliberately not the + # HTTP method. Two routes collide whenever they resolve to the same command name, + # even across methods: the published SDK ships Update-MgChatInstalledApp for the + # POST .../upgrade action and no PATCH cmdlet at all, so the action's rename lands on + # the name our PATCH route would otherwise keep. Including the verb still separates + # the pairs that differ only by verb (applyHold -> Add-...Hold, removeHold -> + # Remove-...Hold), which do not collide. + $noun = if ($_.Action -eq 'rename') { $_.Noun } else { NounOf $_.OurCommand } + $verb = if ($_.Action -eq 'rename' -and $_.Verb) { $_.Verb } else { VerbOf $_.OurCommand } + "$verb|$noun" + }) +foreach ($g in $familyGroups) { + $byFamily = $g.Group | Group-Object { $_.Uri -replace '/\{param\}$', '' } + if (@($byFamily).Count -le 1) { continue } + + # Families that ship nothing (all defer-crosspath) are suppressed; their name lives in a + # sibling family. Only families with real oracle rows remain in contention afterwards. + $shipping = [System.Collections.Generic.List[object]]::new() + foreach ($fam in $byFamily) { + if (@($fam.Group | Where-Object Action -ne 'defer-crosspath').Count -eq 0) { + foreach ($e in $fam.Group) { + $e.Action = 'suppress' + $e.Evidence = "no oracle row; '$($e.OurCommand)' ships from sibling family (see rename entries for this noun)" + } + } + else { $shipping.Add($fam) } + } + if (@($shipping).Count -le 1) { continue } + + # Both-ship merge: no mechanical winner. + foreach ($e in @($shipping | ForEach-Object Group | Where-Object Action -eq 'rename')) { + $e.Action = 'defer-crosspath-merge' + $e.Evidence = "renaming to '$($e.Noun)' collides with a sibling family that also ships" + $e.Noun = $null + } +} + +# ---- 5. emit -------------------------------------------------------------------------------- +$all = @($byKey.Values | Sort-Object Method, Uri) +$renames = @($all | Where-Object Action -eq 'rename') +$suppressions = @($all | Where-Object Action -eq 'suppress') +$deferred = @($all | Where-Object { $_.Action -like 'defer-*' }) + +function ToJson($entries, $action) { + # Uri is lowercased to the generator's NormalizePath form ({param} -> {}). + $list = @($entries | ForEach-Object { + $o = [ordered]@{ + apiVersion = $ApiVersion; method = $_.Method + uri = ($_.Uri -replace '\{param\}', '{}').ToLowerInvariant() + action = $action + evidence = [ordered]@{ ourCommand = $_.OurCommand; oracle = $_.Evidence } + } + if ($action -eq 'rename') { + $o.replacementNoun = $_.Noun + # Emitted only where the published verb differs from the one the generator + # derives, so the data stays the diff against the structural rules. + if ($_.Verb) { $o.replacementVerb = $_.Verb } + } + [pscustomobject]$o + }) + ConvertTo-Json $list -Depth 4 +} + +# A fresh capture that finds nothing to fix while non-trivial data is already checked in is +# the signature of sweeping a tree that has the data APPLIED - deriving from it would erase +# the very entries that cleaned the tree up. +if ($CaptureInput -and $renames.Count -eq 0 -and $suppressions.Count -eq 0) { + Write-Error ("capture produced 0 renames and 0 suppressions - the swept tree looks like it was " + + "generated WITH the parity data applied. Regenerate with --no-collision-data first.") + exit 1 +} + +$renamesJson = ToJson $renames 'rename' +$suppressionsJson = ToJson $suppressions 'suppress' +$renamesPath = Join-Path $OutDir "parity-renames.$ApiVersion.json" +$suppressionsPath = Join-Path $OutDir "parity-suppressions.$ApiVersion.json" + +"ledger rows ($ApiVersion) : $($rows.Count)" +"distinct method+uri : $($byKey.Count)" +" keep : $(@($all | Where-Object Action -eq 'keep').Count)" +" rename : $($renames.Count)" +" suppress : $($suppressions.Count)" +" deferred (no entry) : $($deferred.Count)" +$deferred | Group-Object Action | ForEach-Object { " $($_.Name): $($_.Count)" } + +if ($Validate) { + $drift = @() + if (-not (Test-Path $renamesPath) -or (Get-Content $renamesPath -Raw) -ne $renamesJson) { $drift += $renamesPath } + if (-not (Test-Path $suppressionsPath) -or (Get-Content $suppressionsPath -Raw) -ne $suppressionsJson) { $drift += $suppressionsPath } + if ($drift) { Write-Error "checked-in parity data drifted from a fresh derivation: $($drift -join ', ')"; exit 1 } + 'validation OK: checked-in parity data matches a fresh derivation.' + exit 0 +} + +Set-Content -Path $renamesPath -Value $renamesJson -NoNewline +Set-Content -Path $suppressionsPath -Value $suppressionsJson -NoNewline +$all | Select-Object Method, Uri, Action, Noun, OurCommand, Evidence | + Export-Csv (Join-Path $OutDir "parity-resolution-ledger.$ApiVersion.csv") -NoTypeInformation +"wrote $renamesPath" +"wrote $suppressionsPath" +"wrote $(Join-Path $OutDir "parity-resolution-ledger.$ApiVersion.csv")" diff --git a/tools/Invoke-WrapperGates.ps1 b/tools/Invoke-WrapperGates.ps1 new file mode 100644 index 00000000000..1112627523b --- /dev/null +++ b/tools/Invoke-WrapperGates.ps1 @@ -0,0 +1,250 @@ +<# +.SYNOPSIS +Runs every wrapper-generator gate and reports each one by name, population and result. + +.DESCRIPTION +"Fully verified" is only meaningful if the gate set is written down and executable. Before this +script it lived in whoever's memory ran the gates last, and a gate that was never run was +indistinguishable from one that passed. + +Three rules the runner enforces on itself: + + * Every gate reports the POPULATION it examined. A gate that examined nothing cannot pass - + an empty run is the same false clean bill of health as a broken assertion. + * A gate that could not run is NOT-RUN, never PASS. The overall verdict is then INCOMPLETE + (exit 2), which is distinct from a real failure (exit 1). + * The validation block at the end is generated from what actually ran. Copy it into a commit + message or PR body instead of writing the numbers by hand. + +Gate order matters: the generator is built first, then the corpus is generated and compiled, and +the remaining gates read that output. + +.PARAMETER OutputRoot +Where modules are generated and built. Default: /artifacts/wrapper-modules. + +.PARAMETER Configuration +Build configuration. Default: Release. Build and test use the SAME value here, which is the +mismatch that once left the runtime gate validating a stale Debug assembly. + +.PARAMETER InventoryBaseline +CSV captured from a PREVIOUS generator, for the operation-inventory diff. Without it that gate +reports NOT-RUN: comparing a tree against itself proves nothing. + +.PARAMETER SkipBuild +Reuse the modules already under -OutputRoot instead of regenerating. Faster, but the result then +describes whatever is on disk; the runtime gate's staleness check is what stops that being a lie. + +.EXAMPLE +.\tools\Invoke-WrapperGates.ps1 + +.EXAMPLE +.\tools\Invoke-WrapperGates.ps1 -InventoryBaseline before.csv +#> +[CmdletBinding()] +param( + [string]$OutputRoot, + [string]$Configuration = 'Release', + [string]$InventoryBaseline, + [switch]$SkipBuild +) + +$ErrorActionPreference = 'Stop' +$repoRoot = (Resolve-Path (Join-Path $PSScriptRoot '..')).Path +if (-not $OutputRoot) { $OutputRoot = Join-Path $repoRoot 'artifacts\wrapper-modules' } + +$results = [System.Collections.Generic.List[object]]::new() + +function Add-Gate { + param( + [Parameter(Mandatory)][string]$Name, + [Parameter(Mandatory)][string]$Proves, + [Parameter(Mandatory)][scriptblock]$Body + ) + Write-Host "-> $Name" -ForegroundColor Cyan + $r = try { & $Body } catch { + [pscustomobject]@{ Status = 'FAIL'; Population = 'errored'; Detail = $_.Exception.Message } + } + $colour = switch ($r.Status) { 'PASS' { 'Green' } 'FAIL' { 'Yellow' } default { 'DarkYellow' } } + Write-Host (" {0} {1}" -f $r.Status, $r.Population) -ForegroundColor $colour + if ($r.Detail) { Write-Host " $($r.Detail)" -ForegroundColor DarkGray } + $results.Add([pscustomobject]@{ + Gate = $Name; Proves = $Proves; Status = $r.Status; Population = $r.Population; Detail = $r.Detail }) +} + +# --- 1. generator builds ------------------------------------------------------------------ +Add-Gate 'generator-build' 'the generator itself compiles' { + $o = & dotnet build (Join-Path $repoRoot 'tools\WrapperGenerator\WrapperGenerator.csproj') -c $Configuration --nologo -v quiet *>&1 | Out-String + $errors = [regex]::Match($o, '(\d+) Error\(s\)').Groups[1].Value + $warns = [regex]::Match($o, '(\d+) Warning\(s\)').Groups[1].Value + [pscustomobject]@{ + Status = if ($errors -eq '0') { 'PASS' } else { 'FAIL' } + Population = "$warns warnings, $errors errors" + Detail = '' + } +} + +# --- 2. unit tests ------------------------------------------------------------------------ +Add-Gate 'unit-tests' 'classification and emission rules' { + $o = & dotnet test (Join-Path $repoRoot 'tools\WrapperGenerator.Tests\WrapperGenerator.Tests.csproj') -c $Configuration --nologo -v minimal *>&1 | Out-String + $m = [regex]::Match($o, 'Failed:\s+(\d+),\s+Passed:\s+(\d+)') + if (-not $m.Success) { return [pscustomobject]@{ Status = 'FAIL'; Population = 'no test summary'; Detail = '' } } + $failed = [int]$m.Groups[1].Value; $passed = [int]$m.Groups[2].Value + [pscustomobject]@{ + # Zero tests passing is not a pass. + Status = if ($failed -eq 0 -and $passed -gt 0) { 'PASS' } else { 'FAIL' } + Population = "$passed passed, $failed failed" + Detail = '' + } +} + +# --- 3. generate + compile every module ---------------------------------------------------- +Add-Gate 'module-compile' 'emitted CLR types match the generated kiota members' { + if ($SkipBuild) { + return [pscustomobject]@{ Status = 'NOT-RUN'; Population = '-SkipBuild'; Detail = 'reusing modules already on disk' } + } + $mods = @(Get-ChildItem $OutputRoot -Directory -ErrorAction SilentlyContinue | Select-Object -ExpandProperty Name) + if (-not $mods) { return [pscustomobject]@{ Status = 'FAIL'; Population = 'no modules'; Detail = "nothing under $OutputRoot" } } + $o = & (Join-Path $PSScriptRoot 'Build-WrapperModule.ps1') -Module $mods -Configuration $Configuration -SkipKiota *>&1 | Out-String + # The summary table goes through Out-Host, which writes to the console directly and cannot + # be captured - counting its rows here silently yields zero. The per-module "OK: n cmdlets + # -> ...psd1" lines are Write-Host (stream 6), which *>&1 does capture, so count those. + $ok = [regex]::Matches($o, '(?m)OK: \d+ cmdlets ->').Count + $noCmdlets = [regex]::Matches($o, 'no cmdlets emitted').Count + $otherFail = [regex]::Matches($o, '(?m)FAILED at (?!manifest)').Count + [pscustomobject]@{ + Status = if ($ok -gt 0 -and $otherFail -eq 0) { 'PASS' } else { 'FAIL' } + Population = "$ok built, $noCmdlets emitted no cmdlets" + Detail = if ($otherFail) { "$otherFail module(s) failed for reasons other than emitting nothing" } else { '' } + } +} + +# --- 4. naming parity, over the whole corpus ----------------------------------------------- +Add-Gate 'naming-parity' 'generated cmdlet names match the published SDK inventory' { + # Module discovery in the parity gate only looks one level down, so pointing it at the root + # would silently examine nothing. Each module is passed explicitly and the totals summed. + # A module that emitted no cmdlets has nothing to compare; the parity script errors on an + # empty folder, which would otherwise be tallied as a naming failure it is not. + $empty = [System.Collections.Generic.List[string]]::new() + $dirs = @(Get-ChildItem $OutputRoot -Directory -ErrorAction SilentlyContinue | ForEach-Object { + $c = Join-Path $_.FullName 'src\Cmdlets' + if (-not (Test-Path $c)) { return } + if (-not @(Get-ChildItem $c -Filter *.g.cs -File | Where-Object Name -ne 'Shared.g.cs')) { + $empty.Add($_.Name); return + } + $c + }) + if (-not $dirs) { return [pscustomobject]@{ Status = 'FAIL'; Population = 'no cmdlet folders'; Detail = '' } } + $matched = 0; $joinable = 0; $failing = [System.Collections.Generic.List[string]]::new() + foreach ($d in $dirs) { + $o = & (Join-Path $PSScriptRoot 'Compare-WrapperCmdletNames.ps1') -GeneratedPath $d *>&1 | Out-String + $code = $LASTEXITCODE + $m = [regex]::Match($o, 'TOTAL:\s+(\d+) of (\d+)') + if ($m.Success) { $matched += [int]$m.Groups[1].Value; $joinable += [int]$m.Groups[2].Value } + if ($code -ne 0) { $failing.Add((Split-Path (Split-Path $d -Parent) -Parent | Split-Path -Leaf)) } + } + $emptyNote = if ($empty.Count) { "; $($empty.Count) module(s) emitted no cmdlets and were not compared: $($empty -join ', ')" } else { '' } + [pscustomobject]@{ + Status = if ($failing.Count -eq 0 -and $joinable -gt 0) { 'PASS' } else { 'FAIL' } + Population = "$matched of $joinable names match, across $($dirs.Count) module(s)" + Detail = $(if ($failing.Count) { "non-matching in: $($failing -join ', ')" } else { '' }) + $emptyNote + } +} + +# --- 5. omission oracle -------------------------------------------------------------------- +Add-Gate 'omission-oracle' 'every settable kiota body member is bound or cited' { + $o = & (Join-Path $PSScriptRoot 'Test-BodyBindingCoverage.ps1') *>&1 | Out-String + $code = $LASTEXITCODE + $cmdlets = [regex]::Match($o, 'cmdlets examined\s*:\s*(\d+)').Groups[1].Value + $members = [regex]::Match($o, 'model members\s*:\s*(\d+)').Groups[1].Value + $bound = [regex]::Match($o, 'bound by a param\s*:\s*(\d+)').Groups[1].Value + $fails = [regex]::Match($o, 'failures\s*:\s*(\d+)').Groups[1].Value + [pscustomobject]@{ + Status = if ($code -eq 0 -and [int]$cmdlets -gt 0) { 'PASS' } else { 'FAIL' } + Population = "$cmdlets cmdlets, $members members, $bound bound, $fails failures" + Detail = '' + } +} + +# --- 6. coverage sweep (measurement, not an independent gate) ------------------------------- +Add-Gate 'coverage-sweep' 'what the classifier itself reports as unbound' { + $o = & (Join-Path $PSScriptRoot 'Measure-BodyPropertyCoverage.ps1') *>&1 | Out-String + $code = $LASTEXITCODE + $m = [regex]::Match($o, '(?m)^\s*total\s+(\d+)\s+(\d+)\s*$') + $unbound = if ($m.Success) { $m.Groups[1].Value } else { [regex]::Matches($o, 'unbound: (\d+)') | Measure-Object { $_ } | Select-Object -ExpandProperty Count } + [pscustomobject]@{ + Status = if ($code -eq 0) { 'PASS' } else { 'FAIL' } + Population = "exit $code" + Detail = 'reads the generator''s own diagnostics - a measurement instrument, not an independent gate' + } +} + +# --- 7. runtime binding --------------------------------------------------------------------- +Add-Gate 'runtime-binding' 'PowerShell converts each bound shape at runtime' { + $psd1s = @(Get-ChildItem (Join-Path $OutputRoot "*\src\bin\$Configuration\net10.0\Microsoft.Graph.Wrapper.*.psd1") -ErrorAction SilentlyContinue) + $mods = @($psd1s | ForEach-Object { $_.FullName -replace [regex]::Escape($OutputRoot + '\'), '' -replace '\\src.*', '' } | Sort-Object -Unique) + if (-not $mods) { return [pscustomobject]@{ Status = 'FAIL'; Population = 'no manifests'; Detail = 'nothing built to test' } } + $o = & (Join-Path $PSScriptRoot 'Test-WrapperModule.ps1') -Module $mods -Configuration $Configuration *>&1 | Out-String + $code = $LASTEXITCODE + $pass = [regex]::Matches($o, '(?m)^\s+PASS: ').Count + $fail = [regex]::Matches($o, '(?m)^\s+FAIL: ').Count + $untyped = [regex]::Matches($o, 'untyped OK\(\d+\)').Count + [pscustomobject]@{ + Status = if ($code -eq 0 -and $pass -eq $mods.Count) { 'PASS' } else { 'FAIL' } + Population = "$pass of $($mods.Count) modules, $untyped with untyped conversions verified" + Detail = if ($fail) { "$fail module(s) failed" } else { '' } + } +} + +# --- 8. operation inventory ----------------------------------------------------------------- +Add-Gate 'operation-inventory' 'a parameter change did not alter which operations generate' { + if (-not $InventoryBaseline) { + return [pscustomobject]@{ Status = 'NOT-RUN'; Population = 'no baseline supplied' + Detail = 'pass -InventoryBaseline from a PREVIOUS generator; same-tree comparison is tautological' } + } + if (-not (Test-Path $InventoryBaseline)) { + return [pscustomobject]@{ Status = 'FAIL'; Population = 'baseline missing'; Detail = $InventoryBaseline } + } + # An unstamped baseline has unverifiable provenance: the compare script only WARNS, and this + # runner captures that warning, so without this check the result would look fully verified. + if (-not (Test-Path "$InventoryBaseline.generator")) { + return [pscustomobject]@{ Status = 'NOT-RUN'; Population = 'baseline unstamped' + Detail = "no $([System.IO.Path]::GetFileName($InventoryBaseline)).generator stamp - cannot prove the baseline predates this generator" } + } + $after = Join-Path ([System.IO.Path]::GetTempPath()) "wrapper-inventory-after.csv" + $o = & (Join-Path $PSScriptRoot 'Compare-WrapperOperationInventory.ps1') -Path $OutputRoot -Baseline $InventoryBaseline -Compare $after *>&1 | Out-String + $code = $LASTEXITCODE + $added = [regex]::Match($o, 'added:\s+(\d+)').Groups[1].Value + $removed = [regex]::Match($o, 'removed:\s+(\d+)').Groups[1].Value + [pscustomobject]@{ + Status = if ($code -eq 0) { 'PASS' } elseif ($code -eq 2) { 'NOT-RUN' } else { 'FAIL' } + Population = if ($added -or $removed) { "$added added, $removed removed" } else { "exit $code" } + Detail = if ($code -eq 2) { 'baseline came from this same generator' } else { '' } + } +} + +# --- report ---------------------------------------------------------------------------------- +Write-Host '' +$results | Format-Table Gate, Status, Population -AutoSize | Out-Host + +$failed = @($results | Where-Object Status -eq 'FAIL') +$notRun = @($results | Where-Object Status -eq 'NOT-RUN') + +Write-Host '=== validation block (generated from the run above) ===' -ForegroundColor Cyan +Write-Host 'Validation:' +foreach ($r in $results) { + $tag = switch ($r.Status) { 'PASS' { '' } 'FAIL' { ' [FAILED]' } default { ' [NOT RUN]' } } + Write-Host ("- {0}: {1}{2}" -f $r.Gate, $r.Population, $tag) +} +Write-Host '' + +if ($failed.Count) { + Write-Host "VERDICT: FAILED - $($failed.Count) gate(s): $(($failed.Gate) -join ', ')" -ForegroundColor Red + exit 1 +} +if ($notRun.Count) { + Write-Host "VERDICT: INCOMPLETE - $($notRun.Count) gate(s) did not run: $(($notRun.Gate) -join ', ')" -ForegroundColor DarkYellow + Write-Host " Not a pass. Supply what they need, or say plainly that they were not run." -ForegroundColor DarkYellow + exit 2 +} +Write-Host "VERDICT: all $($results.Count) gates passed." -ForegroundColor Green +exit 0 diff --git a/tools/Templates/WrapperClient.csproj.template b/tools/Templates/WrapperClient.csproj.template new file mode 100644 index 00000000000..def417080fd --- /dev/null +++ b/tools/Templates/WrapperClient.csproj.template @@ -0,0 +1,17 @@ + + + + + net10.0 + latest + enable + enable + {ClientAssemblyName} + $(NoWarn);CS1591 + + + + + + + \ No newline at end of file diff --git a/tools/Templates/WrapperModule.csproj.template b/tools/Templates/WrapperModule.csproj.template new file mode 100644 index 00000000000..aad53206308 --- /dev/null +++ b/tools/Templates/WrapperModule.csproj.template @@ -0,0 +1,29 @@ + + + + + net10.0 + latest + enable + enable + false + {ModuleAssemblyName} + + true + $(NoWarn);CS1591 + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tools/Test-WrapperModule.ps1 b/tools/Test-WrapperModule.ps1 index 0a19dd41543..e704bdfb45c 100644 --- a/tools/Test-WrapperModule.ps1 +++ b/tools/Test-WrapperModule.ps1 @@ -8,12 +8,13 @@ Each module is tested in a CHILD pwsh process — a fresh process per module, be assemblies cannot be unloaded and Import-Module silently no-ops when a same-name module is already loaded. Checks, per module: - 0. the binary is not stale - the dll is compared against every compiled - input under src (the kiota client in Client/ - as well as Cmdlets/ and the csproj) and a - binary older than any of them is refused, - because every check below would pass against - a module built before the change under test + 0. the binary is not stale - refused before anything is loaded, because + every check below would pass against a module + built before the change under test. The dll is + compared against EVERY compiled input (the + kiota client under Client/ as well as + Cmdlets/), and a missing dll or an empty input + set is a failure, never a skip 1. Import-Module succeeds - the user's first experience 2. exported cmdlet count == manifest count - nothing silently dropped at load 3. no orphan workers - every *_Get/*_List worker has its public @@ -33,8 +34,8 @@ already loaded. Checks, per module: by reflection so this gate cannot drift from a copy of the converter: every numeric type, string, boolean, PSObject unwrapping, object, array, nesting, nested-null drop, null-element drop, empty-object omission, and the throw on - an unsupported type. The helper is emitted into every module, so a missing - helper is a failure, never n/a + an unsupported type. The helper is emitted into every module, so there is no + n/a for it Modules with no paired list+item GETs have no dispatcher; check 4 reports n/a for them. A shape a module never binds reports n/a for that part of check 5, except untyped. @@ -46,10 +47,15 @@ One or more module names previously built by Build-WrapperModule.ps1. Root folder the modules were built into. Default: /artifacts/wrapper-modules. .PARAMETER Configuration -Build configuration used. Default: Debug. +Build configuration used. Default: Debug — the same default as Build-WrapperModule.ps1, so the +two only agree when neither is overridden. Building with -Configuration Release and testing +without it leaves this script loading a stale Debug binary; check 0 exists because that happened. .EXAMPLE .\tools\Test-WrapperModule.ps1 -Module Mail + +.EXAMPLE +.\tools\Test-WrapperModule.ps1 -Module Files, Users -Configuration Release #> [CmdletBinding()] param( @@ -93,17 +99,27 @@ function Test-OneModule { # kiota client under Client/, and a regenerated client with an unchanged cmdlet is exactly # the case where a parameter's CLR type moves out from under the assignment - so watching # Cmdlets/ alone would miss the change most likely to invalidate a runtime result. - $dll = Join-Path $OutputRoot "$Name\src\bin\$Configuration\net10.0\$moduleName.dll" - $inputs = @(Get-ChildItem -Path (Join-Path $OutputRoot "$Name\src") -Recurse -File -Include *.cs, *.csproj -ErrorAction SilentlyContinue | + # Each branch fails closed. A guard that skips itself when it finds nothing to compare is + # the same vacuity as a binding check that reports OK having exercised no case: it turns an + # unknown into a pass. + $srcRoot = Join-Path $OutputRoot "$Name\src" + $dll = Join-Path $srcRoot "bin\$Configuration\net10.0\$moduleName.dll" + if (-not (Test-Path $dll)) { + $result.Detail = "manifest present but $Configuration assembly missing: $dll" + return $result + } + $inputs = @(Get-ChildItem -Path $srcRoot -Recurse -File -Include *.cs, *.csproj -ErrorAction SilentlyContinue | Where-Object { $_.FullName -notmatch '\\(bin|obj)\\' }) - if ((Test-Path $dll) -and $inputs) { - $newest = ($inputs | Sort-Object LastWriteTimeUtc -Descending | Select-Object -First 1) - $builtAt = (Get-Item $dll).LastWriteTimeUtc - if ($builtAt -lt $newest.LastWriteTimeUtc) { - $rel = $newest.FullName.Substring((Join-Path $OutputRoot "$Name\src").Length).TrimStart('\') - $result.Detail = "stale binary: $Configuration dll built $($builtAt.ToString('MM-dd HH:mm')) predates $rel ($($newest.LastWriteTimeUtc.ToString('MM-dd HH:mm'))); rebuild with -Configuration $Configuration" - return $result - } + if (-not $inputs) { + $result.Detail = "no compile inputs found under $srcRoot; staleness is unknowable and a pass here would prove nothing" + return $result + } + $newest = ($inputs | Sort-Object LastWriteTimeUtc -Descending | Select-Object -First 1) + $builtAt = (Get-Item $dll).LastWriteTimeUtc + if ($builtAt -lt $newest.LastWriteTimeUtc) { + $rel = $newest.FullName.Substring($srcRoot.Length).TrimStart('\') + $result.Detail = "stale binary: $Configuration dll built $($builtAt.ToString('MM-dd HH:mm')) predates $rel ($($newest.LastWriteTimeUtc.ToString('MM-dd HH:mm'))); rebuild with -Configuration $Configuration" + return $result } $result.ManifestCount = (Import-PowerShellDataFile -Path $psd1).CmdletsToExport.Count diff --git a/tools/WrapperGenerator.Tests/ActionFunctionTests.cs b/tools/WrapperGenerator.Tests/ActionFunctionTests.cs new file mode 100644 index 00000000000..410356f2701 --- /dev/null +++ b/tools/WrapperGenerator.Tests/ActionFunctionTests.cs @@ -0,0 +1,866 @@ +using System; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System.Net.Http; +using System.Text; +using System.Threading; +using System.Threading.Tasks; +using Microsoft.Extensions.Logging.Abstractions; +using Microsoft.OpenApi; +using Microsoft.OpenApi.Reader; +using WrapperGenerator; +using Xunit; + +namespace WrapperGenerator.Tests; + +// OData actions and functions: operations that CALL something on a resource rather than doing +// CRUD over it. Every expectation here is a fact about the real Graph documents or about a real +// kiota client generated from them (tools/WrapperGenerator/docs/edge-cases/action-function-edge-cases.md +// records where each was verified), never a restatement of what the generator happens to do. +// +// The spec fragments are copied from openApiDocs_KiotaCompat/v1.0 verbatim, so a change in how +// Graph publishes these operations fails here rather than silently changing the cmdlet surface. +public sealed class ActionFunctionTests +{ + private static OpenApiDocument Parse(string yaml) + { + var settings = new OpenApiReaderSettings(); + settings.AddYamlReader(); + using var stream = new MemoryStream(Encoding.UTF8.GetBytes(yaml)); + return OpenApiDocument.LoadAsync(stream, settings: settings, cancellationToken: CancellationToken.None) + .GetAwaiter().GetResult().Document!; + } + + private static (string[] Files, string Source) Generate(string yaml, string expectedFile) + { + var outputDir = Path.Combine(Path.GetTempPath(), "wrapper-generator-actionfn", Guid.NewGuid().ToString("N")); + Directory.CreateDirectory(outputDir); + try + { + // The oracle-derived rename data is deliberately NOT applied: these tests pin the + // structural rules that turn a spec shape into a cmdlet, so a data-file change can + // never silently shift what they assert. Parity of the resulting names against the + // published SDK is a separate gate (Compare-WrapperCmdletNames.ps1). + var config = new GeneratorConfig("Microsoft.Graph.PowerShell.Test.Client", outputDir, UseCollisionData: false); + new PowerShellWrapperGenerationService(Parse(yaml), config, NullLogger.Instance) + .GenerateAsync(CancellationToken.None).GetAwaiter().GetResult(); + var files = Directory.GetFiles(outputDir, "*.g.cs") + .Select(f => Path.GetFileName(f) ?? string.Empty).ToArray(); + var path = Path.Combine(outputDir, expectedFile); + return (files, File.Exists(path) ? File.ReadAllText(path) : string.Empty); + } + finally + { + if (Directory.Exists(outputDir)) + Directory.Delete(outputDir, recursive: true); + } + } + + // ---- naming --------------------------------------------------------------------------- + + private static CmdletNaming Resolve(HttpMethod method, string path, OperationKind kind) => + Naming.Resolve(new OperationInfo(method, path, HeaderParams: null, kind)); + + [Theory] + // An action is a call, so it takes the approved "run this" verb rather than POST's New. + [InlineData("POST", "/users/{user-id}/assignLicense", OperationKind.Action, "Invoke", "MgUserAssignLicense")] + [InlineData("POST", "/users/{user-id}/sendMail", OperationKind.Action, "Invoke", "MgUserSendMail")] + // A function is a read and keeps Get. /users/delta() ships exactly this name. + [InlineData("GET", "/users/delta()", OperationKind.Function, "Get", "MgUserDelta")] + // The operation name is an identifier, not a resource: it is neither singularized nor + // collapsed against the preceding segment. Both rules are load-bearing — see the two + // dedicated tests below. + [InlineData("GET", "/drives/{drive-id}/items/{driveItem-id}/workbook/functions/averageIfs", OperationKind.Function, + "Get", "MgDriveItemWorkbookFunctionAverageIfs")] + // A namespace-qualified action keeps only its bare name in the noun; the qualifier is OData + // type information and the published route does not carry it either. + [InlineData("POST", "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/microsoft.graph.security.applyHold", + OperationKind.Action, "Invoke", "MgSecurityCaseEdiscoveryCaseCustodianApplyHold")] + public void NamesActionsAndFunctionsFromTheirRoute(string method, string path, OperationKind kind, string expectedVerb, string expectedNoun) + { + var naming = Resolve(new HttpMethod(method), path, kind); + Assert.Equal(expectedVerb, naming.VerbName); + Assert.Equal(expectedNoun, naming.Noun); + } + + // averageIf and averageIfs are two different Excel functions. Singularizing the operation + // segment merged them onto one cmdlet file, which the collision guard caught across five + // Files routes (averageIfs/countIfs/days/sheets/sumIfs). + [Fact] + public void DoesNotSingularizeTheOperationName() + { + const string prefix = "/drives/{drive-id}/items/{driveItem-id}/workbook/functions/"; + Assert.NotEqual( + Resolve(HttpMethod.Get, prefix + "averageIf", OperationKind.Function).Noun, + Resolve(HttpMethod.Get, prefix + "averageIfs", OperationKind.Function).Noun); + } + + // The published SDK ships the collection-bound and reply-bound forms of replyWithQuote as + // two commands (Invoke-MgGraphTeamChannelMessage and ...MessageReply), so the + // adjacent-duplicate strip that keeps /domains/{id}/domainNameReferences from repeating + // "Domain" must not erase "Reply" from .../replies/replyWithQuote and merge them. + [Fact] + public void DoesNotCollapseTheOperationNameAgainstThePrecedingSegment() + { + Assert.NotEqual( + Resolve(HttpMethod.Post, "/teams/{team-id}/channels/{channel-id}/messages/replyWithQuote", OperationKind.Action).Noun, + Resolve(HttpMethod.Post, "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/replyWithQuote", OperationKind.Action).Noun); + } + + [Theory] + // Kiota names a parameterized function's builder member by appending one "With" per + // inline argument, in path order, and puts its generated types in a namespace that mirrors + // the route with every {id} segment collapsed to "Item". Verified against clients generated + // from Users.Functions.yml and Mail.yml. + [InlineData("/users/{user-id}/reminderView(StartDateTime='{StartDateTime}',EndDateTime='{EndDateTime}')", + "ReminderViewWithStartDateTimeWithEndDateTime", "Users.Item.ReminderViewWithStartDateTimeWithEndDateTime")] + [InlineData("/users/{user-id}/exportDeviceAndAppManagementData(skip={skip},top={top})", + "ExportDeviceAndAppManagementDataWithSkipWithTop", "Users.Item.ExportDeviceAndAppManagementDataWithSkipWithTop")] + [InlineData("/users/{user-id}/messages/{message-id}/copy", "Copy", "Users.Item.Messages.Item.Copy")] + // The qualifier survives into the kiota member and namespace even though the noun drops it. + [InlineData("/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/microsoft.graph.security.applyHold", + "MicrosoftGraphSecurityApplyHold", + "Security.Cases.EdiscoveryCases.Item.Custodians.Item.MicrosoftGraphSecurityApplyHold")] + public void PredictsTheKiotaMemberAndTypeNamespace(string path, string expectedMember, string expectedNamespace) + { + var naming = Resolve(HttpMethod.Get, path, OperationKind.Function); + Assert.Equal(expectedMember, naming.OperationMemberName); + Assert.Equal(expectedNamespace, naming.OperationTypeNamespace); + } + + [Fact] + public void ParameterizedFunctionCarriesItsArgumentsInPathOrder() + { + var naming = Resolve(HttpMethod.Get, + "/users/{user-id}/reminderView(StartDateTime='{StartDateTime}',EndDateTime='{EndDateTime}')", OperationKind.Function); + Assert.Equal(["StartDateTime", "EndDateTime"], naming.FunctionParameters.Select(p => p.TemplateName)); + // The builder member is a method, so the chain has to call it to stay valid C#. + Assert.EndsWith("ReminderViewWithStartDateTimeWithEndDateTime()", naming.BuilderExpression, StringComparison.Ordinal); + } + + [Fact] + public void UnparameterizedFunctionIsABuilderProperty() + { + // Kiota exposes a zero-argument function as a property, not a method (verified on + // Users.Delta and Users.Item.ExportDeviceAndAppManagementData). + Assert.Equal("Users.Delta", Resolve(HttpMethod.Get, "/users/delta()", OperationKind.Function).BuilderExpression); + } + + // A verb outside the published SDK's own set is refused rather than guessed at: emitting an + // unknown Verbs* class would not compile, and inventing one would ship an unapproved verb. + [Fact] + public void RejectsAVerbTheSdkDoesNotUse() + { + Assert.Equal("VerbsCommon", PsVerb.FromApprovedName("Add").AttributeClass); + Assert.Equal("VerbsCommunications", PsVerb.FromApprovedName("Send").AttributeClass); + Assert.Throws(() => PsVerb.FromApprovedName("Frobnicate")); + } + + // ---- emission ------------------------------------------------------------------------- + + // An action whose response references an entity: kiota returns that model from the plain + // PostAsync, and the action's own parameters come from the inline request body it generates + // as PostRequestBody. + private const string AssignLicenseYaml = """ + openapi: 3.0.1 + info: { title: t, version: v1.0 } + paths: + '/users/{user-id}/assignLicense': + post: + operationId: users.user.assignLicense + requestBody: + content: + application/json: + schema: + type: object + properties: + addLicenses: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.assignedLicense' + removeLicenses: + type: array + items: { type: string, format: uuid } + responses: + 2XX: + content: + application/json: + schema: + anyOf: + - $ref: '#/components/schemas/microsoft.graph.user' + - type: object + nullable: true + x-ms-docs-operation-type: action + components: + schemas: + microsoft.graph.user: { type: object, properties: { id: { type: string } } } + microsoft.graph.assignedLicense: { type: object, properties: { skuId: { type: string, format: uuid } } } + """; + + [Fact] + public void EmitsActionWithComplexRequestBodyAndEntityReturn() + { + var (files, source) = Generate(AssignLicenseYaml, "InvokeMgUserAssignLicense.g.cs"); + + Assert.Contains("InvokeMgUserAssignLicense.g.cs", files); + // Body type is the per-operation class kiota generates beside the request builder. + Assert.Contains("new global::Microsoft.Graph.PowerShell.Test.Client.Users.Item.AssignLicense.AssignLicensePostRequestBody()", source, StringComparison.Ordinal); + // Body properties bind as parameters, arrays included. A model type is emitted fully + // qualified but without "global::", the way every other bound model parameter is. + Assert.Contains("public Microsoft.Graph.PowerShell.Test.Client.Models.AssignedLicense[]? AddLicenses", source, StringComparison.Ordinal); + Assert.Contains("public global::System.Guid?[]? RemoveLicenses", source, StringComparison.Ordinal); + // anyOf[$ref, nullable] is a nullability annotation, so the return is the entity itself. + Assert.Contains("[OutputType(typeof(Microsoft.Graph.PowerShell.Test.Client.Models.User))]", source, StringComparison.Ordinal); + Assert.Contains(".PostAsync(body,", source, StringComparison.Ordinal); + // An action mutates, so it gates on ShouldProcess like the other writing cmdlets. + Assert.Contains("SupportsShouldProcess = true", source, StringComparison.Ordinal); + } + + // An action with no response body at all - the largest single response shape in v1.0 (784 + // operations). Kiota emits a plain Task-returning PostAsync, so the cmdlet has no output. + private const string SendMailYaml = """ + openapi: 3.0.1 + info: { title: t, version: v1.0 } + paths: + '/users/{user-id}/sendMail': + post: + operationId: users.user.sendMail + requestBody: + content: + application/json: + schema: + type: object + properties: + saveToSentItems: { type: boolean } + responses: + '204': { description: Success } + x-ms-docs-operation-type: action + """; + + [Fact] + public void EmitsNoContentActionWithoutAnOutputType() + { + var (files, source) = Generate(SendMailYaml, "InvokeMgUserSendMail.g.cs"); + + Assert.Contains("InvokeMgUserSendMail.g.cs", files); + Assert.DoesNotContain("[OutputType(", source, StringComparison.Ordinal); + Assert.DoesNotContain("WriteObject(", source, StringComparison.Ordinal); + Assert.Contains("public bool? SaveToSentItems", source, StringComparison.Ordinal); + } + + // An action with no request body: kiota's PostAsync takes no body argument, so emitting one + // would not compile. + private const string RestoreYaml = """ + openapi: 3.0.1 + info: { title: t, version: v1.0 } + paths: + '/users/{user-id}/restore': + post: + operationId: users.user.restore + responses: + '204': { description: Success } + x-ms-docs-operation-type: action + """; + + [Fact] + public void EmitsBodilessActionWithoutABodyArgument() + { + var (_, source) = Generate(RestoreYaml, "InvokeMgUserRestore.g.cs"); + Assert.Contains(".PostAsync(requestConfiguration", source, StringComparison.Ordinal); + Assert.DoesNotContain("var body = new", source, StringComparison.Ordinal); + } + + // A response that wraps its payload in "value" is not an entity: kiota generates a + // per-operation PostResponse for it and marks the plain PostAsync overload + // [Obsolete] in favour of PostAsPostResponseAsync. Calling the obsolete overload + // would compile with warnings today and break when kiota removes it. + private const string GetMemberGroupsYaml = """ + openapi: 3.0.1 + info: { title: t, version: v1.0 } + paths: + '/users/{user-id}/getMemberGroups': + post: + operationId: users.user.getMemberGroups + requestBody: + content: + application/json: + schema: + type: object + properties: + securityEnabledOnly: { type: boolean } + responses: + 2XX: + content: + application/json: + schema: + type: object + properties: + value: + type: array + items: { type: string } + x-ms-docs-operation-type: action + """; + + [Fact] + public void CallsTheNonObsoleteMethodForAValueWrappingResponse() + { + var (_, source) = Generate(GetMemberGroupsYaml, "InvokeMgUserGetMemberGroups.g.cs"); + + Assert.Contains(".PostAsGetMemberGroupsPostResponseAsync(body,", source, StringComparison.Ordinal); + Assert.Contains("Users.Item.GetMemberGroups.GetMemberGroupsPostResponse", source, StringComparison.Ordinal); + } + + // A parameterized function. These OpenAPI documents declare no path parameters at all + // (grep -c 'in: path' over openApiDocs_KiotaCompat/v1.0 is 0), so kiota emits the accessor + // with an empty signature and leaves the placeholders in the URL template. The values go in + // through the builder's public path-parameter constructor, keyed by the template's own + // placeholder names - "{user-id}" is stored percent-encoded as "user%2Did". + private const string ReminderViewYaml = """ + openapi: 3.0.1 + info: { title: t, version: v1.0 } + paths: + "/users/{user-id}/reminderView(StartDateTime='{StartDateTime}',EndDateTime='{EndDateTime}')": + get: + operationId: users.user.reminderView + parameters: + - { name: $top, in: query, schema: { type: integer } } + responses: + 2XX: + content: + application/json: + schema: + type: object + properties: + value: + type: array + items: { $ref: '#/components/schemas/microsoft.graph.reminder' } + x-ms-docs-operation-type: function + components: + schemas: + microsoft.graph.reminder: { type: object, properties: { eventId: { type: string } } } + """; + + [Fact] + public void EmitsParameterizedFunctionBindingItsArgumentsThroughThePathParameters() + { + var (files, source) = Generate(ReminderViewYaml, "GetMgUserReminderViewWithStartDateTimeWithEndDateTime.g.cs"); + + Assert.Contains("GetMgUserReminderViewWithStartDateTimeWithEndDateTime.g.cs", files); + // Arguments are mandatory cmdlet parameters positioned after the path ids. + Assert.Contains("public string StartDateTime", source, StringComparison.Ordinal); + Assert.Contains("public string EndDateTime", source, StringComparison.Ordinal); + // Keyed by the URL-template placeholder, with kiota's percent-encoding for "user-id". + Assert.Contains("{ \"user%2Did\", UserId },", source, StringComparison.Ordinal); + Assert.Contains("{ \"StartDateTime\", StartDateTime },", source, StringComparison.Ordinal); + Assert.Contains("new global::Microsoft.Graph.PowerShell.Test.Client.Users.Item.ReminderViewWithStartDateTimeWithEndDateTime.ReminderViewWithStartDateTimeWithEndDateTimeRequestBuilder(pathParameters, requestAdapter)", source, StringComparison.Ordinal); + // Only declared query options bind: kiota generates a property per declared option. + Assert.Contains("QueryParameters.Top = Top;", source, StringComparison.Ordinal); + Assert.DoesNotContain("QueryParameters.Filter", source, StringComparison.Ordinal); + // A function reads, so it does not gate on ShouldProcess. + Assert.DoesNotContain("SupportsShouldProcess", source, StringComparison.Ordinal); + } + + // A function returning a single entity comes back from the plain GetAsync. + private const string ExportDataYaml = """ + openapi: 3.0.1 + info: { title: t, version: v1.0 } + paths: + '/users/{user-id}/exportDeviceAndAppManagementData()': + get: + operationId: users.user.exportDeviceAndAppManagementData + responses: + 2XX: + content: + application/json: + schema: + anyOf: + - $ref: '#/components/schemas/microsoft.graph.deviceAndAppManagementData' + - type: object + nullable: true + x-ms-docs-operation-type: function + components: + schemas: + microsoft.graph.deviceAndAppManagementData: { type: object, properties: { id: { type: string } } } + """; + + [Fact] + public void EmitsEntityReturningFunctionThroughPlainGetAsync() + { + var (_, source) = Generate(ExportDataYaml, "GetMgUserExportDeviceAndAppManagementData.g.cs"); + Assert.Contains("[OutputType(typeof(Microsoft.Graph.PowerShell.Test.Client.Models.DeviceAndAppManagementData))]", source, StringComparison.Ordinal); + Assert.Contains(".GetAsync(requestConfiguration", source, StringComparison.Ordinal); + } + + // An operation whose success response is bytes rather than JSON. Kiota types these as + // Stream from the ordinary Post/GetAsync, and the Intune reporting surface is almost all of + // this shape (94 of the 101 shipped cmdlets it covers). + private const string CachedReportYaml = """ + openapi: 3.0.1 + info: { title: t, version: v1.0 } + paths: + /deviceManagement/reports/getCachedReport: + post: + operationId: deviceManagement.reports.getCachedReport + requestBody: + content: + application/json: + schema: + type: object + properties: + id: { type: string } + responses: + 2XX: + content: + application/octet-stream: + schema: { type: string, format: binary } + x-ms-docs-operation-type: action + """; + + [Fact] + public void EmitsStreamReturningActionAsBytes() + { + var (files, source) = Generate(CachedReportYaml, "InvokeMgDeviceManagementReportGetCachedReport.g.cs"); + + Assert.Contains("InvokeMgDeviceManagementReportGetCachedReport.g.cs", files); + // The body still binds like any other action; only the response handling differs. + Assert.Contains("GetCachedReportPostRequestBody()", source, StringComparison.Ordinal); + Assert.Contains("System.IO.Stream? result;", source, StringComparison.Ordinal); + // A raw Stream is bound to the request that produced it, so the bytes are what reaches + // the pipeline — and that is what the declared output type has to say. + Assert.Contains("[OutputType(typeof(byte[]))]", source, StringComparison.Ordinal); + Assert.Contains("result.CopyTo(buffer);", source, StringComparison.Ordinal); + Assert.Contains("WriteObject(buffer.ToArray());", source, StringComparison.Ordinal); + // The response stream owns the HTTP response. Disposing only the buffer would leak one + // connection per invocation, across every cmdlet of this shape. + Assert.Contains("using (result)", source, StringComparison.Ordinal); + } + + // ---- the resource / operation boundary ------------------------------------------------ + // + // A stream response is generated for an action or a function and NOT for a resource GET, + // whose stream downloads remain the pre-existing gap. The two tests below pin both sides. + // The distinction is load-bearing and easy to lose: the media-content check originally ran + // against every GET, which silently swallowed 98 stream-returning FUNCTIONS before the + // action/function path could see them — the bug that made a first attempt recover 20 of 118. + + private const string StreamFunctionYaml = """ + openapi: 3.0.1 + info: { title: t, version: v1.0 } + paths: + '/deviceManagement/reports/getReportFilters()': + get: + operationId: deviceManagement.reports.getReportFilters + responses: + 2XX: + content: + application/octet-stream: + schema: { type: string, format: binary } + x-ms-docs-operation-type: function + """; + + [Fact] + public void StreamReturningFunctionGenerates() + { + var (files, source) = Generate(StreamFunctionYaml, "GetMgDeviceManagementReportGetReportFilters.g.cs"); + + Assert.Contains("GetMgDeviceManagementReportGetReportFilters.g.cs", files); + Assert.Contains("[OutputType(typeof(byte[]))]", source, StringComparison.Ordinal); + Assert.Contains("System.IO.Stream? result;", source, StringComparison.Ordinal); + } + + // The response declares JSON *and* octet-stream, which is how the styled documents describe + // a /content endpoint (found by compiling Teams). That combination is the whole reason the + // media check exists: the JSON schema is present, so every other guard is satisfied, and + // only the binary content stops the generator deserialising an entity from a call kiota + // types as Stream. A fixture with octet-stream ALONE proves nothing here — the + // missing-JSON-schema guard rejects it whether the media check runs or not, so the test + // would pass with the check deleted. + private const string StreamResourceGetYaml = """ + openapi: 3.0.1 + info: { title: t, version: v1.0 } + paths: + '/drives/{drive-id}/items/{driveItem-id}/content': + get: + operationId: drives.driveItem.GetContent + responses: + 2XX: + content: + application/json: + schema: { $ref: '#/components/schemas/microsoft.graph.driveItem' } + application/octet-stream: + schema: { type: string, format: binary } + components: + schemas: + microsoft.graph.driveItem: { type: object, properties: { id: { type: string } } } + """; + + // A media download on an ordinary resource GET (no x-ms-docs-operation-type) goes through the + // content emitter: kiota types the call as Stream, so it binds as bytes with -OutFile rather + // than deserialising the entity schema the styled document also lists. 78 v1.0 routes are this + // shape (/content, /logo, /favicon, attachmentsArchive), 75 of which the published SDK ships. + [Fact] + public void StreamReturningResourceGetEmitsTheContentShape() + { + var (files, source) = Generate(StreamResourceGetYaml, "GetMgDriveItemContent.g.cs"); + + Assert.Contains("GetMgDriveItemContent.g.cs", files); + Assert.Contains("[OutputType(typeof(byte[]))]", source, StringComparison.Ordinal); + Assert.Contains("System.IO.Stream? result;", source, StringComparison.Ordinal); + // The response stream owns the HTTP response and is disposed, and -OutFile is declared + // because this response really is a stream. + Assert.Contains("using (result)", source, StringComparison.Ordinal); + Assert.Contains("IsParameterBound(nameof(OutFile))", source, StringComparison.Ordinal); + // The entity schema the document also lists must NOT be bound. + Assert.DoesNotContain("DriveItem? result;", source, StringComparison.Ordinal); + } + + // The binary FORMAT is the signal, not merely a non-JSON media type. A text/plain success + // response is an ordinary scalar: binding it as a stream would emit a byte[] cmdlet for a + // string. This is the boundary the media test has to hold, and it is why the check reads the + // schema's format rather than the content-type string. + [Fact] + public void NonBinaryNonJsonResponseIsNotTreatedAsAMediaDownload() + { + const string yaml = """ + openapi: 3.0.1 + info: { title: t, version: v1.0 } + paths: + '/users/{user-id}/somethingPlain': + get: + operationId: users.user.plain + responses: + '200': + content: + text/plain: + schema: { type: string } + """; + + var (files, _) = Generate(yaml, "unused"); + Assert.Equal(["Shared.g.cs"], files); + } + + // ---- OData $-segments ------------------------------------------------------------------- + + // A /$count GET. The response is text/plain (that is how OData returns a count), but kiota + // types it as int? from a plain GetAsync on the Count builder, so it is neither a media + // download nor an entity read. The published SDK names it Get-MgCount. + private const string CountYaml = """ + openapi: 3.0.1 + info: { title: t, version: v1.0 } + paths: + '/users/$count': + get: + operationId: users.GetCount + parameters: + - { name: $filter, in: query, schema: { type: string } } + responses: + 2XX: + content: + text/plain: + schema: { type: integer, format: int32 } + """; + + [Fact] + public void EmitsCountCmdletForTheCountSegment() + { + var (files, source) = Generate(CountYaml, "GetMgUserCount.g.cs"); + + Assert.Contains("GetMgUserCount.g.cs", files); + // The noun takes the published suffix and the call goes through kiota's Count member. + Assert.Contains("\"MgUserCount\"", source, StringComparison.Ordinal); + Assert.Contains("client.Users.Count.GetAsync(", source, StringComparison.Ordinal); + Assert.Contains("[OutputType(typeof(int))]", source, StringComparison.Ordinal); + Assert.Contains("int? result;", source, StringComparison.Ordinal); + // text/plain must not be mistaken for a media download and filtered out. + Assert.DoesNotContain("byte[]", source, StringComparison.Ordinal); + } + + // A collection navigation's /$ref lists reference URLs. Kiota types that as + // StringCollectionResponse — a collection of strings, not of entities — so the ordinary list + // emitter's entity resolution does not apply. The published SDK names it …ByRef. + private const string RefCollectionYaml = """ + openapi: 3.0.1 + info: { title: t, version: v1.0 } + paths: + '/groups/{group-id}/members/$ref': + get: + operationId: groups.group.ListMemberByRef + responses: + 2XX: + content: + application/json: + schema: + type: object + properties: + value: { type: array, items: { type: string } } + """; + + [Fact] + public void EmitsReferenceListForACollectionRefSegment() + { + var (files, source) = Generate(RefCollectionYaml, "GetMgGroupMemberByRef.g.cs"); + + Assert.Contains("GetMgGroupMemberByRef.g.cs", files); + Assert.Contains("\"MgGroupMemberByRef\"", source, StringComparison.Ordinal); + Assert.Contains("client.Groups[GroupId].Members.Ref.GetAsync(", source, StringComparison.Ordinal); + Assert.Contains("Models.StringCollectionResponse? result;", source, StringComparison.Ordinal); + } + + // A /$ref write. microsoft.graph.referenceCreate has exactly ONE property, "@odata.id", and + // it is the caller-supplied target of the link. Excluding it as OData control data left the + // cmdlet posting an empty body with no way to say what to link — a cmdlet that cannot work. + // Kiota names the member OdataId, so the parameter and the assignment must use that. + private const string RefCreateYaml = """ + openapi: 3.0.1 + info: { title: t, version: v1.0 } + paths: + '/groups/{group-id}/members/$ref': + post: + operationId: groups.group.CreateMemberByRef + requestBody: + content: + application/json: + schema: { $ref: '#/components/schemas/ReferenceCreate' } + responses: + '204': { description: Success } + put: + operationId: groups.group.SetMemberByRef + requestBody: + content: + application/json: + schema: { $ref: '#/components/schemas/ReferenceCreate' } + responses: + '204': { description: Success } + components: + schemas: + ReferenceCreate: + type: object + properties: + '@odata.id': { type: string } + """; + + [Theory] + [InlineData("NewMgGroupMemberByRef.g.cs", "PostAsync")] + [InlineData("SetMgGroupMemberByRef.g.cs", "PutAsync")] + public void ReferenceWriteBindsTheODataIdTarget(string file, string method) + { + var (files, source) = Generate(RefCreateYaml, file); + + Assert.Contains(file, files); + // The link target is a real parameter, not swallowed as protocol metadata. + Assert.Contains("public string? OdataId { get; set; }", source, StringComparison.Ordinal); + Assert.Contains("body.OdataId = OdataId;", source, StringComparison.Ordinal); + // "@odata.id" is not a legal C# member; kiota's OdataId spelling is what compiles. + Assert.DoesNotContain("body.@odata.id", source, StringComparison.Ordinal); + Assert.Contains($".{method}(body,", source, StringComparison.Ordinal); + // A reference write returns no content, so it declares no output type. + Assert.DoesNotContain("[OutputType(", source, StringComparison.Ordinal); + } + + // The annotations that really are protocol metadata stay excluded — binding @odata.type + // would put a type discriminator on the parameter surface of ~10,600 body properties. + [Fact] + public void MetadataODataAnnotationsAreStillExcluded() + { + const string yaml = """ + openapi: 3.0.1 + info: { title: t, version: v1.0 } + paths: + '/users/{user-id}/sendMail': + post: + operationId: users.user.sendMail + requestBody: + content: + application/json: + schema: + type: object + properties: + '@odata.type': { type: string } + '@odata.count': { type: integer, format: int32 } + saveToSentItems: { type: boolean } + responses: + '204': { description: Success } + x-ms-docs-operation-type: action + """; + + var (_, source) = Generate(yaml, "InvokeMgUserSendMail.g.cs"); + Assert.Contains("public bool? SaveToSentItems", source, StringComparison.Ordinal); + Assert.DoesNotContain("OdataType", source, StringComparison.Ordinal); + Assert.DoesNotContain("OdataCount", source, StringComparison.Ordinal); + } + + // A /$value read and write. Kiota exposes the segment as the Content builder (the folder is + // Value, the accessor is Content) and types both as Stream. -OutFile and -InFile match the + // published surface: Get-MgUserPhotoContent -OutFile, Set-MgUserPhotoContent -InFile. + private const string ValueYaml = """ + openapi: 3.0.1 + info: { title: t, version: v1.0 } + paths: + '/users/{user-id}/photo/$value': + get: + operationId: users.user.photo.GetContent + responses: + 2XX: + content: + application/octet-stream: + schema: { type: string, format: binary } + put: + operationId: users.user.photo.SetContent + requestBody: + content: + application/octet-stream: + schema: { type: string, format: binary } + responses: + 2XX: + content: + application/octet-stream: + schema: { type: string, format: binary } + """; + + [Fact] + public void EmitsContentReadAndWriteForTheValueSegment() + { + var (files, getSource) = Generate(ValueYaml, "GetMgUserPhotoContent.g.cs"); + Assert.Contains("GetMgUserPhotoContent.g.cs", files); + Assert.Contains("SetMgUserPhotoContent.g.cs", files); + Assert.Contains("client.Users[UserId].Photo.Content.GetAsync(", getSource, StringComparison.Ordinal); + Assert.Contains("public string? OutFile", getSource, StringComparison.Ordinal); + Assert.Contains("using (result)", getSource, StringComparison.Ordinal); + + var (_, putSource) = Generate(ValueYaml, "SetMgUserPhotoContent.g.cs"); + Assert.Contains("public string InFile", putSource, StringComparison.Ordinal); + Assert.Contains("System.IO.File.OpenRead(InFile)", putSource, StringComparison.Ordinal); + Assert.Contains(".PutAsync(content,", putSource, StringComparison.Ordinal); + } + + // A $-segment with no emitter must still be skipped rather than fall through to the resource + // emitters. $count, $ref and $value are emitted; anything else is not. + [Fact] + public void UnimplementedODataSegmentsAreStillSkipped() + { + const string yaml = """ + openapi: 3.0.1 + info: { title: t, version: v1.0 } + paths: + '/users/{user-id}/messages/$delta': + get: + operationId: unsupported.segment + responses: + 2XX: + content: + application/json: + schema: { $ref: '#/components/schemas/microsoft.graph.user' } + components: + schemas: + microsoft.graph.user: { type: object, properties: { id: { type: string } } } + """; + + var (files, _) = Generate(yaml, "unused"); + Assert.Equal(["Shared.g.cs"], files); + } + + // Only x-ms-docs-operation-type makes an operation an action or a function. Without it a + // parenthesised segment is still an unsupported OData shape, and the generator must not + // start emitting garbage nouns for one. + [Fact] + public void TreatsAParenthesisedSegmentAsUnsupportedWhenTheSpecDoesNotCallItAFunction() + { + const string yaml = """ + openapi: 3.0.1 + info: { title: t, version: v1.0 } + paths: + "/users/{user-id}/somethingElse(x='{x}')": + get: + operationId: users.user.somethingElse + responses: + 2XX: + content: + application/json: + schema: { $ref: '#/components/schemas/microsoft.graph.user' } + components: + schemas: + microsoft.graph.user: { type: object, properties: { id: { type: string } } } + """; + + var (files, _) = Generate(yaml, "unused"); + Assert.Equal(["Shared.g.cs"], files); + } + + // An action declared on a method other than POST (or a function on other than GET) would be + // emitted with the wrong request shape, so the metadata is not trusted on its own. + [Fact] + public void IgnoresAnOperationTypeThatContradictsItsHttpMethod() + { + const string yaml = """ + openapi: 3.0.1 + info: { title: t, version: v1.0 } + paths: + '/users/{user-id}/thing': + delete: + operationId: users.user.thing + responses: + '204': { description: Success } + x-ms-docs-operation-type: action + """; + + var (files, _) = Generate(yaml, "RemoveMgUserThing.g.cs"); + // Falls back to resource handling: DELETE still emits its ordinary Remove- cmdlet. + Assert.Contains("RemoveMgUserThing.g.cs", files); + } + + // A binary upload whose response is the updated ENTITY rather than the bytes back. This is + // the common shape, not an edge case: 56 of the 190 v1.0 cmdlets that reach EmitContentSet + // return a driveItem, onenotePage or callRecording. Both PUT paths land here — the /$value + // branch and EmitSetFor's non-JSON-request-body branch — so the gate belongs in the emitter. + // + // -OutFile only ever gets read inside the stream-output block, so on an entity response it is + // a parameter that accepts a path and silently ignores it. The two cases are asserted + // together on purpose: deleting the gate fails the entity case, and hard-coding it to "" + // fails the stream case, so neither mistake passes. + private const string ContentWriteYaml = """ + openapi: 3.0.1 + info: { title: t, version: v1.0 } + paths: + '/drives/{drive-id}/bundles/{driveItem-id}/content': + put: + operationId: drives.bundles.SetContent + requestBody: + content: + application/octet-stream: + schema: { type: string, format: binary } + responses: + 2XX: + content: + RESPONSE_CONTENT + components: + schemas: + microsoft.graph.driveItem: { type: object, properties: { id: { type: string } } } + """; + + [Fact] + public void ContentWriteDeclaresOutFileOnlyWhenTheResponseIsAStream() + { + var entityYaml = ContentWriteYaml.Replace("RESPONSE_CONTENT", + "application/json:\n schema: { $ref: '#/components/schemas/microsoft.graph.driveItem' }", + StringComparison.Ordinal); + var (files, entitySource) = Generate(entityYaml, "SetMgDriveBundleContent.g.cs"); + + Assert.Contains("SetMgDriveBundleContent.g.cs", files); + // The upload itself is unaffected; only the unusable output redirect goes away. + Assert.Contains("public string InFile", entitySource, StringComparison.Ordinal); + Assert.Contains("System.IO.File.OpenRead(InFile)", entitySource, StringComparison.Ordinal); + Assert.Contains("WriteObject(result);", entitySource, StringComparison.Ordinal); + Assert.DoesNotContain("OutFile", entitySource, StringComparison.Ordinal); + + var streamYaml = ContentWriteYaml.Replace("RESPONSE_CONTENT", + "application/octet-stream:\n schema: { type: string, format: binary }", + StringComparison.Ordinal); + var (_, streamSource) = Generate(streamYaml, "SetMgDriveBundleContent.g.cs"); + + // A stream response still redirects to disk, and still disposes the response. + Assert.Contains("public string? OutFile", streamSource, StringComparison.Ordinal); + Assert.Contains("IsParameterBound(nameof(OutFile))", streamSource, StringComparison.Ordinal); + Assert.Contains("using (result)", streamSource, StringComparison.Ordinal); + } +} diff --git a/tools/WrapperGenerator.Tests/GenerationServiceRegressionTests.cs b/tools/WrapperGenerator.Tests/GenerationServiceRegressionTests.cs index b63d68d2443..ff28c356c9a 100644 --- a/tools/WrapperGenerator.Tests/GenerationServiceRegressionTests.cs +++ b/tools/WrapperGenerator.Tests/GenerationServiceRegressionTests.cs @@ -148,11 +148,13 @@ public async Task GenerateAsync_SkipsPostWithNonRefBodySchema_DoesNotThrow() } [Theory] - // $count would produce a mangled noun (Get-MgUsercount); $value an invalid builder chain - // (client...$value does not compile); parameterized function segments mangle into garbage - // nouns. All are skipped up front until those shapes are supported. - [InlineData("/users/$count")] - [InlineData("/users/{user-id}/photo/$value")] + // A parameterized call segment on a plain resource operation mangles into a garbage noun, so + // it is skipped up front. + // + // $count, $ref and $value are NO LONGER here: all three are emitted now — see + // EmitsCountCmdletForTheCountSegment, EmitsReferenceListForACollectionRefSegment and + // EmitsContentReadAndWriteForTheValueSegment in ActionFunctionTests. They moved out of this + // list deliberately, not because the assertions became inconvenient. [InlineData("/solutions/virtualEvents/townhalls/getByUserIdAndRole(userId='{userId}',role='{role}')")] public async Task GenerateAsync_SkipsUnsupportedODataPathSegments_DoesNotEmitMalformedCmdlets(string path) { @@ -246,10 +248,14 @@ public async Task GenerateAsync_FailsLoudlyWhenTwoCmdletsResolveToTheSameFile() Assert.Contains("GetMgWidget.g.cs", ex.Message); Assert.Contains("collision", ex.Message); - // Both colliding cmdlets are named Get-MgWidget, so only their builder expressions - // prove the message identifies both operations. - Assert.Contains("[Widgets[WidgetId]]", ex.Message); - Assert.Contains("Widgets[WidgetId].Widgets[WidgetId1]", ex.Message); + // Both colliding cmdlets are named Get-MgWidget, so only their routes prove the + // message identifies both operations. The route is reported directly rather than as + // the builder expression it used to carry: Derive-CollisionResolutions.ps1 resolves + // each colliding route against the oracle, and a builder expression cannot express a + // function's OData arguments or an action's namespace qualifier, so rebuilding a + // route from one silently resolved those operations against the wrong oracle row. + Assert.Contains("[/widgets/{}]", ex.Message); + Assert.Contains("[/widgets/{}/widgets/{}]", ex.Message); } finally { diff --git a/tools/WrapperGenerator.Tests/NamingTests.cs b/tools/WrapperGenerator.Tests/NamingTests.cs index a065649b851..2dc2dbdc3a1 100644 --- a/tools/WrapperGenerator.Tests/NamingTests.cs +++ b/tools/WrapperGenerator.Tests/NamingTests.cs @@ -129,6 +129,15 @@ private static CmdletNaming Resolve(string method, string path) => [InlineData("GET", "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sectionGroups", "Get", "MgUserOnenoteSectionGroup")] // OData cast segments (Get-MgGroupOwnerAsUser) [InlineData("GET", "/groups/{group-id}/owners/{directoryObject-id}/graph.user", "Get", "MgGroupOwnerAsUser")] + // A /$count directly after a cast counts the cast-filtered collection, and the published name + // puts Count before the cast suffix: 131 v1.0 routes have this shape and all ship this way + // (Get-MgUserMemberOfCountAsGroup, Get-MgDeviceRegisteredUserCountAsEndpoint). + [InlineData("GET", "/users/{user-id}/memberOf/graph.group/$count", "Get", "MgUserMemberOfCountAsGroup")] + [InlineData("GET", "/deviceAppManagement/mobileApps/graph.win32LobApp/$count", "Get", "MgDeviceAppManagementMobileAppCountAsWin32LobApp")] + // ...but only a DIRECTLY adjacent cast moves. With a segment in between, the cast keeps its + // position and Count stays last (Get-MgDeviceAppManagementMobileAppAsAndroidLobAppCategoryCount). + // This pair is the boundary: reordering unconditionally would break this name. + [InlineData("GET", "/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/categories/$count", "Get", "MgDeviceAppManagementMobileAppAsAndroidLobAppCategoryCount")] public void ResolvesPublishedSdkNames(string method, string path, string expectedVerb, string expectedNoun) { var naming = Resolve(method, path); diff --git a/tools/WrapperGenerator.Tests/ParityDataDriftTests.cs b/tools/WrapperGenerator.Tests/ParityDataDriftTests.cs new file mode 100644 index 00000000000..2ba104d5170 --- /dev/null +++ b/tools/WrapperGenerator.Tests/ParityDataDriftTests.cs @@ -0,0 +1,48 @@ +using System; +using System.Diagnostics; +using System.IO; +using Xunit; + +namespace WrapperGenerator.Tests; + +// The checked-in parity-resolution data (tools/WrapperGenerator/data/parity-*.json) is derived +// FROM the frozen input ledger (data/parity-input-ledger.v1.0.csv, captured from a +// --no-collision-data generation) and the oracle by tools/Derive-ParityResolutions.ps1. This +// test shells out to the script's -Validate mode so drift between ledger, oracle and data +// fails the suite instead of depending on someone remembering to re-derive. Validation reads +// the frozen ledger, never the live artifacts tree: once the data is embedded the live tree +// has the renames applied, and deriving from it would validate the data against itself. +public sealed class ParityDataDriftTests +{ + [Fact] + public void DerivedParityDataMatchesAFreshDerivation() + { + var scriptPath = Path.Combine(FindRepoRoot(), "tools", "Derive-ParityResolutions.ps1"); + Assert.True(File.Exists(scriptPath), $"Derivation script not found at '{scriptPath}'."); + + var psi = new ProcessStartInfo("pwsh") + { + ArgumentList = { "-NoProfile", "-NonInteractive", "-File", scriptPath, "-Validate" }, + RedirectStandardOutput = true, + RedirectStandardError = true, + UseShellExecute = false, + }; + using var process = Process.Start(psi) ?? throw new InvalidOperationException("Failed to start pwsh."); + var stdout = process.StandardOutput.ReadToEnd(); + var stderr = process.StandardError.ReadToEnd(); + process.WaitForExit(); + + Assert.True(process.ExitCode == 0, + "Checked-in parity-suppressions/renames JSON no longer matches a fresh derivation from " + + "parity-input-ledger.v1.0.csv and the oracle. Re-run tools/Derive-ParityResolutions.ps1 " + + $"(without -Validate) and commit the result.\n--- stdout ---\n{stdout}\n--- stderr ---\n{stderr}"); + } + + private static string FindRepoRoot() + { + var dir = AppContext.BaseDirectory; + while (dir is not null && !File.Exists(Path.Combine(dir, "tools", "Derive-ParityResolutions.ps1"))) + dir = Path.GetDirectoryName(dir); + return dir ?? throw new InvalidOperationException("Repo root not found from test base directory."); + } +} diff --git a/tools/WrapperGenerator/CmdletEmitter.cs b/tools/WrapperGenerator/CmdletEmitter.cs index 21b90c41cc1..4c78c72856d 100644 --- a/tools/WrapperGenerator/CmdletEmitter.cs +++ b/tools/WrapperGenerator/CmdletEmitter.cs @@ -154,6 +154,454 @@ private static string EmitCallWithOptionalHeaders(CmdletNaming naming, string me return $"{call}{args}requestConfiguration =>\n {{{bindings}\n }})"; } + // How one action/function call is issued: the kiota method to invoke, the type it returns + // (null when the operation has no response body), and the generated request-body type + // (null when the operation declares no body). Kiota picks the method name from the response + // shape — a response that wraps its payload in "value" gets a dedicated + // …AsResponseAsync method, and the plain PostAsync/GetAsync overload beside it + // is marked [Obsolete] — so the choice is resolved once, where the schema is read, rather + // than re-derived in the template. + public sealed record CallPlan(string MethodName, string? ReturnTypeName, string? BodyTypeName, bool ReturnsStream = false); + + // -OutFile matches the published surface for stream reads + // (Get-MgUserPhotoContent -OutFile ). It is optional: the shipped reporting cmdlets + // are documented without it, so an unbound -OutFile writes the bytes to the pipeline + // instead, and both documented usages work. + // The [GraphRoute] attribute line for a cmdlet class. See GraphRouteAttribute in Shared.g.cs. + private static string RouteAttr(CmdletNaming naming) => + $" [GraphRoute(\"{EscapeLiteral(naming.SourceMethod)}\", \"{EscapeLiteral(naming.SourcePath)}\")]"; + + private static string OutFileParamDecl() => """ + + + [Parameter(Mandatory = false, + HelpMessage = "Writes the response content to this path instead of returning it as bytes.")] + public string? OutFile { get; set; } + """; + + // A stream response is read into a byte array before it reaches the pipeline. The raw Stream + // is tied to the request that produced it, so emitting it would hand the caller an object + // that is empty by the time they use it; the bytes are what the operation actually returns. + // The response stream is disposed as well as the buffer: it owns the underlying HTTP + // response, and a cmdlet that leaks one per call leaks a connection per call. + private const string StreamOutputBlock = """ + + if (result is not null) + { + using (result) + { + if (this.IsParameterBound(nameof(OutFile))) + { + using var file = System.IO.File.Create(OutFile!); + result.CopyTo(file); + } + else + { + using var buffer = new System.IO.MemoryStream(); + result.CopyTo(buffer); + WriteObject(buffer.ToArray()); + } + } + } + """; + + // Kiota keys its path-parameter dictionary by the URL-template placeholder, percent-encoding + // every character that is not valid in an identifier: "{user-id}" is stored as "user%2Did". + // The emitted dictionary has to use the same key or the template leaves the placeholder + // unexpanded and the request goes to a literal "{user-id}" URL. + private static string ToTemplateKey(string templateName) + { + var encoded = new System.Text.StringBuilder(templateName.Length); + foreach (var c in templateName) + { + if (char.IsLetterOrDigit(c) || c == '_') + encoded.Append(c); + else + encoded.Append('%').Append(((int)c).ToString("X2", System.Globalization.CultureInfo.InvariantCulture)); + } + return encoded.ToString(); + } + + private static string FunctionParamDecls(CmdletNaming naming) => + string.Join("\n", naming.FunctionParameters.Select((p, i) => $$""" + + [Parameter(Mandatory = true, Position = {{naming.PathParamNames.Count + i}}, + HelpMessage = "Value for the '{{EscapeLiteral(p.TemplateName)}}' parameter of this OData function.")] + public string {{p.PsName}} { get; set; } = string.Empty; + """)); + + // A parameterized OData function has no fluent accessor that can carry its arguments: these + // OpenAPI documents declare no path parameters at all, so kiota emits the accessor with an + // empty signature and leaves the placeholders in the URL template. The builder's public + // path-parameter constructor takes the same dictionary the accessor would have populated, + // so the values are supplied there and kiota expands its own template as usual. + private static string FunctionBuilderConstruction(CmdletNaming naming, EmitContext ctx) + { + var builderType = $"global::{ctx.ClientNamespace}.{naming.OperationTypeNamespace}.{naming.OperationMemberName}RequestBuilder"; + var entries = new List + { + // ApiClient assigns the adapter's BaseUrl, so constructing the client above is what + // makes this key resolvable, not merely a discarded convenience. + " { \"baseurl\", requestAdapter.BaseUrl! },", + }; + entries.AddRange(naming.PathParamTemplates + .Select((template, i) => $" {{ \"{EscapeLiteral(ToTemplateKey(template))}\", {naming.PathParamNames[i]} }},")); + entries.AddRange(naming.FunctionParameters + .Select(p => $" {{ \"{EscapeLiteral(ToTemplateKey(p.TemplateName))}\", {p.PsName} }},")); + + return $$""" + + var pathParameters = new Dictionary + { + {{string.Join("\n", entries)}} + }; + var requestBuilder = new {{builderType}}(pathParameters, requestAdapter); + """; + } + + // The receiver the request method is called on: the fluent chain for an ordinary operation, + // the explicitly constructed builder for a parameterized function. + private static string CallReceiver(CmdletNaming naming) => + naming.FunctionParameters.Count > 0 ? "requestBuilder" : $"client.{naming.BuilderExpression}"; + + // queryBindings, when present, is emitted inside the same requestConfiguration lambda as the + // header bindings, so a call has exactly one configuration block however many kinds of + // option it binds. + private static string EmitCallOn(string receiver, CmdletNaming naming, string method, string? bodyArg, string queryBindings = "") + { + var args = bodyArg is null ? "" : bodyArg + ", "; + var query = queryBindings.Length == 0 ? "" : "\n" + queryBindings; + var bindings = query + HeaderBindingsFor(naming.HeaderParams, extraIndent: " ") + GenericHeadersBinding(" "); + return $"{receiver}.{method}({args}requestConfiguration =>\n {{{bindings}\n }})"; + } + + // An OData action: a POST that calls an operation on a resource rather than creating one. + // Its parameters are the properties of a request body kiota generates per operation, so the + // body type is passed in rather than resolved from a named entity schema. + public static string EmitAction(CmdletNaming naming, EmitContext ctx, CallPlan call, + IReadOnlyList properties, IReadOnlyList complexProperties, + IReadOnlyList untypedProperties) + { + ArgumentNullException.ThrowIfNull(naming); + ArgumentNullException.ThrowIfNull(ctx); + ArgumentNullException.ThrowIfNull(call); + ArgumentNullException.ThrowIfNull(properties); + ArgumentNullException.ThrowIfNull(complexProperties); + ArgumentNullException.ThrowIfNull(untypedProperties); + + var hasBody = call.BodyTypeName is not null; + var bodyConstruction = hasBody + ? $"\n var body = new {call.BodyTypeName}();\n" + + EmitPropertyAssignments(properties) + + EmitComplexAssignments(complexProperties) + + EmitUntypedAssignments(untypedProperties) + : ""; + var callExpression = EmitCallOn(CallReceiver(naming), naming, call.MethodName, hasBody ? "body" : null); + var invocation = call.ReturnTypeName is null + ? $$""" + {{callExpression}} + .GetAwaiter().GetResult(); + """ + : $$""" + result = {{callExpression}}.GetAwaiter().GetResult(); + """; + + return $$""" +#nullable enable + +using System; +using System.Collections.Generic; +using System.Linq; +using System.Management.Automation; +using System.Net.Http; +using Microsoft.Graph.PowerShell.Authentication.Helpers; +using {{ctx.ClientNamespace}}; +using {{ctx.ModelsNamespace}}; +using Microsoft.Kiota.Abstractions; +using Microsoft.Kiota.Abstractions.Authentication; +using Microsoft.Kiota.Http.HttpClientLibrary; + +namespace {{ctx.CmdletNamespace}} +{ +{{RouteAttr(naming)}} + [Cmdlet({{naming.VerbsClass}}.{{naming.VerbName}}, "{{EscapeLiteral(naming.Noun)}}", SupportsShouldProcess = true, ConfirmImpact = ConfirmImpact.Medium)] +{{(call.ReturnTypeName is null ? "" : $" [OutputType(typeof({(call.ReturnsStream ? "byte[]" : call.ReturnTypeName)}))]")}} + public class {{naming.ClassName}} : PSCmdlet + { +{{PathParams(naming)}} +{{EmitPropertyParameters(properties)}} +{{EmitComplexParameters(complexProperties)}} +{{EmitUntypedParameters(untypedProperties)}} +{{HeaderParamDecls(naming)}} +{{GenericHeadersParamDecl()}} +{{(call.ReturnsStream ? OutFileParamDecl() : "")}} +{{AccessTokenParamDecl()}} + + protected override void ProcessRecord() + { + if (!ShouldProcess({{TargetId(naming)}}, "{{naming.VerbName}}")) + return; +{{bodyConstruction}} +{{AuthBlock}} + +{{(call.ReturnTypeName is null ? "" : $" {call.ReturnTypeName}? result;")}} + try + { +{{invocation}} + } +{{CatchBlock(TargetId(naming))}} +{{(call.ReturnTypeName is null ? "" : call.ReturnsStream ? StreamOutputBlock : "\n WriteObject(result);")}} + } + } +} + +"""; + } + + // An OData function: a GET that computes a result rather than reading a stored resource. + // Inline function arguments become mandatory parameters positioned after the path ids. + public static string EmitFunction(CmdletNaming naming, EmitContext ctx, CallPlan call, IReadOnlySet queryParamNames) + { + ArgumentNullException.ThrowIfNull(naming); + ArgumentNullException.ThrowIfNull(ctx); + ArgumentNullException.ThrowIfNull(call); + ArgumentNullException.ThrowIfNull(queryParamNames); + + // Only options the operation declares: kiota generates a query-parameter property per + // declared option, so binding an undeclared one would not compile. + var applicable = CollectionQueryOptions.Where(o => queryParamNames.Contains(o.ODataName)).ToList(); + var queryParamDecls = string.Join("\n\n", applicable.Select(o => o.ParamDecl(null))); + var queryBindings = string.Join("\n\n", applicable.Select(o => o.Binding)); + var builderConstruction = naming.FunctionParameters.Count > 0 ? FunctionBuilderConstruction(naming, ctx) : ""; + + return $$""" +#nullable enable + +using System; +using System.Collections.Generic; +using System.Management.Automation; +using System.Net.Http; +using Microsoft.Graph.PowerShell.Authentication.Helpers; +using {{ctx.ClientNamespace}}; +using {{ctx.ModelsNamespace}}; +using Microsoft.Kiota.Abstractions; +using Microsoft.Kiota.Abstractions.Authentication; +using Microsoft.Kiota.Http.HttpClientLibrary; + +namespace {{ctx.CmdletNamespace}} +{ +{{RouteAttr(naming)}} + [Cmdlet({{naming.VerbsClass}}.{{naming.VerbName}}, "{{EscapeLiteral(naming.Noun)}}")] + [OutputType(typeof({{(call.ReturnsStream ? "byte[]" : call.ReturnTypeName)}}))] + public class {{naming.ClassName}} : PSCmdlet + { +{{PathParams(naming)}} +{{FunctionParamDecls(naming)}} + +{{AccessTokenParamDecl()}} + +{{queryParamDecls}} +{{HeaderParamDecls(naming)}} +{{GenericHeadersParamDecl()}} +{{(call.ReturnsStream ? OutFileParamDecl() : "")}} + + protected override void ProcessRecord() + { +{{AuthBlock}} +{{builderConstruction}} + + {{call.ReturnTypeName}}? result; + try + { + result = {{EmitCallOn(CallReceiver(naming), naming, call.MethodName, null, queryBindings)}}.GetAwaiter().GetResult(); + } +{{CatchBlock(TargetId(naming))}} +{{(call.ReturnsStream ? StreamOutputBlock : "\n WriteObject(result);")}} + } + } +} + +"""; + } + + // An OData /$value read: the raw bytes behind a resource (a photo, an uploaded file). Kiota + // types it as Stream from a plain GetAsync on the Content builder. -OutFile matches the + // published surface (Get-MgUserPhotoContent -OutFile ). + public static string EmitContentGet(CmdletNaming naming, EmitContext ctx, string returnTypeName, bool returnsStream) + { + ArgumentNullException.ThrowIfNull(naming); + ArgumentNullException.ThrowIfNull(ctx); + ArgumentNullException.ThrowIfNull(returnTypeName); + + return $$""" +#nullable enable + +using System; +using System.Management.Automation; +using System.Net.Http; +using Microsoft.Graph.PowerShell.Authentication.Helpers; +using {{ctx.ClientNamespace}}; +using Microsoft.Kiota.Abstractions; +using Microsoft.Kiota.Abstractions.Authentication; +using Microsoft.Kiota.Http.HttpClientLibrary; + +namespace {{ctx.CmdletNamespace}} +{ +{{RouteAttr(naming)}} + [Cmdlet({{naming.VerbsClass}}.{{naming.VerbName}}, "{{EscapeLiteral(naming.Noun)}}")] + [OutputType(typeof({{(returnsStream ? "byte[]" : returnTypeName)}}))] + public class {{naming.ClassName}} : PSCmdlet + { +{{PathParams(naming)}} + +{{AccessTokenParamDecl()}} +{{HeaderParamDecls(naming)}} +{{GenericHeadersParamDecl()}} +{{(returnsStream ? OutFileParamDecl() : "")}} + + protected override void ProcessRecord() + { +{{AuthBlock}} + + {{returnTypeName}}? result; + try + { + result = {{EmitCallOn($"client.{naming.BuilderExpression}", naming, "GetAsync", null)}}.GetAwaiter().GetResult(); + } +{{CatchBlock(TargetId(naming))}} +{{(returnsStream ? StreamOutputBlock : "\n WriteObject(result);")}} + } + } +} + +"""; + } + + // An OData /$value write: uploads the bytes behind a resource. Kiota's PutAsync takes a + // Stream, so -InFile is read from disk — matching the published surface + // (Set-MgUserPhotoContent -InFile ). + public static string EmitContentSet(CmdletNaming naming, EmitContext ctx, string returnTypeName, bool returnsStream) + { + ArgumentNullException.ThrowIfNull(naming); + ArgumentNullException.ThrowIfNull(ctx); + ArgumentNullException.ThrowIfNull(returnTypeName); + + return $$""" +#nullable enable + +using System; +using System.Management.Automation; +using System.Net.Http; +using Microsoft.Graph.PowerShell.Authentication.Helpers; +using {{ctx.ClientNamespace}}; +using Microsoft.Kiota.Abstractions; +using Microsoft.Kiota.Abstractions.Authentication; +using Microsoft.Kiota.Http.HttpClientLibrary; + +namespace {{ctx.CmdletNamespace}} +{ +{{RouteAttr(naming)}} + [Cmdlet({{naming.VerbsClass}}.{{naming.VerbName}}, "{{EscapeLiteral(naming.Noun)}}", SupportsShouldProcess = true, ConfirmImpact = ConfirmImpact.Medium)] + [OutputType(typeof({{(returnsStream ? "byte[]" : returnTypeName)}}))] + public class {{naming.ClassName}} : PSCmdlet + { +{{PathParams(naming)}} + + [Parameter(Mandatory = true, + HelpMessage = "Path to the file whose contents are uploaded.")] + public string InFile { get; set; } = string.Empty; + +{{AccessTokenParamDecl()}} +{{HeaderParamDecls(naming)}} +{{GenericHeadersParamDecl()}} +{{(returnsStream ? OutFileParamDecl() : "")}} + + protected override void ProcessRecord() + { + if (!ShouldProcess({{TargetId(naming)}}, "{{naming.VerbName}}")) + return; +{{AuthBlock}} + + {{returnTypeName}}? result; + try + { + using var content = System.IO.File.OpenRead(InFile); + result = {{EmitCallOn($"client.{naming.BuilderExpression}", naming, "PutAsync", "content")}}.GetAwaiter().GetResult(); + } +{{CatchBlock(TargetId(naming))}} +{{(returnsStream ? StreamOutputBlock : "\n WriteObject(result);")}} + } + } +} + +"""; + } + + // A GET whose response is a single scalar rather than a resource: /$count returns int, and a + // single-valued navigation's /$ref returns the one reference URL as a string. Neither is an + // entity read nor half of a list/item pair, so the CLR type is passed in. + public static string EmitScalarGet(CmdletNaming naming, EmitContext ctx, string clrType, IReadOnlySet queryParamNames) + { + ArgumentNullException.ThrowIfNull(naming); + ArgumentNullException.ThrowIfNull(ctx); + ArgumentNullException.ThrowIfNull(clrType); + ArgumentNullException.ThrowIfNull(queryParamNames); + + // $count accepts $filter and $search only; kiota generates a property per declared + // option, so binding one the operation does not declare would not compile. + var applicable = CollectionQueryOptions + .Where(o => o.ODataName is "$filter" or "$search" && queryParamNames.Contains(o.ODataName)) + .ToList(); + var queryParamDecls = string.Join("\n\n", applicable.Select(o => o.ParamDecl(null))); + var queryBindings = string.Join("\n\n", applicable.Select(o => o.Binding)); + + return $$""" +#nullable enable + +using System; +using System.Management.Automation; +using System.Net.Http; +using Microsoft.Graph.PowerShell.Authentication.Helpers; +using {{ctx.ClientNamespace}}; +using Microsoft.Kiota.Abstractions; +using Microsoft.Kiota.Abstractions.Authentication; +using Microsoft.Kiota.Http.HttpClientLibrary; + +namespace {{ctx.CmdletNamespace}} +{ +{{RouteAttr(naming)}} + [Cmdlet({{naming.VerbsClass}}.{{naming.VerbName}}, "{{EscapeLiteral(naming.Noun)}}")] + [OutputType(typeof({{clrType}}))] + public class {{naming.ClassName}} : PSCmdlet + { +{{PathParams(naming)}} + +{{AccessTokenParamDecl()}} + +{{queryParamDecls}} +{{HeaderParamDecls(naming)}} +{{GenericHeadersParamDecl()}} + + protected override void ProcessRecord() + { +{{AuthBlock}} + + {{clrType}}? result; + try + { + result = {{EmitCallOn($"client.{naming.BuilderExpression}", naming, "GetAsync", null, queryBindings)}}.GetAwaiter().GetResult(); + } +{{CatchBlock(TargetId(naming))}} + + if (result is not null) + WriteObject(result); + } + } +} + +"""; + } + public static string EmitItemGet(CmdletNaming naming, EmitContext ctx, string entityType, IReadOnlySet queryParamNames) { ArgumentNullException.ThrowIfNull(naming); @@ -184,6 +632,7 @@ public static string EmitItemGet(CmdletNaming naming, EmitContext ctx, string en namespace {{ctx.CmdletNamespace}} { +{{RouteAttr(naming)}} [Cmdlet({{naming.VerbsClass}}.{{naming.VerbName}}, "{{EscapeLiteral(naming.Noun)}}")] [OutputType(typeof({{entityType}}))] public class {{naming.ClassName}} : PSCmdlet @@ -279,6 +728,7 @@ public static string EmitListGet(CmdletNaming naming, EmitContext ctx, string en namespace {{ctx.CmdletNamespace}} { +{{RouteAttr(naming)}} [Cmdlet({{naming.VerbsClass}}.{{naming.VerbName}}, "{{EscapeLiteral(naming.Noun)}}")] [OutputType(typeof({{entityType}}))] public class {{naming.ClassName}} : PSCmdlet @@ -404,6 +854,7 @@ public static string EmitGetDispatcher(CmdletNaming listNaming, CmdletNaming ite namespace {{ctx.CmdletNamespace}} { +{{RouteAttr(listNaming)}} [Cmdlet({{listNaming.VerbsClass}}.{{listNaming.VerbName}}, "{{EscapeLiteral(listNaming.Noun)}}", DefaultParameterSetName = "List")] [OutputType(typeof({{collectionResponseType}}), ParameterSetName = new[] { "List" })] [OutputType(typeof({{entityType}}), ParameterSetName = new[] { "Get" })] @@ -475,6 +926,7 @@ public static string EmitNew(CmdletNaming naming, EmitContext ctx, string entity namespace {{ctx.CmdletNamespace}} { +{{RouteAttr(naming)}} [Cmdlet({{naming.VerbsClass}}.{{naming.VerbName}}, "{{EscapeLiteral(naming.Noun)}}", SupportsShouldProcess = true, ConfirmImpact = ConfirmImpact.Medium)] [OutputType(typeof({{entityType}}))] public class {{naming.ClassName}} : PSCmdlet @@ -514,7 +966,7 @@ protected override void ProcessRecord() """; } - public static string EmitUpdate(CmdletNaming naming, EmitContext ctx, string entityType, IReadOnlyList properties, IReadOnlyList complexProperties, IReadOnlyList untypedProperties, bool reFetchAfterUpdate = true) + public static string EmitUpdate(CmdletNaming naming, EmitContext ctx, string entityType, IReadOnlyList properties, IReadOnlyList complexProperties, IReadOnlyList untypedProperties, bool reFetchAfterUpdate = true, string httpMethodName = "PatchAsync") { ArgumentNullException.ThrowIfNull(naming); ArgumentNullException.ThrowIfNull(ctx); @@ -536,6 +988,7 @@ public static string EmitUpdate(CmdletNaming naming, EmitContext ctx, string ent namespace {{ctx.CmdletNamespace}} { +{{RouteAttr(naming)}} [Cmdlet({{naming.VerbsClass}}.{{naming.VerbName}}, "{{EscapeLiteral(naming.Noun)}}", SupportsShouldProcess = true, ConfirmImpact = ConfirmImpact.Medium)] [OutputType(typeof({{entityType}}))] public class {{naming.ClassName}} : PSCmdlet @@ -563,7 +1016,7 @@ protected override void ProcessRecord() {{entityType}}? result; try { - result = {{EmitCallWithOptionalHeaders(naming, "PatchAsync", "body")}}.GetAwaiter().GetResult(); + result = {{EmitCallWithOptionalHeaders(naming, httpMethodName, "body")}}.GetAwaiter().GetResult(); } {{CatchBlock(TargetId(naming))}} @@ -594,6 +1047,7 @@ public static string EmitRemove(CmdletNaming naming, EmitContext ctx) namespace {{ctx.CmdletNamespace}} { +{{RouteAttr(naming)}} [Cmdlet({{naming.VerbsClass}}.{{naming.VerbName}}, "{{EscapeLiteral(naming.Noun)}}", SupportsShouldProcess = true, ConfirmImpact = ConfirmImpact.High)] public class {{naming.ClassName}} : PSCmdlet { @@ -643,6 +1097,25 @@ public static string EmitSharedAuth(EmitContext ctx) namespace {{ctx.CmdletNamespace}} { + // The Graph operation each cmdlet was generated from, carried into the compiled assembly so + // verification tooling reads the operation's identity from the build output rather than + // reconstructing it from the builder expression. That reconstruction is lossy for a function + // (the builder member keeps the argument names but not the OData argument syntax) and wrong + // for a namespace-qualified action (kiota keeps the qualifier, the route does not). + [AttributeUsage(AttributeTargets.Class)] + public sealed class GraphRouteAttribute : Attribute + { + public GraphRouteAttribute(string method, string path) + { + Method = method; + Path = path; + } + + public string Method { get; } + + public string Path { get; } + } + internal static class CmdletExtensions { public static bool IsParameterBound(this PSCmdlet cmdlet, string parameterName) diff --git a/tools/WrapperGenerator/CmdletNaming.cs b/tools/WrapperGenerator/CmdletNaming.cs index 0ee3046c5a1..c7a07b3dc34 100644 --- a/tools/WrapperGenerator/CmdletNaming.cs +++ b/tools/WrapperGenerator/CmdletNaming.cs @@ -17,8 +17,83 @@ public sealed record PsVerb(string AttributeClass, string Name) public static readonly PsVerb Update = new("VerbsData", "Update"); public static readonly PsVerb Set = new("VerbsCommon", "Set"); public static readonly PsVerb Remove = new("VerbsCommon", "Remove"); + // The approved verb for "run this operation", used for every OData action. The published + // SDK maps many individual actions onto more specific approved verbs (sendMail ships as + // Send-, checkMemberGroups as Confirm-); those come from the oracle-derived name data, + // because the mapping is AutoRest's per-operation judgment, not a rule the spec carries. + public static readonly PsVerb Invoke = new("VerbsLifecycle", "Invoke"); + + // Every verb the published v1.0 SDK uses, with the Verbs* class that declares it. The set is + // the oracle's own (45 distinct verbs, all of them PowerShell-approved) and each entry's + // class is the Group that Get-Verb reports for it, so an oracle-derived rename can carry any + // verb the SDK actually ships. A verb outside this set is rejected rather than guessed at: + // emitting the wrong Verbs* class is a compile error, and inventing one would ship an + // unapproved verb. + private static readonly Dictionary ApprovedVerbs = new(StringComparer.Ordinal) + { + ["Add"] = new("VerbsCommon", "Add"), + ["Clear"] = new("VerbsCommon", "Clear"), + ["Close"] = new("VerbsCommon", "Close"), + ["Complete"] = new("VerbsLifecycle", "Complete"), + ["Confirm"] = new("VerbsLifecycle", "Confirm"), + ["Copy"] = new("VerbsCommon", "Copy"), + ["Disable"] = new("VerbsLifecycle", "Disable"), + ["Disconnect"] = new("VerbsCommunications", "Disconnect"), + ["Enable"] = new("VerbsLifecycle", "Enable"), + ["Export"] = new("VerbsData", "Export"), + ["Find"] = new("VerbsCommon", "Find"), + ["Get"] = new("VerbsCommon", "Get"), + ["Grant"] = new("VerbsSecurity", "Grant"), + ["Hide"] = new("VerbsCommon", "Hide"), + ["Import"] = new("VerbsData", "Import"), + ["Initialize"] = new("VerbsData", "Initialize"), + ["Invoke"] = new("VerbsLifecycle", "Invoke"), + ["Join"] = new("VerbsCommon", "Join"), + ["Lock"] = new("VerbsCommon", "Lock"), + ["Merge"] = new("VerbsData", "Merge"), + ["Move"] = new("VerbsCommon", "Move"), + ["New"] = new("VerbsCommon", "New"), + ["Publish"] = new("VerbsData", "Publish"), + ["Remove"] = new("VerbsCommon", "Remove"), + ["Rename"] = new("VerbsCommon", "Rename"), + ["Request"] = new("VerbsLifecycle", "Request"), + ["Reset"] = new("VerbsCommon", "Reset"), + ["Resize"] = new("VerbsCommon", "Resize"), + ["Restart"] = new("VerbsLifecycle", "Restart"), + ["Restore"] = new("VerbsData", "Restore"), + ["Resume"] = new("VerbsLifecycle", "Resume"), + ["Revoke"] = new("VerbsSecurity", "Revoke"), + ["Search"] = new("VerbsCommon", "Search"), + ["Send"] = new("VerbsCommunications", "Send"), + ["Set"] = new("VerbsCommon", "Set"), + ["Skip"] = new("VerbsCommon", "Skip"), + ["Start"] = new("VerbsLifecycle", "Start"), + ["Stop"] = new("VerbsLifecycle", "Stop"), + ["Submit"] = new("VerbsLifecycle", "Submit"), + ["Suspend"] = new("VerbsLifecycle", "Suspend"), + ["Sync"] = new("VerbsData", "Sync"), + ["Test"] = new("VerbsDiagnostic", "Test"), + ["Undo"] = new("VerbsCommon", "Undo"), + ["Unpublish"] = new("VerbsData", "Unpublish"), + ["Update"] = new("VerbsData", "Update"), + }; + + public static PsVerb FromApprovedName(string verbName) + { + ArgumentNullException.ThrowIfNull(verbName); + return ApprovedVerbs.TryGetValue(verbName, out var verb) + ? verb + : throw new NotSupportedException( + $"'{verbName}' is not in the approved-verb set derived from the published SDK. " + + "Add it with its Get-Verb group before deriving a rename that uses it."); + } } +// One inline parameter of an OData function segment, e.g. StartDateTime in +// reminderView(StartDateTime='{StartDateTime}'). PsName is the cmdlet parameter; TemplateName +// is the URL-template placeholder the value has to be bound to. +public sealed record FunctionParam(string TemplateName, string PsName); + public sealed record CmdletNaming( string VerbsClass, string VerbName, @@ -26,7 +101,47 @@ public sealed record CmdletNaming( string ClassName, IReadOnlyList PathParamNames, string BuilderExpression, - IReadOnlyList HeaderParams); + IReadOnlyList HeaderParams, + OperationKind Kind = OperationKind.Resource, + // Inline function parameters, in path order; empty unless the operation is a + // parameterized function. + IReadOnlyList? FunctionParams = null, + // The kiota namespace, relative to the client namespace, holding the types kiota generates + // for this operation (its request-body and wrapped-response classes): every fixed segment + // Pascal-cased and every {id} segment replaced by "Item", e.g. "Users.Item.AssignLicense". + // Empty for a resource operation, which has no per-operation types. + string OperationTypeNamespace = "", + // The kiota builder member for the action/function segment, and the last segment of the + // namespace its generated types live in. + string OperationMemberName = "", + // The prefix kiota gives those generated types ("AssignLicense" -> + // AssignLicensePostRequestBody). It differs from OperationMemberName for a + // namespace-qualified operation: the builder and namespace keep the qualifier + // (MicrosoftGraphSecurityMoveAlerts) while the types drop it (MoveAlertsPostRequestBody). + string OperationTypeName = "", + // The {id} segments as the URL template spells them ("user-id"), parallel to + // PathParamNames. A parameterized function is built by populating kiota's path-parameter + // dictionary, which is keyed by these template names, not by the cmdlet parameter names. + IReadOnlyList? PathParamTemplateNames = null, + // The operation's route, normalized the way NamingOverrides keys its data. Diagnostics + // report it rather than leaving the route to be reconstructed from the builder expression: + // that reconstruction is lossy for a function (the builder member keeps the argument names + // but not the OData argument syntax) and wrong for a namespace-qualified action (kiota + // keeps the qualifier, the route does not), and a route that reconstructs wrongly resolves + // against the wrong oracle row. + string NormalizedPath = "", + // The operation's route and method exactly as the spec declares them, qualifier and {id} + // template names intact. NormalizedPath cannot serve here: it is the key NamingOverrides + // indexes by, so it is lower-cased and collapses every {id} to {}. These are emitted as a + // [GraphRoute] attribute so verification tooling reads the operation's identity out of the + // compiled assembly instead of reconstructing it from the builder expression. + string SourcePath = "", + string SourceMethod = "") +{ + public IReadOnlyList FunctionParameters => FunctionParams ?? []; + + public IReadOnlyList PathParamTemplates => PathParamTemplateNames ?? []; +} public static class Naming { @@ -44,14 +159,27 @@ public static class Naming public static CmdletNaming Resolve(OperationInfo operation, GeneratorConfig? config = null) { ArgumentNullException.ThrowIfNull(operation); - if (!VerbMap.TryGetValue(operation.HttpMethod, out var verb)) - throw new NotSupportedException($"No cmdlet verb mapping for HTTP method '{operation.HttpMethod}'."); + // An action is a call, not a create, so POST does not mean New here. A function is a + // read and keeps Get, which is also what the HTTP method would have given it. + var verb = operation.Kind switch + { + OperationKind.Action => PsVerb.Invoke, + OperationKind.Function => PsVerb.Get, + _ => VerbMap.TryGetValue(operation.HttpMethod, out var mapped) + ? mapped + : throw new NotSupportedException($"No cmdlet verb mapping for HTTP method '{operation.HttpMethod}'."), + }; + + // The published SDK picks an action's verb per operation rather than from the method, so + // where the oracle-derived data records one it replaces the structural default. + if (NamingOverrides.TryGetOverriddenVerb(operation.HttpMethod, operation.Path, config) is { } publishedVerb) + verb = PsVerb.FromApprovedName(publishedVerb); // The noun comes from the URL path, not the operationId. OperationIds keep whatever // plurality the spec author chose, while the published SDK names follow the path: // GET /users/{id}/messages is Get-MgUserMessage. The few hand-tuned exceptions the // published SDK carries are mirrored as data in NamingOverrides, never as code here. - var noun = GeneratorConstants.NounPrefix + NamingOverrides.ApplyNounOverrides(operation.HttpMethod, operation.Path, BuildNounFromPath(operation.Path), config); + var noun = GeneratorConstants.NounPrefix + NamingOverrides.ApplyNounOverrides(operation.HttpMethod, operation.Path, BuildNounFromPath(operation.Path, operation.Kind), config); // A list GET (/users/{id}/messages) and its item GET (/users/{id}/messages/{message-id}) // get the same noun on purpose. PowerShellWrapperGenerationService pairs them into one @@ -70,9 +198,66 @@ public static CmdletNaming Resolve(OperationInfo operation, GeneratorConfig? con .Select(raw => new HeaderParam(raw, raw.ToPascalCase('-'))) .ToList(); - return new CmdletNaming(verb.AttributeClass, verb.Name, noun, className, pathParamNames, builderExpression, headerParams); + var normalizedPath = NamingOverrides.NormalizePathTemplate(operation.Path); + if (operation.Kind == OperationKind.Resource) + return new CmdletNaming(verb.AttributeClass, verb.Name, noun, className, pathParamNames, builderExpression, headerParams, + NormalizedPath: normalizedPath, SourcePath: operation.Path, SourceMethod: operation.HttpMethod.Method); + + var call = ParseOperationSegment(LastFixedSegment(operation.Path)); + return new CmdletNaming(verb.AttributeClass, verb.Name, noun, className, pathParamNames, builderExpression, headerParams, + operation.Kind, + call.Parameters, + BuildOperationTypeNamespace(operation.Path), + call.MemberName, + call.NounPart, + ExtractPathParamTemplateNames(operation.Path), + normalizedPath, + operation.Path, + operation.HttpMethod.Method); + } + + // The raw "{user-id}" names, in path order and parallel to ExtractPathParamNames. + private static List ExtractPathParamTemplateNames(string path) + { + var names = new List(); + foreach (var segment in path.Split('/', StringSplitOptions.RemoveEmptyEntries)) + { + if (segment.StartsWith('{') && segment.EndsWith('}')) + names.Add(segment[1..^1]); + } + return names; + } + + // The kiota namespace holding an operation's generated types, relative to the client + // namespace. Kiota mirrors the route: every fixed segment Pascal-cased, every {id} segment + // collapsed to "Item" ("/users/{user-id}/messages/{message-id}/copy" -> + // "Users.Item.Messages.Item.Copy"). Verified against generated clients; a wrong prediction + // is a compile error in the module, not a silent mis-emission. + private static string BuildOperationTypeNamespace(string path) + { + var parts = path.Split('/', StringSplitOptions.RemoveEmptyEntries) + .Select(segment => segment.StartsWith('{') && segment.EndsWith('}') + ? "Item" + : AvoidReservedNamespace(ParseOperationSegment(segment).MemberName)); + return string.Join('.', parts); } + // Kiota renames a namespace whose name would collide with a BCL type by appending + // "Namespace" (/directory/... generates under DirectoryNamespace). The set is every such + // rename observed across the generated clients for all 38 v1.0 modules; a name kiota starts + // renaming that is missing here surfaces as a module compile error, not a silent mis-emit. + private static readonly HashSet ReservedNamespaceNames = new(StringComparer.Ordinal) + { + "Char", "Convert", "Date", "Decimal", "Directory", "Environment", "File", "Range", "Task", "Type", + }; + + private static string AvoidReservedNamespace(string segment) => + ReservedNamespaceNames.Contains(segment) ? segment + "Namespace" : segment; + + private static string LastFixedSegment(string path) => + path.Split('/', StringSplitOptions.RemoveEmptyEntries) + .LastOrDefault(s => !(s.StartsWith('{') && s.EndsWith('}'))) ?? string.Empty; + // Names one of the two internal cmdlets behind a paired GET dispatcher, e.g. // Get-MgUserMessage_List. The public dispatcher keeps the bare noun. public static CmdletNaming WithSuffix(CmdletNaming naming, string suffix) @@ -92,21 +277,70 @@ public static CmdletNaming WithSuffix(CmdletNaming naming, string suffix) // appears once, matching Get-MgDomainNameReference) // An OData cast segment like graph.user becomes AsUser (TryBuildCastSegmentNoun), matching // Get-MgGroupOwnerAsUser. - private static string BuildNounFromPath(string path) + private static string BuildNounFromPath(string path, OperationKind kind = OperationKind.Resource) { + var fixedSegments = path.Split('/', StringSplitOptions.RemoveEmptyEntries) + .Where(s => !(s.StartsWith('{') && s.EndsWith('}'))) + .ToList(); + // The trailing segment of an action or function names the operation, not a resource, so + // it is appended verbatim rather than run through the resource rules. Both of those + // rules corrupt an operation name: singularization would merge the distinct workbook + // functions averageIfs and averageIf onto one cmdlet, and the adjacent-duplicate strip + // (which exists to keep /domains/{id}/domainNameReferences from repeating "Domain") + // would erase the leading word of .../replies/replyWithQuote, colliding it with the + // collection-bound .../messages/replyWithQuote that the published SDK ships separately. + var operationSegmentIndex = kind == OperationKind.Resource ? -1 : fixedSegments.Count - 1; + var parts = new List(); + var fixedIndex = -1; + // Where the most recent cast segment landed, so a directly following /$count can be + // ordered against it. -2 keeps the "immediately after" test false before any cast. + var lastCastIndex = -2; foreach (var segment in path.Split('/', StringSplitOptions.RemoveEmptyEntries)) { if (segment.StartsWith('{') && segment.EndsWith('}')) continue; + fixedIndex++; + + // An OData $-segment contributes the suffix the published SDK gives it, verbatim: it + // names the shape of the request, not a resource, so the resource rules do not apply. + if (EmittableODataSegments.TryGetValue(segment, out var odataSegment)) + { + // A /$count directly after a cast counts the cast-filtered collection, and the + // published SDK orders the noun that way round: /memberOf/graph.group/$count ships + // as ...MemberOfCountAsGroup, so the cast suffix trails the whole noun. Only a + // directly adjacent cast moves — with any segment in between the cast keeps its + // place (...AsAndroidLobAppContentVersionCount). Scoped to $count because that is + // the only $-segment observed after a cast: v1.0 has 131 such routes and none for + // $ref or $value, so their ordering is unobserved rather than decided here. + if (segment == "$count" && lastCastIndex == fixedIndex - 1) + parts.Insert(parts.Count - 1, odataSegment.NounPart); + else + parts.Add(odataSegment.NounPart); + continue; + } + + if (fixedIndex == operationSegmentIndex) + { + parts.Add(ParseOperationSegment(segment).NounPart); + continue; + } if (TryBuildCastSegmentNoun(segment) is { } castNounPart) { parts.Add(castNounPart); + lastCastIndex = fixedIndex; continue; } - var part = Singularizer.SingularizeSegment(segment.ToFirstCharacterUpperCase()); + // A parameterized function contributes kiota's own member name, arguments included + // ("columnsAfter(count={count})" -> "ColumnsAfterWithCount"). The spec routinely + // publishes a function at several arities under one parent — 340 operations in 167 + // such groups across v1.0, most of them the workbook range functions — and naming + // them all after the bare function would make every group collide. Distinguishing + // them by arity is what kiota already does, so the two agree by construction; where + // an arity actually ships, the oracle-derived rename supplies its published noun. + var part = Singularizer.SingularizeSegment(ParseOperationSegment(segment).MemberName); if (parts.Count > 0) { var previous = parts[^1]; @@ -123,6 +357,70 @@ private static string BuildNounFromPath(string path) return string.Concat(parts); } + // One parsed action/function path segment: the bare OData operation name, the kiota builder + // member it becomes, the part it contributes to the cmdlet noun, and its inline parameters + // in path order. MemberName and NounPart differ for a namespace-qualified operation, where + // kiota keeps the qualifier and the noun drops it. + public sealed record OperationSegment(string OperationName, string MemberName, string NounPart, IReadOnlyList Parameters); + + // Parses a path segment as an OData operation call. "assignLicense" carries no parameters + // and becomes the AssignLicense builder property; "reminderView(StartDateTime='{StartDateTime}', + // EndDateTime='{EndDateTime}')" becomes the ReminderViewWithStartDateTimeWithEndDateTime + // builder method, kiota's name for a parameterized function (one "With" per + // parameter, in path order). A segment without parentheses parses as a bare name, so the + // same helper serves every segment of the route. + public static OperationSegment ParseOperationSegment(string segment) + { + ArgumentNullException.ThrowIfNull(segment); + var open = segment.IndexOf('(', StringComparison.Ordinal); + if (open < 0) + return new OperationSegment(BareOperationName(segment), ToMemberName(segment), + BareOperationName(segment).ToFirstCharacterUpperCase(), []); + + var name = segment[..open]; + var close = segment.LastIndexOf(')'); + var argumentList = close > open ? segment[(open + 1)..close] : string.Empty; + + var parameters = new List(); + foreach (var argument in argumentList.Split(',', StringSplitOptions.RemoveEmptyEntries | StringSplitOptions.TrimEntries)) + { + // Each argument is "Name={Placeholder}" or "Name='{Placeholder}'". The PLACEHOLDER + // names the value: it is the key the URL template expands, and the name kiota builds + // its member from. The two are usually spelled the same, but not always — + // "column={column1}" generates ColumnWithColumn1 and expands {column1} — so taking + // the left-hand side would both miss the member name and leave the value unbound. + var equals = argument.IndexOf('=', StringComparison.Ordinal); + var value = (equals < 0 ? argument : argument[(equals + 1)..]).Trim().Trim('\''); + var rawName = value.StartsWith('{') && value.EndsWith('}') + ? value[1..^1] + : (equals < 0 ? argument : argument[..equals]).Trim(); + if (rawName.Length == 0) + continue; + parameters.Add(new FunctionParam(rawName, rawName.ToPascalCase('-'))); + } + + var arity = string.Concat(parameters.Select(p => "With" + p.PsName)); + return new OperationSegment(BareOperationName(name), ToMemberName(name) + arity, + BareOperationName(name).ToFirstCharacterUpperCase() + arity, parameters); + } + + // An OData operation may be qualified by the namespace that declares it + // ("microsoft.graph.security.applyHold"). The qualifier is type information, not part of the + // operation's name — the published SDK's own route for that operation is the bare + // "/applyHold" — so the noun is built from the last segment only. + private static string BareOperationName(string name) + { + var lastDot = name.LastIndexOf('.'); + return lastDot < 0 ? name : name[(lastDot + 1)..]; + } + + // Kiota keeps the whole qualified name and concatenates it into one builder member + // ("microsoft.graph.security.applyHold" -> MicrosoftGraphSecurityApplyHold), which is also + // the namespace its per-operation types live in, so this form has to survive intact even + // though the noun drops the qualifier. + private static string ToMemberName(string name) => + string.Concat(name.Split('.', StringSplitOptions.RemoveEmptyEntries).Select(part => part.ToFirstCharacterUpperCase())); + // The "As" noun part for an OData cast segment ("microsoft.graph.user", or // "graph.user" in the KiotaCompat specs), matching published names like // Get-MgGroupOwnerAsUser; null for a non-cast segment. The cast type name is singularized @@ -191,10 +489,59 @@ private static string BuildBuilderExpression(string path, List pathParam // invalid C# and not a real builder member. Non-cast segments have no dots and pass // through unchanged. NOTE: cast endpoints are not generated end to end yet (tracked // follow-up), so this keeps the expression a valid identifier chain until then. - private static string ToCastAwareBuilderMemberName(string segment) => - segment.Contains('.', StringComparison.Ordinal) - ? string.Concat(segment.Split('.', StringSplitOptions.RemoveEmptyEntries).Select(part => part.ToFirstCharacterUpperCase())) - : segment.ToFirstCharacterUpperCase(); + private static string ToCastAwareBuilderMemberName(string segment) + { + if (EmittableODataSegments.TryGetValue(segment, out var odataSegment)) + return odataSegment.BuilderMember; + + // ParseOperationSegment concatenates dot-separated parts exactly as the cast rule needs + // ("graph.user" -> GraphUser), so it serves both a cast segment and a qualified + // operation. Splitting on dots directly would keep a zero-argument function's literal + // "()" in the member name and emit a call against a property. + var call = ParseOperationSegment(segment); + return call.Parameters.Count > 0 ? call.MemberName + "()" : AvoidRequestMethodClash(call.MemberName); + } + + // What an OData $-segment is called on either side of the generator: the kiota builder member + // it reads through, and the noun part the published SDK gives it. + private sealed record ODataSegmentNames(string BuilderMember, string NounPart); + + // The OData $-segments the generator emits. Membership is the support test — a segment is in + // this table only when both a name and an emitter exist for it, so a $-segment nothing can + // emit stays out and keeps being skipped rather than falling through to the resource + // emitters and producing a cmdlet that reads an entity from a call kiota types as int, a + // reference collection, or a stream. + // + // Builder members are kiota's names without the "$": /$count is the Count property, /$ref is + // Ref, /$value is Content (the folder is Value, the accessor is Content — verified on Groups' + // photo builder). Noun parts are the published suffixes: Get-MgUserCount, + // Get-MgApplicationOwnerByRef, Get-MgGroupPhotoContent. + private static readonly Dictionary EmittableODataSegments = new(StringComparer.Ordinal) + { + ["$count"] = new("Count", "Count"), + ["$ref"] = new("Ref", "ByRef"), + ["$value"] = new("Content", "Content"), + }; + + public static bool IsSupportedODataSegment(string segment) + { + ArgumentNullException.ThrowIfNull(segment); + return EmittableODataSegments.ContainsKey(segment); + } + + // Kiota renames a builder property whose name would clash with a request method the builder + // declares: a /delete segment is exposed as DeletePath, not Delete. The rename is scoped to + // the property — the generated namespace keeps the segment name + // (…UsedRange.Delete.DeleteRequestBuilder DeletePath), and sibling segments that are not + // method names (Clear, EntireColumn) are untouched. + // + // Only "delete" occurs: of the 9,116 distinct routes in the configured v1.0 specs, 24 carry a + // /delete segment and none carries /get, /post, /patch, /put or /head. Mapping the other + // method names would encode a prediction no spec exercises, so only the observed clash is + // encoded; a new one appears as a module compile error rather than silently binding the + // wrong member. + private static string AvoidRequestMethodClash(string memberName) => + memberName == "Delete" ? "DeletePath" : memberName; // Whether a list GET and an item GET form a mergeable pair for the public Get-MgX // dispatcher: the item's path must extend the list's path by exactly one id, either diff --git a/tools/WrapperGenerator/DerivedCollisionResolutions.cs b/tools/WrapperGenerator/DerivedCollisionResolutions.cs index 793377e8c69..e84672bd5e1 100644 --- a/tools/WrapperGenerator/DerivedCollisionResolutions.cs +++ b/tools/WrapperGenerator/DerivedCollisionResolutions.cs @@ -19,9 +19,14 @@ namespace WrapperGenerator; // (subtree prunes, cross-path merge picks) is curated in NamingOverrides with a citation. internal static class DerivedCollisionResolutions { - private sealed record DataEntry(string ApiVersion, string Method, string Uri, string Action, string? ReplacementNoun); + private sealed record DataEntry(string ApiVersion, string Method, string Uri, string Action, string? ReplacementNoun, string? ReplacementVerb); - private sealed record Tables(HashSet Suppressions, Dictionary Renames); + // A rename carries the published noun and, for an action or function, the published verb: + // the SDK distinguishes applyHold from removeHold by verb alone (Add- vs Remove-) on the + // same noun, so a noun-only rename would name both cmdlets identically. + public sealed record DerivedName(string Noun, string? Verb); + + private sealed record Tables(HashSet Suppressions, Dictionary Renames); private static readonly Lazy> ByApiVersion = new(Load); @@ -31,11 +36,11 @@ public static bool IsSuppressed(string apiVersion, HttpMethod method, string nor ByApiVersion.Value.TryGetValue(apiVersion, out var tables) && tables.Suppressions.Contains(Key(method, normalizedPath)); - public static bool TryReplaceNoun(string apiVersion, HttpMethod method, string normalizedPath, out string noun) + public static bool TryReplaceName(string apiVersion, HttpMethod method, string normalizedPath, out DerivedName name) { - noun = string.Empty; + name = null!; return ByApiVersion.Value.TryGetValue(apiVersion, out var tables) - && tables.Renames.TryGetValue(Key(method, normalizedPath), out noun!); + && tables.Renames.TryGetValue(Key(method, normalizedPath), out name!); } private static string Key(HttpMethod method, string normalizedPath) => $"{method.Method.ToUpperInvariant()} {normalizedPath}"; @@ -46,14 +51,19 @@ private static Dictionary Load() var assembly = typeof(DerivedCollisionResolutions).Assembly; foreach (var resource in assembly.GetManifestResourceNames()) { - if (!resource.Contains(".data.collision-", StringComparison.Ordinal) || !resource.EndsWith(".json", StringComparison.Ordinal)) + // Two derivations share this reader and schema: collision resolutions + // (Derive-CollisionResolutions.ps1) and full-surface parity resolutions + // (Derive-ParityResolutions.ps1). Both are oracle-derived, keyed the same way. + var isDerivedData = resource.Contains(".data.collision-", StringComparison.Ordinal) + || resource.Contains(".data.parity-", StringComparison.Ordinal); + if (!isDerivedData || !resource.EndsWith(".json", StringComparison.Ordinal)) continue; using var stream = assembly.GetManifestResourceStream(resource)!; var entries = JsonSerializer.Deserialize>(stream, JsonOptions) ?? []; foreach (var entry in entries) { if (!result.TryGetValue(entry.ApiVersion, out var tables)) - result[entry.ApiVersion] = tables = new Tables(new HashSet(StringComparer.Ordinal), new Dictionary(StringComparer.Ordinal)); + result[entry.ApiVersion] = tables = new Tables(new HashSet(StringComparer.Ordinal), new Dictionary(StringComparer.Ordinal)); var key = $"{entry.Method.ToUpperInvariant()} {entry.Uri}"; switch (entry.Action) { @@ -61,7 +71,7 @@ private static Dictionary Load() tables.Suppressions.Add(key); break; case "rename" when !string.IsNullOrEmpty(entry.ReplacementNoun): - tables.Renames[key] = entry.ReplacementNoun; + tables.Renames[key] = new DerivedName(entry.ReplacementNoun, entry.ReplacementVerb); break; default: // A malformed data file must fail the run, not silently generate the diff --git a/tools/WrapperGenerator/NamingOverrides.cs b/tools/WrapperGenerator/NamingOverrides.cs index f7972a4364a..1f93ab3e0ab 100644 --- a/tools/WrapperGenerator/NamingOverrides.cs +++ b/tools/WrapperGenerator/NamingOverrides.cs @@ -35,6 +35,21 @@ private enum PathMatch private sealed record Entry(OverrideKind Kind, HttpMethod? Method, string Pattern, PathMatch Match, string? Value, string Reason); + // NormalizePath lowercases before matching, so a Pattern containing an uppercase letter can + // never match anything: the entry is silently dead and the override looks applied but is not. + // Every pre-existing entry happened to be single-word lowercase, so nothing surfaced this + // until a camelCase path was added. Failing at startup beats debugging a missing rename. + static NamingOverrides() + { + var dead = Entries.FindAll(e => e.Pattern != e.Pattern.ToLowerInvariant()); + if (dead.Count > 0) + { + throw new InvalidOperationException( + "NamingOverrides pattern(s) contain uppercase and can never match, because paths are " + + "lowercased before comparison: " + string.Join(", ", dead.ConvertAll(e => e.Pattern))); + } + } + private static readonly List Entries = [ // The SDK ships no Update cmdlet for /users/{id}/calendar. Its pipeline removes the @@ -94,6 +109,42 @@ private sealed record Entry(OverrideKind Kind, HttpMethod? Method, string Patter new(OverrideKind.ReplaceNoun, Method: null, "/groups/{}/sites/{}/sites/{}", Match: PathMatch.Exact, Value: "GroupSubSite", Reason: "Sites.md directive; oracle ships Get-MgGroupSubSite"), + // ---- Naming-parity sweep (2026-08-13): the two rules the sweep proved safe. ---- + // + // Both were measured against the whole corpus first: each fixes real mismatches and + // rewrites no currently-matching name. Every other candidate rule from that sweep broke + // more names than it fixed (dropping "IdentityGovernance" would have fixed 297 and broken + // 417), which is why only these two are here and the rest await oracle-derived naming. + + // "people" is singularized everywhere else and correctly so - /users/{}/people ships as + // Get-MgUserPerson. Under /admin/people the published SDK keeps the plural, so this is + // scoped per path rather than by making "people" invariant, which would break UserPerson. + new(OverrideKind.ReplaceNoun, Method: null, "/admin/people", Match: PathMatch.Exact, Value: "AdminPeople", + Reason: "oracle ships Get-MgAdminPeople; /admin/people keeps the plural"), + new(OverrideKind.ReplaceNoun, Method: null, "/admin/people/iteminsights", Match: PathMatch.Exact, Value: "AdminPeopleItemInsight", + Reason: "oracle ships Get-MgAdminPeopleItemInsight"), + new(OverrideKind.ReplaceNoun, Method: null, "/admin/people/profilecardproperties", Match: PathMatch.Exact, Value: "AdminPeopleProfileCardProperty", + Reason: "oracle ships Get-MgAdminPeopleProfileCardProperty"), + new(OverrideKind.ReplaceNoun, Method: null, "/admin/people/profilecardproperties/{}", Match: PathMatch.Exact, Value: "AdminPeopleProfileCardProperty", + Reason: "oracle ships Get-MgAdminPeopleProfileCardProperty"), + new(OverrideKind.ReplaceNoun, Method: null, "/admin/people/profilepropertysettings", Match: PathMatch.Exact, Value: "AdminPeopleProfilePropertySetting", + Reason: "oracle ships Get-MgAdminPeopleProfilePropertySetting"), + new(OverrideKind.ReplaceNoun, Method: null, "/admin/people/profilepropertysettings/{}", Match: PathMatch.Exact, Value: "AdminPeopleProfilePropertySetting", + Reason: "oracle ships Get-MgAdminPeopleProfilePropertySetting"), + new(OverrideKind.ReplaceNoun, Method: null, "/admin/people/profilesources", Match: PathMatch.Exact, Value: "AdminPeopleProfileSource", + Reason: "oracle ships Get-MgAdminPeopleProfileSource"), + new(OverrideKind.ReplaceNoun, Method: null, "/admin/people/profilesources/{}", Match: PathMatch.Exact, Value: "AdminPeopleProfileSource", + Reason: "oracle ships Get-MgAdminPeopleProfileSource"), + new(OverrideKind.ReplaceNoun, Method: null, "/admin/people/pronouns", Match: PathMatch.Exact, Value: "AdminPeoplePronoun", + Reason: "oracle ships Get-MgAdminPeoplePronoun"), + + // The resource repeats its parent's name, so segment-joining yields + // DeviceManagementDeviceManagementPartner. The published SDK collapses the repetition. + new(OverrideKind.ReplaceNoun, Method: null, "/devicemanagement/devicemanagementpartners", Match: PathMatch.Exact, Value: "DeviceManagementPartner", + Reason: "oracle ships Get-MgDeviceManagementPartner, not ...DeviceManagementDeviceManagementPartner"), + new(OverrideKind.ReplaceNoun, Method: null, "/devicemanagement/devicemanagementpartners/{}", Match: PathMatch.Exact, Value: "DeviceManagementPartner", + Reason: "oracle ships Get-MgDeviceManagementPartner"), + // ---- Collision resolutions from the full-inventory oracle sweep (issue #3704). ---- // Identity.Governance: agreement file item ops ship only from the /file singleton @@ -210,8 +261,23 @@ private sealed record Entry(OverrideKind Kind, HttpMethod? Method, string Patter // Parameter names are erased before comparing, so "/users/{user-id}/calendar" and // "/users/{id}/calendar" both match the "/users/{}/calendar" entries above. A spec-side // parameter rename must not silently disable an override. + // An empty argument list is dropped: the spec spells a zero-argument function + // "filterOperators()", while the published inventory records the same operation as + // "/schema/filterOperators" and kiota exposes it as a plain property. Keeping the parentheses + // made a route key that could never match an oracle-derived entry, so every such function + // silently kept its structural name instead of its published one. private static string NormalizePath(string pathTemplate) => - PathParamRegex().Replace(pathTemplate, "{}").TrimEnd('/').ToLowerInvariant(); + PathParamRegex().Replace(pathTemplate, "{}").Replace("()", "", StringComparison.Ordinal) + .TrimEnd('/').ToLowerInvariant(); + + // The same normalization, for callers that need to report or key by a route rather than + // match one — the derived data files and the collision diagnostics both use this form, so + // there is one definition of what a route looks like. + public static string NormalizePathTemplate(string pathTemplate) + { + ArgumentNullException.ThrowIfNull(pathTemplate); + return NormalizePath(pathTemplate); + } // config carries the API version the derived collision data is keyed by; null (the unit // tests' default) applies only the curated entries below, so a data-file change can never @@ -231,6 +297,19 @@ public static bool IsSuppressed(HttpMethod httpMethod, string pathTemplate, Gene return false; } + // The published verb for an operation, when the oracle-derived data carries one. Only an + // action or function needs it: CRUD verbs follow from the HTTP method, but an action's verb + // is the SDK's own choice per operation (applyHold ships as Add-, removeHold as Remove-). + public static string? TryGetOverriddenVerb(HttpMethod httpMethod, string pathTemplate, GeneratorConfig? config) + { + ArgumentNullException.ThrowIfNull(httpMethod); + ArgumentNullException.ThrowIfNull(pathTemplate); + return config is { UseCollisionData: true } + && DerivedCollisionResolutions.TryReplaceName(config.ApiVersion, httpMethod, NormalizePath(pathTemplate), out var derived) + ? derived.Verb + : null; + } + public static string ApplyNounOverrides(HttpMethod httpMethod, string pathTemplate, string noun, GeneratorConfig? config = null) { ArgumentNullException.ThrowIfNull(httpMethod); @@ -239,8 +318,8 @@ public static string ApplyNounOverrides(HttpMethod httpMethod, string pathTempla var path = NormalizePath(pathTemplate); // A derived rename is the published noun verbatim; nothing curated may rewrite it. - if (config is { UseCollisionData: true } && DerivedCollisionResolutions.TryReplaceNoun(config.ApiVersion, httpMethod, path, out var derivedNoun)) - return derivedNoun; + if (config is { UseCollisionData: true } && DerivedCollisionResolutions.TryReplaceName(config.ApiVersion, httpMethod, path, out var derived)) + return derived.Noun; // Published BackupRestore cmdlets retain the Solution prefix (for example, // Get-MgSolutionBackupRestore). Do not apply /solutions/* strip rules here. diff --git a/tools/WrapperGenerator/OperationInfo.cs b/tools/WrapperGenerator/OperationInfo.cs index 264f26981a0..7878b22c273 100644 --- a/tools/WrapperGenerator/OperationInfo.cs +++ b/tools/WrapperGenerator/OperationInfo.cs @@ -3,6 +3,20 @@ namespace WrapperGenerator; +// What the OData metadata says an operation is. Actions and functions are not CRUD over a +// resource but calls on one, which changes the verb, the request shape and the kiota member +// the call goes through, so the distinction travels with the operation rather than being +// re-inferred from the path at each use. +public enum OperationKind +{ + // Create/read/update/delete on a resource path. + Resource, + // x-ms-docs-operation-type: action — always POST, parameters in an inline request body. + Action, + // x-ms-docs-operation-type: function — always GET, parameters inline in the path segment. + Function, +} + // The slice of one OpenAPI operation that Naming.Resolve consumes — kept to exactly the // values it reads. Per-operation response and query bookkeeping lives with the generation // service (GetOperationRecord), not here. @@ -12,4 +26,5 @@ public sealed record OperationInfo( // Raw OpenAPI header parameter names, for example "If-Match". Graph sometimes requires // these even where the spec marks them optional (Planner's PATCH/DELETE), so they become // real cmdlet parameters instead of being dropped. - IReadOnlyList? HeaderParams = null); + IReadOnlyList? HeaderParams = null, + OperationKind Kind = OperationKind.Resource); diff --git a/tools/WrapperGenerator/PowerShellWrapperGenerationService.cs b/tools/WrapperGenerator/PowerShellWrapperGenerationService.cs index 46690e50085..0136e5ca227 100644 --- a/tools/WrapperGenerator/PowerShellWrapperGenerationService.cs +++ b/tools/WrapperGenerator/PowerShellWrapperGenerationService.cs @@ -95,7 +95,8 @@ public PowerShellWrapperGenerationService(OpenApiDocument document, GeneratorCon // Kiota's C# refiner reserves type names that collide with common BCL types (see // CSharpReservedClassNamesProvider in microsoft/kiota). Only names observed in Graph // docs are listed; a new one surfaces as a compile failure in the affected module. - private static readonly string[] KiotaReservedModelNames = ["Directory", "File", "Task", "Type", "Environment"]; + private static readonly string[] KiotaReservedModelNames = + ["Action", "DayOfWeek", "Directory", "Environment", "File", "Task", "Type", "ValueType"]; // One GET operation from the first pass, held until we know whether it pairs with a // list/item partner. CollectionValueSchema is the response's "value" array property when @@ -131,15 +132,28 @@ public async Task GenerateAsync(CancellationToken cancellationToken) { cancellationToken.ThrowIfCancellationRequested(); + // What the OData metadata says this operation is. Actions and functions are + // calls on a resource rather than CRUD over one, which decides the verb, the + // request shape and the kiota member the call goes through. + var operationKind = ClassifyOperationKind(operation, httpMethod); + // Operation shapes the emitters cannot produce a valid cmdlet for yet are // skipped up front instead of emitted malformed: OData $-segments would produce // broken names (Get-MgBookingBusinesscount) or invalid builder chains - // (client...$value does not compile), and parameterized function segments - // ("getByUserIdAndRole(userId='{userId}',...)") mangle into garbage nouns. - // The README's gap list tracks these shapes as future work. - if (HasUnsupportedPathSegment(pathTemplate)) + // (client...$value does not compile). The README's gap list tracks these + // shapes as future work. + if (HasUnsupportedODataSegment(pathTemplate)) { - LogSkippedUnsupportedOperation(httpMethod.Method, pathTemplate, "unsupported OData path segment ($-segment or parameterized function), not generated yet"); + LogSkippedUnsupportedOperation(httpMethod.Method, pathTemplate, "unsupported OData $-segment, not generated yet"); + continue; + } + + // A parenthesised segment on an operation the spec does NOT class as an action or + // function: the arguments belong to a call the generator has no shape for, and the + // segment would mangle into a garbage noun. + if (operationKind == OperationKind.Resource && HasCallSegment(pathTemplate)) + { + LogSkippedUnsupportedOperation(httpMethod.Method, pathTemplate, "call segment on an operation the spec does not class as an action or function"); continue; } @@ -166,10 +180,86 @@ public async Task GenerateAsync(CancellationToken cancellationToken) // image/*) is a media download — kiota generates GetAsync returning Stream // there regardless of any JSON schema the doc also lists (the styled docs // attach an entity schema to /content endpoints; found by compiling Teams). - // Stream downloads are not generated yet; see the README gap list. - if (httpMethod == HttpMethod.Get && HasNonJsonSuccessContent(operation)) + // An action or function returning bytes goes through EmitOperationCall, which binds + // the response as a byte array, so the media test below is scoped to resource + // operations rather than intercepting every GET. + + var cmdletNaming = Naming.Resolve(new OperationInfo(httpMethod, pathTemplate, headerParams, operationKind), config); + + // An action or function is emitted from its own shape: it is never half of a + // list/item pair, and its request and response types are the per-operation + // classes kiota generates beside the request builder. + if (operationKind != OperationKind.Resource) + { + var operationSource = EmitOperationCall(cmdletNaming, ctx, operation, operationKind, queryParams, pathTemplate); + if (operationSource is null) + continue; + written += await WriteCmdletFileAsync(cmdletNaming, operationSource, cancellationToken).ConfigureAwait(false); + continue; + } + + // An OData /$value is the raw bytes behind a resource: GET reads them, PUT + // replaces them, DELETE clears them. GET and PUT need their own shapes because + // kiota types both as Stream; DELETE is an ordinary delete and falls through. + // + // A GET whose success response declares non-JSON content (octet-stream, image/*) + // is the same shape under a different spelling: a literal media segment such as + // /content, /logo or /favicon, which kiota also types as Stream. The styled + // documents attach an entity schema to those endpoints as well, so the content + // type is what identifies them, not the schema. The test excludes the emittable + // $-segments because /$count answers text/plain — without that exclusion it would + // divert /$count here instead of letting its own branch below run. + var isMediaDownload = httpMethod == HttpMethod.Get + && !EndsWithEmittableODataSegment(pathTemplate) + && HasBinarySuccessContent(operation); + if ((EndsWithSegment(pathTemplate, "$value") || isMediaDownload) && httpMethod != HttpMethod.Delete) + { + if (httpMethod != HttpMethod.Get && httpMethod != HttpMethod.Put) + { + LogSkippedUnsupportedOperation(httpMethod.Method, cmdletNaming.NormalizedPath, "no wrapper emitter for this HTTP method"); + continue; + } + // The response is usually the bytes themselves, but several /$value writes + // return the updated entity instead (a driveItem, a onenotePage). The type + // is resolved from the response rather than assumed to be a stream. + if (!TryResolveOperationReturnType(operation, ctx, cmdletNaming, isAction: false, + out var contentType, out _, out var contentIsStream) + || contentType is null) + { + LogSkippedUnsupportedOperation(httpMethod.Method, cmdletNaming.NormalizedPath, "content response is neither a stream nor a resolvable entity"); + continue; + } + var contentSource = httpMethod == HttpMethod.Get + ? CmdletEmitter.EmitContentGet(cmdletNaming, ctx, contentType, contentIsStream) + : CmdletEmitter.EmitContentSet(cmdletNaming, ctx, contentType, contentIsStream); + written += await WriteCmdletFileAsync(cmdletNaming, contentSource, cancellationToken).ConfigureAwait(false); + continue; + } + + // A /$ref operation manages the references of a relationship rather than the + // entities behind it. GET lists reference URLs (kiota: StringCollectionResponse, + // not a collection of entities); POST and PUT take a referenceCreate body and + // return nothing, so neither the New nor the Set shape fits. DELETE is an + // ordinary delete and falls through. + if (EndsWithSegment(pathTemplate, "$ref") && httpMethod != HttpMethod.Delete) + { + var refSource = EmitReferenceOperation(cmdletNaming, ctx, operation, httpMethod, queryParams); + if (refSource is null) + { + LogSkippedUnsupportedOperation(httpMethod.Method, cmdletNaming.NormalizedPath, "no wrapper emitter for this reference operation"); + continue; + } + written += await WriteCmdletFileAsync(cmdletNaming, refSource, cancellationToken).ConfigureAwait(false); + continue; + } + + // A /$count GET returns a number, not a resource, so it is emitted directly + // rather than being held back for list/item pairing — there is no entity schema + // to resolve and no item GET it could pair with. + if (httpMethod == HttpMethod.Get && EndsWithSegment(pathTemplate, "$count")) { - LogSkippedUnsupportedOperation(httpMethod.Method, pathTemplate, "media/stream content endpoint, not generated yet"); + written += await WriteCmdletFileAsync(cmdletNaming, + CmdletEmitter.EmitScalarGet(cmdletNaming, ctx, "int", queryParams.ToHashSet()), cancellationToken).ConfigureAwait(false); continue; } @@ -178,8 +268,6 @@ public async Task GenerateAsync(CancellationToken cancellationToken) : null; var collectionValueSchema = responseSchema is not null ? FindProperty(responseSchema, "value") : null; - var cmdletNaming = Naming.Resolve(new OperationInfo(httpMethod, pathTemplate, headerParams), config); - if (httpMethod == HttpMethod.Get && responseSchema is null) { LogSkippedUnsupportedOperation(httpMethod.Method, pathTemplate, "missing supported success JSON response schema"); @@ -199,6 +287,7 @@ public async Task GenerateAsync(CancellationToken cancellationToken) _ when httpMethod == HttpMethod.Post => EmitNewFor(cmdletNaming, ctx, operation), _ when httpMethod == HttpMethod.Patch => EmitUpdateFor(cmdletNaming, ctx, operation, canReFetch: pathItem.Operations?.ContainsKey(HttpMethod.Get) == true), + _ when httpMethod == HttpMethod.Put => EmitSetFor(cmdletNaming, ctx, operation), _ => null, }; @@ -329,10 +418,17 @@ private async Task EmitGetOperationsAsync(List getOpera private async Task WriteCmdletFileAsync(CmdletNaming naming, string source, CancellationToken cancellationToken) { - var fileName = naming.ClassName.Replace("Command", "", StringComparison.Ordinal) + ".g.cs"; - // Both colliding cmdlets usually share the same name, so the builder expression (the - // request path) is what actually identifies which two operations collided. - var cmdletName = $"{naming.VerbName}-{naming.Noun} [{naming.BuilderExpression}]"; + const string cmdletClassSuffix = "Command"; + var className = naming.ClassName; + var fileBaseName = className.EndsWith(cmdletClassSuffix, StringComparison.Ordinal) + ? className[..^cmdletClassSuffix.Length] + : className; + var fileName = fileBaseName + ".g.cs"; + // Both colliding cmdlets usually share the same name, so the route is what actually + // identifies which two operations collided. It is reported directly rather than left to + // be reconstructed from the builder expression, which cannot express a function's OData + // arguments or an action's namespace qualifier. + var cmdletName = $"{naming.VerbName}-{naming.Noun} [{naming.NormalizedPath}]"; if (writtenCmdletFiles.TryGetValue(fileName, out var existing)) { fileCollisions.Add($"{fileName}: '{cmdletName}' collides with already-written '{existing}'"); @@ -363,14 +459,60 @@ private async Task WriteCmdletFileAsync(CmdletNaming naming, string source, [LoggerMessage(Level = LogLevel.Information, Message = "Body properties classified={Classified} = scalar={Scalars} + model={Complex} + untyped={Untyped} + excluded={Excluded} + unsupported={Unsupported}")] private partial void LogBodyPropertyReconciliation(int classified, int scalars, int complex, int untyped, int excluded, int unsupported); + // What the spec says the operation is. x-ms-docs-operation-type is the Graph metadata's own + // classification, so actions and functions are identified from the document rather than + // guessed from the path — a segment carrying parentheses is a consequence of being a + // function, not the definition of one. The HTTP method is checked too: an entry claiming to + // be an action on anything but POST (or a function on anything but GET) would be emitted + // with the wrong request shape, so it falls back to resource handling. + private static OperationKind ClassifyOperationKind(OpenApiOperation operation, HttpMethod httpMethod) + { + if (operation.Extensions is null + || !operation.Extensions.TryGetValue("x-ms-docs-operation-type", out var extension) + || extension is not JsonNodeExtension node) + return OperationKind.Resource; + + return node.Node?.ToString()?.Trim('"') switch + { + "action" when httpMethod == HttpMethod.Post => OperationKind.Action, + "function" when httpMethod == HttpMethod.Get => OperationKind.Function, + _ => OperationKind.Resource, + }; + } + // True when the path contains a segment shape the emitters cannot handle yet: an OData - // $-segment ($count/$value/$ref) or a parameterized function/action call (any segment - // with parentheses, including delta()). OData cast segments (microsoft.graph.user) are - // deliberately NOT excluded here: they emit valid builder chains and the parity gate - // tracks them separately. - private static bool HasUnsupportedPathSegment(string pathTemplate) => + // $-segment ($count/$value/$ref), or a parenthesised segment on an operation the spec does + // NOT class as an action or function — the latter would mangle into a garbage noun, whereas + // a declared function's segment is parsed into its name and inline arguments. OData cast + // segments (microsoft.graph.user) are deliberately NOT excluded here: they emit valid + // builder chains and the parity gate tracks them separately. + // True when a segment BEFORE the last one is a function call carrying arguments. A + // zero-argument call ("range()") is exempt: kiota exposes it as a plain property, so there + // is nothing to bind. + private static bool HasParameterizedIntermediateSegment(string pathTemplate) + { + var fixedSegments = pathTemplate.Split('/', StringSplitOptions.RemoveEmptyEntries) + .Where(s => !(s.StartsWith('{') && s.EndsWith('}'))) + .ToList(); + return fixedSegments.Take(Math.Max(0, fixedSegments.Count - 1)) + .Any(s => Naming.ParseOperationSegment(s).Parameters.Count > 0); + } + + private static bool EndsWithEmittableODataSegment(string pathTemplate) => + pathTemplate.Split('/', StringSplitOptions.RemoveEmptyEntries) is { Length: > 0 } parts + && Naming.IsSupportedODataSegment(parts[^1]); + + private static bool EndsWithSegment(string pathTemplate, string segment) => + pathTemplate.Split('/', StringSplitOptions.RemoveEmptyEntries) is { Length: > 0 } parts + && string.Equals(parts[^1], segment, StringComparison.Ordinal); + + private static bool HasUnsupportedODataSegment(string pathTemplate) => + pathTemplate.Split('/', StringSplitOptions.RemoveEmptyEntries) + .Any(segment => segment.StartsWith('$') && !Naming.IsSupportedODataSegment(segment)); + + private static bool HasCallSegment(string pathTemplate) => pathTemplate.Split('/', StringSplitOptions.RemoveEmptyEntries) - .Any(segment => segment.StartsWith('$') || segment.Contains('(')); + .Any(segment => segment.Contains('(', StringComparison.Ordinal)); // collectionValueSchema is the already-resolved "value" array property from // GetOperationRecord, so nothing is re-walked here. @@ -399,6 +541,197 @@ private bool TryResolveListEntityTypeName(IOpenApiSchema collectionValueSchema, return null; } + // Emits one OData action or function. Both resolve the same three facts — which kiota method + // carries the call, what it returns, and whether it takes a generated request body — from + // the operation's own schemas; the difference between them is the HTTP verb and that only an + // action has a body. + private string? EmitOperationCall(CmdletNaming naming, EmitContext ctx, OpenApiOperation operation, + OperationKind kind, IReadOnlyList queryParams, string pathTemplate) + { + var isAction = kind == OperationKind.Action; + var httpVerb = isAction ? "POST" : "GET"; + + // OData parameter aliases ("doesUserHaveAccess(userId='@userId')") pass their values as + // query options rather than in the path, a binding model none of the emitted shapes + // cover, and kiota's member name for the quoted form is irregular + // (GetAllRecordingsuserIdUserIdWithStartDateTime...). 13 v1.0 operations use them, 5 of + // which the published SDK ships; they are reported rather than emitted against a guessed + // name. See docs/edge-cases/action-function-edge-cases.md. + if (naming.NormalizedPath.Contains('@', StringComparison.Ordinal)) + { + LogSkippedUnsupportedOperation(httpVerb, naming.NormalizedPath, "OData parameter-alias arguments (@name), not generated yet"); + return null; + } + + // Arguments are bound for the operation's own segment. A route that calls a + // parameterized function part-way along (".../columns/itemAt(index={index})/dataBodyRange") + // would need the intermediate call's arguments too, and emitting it without them leaves + // {index} unexpanded in the request URL — a cmdlet that cannot work. Refused rather than + // emitted broken; supporting it means binding every intermediate call's arguments. + if (HasParameterizedIntermediateSegment(pathTemplate)) + { + LogSkippedUnsupportedOperation(httpVerb, naming.NormalizedPath, "route calls a parameterized function before its final segment, whose arguments cannot be bound"); + return null; + } + + if (!TryResolveOperationReturnType(operation, ctx, naming, isAction, out var returnType, out var methodName, out var returnsStream)) + { + LogSkippedUnsupportedOperation(httpVerb, naming.BuilderExpression, "response schema is neither a resolvable entity nor a value-wrapping response"); + return null; + } + + if (!isAction) + return CmdletEmitter.EmitFunction(naming, ctx, new CmdletEmitter.CallPlan(methodName, returnType, BodyTypeName: null, returnsStream), queryParams.ToHashSet()); + + // Action parameters live in an inline "action parameters" object that kiota generates as + // a per-operation PostRequestBody class; there is no named entity schema to + // resolve, so the type name is predicted from the route the same way kiota builds it. + var bodySchema = TryGetRequestJsonSchema(operation); + var bodyType = bodySchema is null + ? null + : $"global::{ctx.ClientNamespace}.{naming.OperationTypeNamespace}.{naming.OperationTypeName}PostRequestBody"; + var (scalars, complex, untyped) = bodySchema is null + ? ([], [], []) + : BindBodyProperties(bodySchema, ctx, naming, bodyType!); + + return CmdletEmitter.EmitAction(naming, ctx, new CmdletEmitter.CallPlan(methodName, returnType, bodyType, returnsStream), scalars, complex, untyped); + } + + // Resolves what a call returns and which kiota method returns it. Three shapes occur, and + // kiota names the method from the shape: a response referencing an entity comes back from + // the plain PostAsync/GetAsync; a response wrapping its payload in a "value" property comes + // back from a dedicated …AsResponseAsync (the plain overload beside it returns + // a type kiota marks [Obsolete]); no response body at all means the method returns Task. + private bool TryResolveOperationReturnType(OpenApiOperation operation, EmitContext ctx, CmdletNaming naming, + bool isAction, out string? returnType, out string methodName, out bool returnsStream) + { + returnType = null; + returnsStream = false; + var httpVerb = isAction ? "Post" : "Get"; + methodName = httpVerb + "Async"; + + // A byte response: kiota types a binary schema as Stream from the ordinary Post/GetAsync. + // The Intune reporting surface is almost all of this shape. + if (HasBinarySuccessContent(operation)) + { + returnType = "System.IO.Stream"; + returnsStream = true; + return true; + } + + var responseSchema = TryGetSuccessJsonSchema(operation); + if (responseSchema is null) + // No response body: kiota emits a plain Task-returning method. Actions that only act + // (revoke, send, restart) are the largest single response shape in the corpus. + return true; + + responseSchema = UnwrapNullableUnion(responseSchema); + + // A referenced entity is returned as that model, even when the entity itself happens to + // have a "value" member — microsoft.graph.workbookFunctionResult does, and treating it + // as a wrapper made every workbook function ask kiota for a per-operation response class + // it never generates. Only an INLINE object whose payload hangs off "value" gets one. + if (TryResolveEntityTypeName(responseSchema, ctx.ModelsNamespace, out var entityType)) + { + returnType = entityType; + return true; + } + + if (FindProperty(responseSchema, "value") is not null) + { + returnType = $"global::{ctx.ClientNamespace}.{naming.OperationTypeNamespace}.{naming.OperationTypeName}{httpVerb}Response"; + methodName = $"{httpVerb}As{naming.OperationTypeName}{httpVerb}ResponseAsync"; + return true; + } + + return false; + } + + // The Graph docs express "entity or null" as anyOf[$ref, {type: object, nullable: true}]. + // That is a nullability annotation, not a choice of types, and kiota resolves it to the + // referenced entity; unwrapping keeps a real union (which the classifier reports) distinct + // from this encoding. + private static IOpenApiSchema UnwrapNullableUnion(IOpenApiSchema schema) + { + foreach (var union in new[] { schema.AnyOf, schema.OneOf }) + { + if (union is null || union.Count == 0) + continue; + var referenced = union.Where(branch => branch.GetReferenceId() is not null).ToList(); + if (referenced.Count == 1) + return referenced[0]; + } + return schema; + } + + // A /$ref operation other than DELETE. GET returns the reference URLs; POST and PUT send a + // referenceCreate body and return nothing, which is the action shape (body in, no output) + // rather than the New shape (body in, entity out). + private string? EmitReferenceOperation(CmdletNaming naming, EmitContext ctx, OpenApiOperation operation, + HttpMethod httpMethod, IReadOnlyList queryParams) + { + if (httpMethod == HttpMethod.Get) + { + // A collection navigation's $ref lists reference URLs, which kiota types as a + // StringCollectionResponse; a single-valued navigation's $ref returns the one URL as + // a plain string. The response schema says which — a "value" array means the former. + var refResponse = TryGetSuccessJsonSchema(operation); + var isCollection = refResponse is not null && FindProperty(refResponse, "value") is not null; + return isCollection + ? CmdletEmitter.EmitListGet(naming, ctx, "string", + $"{ctx.ModelsNamespace}.StringCollectionResponse", queryParams.ToHashSet()) + : CmdletEmitter.EmitScalarGet(naming, ctx, "string", queryParams.ToHashSet()); + } + + if (httpMethod != HttpMethod.Post && httpMethod != HttpMethod.Put) + return null; + + var bodySchema = TryGetRequestJsonSchema(operation); + if (bodySchema is null || !TryResolveEntityTypeName(bodySchema, ctx.ModelsNamespace, out var bodyType)) + return null; + var (scalars, complex, untyped) = BindBodyProperties(bodySchema, ctx, naming, bodyType); + var method = httpMethod == HttpMethod.Post ? "PostAsync" : "PutAsync"; + return CmdletEmitter.EmitAction(naming, ctx, + new CmdletEmitter.CallPlan(method, ReturnTypeName: null, BodyTypeName: bodyType), + scalars, complex, untyped); + } + + // PUT replaces a resource outright. Two shapes occur: a JSON body naming an entity (the + // synchronization and secrets endpoints), which is the PATCH shape with PutAsync in place of + // PatchAsync and no re-fetch, and a binary body (logos, uploaded content), which kiota types + // as Stream and which takes -InFile like any other content write. + private string? EmitSetFor(CmdletNaming naming, EmitContext ctx, OpenApiOperation operation) + { + if (HasNonJsonRequestContent(operation)) + { + return TryResolveOperationReturnType(operation, ctx, naming, isAction: false, + out var uploadReturn, out _, out var uploadIsStream) && uploadReturn is not null + ? CmdletEmitter.EmitContentSet(naming, ctx, uploadReturn, uploadIsStream) + : null; + } + + var bodySchema = TryGetRequestJsonSchema(operation); + if (bodySchema is null) + return null; + if (!TryResolveEntityTypeName(bodySchema, ctx.ModelsNamespace, out var entityType)) + return null; + var (properties, complex, untyped) = BindBodyProperties(bodySchema, ctx, naming, entityType); + return CmdletEmitter.EmitUpdate(naming, ctx, entityType, properties, complex, untyped, + reFetchAfterUpdate: false, httpMethodName: "PutAsync"); + } + + // True when the request body is declared only as a non-JSON media type, which kiota types as + // a Stream parameter rather than a model. + private static bool HasNonJsonRequestContent(OpenApiOperation operation) + { + var content = operation.RequestBody?.Content; + if (content is null || content.Count == 0) + return false; + return !content.Keys.Any(contentType => + contentType.StartsWith("application/json", StringComparison.OrdinalIgnoreCase) + || contentType.EndsWith("+json", StringComparison.OrdinalIgnoreCase)); + } + private string? EmitNewFor(CmdletNaming naming, EmitContext ctx, OpenApiOperation operation) { // "application/json" is an intentional, Graph-scoped assumption: Graph request bodies are @@ -481,7 +814,17 @@ private bool TryResolveListEntityTypeName(IOpenApiSchema collectionValueSchema, private IOpenApiSchema? ResolveComponentSchema(string referenceId) => document.Components?.Schemas?.TryGetValue(referenceId, out var schema) == true ? schema : null; - private static bool HasNonJsonSuccessContent(OpenApiOperation operation) + // A success response kiota types as Stream rather than a model. Two independent signals, both + // needed: the documents are not consistent about which they use. + // + // * an explicit binary schema (`type: string, format: binary`) — /applications/{id}/logo + // * a media type that carries neither JSON nor text — the reports functions declare + // `application/octet-stream` with a bare `type: object` and no format + // + // Neither alone suffices. Testing only the format misses the reports surface (which then + // emits `typeof()` and fails to compile); testing only "not JSON" wrongly claims a + // `text/plain` scalar, which is a string, not a download. + private static bool HasBinarySuccessContent(OpenApiOperation operation) { if (operation.Responses is null) return false; @@ -489,11 +832,15 @@ private static bool HasNonJsonSuccessContent(OpenApiOperation operation) { if (!operation.Responses.TryGetValue(key, out var response) || response?.Content is null) continue; - foreach (var contentType in response.Content.Keys) + foreach (var (contentType, media) in response.Content) { - if (!contentType.StartsWith("application/json", StringComparison.OrdinalIgnoreCase) - && !contentType.EndsWith("+json", StringComparison.OrdinalIgnoreCase)) + if (string.Equals(media?.Schema?.Format, "binary", StringComparison.OrdinalIgnoreCase)) return true; + if (contentType.StartsWith("application/json", StringComparison.OrdinalIgnoreCase) + || contentType.EndsWith("+json", StringComparison.OrdinalIgnoreCase) + || contentType.StartsWith("text/", StringComparison.OrdinalIgnoreCase)) + continue; + return true; } } return false; diff --git a/tools/WrapperGenerator/Program.cs b/tools/WrapperGenerator/Program.cs index 19c588fd586..f22c6c3268f 100644 --- a/tools/WrapperGenerator/Program.cs +++ b/tools/WrapperGenerator/Program.cs @@ -87,16 +87,22 @@ private static async Task Main(string[] args) var config = new GeneratorConfig(ClientNamespaceName: clientNamespace, OutputPath: outputPath, ApiVersion: apiVersion, UseCollisionData: useCollisionData); - var service = new PowerShellWrapperGenerationService(document, config, new StderrLogger(logLevel)); - await service.GenerateAsync(CancellationToken.None).ConfigureAwait(false); - // The generation service writes only *.g.cs. Also write a minimal kiota-lock.json recording // the source spec path, so downstream tooling that keys off it — notably // tools/Compare-WrapperCmdletNames.ps1, which reads the v1.0/beta segment out of it to scope // its oracle join — can determine the API version. + // + // Written BEFORE generation, because generation fails loudly on a cmdlet collision and the + // output it leaves behind is exactly what the collision and parity derivations are captured + // from. Without this marker those captures cannot be scoped to an API version, and every + // route silently matches its beta twin as an ambiguous oracle row. + Directory.CreateDirectory(outputPath); var lockJson = JsonSerializer.Serialize(new { descriptionLocation = specPath }, LockFileJsonOptions); await File.WriteAllTextAsync(Path.Combine(outputPath, "kiota-lock.json"), lockJson, CancellationToken.None).ConfigureAwait(false); + var service = new PowerShellWrapperGenerationService(document, config, new StderrLogger(logLevel)); + await service.GenerateAsync(CancellationToken.None).ConfigureAwait(false); + var count = Directory.GetFiles(outputPath, "*.g.cs").Length; Console.WriteLine($"Generated {count} .g.cs file(s) to {outputPath}"); return 0; diff --git a/tools/WrapperGenerator/README.md b/tools/WrapperGenerator/README.md index d8e5b15f7eb..48497c49a0e 100644 --- a/tools/WrapperGenerator/README.md +++ b/tools/WrapperGenerator/README.md @@ -54,7 +54,7 @@ Singularization runs per camel-case word (so `termsAndConditions` → `TermAndCo A few published names aren't algorithmic, and the spec publishes some routes the SDK never shipped. Both live as data in `NamingOverrides.cs` — renames mirroring the SDK's hand-written AutoRest directives, and suppressions for routes that ship nothing — each entry citing its evidence: the directive when one exists, otherwise the shipped-command inventory. Examples: the `GET /users/{id}/calendar` rename to `…UserDefaultCalendar` (Calendar.md), the `Solution` prefix strip under `/solutions/*` with the BackupRestore exception (Bookings.md), and the self-referential `sites/{id}/sites` rename to `SubSite`/`GroupSubSite` (Sites.md) — without which the sub-sites cmdlets would collide with `Get-MgSite` itself. The generator fails loudly on any such file collision rather than silently overwriting. -On top of the curated entries sits a **derived** layer: `tools/Derive-CollisionResolutions.ps1` replays every route from the checked-in collision inventory (`data/collision-inventory.v1.0.txt`, captured with `--no-collision-data`) against the shipped-command inventory and emits `data/collision-suppressions.v1.0.json` and `data/collision-renames.v1.0.json` — one exact-match entry per contested method+route, each carrying its oracle evidence. The files are embedded into the generator at build time (generation never reads the 22 MB oracle), applied only when `GeneratorConfig.UseCollisionData` is set, and the script's `-Validate` mode fails if the checked-in files drift from a fresh derivation. Two routes in all of v1.0 are **deferred cross-path merges** — the published SDK serves `Get-MgGroupPhoto` from both `/photo` and `/photos`, and `Get-MgShareListItem` from both `/listItem` and `/list/items`, as parameter-set variants of one cmdlet; the generator keeps the singleton side and suppresses the collection side until cross-path parameter sets land (see [docs/edge-cases/crosspath-merge-edge-cases.md](docs/edge-cases/crosspath-merge-edge-cases.md)). With the derived data applied, a full v1.0 generation across all 39 modules produces zero collisions. +On top of the curated entries sits a **derived** layer: `tools/Derive-CollisionResolutions.ps1` replays every route from the checked-in collision inventory (`data/collision-inventory.v1.0.txt`, captured with `--no-collision-data`) against the shipped-command inventory and emits `data/collision-suppressions.v1.0.json` and `data/collision-renames.v1.0.json` — one exact-match entry per contested method+route, each carrying its oracle evidence. The files are embedded into the generator at build time (generation never reads the 22 MB oracle), applied only when `GeneratorConfig.UseCollisionData` is set, and the script's `-Validate` mode fails if the checked-in files drift from a fresh derivation. Two routes in all of v1.0 are **deferred cross-path merges** — the published SDK serves `Get-MgGroupPhoto` from both `/photo` and `/photos`, and `Get-MgShareListItem` from both `/listItem` and `/list/items`, as parameter-set variants of one cmdlet; the generator keeps the singleton side and suppresses the collection side until cross-path parameter sets land (see [docs/edge-cases/crosspath-merge-edge-cases.md](docs/edge-cases/crosspath-merge-edge-cases.md)). With the derived data applied, a full v1.0 generation across all 38 configured modules produces zero collisions. ## The one subtle part: list + item GET become one cmdlet @@ -201,7 +201,7 @@ a diff, so those two files, not the tree, are what a reviewer reads. ```powershell # 1. Naming and classification rules pinned to published Microsoft.Graph names dotnet test tools/WrapperGenerator.Tests -# => Passed! - Failed: 0, Passed: 148, Total: 148 +# => Passed! - Failed: 0, Passed: 180, Total: 180 # 2. Parity gate: generate, then check every cmdlet name against Graph's own command inventory .\tools\Compare-WrapperCmdletNames.ps1 -GeneratedPath @@ -219,13 +219,15 @@ dotnet test tools/WrapperGenerator.Tests The unit tests guard the naming and classification rules (their expected values are real published names from `src/Authentication/Authentication/custom/common/MgCommandMetadata.json`). The parity gate checks actual generated output against that same inventory; names on the deliberate-corrections list ([docs/edge-cases/naming-edge-cases.md](docs/edge-cases/naming-edge-cases.md)) are reported as `[CORRECTED]` instead of failing. -The generated cmdlets **are** compiled: `Build-WrapperModule.ps1` builds each module against the kiota client it was generated with, the only authority on whether an emitted parameter's CLR type matches the member it assigns. Compilation cannot see an *omitted* member, so the omission oracle exists separately; neither can see whether PowerShell converts a value at runtime, so the runtime gate exists separately again. - -**Known failing gate at this commit:** the naming parity gate reports 5,689 of 7,434 comparable names matching the published SDK. Those mismatches predate this change (this commit's only naming edit is a doc-path comment) and are tracked for a separate oracle-derived naming change; they are disclosed here rather than hidden from the gate list. +The generated cmdlets **are** compiled now: `Build-WrapperModule.ps1` builds each module against the kiota client it was generated with, which is the only authority on whether an emitted parameter's CLR type matches the member it assigns. Compilation cannot see an *omitted* member, so the oracle exists separately; and neither can see whether PowerShell converts a value at runtime, so the runtime gate exists separately again. The runtime gate refuses a binary older than any of its compiled inputs — `Build-` and `Test-` both default to `Debug`, so a Release-only build once left it validating a three-day-old assembly and reporting green. ## Gaps / not done yet - **Only v1.0 output is committed.** The beta docs exist (`openApiDocs_KiotaCompat/beta`) but no beta output is generated or checked in yet; the layout already accommodates it at `src/{Module}/beta/wrapper/`. - **No runtime base classes or real auth flow.** Shared paging, a proper `Connect-MgGraph`/session integration, and base cmdlet classes are a later phase. -- **Body binding covers every shape reaching the classifier** — the sweep reports 0 unbound properties across all 38 specs, and the omission oracle reports 0 failures across 2,633 body-writing cmdlets. That is a statement about the operations that generate, not about v1.0 (see the next bullet). Classifications for shapes that do not occur (inline objects and enums, genuine unions, dictionaries, unresolvable references, unknown formats) are retained so a future corpus change is reported rather than silently mis-bound. `tools/Measure-BodyPropertyCoverage.ps1` counts them; [docs/edge-cases/body-binding-edge-cases.md](docs/edge-cases/body-binding-edge-cases.md) records each with its exit criteria. -- **Only 57.8% of v1.0 operations generate.** Of 14,131 operations across the 38 specs: 8,164 become cmdlets, 767 are suppressed because the published SDK ships no cmdlet for them, and 5,200 are unsupported — 3,495 OData path segments (`$count`/`$ref`/`$value`, delta, cast, and parameterized functions), 1,528 POST actions whose request schema is not a named entity, 93 PUT, 78 media/stream, 6 unresolvable responses. The three populations sum to 14,131 by construction; emitted files are not operations (9,608 files include 1,444 GET dispatchers that issue no request of their own). +- **Body binding covers every shape reaching the classifier** — the omission oracle reports 0 failures across 2,240 body-writing cmdlets (24,050 members seen, 15,872 bound). That is a statement about the operations that generate, not about v1.0: see the coverage figure below. Classifications for shapes that do not occur (inline objects and enums, genuine unions, dictionaries, unresolvable references, unknown formats) are retained so a future corpus change is reported rather than silently mis-bound; [docs/edge-cases/body-binding-edge-cases.md](docs/edge-cases/body-binding-edge-cases.md) records each with its exit criteria. +- **73.6% of v1.0 operations generate, deliberately.** Of 14,131 operations across the 38 specs: 10,401 become cmdlets, 3,173 are suppressed because the published SDK ships no cmdlet for them (oracle-derived), and 557 are unsupported — 345 call segments on operations the spec does not class as an action or function, 125 routes that call a parameterized function before their final segment, 42 whose content response is neither a stream nor a resolvable entity, 24 with no wrapper emitter for the HTTP method, 13 OData parameter aliases, 6 unresolvable collection schemas, 2 missing request schemas. The three populations sum to 14,131 by construction. The rise from 61.3% is the OData `$`-segments — `$count`, `$ref` and `$value` were 2,304 unsupported operations and now have emitters of their own — plus PUT and the media/content downloads. +- **Naming parity: every generated cmdlet is now compared.** The generator stamps each emitted class with a `[GraphRoute(method, path)]` attribute carrying the operation's route exactly as the spec declares it, and the gate reads that attribute out of the module's **compiled assembly**. Nothing is excluded: of 11,737 cmdlets, 9,564 match, 403 mismatch, 428 have no oracle row, 6 are documented deliberate corrections, and 1,336 are GET dispatchers verified through their `_List`/`_Get` siblings. Before this the gate reconstructed the route from the generated C#, which cannot work for a parameterized function (the builder member keeps the argument names but not the OData argument syntax) or a namespace-qualified action (kiota keeps the qualifier, the route does not) — so it excluded **1,669 cmdlets** from comparison and reported them as skipped. Those names were never wrong-free; they were unexamined. Renames and suppressions are derived from the oracle by `tools/Derive-ParityResolutions.ps1` — data, not rules — alongside a small curated set in `NamingOverrides.cs` and the comparer's deliberate-corrections table, each entry cited. A derived rename carries the published **verb** as well as the noun, because the SDK chooses an action's verb per operation (`sendMail` ships `Send-`, `checkMemberGroups` ships `Confirm-`, and `applyHold`/`removeHold` share one noun and differ only by verb). +- **Emitted files are not operations.** 11,737 files include 1,336 GET dispatchers that issue no request of their own, leaving 10,401 that correspond to an operation. Any coverage figure derived from file counts, or by subtracting only the unsupported from the total, is wrong in a way that flatters the result. The same trap applies to the file *names*: `BaseName` of `GetMgApplication_List.g.cs` is `GetMgApplication_List.g`, because only the last extension is stripped, so an orphan check written against `BaseName -match '_(List|Get)$'` examines nothing and passes vacuously. Strip `\.g\.cs$` explicitly; the corrected check examines 2,672 workers and finds 0 orphans. +- **`DeviceManagement.Actions` has no `openApiDocs_KiotaCompat` spec**, so its operations are never read and appear in none of the counts above. It also has no entry in `config/ModulesMapping.jsonc` — the mapping was removed in `659db09e81` ("modules that are causing duplicate cmdlets") — and the published inventory has no `DeviceManagement.Actions` rows for v1.0 at all: those operations ship from four modules that already existed (DeviceManagement, Reports, DeviceManagement.Administration, DeviceManagement.Enrollment), all of which generate them. 38 modules are configured for v1.0, not 39. +- **OData actions and functions generate**, as a general operation class keyed off `x-ms-docs-operation-type`: bound and unbound, entity/collection/singleton targets, inline request bodies, value-wrapping and no-content responses, and parameterized functions. [docs/edge-cases/action-function-edge-cases.md](docs/edge-cases/action-function-edge-cases.md) records the kiota naming rules each shape depends on and the two shapes still deferred (OData parameter aliases; routes that call a parameterized function part-way along). diff --git a/tools/WrapperGenerator/SchemaProperties.cs b/tools/WrapperGenerator/SchemaProperties.cs index af6f9146955..00791ff478d 100644 --- a/tools/WrapperGenerator/SchemaProperties.cs +++ b/tools/WrapperGenerator/SchemaProperties.cs @@ -71,7 +71,7 @@ public sealed record UnsupportedProperty(string OpenApiName, UnsupportedShape Sh public enum ExclusionPolicy { ServerAssignedId, // "id" is assigned by the service - ODataControlData, // "@"-prefixed, e.g. @odata.type; kiota's serializer supplies it + ODataControlData, // an OData annotation carrying protocol metadata, e.g. @odata.type KiotaAdditionalData, // the IAdditionalDataHolder bag every kiota model already exposes ReadOnlySchema, // readOnly: true - the OpenAPI signal for server-managed NavigationProperty, // x-ms-navigationProperty - a relationship with its own request path @@ -483,9 +483,16 @@ private static bool TryMapScalar(IOpenApiSchema schema, out ScalarType mapped, o // and the following character upper-cased ("riskEventTypes_v2" -> RiskEventTypesV2, // verified against a generated SignIn model). The body assignment targets that member, // so this mapping must match kiota's or the emitted code does not compile. + private static readonly char[] KiotaPropertyNameSeparators = ['_', '.']; + private static string ToKiotaPropertyName(string openApiName) { - var parts = openApiName.Split('_', StringSplitOptions.RemoveEmptyEntries); + // An OData annotation is a member like any other once kiota has named it: the leading + // "@" is dropped and the dotted parts are Pascal-cased and joined, so "@odata.id" + // generates as OdataId (verified on microsoft.graph.referenceCreate). Splitting on "." + // as well as "_" is what turns the annotation into a legal C# member name instead of + // "body.@odata.id", which does not compile. + var parts = openApiName.TrimStart('@').Split(KiotaPropertyNameSeparators, StringSplitOptions.RemoveEmptyEntries); return string.Concat(parts.Select(static p => char.ToUpperInvariant(p[0]) + p[1..])); } @@ -500,12 +507,25 @@ private static string ToKiotaPropertyName(string openApiName) // user.messages), addressed through their own request paths and not settable in a body; // Graph marks them with x-ms-navigationProperty and does NOT set readOnly, so that // extension is the only signal that keeps them out. + // The OData annotations that describe the protocol rather than the resource. @odata.type is + // the type discriminator; the other three are paging metadata a service returns. None is + // caller input, and the published SDK exposes a parameter for none of them. + // + // @odata.id is deliberately ABSENT: it is the caller-supplied target of a reference write, + // and the only property microsoft.graph.referenceCreate has. Excluding it left every + // *-ByRef POST/PUT cmdlet posting an empty body with no way to say what to link. The five + // annotations here are the complete set that occurs in the v1.0 documents. + private static readonly HashSet MetadataODataAnnotations = new(StringComparer.Ordinal) + { + "@odata.type", "@odata.count", "@odata.nextLink", "@odata.deltaLink", + }; + private static ExclusionPolicy? TryGetExclusionPolicy(string name, IOpenApiSchema propSchema) => name switch { "id" => ExclusionPolicy.ServerAssignedId, "additionalData" => ExclusionPolicy.KiotaAdditionalData, - _ when name.StartsWith('@') => ExclusionPolicy.ODataControlData, + _ when MetadataODataAnnotations.Contains(name) => ExclusionPolicy.ODataControlData, _ when propSchema.ReadOnly => ExclusionPolicy.ReadOnlySchema, _ when propSchema.Extensions?.ContainsKey("x-ms-navigationProperty") ?? false => ExclusionPolicy.NavigationProperty, _ => null, diff --git a/tools/WrapperGenerator/WrapperGenerator.csproj b/tools/WrapperGenerator/WrapperGenerator.csproj index b6c3d744bd3..b3b3284047e 100644 --- a/tools/WrapperGenerator/WrapperGenerator.csproj +++ b/tools/WrapperGenerator/WrapperGenerator.csproj @@ -24,6 +24,9 @@ + + diff --git a/tools/WrapperGenerator/data/collision-inventory.v1.0.txt b/tools/WrapperGenerator/data/collision-inventory.v1.0.txt index a39893d2c00..d93d4d60c01 100644 --- a/tools/WrapperGenerator/data/collision-inventory.v1.0.txt +++ b/tools/WrapperGenerator/data/collision-inventory.v1.0.txt @@ -1,212 +1,315 @@ -Calendar :: GetMgGroupCalendarView.g.cs: 'Get-MgGroupCalendarView [Groups[GroupId].CalendarView]' collides with already-written 'Get-MgGroupCalendarView [Groups[GroupId].Calendar.CalendarView]' -Calendar :: GetMgUserCalendarView.g.cs: 'Get-MgUserCalendarView [Users[UserId].Calendars[CalendarId].CalendarView]' collides with already-written 'Get-MgUserCalendarView [Users[UserId].Calendar.CalendarView]' -Calendar :: GetMgUserCalendarView.g.cs: 'Get-MgUserCalendarView [Users[UserId].CalendarView]' collides with already-written 'Get-MgUserCalendarView [Users[UserId].Calendar.CalendarView]' -Files :: GetMgShareListItem.g.cs: 'Get-MgShareListItem [Shares[SharedDriveItemId].ListItem]' collides with already-written 'Get-MgShareListItem [Shares[SharedDriveItemId].List.Items]' -Groups :: NewMgGroupLifecyclePolicy.g.cs: 'New-MgGroupLifecyclePolicy [Groups[GroupId].GroupLifecyclePolicies]' collides with already-written 'New-MgGroupLifecyclePolicy [GroupLifecyclePolicies]' -Groups :: NewMgGroupSetting.g.cs: 'New-MgGroupSetting [GroupSettings]' collides with already-written 'New-MgGroupSetting [Groups[GroupId].Settings]' -Groups :: UpdateMgGroupSetting.g.cs: 'Update-MgGroupSetting [GroupSettings[GroupSettingId]]' collides with already-written 'Update-MgGroupSetting [Groups[GroupId].Settings[GroupSettingId]]' -Groups :: RemoveMgGroupSetting.g.cs: 'Remove-MgGroupSetting [GroupSettings[GroupSettingId]]' collides with already-written 'Remove-MgGroupSetting [Groups[GroupId].Settings[GroupSettingId]]' -Groups :: GetMgGroupPhoto.g.cs: 'Get-MgGroupPhoto [Groups[GroupId].Photos]' collides with already-written 'Get-MgGroupPhoto [Groups[GroupId].Photo]' -Groups :: GetMgGroupSetting.g.cs: 'Get-MgGroupSetting [Groups[GroupId].Settings[GroupSettingId]]' collides with already-written 'Get-MgGroupSetting [Groups[GroupId].Settings]' -Groups :: GetMgGroupSetting.g.cs: 'Get-MgGroupSetting [GroupSettings]' collides with already-written 'Get-MgGroupSetting [Groups[GroupId].Settings]' -Groups :: GetMgGroupSetting.g.cs: 'Get-MgGroupSetting [GroupSettings[GroupSettingId]]' collides with already-written 'Get-MgGroupSetting [Groups[GroupId].Settings]' -Identity.Governance :: NewMgIdentityGovernanceEntitlementManagementCatalogResourceRole.g.cs: 'New-MgIdentityGovernanceEntitlementManagementCatalogResourceRole [IdentityGovernance.EntitlementManagement.Catalogs[AccessPackageCatalogId].Resources[AccessPackageResourceId].Roles]' collides with already-written 'New-MgIdentityGovernanceEntitlementManagementCatalogResourceRole [IdentityGovernance.EntitlementManagement.Catalogs[AccessPackageCatalogId].ResourceRoles]' -Identity.Governance :: UpdateMgIdentityGovernanceEntitlementManagementCatalogResourceRole.g.cs: 'Update-MgIdentityGovernanceEntitlementManagementCatalogResourceRole [IdentityGovernance.EntitlementManagement.Catalogs[AccessPackageCatalogId].Resources[AccessPackageResourceId].Roles[AccessPackageResourceRoleId]]' collides with already-written 'Update-MgIdentityGovernanceEntitlementManagementCatalogResourceRole [IdentityGovernance.EntitlementManagement.Catalogs[AccessPackageCatalogId].ResourceRoles[AccessPackageResourceRoleId]]' -Identity.Governance :: RemoveMgIdentityGovernanceEntitlementManagementCatalogResourceRole.g.cs: 'Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceRole [IdentityGovernance.EntitlementManagement.Catalogs[AccessPackageCatalogId].Resources[AccessPackageResourceId].Roles[AccessPackageResourceRoleId]]' collides with already-written 'Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceRole [IdentityGovernance.EntitlementManagement.Catalogs[AccessPackageCatalogId].ResourceRoles[AccessPackageResourceRoleId]]' -Identity.Governance :: UpdateMgIdentityGovernanceEntitlementManagementCatalogResourceRoleResource.g.cs: 'Update-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResource [IdentityGovernance.EntitlementManagement.Catalogs[AccessPackageCatalogId].Resources[AccessPackageResourceId].Roles[AccessPackageResourceRoleId].Resource]' collides with already-written 'Update-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResource [IdentityGovernance.EntitlementManagement.Catalogs[AccessPackageCatalogId].ResourceRoles[AccessPackageResourceRoleId].Resource]' -Identity.Governance :: RemoveMgIdentityGovernanceEntitlementManagementCatalogResourceRoleResource.g.cs: 'Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResource [IdentityGovernance.EntitlementManagement.Catalogs[AccessPackageCatalogId].Resources[AccessPackageResourceId].Roles[AccessPackageResourceRoleId].Resource]' collides with already-written 'Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResource [IdentityGovernance.EntitlementManagement.Catalogs[AccessPackageCatalogId].ResourceRoles[AccessPackageResourceRoleId].Resource]' -Identity.Governance :: NewMgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScope.g.cs: 'New-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScope [IdentityGovernance.EntitlementManagement.Catalogs[AccessPackageCatalogId].Resources[AccessPackageResourceId].Roles[AccessPackageResourceRoleId].Resource.Scopes]' collides with already-written 'New-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScope [IdentityGovernance.EntitlementManagement.Catalogs[AccessPackageCatalogId].ResourceRoles[AccessPackageResourceRoleId].Resource.Scopes]' -Identity.Governance :: UpdateMgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScope.g.cs: 'Update-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScope [IdentityGovernance.EntitlementManagement.Catalogs[AccessPackageCatalogId].Resources[AccessPackageResourceId].Roles[AccessPackageResourceRoleId].Resource.Scopes[AccessPackageResourceScopeId]]' collides with already-written 'Update-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScope [IdentityGovernance.EntitlementManagement.Catalogs[AccessPackageCatalogId].ResourceRoles[AccessPackageResourceRoleId].Resource.Scopes[AccessPackageResourceScopeId]]' -Identity.Governance :: RemoveMgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScope.g.cs: 'Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScope [IdentityGovernance.EntitlementManagement.Catalogs[AccessPackageCatalogId].Resources[AccessPackageResourceId].Roles[AccessPackageResourceRoleId].Resource.Scopes[AccessPackageResourceScopeId]]' collides with already-written 'Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScope [IdentityGovernance.EntitlementManagement.Catalogs[AccessPackageCatalogId].ResourceRoles[AccessPackageResourceRoleId].Resource.Scopes[AccessPackageResourceScopeId]]' -Identity.Governance :: UpdateMgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResource.g.cs: 'Update-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResource [IdentityGovernance.EntitlementManagement.Catalogs[AccessPackageCatalogId].Resources[AccessPackageResourceId].Roles[AccessPackageResourceRoleId].Resource.Scopes[AccessPackageResourceScopeId].Resource]' collides with already-written 'Update-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResource [IdentityGovernance.EntitlementManagement.Catalogs[AccessPackageCatalogId].ResourceRoles[AccessPackageResourceRoleId].Resource.Scopes[AccessPackageResourceScopeId].Resource]' -Identity.Governance :: RemoveMgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResource.g.cs: 'Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResource [IdentityGovernance.EntitlementManagement.Catalogs[AccessPackageCatalogId].Resources[AccessPackageResourceId].Roles[AccessPackageResourceRoleId].Resource.Scopes[AccessPackageResourceScopeId].Resource]' collides with already-written 'Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResource [IdentityGovernance.EntitlementManagement.Catalogs[AccessPackageCatalogId].ResourceRoles[AccessPackageResourceRoleId].Resource.Scopes[AccessPackageResourceScopeId].Resource]' -Identity.Governance :: NewMgIdentityGovernanceEntitlementManagementCatalogResourceScope.g.cs: 'New-MgIdentityGovernanceEntitlementManagementCatalogResourceScope [IdentityGovernance.EntitlementManagement.Catalogs[AccessPackageCatalogId].ResourceScopes]' collides with already-written 'New-MgIdentityGovernanceEntitlementManagementCatalogResourceScope [IdentityGovernance.EntitlementManagement.Catalogs[AccessPackageCatalogId].Resources[AccessPackageResourceId].Scopes]' -Identity.Governance :: UpdateMgIdentityGovernanceEntitlementManagementCatalogResourceScope.g.cs: 'Update-MgIdentityGovernanceEntitlementManagementCatalogResourceScope [IdentityGovernance.EntitlementManagement.Catalogs[AccessPackageCatalogId].ResourceScopes[AccessPackageResourceScopeId]]' collides with already-written 'Update-MgIdentityGovernanceEntitlementManagementCatalogResourceScope [IdentityGovernance.EntitlementManagement.Catalogs[AccessPackageCatalogId].Resources[AccessPackageResourceId].Scopes[AccessPackageResourceScopeId]]' -Identity.Governance :: RemoveMgIdentityGovernanceEntitlementManagementCatalogResourceScope.g.cs: 'Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceScope [IdentityGovernance.EntitlementManagement.Catalogs[AccessPackageCatalogId].ResourceScopes[AccessPackageResourceScopeId]]' collides with already-written 'Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceScope [IdentityGovernance.EntitlementManagement.Catalogs[AccessPackageCatalogId].Resources[AccessPackageResourceId].Scopes[AccessPackageResourceScopeId]]' -Identity.Governance :: UpdateMgIdentityGovernanceEntitlementManagementCatalogResourceScopeResource.g.cs: 'Update-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResource [IdentityGovernance.EntitlementManagement.Catalogs[AccessPackageCatalogId].ResourceScopes[AccessPackageResourceScopeId].Resource]' collides with already-written 'Update-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResource [IdentityGovernance.EntitlementManagement.Catalogs[AccessPackageCatalogId].Resources[AccessPackageResourceId].Scopes[AccessPackageResourceScopeId].Resource]' -Identity.Governance :: RemoveMgIdentityGovernanceEntitlementManagementCatalogResourceScopeResource.g.cs: 'Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResource [IdentityGovernance.EntitlementManagement.Catalogs[AccessPackageCatalogId].ResourceScopes[AccessPackageResourceScopeId].Resource]' collides with already-written 'Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResource [IdentityGovernance.EntitlementManagement.Catalogs[AccessPackageCatalogId].Resources[AccessPackageResourceId].Scopes[AccessPackageResourceScopeId].Resource]' -Identity.Governance :: NewMgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRole.g.cs: 'New-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRole [IdentityGovernance.EntitlementManagement.Catalogs[AccessPackageCatalogId].ResourceScopes[AccessPackageResourceScopeId].Resource.Roles]' collides with already-written 'New-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRole [IdentityGovernance.EntitlementManagement.Catalogs[AccessPackageCatalogId].Resources[AccessPackageResourceId].Scopes[AccessPackageResourceScopeId].Resource.Roles]' -Identity.Governance :: UpdateMgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRole.g.cs: 'Update-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRole [IdentityGovernance.EntitlementManagement.Catalogs[AccessPackageCatalogId].ResourceScopes[AccessPackageResourceScopeId].Resource.Roles[AccessPackageResourceRoleId]]' collides with already-written 'Update-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRole [IdentityGovernance.EntitlementManagement.Catalogs[AccessPackageCatalogId].Resources[AccessPackageResourceId].Scopes[AccessPackageResourceScopeId].Resource.Roles[AccessPackageResourceRoleId]]' -Identity.Governance :: RemoveMgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRole.g.cs: 'Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRole [IdentityGovernance.EntitlementManagement.Catalogs[AccessPackageCatalogId].ResourceScopes[AccessPackageResourceScopeId].Resource.Roles[AccessPackageResourceRoleId]]' collides with already-written 'Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRole [IdentityGovernance.EntitlementManagement.Catalogs[AccessPackageCatalogId].Resources[AccessPackageResourceId].Scopes[AccessPackageResourceScopeId].Resource.Roles[AccessPackageResourceRoleId]]' -Identity.Governance :: UpdateMgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResource.g.cs: 'Update-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResource [IdentityGovernance.EntitlementManagement.Catalogs[AccessPackageCatalogId].ResourceScopes[AccessPackageResourceScopeId].Resource.Roles[AccessPackageResourceRoleId].Resource]' collides with already-written 'Update-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResource [IdentityGovernance.EntitlementManagement.Catalogs[AccessPackageCatalogId].Resources[AccessPackageResourceId].Scopes[AccessPackageResourceScopeId].Resource.Roles[AccessPackageResourceRoleId].Resource]' -Identity.Governance :: RemoveMgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResource.g.cs: 'Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResource [IdentityGovernance.EntitlementManagement.Catalogs[AccessPackageCatalogId].ResourceScopes[AccessPackageResourceScopeId].Resource.Roles[AccessPackageResourceRoleId].Resource]' collides with already-written 'Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResource [IdentityGovernance.EntitlementManagement.Catalogs[AccessPackageCatalogId].Resources[AccessPackageResourceId].Scopes[AccessPackageResourceScopeId].Resource.Roles[AccessPackageResourceRoleId].Resource]' -Identity.Governance :: NewMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRole.g.cs: 'New-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRole [IdentityGovernance.EntitlementManagement.ResourceRequests[AccessPackageResourceRequestId].Catalog.Resources[AccessPackageResourceId].Roles]' collides with already-written 'New-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRole [IdentityGovernance.EntitlementManagement.ResourceRequests[AccessPackageResourceRequestId].Catalog.ResourceRoles]' -Identity.Governance :: UpdateMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRole.g.cs: 'Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRole [IdentityGovernance.EntitlementManagement.ResourceRequests[AccessPackageResourceRequestId].Catalog.Resources[AccessPackageResourceId].Roles[AccessPackageResourceRoleId]]' collides with already-written 'Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRole [IdentityGovernance.EntitlementManagement.ResourceRequests[AccessPackageResourceRequestId].Catalog.ResourceRoles[AccessPackageResourceRoleId]]' -Identity.Governance :: RemoveMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRole.g.cs: 'Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRole [IdentityGovernance.EntitlementManagement.ResourceRequests[AccessPackageResourceRequestId].Catalog.Resources[AccessPackageResourceId].Roles[AccessPackageResourceRoleId]]' collides with already-written 'Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRole [IdentityGovernance.EntitlementManagement.ResourceRequests[AccessPackageResourceRequestId].Catalog.ResourceRoles[AccessPackageResourceRoleId]]' -Identity.Governance :: UpdateMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResource.g.cs: 'Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResource [IdentityGovernance.EntitlementManagement.ResourceRequests[AccessPackageResourceRequestId].Catalog.Resources[AccessPackageResourceId].Roles[AccessPackageResourceRoleId].Resource]' collides with already-written 'Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResource [IdentityGovernance.EntitlementManagement.ResourceRequests[AccessPackageResourceRequestId].Catalog.ResourceRoles[AccessPackageResourceRoleId].Resource]' -Identity.Governance :: RemoveMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResource.g.cs: 'Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResource [IdentityGovernance.EntitlementManagement.ResourceRequests[AccessPackageResourceRequestId].Catalog.Resources[AccessPackageResourceId].Roles[AccessPackageResourceRoleId].Resource]' collides with already-written 'Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResource [IdentityGovernance.EntitlementManagement.ResourceRequests[AccessPackageResourceRequestId].Catalog.ResourceRoles[AccessPackageResourceRoleId].Resource]' -Identity.Governance :: NewMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScope.g.cs: 'New-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScope [IdentityGovernance.EntitlementManagement.ResourceRequests[AccessPackageResourceRequestId].Catalog.Resources[AccessPackageResourceId].Roles[AccessPackageResourceRoleId].Resource.Scopes]' collides with already-written 'New-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScope [IdentityGovernance.EntitlementManagement.ResourceRequests[AccessPackageResourceRequestId].Catalog.ResourceRoles[AccessPackageResourceRoleId].Resource.Scopes]' -Identity.Governance :: UpdateMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScope.g.cs: 'Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScope [IdentityGovernance.EntitlementManagement.ResourceRequests[AccessPackageResourceRequestId].Catalog.Resources[AccessPackageResourceId].Roles[AccessPackageResourceRoleId].Resource.Scopes[AccessPackageResourceScopeId]]' collides with already-written 'Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScope [IdentityGovernance.EntitlementManagement.ResourceRequests[AccessPackageResourceRequestId].Catalog.ResourceRoles[AccessPackageResourceRoleId].Resource.Scopes[AccessPackageResourceScopeId]]' -Identity.Governance :: RemoveMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScope.g.cs: 'Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScope [IdentityGovernance.EntitlementManagement.ResourceRequests[AccessPackageResourceRequestId].Catalog.Resources[AccessPackageResourceId].Roles[AccessPackageResourceRoleId].Resource.Scopes[AccessPackageResourceScopeId]]' collides with already-written 'Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScope [IdentityGovernance.EntitlementManagement.ResourceRequests[AccessPackageResourceRequestId].Catalog.ResourceRoles[AccessPackageResourceRoleId].Resource.Scopes[AccessPackageResourceScopeId]]' -Identity.Governance :: UpdateMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResource.g.cs: 'Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResource [IdentityGovernance.EntitlementManagement.ResourceRequests[AccessPackageResourceRequestId].Catalog.Resources[AccessPackageResourceId].Roles[AccessPackageResourceRoleId].Resource.Scopes[AccessPackageResourceScopeId].Resource]' collides with already-written 'Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResource [IdentityGovernance.EntitlementManagement.ResourceRequests[AccessPackageResourceRequestId].Catalog.ResourceRoles[AccessPackageResourceRoleId].Resource.Scopes[AccessPackageResourceScopeId].Resource]' -Identity.Governance :: RemoveMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResource.g.cs: 'Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResource [IdentityGovernance.EntitlementManagement.ResourceRequests[AccessPackageResourceRequestId].Catalog.Resources[AccessPackageResourceId].Roles[AccessPackageResourceRoleId].Resource.Scopes[AccessPackageResourceScopeId].Resource]' collides with already-written 'Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResource [IdentityGovernance.EntitlementManagement.ResourceRequests[AccessPackageResourceRequestId].Catalog.ResourceRoles[AccessPackageResourceRoleId].Resource.Scopes[AccessPackageResourceScopeId].Resource]' -Identity.Governance :: NewMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScope.g.cs: 'New-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScope [IdentityGovernance.EntitlementManagement.ResourceRequests[AccessPackageResourceRequestId].Catalog.ResourceScopes]' collides with already-written 'New-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScope [IdentityGovernance.EntitlementManagement.ResourceRequests[AccessPackageResourceRequestId].Catalog.Resources[AccessPackageResourceId].Scopes]' -Identity.Governance :: UpdateMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScope.g.cs: 'Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScope [IdentityGovernance.EntitlementManagement.ResourceRequests[AccessPackageResourceRequestId].Catalog.ResourceScopes[AccessPackageResourceScopeId]]' collides with already-written 'Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScope [IdentityGovernance.EntitlementManagement.ResourceRequests[AccessPackageResourceRequestId].Catalog.Resources[AccessPackageResourceId].Scopes[AccessPackageResourceScopeId]]' -Identity.Governance :: RemoveMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScope.g.cs: 'Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScope [IdentityGovernance.EntitlementManagement.ResourceRequests[AccessPackageResourceRequestId].Catalog.ResourceScopes[AccessPackageResourceScopeId]]' collides with already-written 'Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScope [IdentityGovernance.EntitlementManagement.ResourceRequests[AccessPackageResourceRequestId].Catalog.Resources[AccessPackageResourceId].Scopes[AccessPackageResourceScopeId]]' -Identity.Governance :: UpdateMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResource.g.cs: 'Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResource [IdentityGovernance.EntitlementManagement.ResourceRequests[AccessPackageResourceRequestId].Catalog.ResourceScopes[AccessPackageResourceScopeId].Resource]' collides with already-written 'Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResource [IdentityGovernance.EntitlementManagement.ResourceRequests[AccessPackageResourceRequestId].Catalog.Resources[AccessPackageResourceId].Scopes[AccessPackageResourceScopeId].Resource]' -Identity.Governance :: RemoveMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResource.g.cs: 'Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResource [IdentityGovernance.EntitlementManagement.ResourceRequests[AccessPackageResourceRequestId].Catalog.ResourceScopes[AccessPackageResourceScopeId].Resource]' collides with already-written 'Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResource [IdentityGovernance.EntitlementManagement.ResourceRequests[AccessPackageResourceRequestId].Catalog.Resources[AccessPackageResourceId].Scopes[AccessPackageResourceScopeId].Resource]' -Identity.Governance :: NewMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRole.g.cs: 'New-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRole [IdentityGovernance.EntitlementManagement.ResourceRequests[AccessPackageResourceRequestId].Catalog.ResourceScopes[AccessPackageResourceScopeId].Resource.Roles]' collides with already-written 'New-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRole [IdentityGovernance.EntitlementManagement.ResourceRequests[AccessPackageResourceRequestId].Catalog.Resources[AccessPackageResourceId].Scopes[AccessPackageResourceScopeId].Resource.Roles]' -Identity.Governance :: UpdateMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRole.g.cs: 'Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRole [IdentityGovernance.EntitlementManagement.ResourceRequests[AccessPackageResourceRequestId].Catalog.ResourceScopes[AccessPackageResourceScopeId].Resource.Roles[AccessPackageResourceRoleId]]' collides with already-written 'Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRole [IdentityGovernance.EntitlementManagement.ResourceRequests[AccessPackageResourceRequestId].Catalog.Resources[AccessPackageResourceId].Scopes[AccessPackageResourceScopeId].Resource.Roles[AccessPackageResourceRoleId]]' -Identity.Governance :: RemoveMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRole.g.cs: 'Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRole [IdentityGovernance.EntitlementManagement.ResourceRequests[AccessPackageResourceRequestId].Catalog.ResourceScopes[AccessPackageResourceScopeId].Resource.Roles[AccessPackageResourceRoleId]]' collides with already-written 'Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRole [IdentityGovernance.EntitlementManagement.ResourceRequests[AccessPackageResourceRequestId].Catalog.Resources[AccessPackageResourceId].Scopes[AccessPackageResourceScopeId].Resource.Roles[AccessPackageResourceRoleId]]' -Identity.Governance :: UpdateMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResource.g.cs: 'Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResource [IdentityGovernance.EntitlementManagement.ResourceRequests[AccessPackageResourceRequestId].Catalog.ResourceScopes[AccessPackageResourceScopeId].Resource.Roles[AccessPackageResourceRoleId].Resource]' collides with already-written 'Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResource [IdentityGovernance.EntitlementManagement.ResourceRequests[AccessPackageResourceRequestId].Catalog.Resources[AccessPackageResourceId].Scopes[AccessPackageResourceScopeId].Resource.Roles[AccessPackageResourceRoleId].Resource]' -Identity.Governance :: RemoveMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResource.g.cs: 'Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResource [IdentityGovernance.EntitlementManagement.ResourceRequests[AccessPackageResourceRequestId].Catalog.ResourceScopes[AccessPackageResourceScopeId].Resource.Roles[AccessPackageResourceRoleId].Resource]' collides with already-written 'Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResource [IdentityGovernance.EntitlementManagement.ResourceRequests[AccessPackageResourceRequestId].Catalog.Resources[AccessPackageResourceId].Scopes[AccessPackageResourceScopeId].Resource.Roles[AccessPackageResourceRoleId].Resource]' -Identity.Governance :: GetMgIdentityGovernanceEntitlementManagementCatalogResourceRole.g.cs: 'Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRole [IdentityGovernance.EntitlementManagement.Catalogs[AccessPackageCatalogId].ResourceRoles[AccessPackageResourceRoleId]]' collides with already-written 'Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRole [IdentityGovernance.EntitlementManagement.Catalogs[AccessPackageCatalogId].ResourceRoles]' -Identity.Governance :: GetMgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScope.g.cs: 'Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScope [IdentityGovernance.EntitlementManagement.Catalogs[AccessPackageCatalogId].ResourceRoles[AccessPackageResourceRoleId].Resource.Scopes[AccessPackageResourceScopeId]]' collides with already-written 'Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScope [IdentityGovernance.EntitlementManagement.Catalogs[AccessPackageCatalogId].ResourceRoles[AccessPackageResourceRoleId].Resource.Scopes]' -Identity.Governance :: GetMgIdentityGovernanceEntitlementManagementCatalogResourceRole.g.cs: 'Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRole [IdentityGovernance.EntitlementManagement.Catalogs[AccessPackageCatalogId].Resources[AccessPackageResourceId].Roles]' collides with already-written 'Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRole [IdentityGovernance.EntitlementManagement.Catalogs[AccessPackageCatalogId].ResourceRoles]' -Identity.Governance :: GetMgIdentityGovernanceEntitlementManagementCatalogResourceRole.g.cs: 'Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRole [IdentityGovernance.EntitlementManagement.Catalogs[AccessPackageCatalogId].Resources[AccessPackageResourceId].Roles[AccessPackageResourceRoleId]]' collides with already-written 'Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRole [IdentityGovernance.EntitlementManagement.Catalogs[AccessPackageCatalogId].ResourceRoles]' -Identity.Governance :: GetMgIdentityGovernanceEntitlementManagementCatalogResourceRoleResource.g.cs: 'Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResource [IdentityGovernance.EntitlementManagement.Catalogs[AccessPackageCatalogId].Resources[AccessPackageResourceId].Roles[AccessPackageResourceRoleId].Resource]' collides with already-written 'Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResource [IdentityGovernance.EntitlementManagement.Catalogs[AccessPackageCatalogId].ResourceRoles[AccessPackageResourceRoleId].Resource]' -Identity.Governance :: GetMgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceEnvironment.g.cs: 'Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceEnvironment [IdentityGovernance.EntitlementManagement.Catalogs[AccessPackageCatalogId].Resources[AccessPackageResourceId].Roles[AccessPackageResourceRoleId].Resource.Environment]' collides with already-written 'Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceEnvironment [IdentityGovernance.EntitlementManagement.Catalogs[AccessPackageCatalogId].ResourceRoles[AccessPackageResourceRoleId].Resource.Environment]' -Identity.Governance :: GetMgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScope.g.cs: 'Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScope [IdentityGovernance.EntitlementManagement.Catalogs[AccessPackageCatalogId].Resources[AccessPackageResourceId].Roles[AccessPackageResourceRoleId].Resource.Scopes]' collides with already-written 'Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScope [IdentityGovernance.EntitlementManagement.Catalogs[AccessPackageCatalogId].ResourceRoles[AccessPackageResourceRoleId].Resource.Scopes]' -Identity.Governance :: GetMgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScope.g.cs: 'Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScope [IdentityGovernance.EntitlementManagement.Catalogs[AccessPackageCatalogId].Resources[AccessPackageResourceId].Roles[AccessPackageResourceRoleId].Resource.Scopes[AccessPackageResourceScopeId]]' collides with already-written 'Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScope [IdentityGovernance.EntitlementManagement.Catalogs[AccessPackageCatalogId].ResourceRoles[AccessPackageResourceRoleId].Resource.Scopes]' -Identity.Governance :: GetMgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResource.g.cs: 'Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResource [IdentityGovernance.EntitlementManagement.Catalogs[AccessPackageCatalogId].Resources[AccessPackageResourceId].Roles[AccessPackageResourceRoleId].Resource.Scopes[AccessPackageResourceScopeId].Resource]' collides with already-written 'Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResource [IdentityGovernance.EntitlementManagement.Catalogs[AccessPackageCatalogId].ResourceRoles[AccessPackageResourceRoleId].Resource.Scopes[AccessPackageResourceScopeId].Resource]' -Identity.Governance :: GetMgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResourceEnvironment.g.cs: 'Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResourceEnvironment [IdentityGovernance.EntitlementManagement.Catalogs[AccessPackageCatalogId].Resources[AccessPackageResourceId].Roles[AccessPackageResourceRoleId].Resource.Scopes[AccessPackageResourceScopeId].Resource.Environment]' collides with already-written 'Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResourceEnvironment [IdentityGovernance.EntitlementManagement.Catalogs[AccessPackageCatalogId].ResourceRoles[AccessPackageResourceRoleId].Resource.Scopes[AccessPackageResourceScopeId].Resource.Environment]' -Identity.Governance :: GetMgIdentityGovernanceEntitlementManagementCatalogResourceScope.g.cs: 'Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScope [IdentityGovernance.EntitlementManagement.Catalogs[AccessPackageCatalogId].Resources[AccessPackageResourceId].Scopes[AccessPackageResourceScopeId]]' collides with already-written 'Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScope [IdentityGovernance.EntitlementManagement.Catalogs[AccessPackageCatalogId].Resources[AccessPackageResourceId].Scopes]' -Identity.Governance :: GetMgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRole.g.cs: 'Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRole [IdentityGovernance.EntitlementManagement.Catalogs[AccessPackageCatalogId].Resources[AccessPackageResourceId].Scopes[AccessPackageResourceScopeId].Resource.Roles[AccessPackageResourceRoleId]]' collides with already-written 'Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRole [IdentityGovernance.EntitlementManagement.Catalogs[AccessPackageCatalogId].Resources[AccessPackageResourceId].Scopes[AccessPackageResourceScopeId].Resource.Roles]' -Identity.Governance :: GetMgIdentityGovernanceEntitlementManagementCatalogResourceScope.g.cs: 'Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScope [IdentityGovernance.EntitlementManagement.Catalogs[AccessPackageCatalogId].ResourceScopes]' collides with already-written 'Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScope [IdentityGovernance.EntitlementManagement.Catalogs[AccessPackageCatalogId].Resources[AccessPackageResourceId].Scopes]' -Identity.Governance :: GetMgIdentityGovernanceEntitlementManagementCatalogResourceScope.g.cs: 'Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScope [IdentityGovernance.EntitlementManagement.Catalogs[AccessPackageCatalogId].ResourceScopes[AccessPackageResourceScopeId]]' collides with already-written 'Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScope [IdentityGovernance.EntitlementManagement.Catalogs[AccessPackageCatalogId].Resources[AccessPackageResourceId].Scopes]' -Identity.Governance :: GetMgIdentityGovernanceEntitlementManagementCatalogResourceScopeResource.g.cs: 'Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResource [IdentityGovernance.EntitlementManagement.Catalogs[AccessPackageCatalogId].ResourceScopes[AccessPackageResourceScopeId].Resource]' collides with already-written 'Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResource [IdentityGovernance.EntitlementManagement.Catalogs[AccessPackageCatalogId].Resources[AccessPackageResourceId].Scopes[AccessPackageResourceScopeId].Resource]' -Identity.Governance :: GetMgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceEnvironment.g.cs: 'Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceEnvironment [IdentityGovernance.EntitlementManagement.Catalogs[AccessPackageCatalogId].ResourceScopes[AccessPackageResourceScopeId].Resource.Environment]' collides with already-written 'Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceEnvironment [IdentityGovernance.EntitlementManagement.Catalogs[AccessPackageCatalogId].Resources[AccessPackageResourceId].Scopes[AccessPackageResourceScopeId].Resource.Environment]' -Identity.Governance :: GetMgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRole.g.cs: 'Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRole [IdentityGovernance.EntitlementManagement.Catalogs[AccessPackageCatalogId].ResourceScopes[AccessPackageResourceScopeId].Resource.Roles]' collides with already-written 'Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRole [IdentityGovernance.EntitlementManagement.Catalogs[AccessPackageCatalogId].Resources[AccessPackageResourceId].Scopes[AccessPackageResourceScopeId].Resource.Roles]' -Identity.Governance :: GetMgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRole.g.cs: 'Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRole [IdentityGovernance.EntitlementManagement.Catalogs[AccessPackageCatalogId].ResourceScopes[AccessPackageResourceScopeId].Resource.Roles[AccessPackageResourceRoleId]]' collides with already-written 'Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRole [IdentityGovernance.EntitlementManagement.Catalogs[AccessPackageCatalogId].Resources[AccessPackageResourceId].Scopes[AccessPackageResourceScopeId].Resource.Roles]' -Identity.Governance :: GetMgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResource.g.cs: 'Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResource [IdentityGovernance.EntitlementManagement.Catalogs[AccessPackageCatalogId].ResourceScopes[AccessPackageResourceScopeId].Resource.Roles[AccessPackageResourceRoleId].Resource]' collides with already-written 'Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResource [IdentityGovernance.EntitlementManagement.Catalogs[AccessPackageCatalogId].Resources[AccessPackageResourceId].Scopes[AccessPackageResourceScopeId].Resource.Roles[AccessPackageResourceRoleId].Resource]' -Identity.Governance :: GetMgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResourceEnvironment.g.cs: 'Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResourceEnvironment [IdentityGovernance.EntitlementManagement.Catalogs[AccessPackageCatalogId].ResourceScopes[AccessPackageResourceScopeId].Resource.Roles[AccessPackageResourceRoleId].Resource.Environment]' collides with already-written 'Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResourceEnvironment [IdentityGovernance.EntitlementManagement.Catalogs[AccessPackageCatalogId].Resources[AccessPackageResourceId].Scopes[AccessPackageResourceScopeId].Resource.Roles[AccessPackageResourceRoleId].Resource.Environment]' -Identity.Governance :: GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRole.g.cs: 'Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRole [IdentityGovernance.EntitlementManagement.ResourceRequests[AccessPackageResourceRequestId].Catalog.ResourceRoles[AccessPackageResourceRoleId]]' collides with already-written 'Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRole [IdentityGovernance.EntitlementManagement.ResourceRequests[AccessPackageResourceRequestId].Catalog.ResourceRoles]' -Identity.Governance :: GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScope.g.cs: 'Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScope [IdentityGovernance.EntitlementManagement.ResourceRequests[AccessPackageResourceRequestId].Catalog.ResourceRoles[AccessPackageResourceRoleId].Resource.Scopes[AccessPackageResourceScopeId]]' collides with already-written 'Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScope [IdentityGovernance.EntitlementManagement.ResourceRequests[AccessPackageResourceRequestId].Catalog.ResourceRoles[AccessPackageResourceRoleId].Resource.Scopes]' -Identity.Governance :: GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRole.g.cs: 'Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRole [IdentityGovernance.EntitlementManagement.ResourceRequests[AccessPackageResourceRequestId].Catalog.Resources[AccessPackageResourceId].Roles]' collides with already-written 'Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRole [IdentityGovernance.EntitlementManagement.ResourceRequests[AccessPackageResourceRequestId].Catalog.ResourceRoles]' -Identity.Governance :: GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRole.g.cs: 'Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRole [IdentityGovernance.EntitlementManagement.ResourceRequests[AccessPackageResourceRequestId].Catalog.Resources[AccessPackageResourceId].Roles[AccessPackageResourceRoleId]]' collides with already-written 'Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRole [IdentityGovernance.EntitlementManagement.ResourceRequests[AccessPackageResourceRequestId].Catalog.ResourceRoles]' -Identity.Governance :: GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResource.g.cs: 'Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResource [IdentityGovernance.EntitlementManagement.ResourceRequests[AccessPackageResourceRequestId].Catalog.Resources[AccessPackageResourceId].Roles[AccessPackageResourceRoleId].Resource]' collides with already-written 'Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResource [IdentityGovernance.EntitlementManagement.ResourceRequests[AccessPackageResourceRequestId].Catalog.ResourceRoles[AccessPackageResourceRoleId].Resource]' -Identity.Governance :: GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceEnvironment.g.cs: 'Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceEnvironment [IdentityGovernance.EntitlementManagement.ResourceRequests[AccessPackageResourceRequestId].Catalog.Resources[AccessPackageResourceId].Roles[AccessPackageResourceRoleId].Resource.Environment]' collides with already-written 'Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceEnvironment [IdentityGovernance.EntitlementManagement.ResourceRequests[AccessPackageResourceRequestId].Catalog.ResourceRoles[AccessPackageResourceRoleId].Resource.Environment]' -Identity.Governance :: GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScope.g.cs: 'Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScope [IdentityGovernance.EntitlementManagement.ResourceRequests[AccessPackageResourceRequestId].Catalog.Resources[AccessPackageResourceId].Roles[AccessPackageResourceRoleId].Resource.Scopes]' collides with already-written 'Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScope [IdentityGovernance.EntitlementManagement.ResourceRequests[AccessPackageResourceRequestId].Catalog.ResourceRoles[AccessPackageResourceRoleId].Resource.Scopes]' -Identity.Governance :: GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScope.g.cs: 'Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScope [IdentityGovernance.EntitlementManagement.ResourceRequests[AccessPackageResourceRequestId].Catalog.Resources[AccessPackageResourceId].Roles[AccessPackageResourceRoleId].Resource.Scopes[AccessPackageResourceScopeId]]' collides with already-written 'Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScope [IdentityGovernance.EntitlementManagement.ResourceRequests[AccessPackageResourceRequestId].Catalog.ResourceRoles[AccessPackageResourceRoleId].Resource.Scopes]' -Identity.Governance :: GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResource.g.cs: 'Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResource [IdentityGovernance.EntitlementManagement.ResourceRequests[AccessPackageResourceRequestId].Catalog.Resources[AccessPackageResourceId].Roles[AccessPackageResourceRoleId].Resource.Scopes[AccessPackageResourceScopeId].Resource]' collides with already-written 'Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResource [IdentityGovernance.EntitlementManagement.ResourceRequests[AccessPackageResourceRequestId].Catalog.ResourceRoles[AccessPackageResourceRoleId].Resource.Scopes[AccessPackageResourceScopeId].Resource]' -Identity.Governance :: GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceEnvironment.g.cs: 'Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceEnvironment [IdentityGovernance.EntitlementManagement.ResourceRequests[AccessPackageResourceRequestId].Catalog.Resources[AccessPackageResourceId].Roles[AccessPackageResourceRoleId].Resource.Scopes[AccessPackageResourceScopeId].Resource.Environment]' collides with already-written 'Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceEnvironment [IdentityGovernance.EntitlementManagement.ResourceRequests[AccessPackageResourceRequestId].Catalog.ResourceRoles[AccessPackageResourceRoleId].Resource.Scopes[AccessPackageResourceScopeId].Resource.Environment]' -Identity.Governance :: GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScope.g.cs: 'Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScope [IdentityGovernance.EntitlementManagement.ResourceRequests[AccessPackageResourceRequestId].Catalog.Resources[AccessPackageResourceId].Scopes[AccessPackageResourceScopeId]]' collides with already-written 'Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScope [IdentityGovernance.EntitlementManagement.ResourceRequests[AccessPackageResourceRequestId].Catalog.Resources[AccessPackageResourceId].Scopes]' -Identity.Governance :: GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRole.g.cs: 'Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRole [IdentityGovernance.EntitlementManagement.ResourceRequests[AccessPackageResourceRequestId].Catalog.Resources[AccessPackageResourceId].Scopes[AccessPackageResourceScopeId].Resource.Roles[AccessPackageResourceRoleId]]' collides with already-written 'Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRole [IdentityGovernance.EntitlementManagement.ResourceRequests[AccessPackageResourceRequestId].Catalog.Resources[AccessPackageResourceId].Scopes[AccessPackageResourceScopeId].Resource.Roles]' -Identity.Governance :: GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScope.g.cs: 'Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScope [IdentityGovernance.EntitlementManagement.ResourceRequests[AccessPackageResourceRequestId].Catalog.ResourceScopes]' collides with already-written 'Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScope [IdentityGovernance.EntitlementManagement.ResourceRequests[AccessPackageResourceRequestId].Catalog.Resources[AccessPackageResourceId].Scopes]' -Identity.Governance :: GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScope.g.cs: 'Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScope [IdentityGovernance.EntitlementManagement.ResourceRequests[AccessPackageResourceRequestId].Catalog.ResourceScopes[AccessPackageResourceScopeId]]' collides with already-written 'Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScope [IdentityGovernance.EntitlementManagement.ResourceRequests[AccessPackageResourceRequestId].Catalog.Resources[AccessPackageResourceId].Scopes]' -Identity.Governance :: GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResource.g.cs: 'Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResource [IdentityGovernance.EntitlementManagement.ResourceRequests[AccessPackageResourceRequestId].Catalog.ResourceScopes[AccessPackageResourceScopeId].Resource]' collides with already-written 'Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResource [IdentityGovernance.EntitlementManagement.ResourceRequests[AccessPackageResourceRequestId].Catalog.Resources[AccessPackageResourceId].Scopes[AccessPackageResourceScopeId].Resource]' -Identity.Governance :: GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceEnvironment.g.cs: 'Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceEnvironment [IdentityGovernance.EntitlementManagement.ResourceRequests[AccessPackageResourceRequestId].Catalog.ResourceScopes[AccessPackageResourceScopeId].Resource.Environment]' collides with already-written 'Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceEnvironment [IdentityGovernance.EntitlementManagement.ResourceRequests[AccessPackageResourceRequestId].Catalog.Resources[AccessPackageResourceId].Scopes[AccessPackageResourceScopeId].Resource.Environment]' -Identity.Governance :: GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRole.g.cs: 'Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRole [IdentityGovernance.EntitlementManagement.ResourceRequests[AccessPackageResourceRequestId].Catalog.ResourceScopes[AccessPackageResourceScopeId].Resource.Roles]' collides with already-written 'Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRole [IdentityGovernance.EntitlementManagement.ResourceRequests[AccessPackageResourceRequestId].Catalog.Resources[AccessPackageResourceId].Scopes[AccessPackageResourceScopeId].Resource.Roles]' -Identity.Governance :: GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRole.g.cs: 'Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRole [IdentityGovernance.EntitlementManagement.ResourceRequests[AccessPackageResourceRequestId].Catalog.ResourceScopes[AccessPackageResourceScopeId].Resource.Roles[AccessPackageResourceRoleId]]' collides with already-written 'Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRole [IdentityGovernance.EntitlementManagement.ResourceRequests[AccessPackageResourceRequestId].Catalog.Resources[AccessPackageResourceId].Scopes[AccessPackageResourceScopeId].Resource.Roles]' -Identity.Governance :: GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResource.g.cs: 'Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResource [IdentityGovernance.EntitlementManagement.ResourceRequests[AccessPackageResourceRequestId].Catalog.ResourceScopes[AccessPackageResourceScopeId].Resource.Roles[AccessPackageResourceRoleId].Resource]' collides with already-written 'Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResource [IdentityGovernance.EntitlementManagement.ResourceRequests[AccessPackageResourceRequestId].Catalog.Resources[AccessPackageResourceId].Scopes[AccessPackageResourceScopeId].Resource.Roles[AccessPackageResourceRoleId].Resource]' -Identity.Governance :: GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceEnvironment.g.cs: 'Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceEnvironment [IdentityGovernance.EntitlementManagement.ResourceRequests[AccessPackageResourceRequestId].Catalog.ResourceScopes[AccessPackageResourceScopeId].Resource.Roles[AccessPackageResourceRoleId].Resource.Environment]' collides with already-written 'Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceEnvironment [IdentityGovernance.EntitlementManagement.ResourceRequests[AccessPackageResourceRequestId].Catalog.Resources[AccessPackageResourceId].Scopes[AccessPackageResourceScopeId].Resource.Roles[AccessPackageResourceRoleId].Resource.Environment]' -Notes :: GetMgGroupOnenoteNotebookSectionGroup.g.cs: 'Get-MgGroupOnenoteNotebookSectionGroup [Groups[GroupId].Onenote.Notebooks[NotebookId].SectionGroups[SectionGroupId]]' collides with already-written 'Get-MgGroupOnenoteNotebookSectionGroup [Groups[GroupId].Onenote.Notebooks[NotebookId].SectionGroups]' -Notes :: GetMgGroupOnenoteNotebookSectionGroup.g.cs: 'Get-MgGroupOnenoteNotebookSectionGroup [Groups[GroupId].Onenote.Notebooks[NotebookId].SectionGroups[SectionGroupId].SectionGroups]' collides with already-written 'Get-MgGroupOnenoteNotebookSectionGroup [Groups[GroupId].Onenote.Notebooks[NotebookId].SectionGroups]' -Notes :: GetMgGroupOnenoteNotebookSectionGroup.g.cs: 'Get-MgGroupOnenoteNotebookSectionGroup [Groups[GroupId].Onenote.Notebooks[NotebookId].SectionGroups[SectionGroupId].SectionGroups[SectionGroupId1]]' collides with already-written 'Get-MgGroupOnenoteNotebookSectionGroup [Groups[GroupId].Onenote.Notebooks[NotebookId].SectionGroups]' -Notes :: GetMgGroupOnenoteSectionGroup.g.cs: 'Get-MgGroupOnenoteSectionGroup [Groups[GroupId].Onenote.SectionGroups[SectionGroupId]]' collides with already-written 'Get-MgGroupOnenoteSectionGroup [Groups[GroupId].Onenote.SectionGroups]' -Notes :: GetMgGroupOnenoteSectionGroup.g.cs: 'Get-MgGroupOnenoteSectionGroup [Groups[GroupId].Onenote.SectionGroups[SectionGroupId].SectionGroups]' collides with already-written 'Get-MgGroupOnenoteSectionGroup [Groups[GroupId].Onenote.SectionGroups]' -Notes :: GetMgGroupOnenoteSectionGroup.g.cs: 'Get-MgGroupOnenoteSectionGroup [Groups[GroupId].Onenote.SectionGroups[SectionGroupId].SectionGroups[SectionGroupId1]]' collides with already-written 'Get-MgGroupOnenoteSectionGroup [Groups[GroupId].Onenote.SectionGroups]' -Notes :: GetMgSiteOnenoteNotebookSectionGroup.g.cs: 'Get-MgSiteOnenoteNotebookSectionGroup [Sites[SiteId].Onenote.Notebooks[NotebookId].SectionGroups[SectionGroupId]]' collides with already-written 'Get-MgSiteOnenoteNotebookSectionGroup [Sites[SiteId].Onenote.Notebooks[NotebookId].SectionGroups]' -Notes :: GetMgSiteOnenoteNotebookSectionGroup.g.cs: 'Get-MgSiteOnenoteNotebookSectionGroup [Sites[SiteId].Onenote.Notebooks[NotebookId].SectionGroups[SectionGroupId].SectionGroups]' collides with already-written 'Get-MgSiteOnenoteNotebookSectionGroup [Sites[SiteId].Onenote.Notebooks[NotebookId].SectionGroups]' -Notes :: GetMgSiteOnenoteNotebookSectionGroup.g.cs: 'Get-MgSiteOnenoteNotebookSectionGroup [Sites[SiteId].Onenote.Notebooks[NotebookId].SectionGroups[SectionGroupId].SectionGroups[SectionGroupId1]]' collides with already-written 'Get-MgSiteOnenoteNotebookSectionGroup [Sites[SiteId].Onenote.Notebooks[NotebookId].SectionGroups]' -Notes :: GetMgSiteOnenoteSectionGroup.g.cs: 'Get-MgSiteOnenoteSectionGroup [Sites[SiteId].Onenote.SectionGroups[SectionGroupId]]' collides with already-written 'Get-MgSiteOnenoteSectionGroup [Sites[SiteId].Onenote.SectionGroups]' -Notes :: GetMgSiteOnenoteSectionGroup.g.cs: 'Get-MgSiteOnenoteSectionGroup [Sites[SiteId].Onenote.SectionGroups[SectionGroupId].SectionGroups]' collides with already-written 'Get-MgSiteOnenoteSectionGroup [Sites[SiteId].Onenote.SectionGroups]' -Notes :: GetMgSiteOnenoteSectionGroup.g.cs: 'Get-MgSiteOnenoteSectionGroup [Sites[SiteId].Onenote.SectionGroups[SectionGroupId].SectionGroups[SectionGroupId1]]' collides with already-written 'Get-MgSiteOnenoteSectionGroup [Sites[SiteId].Onenote.SectionGroups]' -Notes :: GetMgUserOnenoteNotebookSectionGroup.g.cs: 'Get-MgUserOnenoteNotebookSectionGroup [Users[UserId].Onenote.Notebooks[NotebookId].SectionGroups[SectionGroupId]]' collides with already-written 'Get-MgUserOnenoteNotebookSectionGroup [Users[UserId].Onenote.Notebooks[NotebookId].SectionGroups]' -Notes :: GetMgUserOnenoteNotebookSectionGroup.g.cs: 'Get-MgUserOnenoteNotebookSectionGroup [Users[UserId].Onenote.Notebooks[NotebookId].SectionGroups[SectionGroupId].SectionGroups]' collides with already-written 'Get-MgUserOnenoteNotebookSectionGroup [Users[UserId].Onenote.Notebooks[NotebookId].SectionGroups]' -Notes :: GetMgUserOnenoteNotebookSectionGroup.g.cs: 'Get-MgUserOnenoteNotebookSectionGroup [Users[UserId].Onenote.Notebooks[NotebookId].SectionGroups[SectionGroupId].SectionGroups[SectionGroupId1]]' collides with already-written 'Get-MgUserOnenoteNotebookSectionGroup [Users[UserId].Onenote.Notebooks[NotebookId].SectionGroups]' -Notes :: GetMgUserOnenoteSectionGroup.g.cs: 'Get-MgUserOnenoteSectionGroup [Users[UserId].Onenote.SectionGroups[SectionGroupId]]' collides with already-written 'Get-MgUserOnenoteSectionGroup [Users[UserId].Onenote.SectionGroups]' -Notes :: GetMgUserOnenoteSectionGroup.g.cs: 'Get-MgUserOnenoteSectionGroup [Users[UserId].Onenote.SectionGroups[SectionGroupId].SectionGroups]' collides with already-written 'Get-MgUserOnenoteSectionGroup [Users[UserId].Onenote.SectionGroups]' -Notes :: GetMgUserOnenoteSectionGroup.g.cs: 'Get-MgUserOnenoteSectionGroup [Users[UserId].Onenote.SectionGroups[SectionGroupId].SectionGroups[SectionGroupId1]]' collides with already-written 'Get-MgUserOnenoteSectionGroup [Users[UserId].Onenote.SectionGroups]' -Sites :: NewMgGroupSiteTermStoreGroupSetChild.g.cs: 'New-MgGroupSiteTermStoreGroupSetChild [Groups[GroupId].Sites[SiteId].TermStore.Groups[GroupId1].Sets[SetId].Children[TermId].Children]' collides with already-written 'New-MgGroupSiteTermStoreGroupSetChild [Groups[GroupId].Sites[SiteId].TermStore.Groups[GroupId1].Sets[SetId].Children]' -Sites :: UpdateMgGroupSiteTermStoreGroupSetChild.g.cs: 'Update-MgGroupSiteTermStoreGroupSetChild [Groups[GroupId].Sites[SiteId].TermStore.Groups[GroupId1].Sets[SetId].Children[TermId].Children[TermId1]]' collides with already-written 'Update-MgGroupSiteTermStoreGroupSetChild [Groups[GroupId].Sites[SiteId].TermStore.Groups[GroupId1].Sets[SetId].Children[TermId]]' -Sites :: RemoveMgGroupSiteTermStoreGroupSetChild.g.cs: 'Remove-MgGroupSiteTermStoreGroupSetChild [Groups[GroupId].Sites[SiteId].TermStore.Groups[GroupId1].Sets[SetId].Children[TermId].Children[TermId1]]' collides with already-written 'Remove-MgGroupSiteTermStoreGroupSetChild [Groups[GroupId].Sites[SiteId].TermStore.Groups[GroupId1].Sets[SetId].Children[TermId]]' -Sites :: NewMgGroupSiteTermStoreGroupSetChildRelation.g.cs: 'New-MgGroupSiteTermStoreGroupSetChildRelation [Groups[GroupId].Sites[SiteId].TermStore.Groups[GroupId1].Sets[SetId].Children[TermId].Relations]' collides with already-written 'New-MgGroupSiteTermStoreGroupSetChildRelation [Groups[GroupId].Sites[SiteId].TermStore.Groups[GroupId1].Sets[SetId].Children[TermId].Children[TermId1].Relations]' -Sites :: UpdateMgGroupSiteTermStoreGroupSetChildRelation.g.cs: 'Update-MgGroupSiteTermStoreGroupSetChildRelation [Groups[GroupId].Sites[SiteId].TermStore.Groups[GroupId1].Sets[SetId].Children[TermId].Relations[RelationId]]' collides with already-written 'Update-MgGroupSiteTermStoreGroupSetChildRelation [Groups[GroupId].Sites[SiteId].TermStore.Groups[GroupId1].Sets[SetId].Children[TermId].Children[TermId1].Relations[RelationId]]' -Sites :: RemoveMgGroupSiteTermStoreGroupSetChildRelation.g.cs: 'Remove-MgGroupSiteTermStoreGroupSetChildRelation [Groups[GroupId].Sites[SiteId].TermStore.Groups[GroupId1].Sets[SetId].Children[TermId].Relations[RelationId]]' collides with already-written 'Remove-MgGroupSiteTermStoreGroupSetChildRelation [Groups[GroupId].Sites[SiteId].TermStore.Groups[GroupId1].Sets[SetId].Children[TermId].Children[TermId1].Relations[RelationId]]' -Sites :: NewMgGroupSiteTermStoreSetChild.g.cs: 'New-MgGroupSiteTermStoreSetChild [Groups[GroupId].Sites[SiteId].TermStore.Sets[SetId].Children[TermId].Children]' collides with already-written 'New-MgGroupSiteTermStoreSetChild [Groups[GroupId].Sites[SiteId].TermStore.Sets[SetId].Children]' -Sites :: UpdateMgGroupSiteTermStoreSetChild.g.cs: 'Update-MgGroupSiteTermStoreSetChild [Groups[GroupId].Sites[SiteId].TermStore.Sets[SetId].Children[TermId].Children[TermId1]]' collides with already-written 'Update-MgGroupSiteTermStoreSetChild [Groups[GroupId].Sites[SiteId].TermStore.Sets[SetId].Children[TermId]]' -Sites :: RemoveMgGroupSiteTermStoreSetChild.g.cs: 'Remove-MgGroupSiteTermStoreSetChild [Groups[GroupId].Sites[SiteId].TermStore.Sets[SetId].Children[TermId].Children[TermId1]]' collides with already-written 'Remove-MgGroupSiteTermStoreSetChild [Groups[GroupId].Sites[SiteId].TermStore.Sets[SetId].Children[TermId]]' -Sites :: NewMgGroupSiteTermStoreSetChildRelation.g.cs: 'New-MgGroupSiteTermStoreSetChildRelation [Groups[GroupId].Sites[SiteId].TermStore.Sets[SetId].Children[TermId].Relations]' collides with already-written 'New-MgGroupSiteTermStoreSetChildRelation [Groups[GroupId].Sites[SiteId].TermStore.Sets[SetId].Children[TermId].Children[TermId1].Relations]' -Sites :: UpdateMgGroupSiteTermStoreSetChildRelation.g.cs: 'Update-MgGroupSiteTermStoreSetChildRelation [Groups[GroupId].Sites[SiteId].TermStore.Sets[SetId].Children[TermId].Relations[RelationId]]' collides with already-written 'Update-MgGroupSiteTermStoreSetChildRelation [Groups[GroupId].Sites[SiteId].TermStore.Sets[SetId].Children[TermId].Children[TermId1].Relations[RelationId]]' -Sites :: RemoveMgGroupSiteTermStoreSetChildRelation.g.cs: 'Remove-MgGroupSiteTermStoreSetChildRelation [Groups[GroupId].Sites[SiteId].TermStore.Sets[SetId].Children[TermId].Relations[RelationId]]' collides with already-written 'Remove-MgGroupSiteTermStoreSetChildRelation [Groups[GroupId].Sites[SiteId].TermStore.Sets[SetId].Children[TermId].Children[TermId1].Relations[RelationId]]' -Sites :: NewMgGroupSiteTermStoreSetParentGroupSetChild.g.cs: 'New-MgGroupSiteTermStoreSetParentGroupSetChild [Groups[GroupId].Sites[SiteId].TermStore.Sets[SetId].ParentGroup.Sets[SetId1].Children[TermId].Children]' collides with already-written 'New-MgGroupSiteTermStoreSetParentGroupSetChild [Groups[GroupId].Sites[SiteId].TermStore.Sets[SetId].ParentGroup.Sets[SetId1].Children]' -Sites :: UpdateMgGroupSiteTermStoreSetParentGroupSetChild.g.cs: 'Update-MgGroupSiteTermStoreSetParentGroupSetChild [Groups[GroupId].Sites[SiteId].TermStore.Sets[SetId].ParentGroup.Sets[SetId1].Children[TermId].Children[TermId1]]' collides with already-written 'Update-MgGroupSiteTermStoreSetParentGroupSetChild [Groups[GroupId].Sites[SiteId].TermStore.Sets[SetId].ParentGroup.Sets[SetId1].Children[TermId]]' -Sites :: RemoveMgGroupSiteTermStoreSetParentGroupSetChild.g.cs: 'Remove-MgGroupSiteTermStoreSetParentGroupSetChild [Groups[GroupId].Sites[SiteId].TermStore.Sets[SetId].ParentGroup.Sets[SetId1].Children[TermId].Children[TermId1]]' collides with already-written 'Remove-MgGroupSiteTermStoreSetParentGroupSetChild [Groups[GroupId].Sites[SiteId].TermStore.Sets[SetId].ParentGroup.Sets[SetId1].Children[TermId]]' -Sites :: NewMgGroupSiteTermStoreSetParentGroupSetChildRelation.g.cs: 'New-MgGroupSiteTermStoreSetParentGroupSetChildRelation [Groups[GroupId].Sites[SiteId].TermStore.Sets[SetId].ParentGroup.Sets[SetId1].Children[TermId].Relations]' collides with already-written 'New-MgGroupSiteTermStoreSetParentGroupSetChildRelation [Groups[GroupId].Sites[SiteId].TermStore.Sets[SetId].ParentGroup.Sets[SetId1].Children[TermId].Children[TermId1].Relations]' -Sites :: UpdateMgGroupSiteTermStoreSetParentGroupSetChildRelation.g.cs: 'Update-MgGroupSiteTermStoreSetParentGroupSetChildRelation [Groups[GroupId].Sites[SiteId].TermStore.Sets[SetId].ParentGroup.Sets[SetId1].Children[TermId].Relations[RelationId]]' collides with already-written 'Update-MgGroupSiteTermStoreSetParentGroupSetChildRelation [Groups[GroupId].Sites[SiteId].TermStore.Sets[SetId].ParentGroup.Sets[SetId1].Children[TermId].Children[TermId1].Relations[RelationId]]' -Sites :: RemoveMgGroupSiteTermStoreSetParentGroupSetChildRelation.g.cs: 'Remove-MgGroupSiteTermStoreSetParentGroupSetChildRelation [Groups[GroupId].Sites[SiteId].TermStore.Sets[SetId].ParentGroup.Sets[SetId1].Children[TermId].Relations[RelationId]]' collides with already-written 'Remove-MgGroupSiteTermStoreSetParentGroupSetChildRelation [Groups[GroupId].Sites[SiteId].TermStore.Sets[SetId].ParentGroup.Sets[SetId1].Children[TermId].Children[TermId1].Relations[RelationId]]' -Sites :: NewMgSiteTermStoreGroupSetChild.g.cs: 'New-MgSiteTermStoreGroupSetChild [Sites[SiteId].TermStore.Groups[GroupId].Sets[SetId].Children[TermId].Children]' collides with already-written 'New-MgSiteTermStoreGroupSetChild [Sites[SiteId].TermStore.Groups[GroupId].Sets[SetId].Children]' -Sites :: UpdateMgSiteTermStoreGroupSetChild.g.cs: 'Update-MgSiteTermStoreGroupSetChild [Sites[SiteId].TermStore.Groups[GroupId].Sets[SetId].Children[TermId].Children[TermId1]]' collides with already-written 'Update-MgSiteTermStoreGroupSetChild [Sites[SiteId].TermStore.Groups[GroupId].Sets[SetId].Children[TermId]]' -Sites :: RemoveMgSiteTermStoreGroupSetChild.g.cs: 'Remove-MgSiteTermStoreGroupSetChild [Sites[SiteId].TermStore.Groups[GroupId].Sets[SetId].Children[TermId].Children[TermId1]]' collides with already-written 'Remove-MgSiteTermStoreGroupSetChild [Sites[SiteId].TermStore.Groups[GroupId].Sets[SetId].Children[TermId]]' -Sites :: NewMgSiteTermStoreGroupSetChildRelation.g.cs: 'New-MgSiteTermStoreGroupSetChildRelation [Sites[SiteId].TermStore.Groups[GroupId].Sets[SetId].Children[TermId].Relations]' collides with already-written 'New-MgSiteTermStoreGroupSetChildRelation [Sites[SiteId].TermStore.Groups[GroupId].Sets[SetId].Children[TermId].Children[TermId1].Relations]' -Sites :: UpdateMgSiteTermStoreGroupSetChildRelation.g.cs: 'Update-MgSiteTermStoreGroupSetChildRelation [Sites[SiteId].TermStore.Groups[GroupId].Sets[SetId].Children[TermId].Relations[RelationId]]' collides with already-written 'Update-MgSiteTermStoreGroupSetChildRelation [Sites[SiteId].TermStore.Groups[GroupId].Sets[SetId].Children[TermId].Children[TermId1].Relations[RelationId]]' -Sites :: RemoveMgSiteTermStoreGroupSetChildRelation.g.cs: 'Remove-MgSiteTermStoreGroupSetChildRelation [Sites[SiteId].TermStore.Groups[GroupId].Sets[SetId].Children[TermId].Relations[RelationId]]' collides with already-written 'Remove-MgSiteTermStoreGroupSetChildRelation [Sites[SiteId].TermStore.Groups[GroupId].Sets[SetId].Children[TermId].Children[TermId1].Relations[RelationId]]' -Sites :: NewMgSiteTermStoreSetChild.g.cs: 'New-MgSiteTermStoreSetChild [Sites[SiteId].TermStore.Sets[SetId].Children[TermId].Children]' collides with already-written 'New-MgSiteTermStoreSetChild [Sites[SiteId].TermStore.Sets[SetId].Children]' -Sites :: UpdateMgSiteTermStoreSetChild.g.cs: 'Update-MgSiteTermStoreSetChild [Sites[SiteId].TermStore.Sets[SetId].Children[TermId].Children[TermId1]]' collides with already-written 'Update-MgSiteTermStoreSetChild [Sites[SiteId].TermStore.Sets[SetId].Children[TermId]]' -Sites :: RemoveMgSiteTermStoreSetChild.g.cs: 'Remove-MgSiteTermStoreSetChild [Sites[SiteId].TermStore.Sets[SetId].Children[TermId].Children[TermId1]]' collides with already-written 'Remove-MgSiteTermStoreSetChild [Sites[SiteId].TermStore.Sets[SetId].Children[TermId]]' -Sites :: NewMgSiteTermStoreSetChildRelation.g.cs: 'New-MgSiteTermStoreSetChildRelation [Sites[SiteId].TermStore.Sets[SetId].Children[TermId].Relations]' collides with already-written 'New-MgSiteTermStoreSetChildRelation [Sites[SiteId].TermStore.Sets[SetId].Children[TermId].Children[TermId1].Relations]' -Sites :: UpdateMgSiteTermStoreSetChildRelation.g.cs: 'Update-MgSiteTermStoreSetChildRelation [Sites[SiteId].TermStore.Sets[SetId].Children[TermId].Relations[RelationId]]' collides with already-written 'Update-MgSiteTermStoreSetChildRelation [Sites[SiteId].TermStore.Sets[SetId].Children[TermId].Children[TermId1].Relations[RelationId]]' -Sites :: RemoveMgSiteTermStoreSetChildRelation.g.cs: 'Remove-MgSiteTermStoreSetChildRelation [Sites[SiteId].TermStore.Sets[SetId].Children[TermId].Relations[RelationId]]' collides with already-written 'Remove-MgSiteTermStoreSetChildRelation [Sites[SiteId].TermStore.Sets[SetId].Children[TermId].Children[TermId1].Relations[RelationId]]' -Sites :: NewMgSiteTermStoreSetParentGroupSetChild.g.cs: 'New-MgSiteTermStoreSetParentGroupSetChild [Sites[SiteId].TermStore.Sets[SetId].ParentGroup.Sets[SetId1].Children[TermId].Children]' collides with already-written 'New-MgSiteTermStoreSetParentGroupSetChild [Sites[SiteId].TermStore.Sets[SetId].ParentGroup.Sets[SetId1].Children]' -Sites :: UpdateMgSiteTermStoreSetParentGroupSetChild.g.cs: 'Update-MgSiteTermStoreSetParentGroupSetChild [Sites[SiteId].TermStore.Sets[SetId].ParentGroup.Sets[SetId1].Children[TermId].Children[TermId1]]' collides with already-written 'Update-MgSiteTermStoreSetParentGroupSetChild [Sites[SiteId].TermStore.Sets[SetId].ParentGroup.Sets[SetId1].Children[TermId]]' -Sites :: RemoveMgSiteTermStoreSetParentGroupSetChild.g.cs: 'Remove-MgSiteTermStoreSetParentGroupSetChild [Sites[SiteId].TermStore.Sets[SetId].ParentGroup.Sets[SetId1].Children[TermId].Children[TermId1]]' collides with already-written 'Remove-MgSiteTermStoreSetParentGroupSetChild [Sites[SiteId].TermStore.Sets[SetId].ParentGroup.Sets[SetId1].Children[TermId]]' -Sites :: NewMgSiteTermStoreSetParentGroupSetChildRelation.g.cs: 'New-MgSiteTermStoreSetParentGroupSetChildRelation [Sites[SiteId].TermStore.Sets[SetId].ParentGroup.Sets[SetId1].Children[TermId].Relations]' collides with already-written 'New-MgSiteTermStoreSetParentGroupSetChildRelation [Sites[SiteId].TermStore.Sets[SetId].ParentGroup.Sets[SetId1].Children[TermId].Children[TermId1].Relations]' -Sites :: UpdateMgSiteTermStoreSetParentGroupSetChildRelation.g.cs: 'Update-MgSiteTermStoreSetParentGroupSetChildRelation [Sites[SiteId].TermStore.Sets[SetId].ParentGroup.Sets[SetId1].Children[TermId].Relations[RelationId]]' collides with already-written 'Update-MgSiteTermStoreSetParentGroupSetChildRelation [Sites[SiteId].TermStore.Sets[SetId].ParentGroup.Sets[SetId1].Children[TermId].Children[TermId1].Relations[RelationId]]' -Sites :: RemoveMgSiteTermStoreSetParentGroupSetChildRelation.g.cs: 'Remove-MgSiteTermStoreSetParentGroupSetChildRelation [Sites[SiteId].TermStore.Sets[SetId].ParentGroup.Sets[SetId1].Children[TermId].Relations[RelationId]]' collides with already-written 'Remove-MgSiteTermStoreSetParentGroupSetChildRelation [Sites[SiteId].TermStore.Sets[SetId].ParentGroup.Sets[SetId1].Children[TermId].Children[TermId1].Relations[RelationId]]' -Sites :: GetMgGroupSiteOnenoteNotebookSectionGroup.g.cs: 'Get-MgGroupSiteOnenoteNotebookSectionGroup [Groups[GroupId].Sites[SiteId].Onenote.Notebooks[NotebookId].SectionGroups[SectionGroupId]]' collides with already-written 'Get-MgGroupSiteOnenoteNotebookSectionGroup [Groups[GroupId].Sites[SiteId].Onenote.Notebooks[NotebookId].SectionGroups]' -Sites :: GetMgGroupSiteOnenoteNotebookSectionGroup.g.cs: 'Get-MgGroupSiteOnenoteNotebookSectionGroup [Groups[GroupId].Sites[SiteId].Onenote.Notebooks[NotebookId].SectionGroups[SectionGroupId].SectionGroups]' collides with already-written 'Get-MgGroupSiteOnenoteNotebookSectionGroup [Groups[GroupId].Sites[SiteId].Onenote.Notebooks[NotebookId].SectionGroups]' -Sites :: GetMgGroupSiteOnenoteNotebookSectionGroup.g.cs: 'Get-MgGroupSiteOnenoteNotebookSectionGroup [Groups[GroupId].Sites[SiteId].Onenote.Notebooks[NotebookId].SectionGroups[SectionGroupId].SectionGroups[SectionGroupId1]]' collides with already-written 'Get-MgGroupSiteOnenoteNotebookSectionGroup [Groups[GroupId].Sites[SiteId].Onenote.Notebooks[NotebookId].SectionGroups]' -Sites :: GetMgGroupSiteOnenoteSectionGroup.g.cs: 'Get-MgGroupSiteOnenoteSectionGroup [Groups[GroupId].Sites[SiteId].Onenote.SectionGroups[SectionGroupId]]' collides with already-written 'Get-MgGroupSiteOnenoteSectionGroup [Groups[GroupId].Sites[SiteId].Onenote.SectionGroups]' -Sites :: GetMgGroupSiteOnenoteSectionGroup.g.cs: 'Get-MgGroupSiteOnenoteSectionGroup [Groups[GroupId].Sites[SiteId].Onenote.SectionGroups[SectionGroupId].SectionGroups]' collides with already-written 'Get-MgGroupSiteOnenoteSectionGroup [Groups[GroupId].Sites[SiteId].Onenote.SectionGroups]' -Sites :: GetMgGroupSiteOnenoteSectionGroup.g.cs: 'Get-MgGroupSiteOnenoteSectionGroup [Groups[GroupId].Sites[SiteId].Onenote.SectionGroups[SectionGroupId].SectionGroups[SectionGroupId1]]' collides with already-written 'Get-MgGroupSiteOnenoteSectionGroup [Groups[GroupId].Sites[SiteId].Onenote.SectionGroups]' -Sites :: GetMgGroupSiteTermStoreGroupSetChild.g.cs: 'Get-MgGroupSiteTermStoreGroupSetChild [Groups[GroupId].Sites[SiteId].TermStore.Groups[GroupId1].Sets[SetId].Children[TermId]]' collides with already-written 'Get-MgGroupSiteTermStoreGroupSetChild [Groups[GroupId].Sites[SiteId].TermStore.Groups[GroupId1].Sets[SetId].Children]' -Sites :: GetMgGroupSiteTermStoreGroupSetChild.g.cs: 'Get-MgGroupSiteTermStoreGroupSetChild [Groups[GroupId].Sites[SiteId].TermStore.Groups[GroupId1].Sets[SetId].Children[TermId].Children]' collides with already-written 'Get-MgGroupSiteTermStoreGroupSetChild [Groups[GroupId].Sites[SiteId].TermStore.Groups[GroupId1].Sets[SetId].Children]' -Sites :: GetMgGroupSiteTermStoreGroupSetChild.g.cs: 'Get-MgGroupSiteTermStoreGroupSetChild [Groups[GroupId].Sites[SiteId].TermStore.Groups[GroupId1].Sets[SetId].Children[TermId].Children[TermId1]]' collides with already-written 'Get-MgGroupSiteTermStoreGroupSetChild [Groups[GroupId].Sites[SiteId].TermStore.Groups[GroupId1].Sets[SetId].Children]' -Sites :: GetMgGroupSiteTermStoreGroupSetChildRelation.g.cs: 'Get-MgGroupSiteTermStoreGroupSetChildRelation [Groups[GroupId].Sites[SiteId].TermStore.Groups[GroupId1].Sets[SetId].Children[TermId].Children[TermId1].Relations[RelationId]]' collides with already-written 'Get-MgGroupSiteTermStoreGroupSetChildRelation [Groups[GroupId].Sites[SiteId].TermStore.Groups[GroupId1].Sets[SetId].Children[TermId].Children[TermId1].Relations]' -Sites :: GetMgGroupSiteTermStoreGroupSetChildRelation.g.cs: 'Get-MgGroupSiteTermStoreGroupSetChildRelation [Groups[GroupId].Sites[SiteId].TermStore.Groups[GroupId1].Sets[SetId].Children[TermId].Relations]' collides with already-written 'Get-MgGroupSiteTermStoreGroupSetChildRelation [Groups[GroupId].Sites[SiteId].TermStore.Groups[GroupId1].Sets[SetId].Children[TermId].Children[TermId1].Relations]' -Sites :: GetMgGroupSiteTermStoreGroupSetChildRelation.g.cs: 'Get-MgGroupSiteTermStoreGroupSetChildRelation [Groups[GroupId].Sites[SiteId].TermStore.Groups[GroupId1].Sets[SetId].Children[TermId].Relations[RelationId]]' collides with already-written 'Get-MgGroupSiteTermStoreGroupSetChildRelation [Groups[GroupId].Sites[SiteId].TermStore.Groups[GroupId1].Sets[SetId].Children[TermId].Children[TermId1].Relations]' -Sites :: GetMgGroupSiteTermStoreGroupSetChildRelationFromTerm.g.cs: 'Get-MgGroupSiteTermStoreGroupSetChildRelationFromTerm [Groups[GroupId].Sites[SiteId].TermStore.Groups[GroupId1].Sets[SetId].Children[TermId].Relations[RelationId].FromTerm]' collides with already-written 'Get-MgGroupSiteTermStoreGroupSetChildRelationFromTerm [Groups[GroupId].Sites[SiteId].TermStore.Groups[GroupId1].Sets[SetId].Children[TermId].Children[TermId1].Relations[RelationId].FromTerm]' -Sites :: GetMgGroupSiteTermStoreGroupSetChildRelationSet.g.cs: 'Get-MgGroupSiteTermStoreGroupSetChildRelationSet [Groups[GroupId].Sites[SiteId].TermStore.Groups[GroupId1].Sets[SetId].Children[TermId].Relations[RelationId].Set]' collides with already-written 'Get-MgGroupSiteTermStoreGroupSetChildRelationSet [Groups[GroupId].Sites[SiteId].TermStore.Groups[GroupId1].Sets[SetId].Children[TermId].Children[TermId1].Relations[RelationId].Set]' -Sites :: GetMgGroupSiteTermStoreGroupSetChildRelationToTerm.g.cs: 'Get-MgGroupSiteTermStoreGroupSetChildRelationToTerm [Groups[GroupId].Sites[SiteId].TermStore.Groups[GroupId1].Sets[SetId].Children[TermId].Relations[RelationId].ToTerm]' collides with already-written 'Get-MgGroupSiteTermStoreGroupSetChildRelationToTerm [Groups[GroupId].Sites[SiteId].TermStore.Groups[GroupId1].Sets[SetId].Children[TermId].Children[TermId1].Relations[RelationId].ToTerm]' -Sites :: GetMgGroupSiteTermStoreGroupSetChildSet.g.cs: 'Get-MgGroupSiteTermStoreGroupSetChildSet [Groups[GroupId].Sites[SiteId].TermStore.Groups[GroupId1].Sets[SetId].Children[TermId].Set]' collides with already-written 'Get-MgGroupSiteTermStoreGroupSetChildSet [Groups[GroupId].Sites[SiteId].TermStore.Groups[GroupId1].Sets[SetId].Children[TermId].Children[TermId1].Set]' -Sites :: GetMgGroupSiteTermStoreSetChild.g.cs: 'Get-MgGroupSiteTermStoreSetChild [Groups[GroupId].Sites[SiteId].TermStore.Sets[SetId].Children[TermId]]' collides with already-written 'Get-MgGroupSiteTermStoreSetChild [Groups[GroupId].Sites[SiteId].TermStore.Sets[SetId].Children]' -Sites :: GetMgGroupSiteTermStoreSetChild.g.cs: 'Get-MgGroupSiteTermStoreSetChild [Groups[GroupId].Sites[SiteId].TermStore.Sets[SetId].Children[TermId].Children]' collides with already-written 'Get-MgGroupSiteTermStoreSetChild [Groups[GroupId].Sites[SiteId].TermStore.Sets[SetId].Children]' -Sites :: GetMgGroupSiteTermStoreSetChild.g.cs: 'Get-MgGroupSiteTermStoreSetChild [Groups[GroupId].Sites[SiteId].TermStore.Sets[SetId].Children[TermId].Children[TermId1]]' collides with already-written 'Get-MgGroupSiteTermStoreSetChild [Groups[GroupId].Sites[SiteId].TermStore.Sets[SetId].Children]' -Sites :: GetMgGroupSiteTermStoreSetChildRelation.g.cs: 'Get-MgGroupSiteTermStoreSetChildRelation [Groups[GroupId].Sites[SiteId].TermStore.Sets[SetId].Children[TermId].Children[TermId1].Relations[RelationId]]' collides with already-written 'Get-MgGroupSiteTermStoreSetChildRelation [Groups[GroupId].Sites[SiteId].TermStore.Sets[SetId].Children[TermId].Children[TermId1].Relations]' -Sites :: GetMgGroupSiteTermStoreSetChildRelation.g.cs: 'Get-MgGroupSiteTermStoreSetChildRelation [Groups[GroupId].Sites[SiteId].TermStore.Sets[SetId].Children[TermId].Relations]' collides with already-written 'Get-MgGroupSiteTermStoreSetChildRelation [Groups[GroupId].Sites[SiteId].TermStore.Sets[SetId].Children[TermId].Children[TermId1].Relations]' -Sites :: GetMgGroupSiteTermStoreSetChildRelation.g.cs: 'Get-MgGroupSiteTermStoreSetChildRelation [Groups[GroupId].Sites[SiteId].TermStore.Sets[SetId].Children[TermId].Relations[RelationId]]' collides with already-written 'Get-MgGroupSiteTermStoreSetChildRelation [Groups[GroupId].Sites[SiteId].TermStore.Sets[SetId].Children[TermId].Children[TermId1].Relations]' -Sites :: GetMgGroupSiteTermStoreSetChildRelationFromTerm.g.cs: 'Get-MgGroupSiteTermStoreSetChildRelationFromTerm [Groups[GroupId].Sites[SiteId].TermStore.Sets[SetId].Children[TermId].Relations[RelationId].FromTerm]' collides with already-written 'Get-MgGroupSiteTermStoreSetChildRelationFromTerm [Groups[GroupId].Sites[SiteId].TermStore.Sets[SetId].Children[TermId].Children[TermId1].Relations[RelationId].FromTerm]' -Sites :: GetMgGroupSiteTermStoreSetChildRelationSet.g.cs: 'Get-MgGroupSiteTermStoreSetChildRelationSet [Groups[GroupId].Sites[SiteId].TermStore.Sets[SetId].Children[TermId].Relations[RelationId].Set]' collides with already-written 'Get-MgGroupSiteTermStoreSetChildRelationSet [Groups[GroupId].Sites[SiteId].TermStore.Sets[SetId].Children[TermId].Children[TermId1].Relations[RelationId].Set]' -Sites :: GetMgGroupSiteTermStoreSetChildRelationToTerm.g.cs: 'Get-MgGroupSiteTermStoreSetChildRelationToTerm [Groups[GroupId].Sites[SiteId].TermStore.Sets[SetId].Children[TermId].Relations[RelationId].ToTerm]' collides with already-written 'Get-MgGroupSiteTermStoreSetChildRelationToTerm [Groups[GroupId].Sites[SiteId].TermStore.Sets[SetId].Children[TermId].Children[TermId1].Relations[RelationId].ToTerm]' -Sites :: GetMgGroupSiteTermStoreSetChildSet.g.cs: 'Get-MgGroupSiteTermStoreSetChildSet [Groups[GroupId].Sites[SiteId].TermStore.Sets[SetId].Children[TermId].Set]' collides with already-written 'Get-MgGroupSiteTermStoreSetChildSet [Groups[GroupId].Sites[SiteId].TermStore.Sets[SetId].Children[TermId].Children[TermId1].Set]' -Sites :: GetMgGroupSiteTermStoreSetParentGroupSetChild.g.cs: 'Get-MgGroupSiteTermStoreSetParentGroupSetChild [Groups[GroupId].Sites[SiteId].TermStore.Sets[SetId].ParentGroup.Sets[SetId1].Children[TermId]]' collides with already-written 'Get-MgGroupSiteTermStoreSetParentGroupSetChild [Groups[GroupId].Sites[SiteId].TermStore.Sets[SetId].ParentGroup.Sets[SetId1].Children]' -Sites :: GetMgGroupSiteTermStoreSetParentGroupSetChild.g.cs: 'Get-MgGroupSiteTermStoreSetParentGroupSetChild [Groups[GroupId].Sites[SiteId].TermStore.Sets[SetId].ParentGroup.Sets[SetId1].Children[TermId].Children]' collides with already-written 'Get-MgGroupSiteTermStoreSetParentGroupSetChild [Groups[GroupId].Sites[SiteId].TermStore.Sets[SetId].ParentGroup.Sets[SetId1].Children]' -Sites :: GetMgGroupSiteTermStoreSetParentGroupSetChild.g.cs: 'Get-MgGroupSiteTermStoreSetParentGroupSetChild [Groups[GroupId].Sites[SiteId].TermStore.Sets[SetId].ParentGroup.Sets[SetId1].Children[TermId].Children[TermId1]]' collides with already-written 'Get-MgGroupSiteTermStoreSetParentGroupSetChild [Groups[GroupId].Sites[SiteId].TermStore.Sets[SetId].ParentGroup.Sets[SetId1].Children]' -Sites :: GetMgGroupSiteTermStoreSetParentGroupSetChildRelation.g.cs: 'Get-MgGroupSiteTermStoreSetParentGroupSetChildRelation [Groups[GroupId].Sites[SiteId].TermStore.Sets[SetId].ParentGroup.Sets[SetId1].Children[TermId].Children[TermId1].Relations[RelationId]]' collides with already-written 'Get-MgGroupSiteTermStoreSetParentGroupSetChildRelation [Groups[GroupId].Sites[SiteId].TermStore.Sets[SetId].ParentGroup.Sets[SetId1].Children[TermId].Children[TermId1].Relations]' -Sites :: GetMgGroupSiteTermStoreSetParentGroupSetChildRelation.g.cs: 'Get-MgGroupSiteTermStoreSetParentGroupSetChildRelation [Groups[GroupId].Sites[SiteId].TermStore.Sets[SetId].ParentGroup.Sets[SetId1].Children[TermId].Relations]' collides with already-written 'Get-MgGroupSiteTermStoreSetParentGroupSetChildRelation [Groups[GroupId].Sites[SiteId].TermStore.Sets[SetId].ParentGroup.Sets[SetId1].Children[TermId].Children[TermId1].Relations]' -Sites :: GetMgGroupSiteTermStoreSetParentGroupSetChildRelation.g.cs: 'Get-MgGroupSiteTermStoreSetParentGroupSetChildRelation [Groups[GroupId].Sites[SiteId].TermStore.Sets[SetId].ParentGroup.Sets[SetId1].Children[TermId].Relations[RelationId]]' collides with already-written 'Get-MgGroupSiteTermStoreSetParentGroupSetChildRelation [Groups[GroupId].Sites[SiteId].TermStore.Sets[SetId].ParentGroup.Sets[SetId1].Children[TermId].Children[TermId1].Relations]' -Sites :: GetMgGroupSiteTermStoreSetParentGroupSetChildRelationFromTerm.g.cs: 'Get-MgGroupSiteTermStoreSetParentGroupSetChildRelationFromTerm [Groups[GroupId].Sites[SiteId].TermStore.Sets[SetId].ParentGroup.Sets[SetId1].Children[TermId].Relations[RelationId].FromTerm]' collides with already-written 'Get-MgGroupSiteTermStoreSetParentGroupSetChildRelationFromTerm [Groups[GroupId].Sites[SiteId].TermStore.Sets[SetId].ParentGroup.Sets[SetId1].Children[TermId].Children[TermId1].Relations[RelationId].FromTerm]' -Sites :: GetMgGroupSiteTermStoreSetParentGroupSetChildRelationSet.g.cs: 'Get-MgGroupSiteTermStoreSetParentGroupSetChildRelationSet [Groups[GroupId].Sites[SiteId].TermStore.Sets[SetId].ParentGroup.Sets[SetId1].Children[TermId].Relations[RelationId].Set]' collides with already-written 'Get-MgGroupSiteTermStoreSetParentGroupSetChildRelationSet [Groups[GroupId].Sites[SiteId].TermStore.Sets[SetId].ParentGroup.Sets[SetId1].Children[TermId].Children[TermId1].Relations[RelationId].Set]' -Sites :: GetMgGroupSiteTermStoreSetParentGroupSetChildRelationToTerm.g.cs: 'Get-MgGroupSiteTermStoreSetParentGroupSetChildRelationToTerm [Groups[GroupId].Sites[SiteId].TermStore.Sets[SetId].ParentGroup.Sets[SetId1].Children[TermId].Relations[RelationId].ToTerm]' collides with already-written 'Get-MgGroupSiteTermStoreSetParentGroupSetChildRelationToTerm [Groups[GroupId].Sites[SiteId].TermStore.Sets[SetId].ParentGroup.Sets[SetId1].Children[TermId].Children[TermId1].Relations[RelationId].ToTerm]' -Sites :: GetMgGroupSiteTermStoreSetParentGroupSetChildSet.g.cs: 'Get-MgGroupSiteTermStoreSetParentGroupSetChildSet [Groups[GroupId].Sites[SiteId].TermStore.Sets[SetId].ParentGroup.Sets[SetId1].Children[TermId].Set]' collides with already-written 'Get-MgGroupSiteTermStoreSetParentGroupSetChildSet [Groups[GroupId].Sites[SiteId].TermStore.Sets[SetId].ParentGroup.Sets[SetId1].Children[TermId].Children[TermId1].Set]' -Sites :: GetMgSiteTermStoreGroupSetChild.g.cs: 'Get-MgSiteTermStoreGroupSetChild [Sites[SiteId].TermStore.Groups[GroupId].Sets[SetId].Children[TermId]]' collides with already-written 'Get-MgSiteTermStoreGroupSetChild [Sites[SiteId].TermStore.Groups[GroupId].Sets[SetId].Children]' -Sites :: GetMgSiteTermStoreGroupSetChild.g.cs: 'Get-MgSiteTermStoreGroupSetChild [Sites[SiteId].TermStore.Groups[GroupId].Sets[SetId].Children[TermId].Children]' collides with already-written 'Get-MgSiteTermStoreGroupSetChild [Sites[SiteId].TermStore.Groups[GroupId].Sets[SetId].Children]' -Sites :: GetMgSiteTermStoreGroupSetChild.g.cs: 'Get-MgSiteTermStoreGroupSetChild [Sites[SiteId].TermStore.Groups[GroupId].Sets[SetId].Children[TermId].Children[TermId1]]' collides with already-written 'Get-MgSiteTermStoreGroupSetChild [Sites[SiteId].TermStore.Groups[GroupId].Sets[SetId].Children]' -Sites :: GetMgSiteTermStoreGroupSetChildRelation.g.cs: 'Get-MgSiteTermStoreGroupSetChildRelation [Sites[SiteId].TermStore.Groups[GroupId].Sets[SetId].Children[TermId].Children[TermId1].Relations[RelationId]]' collides with already-written 'Get-MgSiteTermStoreGroupSetChildRelation [Sites[SiteId].TermStore.Groups[GroupId].Sets[SetId].Children[TermId].Children[TermId1].Relations]' -Sites :: GetMgSiteTermStoreGroupSetChildRelation.g.cs: 'Get-MgSiteTermStoreGroupSetChildRelation [Sites[SiteId].TermStore.Groups[GroupId].Sets[SetId].Children[TermId].Relations]' collides with already-written 'Get-MgSiteTermStoreGroupSetChildRelation [Sites[SiteId].TermStore.Groups[GroupId].Sets[SetId].Children[TermId].Children[TermId1].Relations]' -Sites :: GetMgSiteTermStoreGroupSetChildRelation.g.cs: 'Get-MgSiteTermStoreGroupSetChildRelation [Sites[SiteId].TermStore.Groups[GroupId].Sets[SetId].Children[TermId].Relations[RelationId]]' collides with already-written 'Get-MgSiteTermStoreGroupSetChildRelation [Sites[SiteId].TermStore.Groups[GroupId].Sets[SetId].Children[TermId].Children[TermId1].Relations]' -Sites :: GetMgSiteTermStoreGroupSetChildRelationFromTerm.g.cs: 'Get-MgSiteTermStoreGroupSetChildRelationFromTerm [Sites[SiteId].TermStore.Groups[GroupId].Sets[SetId].Children[TermId].Relations[RelationId].FromTerm]' collides with already-written 'Get-MgSiteTermStoreGroupSetChildRelationFromTerm [Sites[SiteId].TermStore.Groups[GroupId].Sets[SetId].Children[TermId].Children[TermId1].Relations[RelationId].FromTerm]' -Sites :: GetMgSiteTermStoreGroupSetChildRelationSet.g.cs: 'Get-MgSiteTermStoreGroupSetChildRelationSet [Sites[SiteId].TermStore.Groups[GroupId].Sets[SetId].Children[TermId].Relations[RelationId].Set]' collides with already-written 'Get-MgSiteTermStoreGroupSetChildRelationSet [Sites[SiteId].TermStore.Groups[GroupId].Sets[SetId].Children[TermId].Children[TermId1].Relations[RelationId].Set]' -Sites :: GetMgSiteTermStoreGroupSetChildRelationToTerm.g.cs: 'Get-MgSiteTermStoreGroupSetChildRelationToTerm [Sites[SiteId].TermStore.Groups[GroupId].Sets[SetId].Children[TermId].Relations[RelationId].ToTerm]' collides with already-written 'Get-MgSiteTermStoreGroupSetChildRelationToTerm [Sites[SiteId].TermStore.Groups[GroupId].Sets[SetId].Children[TermId].Children[TermId1].Relations[RelationId].ToTerm]' -Sites :: GetMgSiteTermStoreGroupSetChildSet.g.cs: 'Get-MgSiteTermStoreGroupSetChildSet [Sites[SiteId].TermStore.Groups[GroupId].Sets[SetId].Children[TermId].Set]' collides with already-written 'Get-MgSiteTermStoreGroupSetChildSet [Sites[SiteId].TermStore.Groups[GroupId].Sets[SetId].Children[TermId].Children[TermId1].Set]' -Sites :: GetMgSiteTermStoreSetChild.g.cs: 'Get-MgSiteTermStoreSetChild [Sites[SiteId].TermStore.Sets[SetId].Children[TermId]]' collides with already-written 'Get-MgSiteTermStoreSetChild [Sites[SiteId].TermStore.Sets[SetId].Children]' -Sites :: GetMgSiteTermStoreSetChild.g.cs: 'Get-MgSiteTermStoreSetChild [Sites[SiteId].TermStore.Sets[SetId].Children[TermId].Children]' collides with already-written 'Get-MgSiteTermStoreSetChild [Sites[SiteId].TermStore.Sets[SetId].Children]' -Sites :: GetMgSiteTermStoreSetChild.g.cs: 'Get-MgSiteTermStoreSetChild [Sites[SiteId].TermStore.Sets[SetId].Children[TermId].Children[TermId1]]' collides with already-written 'Get-MgSiteTermStoreSetChild [Sites[SiteId].TermStore.Sets[SetId].Children]' -Sites :: GetMgSiteTermStoreSetChildRelation.g.cs: 'Get-MgSiteTermStoreSetChildRelation [Sites[SiteId].TermStore.Sets[SetId].Children[TermId].Children[TermId1].Relations[RelationId]]' collides with already-written 'Get-MgSiteTermStoreSetChildRelation [Sites[SiteId].TermStore.Sets[SetId].Children[TermId].Children[TermId1].Relations]' -Sites :: GetMgSiteTermStoreSetChildRelation.g.cs: 'Get-MgSiteTermStoreSetChildRelation [Sites[SiteId].TermStore.Sets[SetId].Children[TermId].Relations]' collides with already-written 'Get-MgSiteTermStoreSetChildRelation [Sites[SiteId].TermStore.Sets[SetId].Children[TermId].Children[TermId1].Relations]' -Sites :: GetMgSiteTermStoreSetChildRelation.g.cs: 'Get-MgSiteTermStoreSetChildRelation [Sites[SiteId].TermStore.Sets[SetId].Children[TermId].Relations[RelationId]]' collides with already-written 'Get-MgSiteTermStoreSetChildRelation [Sites[SiteId].TermStore.Sets[SetId].Children[TermId].Children[TermId1].Relations]' -Sites :: GetMgSiteTermStoreSetChildRelationFromTerm.g.cs: 'Get-MgSiteTermStoreSetChildRelationFromTerm [Sites[SiteId].TermStore.Sets[SetId].Children[TermId].Relations[RelationId].FromTerm]' collides with already-written 'Get-MgSiteTermStoreSetChildRelationFromTerm [Sites[SiteId].TermStore.Sets[SetId].Children[TermId].Children[TermId1].Relations[RelationId].FromTerm]' -Sites :: GetMgSiteTermStoreSetChildRelationSet.g.cs: 'Get-MgSiteTermStoreSetChildRelationSet [Sites[SiteId].TermStore.Sets[SetId].Children[TermId].Relations[RelationId].Set]' collides with already-written 'Get-MgSiteTermStoreSetChildRelationSet [Sites[SiteId].TermStore.Sets[SetId].Children[TermId].Children[TermId1].Relations[RelationId].Set]' -Sites :: GetMgSiteTermStoreSetChildRelationToTerm.g.cs: 'Get-MgSiteTermStoreSetChildRelationToTerm [Sites[SiteId].TermStore.Sets[SetId].Children[TermId].Relations[RelationId].ToTerm]' collides with already-written 'Get-MgSiteTermStoreSetChildRelationToTerm [Sites[SiteId].TermStore.Sets[SetId].Children[TermId].Children[TermId1].Relations[RelationId].ToTerm]' -Sites :: GetMgSiteTermStoreSetChildSet.g.cs: 'Get-MgSiteTermStoreSetChildSet [Sites[SiteId].TermStore.Sets[SetId].Children[TermId].Set]' collides with already-written 'Get-MgSiteTermStoreSetChildSet [Sites[SiteId].TermStore.Sets[SetId].Children[TermId].Children[TermId1].Set]' -Sites :: GetMgSiteTermStoreSetParentGroupSetChild.g.cs: 'Get-MgSiteTermStoreSetParentGroupSetChild [Sites[SiteId].TermStore.Sets[SetId].ParentGroup.Sets[SetId1].Children[TermId]]' collides with already-written 'Get-MgSiteTermStoreSetParentGroupSetChild [Sites[SiteId].TermStore.Sets[SetId].ParentGroup.Sets[SetId1].Children]' -Sites :: GetMgSiteTermStoreSetParentGroupSetChild.g.cs: 'Get-MgSiteTermStoreSetParentGroupSetChild [Sites[SiteId].TermStore.Sets[SetId].ParentGroup.Sets[SetId1].Children[TermId].Children]' collides with already-written 'Get-MgSiteTermStoreSetParentGroupSetChild [Sites[SiteId].TermStore.Sets[SetId].ParentGroup.Sets[SetId1].Children]' -Sites :: GetMgSiteTermStoreSetParentGroupSetChild.g.cs: 'Get-MgSiteTermStoreSetParentGroupSetChild [Sites[SiteId].TermStore.Sets[SetId].ParentGroup.Sets[SetId1].Children[TermId].Children[TermId1]]' collides with already-written 'Get-MgSiteTermStoreSetParentGroupSetChild [Sites[SiteId].TermStore.Sets[SetId].ParentGroup.Sets[SetId1].Children]' -Sites :: GetMgSiteTermStoreSetParentGroupSetChildRelation.g.cs: 'Get-MgSiteTermStoreSetParentGroupSetChildRelation [Sites[SiteId].TermStore.Sets[SetId].ParentGroup.Sets[SetId1].Children[TermId].Children[TermId1].Relations[RelationId]]' collides with already-written 'Get-MgSiteTermStoreSetParentGroupSetChildRelation [Sites[SiteId].TermStore.Sets[SetId].ParentGroup.Sets[SetId1].Children[TermId].Children[TermId1].Relations]' -Sites :: GetMgSiteTermStoreSetParentGroupSetChildRelation.g.cs: 'Get-MgSiteTermStoreSetParentGroupSetChildRelation [Sites[SiteId].TermStore.Sets[SetId].ParentGroup.Sets[SetId1].Children[TermId].Relations]' collides with already-written 'Get-MgSiteTermStoreSetParentGroupSetChildRelation [Sites[SiteId].TermStore.Sets[SetId].ParentGroup.Sets[SetId1].Children[TermId].Children[TermId1].Relations]' -Sites :: GetMgSiteTermStoreSetParentGroupSetChildRelation.g.cs: 'Get-MgSiteTermStoreSetParentGroupSetChildRelation [Sites[SiteId].TermStore.Sets[SetId].ParentGroup.Sets[SetId1].Children[TermId].Relations[RelationId]]' collides with already-written 'Get-MgSiteTermStoreSetParentGroupSetChildRelation [Sites[SiteId].TermStore.Sets[SetId].ParentGroup.Sets[SetId1].Children[TermId].Children[TermId1].Relations]' -Sites :: GetMgSiteTermStoreSetParentGroupSetChildRelationFromTerm.g.cs: 'Get-MgSiteTermStoreSetParentGroupSetChildRelationFromTerm [Sites[SiteId].TermStore.Sets[SetId].ParentGroup.Sets[SetId1].Children[TermId].Relations[RelationId].FromTerm]' collides with already-written 'Get-MgSiteTermStoreSetParentGroupSetChildRelationFromTerm [Sites[SiteId].TermStore.Sets[SetId].ParentGroup.Sets[SetId1].Children[TermId].Children[TermId1].Relations[RelationId].FromTerm]' -Sites :: GetMgSiteTermStoreSetParentGroupSetChildRelationSet.g.cs: 'Get-MgSiteTermStoreSetParentGroupSetChildRelationSet [Sites[SiteId].TermStore.Sets[SetId].ParentGroup.Sets[SetId1].Children[TermId].Relations[RelationId].Set]' collides with already-written 'Get-MgSiteTermStoreSetParentGroupSetChildRelationSet [Sites[SiteId].TermStore.Sets[SetId].ParentGroup.Sets[SetId1].Children[TermId].Children[TermId1].Relations[RelationId].Set]' -Sites :: GetMgSiteTermStoreSetParentGroupSetChildRelationToTerm.g.cs: 'Get-MgSiteTermStoreSetParentGroupSetChildRelationToTerm [Sites[SiteId].TermStore.Sets[SetId].ParentGroup.Sets[SetId1].Children[TermId].Relations[RelationId].ToTerm]' collides with already-written 'Get-MgSiteTermStoreSetParentGroupSetChildRelationToTerm [Sites[SiteId].TermStore.Sets[SetId].ParentGroup.Sets[SetId1].Children[TermId].Children[TermId1].Relations[RelationId].ToTerm]' -Sites :: GetMgSiteTermStoreSetParentGroupSetChildSet.g.cs: 'Get-MgSiteTermStoreSetParentGroupSetChildSet [Sites[SiteId].TermStore.Sets[SetId].ParentGroup.Sets[SetId1].Children[TermId].Set]' collides with already-written 'Get-MgSiteTermStoreSetParentGroupSetChildSet [Sites[SiteId].TermStore.Sets[SetId].ParentGroup.Sets[SetId1].Children[TermId].Children[TermId1].Set]' +Applications :: RemoveMgApplicationAppManagementPolicyByRef.g.cs: 'Remove-MgApplicationAppManagementPolicyByRef [/applications/{}/appmanagementpolicies/$ref]' collides with already-written 'Remove-MgApplicationAppManagementPolicyByRef [/applications/{}/appmanagementpolicies/{}/$ref]' +Applications :: RemoveMgApplicationOwnerByRef.g.cs: 'Remove-MgApplicationOwnerByRef [/applications/{}/owners/$ref]' collides with already-written 'Remove-MgApplicationOwnerByRef [/applications/{}/owners/{}/$ref]' +Applications :: InvokeMgApplicationSynchronizationJobValidateCredentials.g.cs: 'Invoke-MgApplicationSynchronizationJobValidateCredentials [/applications/{}/synchronization/jobs/validatecredentials]' collides with already-written 'Invoke-MgApplicationSynchronizationJobValidateCredentials [/applications/{}/synchronization/jobs/{}/validatecredentials]' +Applications :: RemoveMgApplicationTokenIssuancePolicyByRef.g.cs: 'Remove-MgApplicationTokenIssuancePolicyByRef [/applications/{}/tokenissuancepolicies/$ref]' collides with already-written 'Remove-MgApplicationTokenIssuancePolicyByRef [/applications/{}/tokenissuancepolicies/{}/$ref]' +Applications :: RemoveMgApplicationTokenLifetimePolicyByRef.g.cs: 'Remove-MgApplicationTokenLifetimePolicyByRef [/applications/{}/tokenlifetimepolicies/$ref]' collides with already-written 'Remove-MgApplicationTokenLifetimePolicyByRef [/applications/{}/tokenlifetimepolicies/{}/$ref]' +Applications :: RemoveMgServicePrincipalClaimMappingPolicyByRef.g.cs: 'Remove-MgServicePrincipalClaimMappingPolicyByRef [/serviceprincipals/{}/claimsmappingpolicies/$ref]' collides with already-written 'Remove-MgServicePrincipalClaimMappingPolicyByRef [/serviceprincipals/{}/claimsmappingpolicies/{}/$ref]' +Applications :: RemoveMgServicePrincipalHomeRealmDiscoveryPolicyByRef.g.cs: 'Remove-MgServicePrincipalHomeRealmDiscoveryPolicyByRef [/serviceprincipals/{}/homerealmdiscoverypolicies/$ref]' collides with already-written 'Remove-MgServicePrincipalHomeRealmDiscoveryPolicyByRef [/serviceprincipals/{}/homerealmdiscoverypolicies/{}/$ref]' +Applications :: RemoveMgServicePrincipalOwnerByRef.g.cs: 'Remove-MgServicePrincipalOwnerByRef [/serviceprincipals/{}/owners/$ref]' collides with already-written 'Remove-MgServicePrincipalOwnerByRef [/serviceprincipals/{}/owners/{}/$ref]' +Applications :: InvokeMgServicePrincipalSynchronizationJobValidateCredentials.g.cs: 'Invoke-MgServicePrincipalSynchronizationJobValidateCredentials [/serviceprincipals/{}/synchronization/jobs/validatecredentials]' collides with already-written 'Invoke-MgServicePrincipalSynchronizationJobValidateCredentials [/serviceprincipals/{}/synchronization/jobs/{}/validatecredentials]' +Applications :: RemoveMgServicePrincipalTokenIssuancePolicyByRef.g.cs: 'Remove-MgServicePrincipalTokenIssuancePolicyByRef [/serviceprincipals/{}/tokenissuancepolicies/$ref]' collides with already-written 'Remove-MgServicePrincipalTokenIssuancePolicyByRef [/serviceprincipals/{}/tokenissuancepolicies/{}/$ref]' +Applications :: RemoveMgServicePrincipalTokenLifetimePolicyByRef.g.cs: 'Remove-MgServicePrincipalTokenLifetimePolicyByRef [/serviceprincipals/{}/tokenlifetimepolicies/$ref]' collides with already-written 'Remove-MgServicePrincipalTokenLifetimePolicyByRef [/serviceprincipals/{}/tokenlifetimepolicies/{}/$ref]' +Calendar :: GetMgGroupCalendarViewDelta.g.cs: 'Get-MgGroupCalendarViewDelta [/groups/{}/calendarview/delta]' collides with already-written 'Get-MgGroupCalendarViewDelta [/groups/{}/calendar/calendarview/delta]' +Calendar :: GetMgUserCalendarViewDelta.g.cs: 'Get-MgUserCalendarViewDelta [/users/{}/calendars/{}/calendarview/delta]' collides with already-written 'Get-MgUserCalendarViewDelta [/users/{}/calendar/calendarview/delta]' +Calendar :: GetMgUserCalendarEventCount.g.cs: 'Get-MgUserCalendarEventCount [/users/{}/calendars/{}/events/$count]' collides with already-written 'Get-MgUserCalendarEventCount [/users/{}/calendar/events/$count]' +Calendar :: GetMgUserCalendarEventDelta.g.cs: 'Get-MgUserCalendarEventDelta [/users/{}/calendars/{}/events/delta]' collides with already-written 'Get-MgUserCalendarEventDelta [/users/{}/calendar/events/delta]' +Calendar :: GetMgUserCalendarAllowedCalendarSharingRolesWithUser.g.cs: 'Get-MgUserCalendarAllowedCalendarSharingRolesWithUser [/users/{}/calendars/{}/allowedcalendarsharingroles(user='{}')]' collides with already-written 'Get-MgUserCalendarAllowedCalendarSharingRolesWithUser [/users/{}/calendar/allowedcalendarsharingroles(user='{}')]' +Calendar :: InvokeMgUserCalendarGetSchedule.g.cs: 'Invoke-MgUserCalendarGetSchedule [/users/{}/calendars/{}/getschedule]' collides with already-written 'Invoke-MgUserCalendarGetSchedule [/users/{}/calendar/getschedule]' +Calendar :: InvokeMgUserCalendarPermanentDelete.g.cs: 'Invoke-MgUserCalendarPermanentDelete [/users/{}/calendars/{}/permanentdelete]' collides with already-written 'Invoke-MgUserCalendarPermanentDelete [/users/{}/calendar/permanentdelete]' +Calendar :: GetMgUserCalendarViewDelta.g.cs: 'Get-MgUserCalendarViewDelta [/users/{}/calendarview/delta]' collides with already-written 'Get-MgUserCalendarViewDelta [/users/{}/calendar/calendarview/delta]' +Calendar :: GetMgGroupCalendarView.g.cs: 'Get-MgGroupCalendarView [/groups/{}/calendarview]' collides with already-written 'Get-MgGroupCalendarView [/groups/{}/calendar/calendarview]' +Calendar :: GetMgUserCalendarView.g.cs: 'Get-MgUserCalendarView [/users/{}/calendars/{}/calendarview]' collides with already-written 'Get-MgUserCalendarView [/users/{}/calendar/calendarview]' +Calendar :: GetMgUserCalendarView.g.cs: 'Get-MgUserCalendarView [/users/{}/calendarview]' collides with already-written 'Get-MgUserCalendarView [/users/{}/calendar/calendarview]' +Devices.CloudPrint :: RemoveMgPrintShareAllowedGroupByRef.g.cs: 'Remove-MgPrintShareAllowedGroupByRef [/print/shares/{}/allowedgroups/$ref]' collides with already-written 'Remove-MgPrintShareAllowedGroupByRef [/print/shares/{}/allowedgroups/{}/$ref]' +Devices.CloudPrint :: RemoveMgPrintShareAllowedUserByRef.g.cs: 'Remove-MgPrintShareAllowedUserByRef [/print/shares/{}/allowedusers/$ref]' collides with already-written 'Remove-MgPrintShareAllowedUserByRef [/print/shares/{}/allowedusers/{}/$ref]' +Education :: GetMgEducationClassAssignmentCategoryCount.g.cs: 'Get-MgEducationClassAssignmentCategoryCount [/education/classes/{}/assignments/{}/categories/$count]' collides with already-written 'Get-MgEducationClassAssignmentCategoryCount [/education/classes/{}/assignmentcategories/$count]' +Education :: RemoveMgEducationClassAssignmentCategoryByRef.g.cs: 'Remove-MgEducationClassAssignmentCategoryByRef [/education/classes/{}/assignments/{}/categories/$ref]' collides with already-written 'Remove-MgEducationClassAssignmentCategoryByRef [/education/classes/{}/assignments/{}/categories/{}/$ref]' +Education :: GetMgEducationClassAssignmentCategoryDelta.g.cs: 'Get-MgEducationClassAssignmentCategoryDelta [/education/classes/{}/assignments/{}/categories/delta]' collides with already-written 'Get-MgEducationClassAssignmentCategoryDelta [/education/classes/{}/assignmentcategories/delta]' +Education :: RemoveMgEducationClassMemberByRef.g.cs: 'Remove-MgEducationClassMemberByRef [/education/classes/{}/members/$ref]' collides with already-written 'Remove-MgEducationClassMemberByRef [/education/classes/{}/members/{}/$ref]' +Education :: RemoveMgEducationClassTeacherByRef.g.cs: 'Remove-MgEducationClassTeacherByRef [/education/classes/{}/teachers/$ref]' collides with already-written 'Remove-MgEducationClassTeacherByRef [/education/classes/{}/teachers/{}/$ref]' +Education :: RemoveMgEducationMeAssignmentCategoryByRef.g.cs: 'Remove-MgEducationMeAssignmentCategoryByRef [/education/me/assignments/{}/categories/$ref]' collides with already-written 'Remove-MgEducationMeAssignmentCategoryByRef [/education/me/assignments/{}/categories/{}/$ref]' +Education :: RemoveMgEducationSchoolClassByRef.g.cs: 'Remove-MgEducationSchoolClassByRef [/education/schools/{}/classes/$ref]' collides with already-written 'Remove-MgEducationSchoolClassByRef [/education/schools/{}/classes/{}/$ref]' +Education :: RemoveMgEducationSchoolUserByRef.g.cs: 'Remove-MgEducationSchoolUserByRef [/education/schools/{}/users/$ref]' collides with already-written 'Remove-MgEducationSchoolUserByRef [/education/schools/{}/users/{}/$ref]' +Education :: RemoveMgEducationUserAssignmentCategoryByRef.g.cs: 'Remove-MgEducationUserAssignmentCategoryByRef [/education/users/{}/assignments/{}/categories/$ref]' collides with already-written 'Remove-MgEducationUserAssignmentCategoryByRef [/education/users/{}/assignments/{}/categories/{}/$ref]' +Files :: GetMgShareListItem.g.cs: 'Get-MgShareListItem [/shares/{}/listitem]' collides with already-written 'Get-MgShareListItem [/shares/{}/list/items]' +Groups :: RemoveMgGroupAcceptedSenderByRef.g.cs: 'Remove-MgGroupAcceptedSenderByRef [/groups/{}/acceptedsenders/$ref]' collides with already-written 'Remove-MgGroupAcceptedSenderByRef [/groups/{}/acceptedsenders/{}/$ref]' +Groups :: NewMgGroupLifecyclePolicy.g.cs: 'New-MgGroupLifecyclePolicy [/groups/{}/grouplifecyclepolicies]' collides with already-written 'New-MgGroupLifecyclePolicy [/grouplifecyclepolicies]' +Groups :: RemoveMgGroupMemberByRef.g.cs: 'Remove-MgGroupMemberByRef [/groups/{}/members/$ref]' collides with already-written 'Remove-MgGroupMemberByRef [/groups/{}/members/{}/$ref]' +Groups :: RemoveMgGroupOwnerByRef.g.cs: 'Remove-MgGroupOwnerByRef [/groups/{}/owners/$ref]' collides with already-written 'Remove-MgGroupOwnerByRef [/groups/{}/owners/{}/$ref]' +Groups :: GetMgGroupPhotoContent.g.cs: 'Get-MgGroupPhotoContent [/groups/{}/photos/{}/$value]' collides with already-written 'Get-MgGroupPhotoContent [/groups/{}/photo/$value]' +Groups :: RemoveMgGroupPhotoContent.g.cs: 'Remove-MgGroupPhotoContent [/groups/{}/photos/{}/$value]' collides with already-written 'Remove-MgGroupPhotoContent [/groups/{}/photo/$value]' +Groups :: RemoveMgGroupRejectedSenderByRef.g.cs: 'Remove-MgGroupRejectedSenderByRef [/groups/{}/rejectedsenders/$ref]' collides with already-written 'Remove-MgGroupRejectedSenderByRef [/groups/{}/rejectedsenders/{}/$ref]' +Groups :: InvokeMgGroupValidateProperties.g.cs: 'Invoke-MgGroupValidateProperties [/groups/validateproperties]' collides with already-written 'Invoke-MgGroupValidateProperties [/groups/{}/validateproperties]' +Groups :: NewMgGroupSetting.g.cs: 'New-MgGroupSetting [/groupsettings]' collides with already-written 'New-MgGroupSetting [/groups/{}/settings]' +Groups :: UpdateMgGroupSetting.g.cs: 'Update-MgGroupSetting [/groupsettings/{}]' collides with already-written 'Update-MgGroupSetting [/groups/{}/settings/{}]' +Groups :: RemoveMgGroupSetting.g.cs: 'Remove-MgGroupSetting [/groupsettings/{}]' collides with already-written 'Remove-MgGroupSetting [/groups/{}/settings/{}]' +Groups :: GetMgGroupSettingCount.g.cs: 'Get-MgGroupSettingCount [/groupsettings/$count]' collides with already-written 'Get-MgGroupSettingCount [/groups/{}/settings/$count]' +Groups :: GetMgGroupPhoto.g.cs: 'Get-MgGroupPhoto [/groups/{}/photos]' collides with already-written 'Get-MgGroupPhoto [/groups/{}/photo]' +Groups :: GetMgGroupSetting.g.cs: 'Get-MgGroupSetting [/groups/{}/settings/{}]' collides with already-written 'Get-MgGroupSetting [/groups/{}/settings]' +Groups :: GetMgGroupSetting.g.cs: 'Get-MgGroupSetting [/groupsettings]' collides with already-written 'Get-MgGroupSetting [/groups/{}/settings]' +Groups :: GetMgGroupSetting.g.cs: 'Get-MgGroupSetting [/groupsettings/{}]' collides with already-written 'Get-MgGroupSetting [/groups/{}/settings]' +Identity.DirectoryManagement :: RemoveMgDeviceRegisteredOwnerByRef.g.cs: 'Remove-MgDeviceRegisteredOwnerByRef [/devices/{}/registeredowners/$ref]' collides with already-written 'Remove-MgDeviceRegisteredOwnerByRef [/devices/{}/registeredowners/{}/$ref]' +Identity.DirectoryManagement :: RemoveMgDeviceRegisteredUserByRef.g.cs: 'Remove-MgDeviceRegisteredUserByRef [/devices/{}/registeredusers/$ref]' collides with already-written 'Remove-MgDeviceRegisteredUserByRef [/devices/{}/registeredusers/{}/$ref]' +Identity.DirectoryManagement :: RemoveMgDirectoryAdministrativeUnitMemberByRef.g.cs: 'Remove-MgDirectoryAdministrativeUnitMemberByRef [/directory/administrativeunits/{}/members/$ref]' collides with already-written 'Remove-MgDirectoryAdministrativeUnitMemberByRef [/directory/administrativeunits/{}/members/{}/$ref]' +Identity.DirectoryManagement :: RemoveMgDirectoryRoleMemberByRef.g.cs: 'Remove-MgDirectoryRoleMemberByRef [/directoryroles/{}/members/$ref]' collides with already-written 'Remove-MgDirectoryRoleMemberByRef [/directoryroles/{}/members/{}/$ref]' +Identity.Governance :: RemoveMgIdentityGovernanceEntitlementManagementAccessPackageIncompatibleAccessPackageByRef.g.cs: 'Remove-MgIdentityGovernanceEntitlementManagementAccessPackageIncompatibleAccessPackageByRef [/identitygovernance/entitlementmanagement/accesspackages/{}/incompatibleaccesspackages/$ref]' collides with already-written 'Remove-MgIdentityGovernanceEntitlementManagementAccessPackageIncompatibleAccessPackageByRef [/identitygovernance/entitlementmanagement/accesspackages/{}/incompatibleaccesspackages/{}/$ref]' +Identity.Governance :: RemoveMgIdentityGovernanceEntitlementManagementAccessPackageIncompatibleGroupByRef.g.cs: 'Remove-MgIdentityGovernanceEntitlementManagementAccessPackageIncompatibleGroupByRef [/identitygovernance/entitlementmanagement/accesspackages/{}/incompatiblegroups/$ref]' collides with already-written 'Remove-MgIdentityGovernanceEntitlementManagementAccessPackageIncompatibleGroupByRef [/identitygovernance/entitlementmanagement/accesspackages/{}/incompatiblegroups/{}/$ref]' +Identity.Governance :: NewMgIdentityGovernanceEntitlementManagementCatalogResourceRole.g.cs: 'New-MgIdentityGovernanceEntitlementManagementCatalogResourceRole [/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles]' collides with already-written 'New-MgIdentityGovernanceEntitlementManagementCatalogResourceRole [/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles]' +Identity.Governance :: UpdateMgIdentityGovernanceEntitlementManagementCatalogResourceRole.g.cs: 'Update-MgIdentityGovernanceEntitlementManagementCatalogResourceRole [/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}]' collides with already-written 'Update-MgIdentityGovernanceEntitlementManagementCatalogResourceRole [/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}]' +Identity.Governance :: RemoveMgIdentityGovernanceEntitlementManagementCatalogResourceRole.g.cs: 'Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceRole [/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}]' collides with already-written 'Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceRole [/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}]' +Identity.Governance :: UpdateMgIdentityGovernanceEntitlementManagementCatalogResourceRoleResource.g.cs: 'Update-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResource [/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource]' collides with already-written 'Update-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResource [/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource]' +Identity.Governance :: RemoveMgIdentityGovernanceEntitlementManagementCatalogResourceRoleResource.g.cs: 'Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResource [/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource]' collides with already-written 'Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResource [/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource]' +Identity.Governance :: InvokeMgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceRefresh.g.cs: 'Invoke-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceRefresh [/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource/refresh]' collides with already-written 'Invoke-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceRefresh [/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/refresh]' +Identity.Governance :: NewMgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScope.g.cs: 'New-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScope [/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource/scopes]' collides with already-written 'New-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScope [/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes]' +Identity.Governance :: UpdateMgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScope.g.cs: 'Update-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScope [/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource/scopes/{}]' collides with already-written 'Update-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScope [/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes/{}]' +Identity.Governance :: RemoveMgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScope.g.cs: 'Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScope [/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource/scopes/{}]' collides with already-written 'Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScope [/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes/{}]' +Identity.Governance :: UpdateMgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResource.g.cs: 'Update-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResource [/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource/scopes/{}/resource]' collides with already-written 'Update-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResource [/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes/{}/resource]' +Identity.Governance :: RemoveMgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResource.g.cs: 'Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResource [/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource/scopes/{}/resource]' collides with already-written 'Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResource [/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes/{}/resource]' +Identity.Governance :: InvokeMgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResourceRefresh.g.cs: 'Invoke-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResourceRefresh [/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource/scopes/{}/resource/refresh]' collides with already-written 'Invoke-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResourceRefresh [/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes/{}/resource/refresh]' +Identity.Governance :: GetMgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeCount.g.cs: 'Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeCount [/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource/scopes/$count]' collides with already-written 'Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeCount [/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes/$count]' +Identity.Governance :: GetMgIdentityGovernanceEntitlementManagementCatalogResourceRoleCount.g.cs: 'Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleCount [/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/$count]' collides with already-written 'Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleCount [/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/$count]' +Identity.Governance :: NewMgIdentityGovernanceEntitlementManagementCatalogResourceScope.g.cs: 'New-MgIdentityGovernanceEntitlementManagementCatalogResourceScope [/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes]' collides with already-written 'New-MgIdentityGovernanceEntitlementManagementCatalogResourceScope [/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes]' +Identity.Governance :: UpdateMgIdentityGovernanceEntitlementManagementCatalogResourceScope.g.cs: 'Update-MgIdentityGovernanceEntitlementManagementCatalogResourceScope [/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}]' collides with already-written 'Update-MgIdentityGovernanceEntitlementManagementCatalogResourceScope [/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}]' +Identity.Governance :: RemoveMgIdentityGovernanceEntitlementManagementCatalogResourceScope.g.cs: 'Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceScope [/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}]' collides with already-written 'Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceScope [/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}]' +Identity.Governance :: UpdateMgIdentityGovernanceEntitlementManagementCatalogResourceScopeResource.g.cs: 'Update-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResource [/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource]' collides with already-written 'Update-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResource [/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource]' +Identity.Governance :: RemoveMgIdentityGovernanceEntitlementManagementCatalogResourceScopeResource.g.cs: 'Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResource [/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource]' collides with already-written 'Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResource [/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource]' +Identity.Governance :: InvokeMgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRefresh.g.cs: 'Invoke-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRefresh [/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/refresh]' collides with already-written 'Invoke-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRefresh [/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/refresh]' +Identity.Governance :: NewMgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRole.g.cs: 'New-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRole [/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/roles]' collides with already-written 'New-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRole [/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles]' +Identity.Governance :: UpdateMgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRole.g.cs: 'Update-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRole [/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/roles/{}]' collides with already-written 'Update-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRole [/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles/{}]' +Identity.Governance :: RemoveMgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRole.g.cs: 'Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRole [/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/roles/{}]' collides with already-written 'Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRole [/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles/{}]' +Identity.Governance :: UpdateMgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResource.g.cs: 'Update-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResource [/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/roles/{}/resource]' collides with already-written 'Update-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResource [/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles/{}/resource]' +Identity.Governance :: RemoveMgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResource.g.cs: 'Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResource [/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/roles/{}/resource]' collides with already-written 'Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResource [/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles/{}/resource]' +Identity.Governance :: InvokeMgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResourceRefresh.g.cs: 'Invoke-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResourceRefresh [/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/roles/{}/resource/refresh]' collides with already-written 'Invoke-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResourceRefresh [/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles/{}/resource/refresh]' +Identity.Governance :: GetMgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleCount.g.cs: 'Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleCount [/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/roles/$count]' collides with already-written 'Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleCount [/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles/$count]' +Identity.Governance :: GetMgIdentityGovernanceEntitlementManagementCatalogResourceScopeCount.g.cs: 'Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeCount [/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/$count]' collides with already-written 'Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeCount [/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/$count]' +Identity.Governance :: RemoveMgIdentityGovernanceEntitlementManagementConnectedOrganizationExternalSponsorByRef.g.cs: 'Remove-MgIdentityGovernanceEntitlementManagementConnectedOrganizationExternalSponsorByRef [/identitygovernance/entitlementmanagement/connectedorganizations/{}/externalsponsors/$ref]' collides with already-written 'Remove-MgIdentityGovernanceEntitlementManagementConnectedOrganizationExternalSponsorByRef [/identitygovernance/entitlementmanagement/connectedorganizations/{}/externalsponsors/{}/$ref]' +Identity.Governance :: RemoveMgIdentityGovernanceEntitlementManagementConnectedOrganizationInternalSponsorByRef.g.cs: 'Remove-MgIdentityGovernanceEntitlementManagementConnectedOrganizationInternalSponsorByRef [/identitygovernance/entitlementmanagement/connectedorganizations/{}/internalsponsors/$ref]' collides with already-written 'Remove-MgIdentityGovernanceEntitlementManagementConnectedOrganizationInternalSponsorByRef [/identitygovernance/entitlementmanagement/connectedorganizations/{}/internalsponsors/{}/$ref]' +Identity.Governance :: NewMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRole.g.cs: 'New-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRole [/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles]' collides with already-written 'New-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRole [/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles]' +Identity.Governance :: UpdateMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRole.g.cs: 'Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRole [/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}]' collides with already-written 'Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRole [/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}]' +Identity.Governance :: RemoveMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRole.g.cs: 'Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRole [/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}]' collides with already-written 'Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRole [/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}]' +Identity.Governance :: UpdateMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResource.g.cs: 'Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResource [/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource]' collides with already-written 'Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResource [/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource]' +Identity.Governance :: RemoveMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResource.g.cs: 'Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResource [/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource]' collides with already-written 'Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResource [/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource]' +Identity.Governance :: InvokeMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceRefresh.g.cs: 'Invoke-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceRefresh [/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource/refresh]' collides with already-written 'Invoke-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceRefresh [/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/refresh]' +Identity.Governance :: NewMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScope.g.cs: 'New-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScope [/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource/scopes]' collides with already-written 'New-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScope [/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes]' +Identity.Governance :: UpdateMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScope.g.cs: 'Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScope [/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource/scopes/{}]' collides with already-written 'Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScope [/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes/{}]' +Identity.Governance :: RemoveMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScope.g.cs: 'Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScope [/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource/scopes/{}]' collides with already-written 'Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScope [/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes/{}]' +Identity.Governance :: UpdateMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResource.g.cs: 'Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResource [/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource/scopes/{}/resource]' collides with already-written 'Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResource [/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes/{}/resource]' +Identity.Governance :: RemoveMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResource.g.cs: 'Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResource [/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource/scopes/{}/resource]' collides with already-written 'Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResource [/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes/{}/resource]' +Identity.Governance :: InvokeMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRefresh.g.cs: 'Invoke-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRefresh [/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource/scopes/{}/resource/refresh]' collides with already-written 'Invoke-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRefresh [/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes/{}/resource/refresh]' +Identity.Governance :: GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeCount.g.cs: 'Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeCount [/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource/scopes/$count]' collides with already-written 'Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeCount [/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes/$count]' +Identity.Governance :: GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleCount.g.cs: 'Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleCount [/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/$count]' collides with already-written 'Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleCount [/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/$count]' +Identity.Governance :: NewMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScope.g.cs: 'New-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScope [/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes]' collides with already-written 'New-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScope [/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes]' +Identity.Governance :: UpdateMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScope.g.cs: 'Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScope [/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}]' collides with already-written 'Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScope [/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}]' +Identity.Governance :: RemoveMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScope.g.cs: 'Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScope [/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}]' collides with already-written 'Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScope [/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}]' +Identity.Governance :: UpdateMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResource.g.cs: 'Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResource [/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource]' collides with already-written 'Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResource [/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource]' +Identity.Governance :: RemoveMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResource.g.cs: 'Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResource [/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource]' collides with already-written 'Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResource [/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource]' +Identity.Governance :: InvokeMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRefresh.g.cs: 'Invoke-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRefresh [/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/refresh]' collides with already-written 'Invoke-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRefresh [/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/refresh]' +Identity.Governance :: NewMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRole.g.cs: 'New-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRole [/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/roles]' collides with already-written 'New-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRole [/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles]' +Identity.Governance :: UpdateMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRole.g.cs: 'Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRole [/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/roles/{}]' collides with already-written 'Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRole [/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles/{}]' +Identity.Governance :: RemoveMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRole.g.cs: 'Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRole [/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/roles/{}]' collides with already-written 'Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRole [/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles/{}]' +Identity.Governance :: UpdateMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResource.g.cs: 'Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResource [/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/roles/{}/resource]' collides with already-written 'Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResource [/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles/{}/resource]' +Identity.Governance :: RemoveMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResource.g.cs: 'Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResource [/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/roles/{}/resource]' collides with already-written 'Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResource [/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles/{}/resource]' +Identity.Governance :: InvokeMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceRefresh.g.cs: 'Invoke-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceRefresh [/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/roles/{}/resource/refresh]' collides with already-written 'Invoke-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceRefresh [/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles/{}/resource/refresh]' +Identity.Governance :: GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleCount.g.cs: 'Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleCount [/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/roles/$count]' collides with already-written 'Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleCount [/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles/$count]' +Identity.Governance :: GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeCount.g.cs: 'Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeCount [/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/$count]' collides with already-written 'Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeCount [/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/$count]' +Identity.Governance :: GetMgIdentityGovernanceEntitlementManagementCatalogResourceRole.g.cs: 'Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRole [/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}]' collides with already-written 'Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRole [/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles]' +Identity.Governance :: GetMgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScope.g.cs: 'Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScope [/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes/{}]' collides with already-written 'Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScope [/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes]' +Identity.Governance :: GetMgIdentityGovernanceEntitlementManagementCatalogResourceRole.g.cs: 'Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRole [/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles]' collides with already-written 'Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRole [/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles]' +Identity.Governance :: GetMgIdentityGovernanceEntitlementManagementCatalogResourceRole.g.cs: 'Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRole [/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}]' collides with already-written 'Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRole [/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles]' +Identity.Governance :: GetMgIdentityGovernanceEntitlementManagementCatalogResourceRoleResource.g.cs: 'Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResource [/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource]' collides with already-written 'Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResource [/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource]' +Identity.Governance :: GetMgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceEnvironment.g.cs: 'Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceEnvironment [/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource/environment]' collides with already-written 'Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceEnvironment [/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/environment]' +Identity.Governance :: GetMgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScope.g.cs: 'Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScope [/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource/scopes]' collides with already-written 'Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScope [/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes]' +Identity.Governance :: GetMgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScope.g.cs: 'Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScope [/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource/scopes/{}]' collides with already-written 'Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScope [/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes]' +Identity.Governance :: GetMgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResource.g.cs: 'Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResource [/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource/scopes/{}/resource]' collides with already-written 'Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResource [/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes/{}/resource]' +Identity.Governance :: GetMgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResourceEnvironment.g.cs: 'Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResourceEnvironment [/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource/scopes/{}/resource/environment]' collides with already-written 'Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResourceEnvironment [/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes/{}/resource/environment]' +Identity.Governance :: GetMgIdentityGovernanceEntitlementManagementCatalogResourceScope.g.cs: 'Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScope [/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}]' collides with already-written 'Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScope [/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes]' +Identity.Governance :: GetMgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRole.g.cs: 'Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRole [/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles/{}]' collides with already-written 'Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRole [/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles]' +Identity.Governance :: GetMgIdentityGovernanceEntitlementManagementCatalogResourceScope.g.cs: 'Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScope [/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes]' collides with already-written 'Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScope [/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes]' +Identity.Governance :: GetMgIdentityGovernanceEntitlementManagementCatalogResourceScope.g.cs: 'Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScope [/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}]' collides with already-written 'Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScope [/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes]' +Identity.Governance :: GetMgIdentityGovernanceEntitlementManagementCatalogResourceScopeResource.g.cs: 'Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResource [/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource]' collides with already-written 'Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResource [/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource]' +Identity.Governance :: GetMgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceEnvironment.g.cs: 'Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceEnvironment [/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/environment]' collides with already-written 'Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceEnvironment [/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/environment]' +Identity.Governance :: GetMgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRole.g.cs: 'Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRole [/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/roles]' collides with already-written 'Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRole [/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles]' +Identity.Governance :: GetMgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRole.g.cs: 'Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRole [/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/roles/{}]' collides with already-written 'Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRole [/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles]' +Identity.Governance :: GetMgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResource.g.cs: 'Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResource [/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/roles/{}/resource]' collides with already-written 'Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResource [/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles/{}/resource]' +Identity.Governance :: GetMgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResourceEnvironment.g.cs: 'Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResourceEnvironment [/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/roles/{}/resource/environment]' collides with already-written 'Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResourceEnvironment [/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles/{}/resource/environment]' +Identity.Governance :: GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRole.g.cs: 'Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRole [/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}]' collides with already-written 'Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRole [/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles]' +Identity.Governance :: GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScope.g.cs: 'Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScope [/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes/{}]' collides with already-written 'Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScope [/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes]' +Identity.Governance :: GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRole.g.cs: 'Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRole [/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles]' collides with already-written 'Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRole [/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles]' +Identity.Governance :: GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRole.g.cs: 'Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRole [/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}]' collides with already-written 'Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRole [/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles]' +Identity.Governance :: GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResource.g.cs: 'Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResource [/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource]' collides with already-written 'Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResource [/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource]' +Identity.Governance :: GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceEnvironment.g.cs: 'Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceEnvironment [/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource/environment]' collides with already-written 'Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceEnvironment [/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/environment]' +Identity.Governance :: GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScope.g.cs: 'Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScope [/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource/scopes]' collides with already-written 'Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScope [/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes]' +Identity.Governance :: GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScope.g.cs: 'Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScope [/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource/scopes/{}]' collides with already-written 'Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScope [/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes]' +Identity.Governance :: GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResource.g.cs: 'Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResource [/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource/scopes/{}/resource]' collides with already-written 'Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResource [/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes/{}/resource]' +Identity.Governance :: GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceEnvironment.g.cs: 'Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceEnvironment [/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource/scopes/{}/resource/environment]' collides with already-written 'Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceEnvironment [/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes/{}/resource/environment]' +Identity.Governance :: GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScope.g.cs: 'Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScope [/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}]' collides with already-written 'Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScope [/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes]' +Identity.Governance :: GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRole.g.cs: 'Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRole [/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles/{}]' collides with already-written 'Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRole [/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles]' +Identity.Governance :: GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScope.g.cs: 'Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScope [/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes]' collides with already-written 'Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScope [/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes]' +Identity.Governance :: GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScope.g.cs: 'Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScope [/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}]' collides with already-written 'Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScope [/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes]' +Identity.Governance :: GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResource.g.cs: 'Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResource [/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource]' collides with already-written 'Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResource [/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource]' +Identity.Governance :: GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceEnvironment.g.cs: 'Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceEnvironment [/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/environment]' collides with already-written 'Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceEnvironment [/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/environment]' +Identity.Governance :: GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRole.g.cs: 'Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRole [/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/roles]' collides with already-written 'Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRole [/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles]' +Identity.Governance :: GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRole.g.cs: 'Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRole [/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/roles/{}]' collides with already-written 'Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRole [/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles]' +Identity.Governance :: GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResource.g.cs: 'Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResource [/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/roles/{}/resource]' collides with already-written 'Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResource [/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles/{}/resource]' +Identity.Governance :: GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceEnvironment.g.cs: 'Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceEnvironment [/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/roles/{}/resource/environment]' collides with already-written 'Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceEnvironment [/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles/{}/resource/environment]' +Identity.SignIns :: RemoveMgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowOnAttributeCollectionAsOnAttributeCollectionExternalUserSelfServiceSignUpAttributeByRef.g.cs: 'Remove-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowOnAttributeCollectionAsOnAttributeCollectionExternalUserSelfServiceSignUpAttributeByRef [/identity/authenticationeventsflows/{}/graph.externalusersselfservicesignupeventsflow/onattributecollection/graph.onattributecollectionexternalusersselfservicesignup/attributes/$ref]' collides with already-written 'Remove-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowOnAttributeCollectionAsOnAttributeCollectionExternalUserSelfServiceSignUpAttributeByRef [/identity/authenticationeventsflows/{}/graph.externalusersselfservicesignupeventsflow/onattributecollection/graph.onattributecollectionexternalusersselfservicesignup/attributes/{}/$ref]' +Identity.SignIns :: RemoveMgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowOnAuthenticationMethodLoadStartAsOnAuthenticationMethodLoadStartExternalUserSelfServiceSignUpIdentityProviderByRef.g.cs: 'Remove-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowOnAuthenticationMethodLoadStartAsOnAuthenticationMethodLoadStartExternalUserSelfServiceSignUpIdentityProviderByRef [/identity/authenticationeventsflows/{}/graph.externalusersselfservicesignupeventsflow/onauthenticationmethodloadstart/graph.onauthenticationmethodloadstartexternalusersselfservicesignup/identityproviders/$ref]' collides with already-written 'Remove-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowOnAuthenticationMethodLoadStartAsOnAuthenticationMethodLoadStartExternalUserSelfServiceSignUpIdentityProviderByRef [/identity/authenticationeventsflows/{}/graph.externalusersselfservicesignupeventsflow/onauthenticationmethodloadstart/graph.onauthenticationmethodloadstartexternalusersselfservicesignup/identityproviders/{}/$ref]' +Identity.SignIns :: RemoveMgIdentityB2xUserFlowUserFlowIdentityProviderByRef.g.cs: 'Remove-MgIdentityB2xUserFlowUserFlowIdentityProviderByRef [/identity/b2xuserflows/{}/userflowidentityproviders/$ref]' collides with already-written 'Remove-MgIdentityB2xUserFlowUserFlowIdentityProviderByRef [/identity/b2xuserflows/{}/userflowidentityproviders/{}/$ref]' +Identity.SignIns :: InvokeMgIdentityCustomAuthenticationExtensionValidateAuthenticationConfiguration.g.cs: 'Invoke-MgIdentityCustomAuthenticationExtensionValidateAuthenticationConfiguration [/identity/customauthenticationextensions/validateauthenticationconfiguration]' collides with already-written 'Invoke-MgIdentityCustomAuthenticationExtensionValidateAuthenticationConfiguration [/identity/customauthenticationextensions/{}/validateauthenticationconfiguration]' +Identity.SignIns :: RemoveMgPolicyFeatureRolloutPolicyApplyToByRef.g.cs: 'Remove-MgPolicyFeatureRolloutPolicyApplyToByRef [/policies/featurerolloutpolicies/{}/appliesto/$ref]' collides with already-written 'Remove-MgPolicyFeatureRolloutPolicyApplyToByRef [/policies/featurerolloutpolicies/{}/appliesto/{}/$ref]' +Notes :: GetMgGroupOnenoteNotebookSectionGroupCount.g.cs: 'Get-MgGroupOnenoteNotebookSectionGroupCount [/groups/{}/onenote/notebooks/{}/sectiongroups/$count]' collides with already-written 'Get-MgGroupOnenoteNotebookSectionGroupCount [/groups/{}/onenote/notebooks/{}/sectiongroups/{}/sectiongroups/$count]' +Notes :: GetMgGroupOnenoteSectionGroupCount.g.cs: 'Get-MgGroupOnenoteSectionGroupCount [/groups/{}/onenote/sectiongroups/$count]' collides with already-written 'Get-MgGroupOnenoteSectionGroupCount [/groups/{}/onenote/sectiongroups/{}/sectiongroups/$count]' +Notes :: GetMgSiteOnenoteNotebookSectionGroupCount.g.cs: 'Get-MgSiteOnenoteNotebookSectionGroupCount [/sites/{}/onenote/notebooks/{}/sectiongroups/$count]' collides with already-written 'Get-MgSiteOnenoteNotebookSectionGroupCount [/sites/{}/onenote/notebooks/{}/sectiongroups/{}/sectiongroups/$count]' +Notes :: GetMgSiteOnenoteSectionGroupCount.g.cs: 'Get-MgSiteOnenoteSectionGroupCount [/sites/{}/onenote/sectiongroups/$count]' collides with already-written 'Get-MgSiteOnenoteSectionGroupCount [/sites/{}/onenote/sectiongroups/{}/sectiongroups/$count]' +Notes :: GetMgUserOnenoteNotebookSectionGroupCount.g.cs: 'Get-MgUserOnenoteNotebookSectionGroupCount [/users/{}/onenote/notebooks/{}/sectiongroups/$count]' collides with already-written 'Get-MgUserOnenoteNotebookSectionGroupCount [/users/{}/onenote/notebooks/{}/sectiongroups/{}/sectiongroups/$count]' +Notes :: GetMgUserOnenoteSectionGroupCount.g.cs: 'Get-MgUserOnenoteSectionGroupCount [/users/{}/onenote/sectiongroups/$count]' collides with already-written 'Get-MgUserOnenoteSectionGroupCount [/users/{}/onenote/sectiongroups/{}/sectiongroups/$count]' +Notes :: GetMgGroupOnenoteNotebookSectionGroup.g.cs: 'Get-MgGroupOnenoteNotebookSectionGroup [/groups/{}/onenote/notebooks/{}/sectiongroups/{}]' collides with already-written 'Get-MgGroupOnenoteNotebookSectionGroup [/groups/{}/onenote/notebooks/{}/sectiongroups]' +Notes :: GetMgGroupOnenoteNotebookSectionGroup.g.cs: 'Get-MgGroupOnenoteNotebookSectionGroup [/groups/{}/onenote/notebooks/{}/sectiongroups/{}/sectiongroups]' collides with already-written 'Get-MgGroupOnenoteNotebookSectionGroup [/groups/{}/onenote/notebooks/{}/sectiongroups]' +Notes :: GetMgGroupOnenoteNotebookSectionGroup.g.cs: 'Get-MgGroupOnenoteNotebookSectionGroup [/groups/{}/onenote/notebooks/{}/sectiongroups/{}/sectiongroups/{}]' collides with already-written 'Get-MgGroupOnenoteNotebookSectionGroup [/groups/{}/onenote/notebooks/{}/sectiongroups]' +Notes :: GetMgGroupOnenoteSectionGroup.g.cs: 'Get-MgGroupOnenoteSectionGroup [/groups/{}/onenote/sectiongroups/{}]' collides with already-written 'Get-MgGroupOnenoteSectionGroup [/groups/{}/onenote/sectiongroups]' +Notes :: GetMgGroupOnenoteSectionGroup.g.cs: 'Get-MgGroupOnenoteSectionGroup [/groups/{}/onenote/sectiongroups/{}/sectiongroups]' collides with already-written 'Get-MgGroupOnenoteSectionGroup [/groups/{}/onenote/sectiongroups]' +Notes :: GetMgGroupOnenoteSectionGroup.g.cs: 'Get-MgGroupOnenoteSectionGroup [/groups/{}/onenote/sectiongroups/{}/sectiongroups/{}]' collides with already-written 'Get-MgGroupOnenoteSectionGroup [/groups/{}/onenote/sectiongroups]' +Notes :: GetMgSiteOnenoteNotebookSectionGroup.g.cs: 'Get-MgSiteOnenoteNotebookSectionGroup [/sites/{}/onenote/notebooks/{}/sectiongroups/{}]' collides with already-written 'Get-MgSiteOnenoteNotebookSectionGroup [/sites/{}/onenote/notebooks/{}/sectiongroups]' +Notes :: GetMgSiteOnenoteNotebookSectionGroup.g.cs: 'Get-MgSiteOnenoteNotebookSectionGroup [/sites/{}/onenote/notebooks/{}/sectiongroups/{}/sectiongroups]' collides with already-written 'Get-MgSiteOnenoteNotebookSectionGroup [/sites/{}/onenote/notebooks/{}/sectiongroups]' +Notes :: GetMgSiteOnenoteNotebookSectionGroup.g.cs: 'Get-MgSiteOnenoteNotebookSectionGroup [/sites/{}/onenote/notebooks/{}/sectiongroups/{}/sectiongroups/{}]' collides with already-written 'Get-MgSiteOnenoteNotebookSectionGroup [/sites/{}/onenote/notebooks/{}/sectiongroups]' +Notes :: GetMgSiteOnenoteSectionGroup.g.cs: 'Get-MgSiteOnenoteSectionGroup [/sites/{}/onenote/sectiongroups/{}]' collides with already-written 'Get-MgSiteOnenoteSectionGroup [/sites/{}/onenote/sectiongroups]' +Notes :: GetMgSiteOnenoteSectionGroup.g.cs: 'Get-MgSiteOnenoteSectionGroup [/sites/{}/onenote/sectiongroups/{}/sectiongroups]' collides with already-written 'Get-MgSiteOnenoteSectionGroup [/sites/{}/onenote/sectiongroups]' +Notes :: GetMgSiteOnenoteSectionGroup.g.cs: 'Get-MgSiteOnenoteSectionGroup [/sites/{}/onenote/sectiongroups/{}/sectiongroups/{}]' collides with already-written 'Get-MgSiteOnenoteSectionGroup [/sites/{}/onenote/sectiongroups]' +Notes :: GetMgUserOnenoteNotebookSectionGroup.g.cs: 'Get-MgUserOnenoteNotebookSectionGroup [/users/{}/onenote/notebooks/{}/sectiongroups/{}]' collides with already-written 'Get-MgUserOnenoteNotebookSectionGroup [/users/{}/onenote/notebooks/{}/sectiongroups]' +Notes :: GetMgUserOnenoteNotebookSectionGroup.g.cs: 'Get-MgUserOnenoteNotebookSectionGroup [/users/{}/onenote/notebooks/{}/sectiongroups/{}/sectiongroups]' collides with already-written 'Get-MgUserOnenoteNotebookSectionGroup [/users/{}/onenote/notebooks/{}/sectiongroups]' +Notes :: GetMgUserOnenoteNotebookSectionGroup.g.cs: 'Get-MgUserOnenoteNotebookSectionGroup [/users/{}/onenote/notebooks/{}/sectiongroups/{}/sectiongroups/{}]' collides with already-written 'Get-MgUserOnenoteNotebookSectionGroup [/users/{}/onenote/notebooks/{}/sectiongroups]' +Notes :: GetMgUserOnenoteSectionGroup.g.cs: 'Get-MgUserOnenoteSectionGroup [/users/{}/onenote/sectiongroups/{}]' collides with already-written 'Get-MgUserOnenoteSectionGroup [/users/{}/onenote/sectiongroups]' +Notes :: GetMgUserOnenoteSectionGroup.g.cs: 'Get-MgUserOnenoteSectionGroup [/users/{}/onenote/sectiongroups/{}/sectiongroups]' collides with already-written 'Get-MgUserOnenoteSectionGroup [/users/{}/onenote/sectiongroups]' +Notes :: GetMgUserOnenoteSectionGroup.g.cs: 'Get-MgUserOnenoteSectionGroup [/users/{}/onenote/sectiongroups/{}/sectiongroups/{}]' collides with already-written 'Get-MgUserOnenoteSectionGroup [/users/{}/onenote/sectiongroups]' +Security :: InvokeMgSecurityCaseEdiscoveryCaseCustodianApplyHold.g.cs: 'Invoke-MgSecurityCaseEdiscoveryCaseCustodianApplyHold [/security/cases/ediscoverycases/{}/custodians/microsoft.graph.security.applyhold]' collides with already-written 'Invoke-MgSecurityCaseEdiscoveryCaseCustodianApplyHold [/security/cases/ediscoverycases/{}/custodians/{}/microsoft.graph.security.applyhold]' +Security :: InvokeMgSecurityCaseEdiscoveryCaseCustodianRemoveHold.g.cs: 'Invoke-MgSecurityCaseEdiscoveryCaseCustodianRemoveHold [/security/cases/ediscoverycases/{}/custodians/microsoft.graph.security.removehold]' collides with already-written 'Invoke-MgSecurityCaseEdiscoveryCaseCustodianRemoveHold [/security/cases/ediscoverycases/{}/custodians/{}/microsoft.graph.security.removehold]' +Security :: InvokeMgSecurityCaseEdiscoveryCaseNoncustodialDataSourceApplyHold.g.cs: 'Invoke-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceApplyHold [/security/cases/ediscoverycases/{}/noncustodialdatasources/microsoft.graph.security.applyhold]' collides with already-written 'Invoke-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceApplyHold [/security/cases/ediscoverycases/{}/noncustodialdatasources/{}/microsoft.graph.security.applyhold]' +Security :: InvokeMgSecurityCaseEdiscoveryCaseNoncustodialDataSourceRemoveHold.g.cs: 'Invoke-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceRemoveHold [/security/cases/ediscoverycases/{}/noncustodialdatasources/microsoft.graph.security.removehold]' collides with already-written 'Invoke-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceRemoveHold [/security/cases/ediscoverycases/{}/noncustodialdatasources/{}/microsoft.graph.security.removehold]' +Security :: GetMgSecurityThreatIntelligenceArticleIndicatorCount.g.cs: 'Get-MgSecurityThreatIntelligenceArticleIndicatorCount [/security/threatintelligence/articles/{}/indicators/$count]' collides with already-written 'Get-MgSecurityThreatIntelligenceArticleIndicatorCount [/security/threatintelligence/articleindicators/$count]' +Security :: GetMgSecurityThreatIntelligenceHostComponentCount.g.cs: 'Get-MgSecurityThreatIntelligenceHostComponentCount [/security/threatintelligence/hosts/{}/components/$count]' collides with already-written 'Get-MgSecurityThreatIntelligenceHostComponentCount [/security/threatintelligence/hostcomponents/$count]' +Security :: GetMgSecurityThreatIntelligenceHostCookieCount.g.cs: 'Get-MgSecurityThreatIntelligenceHostCookieCount [/security/threatintelligence/hosts/{}/cookies/$count]' collides with already-written 'Get-MgSecurityThreatIntelligenceHostCookieCount [/security/threatintelligence/hostcookies/$count]' +Security :: GetMgSecurityThreatIntelligenceHostPairCount.g.cs: 'Get-MgSecurityThreatIntelligenceHostPairCount [/security/threatintelligence/hosts/{}/hostpairs/$count]' collides with already-written 'Get-MgSecurityThreatIntelligenceHostPairCount [/security/threatintelligence/hostpairs/$count]' +Security :: GetMgSecurityThreatIntelligenceHostPortCount.g.cs: 'Get-MgSecurityThreatIntelligenceHostPortCount [/security/threatintelligence/hosts/{}/ports/$count]' collides with already-written 'Get-MgSecurityThreatIntelligenceHostPortCount [/security/threatintelligence/hostports/$count]' +Security :: GetMgSecurityThreatIntelligenceHostSslCertificateCount.g.cs: 'Get-MgSecurityThreatIntelligenceHostSslCertificateCount [/security/threatintelligence/hostsslcertificates/$count]' collides with already-written 'Get-MgSecurityThreatIntelligenceHostSslCertificateCount [/security/threatintelligence/hosts/{}/sslcertificates/$count]' +Security :: GetMgSecurityThreatIntelligenceHostTrackerCount.g.cs: 'Get-MgSecurityThreatIntelligenceHostTrackerCount [/security/threatintelligence/hosttrackers/$count]' collides with already-written 'Get-MgSecurityThreatIntelligenceHostTrackerCount [/security/threatintelligence/hosts/{}/trackers/$count]' +Sites :: GetMgGroupSiteOnenoteNotebookSectionGroupCount.g.cs: 'Get-MgGroupSiteOnenoteNotebookSectionGroupCount [/groups/{}/sites/{}/onenote/notebooks/{}/sectiongroups/$count]' collides with already-written 'Get-MgGroupSiteOnenoteNotebookSectionGroupCount [/groups/{}/sites/{}/onenote/notebooks/{}/sectiongroups/{}/sectiongroups/$count]' +Sites :: GetMgGroupSiteOnenoteSectionGroupCount.g.cs: 'Get-MgGroupSiteOnenoteSectionGroupCount [/groups/{}/sites/{}/onenote/sectiongroups/$count]' collides with already-written 'Get-MgGroupSiteOnenoteSectionGroupCount [/groups/{}/sites/{}/onenote/sectiongroups/{}/sectiongroups/$count]' +Sites :: NewMgGroupSiteTermStoreGroupSetChild.g.cs: 'New-MgGroupSiteTermStoreGroupSetChild [/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/children]' collides with already-written 'New-MgGroupSiteTermStoreGroupSetChild [/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children]' +Sites :: UpdateMgGroupSiteTermStoreGroupSetChild.g.cs: 'Update-MgGroupSiteTermStoreGroupSetChild [/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}]' collides with already-written 'Update-MgGroupSiteTermStoreGroupSetChild [/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}]' +Sites :: RemoveMgGroupSiteTermStoreGroupSetChild.g.cs: 'Remove-MgGroupSiteTermStoreGroupSetChild [/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}]' collides with already-written 'Remove-MgGroupSiteTermStoreGroupSetChild [/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}]' +Sites :: NewMgGroupSiteTermStoreGroupSetChildRelation.g.cs: 'New-MgGroupSiteTermStoreGroupSetChildRelation [/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations]' collides with already-written 'New-MgGroupSiteTermStoreGroupSetChildRelation [/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations]' +Sites :: UpdateMgGroupSiteTermStoreGroupSetChildRelation.g.cs: 'Update-MgGroupSiteTermStoreGroupSetChildRelation [/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations/{}]' collides with already-written 'Update-MgGroupSiteTermStoreGroupSetChildRelation [/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations/{}]' +Sites :: RemoveMgGroupSiteTermStoreGroupSetChildRelation.g.cs: 'Remove-MgGroupSiteTermStoreGroupSetChildRelation [/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations/{}]' collides with already-written 'Remove-MgGroupSiteTermStoreGroupSetChildRelation [/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations/{}]' +Sites :: GetMgGroupSiteTermStoreGroupSetChildRelationCount.g.cs: 'Get-MgGroupSiteTermStoreGroupSetChildRelationCount [/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations/$count]' collides with already-written 'Get-MgGroupSiteTermStoreGroupSetChildRelationCount [/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations/$count]' +Sites :: GetMgGroupSiteTermStoreGroupSetChildCount.g.cs: 'Get-MgGroupSiteTermStoreGroupSetChildCount [/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/$count]' collides with already-written 'Get-MgGroupSiteTermStoreGroupSetChildCount [/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/$count]' +Sites :: NewMgGroupSiteTermStoreSetChild.g.cs: 'New-MgGroupSiteTermStoreSetChild [/groups/{}/sites/{}/termstore/sets/{}/children/{}/children]' collides with already-written 'New-MgGroupSiteTermStoreSetChild [/groups/{}/sites/{}/termstore/sets/{}/children]' +Sites :: UpdateMgGroupSiteTermStoreSetChild.g.cs: 'Update-MgGroupSiteTermStoreSetChild [/groups/{}/sites/{}/termstore/sets/{}/children/{}/children/{}]' collides with already-written 'Update-MgGroupSiteTermStoreSetChild [/groups/{}/sites/{}/termstore/sets/{}/children/{}]' +Sites :: RemoveMgGroupSiteTermStoreSetChild.g.cs: 'Remove-MgGroupSiteTermStoreSetChild [/groups/{}/sites/{}/termstore/sets/{}/children/{}/children/{}]' collides with already-written 'Remove-MgGroupSiteTermStoreSetChild [/groups/{}/sites/{}/termstore/sets/{}/children/{}]' +Sites :: NewMgGroupSiteTermStoreSetChildRelation.g.cs: 'New-MgGroupSiteTermStoreSetChildRelation [/groups/{}/sites/{}/termstore/sets/{}/children/{}/relations]' collides with already-written 'New-MgGroupSiteTermStoreSetChildRelation [/groups/{}/sites/{}/termstore/sets/{}/children/{}/children/{}/relations]' +Sites :: UpdateMgGroupSiteTermStoreSetChildRelation.g.cs: 'Update-MgGroupSiteTermStoreSetChildRelation [/groups/{}/sites/{}/termstore/sets/{}/children/{}/relations/{}]' collides with already-written 'Update-MgGroupSiteTermStoreSetChildRelation [/groups/{}/sites/{}/termstore/sets/{}/children/{}/children/{}/relations/{}]' +Sites :: RemoveMgGroupSiteTermStoreSetChildRelation.g.cs: 'Remove-MgGroupSiteTermStoreSetChildRelation [/groups/{}/sites/{}/termstore/sets/{}/children/{}/relations/{}]' collides with already-written 'Remove-MgGroupSiteTermStoreSetChildRelation [/groups/{}/sites/{}/termstore/sets/{}/children/{}/children/{}/relations/{}]' +Sites :: GetMgGroupSiteTermStoreSetChildRelationCount.g.cs: 'Get-MgGroupSiteTermStoreSetChildRelationCount [/groups/{}/sites/{}/termstore/sets/{}/children/{}/relations/$count]' collides with already-written 'Get-MgGroupSiteTermStoreSetChildRelationCount [/groups/{}/sites/{}/termstore/sets/{}/children/{}/children/{}/relations/$count]' +Sites :: GetMgGroupSiteTermStoreSetChildCount.g.cs: 'Get-MgGroupSiteTermStoreSetChildCount [/groups/{}/sites/{}/termstore/sets/{}/children/$count]' collides with already-written 'Get-MgGroupSiteTermStoreSetChildCount [/groups/{}/sites/{}/termstore/sets/{}/children/{}/children/$count]' +Sites :: NewMgGroupSiteTermStoreSetParentGroupSetChild.g.cs: 'New-MgGroupSiteTermStoreSetParentGroupSetChild [/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children]' collides with already-written 'New-MgGroupSiteTermStoreSetParentGroupSetChild [/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children]' +Sites :: UpdateMgGroupSiteTermStoreSetParentGroupSetChild.g.cs: 'Update-MgGroupSiteTermStoreSetParentGroupSetChild [/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}]' collides with already-written 'Update-MgGroupSiteTermStoreSetParentGroupSetChild [/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}]' +Sites :: RemoveMgGroupSiteTermStoreSetParentGroupSetChild.g.cs: 'Remove-MgGroupSiteTermStoreSetParentGroupSetChild [/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}]' collides with already-written 'Remove-MgGroupSiteTermStoreSetParentGroupSetChild [/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}]' +Sites :: NewMgGroupSiteTermStoreSetParentGroupSetChildRelation.g.cs: 'New-MgGroupSiteTermStoreSetParentGroupSetChildRelation [/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations]' collides with already-written 'New-MgGroupSiteTermStoreSetParentGroupSetChildRelation [/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations]' +Sites :: UpdateMgGroupSiteTermStoreSetParentGroupSetChildRelation.g.cs: 'Update-MgGroupSiteTermStoreSetParentGroupSetChildRelation [/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations/{}]' collides with already-written 'Update-MgGroupSiteTermStoreSetParentGroupSetChildRelation [/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations/{}]' +Sites :: RemoveMgGroupSiteTermStoreSetParentGroupSetChildRelation.g.cs: 'Remove-MgGroupSiteTermStoreSetParentGroupSetChildRelation [/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations/{}]' collides with already-written 'Remove-MgGroupSiteTermStoreSetParentGroupSetChildRelation [/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations/{}]' +Sites :: GetMgGroupSiteTermStoreSetParentGroupSetChildRelationCount.g.cs: 'Get-MgGroupSiteTermStoreSetParentGroupSetChildRelationCount [/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations/$count]' collides with already-written 'Get-MgGroupSiteTermStoreSetParentGroupSetChildRelationCount [/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations/$count]' +Sites :: GetMgGroupSiteTermStoreSetParentGroupSetChildCount.g.cs: 'Get-MgGroupSiteTermStoreSetParentGroupSetChildCount [/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/$count]' collides with already-written 'Get-MgGroupSiteTermStoreSetParentGroupSetChildCount [/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/$count]' +Sites :: GetMgGroupSiteCount.g.cs: 'Get-MgGroupSiteCount [/groups/{}/sites/$count]' collides with already-written 'Get-MgGroupSiteCount [/groups/{}/sites/{}/sites/$count]' +Sites :: NewMgSiteTermStoreGroupSetChild.g.cs: 'New-MgSiteTermStoreGroupSetChild [/sites/{}/termstore/groups/{}/sets/{}/children/{}/children]' collides with already-written 'New-MgSiteTermStoreGroupSetChild [/sites/{}/termstore/groups/{}/sets/{}/children]' +Sites :: UpdateMgSiteTermStoreGroupSetChild.g.cs: 'Update-MgSiteTermStoreGroupSetChild [/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}]' collides with already-written 'Update-MgSiteTermStoreGroupSetChild [/sites/{}/termstore/groups/{}/sets/{}/children/{}]' +Sites :: RemoveMgSiteTermStoreGroupSetChild.g.cs: 'Remove-MgSiteTermStoreGroupSetChild [/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}]' collides with already-written 'Remove-MgSiteTermStoreGroupSetChild [/sites/{}/termstore/groups/{}/sets/{}/children/{}]' +Sites :: NewMgSiteTermStoreGroupSetChildRelation.g.cs: 'New-MgSiteTermStoreGroupSetChildRelation [/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations]' collides with already-written 'New-MgSiteTermStoreGroupSetChildRelation [/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations]' +Sites :: UpdateMgSiteTermStoreGroupSetChildRelation.g.cs: 'Update-MgSiteTermStoreGroupSetChildRelation [/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations/{}]' collides with already-written 'Update-MgSiteTermStoreGroupSetChildRelation [/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations/{}]' +Sites :: RemoveMgSiteTermStoreGroupSetChildRelation.g.cs: 'Remove-MgSiteTermStoreGroupSetChildRelation [/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations/{}]' collides with already-written 'Remove-MgSiteTermStoreGroupSetChildRelation [/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations/{}]' +Sites :: GetMgSiteTermStoreGroupSetChildRelationCount.g.cs: 'Get-MgSiteTermStoreGroupSetChildRelationCount [/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations/$count]' collides with already-written 'Get-MgSiteTermStoreGroupSetChildRelationCount [/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations/$count]' +Sites :: GetMgSiteTermStoreGroupSetChildCount.g.cs: 'Get-MgSiteTermStoreGroupSetChildCount [/sites/{}/termstore/groups/{}/sets/{}/children/$count]' collides with already-written 'Get-MgSiteTermStoreGroupSetChildCount [/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/$count]' +Sites :: NewMgSiteTermStoreSetChild.g.cs: 'New-MgSiteTermStoreSetChild [/sites/{}/termstore/sets/{}/children/{}/children]' collides with already-written 'New-MgSiteTermStoreSetChild [/sites/{}/termstore/sets/{}/children]' +Sites :: UpdateMgSiteTermStoreSetChild.g.cs: 'Update-MgSiteTermStoreSetChild [/sites/{}/termstore/sets/{}/children/{}/children/{}]' collides with already-written 'Update-MgSiteTermStoreSetChild [/sites/{}/termstore/sets/{}/children/{}]' +Sites :: RemoveMgSiteTermStoreSetChild.g.cs: 'Remove-MgSiteTermStoreSetChild [/sites/{}/termstore/sets/{}/children/{}/children/{}]' collides with already-written 'Remove-MgSiteTermStoreSetChild [/sites/{}/termstore/sets/{}/children/{}]' +Sites :: NewMgSiteTermStoreSetChildRelation.g.cs: 'New-MgSiteTermStoreSetChildRelation [/sites/{}/termstore/sets/{}/children/{}/relations]' collides with already-written 'New-MgSiteTermStoreSetChildRelation [/sites/{}/termstore/sets/{}/children/{}/children/{}/relations]' +Sites :: UpdateMgSiteTermStoreSetChildRelation.g.cs: 'Update-MgSiteTermStoreSetChildRelation [/sites/{}/termstore/sets/{}/children/{}/relations/{}]' collides with already-written 'Update-MgSiteTermStoreSetChildRelation [/sites/{}/termstore/sets/{}/children/{}/children/{}/relations/{}]' +Sites :: RemoveMgSiteTermStoreSetChildRelation.g.cs: 'Remove-MgSiteTermStoreSetChildRelation [/sites/{}/termstore/sets/{}/children/{}/relations/{}]' collides with already-written 'Remove-MgSiteTermStoreSetChildRelation [/sites/{}/termstore/sets/{}/children/{}/children/{}/relations/{}]' +Sites :: GetMgSiteTermStoreSetChildRelationCount.g.cs: 'Get-MgSiteTermStoreSetChildRelationCount [/sites/{}/termstore/sets/{}/children/{}/relations/$count]' collides with already-written 'Get-MgSiteTermStoreSetChildRelationCount [/sites/{}/termstore/sets/{}/children/{}/children/{}/relations/$count]' +Sites :: GetMgSiteTermStoreSetChildCount.g.cs: 'Get-MgSiteTermStoreSetChildCount [/sites/{}/termstore/sets/{}/children/$count]' collides with already-written 'Get-MgSiteTermStoreSetChildCount [/sites/{}/termstore/sets/{}/children/{}/children/$count]' +Sites :: NewMgSiteTermStoreSetParentGroupSetChild.g.cs: 'New-MgSiteTermStoreSetParentGroupSetChild [/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children]' collides with already-written 'New-MgSiteTermStoreSetParentGroupSetChild [/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children]' +Sites :: UpdateMgSiteTermStoreSetParentGroupSetChild.g.cs: 'Update-MgSiteTermStoreSetParentGroupSetChild [/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}]' collides with already-written 'Update-MgSiteTermStoreSetParentGroupSetChild [/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}]' +Sites :: RemoveMgSiteTermStoreSetParentGroupSetChild.g.cs: 'Remove-MgSiteTermStoreSetParentGroupSetChild [/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}]' collides with already-written 'Remove-MgSiteTermStoreSetParentGroupSetChild [/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}]' +Sites :: NewMgSiteTermStoreSetParentGroupSetChildRelation.g.cs: 'New-MgSiteTermStoreSetParentGroupSetChildRelation [/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations]' collides with already-written 'New-MgSiteTermStoreSetParentGroupSetChildRelation [/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations]' +Sites :: UpdateMgSiteTermStoreSetParentGroupSetChildRelation.g.cs: 'Update-MgSiteTermStoreSetParentGroupSetChildRelation [/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations/{}]' collides with already-written 'Update-MgSiteTermStoreSetParentGroupSetChildRelation [/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations/{}]' +Sites :: RemoveMgSiteTermStoreSetParentGroupSetChildRelation.g.cs: 'Remove-MgSiteTermStoreSetParentGroupSetChildRelation [/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations/{}]' collides with already-written 'Remove-MgSiteTermStoreSetParentGroupSetChildRelation [/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations/{}]' +Sites :: GetMgSiteTermStoreSetParentGroupSetChildRelationCount.g.cs: 'Get-MgSiteTermStoreSetParentGroupSetChildRelationCount [/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations/$count]' collides with already-written 'Get-MgSiteTermStoreSetParentGroupSetChildRelationCount [/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations/$count]' +Sites :: GetMgSiteTermStoreSetParentGroupSetChildCount.g.cs: 'Get-MgSiteTermStoreSetParentGroupSetChildCount [/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/$count]' collides with already-written 'Get-MgSiteTermStoreSetParentGroupSetChildCount [/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/$count]' +Sites :: GetMgSiteCount.g.cs: 'Get-MgSiteCount [/sites/$count]' collides with already-written 'Get-MgSiteCount [/sites/{}/sites/$count]' +Sites :: GetMgGroupSiteOnenoteNotebookSectionGroup.g.cs: 'Get-MgGroupSiteOnenoteNotebookSectionGroup [/groups/{}/sites/{}/onenote/notebooks/{}/sectiongroups/{}]' collides with already-written 'Get-MgGroupSiteOnenoteNotebookSectionGroup [/groups/{}/sites/{}/onenote/notebooks/{}/sectiongroups]' +Sites :: GetMgGroupSiteOnenoteNotebookSectionGroup.g.cs: 'Get-MgGroupSiteOnenoteNotebookSectionGroup [/groups/{}/sites/{}/onenote/notebooks/{}/sectiongroups/{}/sectiongroups]' collides with already-written 'Get-MgGroupSiteOnenoteNotebookSectionGroup [/groups/{}/sites/{}/onenote/notebooks/{}/sectiongroups]' +Sites :: GetMgGroupSiteOnenoteNotebookSectionGroup.g.cs: 'Get-MgGroupSiteOnenoteNotebookSectionGroup [/groups/{}/sites/{}/onenote/notebooks/{}/sectiongroups/{}/sectiongroups/{}]' collides with already-written 'Get-MgGroupSiteOnenoteNotebookSectionGroup [/groups/{}/sites/{}/onenote/notebooks/{}/sectiongroups]' +Sites :: GetMgGroupSiteOnenoteSectionGroup.g.cs: 'Get-MgGroupSiteOnenoteSectionGroup [/groups/{}/sites/{}/onenote/sectiongroups/{}]' collides with already-written 'Get-MgGroupSiteOnenoteSectionGroup [/groups/{}/sites/{}/onenote/sectiongroups]' +Sites :: GetMgGroupSiteOnenoteSectionGroup.g.cs: 'Get-MgGroupSiteOnenoteSectionGroup [/groups/{}/sites/{}/onenote/sectiongroups/{}/sectiongroups]' collides with already-written 'Get-MgGroupSiteOnenoteSectionGroup [/groups/{}/sites/{}/onenote/sectiongroups]' +Sites :: GetMgGroupSiteOnenoteSectionGroup.g.cs: 'Get-MgGroupSiteOnenoteSectionGroup [/groups/{}/sites/{}/onenote/sectiongroups/{}/sectiongroups/{}]' collides with already-written 'Get-MgGroupSiteOnenoteSectionGroup [/groups/{}/sites/{}/onenote/sectiongroups]' +Sites :: GetMgGroupSiteTermStoreGroupSetChild.g.cs: 'Get-MgGroupSiteTermStoreGroupSetChild [/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}]' collides with already-written 'Get-MgGroupSiteTermStoreGroupSetChild [/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children]' +Sites :: GetMgGroupSiteTermStoreGroupSetChild.g.cs: 'Get-MgGroupSiteTermStoreGroupSetChild [/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/children]' collides with already-written 'Get-MgGroupSiteTermStoreGroupSetChild [/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children]' +Sites :: GetMgGroupSiteTermStoreGroupSetChild.g.cs: 'Get-MgGroupSiteTermStoreGroupSetChild [/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}]' collides with already-written 'Get-MgGroupSiteTermStoreGroupSetChild [/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children]' +Sites :: GetMgGroupSiteTermStoreGroupSetChildRelation.g.cs: 'Get-MgGroupSiteTermStoreGroupSetChildRelation [/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations/{}]' collides with already-written 'Get-MgGroupSiteTermStoreGroupSetChildRelation [/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations]' +Sites :: GetMgGroupSiteTermStoreGroupSetChildRelation.g.cs: 'Get-MgGroupSiteTermStoreGroupSetChildRelation [/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations]' collides with already-written 'Get-MgGroupSiteTermStoreGroupSetChildRelation [/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations]' +Sites :: GetMgGroupSiteTermStoreGroupSetChildRelation.g.cs: 'Get-MgGroupSiteTermStoreGroupSetChildRelation [/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations/{}]' collides with already-written 'Get-MgGroupSiteTermStoreGroupSetChildRelation [/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations]' +Sites :: GetMgGroupSiteTermStoreGroupSetChildRelationFromTerm.g.cs: 'Get-MgGroupSiteTermStoreGroupSetChildRelationFromTerm [/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations/{}/fromterm]' collides with already-written 'Get-MgGroupSiteTermStoreGroupSetChildRelationFromTerm [/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations/{}/fromterm]' +Sites :: GetMgGroupSiteTermStoreGroupSetChildRelationSet.g.cs: 'Get-MgGroupSiteTermStoreGroupSetChildRelationSet [/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations/{}/set]' collides with already-written 'Get-MgGroupSiteTermStoreGroupSetChildRelationSet [/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations/{}/set]' +Sites :: GetMgGroupSiteTermStoreGroupSetChildRelationToTerm.g.cs: 'Get-MgGroupSiteTermStoreGroupSetChildRelationToTerm [/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations/{}/toterm]' collides with already-written 'Get-MgGroupSiteTermStoreGroupSetChildRelationToTerm [/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations/{}/toterm]' +Sites :: GetMgGroupSiteTermStoreGroupSetChildSet.g.cs: 'Get-MgGroupSiteTermStoreGroupSetChildSet [/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/set]' collides with already-written 'Get-MgGroupSiteTermStoreGroupSetChildSet [/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/set]' +Sites :: GetMgGroupSiteTermStoreSetChild.g.cs: 'Get-MgGroupSiteTermStoreSetChild [/groups/{}/sites/{}/termstore/sets/{}/children/{}]' collides with already-written 'Get-MgGroupSiteTermStoreSetChild [/groups/{}/sites/{}/termstore/sets/{}/children]' +Sites :: GetMgGroupSiteTermStoreSetChild.g.cs: 'Get-MgGroupSiteTermStoreSetChild [/groups/{}/sites/{}/termstore/sets/{}/children/{}/children]' collides with already-written 'Get-MgGroupSiteTermStoreSetChild [/groups/{}/sites/{}/termstore/sets/{}/children]' +Sites :: GetMgGroupSiteTermStoreSetChild.g.cs: 'Get-MgGroupSiteTermStoreSetChild [/groups/{}/sites/{}/termstore/sets/{}/children/{}/children/{}]' collides with already-written 'Get-MgGroupSiteTermStoreSetChild [/groups/{}/sites/{}/termstore/sets/{}/children]' +Sites :: GetMgGroupSiteTermStoreSetChildRelation.g.cs: 'Get-MgGroupSiteTermStoreSetChildRelation [/groups/{}/sites/{}/termstore/sets/{}/children/{}/children/{}/relations/{}]' collides with already-written 'Get-MgGroupSiteTermStoreSetChildRelation [/groups/{}/sites/{}/termstore/sets/{}/children/{}/children/{}/relations]' +Sites :: GetMgGroupSiteTermStoreSetChildRelation.g.cs: 'Get-MgGroupSiteTermStoreSetChildRelation [/groups/{}/sites/{}/termstore/sets/{}/children/{}/relations]' collides with already-written 'Get-MgGroupSiteTermStoreSetChildRelation [/groups/{}/sites/{}/termstore/sets/{}/children/{}/children/{}/relations]' +Sites :: GetMgGroupSiteTermStoreSetChildRelation.g.cs: 'Get-MgGroupSiteTermStoreSetChildRelation [/groups/{}/sites/{}/termstore/sets/{}/children/{}/relations/{}]' collides with already-written 'Get-MgGroupSiteTermStoreSetChildRelation [/groups/{}/sites/{}/termstore/sets/{}/children/{}/children/{}/relations]' +Sites :: GetMgGroupSiteTermStoreSetChildRelationFromTerm.g.cs: 'Get-MgGroupSiteTermStoreSetChildRelationFromTerm [/groups/{}/sites/{}/termstore/sets/{}/children/{}/relations/{}/fromterm]' collides with already-written 'Get-MgGroupSiteTermStoreSetChildRelationFromTerm [/groups/{}/sites/{}/termstore/sets/{}/children/{}/children/{}/relations/{}/fromterm]' +Sites :: GetMgGroupSiteTermStoreSetChildRelationSet.g.cs: 'Get-MgGroupSiteTermStoreSetChildRelationSet [/groups/{}/sites/{}/termstore/sets/{}/children/{}/relations/{}/set]' collides with already-written 'Get-MgGroupSiteTermStoreSetChildRelationSet [/groups/{}/sites/{}/termstore/sets/{}/children/{}/children/{}/relations/{}/set]' +Sites :: GetMgGroupSiteTermStoreSetChildRelationToTerm.g.cs: 'Get-MgGroupSiteTermStoreSetChildRelationToTerm [/groups/{}/sites/{}/termstore/sets/{}/children/{}/relations/{}/toterm]' collides with already-written 'Get-MgGroupSiteTermStoreSetChildRelationToTerm [/groups/{}/sites/{}/termstore/sets/{}/children/{}/children/{}/relations/{}/toterm]' +Sites :: GetMgGroupSiteTermStoreSetChildSet.g.cs: 'Get-MgGroupSiteTermStoreSetChildSet [/groups/{}/sites/{}/termstore/sets/{}/children/{}/set]' collides with already-written 'Get-MgGroupSiteTermStoreSetChildSet [/groups/{}/sites/{}/termstore/sets/{}/children/{}/children/{}/set]' +Sites :: GetMgGroupSiteTermStoreSetParentGroupSetChild.g.cs: 'Get-MgGroupSiteTermStoreSetParentGroupSetChild [/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}]' collides with already-written 'Get-MgGroupSiteTermStoreSetParentGroupSetChild [/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children]' +Sites :: GetMgGroupSiteTermStoreSetParentGroupSetChild.g.cs: 'Get-MgGroupSiteTermStoreSetParentGroupSetChild [/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children]' collides with already-written 'Get-MgGroupSiteTermStoreSetParentGroupSetChild [/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children]' +Sites :: GetMgGroupSiteTermStoreSetParentGroupSetChild.g.cs: 'Get-MgGroupSiteTermStoreSetParentGroupSetChild [/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}]' collides with already-written 'Get-MgGroupSiteTermStoreSetParentGroupSetChild [/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children]' +Sites :: GetMgGroupSiteTermStoreSetParentGroupSetChildRelation.g.cs: 'Get-MgGroupSiteTermStoreSetParentGroupSetChildRelation [/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations/{}]' collides with already-written 'Get-MgGroupSiteTermStoreSetParentGroupSetChildRelation [/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations]' +Sites :: GetMgGroupSiteTermStoreSetParentGroupSetChildRelation.g.cs: 'Get-MgGroupSiteTermStoreSetParentGroupSetChildRelation [/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations]' collides with already-written 'Get-MgGroupSiteTermStoreSetParentGroupSetChildRelation [/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations]' +Sites :: GetMgGroupSiteTermStoreSetParentGroupSetChildRelation.g.cs: 'Get-MgGroupSiteTermStoreSetParentGroupSetChildRelation [/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations/{}]' collides with already-written 'Get-MgGroupSiteTermStoreSetParentGroupSetChildRelation [/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations]' +Sites :: GetMgGroupSiteTermStoreSetParentGroupSetChildRelationFromTerm.g.cs: 'Get-MgGroupSiteTermStoreSetParentGroupSetChildRelationFromTerm [/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations/{}/fromterm]' collides with already-written 'Get-MgGroupSiteTermStoreSetParentGroupSetChildRelationFromTerm [/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations/{}/fromterm]' +Sites :: GetMgGroupSiteTermStoreSetParentGroupSetChildRelationSet.g.cs: 'Get-MgGroupSiteTermStoreSetParentGroupSetChildRelationSet [/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations/{}/set]' collides with already-written 'Get-MgGroupSiteTermStoreSetParentGroupSetChildRelationSet [/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations/{}/set]' +Sites :: GetMgGroupSiteTermStoreSetParentGroupSetChildRelationToTerm.g.cs: 'Get-MgGroupSiteTermStoreSetParentGroupSetChildRelationToTerm [/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations/{}/toterm]' collides with already-written 'Get-MgGroupSiteTermStoreSetParentGroupSetChildRelationToTerm [/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations/{}/toterm]' +Sites :: GetMgGroupSiteTermStoreSetParentGroupSetChildSet.g.cs: 'Get-MgGroupSiteTermStoreSetParentGroupSetChildSet [/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/set]' collides with already-written 'Get-MgGroupSiteTermStoreSetParentGroupSetChildSet [/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/set]' +Sites :: GetMgSiteTermStoreGroupSetChild.g.cs: 'Get-MgSiteTermStoreGroupSetChild [/sites/{}/termstore/groups/{}/sets/{}/children/{}]' collides with already-written 'Get-MgSiteTermStoreGroupSetChild [/sites/{}/termstore/groups/{}/sets/{}/children]' +Sites :: GetMgSiteTermStoreGroupSetChild.g.cs: 'Get-MgSiteTermStoreGroupSetChild [/sites/{}/termstore/groups/{}/sets/{}/children/{}/children]' collides with already-written 'Get-MgSiteTermStoreGroupSetChild [/sites/{}/termstore/groups/{}/sets/{}/children]' +Sites :: GetMgSiteTermStoreGroupSetChild.g.cs: 'Get-MgSiteTermStoreGroupSetChild [/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}]' collides with already-written 'Get-MgSiteTermStoreGroupSetChild [/sites/{}/termstore/groups/{}/sets/{}/children]' +Sites :: GetMgSiteTermStoreGroupSetChildRelation.g.cs: 'Get-MgSiteTermStoreGroupSetChildRelation [/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations/{}]' collides with already-written 'Get-MgSiteTermStoreGroupSetChildRelation [/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations]' +Sites :: GetMgSiteTermStoreGroupSetChildRelation.g.cs: 'Get-MgSiteTermStoreGroupSetChildRelation [/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations]' collides with already-written 'Get-MgSiteTermStoreGroupSetChildRelation [/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations]' +Sites :: GetMgSiteTermStoreGroupSetChildRelation.g.cs: 'Get-MgSiteTermStoreGroupSetChildRelation [/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations/{}]' collides with already-written 'Get-MgSiteTermStoreGroupSetChildRelation [/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations]' +Sites :: GetMgSiteTermStoreGroupSetChildRelationFromTerm.g.cs: 'Get-MgSiteTermStoreGroupSetChildRelationFromTerm [/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations/{}/fromterm]' collides with already-written 'Get-MgSiteTermStoreGroupSetChildRelationFromTerm [/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations/{}/fromterm]' +Sites :: GetMgSiteTermStoreGroupSetChildRelationSet.g.cs: 'Get-MgSiteTermStoreGroupSetChildRelationSet [/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations/{}/set]' collides with already-written 'Get-MgSiteTermStoreGroupSetChildRelationSet [/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations/{}/set]' +Sites :: GetMgSiteTermStoreGroupSetChildRelationToTerm.g.cs: 'Get-MgSiteTermStoreGroupSetChildRelationToTerm [/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations/{}/toterm]' collides with already-written 'Get-MgSiteTermStoreGroupSetChildRelationToTerm [/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations/{}/toterm]' +Sites :: GetMgSiteTermStoreGroupSetChildSet.g.cs: 'Get-MgSiteTermStoreGroupSetChildSet [/sites/{}/termstore/groups/{}/sets/{}/children/{}/set]' collides with already-written 'Get-MgSiteTermStoreGroupSetChildSet [/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/set]' +Sites :: GetMgSiteTermStoreSetChild.g.cs: 'Get-MgSiteTermStoreSetChild [/sites/{}/termstore/sets/{}/children/{}]' collides with already-written 'Get-MgSiteTermStoreSetChild [/sites/{}/termstore/sets/{}/children]' +Sites :: GetMgSiteTermStoreSetChild.g.cs: 'Get-MgSiteTermStoreSetChild [/sites/{}/termstore/sets/{}/children/{}/children]' collides with already-written 'Get-MgSiteTermStoreSetChild [/sites/{}/termstore/sets/{}/children]' +Sites :: GetMgSiteTermStoreSetChild.g.cs: 'Get-MgSiteTermStoreSetChild [/sites/{}/termstore/sets/{}/children/{}/children/{}]' collides with already-written 'Get-MgSiteTermStoreSetChild [/sites/{}/termstore/sets/{}/children]' +Sites :: GetMgSiteTermStoreSetChildRelation.g.cs: 'Get-MgSiteTermStoreSetChildRelation [/sites/{}/termstore/sets/{}/children/{}/children/{}/relations/{}]' collides with already-written 'Get-MgSiteTermStoreSetChildRelation [/sites/{}/termstore/sets/{}/children/{}/children/{}/relations]' +Sites :: GetMgSiteTermStoreSetChildRelation.g.cs: 'Get-MgSiteTermStoreSetChildRelation [/sites/{}/termstore/sets/{}/children/{}/relations]' collides with already-written 'Get-MgSiteTermStoreSetChildRelation [/sites/{}/termstore/sets/{}/children/{}/children/{}/relations]' +Sites :: GetMgSiteTermStoreSetChildRelation.g.cs: 'Get-MgSiteTermStoreSetChildRelation [/sites/{}/termstore/sets/{}/children/{}/relations/{}]' collides with already-written 'Get-MgSiteTermStoreSetChildRelation [/sites/{}/termstore/sets/{}/children/{}/children/{}/relations]' +Sites :: GetMgSiteTermStoreSetChildRelationFromTerm.g.cs: 'Get-MgSiteTermStoreSetChildRelationFromTerm [/sites/{}/termstore/sets/{}/children/{}/relations/{}/fromterm]' collides with already-written 'Get-MgSiteTermStoreSetChildRelationFromTerm [/sites/{}/termstore/sets/{}/children/{}/children/{}/relations/{}/fromterm]' +Sites :: GetMgSiteTermStoreSetChildRelationSet.g.cs: 'Get-MgSiteTermStoreSetChildRelationSet [/sites/{}/termstore/sets/{}/children/{}/relations/{}/set]' collides with already-written 'Get-MgSiteTermStoreSetChildRelationSet [/sites/{}/termstore/sets/{}/children/{}/children/{}/relations/{}/set]' +Sites :: GetMgSiteTermStoreSetChildRelationToTerm.g.cs: 'Get-MgSiteTermStoreSetChildRelationToTerm [/sites/{}/termstore/sets/{}/children/{}/relations/{}/toterm]' collides with already-written 'Get-MgSiteTermStoreSetChildRelationToTerm [/sites/{}/termstore/sets/{}/children/{}/children/{}/relations/{}/toterm]' +Sites :: GetMgSiteTermStoreSetChildSet.g.cs: 'Get-MgSiteTermStoreSetChildSet [/sites/{}/termstore/sets/{}/children/{}/set]' collides with already-written 'Get-MgSiteTermStoreSetChildSet [/sites/{}/termstore/sets/{}/children/{}/children/{}/set]' +Sites :: GetMgSiteTermStoreSetParentGroupSetChild.g.cs: 'Get-MgSiteTermStoreSetParentGroupSetChild [/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}]' collides with already-written 'Get-MgSiteTermStoreSetParentGroupSetChild [/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children]' +Sites :: GetMgSiteTermStoreSetParentGroupSetChild.g.cs: 'Get-MgSiteTermStoreSetParentGroupSetChild [/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children]' collides with already-written 'Get-MgSiteTermStoreSetParentGroupSetChild [/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children]' +Sites :: GetMgSiteTermStoreSetParentGroupSetChild.g.cs: 'Get-MgSiteTermStoreSetParentGroupSetChild [/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}]' collides with already-written 'Get-MgSiteTermStoreSetParentGroupSetChild [/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children]' +Sites :: GetMgSiteTermStoreSetParentGroupSetChildRelation.g.cs: 'Get-MgSiteTermStoreSetParentGroupSetChildRelation [/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations/{}]' collides with already-written 'Get-MgSiteTermStoreSetParentGroupSetChildRelation [/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations]' +Sites :: GetMgSiteTermStoreSetParentGroupSetChildRelation.g.cs: 'Get-MgSiteTermStoreSetParentGroupSetChildRelation [/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations]' collides with already-written 'Get-MgSiteTermStoreSetParentGroupSetChildRelation [/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations]' +Sites :: GetMgSiteTermStoreSetParentGroupSetChildRelation.g.cs: 'Get-MgSiteTermStoreSetParentGroupSetChildRelation [/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations/{}]' collides with already-written 'Get-MgSiteTermStoreSetParentGroupSetChildRelation [/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations]' +Sites :: GetMgSiteTermStoreSetParentGroupSetChildRelationFromTerm.g.cs: 'Get-MgSiteTermStoreSetParentGroupSetChildRelationFromTerm [/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations/{}/fromterm]' collides with already-written 'Get-MgSiteTermStoreSetParentGroupSetChildRelationFromTerm [/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations/{}/fromterm]' +Sites :: GetMgSiteTermStoreSetParentGroupSetChildRelationSet.g.cs: 'Get-MgSiteTermStoreSetParentGroupSetChildRelationSet [/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations/{}/set]' collides with already-written 'Get-MgSiteTermStoreSetParentGroupSetChildRelationSet [/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations/{}/set]' +Sites :: GetMgSiteTermStoreSetParentGroupSetChildRelationToTerm.g.cs: 'Get-MgSiteTermStoreSetParentGroupSetChildRelationToTerm [/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations/{}/toterm]' collides with already-written 'Get-MgSiteTermStoreSetParentGroupSetChildRelationToTerm [/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations/{}/toterm]' +Sites :: GetMgSiteTermStoreSetParentGroupSetChildSet.g.cs: 'Get-MgSiteTermStoreSetParentGroupSetChildSet [/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/set]' collides with already-written 'Get-MgSiteTermStoreSetParentGroupSetChildSet [/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/set]' +Users :: GetMgUserPhotoContent.g.cs: 'Get-MgUserPhotoContent [/users/{}/photos/{}/$value]' collides with already-written 'Get-MgUserPhotoContent [/users/{}/photo/$value]' +Users :: RemoveMgUserPhotoContent.g.cs: 'Remove-MgUserPhotoContent [/users/{}/photos/{}/$value]' collides with already-written 'Remove-MgUserPhotoContent [/users/{}/photo/$value]' +Users :: RemoveMgUserSponsorByRef.g.cs: 'Remove-MgUserSponsorByRef [/users/{}/sponsors/$ref]' collides with already-written 'Remove-MgUserSponsorByRef [/users/{}/sponsors/{}/$ref]' diff --git a/tools/WrapperGenerator/data/collision-renames.v1.0.json b/tools/WrapperGenerator/data/collision-renames.v1.0.json index 5a42578886d..d52a83023a8 100644 --- a/tools/WrapperGenerator/data/collision-renames.v1.0.json +++ b/tools/WrapperGenerator/data/collision-renames.v1.0.json @@ -2,550 +2,588 @@ { "apiVersion": "v1.0", "modules": [ - "Identity.Governance" + "Applications" ], "method": "DELETE", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}", + "uri": "/applications/{}/appmanagementpolicies/{}/$ref", "action": "rename", "evidence": { "shipsAs": [ - "Remove-MgEntitlementManagementCatalogResourceRole" + [ + "Remove-MgApplicationAppManagementPolicyAppManagementPolicyByRef" + ] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}" + "/applications/{}/appmanagementpolicies/$ref" ], "counterpartShipsAs": [] }, - "replacementNoun": "EntitlementManagementCatalogResourceRole" + "replacementNoun": "ApplicationAppManagementPolicyAppManagementPolicyByRef" }, { "apiVersion": "v1.0", "modules": [ - "Identity.Governance" + "Applications" ], "method": "DELETE", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource", + "uri": "/applications/{}/owners/{}/$ref", "action": "rename", "evidence": { "shipsAs": [ - "Remove-MgEntitlementManagementCatalogResourceRoleResource" + [ + "Remove-MgApplicationOwnerDirectoryObjectByRef" + ] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource" + "/applications/{}/owners/$ref" ], "counterpartShipsAs": [] }, - "replacementNoun": "EntitlementManagementCatalogResourceRoleResource" + "replacementNoun": "ApplicationOwnerDirectoryObjectByRef" }, { "apiVersion": "v1.0", "modules": [ - "Identity.Governance" + "Applications" ], "method": "DELETE", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes/{}", + "uri": "/applications/{}/tokenissuancepolicies/{}/$ref", "action": "rename", "evidence": { "shipsAs": [ - "Remove-MgEntitlementManagementCatalogResourceRoleResourceScope" + [ + "Remove-MgApplicationTokenIssuancePolicyTokenIssuancePolicyByRef" + ] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource/scopes/{}" + "/applications/{}/tokenissuancepolicies/$ref" ], "counterpartShipsAs": [] }, - "replacementNoun": "EntitlementManagementCatalogResourceRoleResourceScope" + "replacementNoun": "ApplicationTokenIssuancePolicyTokenIssuancePolicyByRef" }, { "apiVersion": "v1.0", "modules": [ - "Identity.Governance" + "Applications" ], "method": "DELETE", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes/{}/resource", + "uri": "/applications/{}/tokenlifetimepolicies/{}/$ref", "action": "rename", "evidence": { "shipsAs": [ - "Remove-MgEntitlementManagementCatalogResourceRoleResourceScopeResource" + [ + "Remove-MgApplicationTokenLifetimePolicyTokenLifetimePolicyByRef" + ] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource/scopes/{}/resource" + "/applications/{}/tokenlifetimepolicies/$ref" ], "counterpartShipsAs": [] }, - "replacementNoun": "EntitlementManagementCatalogResourceRoleResourceScopeResource" + "replacementNoun": "ApplicationTokenLifetimePolicyTokenLifetimePolicyByRef" }, { "apiVersion": "v1.0", "modules": [ - "Identity.Governance" + "Identity.DirectoryManagement" ], "method": "DELETE", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource", + "uri": "/devices/{}/registeredowners/{}/$ref", "action": "rename", "evidence": { "shipsAs": [ - "Remove-MgEntitlementManagementCatalogResourceScopeResource" + [ + "Remove-MgDeviceRegisteredOwnerDirectoryObjectByRef" + ] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource" + "/devices/{}/registeredowners/$ref" ], "counterpartShipsAs": [] }, - "replacementNoun": "EntitlementManagementCatalogResourceScopeResource" + "replacementNoun": "DeviceRegisteredOwnerDirectoryObjectByRef" }, { "apiVersion": "v1.0", "modules": [ - "Identity.Governance" + "Identity.DirectoryManagement" ], "method": "DELETE", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles/{}", + "uri": "/devices/{}/registeredusers/{}/$ref", "action": "rename", "evidence": { "shipsAs": [ - "Remove-MgEntitlementManagementCatalogResourceScopeResourceRole" + [ + "Remove-MgDeviceRegisteredUserDirectoryObjectByRef" + ] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/roles/{}" + "/devices/{}/registeredusers/$ref" ], "counterpartShipsAs": [] }, - "replacementNoun": "EntitlementManagementCatalogResourceScopeResourceRole" + "replacementNoun": "DeviceRegisteredUserDirectoryObjectByRef" }, { "apiVersion": "v1.0", "modules": [ - "Identity.Governance" + "Identity.DirectoryManagement" ], "method": "DELETE", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles/{}/resource", + "uri": "/directory/administrativeunits/{}/members/{}/$ref", "action": "rename", "evidence": { "shipsAs": [ - "Remove-MgEntitlementManagementCatalogResourceScopeResourceRoleResource" + [ + "Remove-MgDirectoryAdministrativeUnitMemberDirectoryObjectByRef" + ] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/roles/{}/resource" + "/directory/administrativeunits/{}/members/$ref" ], "counterpartShipsAs": [] }, - "replacementNoun": "EntitlementManagementCatalogResourceScopeResourceRoleResource" + "replacementNoun": "DirectoryAdministrativeUnitMemberDirectoryObjectByRef" }, { "apiVersion": "v1.0", "modules": [ - "Identity.Governance" + "Identity.DirectoryManagement" ], "method": "DELETE", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}", + "uri": "/directoryroles/{}/members/{}/$ref", "action": "rename", "evidence": { "shipsAs": [ - "Remove-MgEntitlementManagementCatalogResourceScope" + [ + "Remove-MgDirectoryRoleMemberDirectoryObjectByRef" + ] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}" + "/directoryroles/{}/members/$ref" ], "counterpartShipsAs": [] }, - "replacementNoun": "EntitlementManagementCatalogResourceScope" + "replacementNoun": "DirectoryRoleMemberDirectoryObjectByRef" }, { "apiVersion": "v1.0", "modules": [ - "Identity.Governance" + "Education" ], "method": "DELETE", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}", + "uri": "/education/classes/{}/assignments/{}/categories/{}/$ref", "action": "rename", "evidence": { "shipsAs": [ - "Remove-MgEntitlementManagementResourceRequestCatalogResourceRole" + [ + "Remove-MgEducationClassAssignmentCategoryEducationCategoryByRef" + ] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}" + "/education/classes/{}/assignments/{}/categories/$ref" ], "counterpartShipsAs": [] }, - "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceRole" + "replacementNoun": "EducationClassAssignmentCategoryEducationCategoryByRef" }, { "apiVersion": "v1.0", "modules": [ - "Identity.Governance" + "Education" ], "method": "DELETE", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource", + "uri": "/education/classes/{}/members/{}/$ref", "action": "rename", "evidence": { "shipsAs": [ - "Remove-MgEntitlementManagementResourceRequestCatalogResourceRoleResource" + [ + "Remove-MgEducationClassMemberEducationUserByRef" + ] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource" + "/education/classes/{}/members/$ref" ], "counterpartShipsAs": [] }, - "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceRoleResource" + "replacementNoun": "EducationClassMemberEducationUserByRef" }, { "apiVersion": "v1.0", "modules": [ - "Identity.Governance" + "Education" ], "method": "DELETE", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes/{}", + "uri": "/education/classes/{}/teachers/{}/$ref", "action": "rename", "evidence": { "shipsAs": [ - "Remove-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScope" + [ + "Remove-MgEducationClassTeacherEducationUserByRef" + ] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource/scopes/{}" + "/education/classes/{}/teachers/$ref" ], "counterpartShipsAs": [] }, - "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceRoleResourceScope" + "replacementNoun": "EducationClassTeacherEducationUserByRef" }, { "apiVersion": "v1.0", "modules": [ - "Identity.Governance" + "Education" ], "method": "DELETE", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes/{}/resource", + "uri": "/education/me/assignments/{}/categories/{}/$ref", "action": "rename", "evidence": { "shipsAs": [ - "Remove-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResource" + [ + "Remove-MgEducationMeAssignmentCategoryEducationCategoryByRef" + ] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource/scopes/{}/resource" + "/education/me/assignments/{}/categories/$ref" ], "counterpartShipsAs": [] }, - "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResource" + "replacementNoun": "EducationMeAssignmentCategoryEducationCategoryByRef" }, { "apiVersion": "v1.0", "modules": [ - "Identity.Governance" + "Education" ], "method": "DELETE", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource", + "uri": "/education/schools/{}/classes/{}/$ref", "action": "rename", "evidence": { "shipsAs": [ - "Remove-MgEntitlementManagementResourceRequestCatalogResourceScopeResource" + [ + "Remove-MgEducationSchoolClassEducationClassByRef" + ] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource" + "/education/schools/{}/classes/$ref" ], "counterpartShipsAs": [] }, - "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceScopeResource" + "replacementNoun": "EducationSchoolClassEducationClassByRef" }, { "apiVersion": "v1.0", "modules": [ - "Identity.Governance" + "Education" ], "method": "DELETE", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles/{}", + "uri": "/education/schools/{}/users/{}/$ref", "action": "rename", "evidence": { "shipsAs": [ - "Remove-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRole" + [ + "Remove-MgEducationSchoolUserEducationUserByRef" + ] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/roles/{}" + "/education/schools/{}/users/$ref" ], "counterpartShipsAs": [] }, - "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceScopeResourceRole" + "replacementNoun": "EducationSchoolUserEducationUserByRef" }, { "apiVersion": "v1.0", "modules": [ - "Identity.Governance" + "Education" ], "method": "DELETE", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles/{}/resource", + "uri": "/education/users/{}/assignments/{}/categories/{}/$ref", "action": "rename", "evidence": { "shipsAs": [ - "Remove-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResource" + [ + "Remove-MgEducationUserAssignmentCategoryEducationCategoryByRef" + ] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/roles/{}/resource" + "/education/users/{}/assignments/{}/categories/$ref" ], "counterpartShipsAs": [] }, - "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResource" + "replacementNoun": "EducationUserAssignmentCategoryEducationCategoryByRef" }, { "apiVersion": "v1.0", "modules": [ - "Identity.Governance" + "Groups" ], "method": "DELETE", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}", + "uri": "/groups/{}/acceptedsenders/{}/$ref", "action": "rename", "evidence": { "shipsAs": [ - "Remove-MgEntitlementManagementResourceRequestCatalogResourceScope" + [ + "Remove-MgGroupAcceptedSenderDirectoryObjectByRef" + ] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}" + "/groups/{}/acceptedsenders/$ref" ], "counterpartShipsAs": [] }, - "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceScope" + "replacementNoun": "GroupAcceptedSenderDirectoryObjectByRef" }, { "apiVersion": "v1.0", "modules": [ - "Identity.Governance" + "Groups" ], - "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles", + "method": "DELETE", + "uri": "/groups/{}/members/{}/$ref", "action": "rename", "evidence": { "shipsAs": [ - "Get-MgEntitlementManagementCatalogResourceRole" + [ + "Remove-MgGroupMemberDirectoryObjectByRef" + ] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}", - "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles", - "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}" + "/groups/{}/members/$ref" ], - "counterpartShipsAs": [ - "Get-MgEntitlementManagementCatalogResourceRole" - ] + "counterpartShipsAs": [] }, - "replacementNoun": "EntitlementManagementCatalogResourceRole" + "replacementNoun": "GroupMemberDirectoryObjectByRef" }, { "apiVersion": "v1.0", "modules": [ - "Identity.Governance" + "Groups" ], - "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}", + "method": "DELETE", + "uri": "/groups/{}/owners/{}/$ref", "action": "rename", "evidence": { "shipsAs": [ - "Get-MgEntitlementManagementCatalogResourceRole" + [ + "Remove-MgGroupOwnerDirectoryObjectByRef" + ] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles" + "/groups/{}/owners/$ref" ], - "counterpartShipsAs": [ - "Get-MgEntitlementManagementCatalogResourceRole" - ] + "counterpartShipsAs": [] }, - "replacementNoun": "EntitlementManagementCatalogResourceRole" + "replacementNoun": "GroupOwnerDirectoryObjectByRef" }, { "apiVersion": "v1.0", "modules": [ - "Identity.Governance" + "Groups" ], - "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource", + "method": "DELETE", + "uri": "/groups/{}/rejectedsenders/{}/$ref", "action": "rename", "evidence": { "shipsAs": [ - "Get-MgEntitlementManagementCatalogResourceRoleResource" + [ + "Remove-MgGroupRejectedSenderDirectoryObjectByRef" + ] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource" + "/groups/{}/rejectedsenders/$ref" ], "counterpartShipsAs": [] }, - "replacementNoun": "EntitlementManagementCatalogResourceRoleResource" + "replacementNoun": "GroupRejectedSenderDirectoryObjectByRef" }, { "apiVersion": "v1.0", "modules": [ - "Identity.Governance" + "Identity.SignIns" ], - "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/environment", + "method": "DELETE", + "uri": "/identity/b2xuserflows/{}/userflowidentityproviders/{}/$ref", "action": "rename", "evidence": { "shipsAs": [ - "Get-MgEntitlementManagementCatalogResourceRoleResourceEnvironment" + [ + "Remove-MgIdentityB2XUserFlowIdentityProviderBaseByRef" + ] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource/environment" + "/identity/b2xuserflows/{}/userflowidentityproviders/$ref" ], "counterpartShipsAs": [] }, - "replacementNoun": "EntitlementManagementCatalogResourceRoleResourceEnvironment" + "replacementNoun": "IdentityB2XUserFlowIdentityProviderBaseByRef" }, { "apiVersion": "v1.0", "modules": [ "Identity.Governance" ], - "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/incompatibleaccesspackages/$ref", "action": "rename", "evidence": { "shipsAs": [ - "Get-MgEntitlementManagementCatalogResourceRoleResourceScope" + [ + "Remove-MgEntitlementManagementAccessPackageIncompatibleAccessPackageByRef" + ] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes/{}", - "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource/scopes", - "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource/scopes/{}" + "/identitygovernance/entitlementmanagement/accesspackages/{}/incompatibleaccesspackages/{}/$ref" ], - "counterpartShipsAs": [ - "Get-MgEntitlementManagementCatalogResourceRoleResourceScope" - ] + "counterpartShipsAs": [] }, - "replacementNoun": "EntitlementManagementCatalogResourceRoleResourceScope" + "replacementNoun": "EntitlementManagementAccessPackageIncompatibleAccessPackageByRef" }, { "apiVersion": "v1.0", "modules": [ "Identity.Governance" ], - "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes/{}", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/incompatiblegroups/$ref", "action": "rename", "evidence": { "shipsAs": [ - "Get-MgEntitlementManagementCatalogResourceRoleResourceScope" + [ + "Remove-MgEntitlementManagementAccessPackageIncompatibleGroupByRef" + ] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes" + "/identitygovernance/entitlementmanagement/accesspackages/{}/incompatiblegroups/{}/$ref" ], - "counterpartShipsAs": [ - "Get-MgEntitlementManagementCatalogResourceRoleResourceScope" - ] + "counterpartShipsAs": [] }, - "replacementNoun": "EntitlementManagementCatalogResourceRoleResourceScope" + "replacementNoun": "EntitlementManagementAccessPackageIncompatibleGroupByRef" }, { "apiVersion": "v1.0", "modules": [ "Identity.Governance" ], - "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes/{}/resource", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}", "action": "rename", "evidence": { "shipsAs": [ - "Get-MgEntitlementManagementCatalogResourceRoleResourceScopeResource" + [ + "Remove-MgEntitlementManagementCatalogResourceRole" + ] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource/scopes/{}/resource" + "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}" ], "counterpartShipsAs": [] }, - "replacementNoun": "EntitlementManagementCatalogResourceRoleResourceScopeResource" + "replacementNoun": "EntitlementManagementCatalogResourceRole" }, { "apiVersion": "v1.0", "modules": [ "Identity.Governance" ], - "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes/{}/resource/environment", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource", "action": "rename", "evidence": { "shipsAs": [ - "Get-MgEntitlementManagementCatalogResourceRoleResourceScopeResourceEnvironment" + [ + "Remove-MgEntitlementManagementCatalogResourceRoleResource" + ] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource/scopes/{}/resource/environment" + "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource" ], "counterpartShipsAs": [] }, - "replacementNoun": "EntitlementManagementCatalogResourceRoleResourceScopeResourceEnvironment" + "replacementNoun": "EntitlementManagementCatalogResourceRoleResource" }, { "apiVersion": "v1.0", "modules": [ "Identity.Governance" ], - "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes/{}", "action": "rename", "evidence": { "shipsAs": [ - "Get-MgEntitlementManagementCatalogResourceScopeResource" + [ + "Remove-MgEntitlementManagementCatalogResourceRoleResourceScope" + ] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource" + "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource/scopes/{}" ], "counterpartShipsAs": [] }, - "replacementNoun": "EntitlementManagementCatalogResourceScopeResource" + "replacementNoun": "EntitlementManagementCatalogResourceRoleResourceScope" }, { "apiVersion": "v1.0", "modules": [ "Identity.Governance" ], - "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/environment", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes/{}/resource", "action": "rename", "evidence": { "shipsAs": [ - "Get-MgEntitlementManagementCatalogResourceScopeResourceEnvironment" + [ + "Remove-MgEntitlementManagementCatalogResourceRoleResourceScopeResource" + ] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/environment" + "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource/scopes/{}/resource" ], "counterpartShipsAs": [] }, - "replacementNoun": "EntitlementManagementCatalogResourceScopeResourceEnvironment" + "replacementNoun": "EntitlementManagementCatalogResourceRoleResourceScopeResource" }, { "apiVersion": "v1.0", "modules": [ "Identity.Governance" ], - "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource", "action": "rename", "evidence": { "shipsAs": [ - "Get-MgEntitlementManagementCatalogResourceScopeResourceRole" + [ + "Remove-MgEntitlementManagementCatalogResourceScopeResource" + ] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles/{}", - "/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/roles", - "/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/roles/{}" + "/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource" ], - "counterpartShipsAs": [ - "Get-MgEntitlementManagementCatalogResourceScopeResourceRole" - ] + "counterpartShipsAs": [] }, - "replacementNoun": "EntitlementManagementCatalogResourceScopeResourceRole" + "replacementNoun": "EntitlementManagementCatalogResourceScopeResource" }, { "apiVersion": "v1.0", "modules": [ "Identity.Governance" ], - "method": "GET", + "method": "DELETE", "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles/{}", "action": "rename", "evidence": { "shipsAs": [ - "Get-MgEntitlementManagementCatalogResourceScopeResourceRole" + [ + "Remove-MgEntitlementManagementCatalogResourceScopeResourceRole" + ] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles" + "/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/roles/{}" ], - "counterpartShipsAs": [ - "Get-MgEntitlementManagementCatalogResourceScopeResourceRole" - ] + "counterpartShipsAs": [] }, "replacementNoun": "EntitlementManagementCatalogResourceScopeResourceRole" }, @@ -554,12 +592,14 @@ "modules": [ "Identity.Governance" ], - "method": "GET", + "method": "DELETE", "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles/{}/resource", "action": "rename", "evidence": { "shipsAs": [ - "Get-MgEntitlementManagementCatalogResourceScopeResourceRoleResource" + [ + "Remove-MgEntitlementManagementCatalogResourceScopeResourceRoleResource" + ] ], "counterpartUris": [ "/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/roles/{}/resource" @@ -573,78 +613,82 @@ "modules": [ "Identity.Governance" ], - "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles/{}/resource/environment", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}", "action": "rename", "evidence": { "shipsAs": [ - "Get-MgEntitlementManagementCatalogResourceScopeResourceRoleResourceEnvironment" + [ + "Remove-MgEntitlementManagementCatalogResourceScope" + ] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/roles/{}/resource/environment" + "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}" ], "counterpartShipsAs": [] }, - "replacementNoun": "EntitlementManagementCatalogResourceScopeResourceRoleResourceEnvironment" + "replacementNoun": "EntitlementManagementCatalogResourceScope" }, { "apiVersion": "v1.0", "modules": [ "Identity.Governance" ], - "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/connectedorganizations/{}/externalsponsors/{}/$ref", "action": "rename", "evidence": { "shipsAs": [ - "Get-MgEntitlementManagementCatalogResourceScope" + [ + "Remove-MgEntitlementManagementConnectedOrganizationExternalSponsorDirectoryObjectByRef" + ] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes" + "/identitygovernance/entitlementmanagement/connectedorganizations/{}/externalsponsors/$ref" ], "counterpartShipsAs": [] }, - "replacementNoun": "EntitlementManagementCatalogResourceScope" + "replacementNoun": "EntitlementManagementConnectedOrganizationExternalSponsorDirectoryObjectByRef" }, { "apiVersion": "v1.0", "modules": [ "Identity.Governance" ], - "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/connectedorganizations/{}/internalsponsors/{}/$ref", "action": "rename", "evidence": { "shipsAs": [ - "Get-MgEntitlementManagementCatalogResourceScope" + [ + "Remove-MgEntitlementManagementConnectedOrganizationInternalSponsorDirectoryObjectByRef" + ] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes" + "/identitygovernance/entitlementmanagement/connectedorganizations/{}/internalsponsors/$ref" ], "counterpartShipsAs": [] }, - "replacementNoun": "EntitlementManagementCatalogResourceScope" + "replacementNoun": "EntitlementManagementConnectedOrganizationInternalSponsorDirectoryObjectByRef" }, { "apiVersion": "v1.0", "modules": [ "Identity.Governance" ], - "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}", "action": "rename", "evidence": { "shipsAs": [ - "Get-MgEntitlementManagementResourceRequestCatalogResourceRole" + [ + "Remove-MgEntitlementManagementResourceRequestCatalogResourceRole" + ] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}", - "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles", "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}" ], - "counterpartShipsAs": [ - "Get-MgEntitlementManagementResourceRequestCatalogResourceRole" - ] + "counterpartShipsAs": [] }, "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceRole" }, @@ -653,221 +697,1389 @@ "modules": [ "Identity.Governance" ], - "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource", "action": "rename", "evidence": { "shipsAs": [ - "Get-MgEntitlementManagementResourceRequestCatalogResourceRole" + [ + "Remove-MgEntitlementManagementResourceRequestCatalogResourceRoleResource" + ] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles" + "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource" ], - "counterpartShipsAs": [ - "Get-MgEntitlementManagementResourceRequestCatalogResourceRole" - ] + "counterpartShipsAs": [] }, - "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceRole" + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceRoleResource" }, { "apiVersion": "v1.0", "modules": [ "Identity.Governance" ], - "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes/{}", "action": "rename", "evidence": { "shipsAs": [ - "Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResource" + [ + "Remove-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScope" + ] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource" + "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource/scopes/{}" ], "counterpartShipsAs": [] }, - "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceRoleResource" + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceRoleResourceScope" }, { "apiVersion": "v1.0", "modules": [ "Identity.Governance" ], - "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/environment", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes/{}/resource", "action": "rename", "evidence": { "shipsAs": [ - "Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceEnvironment" + [ + "Remove-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResource" + ] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource/environment" + "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource/scopes/{}/resource" ], "counterpartShipsAs": [] }, - "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceRoleResourceEnvironment" + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResource" }, { "apiVersion": "v1.0", "modules": [ "Identity.Governance" ], - "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource", "action": "rename", "evidence": { "shipsAs": [ - "Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScope" + [ + "Remove-MgEntitlementManagementResourceRequestCatalogResourceScopeResource" + ] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes/{}", - "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource/scopes", - "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource/scopes/{}" + "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource" ], - "counterpartShipsAs": [ - "Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScope" - ] + "counterpartShipsAs": [] }, - "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceRoleResourceScope" + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceScopeResource" }, { "apiVersion": "v1.0", "modules": [ "Identity.Governance" ], - "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes/{}", - "action": "rename", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles/{}", + "action": "rename", + "evidence": { + "shipsAs": [ + [ + "Remove-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRole" + ] + ], + "counterpartUris": [ + "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/roles/{}" + ], + "counterpartShipsAs": [] + }, + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceScopeResourceRole" + }, + { + "apiVersion": "v1.0", + "modules": [ + "Identity.Governance" + ], + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles/{}/resource", + "action": "rename", + "evidence": { + "shipsAs": [ + [ + "Remove-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResource" + ] + ], + "counterpartUris": [ + "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/roles/{}/resource" + ], + "counterpartShipsAs": [] + }, + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResource" + }, + { + "apiVersion": "v1.0", + "modules": [ + "Identity.Governance" + ], + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}", + "action": "rename", + "evidence": { + "shipsAs": [ + [ + "Remove-MgEntitlementManagementResourceRequestCatalogResourceScope" + ] + ], + "counterpartUris": [ + "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}" + ], + "counterpartShipsAs": [] + }, + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceScope" + }, + { + "apiVersion": "v1.0", + "modules": [ + "Identity.SignIns" + ], + "method": "DELETE", + "uri": "/policies/featurerolloutpolicies/{}/appliesto/{}/$ref", + "action": "rename", + "evidence": { + "shipsAs": [ + [ + "Remove-MgPolicyFeatureRolloutPolicyApplyToDirectoryObjectByRef" + ] + ], + "counterpartUris": [ + "/policies/featurerolloutpolicies/{}/appliesto/$ref" + ], + "counterpartShipsAs": [] + }, + "replacementNoun": "PolicyFeatureRolloutPolicyApplyToDirectoryObjectByRef" + }, + { + "apiVersion": "v1.0", + "modules": [ + "Applications" + ], + "method": "DELETE", + "uri": "/serviceprincipals/{}/claimsmappingpolicies/{}/$ref", + "action": "rename", + "evidence": { + "shipsAs": [ + [ + "Remove-MgServicePrincipalClaimMappingPolicyClaimMappingPolicyByRef" + ] + ], + "counterpartUris": [ + "/serviceprincipals/{}/claimsmappingpolicies/$ref" + ], + "counterpartShipsAs": [] + }, + "replacementNoun": "ServicePrincipalClaimMappingPolicyClaimMappingPolicyByRef" + }, + { + "apiVersion": "v1.0", + "modules": [ + "Applications" + ], + "method": "DELETE", + "uri": "/serviceprincipals/{}/homerealmdiscoverypolicies/{}/$ref", + "action": "rename", + "evidence": { + "shipsAs": [ + [ + "Remove-MgServicePrincipalHomeRealmDiscoveryPolicyHomeRealmDiscoveryPolicyByRef" + ] + ], + "counterpartUris": [ + "/serviceprincipals/{}/homerealmdiscoverypolicies/$ref" + ], + "counterpartShipsAs": [] + }, + "replacementNoun": "ServicePrincipalHomeRealmDiscoveryPolicyHomeRealmDiscoveryPolicyByRef" + }, + { + "apiVersion": "v1.0", + "modules": [ + "Applications" + ], + "method": "DELETE", + "uri": "/serviceprincipals/{}/owners/{}/$ref", + "action": "rename", + "evidence": { + "shipsAs": [ + [ + "Remove-MgServicePrincipalOwnerDirectoryObjectByRef" + ] + ], + "counterpartUris": [ + "/serviceprincipals/{}/owners/$ref" + ], + "counterpartShipsAs": [] + }, + "replacementNoun": "ServicePrincipalOwnerDirectoryObjectByRef" + }, + { + "apiVersion": "v1.0", + "modules": [ + "Applications" + ], + "method": "DELETE", + "uri": "/serviceprincipals/{}/tokenissuancepolicies/{}/$ref", + "action": "rename", + "evidence": { + "shipsAs": [ + [ + "Remove-MgServicePrincipalTokenIssuancePolicyTokenIssuancePolicyByRef" + ] + ], + "counterpartUris": [ + "/serviceprincipals/{}/tokenissuancepolicies/$ref" + ], + "counterpartShipsAs": [ + "Remove-MgServicePrincipalTokenIssuancePolicyByRef" + ] + }, + "replacementNoun": "ServicePrincipalTokenIssuancePolicyTokenIssuancePolicyByRef" + }, + { + "apiVersion": "v1.0", + "modules": [ + "Applications" + ], + "method": "DELETE", + "uri": "/serviceprincipals/{}/tokenlifetimepolicies/{}/$ref", + "action": "rename", + "evidence": { + "shipsAs": [ + [ + "Remove-MgServicePrincipalTokenLifetimePolicyTokenLifetimePolicyByRef" + ] + ], + "counterpartUris": [ + "/serviceprincipals/{}/tokenlifetimepolicies/$ref" + ], + "counterpartShipsAs": [ + "Remove-MgServicePrincipalTokenLifetimePolicyByRef" + ] + }, + "replacementNoun": "ServicePrincipalTokenLifetimePolicyTokenLifetimePolicyByRef" + }, + { + "apiVersion": "v1.0", + "modules": [ + "Users" + ], + "method": "DELETE", + "uri": "/users/{}/sponsors/{}/$ref", + "action": "rename", + "evidence": { + "shipsAs": [ + [ + "Remove-MgUserSponsorDirectoryObjectByRef" + ] + ], + "counterpartUris": [ + "/users/{}/sponsors/$ref" + ], + "counterpartShipsAs": [ + "Remove-MgUserSponsorByRef" + ] + }, + "replacementNoun": "UserSponsorDirectoryObjectByRef" + }, + { + "apiVersion": "v1.0", + "modules": [ + "Sites" + ], + "method": "GET", + "uri": "/groups/{}/sites/{}/sites/$count", + "action": "rename", + "evidence": { + "shipsAs": [ + [ + "Get-MgGroupSubSiteCount" + ] + ], + "counterpartUris": [ + "/groups/{}/sites/$count" + ], + "counterpartShipsAs": [ + "Get-MgGroupSiteCount" + ] + }, + "replacementNoun": "GroupSubSiteCount" + }, + { + "apiVersion": "v1.0", + "modules": [ + "Identity.Governance" + ], + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles", + "action": "rename", + "evidence": { + "shipsAs": [ + [ + "Get-MgEntitlementManagementCatalogResourceRole" + ] + ], + "counterpartUris": [ + "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}", + "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles", + "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}" + ], + "counterpartShipsAs": [ + "Get-MgEntitlementManagementCatalogResourceRole" + ] + }, + "replacementNoun": "EntitlementManagementCatalogResourceRole" + }, + { + "apiVersion": "v1.0", + "modules": [ + "Identity.Governance" + ], + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}", + "action": "rename", + "evidence": { + "shipsAs": [ + [ + "Get-MgEntitlementManagementCatalogResourceRole" + ] + ], + "counterpartUris": [ + "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles" + ], + "counterpartShipsAs": [ + "Get-MgEntitlementManagementCatalogResourceRole" + ] + }, + "replacementNoun": "EntitlementManagementCatalogResourceRole" + }, + { + "apiVersion": "v1.0", + "modules": [ + "Identity.Governance" + ], + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource", + "action": "rename", + "evidence": { + "shipsAs": [ + [ + "Get-MgEntitlementManagementCatalogResourceRoleResource" + ] + ], + "counterpartUris": [ + "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource" + ], + "counterpartShipsAs": [] + }, + "replacementNoun": "EntitlementManagementCatalogResourceRoleResource" + }, + { + "apiVersion": "v1.0", + "modules": [ + "Identity.Governance" + ], + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/environment", + "action": "rename", + "evidence": { + "shipsAs": [ + [ + "Get-MgEntitlementManagementCatalogResourceRoleResourceEnvironment" + ] + ], + "counterpartUris": [ + "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource/environment" + ], + "counterpartShipsAs": [] + }, + "replacementNoun": "EntitlementManagementCatalogResourceRoleResourceEnvironment" + }, + { + "apiVersion": "v1.0", + "modules": [ + "Identity.Governance" + ], + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes", + "action": "rename", + "evidence": { + "shipsAs": [ + [ + "Get-MgEntitlementManagementCatalogResourceRoleResourceScope" + ] + ], + "counterpartUris": [ + "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes/{}", + "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource/scopes", + "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource/scopes/{}" + ], + "counterpartShipsAs": [ + "Get-MgEntitlementManagementCatalogResourceRoleResourceScope" + ] + }, + "replacementNoun": "EntitlementManagementCatalogResourceRoleResourceScope" + }, + { + "apiVersion": "v1.0", + "modules": [ + "Identity.Governance" + ], + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes/{}", + "action": "rename", + "evidence": { + "shipsAs": [ + [ + "Get-MgEntitlementManagementCatalogResourceRoleResourceScope" + ] + ], + "counterpartUris": [ + "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes" + ], + "counterpartShipsAs": [ + "Get-MgEntitlementManagementCatalogResourceRoleResourceScope" + ] + }, + "replacementNoun": "EntitlementManagementCatalogResourceRoleResourceScope" + }, + { + "apiVersion": "v1.0", + "modules": [ + "Identity.Governance" + ], + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes/{}/resource", + "action": "rename", + "evidence": { + "shipsAs": [ + [ + "Get-MgEntitlementManagementCatalogResourceRoleResourceScopeResource" + ] + ], + "counterpartUris": [ + "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource/scopes/{}/resource" + ], + "counterpartShipsAs": [] + }, + "replacementNoun": "EntitlementManagementCatalogResourceRoleResourceScopeResource" + }, + { + "apiVersion": "v1.0", + "modules": [ + "Identity.Governance" + ], + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes/{}/resource/environment", + "action": "rename", + "evidence": { + "shipsAs": [ + [ + "Get-MgEntitlementManagementCatalogResourceRoleResourceScopeResourceEnvironment" + ] + ], + "counterpartUris": [ + "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource/scopes/{}/resource/environment" + ], + "counterpartShipsAs": [] + }, + "replacementNoun": "EntitlementManagementCatalogResourceRoleResourceScopeResourceEnvironment" + }, + { + "apiVersion": "v1.0", + "modules": [ + "Identity.Governance" + ], + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes/$count", + "action": "rename", + "evidence": { + "shipsAs": [ + [ + "Get-MgEntitlementManagementCatalogResourceRoleResourceScopeCount" + ] + ], + "counterpartUris": [ + "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource/scopes/$count" + ], + "counterpartShipsAs": [] + }, + "replacementNoun": "EntitlementManagementCatalogResourceRoleResourceScopeCount" + }, + { + "apiVersion": "v1.0", + "modules": [ + "Identity.Governance" + ], + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/$count", + "action": "rename", + "evidence": { + "shipsAs": [ + [ + "Get-MgEntitlementManagementCatalogResourceRoleCount" + ] + ], + "counterpartUris": [ + "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/$count" + ], + "counterpartShipsAs": [] + }, + "replacementNoun": "EntitlementManagementCatalogResourceRoleCount" + }, + { + "apiVersion": "v1.0", + "modules": [ + "Identity.Governance" + ], + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource", + "action": "rename", + "evidence": { + "shipsAs": [ + [ + "Get-MgEntitlementManagementCatalogResourceScopeResource" + ] + ], + "counterpartUris": [ + "/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource" + ], + "counterpartShipsAs": [] + }, + "replacementNoun": "EntitlementManagementCatalogResourceScopeResource" + }, + { + "apiVersion": "v1.0", + "modules": [ + "Identity.Governance" + ], + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/environment", + "action": "rename", + "evidence": { + "shipsAs": [ + [ + "Get-MgEntitlementManagementCatalogResourceScopeResourceEnvironment" + ] + ], + "counterpartUris": [ + "/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/environment" + ], + "counterpartShipsAs": [] + }, + "replacementNoun": "EntitlementManagementCatalogResourceScopeResourceEnvironment" + }, + { + "apiVersion": "v1.0", + "modules": [ + "Identity.Governance" + ], + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles", + "action": "rename", + "evidence": { + "shipsAs": [ + [ + "Get-MgEntitlementManagementCatalogResourceScopeResourceRole" + ] + ], + "counterpartUris": [ + "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles/{}", + "/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/roles", + "/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/roles/{}" + ], + "counterpartShipsAs": [ + "Get-MgEntitlementManagementCatalogResourceScopeResourceRole" + ] + }, + "replacementNoun": "EntitlementManagementCatalogResourceScopeResourceRole" + }, + { + "apiVersion": "v1.0", + "modules": [ + "Identity.Governance" + ], + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles/{}", + "action": "rename", + "evidence": { + "shipsAs": [ + [ + "Get-MgEntitlementManagementCatalogResourceScopeResourceRole" + ] + ], + "counterpartUris": [ + "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles" + ], + "counterpartShipsAs": [ + "Get-MgEntitlementManagementCatalogResourceScopeResourceRole" + ] + }, + "replacementNoun": "EntitlementManagementCatalogResourceScopeResourceRole" + }, + { + "apiVersion": "v1.0", + "modules": [ + "Identity.Governance" + ], + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles/{}/resource", + "action": "rename", + "evidence": { + "shipsAs": [ + [ + "Get-MgEntitlementManagementCatalogResourceScopeResourceRoleResource" + ] + ], + "counterpartUris": [ + "/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/roles/{}/resource" + ], + "counterpartShipsAs": [] + }, + "replacementNoun": "EntitlementManagementCatalogResourceScopeResourceRoleResource" + }, + { + "apiVersion": "v1.0", + "modules": [ + "Identity.Governance" + ], + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles/{}/resource/environment", + "action": "rename", + "evidence": { + "shipsAs": [ + [ + "Get-MgEntitlementManagementCatalogResourceScopeResourceRoleResourceEnvironment" + ] + ], + "counterpartUris": [ + "/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/roles/{}/resource/environment" + ], + "counterpartShipsAs": [] + }, + "replacementNoun": "EntitlementManagementCatalogResourceScopeResourceRoleResourceEnvironment" + }, + { + "apiVersion": "v1.0", + "modules": [ + "Identity.Governance" + ], + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles/$count", + "action": "rename", + "evidence": { + "shipsAs": [ + [ + "Get-MgEntitlementManagementCatalogResourceScopeResourceRoleCount" + ] + ], + "counterpartUris": [ + "/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/roles/$count" + ], + "counterpartShipsAs": [] + }, + "replacementNoun": "EntitlementManagementCatalogResourceScopeResourceRoleCount" + }, + { + "apiVersion": "v1.0", + "modules": [ + "Identity.Governance" + ], + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/$count", + "action": "rename", + "evidence": { + "shipsAs": [ + [ + "Get-MgEntitlementManagementCatalogResourceScopeCount" + ] + ], + "counterpartUris": [ + "/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/$count" + ], + "counterpartShipsAs": [] + }, + "replacementNoun": "EntitlementManagementCatalogResourceScopeCount" + }, + { + "apiVersion": "v1.0", + "modules": [ + "Identity.Governance" + ], + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes", + "action": "rename", + "evidence": { + "shipsAs": [ + [ + "Get-MgEntitlementManagementCatalogResourceScope" + ] + ], + "counterpartUris": [ + "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes" + ], + "counterpartShipsAs": [] + }, + "replacementNoun": "EntitlementManagementCatalogResourceScope" + }, + { + "apiVersion": "v1.0", + "modules": [ + "Identity.Governance" + ], + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}", + "action": "rename", + "evidence": { + "shipsAs": [ + [ + "Get-MgEntitlementManagementCatalogResourceScope" + ] + ], + "counterpartUris": [ + "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes" + ], + "counterpartShipsAs": [] + }, + "replacementNoun": "EntitlementManagementCatalogResourceScope" + }, + { + "apiVersion": "v1.0", + "modules": [ + "Identity.Governance" + ], + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles", + "action": "rename", + "evidence": { + "shipsAs": [ + [ + "Get-MgEntitlementManagementResourceRequestCatalogResourceRole" + ] + ], + "counterpartUris": [ + "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}", + "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles", + "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}" + ], + "counterpartShipsAs": [ + "Get-MgEntitlementManagementResourceRequestCatalogResourceRole" + ] + }, + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceRole" + }, + { + "apiVersion": "v1.0", + "modules": [ + "Identity.Governance" + ], + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}", + "action": "rename", + "evidence": { + "shipsAs": [ + [ + "Get-MgEntitlementManagementResourceRequestCatalogResourceRole" + ] + ], + "counterpartUris": [ + "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles" + ], + "counterpartShipsAs": [ + "Get-MgEntitlementManagementResourceRequestCatalogResourceRole" + ] + }, + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceRole" + }, + { + "apiVersion": "v1.0", + "modules": [ + "Identity.Governance" + ], + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource", + "action": "rename", + "evidence": { + "shipsAs": [ + [ + "Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResource" + ] + ], + "counterpartUris": [ + "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource" + ], + "counterpartShipsAs": [] + }, + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceRoleResource" + }, + { + "apiVersion": "v1.0", + "modules": [ + "Identity.Governance" + ], + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/environment", + "action": "rename", + "evidence": { + "shipsAs": [ + [ + "Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceEnvironment" + ] + ], + "counterpartUris": [ + "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource/environment" + ], + "counterpartShipsAs": [] + }, + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceRoleResourceEnvironment" + }, + { + "apiVersion": "v1.0", + "modules": [ + "Identity.Governance" + ], + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes", + "action": "rename", + "evidence": { + "shipsAs": [ + [ + "Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScope" + ] + ], + "counterpartUris": [ + "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes/{}", + "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource/scopes", + "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource/scopes/{}" + ], + "counterpartShipsAs": [ + "Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScope" + ] + }, + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceRoleResourceScope" + }, + { + "apiVersion": "v1.0", + "modules": [ + "Identity.Governance" + ], + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes/{}", + "action": "rename", + "evidence": { + "shipsAs": [ + [ + "Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScope" + ] + ], + "counterpartUris": [ + "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes" + ], + "counterpartShipsAs": [ + "Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScope" + ] + }, + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceRoleResourceScope" + }, + { + "apiVersion": "v1.0", + "modules": [ + "Identity.Governance" + ], + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes/{}/resource", + "action": "rename", + "evidence": { + "shipsAs": [ + [ + "Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResource" + ] + ], + "counterpartUris": [ + "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource/scopes/{}/resource" + ], + "counterpartShipsAs": [] + }, + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResource" + }, + { + "apiVersion": "v1.0", + "modules": [ + "Identity.Governance" + ], + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes/{}/resource/environment", + "action": "rename", + "evidence": { + "shipsAs": [ + [ + "Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceEnvironment" + ] + ], + "counterpartUris": [ + "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource/scopes/{}/resource/environment" + ], + "counterpartShipsAs": [] + }, + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceEnvironment" + }, + { + "apiVersion": "v1.0", + "modules": [ + "Identity.Governance" + ], + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes/$count", + "action": "rename", + "evidence": { + "shipsAs": [ + [ + "Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeCount" + ] + ], + "counterpartUris": [ + "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource/scopes/$count" + ], + "counterpartShipsAs": [] + }, + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceRoleResourceScopeCount" + }, + { + "apiVersion": "v1.0", + "modules": [ + "Identity.Governance" + ], + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/$count", + "action": "rename", + "evidence": { + "shipsAs": [ + [ + "Get-MgEntitlementManagementResourceRequestCatalogResourceRoleCount" + ] + ], + "counterpartUris": [ + "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/$count" + ], + "counterpartShipsAs": [] + }, + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceRoleCount" + }, + { + "apiVersion": "v1.0", + "modules": [ + "Identity.Governance" + ], + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource", + "action": "rename", + "evidence": { + "shipsAs": [ + [ + "Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResource" + ] + ], + "counterpartUris": [ + "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource" + ], + "counterpartShipsAs": [] + }, + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceScopeResource" + }, + { + "apiVersion": "v1.0", + "modules": [ + "Identity.Governance" + ], + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/environment", + "action": "rename", + "evidence": { + "shipsAs": [ + [ + "Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceEnvironment" + ] + ], + "counterpartUris": [ + "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/environment" + ], + "counterpartShipsAs": [] + }, + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceScopeResourceEnvironment" + }, + { + "apiVersion": "v1.0", + "modules": [ + "Identity.Governance" + ], + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles", + "action": "rename", + "evidence": { + "shipsAs": [ + [ + "Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRole" + ] + ], + "counterpartUris": [ + "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles/{}", + "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/roles", + "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/roles/{}" + ], + "counterpartShipsAs": [ + "Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRole" + ] + }, + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceScopeResourceRole" + }, + { + "apiVersion": "v1.0", + "modules": [ + "Identity.Governance" + ], + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles/{}", + "action": "rename", + "evidence": { + "shipsAs": [ + [ + "Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRole" + ] + ], + "counterpartUris": [ + "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles" + ], + "counterpartShipsAs": [ + "Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRole" + ] + }, + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceScopeResourceRole" + }, + { + "apiVersion": "v1.0", + "modules": [ + "Identity.Governance" + ], + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles/{}/resource", + "action": "rename", + "evidence": { + "shipsAs": [ + [ + "Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResource" + ] + ], + "counterpartUris": [ + "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/roles/{}/resource" + ], + "counterpartShipsAs": [] + }, + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResource" + }, + { + "apiVersion": "v1.0", + "modules": [ + "Identity.Governance" + ], + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles/{}/resource/environment", + "action": "rename", + "evidence": { + "shipsAs": [ + [ + "Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceEnvironment" + ] + ], + "counterpartUris": [ + "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/roles/{}/resource/environment" + ], + "counterpartShipsAs": [] + }, + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceEnvironment" + }, + { + "apiVersion": "v1.0", + "modules": [ + "Identity.Governance" + ], + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles/$count", + "action": "rename", + "evidence": { + "shipsAs": [ + [ + "Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleCount" + ] + ], + "counterpartUris": [ + "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/roles/$count" + ], + "counterpartShipsAs": [] + }, + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceScopeResourceRoleCount" + }, + { + "apiVersion": "v1.0", + "modules": [ + "Identity.Governance" + ], + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/$count", + "action": "rename", + "evidence": { + "shipsAs": [ + [ + "Get-MgEntitlementManagementResourceRequestCatalogResourceScopeCount" + ] + ], + "counterpartUris": [ + "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/$count" + ], + "counterpartShipsAs": [] + }, + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceScopeCount" + }, + { + "apiVersion": "v1.0", + "modules": [ + "Identity.Governance" + ], + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes", + "action": "rename", + "evidence": { + "shipsAs": [ + [ + "Get-MgEntitlementManagementResourceRequestCatalogResourceScope" + ] + ], + "counterpartUris": [ + "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes" + ], + "counterpartShipsAs": [] + }, + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceScope" + }, + { + "apiVersion": "v1.0", + "modules": [ + "Identity.Governance" + ], + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}", + "action": "rename", + "evidence": { + "shipsAs": [ + [ + "Get-MgEntitlementManagementResourceRequestCatalogResourceScope" + ] + ], + "counterpartUris": [ + "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes" + ], + "counterpartShipsAs": [] + }, + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceScope" + }, + { + "apiVersion": "v1.0", + "modules": [ + "Sites" + ], + "method": "GET", + "uri": "/sites/{}/sites/$count", + "action": "rename", + "evidence": { + "shipsAs": [ + [ + "Get-MgSubSiteCount" + ] + ], + "counterpartUris": [ + "/sites/$count" + ], + "counterpartShipsAs": [ + "Get-MgSiteCount" + ] + }, + "replacementNoun": "SubSiteCount" + }, + { + "apiVersion": "v1.0", + "modules": [ + "Calendar" + ], + "method": "GET", + "uri": "/users/{}/calendar/allowedcalendarsharingroles(user='{}')", + "action": "rename", + "evidence": { + "shipsAs": [ + [ + "Invoke-MgCalendarUserCalendarAllowedCalendarSharingRoles" + ] + ], + "counterpartUris": [ + "/users/{}/calendars/{}/allowedcalendarsharingroles(user='{}')" + ], + "counterpartShipsAs": [] + }, + "replacementNoun": "CalendarUserCalendarAllowedCalendarSharingRoles", + "replacementVerb": "Invoke" + }, + { + "apiVersion": "v1.0", + "modules": [ + "Identity.Governance" + ], + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}", + "action": "rename", "evidence": { "shipsAs": [ - "Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScope" + [ + "Update-MgEntitlementManagementCatalogResourceRole" + ] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes" + "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}" ], - "counterpartShipsAs": [ - "Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScope" - ] + "counterpartShipsAs": [] }, - "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceRoleResourceScope" + "replacementNoun": "EntitlementManagementCatalogResourceRole" }, { "apiVersion": "v1.0", "modules": [ "Identity.Governance" ], - "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes/{}/resource", + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes/{}", "action": "rename", "evidence": { "shipsAs": [ - "Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResource" + [ + "Update-MgEntitlementManagementCatalogResourceRoleResourceScope" + ] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource/scopes/{}/resource" + "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource/scopes/{}" ], "counterpartShipsAs": [] }, - "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResource" + "replacementNoun": "EntitlementManagementCatalogResourceRoleResourceScope" }, { "apiVersion": "v1.0", "modules": [ "Identity.Governance" ], - "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes/{}/resource/environment", + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles/{}", "action": "rename", "evidence": { "shipsAs": [ - "Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceEnvironment" + [ + "Update-MgEntitlementManagementCatalogResourceScopeResourceRole" + ] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource/scopes/{}/resource/environment" + "/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/roles/{}" ], "counterpartShipsAs": [] }, - "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceEnvironment" + "replacementNoun": "EntitlementManagementCatalogResourceScopeResourceRole" }, { "apiVersion": "v1.0", "modules": [ "Identity.Governance" ], - "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource", + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}", "action": "rename", "evidence": { "shipsAs": [ - "Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResource" + [ + "Update-MgEntitlementManagementCatalogResourceScope" + ] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource" + "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}" ], "counterpartShipsAs": [] }, - "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceScopeResource" + "replacementNoun": "EntitlementManagementCatalogResourceScope" }, { "apiVersion": "v1.0", "modules": [ "Identity.Governance" ], - "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/environment", + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}", "action": "rename", "evidence": { "shipsAs": [ - "Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceEnvironment" + [ + "Update-MgEntitlementManagementResourceRequestCatalogResourceRole" + ] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/environment" + "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}" ], "counterpartShipsAs": [] }, - "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceScopeResourceEnvironment" + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceRole" }, { "apiVersion": "v1.0", "modules": [ "Identity.Governance" ], - "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles", + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes/{}", "action": "rename", "evidence": { "shipsAs": [ - "Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRole" + [ + "Update-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScope" + ] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles/{}", - "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/roles", - "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/roles/{}" + "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource/scopes/{}" ], - "counterpartShipsAs": [ - "Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRole" - ] + "counterpartShipsAs": [] }, - "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceScopeResourceRole" + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceRoleResourceScope" }, { "apiVersion": "v1.0", "modules": [ "Identity.Governance" ], - "method": "GET", + "method": "PATCH", "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles/{}", "action": "rename", "evidence": { "shipsAs": [ - "Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRole" + [ + "Update-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRole" + ] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles" + "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/roles/{}" ], - "counterpartShipsAs": [ - "Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRole" - ] + "counterpartShipsAs": [] }, "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceScopeResourceRole" }, @@ -876,91 +2088,104 @@ "modules": [ "Identity.Governance" ], - "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles/{}/resource", + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}", "action": "rename", "evidence": { "shipsAs": [ - "Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResource" + [ + "Update-MgEntitlementManagementResourceRequestCatalogResourceScope" + ] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/roles/{}/resource" + "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}" ], "counterpartShipsAs": [] }, - "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResource" + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceScope" }, { "apiVersion": "v1.0", "modules": [ - "Identity.Governance" + "Applications" ], - "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles/{}/resource/environment", + "method": "POST", + "uri": "/applications/{}/synchronization/jobs/{}/validatecredentials", "action": "rename", "evidence": { "shipsAs": [ - "Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceEnvironment" + [ + "Test-MgApplicationSynchronizationJobCredential" + ] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/roles/{}/resource/environment" + "/applications/{}/synchronization/jobs/validatecredentials" ], "counterpartShipsAs": [] }, - "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceEnvironment" + "replacementNoun": "ApplicationSynchronizationJobCredential", + "replacementVerb": "Test" }, { "apiVersion": "v1.0", "modules": [ - "Identity.Governance" + "Groups" ], - "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes", + "method": "POST", + "uri": "/groups/{}/validateproperties", "action": "rename", "evidence": { "shipsAs": [ - "Get-MgEntitlementManagementResourceRequestCatalogResourceScope" + [ + "Test-MgGroupProperty" + ] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes" + "/groups/validateproperties" ], "counterpartShipsAs": [] }, - "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceScope" + "replacementNoun": "GroupProperty", + "replacementVerb": "Test" }, { "apiVersion": "v1.0", "modules": [ - "Identity.Governance" + "Identity.SignIns" ], - "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}", + "method": "POST", + "uri": "/identity/customauthenticationextensions/{}/validateauthenticationconfiguration", "action": "rename", "evidence": { "shipsAs": [ - "Get-MgEntitlementManagementResourceRequestCatalogResourceScope" + [ + "Test-MgIdentityCustomAuthenticationExtensionAuthenticationConfiguration" + ] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes" + "/identity/customauthenticationextensions/validateauthenticationconfiguration" ], "counterpartShipsAs": [] }, - "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceScope" + "replacementNoun": "IdentityCustomAuthenticationExtensionAuthenticationConfiguration", + "replacementVerb": "Test" }, { "apiVersion": "v1.0", "modules": [ "Identity.Governance" ], - "method": "PATCH", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles", "action": "rename", "evidence": { "shipsAs": [ - "Update-MgEntitlementManagementCatalogResourceRole" + [ + "New-MgEntitlementManagementCatalogResourceRole" + ] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}" + "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles" ], "counterpartShipsAs": [] }, @@ -971,133 +2196,151 @@ "modules": [ "Identity.Governance" ], - "method": "PATCH", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes/{}", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/refresh", "action": "rename", "evidence": { "shipsAs": [ - "Update-MgEntitlementManagementCatalogResourceRoleResourceScope" + [ + "Update-MgEntitlementManagementCatalogResourceRoleResource" + ] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource/scopes/{}" + "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource/refresh" ], "counterpartShipsAs": [] }, - "replacementNoun": "EntitlementManagementCatalogResourceRoleResourceScope" + "replacementNoun": "EntitlementManagementCatalogResourceRoleResource", + "replacementVerb": "Update" }, { "apiVersion": "v1.0", "modules": [ "Identity.Governance" ], - "method": "PATCH", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles/{}", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes", "action": "rename", "evidence": { "shipsAs": [ - "Update-MgEntitlementManagementCatalogResourceScopeResourceRole" + [ + "New-MgEntitlementManagementCatalogResourceRoleResourceScope" + ] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/roles/{}" + "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource/scopes" ], "counterpartShipsAs": [] }, - "replacementNoun": "EntitlementManagementCatalogResourceScopeResourceRole" + "replacementNoun": "EntitlementManagementCatalogResourceRoleResourceScope" }, { "apiVersion": "v1.0", "modules": [ "Identity.Governance" ], - "method": "PATCH", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes/{}/resource/refresh", "action": "rename", "evidence": { "shipsAs": [ - "Update-MgEntitlementManagementCatalogResourceScope" + [ + "Update-MgEntitlementManagementCatalogResourceRoleResourceScopeResource" + ] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}" + "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource/scopes/{}/resource/refresh" ], "counterpartShipsAs": [] }, - "replacementNoun": "EntitlementManagementCatalogResourceScope" + "replacementNoun": "EntitlementManagementCatalogResourceRoleResourceScopeResource", + "replacementVerb": "Update" }, { "apiVersion": "v1.0", "modules": [ "Identity.Governance" ], - "method": "PATCH", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/refresh", "action": "rename", "evidence": { "shipsAs": [ - "Update-MgEntitlementManagementResourceRequestCatalogResourceRole" + [ + "Update-MgEntitlementManagementCatalogResourceScopeResource" + ] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}" + "/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/refresh" ], "counterpartShipsAs": [] }, - "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceRole" + "replacementNoun": "EntitlementManagementCatalogResourceScopeResource", + "replacementVerb": "Update" }, { "apiVersion": "v1.0", "modules": [ "Identity.Governance" ], - "method": "PATCH", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes/{}", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles", "action": "rename", "evidence": { "shipsAs": [ - "Update-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScope" + [ + "New-MgEntitlementManagementCatalogResourceScopeResourceRole" + ] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource/scopes/{}" + "/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/roles" ], "counterpartShipsAs": [] }, - "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceRoleResourceScope" + "replacementNoun": "EntitlementManagementCatalogResourceScopeResourceRole" }, { "apiVersion": "v1.0", "modules": [ "Identity.Governance" ], - "method": "PATCH", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles/{}", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles/{}/resource/refresh", "action": "rename", "evidence": { "shipsAs": [ - "Update-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRole" + [ + "Update-MgEntitlementManagementCatalogResourceScopeResourceRoleResource" + ] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/roles/{}" + "/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/roles/{}/resource/refresh" ], "counterpartShipsAs": [] }, - "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceScopeResourceRole" + "replacementNoun": "EntitlementManagementCatalogResourceScopeResourceRoleResource", + "replacementVerb": "Update" }, { "apiVersion": "v1.0", "modules": [ "Identity.Governance" ], - "method": "PATCH", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes", "action": "rename", "evidence": { "shipsAs": [ - "Update-MgEntitlementManagementResourceRequestCatalogResourceScope" + [ + "New-MgEntitlementManagementCatalogResourceScope" + ] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}" + "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes" ], "counterpartShipsAs": [] }, - "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceScope" + "replacementNoun": "EntitlementManagementCatalogResourceScope" }, { "apiVersion": "v1.0", @@ -1105,18 +2348,20 @@ "Identity.Governance" ], "method": "POST", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles", "action": "rename", "evidence": { "shipsAs": [ - "New-MgEntitlementManagementCatalogResourceRole" + [ + "New-MgEntitlementManagementResourceRequestCatalogResourceRole" + ] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles" + "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles" ], "counterpartShipsAs": [] }, - "replacementNoun": "EntitlementManagementCatalogResourceRole" + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceRole" }, { "apiVersion": "v1.0", @@ -1124,18 +2369,21 @@ "Identity.Governance" ], "method": "POST", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/refresh", "action": "rename", "evidence": { "shipsAs": [ - "New-MgEntitlementManagementCatalogResourceRoleResourceScope" + [ + "Update-MgEntitlementManagementResourceRequestCatalogResourceRoleResource" + ] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource/scopes" + "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource/refresh" ], "counterpartShipsAs": [] }, - "replacementNoun": "EntitlementManagementCatalogResourceRoleResourceScope" + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceRoleResource", + "replacementVerb": "Update" }, { "apiVersion": "v1.0", @@ -1143,18 +2391,20 @@ "Identity.Governance" ], "method": "POST", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes", "action": "rename", "evidence": { "shipsAs": [ - "New-MgEntitlementManagementCatalogResourceScopeResourceRole" + [ + "New-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScope" + ] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/roles" + "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource/scopes" ], "counterpartShipsAs": [] }, - "replacementNoun": "EntitlementManagementCatalogResourceScopeResourceRole" + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceRoleResourceScope" }, { "apiVersion": "v1.0", @@ -1162,18 +2412,21 @@ "Identity.Governance" ], "method": "POST", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes/{}/resource/refresh", "action": "rename", "evidence": { "shipsAs": [ - "New-MgEntitlementManagementCatalogResourceScope" + [ + "Update-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResource" + ] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes" + "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource/scopes/{}/resource/refresh" ], "counterpartShipsAs": [] }, - "replacementNoun": "EntitlementManagementCatalogResourceScope" + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResource", + "replacementVerb": "Update" }, { "apiVersion": "v1.0", @@ -1181,18 +2434,21 @@ "Identity.Governance" ], "method": "POST", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/refresh", "action": "rename", "evidence": { "shipsAs": [ - "New-MgEntitlementManagementResourceRequestCatalogResourceRole" + [ + "Update-MgEntitlementManagementResourceRequestCatalogResourceScopeResource" + ] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles" + "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/refresh" ], "counterpartShipsAs": [] }, - "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceRole" + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceScopeResource", + "replacementVerb": "Update" }, { "apiVersion": "v1.0", @@ -1200,18 +2456,20 @@ "Identity.Governance" ], "method": "POST", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles", "action": "rename", "evidence": { "shipsAs": [ - "New-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScope" + [ + "New-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRole" + ] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource/scopes" + "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/roles" ], "counterpartShipsAs": [] }, - "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceRoleResourceScope" + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceScopeResourceRole" }, { "apiVersion": "v1.0", @@ -1219,18 +2477,21 @@ "Identity.Governance" ], "method": "POST", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles/{}/resource/refresh", "action": "rename", "evidence": { "shipsAs": [ - "New-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRole" + [ + "Update-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResource" + ] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/roles" + "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/roles/{}/resource/refresh" ], "counterpartShipsAs": [] }, - "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceScopeResourceRole" + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResource", + "replacementVerb": "Update" }, { "apiVersion": "v1.0", @@ -1242,7 +2503,9 @@ "action": "rename", "evidence": { "shipsAs": [ - "New-MgEntitlementManagementResourceRequestCatalogResourceScope" + [ + "New-MgEntitlementManagementResourceRequestCatalogResourceScope" + ] ], "counterpartUris": [ "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes" @@ -1250,5 +2513,137 @@ "counterpartShipsAs": [] }, "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceScope" + }, + { + "apiVersion": "v1.0", + "modules": [ + "Security" + ], + "method": "POST", + "uri": "/security/cases/ediscoverycases/{}/custodians/{}/microsoft.graph.security.applyhold", + "action": "rename", + "evidence": { + "shipsAs": [ + [ + "Add-MgSecurityCaseEdiscoveryCaseCustodianHold" + ] + ], + "counterpartUris": [ + "/security/cases/ediscoverycases/{}/custodians/microsoft.graph.security.applyhold" + ], + "counterpartShipsAs": [] + }, + "replacementNoun": "SecurityCaseEdiscoveryCaseCustodianHold", + "replacementVerb": "Add" + }, + { + "apiVersion": "v1.0", + "modules": [ + "Security" + ], + "method": "POST", + "uri": "/security/cases/ediscoverycases/{}/custodians/{}/microsoft.graph.security.removehold", + "action": "rename", + "evidence": { + "shipsAs": [ + [ + "Remove-MgSecurityCaseEdiscoveryCaseCustodianHold" + ] + ], + "counterpartUris": [ + "/security/cases/ediscoverycases/{}/custodians/microsoft.graph.security.removehold" + ], + "counterpartShipsAs": [] + }, + "replacementNoun": "SecurityCaseEdiscoveryCaseCustodianHold", + "replacementVerb": "Remove" + }, + { + "apiVersion": "v1.0", + "modules": [ + "Security" + ], + "method": "POST", + "uri": "/security/cases/ediscoverycases/{}/noncustodialdatasources/{}/microsoft.graph.security.applyhold", + "action": "rename", + "evidence": { + "shipsAs": [ + [ + "Add-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold" + ] + ], + "counterpartUris": [ + "/security/cases/ediscoverycases/{}/noncustodialdatasources/microsoft.graph.security.applyhold" + ], + "counterpartShipsAs": [] + }, + "replacementNoun": "SecurityCaseEdiscoveryCaseNoncustodialDataSourceHold", + "replacementVerb": "Add" + }, + { + "apiVersion": "v1.0", + "modules": [ + "Security" + ], + "method": "POST", + "uri": "/security/cases/ediscoverycases/{}/noncustodialdatasources/{}/microsoft.graph.security.removehold", + "action": "rename", + "evidence": { + "shipsAs": [ + [ + "Remove-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold" + ] + ], + "counterpartUris": [ + "/security/cases/ediscoverycases/{}/noncustodialdatasources/microsoft.graph.security.removehold" + ], + "counterpartShipsAs": [] + }, + "replacementNoun": "SecurityCaseEdiscoveryCaseNoncustodialDataSourceHold", + "replacementVerb": "Remove" + }, + { + "apiVersion": "v1.0", + "modules": [ + "Applications" + ], + "method": "POST", + "uri": "/serviceprincipals/{}/synchronization/jobs/{}/validatecredentials", + "action": "rename", + "evidence": { + "shipsAs": [ + [ + "Test-MgServicePrincipalSynchronizationJobCredential" + ] + ], + "counterpartUris": [ + "/serviceprincipals/{}/synchronization/jobs/validatecredentials" + ], + "counterpartShipsAs": [] + }, + "replacementNoun": "ServicePrincipalSynchronizationJobCredential", + "replacementVerb": "Test" + }, + { + "apiVersion": "v1.0", + "modules": [ + "Calendar" + ], + "method": "POST", + "uri": "/users/{}/calendar/permanentdelete", + "action": "rename", + "evidence": { + "shipsAs": [ + [ + "Remove-MgUserCalendarPermanent" + ] + ], + "counterpartUris": [ + "/users/{}/calendars/{}/permanentdelete" + ], + "counterpartShipsAs": [] + }, + "replacementNoun": "UserCalendarPermanent", + "replacementVerb": "Remove" } ] diff --git a/tools/WrapperGenerator/data/collision-resolution-ledger.v1.0.csv b/tools/WrapperGenerator/data/collision-resolution-ledger.v1.0.csv index 4713ff7a9b7..935c9258df3 100644 --- a/tools/WrapperGenerator/data/collision-resolution-ledger.v1.0.csv +++ b/tools/WrapperGenerator/data/collision-resolution-ledger.v1.0.csv @@ -1,366 +1,571 @@ "Method","Uri","Modules","OurName","Action","ShipsAs","CounterpartUris","CounterpartShipsAs" -"DELETE","/groups/{}/settings/{}","Groups","Remove-MgGroupSetting","keep","Remove-MgGroupSetting","/groupsettings/{}","" -"DELETE","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}","Sites","Remove-MgGroupSiteTermStoreGroupSetChild","keep","Remove-MgGroupSiteTermStoreGroupSetChild","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}","" -"DELETE","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}","Sites","Remove-MgGroupSiteTermStoreGroupSetChild","suppress","","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}","Remove-MgGroupSiteTermStoreGroupSetChild" -"DELETE","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations/{}","Sites","Remove-MgGroupSiteTermStoreGroupSetChildRelation","keep","Remove-MgGroupSiteTermStoreGroupSetChildRelation","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations/{}","" -"DELETE","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations/{}","Sites","Remove-MgGroupSiteTermStoreGroupSetChildRelation","suppress","","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations/{}","Remove-MgGroupSiteTermStoreGroupSetChildRelation" -"DELETE","/groups/{}/sites/{}/termstore/sets/{}/children/{}","Sites","Remove-MgGroupSiteTermStoreSetChild","keep","Remove-MgGroupSiteTermStoreSetChild","/groups/{}/sites/{}/termstore/sets/{}/children/{}/children/{}","" -"DELETE","/groups/{}/sites/{}/termstore/sets/{}/children/{}/children/{}","Sites","Remove-MgGroupSiteTermStoreSetChild","suppress","","/groups/{}/sites/{}/termstore/sets/{}/children/{}","Remove-MgGroupSiteTermStoreSetChild" -"DELETE","/groups/{}/sites/{}/termstore/sets/{}/children/{}/children/{}/relations/{}","Sites","Remove-MgGroupSiteTermStoreSetChildRelation","keep","Remove-MgGroupSiteTermStoreSetChildRelation","/groups/{}/sites/{}/termstore/sets/{}/children/{}/relations/{}","" -"DELETE","/groups/{}/sites/{}/termstore/sets/{}/children/{}/relations/{}","Sites","Remove-MgGroupSiteTermStoreSetChildRelation","suppress","","/groups/{}/sites/{}/termstore/sets/{}/children/{}/children/{}/relations/{}","Remove-MgGroupSiteTermStoreSetChildRelation" -"DELETE","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}","Sites","Remove-MgGroupSiteTermStoreSetParentGroupSetChild","keep","Remove-MgGroupSiteTermStoreSetParentGroupSetChild","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}","" -"DELETE","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}","Sites","Remove-MgGroupSiteTermStoreSetParentGroupSetChild","suppress","","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}","Remove-MgGroupSiteTermStoreSetParentGroupSetChild" -"DELETE","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations/{}","Sites","Remove-MgGroupSiteTermStoreSetParentGroupSetChildRelation","keep","Remove-MgGroupSiteTermStoreSetParentGroupSetChildRelation","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations/{}","" -"DELETE","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations/{}","Sites","Remove-MgGroupSiteTermStoreSetParentGroupSetChildRelation","suppress","","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations/{}","Remove-MgGroupSiteTermStoreSetParentGroupSetChildRelation" -"DELETE","/groupsettings/{}","Groups","Remove-MgGroupSetting","suppress","","/groups/{}/settings/{}","Remove-MgGroupSetting" -"DELETE","/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}","Identity.Governance","Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceRole","rename","Remove-MgEntitlementManagementCatalogResourceRole","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}","" -"DELETE","/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource","Identity.Governance","Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResource","rename","Remove-MgEntitlementManagementCatalogResourceRoleResource","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource","" -"DELETE","/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes/{}","Identity.Governance","Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScope","rename","Remove-MgEntitlementManagementCatalogResourceRoleResourceScope","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource/scopes/{}","" -"DELETE","/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes/{}/resource","Identity.Governance","Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResource","rename","Remove-MgEntitlementManagementCatalogResourceRoleResourceScopeResource","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource/scopes/{}/resource","" -"DELETE","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}","Identity.Governance","Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceRole","suppress","","/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}","Remove-MgEntitlementManagementCatalogResourceRole" -"DELETE","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource","Identity.Governance","Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResource","suppress","","/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource","Remove-MgEntitlementManagementCatalogResourceRoleResource" -"DELETE","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource/scopes/{}","Identity.Governance","Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScope","suppress","","/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes/{}","Remove-MgEntitlementManagementCatalogResourceRoleResourceScope" -"DELETE","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource/scopes/{}/resource","Identity.Governance","Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResource","suppress","","/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes/{}/resource","Remove-MgEntitlementManagementCatalogResourceRoleResourceScopeResource" -"DELETE","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}","Identity.Governance","Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceScope","suppress","","/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}","Remove-MgEntitlementManagementCatalogResourceScope" -"DELETE","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource","Identity.Governance","Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResource","rename","Remove-MgEntitlementManagementCatalogResourceScopeResource","/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource","" -"DELETE","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles/{}","Identity.Governance","Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRole","rename","Remove-MgEntitlementManagementCatalogResourceScopeResourceRole","/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/roles/{}","" -"DELETE","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles/{}/resource","Identity.Governance","Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResource","rename","Remove-MgEntitlementManagementCatalogResourceScopeResourceRoleResource","/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/roles/{}/resource","" -"DELETE","/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}","Identity.Governance","Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceScope","rename","Remove-MgEntitlementManagementCatalogResourceScope","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}","" -"DELETE","/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource","Identity.Governance","Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResource","suppress","","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource","Remove-MgEntitlementManagementCatalogResourceScopeResource" -"DELETE","/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/roles/{}","Identity.Governance","Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRole","suppress","","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles/{}","Remove-MgEntitlementManagementCatalogResourceScopeResourceRole" -"DELETE","/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/roles/{}/resource","Identity.Governance","Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResource","suppress","","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles/{}/resource","Remove-MgEntitlementManagementCatalogResourceScopeResourceRoleResource" -"DELETE","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}","Identity.Governance","Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRole","rename","Remove-MgEntitlementManagementResourceRequestCatalogResourceRole","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}","" -"DELETE","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource","Identity.Governance","Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResource","rename","Remove-MgEntitlementManagementResourceRequestCatalogResourceRoleResource","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource","" -"DELETE","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes/{}","Identity.Governance","Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScope","rename","Remove-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScope","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource/scopes/{}","" -"DELETE","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes/{}/resource","Identity.Governance","Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResource","rename","Remove-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResource","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource/scopes/{}/resource","" -"DELETE","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}","Identity.Governance","Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRole","suppress","","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}","Remove-MgEntitlementManagementResourceRequestCatalogResourceRole" -"DELETE","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource","Identity.Governance","Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResource","suppress","","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource","Remove-MgEntitlementManagementResourceRequestCatalogResourceRoleResource" -"DELETE","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource/scopes/{}","Identity.Governance","Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScope","suppress","","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes/{}","Remove-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScope" -"DELETE","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource/scopes/{}/resource","Identity.Governance","Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResource","suppress","","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes/{}/resource","Remove-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResource" -"DELETE","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}","Identity.Governance","Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScope","suppress","","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}","Remove-MgEntitlementManagementResourceRequestCatalogResourceScope" -"DELETE","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource","Identity.Governance","Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResource","rename","Remove-MgEntitlementManagementResourceRequestCatalogResourceScopeResource","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource","" -"DELETE","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles/{}","Identity.Governance","Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRole","rename","Remove-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRole","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/roles/{}","" -"DELETE","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles/{}/resource","Identity.Governance","Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResource","rename","Remove-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResource","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/roles/{}/resource","" -"DELETE","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}","Identity.Governance","Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScope","rename","Remove-MgEntitlementManagementResourceRequestCatalogResourceScope","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}","" -"DELETE","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource","Identity.Governance","Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResource","suppress","","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource","Remove-MgEntitlementManagementResourceRequestCatalogResourceScopeResource" -"DELETE","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/roles/{}","Identity.Governance","Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRole","suppress","","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles/{}","Remove-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRole" -"DELETE","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/roles/{}/resource","Identity.Governance","Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResource","suppress","","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles/{}/resource","Remove-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResource" -"DELETE","/sites/{}/termstore/groups/{}/sets/{}/children/{}","Sites","Remove-MgSiteTermStoreGroupSetChild","keep","Remove-MgSiteTermStoreGroupSetChild","/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}","" -"DELETE","/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}","Sites","Remove-MgSiteTermStoreGroupSetChild","suppress","","/sites/{}/termstore/groups/{}/sets/{}/children/{}","Remove-MgSiteTermStoreGroupSetChild" -"DELETE","/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations/{}","Sites","Remove-MgSiteTermStoreGroupSetChildRelation","keep","Remove-MgSiteTermStoreGroupSetChildRelation","/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations/{}","" -"DELETE","/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations/{}","Sites","Remove-MgSiteTermStoreGroupSetChildRelation","suppress","","/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations/{}","Remove-MgSiteTermStoreGroupSetChildRelation" -"DELETE","/sites/{}/termstore/sets/{}/children/{}","Sites","Remove-MgSiteTermStoreSetChild","keep","Remove-MgSiteTermStoreSetChild","/sites/{}/termstore/sets/{}/children/{}/children/{}","" -"DELETE","/sites/{}/termstore/sets/{}/children/{}/children/{}","Sites","Remove-MgSiteTermStoreSetChild","suppress","","/sites/{}/termstore/sets/{}/children/{}","Remove-MgSiteTermStoreSetChild" -"DELETE","/sites/{}/termstore/sets/{}/children/{}/children/{}/relations/{}","Sites","Remove-MgSiteTermStoreSetChildRelation","keep","Remove-MgSiteTermStoreSetChildRelation","/sites/{}/termstore/sets/{}/children/{}/relations/{}","" -"DELETE","/sites/{}/termstore/sets/{}/children/{}/relations/{}","Sites","Remove-MgSiteTermStoreSetChildRelation","suppress","","/sites/{}/termstore/sets/{}/children/{}/children/{}/relations/{}","Remove-MgSiteTermStoreSetChildRelation" -"DELETE","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}","Sites","Remove-MgSiteTermStoreSetParentGroupSetChild","keep","Remove-MgSiteTermStoreSetParentGroupSetChild","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}","" -"DELETE","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}","Sites","Remove-MgSiteTermStoreSetParentGroupSetChild","suppress","","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}","Remove-MgSiteTermStoreSetParentGroupSetChild" -"DELETE","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations/{}","Sites","Remove-MgSiteTermStoreSetParentGroupSetChildRelation","keep","Remove-MgSiteTermStoreSetParentGroupSetChildRelation","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations/{}","" -"DELETE","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations/{}","Sites","Remove-MgSiteTermStoreSetParentGroupSetChildRelation","suppress","","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations/{}","Remove-MgSiteTermStoreSetParentGroupSetChildRelation" -"GET","/groups/{}/calendar/calendarview","Calendar","Get-MgGroupCalendarView","keep","Get-MgGroupCalendarView","/groups/{}/calendarview","" -"GET","/groups/{}/calendarview","Calendar","Get-MgGroupCalendarView","suppress","","/groups/{}/calendar/calendarview","Get-MgGroupCalendarView" -"GET","/groups/{}/onenote/notebooks/{}/sectiongroups","Notes","Get-MgGroupOnenoteNotebookSectionGroup","keep","Get-MgGroupOnenoteNotebookSectionGroup","/groups/{}/onenote/notebooks/{}/sectiongroups/{};/groups/{}/onenote/notebooks/{}/sectiongroups/{}/sectiongroups;/groups/{}/onenote/notebooks/{}/sectiongroups/{}/sectiongroups/{}","Get-MgGroupOnenoteNotebookSectionGroup" -"GET","/groups/{}/onenote/notebooks/{}/sectiongroups/{}","Notes","Get-MgGroupOnenoteNotebookSectionGroup","keep","Get-MgGroupOnenoteNotebookSectionGroup","/groups/{}/onenote/notebooks/{}/sectiongroups","Get-MgGroupOnenoteNotebookSectionGroup" -"GET","/groups/{}/onenote/notebooks/{}/sectiongroups/{}/sectiongroups","Notes","Get-MgGroupOnenoteNotebookSectionGroup","suppress","","/groups/{}/onenote/notebooks/{}/sectiongroups","Get-MgGroupOnenoteNotebookSectionGroup" -"GET","/groups/{}/onenote/notebooks/{}/sectiongroups/{}/sectiongroups/{}","Notes","Get-MgGroupOnenoteNotebookSectionGroup","suppress","","/groups/{}/onenote/notebooks/{}/sectiongroups","Get-MgGroupOnenoteNotebookSectionGroup" -"GET","/groups/{}/onenote/sectiongroups","Notes","Get-MgGroupOnenoteSectionGroup","keep","Get-MgGroupOnenoteSectionGroup","/groups/{}/onenote/sectiongroups/{};/groups/{}/onenote/sectiongroups/{}/sectiongroups;/groups/{}/onenote/sectiongroups/{}/sectiongroups/{}","Get-MgGroupOnenoteSectionGroup" -"GET","/groups/{}/onenote/sectiongroups/{}","Notes","Get-MgGroupOnenoteSectionGroup","keep","Get-MgGroupOnenoteSectionGroup","/groups/{}/onenote/sectiongroups","Get-MgGroupOnenoteSectionGroup" -"GET","/groups/{}/onenote/sectiongroups/{}/sectiongroups","Notes","Get-MgGroupOnenoteSectionGroup","suppress","","/groups/{}/onenote/sectiongroups","Get-MgGroupOnenoteSectionGroup" -"GET","/groups/{}/onenote/sectiongroups/{}/sectiongroups/{}","Notes","Get-MgGroupOnenoteSectionGroup","suppress","","/groups/{}/onenote/sectiongroups","Get-MgGroupOnenoteSectionGroup" -"GET","/groups/{}/photo","Groups","Get-MgGroupPhoto","keep","Get-MgGroupPhoto","/groups/{}/photos","Get-MgGroupPhoto" -"GET","/groups/{}/photos","Groups","Get-MgGroupPhoto","suppress-deferred","Get-MgGroupPhoto","/groups/{}/photo","Get-MgGroupPhoto" -"GET","/groups/{}/settings","Groups","Get-MgGroupSetting","keep","Get-MgGroupSetting","/groups/{}/settings/{};/groupsettings;/groupsettings/{}","Get-MgGroupSetting" -"GET","/groups/{}/settings/{}","Groups","Get-MgGroupSetting","keep","Get-MgGroupSetting","/groups/{}/settings","Get-MgGroupSetting" -"GET","/groups/{}/sites/{}/onenote/notebooks/{}/sectiongroups","Sites","Get-MgGroupSiteOnenoteNotebookSectionGroup","keep","Get-MgGroupSiteOnenoteNotebookSectionGroup","/groups/{}/sites/{}/onenote/notebooks/{}/sectiongroups/{};/groups/{}/sites/{}/onenote/notebooks/{}/sectiongroups/{}/sectiongroups;/groups/{}/sites/{}/onenote/notebooks/{}/sectiongroups/{}/sectiongroups/{}","Get-MgGroupSiteOnenoteNotebookSectionGroup" -"GET","/groups/{}/sites/{}/onenote/notebooks/{}/sectiongroups/{}","Sites","Get-MgGroupSiteOnenoteNotebookSectionGroup","keep","Get-MgGroupSiteOnenoteNotebookSectionGroup","/groups/{}/sites/{}/onenote/notebooks/{}/sectiongroups","Get-MgGroupSiteOnenoteNotebookSectionGroup" -"GET","/groups/{}/sites/{}/onenote/notebooks/{}/sectiongroups/{}/sectiongroups","Sites","Get-MgGroupSiteOnenoteNotebookSectionGroup","suppress","","/groups/{}/sites/{}/onenote/notebooks/{}/sectiongroups","Get-MgGroupSiteOnenoteNotebookSectionGroup" -"GET","/groups/{}/sites/{}/onenote/notebooks/{}/sectiongroups/{}/sectiongroups/{}","Sites","Get-MgGroupSiteOnenoteNotebookSectionGroup","suppress","","/groups/{}/sites/{}/onenote/notebooks/{}/sectiongroups","Get-MgGroupSiteOnenoteNotebookSectionGroup" -"GET","/groups/{}/sites/{}/onenote/sectiongroups","Sites","Get-MgGroupSiteOnenoteSectionGroup","keep","Get-MgGroupSiteOnenoteSectionGroup","/groups/{}/sites/{}/onenote/sectiongroups/{};/groups/{}/sites/{}/onenote/sectiongroups/{}/sectiongroups;/groups/{}/sites/{}/onenote/sectiongroups/{}/sectiongroups/{}","Get-MgGroupSiteOnenoteSectionGroup" -"GET","/groups/{}/sites/{}/onenote/sectiongroups/{}","Sites","Get-MgGroupSiteOnenoteSectionGroup","keep","Get-MgGroupSiteOnenoteSectionGroup","/groups/{}/sites/{}/onenote/sectiongroups","Get-MgGroupSiteOnenoteSectionGroup" -"GET","/groups/{}/sites/{}/onenote/sectiongroups/{}/sectiongroups","Sites","Get-MgGroupSiteOnenoteSectionGroup","suppress","","/groups/{}/sites/{}/onenote/sectiongroups","Get-MgGroupSiteOnenoteSectionGroup" -"GET","/groups/{}/sites/{}/onenote/sectiongroups/{}/sectiongroups/{}","Sites","Get-MgGroupSiteOnenoteSectionGroup","suppress","","/groups/{}/sites/{}/onenote/sectiongroups","Get-MgGroupSiteOnenoteSectionGroup" -"GET","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children","Sites","Get-MgGroupSiteTermStoreGroupSetChild","keep","Get-MgGroupSiteTermStoreGroupSetChild","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{};/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/children;/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}","Get-MgGroupSiteTermStoreGroupSetChild" -"GET","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}","Sites","Get-MgGroupSiteTermStoreGroupSetChild","keep","Get-MgGroupSiteTermStoreGroupSetChild","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children","Get-MgGroupSiteTermStoreGroupSetChild" -"GET","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/children","Sites","Get-MgGroupSiteTermStoreGroupSetChild","suppress","","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children","Get-MgGroupSiteTermStoreGroupSetChild" -"GET","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}","Sites","Get-MgGroupSiteTermStoreGroupSetChild","suppress","","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children","Get-MgGroupSiteTermStoreGroupSetChild" -"GET","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations","Sites","Get-MgGroupSiteTermStoreGroupSetChildRelation","keep","Get-MgGroupSiteTermStoreGroupSetChildRelation","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations/{};/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations;/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations/{}","Get-MgGroupSiteTermStoreGroupSetChildRelation" -"GET","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations/{}","Sites","Get-MgGroupSiteTermStoreGroupSetChildRelation","keep","Get-MgGroupSiteTermStoreGroupSetChildRelation","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations","Get-MgGroupSiteTermStoreGroupSetChildRelation" -"GET","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations/{}/fromterm","Sites","Get-MgGroupSiteTermStoreGroupSetChildRelationFromTerm","keep","Get-MgGroupSiteTermStoreGroupSetChildRelationFromTerm","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations/{}/fromterm","" -"GET","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations/{}/set","Sites","Get-MgGroupSiteTermStoreGroupSetChildRelationSet","keep","Get-MgGroupSiteTermStoreGroupSetChildRelationSet","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations/{}/set","" -"GET","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations/{}/toterm","Sites","Get-MgGroupSiteTermStoreGroupSetChildRelationToTerm","keep","Get-MgGroupSiteTermStoreGroupSetChildRelationToTerm","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations/{}/toterm","" -"GET","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/set","Sites","Get-MgGroupSiteTermStoreGroupSetChildSet","keep","Get-MgGroupSiteTermStoreGroupSetChildSet","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/set","" -"GET","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations","Sites","Get-MgGroupSiteTermStoreGroupSetChildRelation","suppress","","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations","Get-MgGroupSiteTermStoreGroupSetChildRelation" -"GET","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations/{}","Sites","Get-MgGroupSiteTermStoreGroupSetChildRelation","suppress","","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations","Get-MgGroupSiteTermStoreGroupSetChildRelation" -"GET","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations/{}/fromterm","Sites","Get-MgGroupSiteTermStoreGroupSetChildRelationFromTerm","suppress","","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations/{}/fromterm","Get-MgGroupSiteTermStoreGroupSetChildRelationFromTerm" -"GET","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations/{}/set","Sites","Get-MgGroupSiteTermStoreGroupSetChildRelationSet","suppress","","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations/{}/set","Get-MgGroupSiteTermStoreGroupSetChildRelationSet" -"GET","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations/{}/toterm","Sites","Get-MgGroupSiteTermStoreGroupSetChildRelationToTerm","suppress","","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations/{}/toterm","Get-MgGroupSiteTermStoreGroupSetChildRelationToTerm" -"GET","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/set","Sites","Get-MgGroupSiteTermStoreGroupSetChildSet","suppress","","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/set","Get-MgGroupSiteTermStoreGroupSetChildSet" -"GET","/groups/{}/sites/{}/termstore/sets/{}/children","Sites","Get-MgGroupSiteTermStoreSetChild","keep","Get-MgGroupSiteTermStoreSetChild","/groups/{}/sites/{}/termstore/sets/{}/children/{};/groups/{}/sites/{}/termstore/sets/{}/children/{}/children;/groups/{}/sites/{}/termstore/sets/{}/children/{}/children/{}","Get-MgGroupSiteTermStoreSetChild" -"GET","/groups/{}/sites/{}/termstore/sets/{}/children/{}","Sites","Get-MgGroupSiteTermStoreSetChild","keep","Get-MgGroupSiteTermStoreSetChild","/groups/{}/sites/{}/termstore/sets/{}/children","Get-MgGroupSiteTermStoreSetChild" -"GET","/groups/{}/sites/{}/termstore/sets/{}/children/{}/children","Sites","Get-MgGroupSiteTermStoreSetChild","suppress","","/groups/{}/sites/{}/termstore/sets/{}/children","Get-MgGroupSiteTermStoreSetChild" -"GET","/groups/{}/sites/{}/termstore/sets/{}/children/{}/children/{}","Sites","Get-MgGroupSiteTermStoreSetChild","suppress","","/groups/{}/sites/{}/termstore/sets/{}/children","Get-MgGroupSiteTermStoreSetChild" -"GET","/groups/{}/sites/{}/termstore/sets/{}/children/{}/children/{}/relations","Sites","Get-MgGroupSiteTermStoreSetChildRelation","keep","Get-MgGroupSiteTermStoreSetChildRelation","/groups/{}/sites/{}/termstore/sets/{}/children/{}/children/{}/relations/{};/groups/{}/sites/{}/termstore/sets/{}/children/{}/relations;/groups/{}/sites/{}/termstore/sets/{}/children/{}/relations/{}","Get-MgGroupSiteTermStoreSetChildRelation" -"GET","/groups/{}/sites/{}/termstore/sets/{}/children/{}/children/{}/relations/{}","Sites","Get-MgGroupSiteTermStoreSetChildRelation","keep","Get-MgGroupSiteTermStoreSetChildRelation","/groups/{}/sites/{}/termstore/sets/{}/children/{}/children/{}/relations","Get-MgGroupSiteTermStoreSetChildRelation" -"GET","/groups/{}/sites/{}/termstore/sets/{}/children/{}/children/{}/relations/{}/fromterm","Sites","Get-MgGroupSiteTermStoreSetChildRelationFromTerm","keep","Get-MgGroupSiteTermStoreSetChildRelationFromTerm","/groups/{}/sites/{}/termstore/sets/{}/children/{}/relations/{}/fromterm","" -"GET","/groups/{}/sites/{}/termstore/sets/{}/children/{}/children/{}/relations/{}/set","Sites","Get-MgGroupSiteTermStoreSetChildRelationSet","keep","Get-MgGroupSiteTermStoreSetChildRelationSet","/groups/{}/sites/{}/termstore/sets/{}/children/{}/relations/{}/set","" -"GET","/groups/{}/sites/{}/termstore/sets/{}/children/{}/children/{}/relations/{}/toterm","Sites","Get-MgGroupSiteTermStoreSetChildRelationToTerm","keep","Get-MgGroupSiteTermStoreSetChildRelationToTerm","/groups/{}/sites/{}/termstore/sets/{}/children/{}/relations/{}/toterm","" -"GET","/groups/{}/sites/{}/termstore/sets/{}/children/{}/children/{}/set","Sites","Get-MgGroupSiteTermStoreSetChildSet","keep","Get-MgGroupSiteTermStoreSetChildSet","/groups/{}/sites/{}/termstore/sets/{}/children/{}/set","" -"GET","/groups/{}/sites/{}/termstore/sets/{}/children/{}/relations","Sites","Get-MgGroupSiteTermStoreSetChildRelation","suppress","","/groups/{}/sites/{}/termstore/sets/{}/children/{}/children/{}/relations","Get-MgGroupSiteTermStoreSetChildRelation" -"GET","/groups/{}/sites/{}/termstore/sets/{}/children/{}/relations/{}","Sites","Get-MgGroupSiteTermStoreSetChildRelation","suppress","","/groups/{}/sites/{}/termstore/sets/{}/children/{}/children/{}/relations","Get-MgGroupSiteTermStoreSetChildRelation" -"GET","/groups/{}/sites/{}/termstore/sets/{}/children/{}/relations/{}/fromterm","Sites","Get-MgGroupSiteTermStoreSetChildRelationFromTerm","suppress","","/groups/{}/sites/{}/termstore/sets/{}/children/{}/children/{}/relations/{}/fromterm","Get-MgGroupSiteTermStoreSetChildRelationFromTerm" -"GET","/groups/{}/sites/{}/termstore/sets/{}/children/{}/relations/{}/set","Sites","Get-MgGroupSiteTermStoreSetChildRelationSet","suppress","","/groups/{}/sites/{}/termstore/sets/{}/children/{}/children/{}/relations/{}/set","Get-MgGroupSiteTermStoreSetChildRelationSet" -"GET","/groups/{}/sites/{}/termstore/sets/{}/children/{}/relations/{}/toterm","Sites","Get-MgGroupSiteTermStoreSetChildRelationToTerm","suppress","","/groups/{}/sites/{}/termstore/sets/{}/children/{}/children/{}/relations/{}/toterm","Get-MgGroupSiteTermStoreSetChildRelationToTerm" -"GET","/groups/{}/sites/{}/termstore/sets/{}/children/{}/set","Sites","Get-MgGroupSiteTermStoreSetChildSet","suppress","","/groups/{}/sites/{}/termstore/sets/{}/children/{}/children/{}/set","Get-MgGroupSiteTermStoreSetChildSet" -"GET","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children","Sites","Get-MgGroupSiteTermStoreSetParentGroupSetChild","keep","Get-MgGroupSiteTermStoreSetParentGroupSetChild","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{};/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children;/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}","Get-MgGroupSiteTermStoreSetParentGroupSetChild" -"GET","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}","Sites","Get-MgGroupSiteTermStoreSetParentGroupSetChild","keep","Get-MgGroupSiteTermStoreSetParentGroupSetChild","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children","Get-MgGroupSiteTermStoreSetParentGroupSetChild" -"GET","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children","Sites","Get-MgGroupSiteTermStoreSetParentGroupSetChild","suppress","","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children","Get-MgGroupSiteTermStoreSetParentGroupSetChild" -"GET","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}","Sites","Get-MgGroupSiteTermStoreSetParentGroupSetChild","suppress","","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children","Get-MgGroupSiteTermStoreSetParentGroupSetChild" -"GET","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations","Sites","Get-MgGroupSiteTermStoreSetParentGroupSetChildRelation","keep","Get-MgGroupSiteTermStoreSetParentGroupSetChildRelation","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations/{};/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations;/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations/{}","Get-MgGroupSiteTermStoreSetParentGroupSetChildRelation" -"GET","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations/{}","Sites","Get-MgGroupSiteTermStoreSetParentGroupSetChildRelation","keep","Get-MgGroupSiteTermStoreSetParentGroupSetChildRelation","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations","Get-MgGroupSiteTermStoreSetParentGroupSetChildRelation" -"GET","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations/{}/fromterm","Sites","Get-MgGroupSiteTermStoreSetParentGroupSetChildRelationFromTerm","keep","Get-MgGroupSiteTermStoreSetParentGroupSetChildRelationFromTerm","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations/{}/fromterm","" -"GET","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations/{}/set","Sites","Get-MgGroupSiteTermStoreSetParentGroupSetChildRelationSet","keep","Get-MgGroupSiteTermStoreSetParentGroupSetChildRelationSet","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations/{}/set","" -"GET","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations/{}/toterm","Sites","Get-MgGroupSiteTermStoreSetParentGroupSetChildRelationToTerm","keep","Get-MgGroupSiteTermStoreSetParentGroupSetChildRelationToTerm","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations/{}/toterm","" -"GET","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/set","Sites","Get-MgGroupSiteTermStoreSetParentGroupSetChildSet","keep","Get-MgGroupSiteTermStoreSetParentGroupSetChildSet","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/set","" -"GET","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations","Sites","Get-MgGroupSiteTermStoreSetParentGroupSetChildRelation","suppress","","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations","Get-MgGroupSiteTermStoreSetParentGroupSetChildRelation" -"GET","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations/{}","Sites","Get-MgGroupSiteTermStoreSetParentGroupSetChildRelation","suppress","","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations","Get-MgGroupSiteTermStoreSetParentGroupSetChildRelation" -"GET","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations/{}/fromterm","Sites","Get-MgGroupSiteTermStoreSetParentGroupSetChildRelationFromTerm","suppress","","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations/{}/fromterm","Get-MgGroupSiteTermStoreSetParentGroupSetChildRelationFromTerm" -"GET","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations/{}/set","Sites","Get-MgGroupSiteTermStoreSetParentGroupSetChildRelationSet","suppress","","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations/{}/set","Get-MgGroupSiteTermStoreSetParentGroupSetChildRelationSet" -"GET","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations/{}/toterm","Sites","Get-MgGroupSiteTermStoreSetParentGroupSetChildRelationToTerm","suppress","","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations/{}/toterm","Get-MgGroupSiteTermStoreSetParentGroupSetChildRelationToTerm" -"GET","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/set","Sites","Get-MgGroupSiteTermStoreSetParentGroupSetChildSet","suppress","","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/set","Get-MgGroupSiteTermStoreSetParentGroupSetChildSet" -"GET","/groupsettings","Groups","Get-MgGroupSetting","suppress","","/groups/{}/settings","Get-MgGroupSetting" -"GET","/groupsettings/{}","Groups","Get-MgGroupSetting","suppress","","/groups/{}/settings","Get-MgGroupSetting" -"GET","/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRole","rename","Get-MgEntitlementManagementCatalogResourceRole","/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{};/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles;/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}","Get-MgEntitlementManagementCatalogResourceRole" -"GET","/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRole","rename","Get-MgEntitlementManagementCatalogResourceRole","/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles","Get-MgEntitlementManagementCatalogResourceRole" -"GET","/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResource","rename","Get-MgEntitlementManagementCatalogResourceRoleResource","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource","" -"GET","/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/environment","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceEnvironment","rename","Get-MgEntitlementManagementCatalogResourceRoleResourceEnvironment","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource/environment","" -"GET","/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScope","rename","Get-MgEntitlementManagementCatalogResourceRoleResourceScope","/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes/{};/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource/scopes;/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource/scopes/{}","Get-MgEntitlementManagementCatalogResourceRoleResourceScope" -"GET","/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes/{}","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScope","rename","Get-MgEntitlementManagementCatalogResourceRoleResourceScope","/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes","Get-MgEntitlementManagementCatalogResourceRoleResourceScope" -"GET","/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes/{}/resource","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResource","rename","Get-MgEntitlementManagementCatalogResourceRoleResourceScopeResource","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource/scopes/{}/resource","" -"GET","/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes/{}/resource/environment","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResourceEnvironment","rename","Get-MgEntitlementManagementCatalogResourceRoleResourceScopeResourceEnvironment","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource/scopes/{}/resource/environment","" -"GET","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRole","suppress","","/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles","Get-MgEntitlementManagementCatalogResourceRole" -"GET","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRole","suppress","","/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles","Get-MgEntitlementManagementCatalogResourceRole" -"GET","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResource","suppress","","/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource","Get-MgEntitlementManagementCatalogResourceRoleResource" -"GET","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource/environment","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceEnvironment","suppress","","/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/environment","Get-MgEntitlementManagementCatalogResourceRoleResourceEnvironment" -"GET","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource/scopes","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScope","suppress","","/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes","Get-MgEntitlementManagementCatalogResourceRoleResourceScope" -"GET","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource/scopes/{}","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScope","suppress","","/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes","Get-MgEntitlementManagementCatalogResourceRoleResourceScope" -"GET","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource/scopes/{}/resource","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResource","suppress","","/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes/{}/resource","Get-MgEntitlementManagementCatalogResourceRoleResourceScopeResource" -"GET","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource/scopes/{}/resource/environment","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResourceEnvironment","suppress","","/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes/{}/resource/environment","Get-MgEntitlementManagementCatalogResourceRoleResourceScopeResourceEnvironment" -"GET","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScope","suppress","","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{};/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes;/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}","Get-MgEntitlementManagementCatalogResourceScope" -"GET","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScope","suppress","","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes","" -"GET","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResource","rename","Get-MgEntitlementManagementCatalogResourceScopeResource","/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource","" -"GET","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/environment","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceEnvironment","rename","Get-MgEntitlementManagementCatalogResourceScopeResourceEnvironment","/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/environment","" -"GET","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRole","rename","Get-MgEntitlementManagementCatalogResourceScopeResourceRole","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles/{};/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/roles;/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/roles/{}","Get-MgEntitlementManagementCatalogResourceScopeResourceRole" -"GET","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles/{}","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRole","rename","Get-MgEntitlementManagementCatalogResourceScopeResourceRole","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles","Get-MgEntitlementManagementCatalogResourceScopeResourceRole" -"GET","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles/{}/resource","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResource","rename","Get-MgEntitlementManagementCatalogResourceScopeResourceRoleResource","/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/roles/{}/resource","" -"GET","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles/{}/resource/environment","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResourceEnvironment","rename","Get-MgEntitlementManagementCatalogResourceScopeResourceRoleResourceEnvironment","/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/roles/{}/resource/environment","" -"GET","/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScope","rename","Get-MgEntitlementManagementCatalogResourceScope","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes","" -"GET","/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScope","rename","Get-MgEntitlementManagementCatalogResourceScope","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes","" -"GET","/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResource","suppress","","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource","Get-MgEntitlementManagementCatalogResourceScopeResource" -"GET","/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/environment","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceEnvironment","suppress","","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/environment","Get-MgEntitlementManagementCatalogResourceScopeResourceEnvironment" -"GET","/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/roles","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRole","suppress","","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles","Get-MgEntitlementManagementCatalogResourceScopeResourceRole" -"GET","/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/roles/{}","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRole","suppress","","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles","Get-MgEntitlementManagementCatalogResourceScopeResourceRole" -"GET","/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/roles/{}/resource","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResource","suppress","","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles/{}/resource","Get-MgEntitlementManagementCatalogResourceScopeResourceRoleResource" -"GET","/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/roles/{}/resource/environment","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResourceEnvironment","suppress","","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles/{}/resource/environment","Get-MgEntitlementManagementCatalogResourceScopeResourceRoleResourceEnvironment" -"GET","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRole","rename","Get-MgEntitlementManagementResourceRequestCatalogResourceRole","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{};/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles;/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}","Get-MgEntitlementManagementResourceRequestCatalogResourceRole" -"GET","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRole","rename","Get-MgEntitlementManagementResourceRequestCatalogResourceRole","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles","Get-MgEntitlementManagementResourceRequestCatalogResourceRole" -"GET","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResource","rename","Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResource","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource","" -"GET","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/environment","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceEnvironment","rename","Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceEnvironment","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource/environment","" -"GET","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScope","rename","Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScope","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes/{};/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource/scopes;/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource/scopes/{}","Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScope" -"GET","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes/{}","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScope","rename","Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScope","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes","Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScope" -"GET","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes/{}/resource","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResource","rename","Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResource","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource/scopes/{}/resource","" -"GET","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes/{}/resource/environment","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceEnvironment","rename","Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceEnvironment","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource/scopes/{}/resource/environment","" -"GET","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRole","suppress","","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles","Get-MgEntitlementManagementResourceRequestCatalogResourceRole" -"GET","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRole","suppress","","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles","Get-MgEntitlementManagementResourceRequestCatalogResourceRole" -"GET","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResource","suppress","","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource","Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResource" -"GET","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource/environment","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceEnvironment","suppress","","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/environment","Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceEnvironment" -"GET","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource/scopes","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScope","suppress","","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes","Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScope" -"GET","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource/scopes/{}","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScope","suppress","","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes","Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScope" -"GET","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource/scopes/{}/resource","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResource","suppress","","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes/{}/resource","Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResource" -"GET","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource/scopes/{}/resource/environment","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceEnvironment","suppress","","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes/{}/resource/environment","Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceEnvironment" -"GET","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScope","suppress","","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{};/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes;/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}","Get-MgEntitlementManagementResourceRequestCatalogResourceScope" -"GET","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScope","suppress","","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes","" -"GET","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResource","rename","Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResource","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource","" -"GET","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/environment","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceEnvironment","rename","Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceEnvironment","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/environment","" -"GET","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRole","rename","Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRole","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles/{};/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/roles;/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/roles/{}","Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRole" -"GET","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles/{}","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRole","rename","Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRole","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles","Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRole" -"GET","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles/{}/resource","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResource","rename","Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResource","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/roles/{}/resource","" -"GET","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles/{}/resource/environment","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceEnvironment","rename","Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceEnvironment","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/roles/{}/resource/environment","" -"GET","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScope","rename","Get-MgEntitlementManagementResourceRequestCatalogResourceScope","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes","" -"GET","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScope","rename","Get-MgEntitlementManagementResourceRequestCatalogResourceScope","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes","" -"GET","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResource","suppress","","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource","Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResource" -"GET","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/environment","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceEnvironment","suppress","","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/environment","Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceEnvironment" -"GET","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/roles","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRole","suppress","","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles","Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRole" -"GET","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/roles/{}","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRole","suppress","","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles","Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRole" -"GET","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/roles/{}/resource","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResource","suppress","","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles/{}/resource","Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResource" -"GET","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/roles/{}/resource/environment","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceEnvironment","suppress","","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles/{}/resource/environment","Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceEnvironment" -"GET","/shares/{}/list/items","Files","Get-MgShareListItem","suppress-deferred","Get-MgShareListItem","/shares/{}/listitem","Get-MgShareListItem" -"GET","/shares/{}/listitem","Files","Get-MgShareListItem","keep","Get-MgShareListItem","/shares/{}/list/items","Get-MgShareListItem" -"GET","/sites/{}/onenote/notebooks/{}/sectiongroups","Notes","Get-MgSiteOnenoteNotebookSectionGroup","keep","Get-MgSiteOnenoteNotebookSectionGroup","/sites/{}/onenote/notebooks/{}/sectiongroups/{};/sites/{}/onenote/notebooks/{}/sectiongroups/{}/sectiongroups;/sites/{}/onenote/notebooks/{}/sectiongroups/{}/sectiongroups/{}","Get-MgSiteOnenoteNotebookSectionGroup" -"GET","/sites/{}/onenote/notebooks/{}/sectiongroups/{}","Notes","Get-MgSiteOnenoteNotebookSectionGroup","keep","Get-MgSiteOnenoteNotebookSectionGroup","/sites/{}/onenote/notebooks/{}/sectiongroups","Get-MgSiteOnenoteNotebookSectionGroup" -"GET","/sites/{}/onenote/notebooks/{}/sectiongroups/{}/sectiongroups","Notes","Get-MgSiteOnenoteNotebookSectionGroup","suppress","","/sites/{}/onenote/notebooks/{}/sectiongroups","Get-MgSiteOnenoteNotebookSectionGroup" -"GET","/sites/{}/onenote/notebooks/{}/sectiongroups/{}/sectiongroups/{}","Notes","Get-MgSiteOnenoteNotebookSectionGroup","suppress","","/sites/{}/onenote/notebooks/{}/sectiongroups","Get-MgSiteOnenoteNotebookSectionGroup" -"GET","/sites/{}/onenote/sectiongroups","Notes","Get-MgSiteOnenoteSectionGroup","keep","Get-MgSiteOnenoteSectionGroup","/sites/{}/onenote/sectiongroups/{};/sites/{}/onenote/sectiongroups/{}/sectiongroups;/sites/{}/onenote/sectiongroups/{}/sectiongroups/{}","Get-MgSiteOnenoteSectionGroup" -"GET","/sites/{}/onenote/sectiongroups/{}","Notes","Get-MgSiteOnenoteSectionGroup","keep","Get-MgSiteOnenoteSectionGroup","/sites/{}/onenote/sectiongroups","Get-MgSiteOnenoteSectionGroup" -"GET","/sites/{}/onenote/sectiongroups/{}/sectiongroups","Notes","Get-MgSiteOnenoteSectionGroup","suppress","","/sites/{}/onenote/sectiongroups","Get-MgSiteOnenoteSectionGroup" -"GET","/sites/{}/onenote/sectiongroups/{}/sectiongroups/{}","Notes","Get-MgSiteOnenoteSectionGroup","suppress","","/sites/{}/onenote/sectiongroups","Get-MgSiteOnenoteSectionGroup" -"GET","/sites/{}/termstore/groups/{}/sets/{}/children","Sites","Get-MgSiteTermStoreGroupSetChild","keep","Get-MgSiteTermStoreGroupSetChild","/sites/{}/termstore/groups/{}/sets/{}/children/{};/sites/{}/termstore/groups/{}/sets/{}/children/{}/children;/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}","Get-MgSiteTermStoreGroupSetChild" -"GET","/sites/{}/termstore/groups/{}/sets/{}/children/{}","Sites","Get-MgSiteTermStoreGroupSetChild","keep","Get-MgSiteTermStoreGroupSetChild","/sites/{}/termstore/groups/{}/sets/{}/children","Get-MgSiteTermStoreGroupSetChild" -"GET","/sites/{}/termstore/groups/{}/sets/{}/children/{}/children","Sites","Get-MgSiteTermStoreGroupSetChild","suppress","","/sites/{}/termstore/groups/{}/sets/{}/children","Get-MgSiteTermStoreGroupSetChild" -"GET","/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}","Sites","Get-MgSiteTermStoreGroupSetChild","suppress","","/sites/{}/termstore/groups/{}/sets/{}/children","Get-MgSiteTermStoreGroupSetChild" -"GET","/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations","Sites","Get-MgSiteTermStoreGroupSetChildRelation","keep","Get-MgSiteTermStoreGroupSetChildRelation","/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations/{};/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations;/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations/{}","Get-MgSiteTermStoreGroupSetChildRelation" -"GET","/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations/{}","Sites","Get-MgSiteTermStoreGroupSetChildRelation","keep","Get-MgSiteTermStoreGroupSetChildRelation","/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations","Get-MgSiteTermStoreGroupSetChildRelation" -"GET","/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations/{}/fromterm","Sites","Get-MgSiteTermStoreGroupSetChildRelationFromTerm","keep","Get-MgSiteTermStoreGroupSetChildRelationFromTerm","/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations/{}/fromterm","" -"GET","/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations/{}/set","Sites","Get-MgSiteTermStoreGroupSetChildRelationSet","keep","Get-MgSiteTermStoreGroupSetChildRelationSet","/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations/{}/set","" -"GET","/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations/{}/toterm","Sites","Get-MgSiteTermStoreGroupSetChildRelationToTerm","keep","Get-MgSiteTermStoreGroupSetChildRelationToTerm","/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations/{}/toterm","" -"GET","/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/set","Sites","Get-MgSiteTermStoreGroupSetChildSet","keep","Get-MgSiteTermStoreGroupSetChildSet","/sites/{}/termstore/groups/{}/sets/{}/children/{}/set","" -"GET","/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations","Sites","Get-MgSiteTermStoreGroupSetChildRelation","suppress","","/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations","Get-MgSiteTermStoreGroupSetChildRelation" -"GET","/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations/{}","Sites","Get-MgSiteTermStoreGroupSetChildRelation","suppress","","/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations","Get-MgSiteTermStoreGroupSetChildRelation" -"GET","/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations/{}/fromterm","Sites","Get-MgSiteTermStoreGroupSetChildRelationFromTerm","suppress","","/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations/{}/fromterm","Get-MgSiteTermStoreGroupSetChildRelationFromTerm" -"GET","/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations/{}/set","Sites","Get-MgSiteTermStoreGroupSetChildRelationSet","suppress","","/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations/{}/set","Get-MgSiteTermStoreGroupSetChildRelationSet" -"GET","/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations/{}/toterm","Sites","Get-MgSiteTermStoreGroupSetChildRelationToTerm","suppress","","/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations/{}/toterm","Get-MgSiteTermStoreGroupSetChildRelationToTerm" -"GET","/sites/{}/termstore/groups/{}/sets/{}/children/{}/set","Sites","Get-MgSiteTermStoreGroupSetChildSet","suppress","","/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/set","Get-MgSiteTermStoreGroupSetChildSet" -"GET","/sites/{}/termstore/sets/{}/children","Sites","Get-MgSiteTermStoreSetChild","keep","Get-MgSiteTermStoreSetChild","/sites/{}/termstore/sets/{}/children/{};/sites/{}/termstore/sets/{}/children/{}/children;/sites/{}/termstore/sets/{}/children/{}/children/{}","Get-MgSiteTermStoreSetChild" -"GET","/sites/{}/termstore/sets/{}/children/{}","Sites","Get-MgSiteTermStoreSetChild","keep","Get-MgSiteTermStoreSetChild","/sites/{}/termstore/sets/{}/children","Get-MgSiteTermStoreSetChild" -"GET","/sites/{}/termstore/sets/{}/children/{}/children","Sites","Get-MgSiteTermStoreSetChild","suppress","","/sites/{}/termstore/sets/{}/children","Get-MgSiteTermStoreSetChild" -"GET","/sites/{}/termstore/sets/{}/children/{}/children/{}","Sites","Get-MgSiteTermStoreSetChild","suppress","","/sites/{}/termstore/sets/{}/children","Get-MgSiteTermStoreSetChild" -"GET","/sites/{}/termstore/sets/{}/children/{}/children/{}/relations","Sites","Get-MgSiteTermStoreSetChildRelation","keep","Get-MgSiteTermStoreSetChildRelation","/sites/{}/termstore/sets/{}/children/{}/children/{}/relations/{};/sites/{}/termstore/sets/{}/children/{}/relations;/sites/{}/termstore/sets/{}/children/{}/relations/{}","Get-MgSiteTermStoreSetChildRelation" -"GET","/sites/{}/termstore/sets/{}/children/{}/children/{}/relations/{}","Sites","Get-MgSiteTermStoreSetChildRelation","keep","Get-MgSiteTermStoreSetChildRelation","/sites/{}/termstore/sets/{}/children/{}/children/{}/relations","Get-MgSiteTermStoreSetChildRelation" -"GET","/sites/{}/termstore/sets/{}/children/{}/children/{}/relations/{}/fromterm","Sites","Get-MgSiteTermStoreSetChildRelationFromTerm","keep","Get-MgSiteTermStoreSetChildRelationFromTerm","/sites/{}/termstore/sets/{}/children/{}/relations/{}/fromterm","" -"GET","/sites/{}/termstore/sets/{}/children/{}/children/{}/relations/{}/set","Sites","Get-MgSiteTermStoreSetChildRelationSet","keep","Get-MgSiteTermStoreSetChildRelationSet","/sites/{}/termstore/sets/{}/children/{}/relations/{}/set","" -"GET","/sites/{}/termstore/sets/{}/children/{}/children/{}/relations/{}/toterm","Sites","Get-MgSiteTermStoreSetChildRelationToTerm","keep","Get-MgSiteTermStoreSetChildRelationToTerm","/sites/{}/termstore/sets/{}/children/{}/relations/{}/toterm","" -"GET","/sites/{}/termstore/sets/{}/children/{}/children/{}/set","Sites","Get-MgSiteTermStoreSetChildSet","keep","Get-MgSiteTermStoreSetChildSet","/sites/{}/termstore/sets/{}/children/{}/set","" -"GET","/sites/{}/termstore/sets/{}/children/{}/relations","Sites","Get-MgSiteTermStoreSetChildRelation","suppress","","/sites/{}/termstore/sets/{}/children/{}/children/{}/relations","Get-MgSiteTermStoreSetChildRelation" -"GET","/sites/{}/termstore/sets/{}/children/{}/relations/{}","Sites","Get-MgSiteTermStoreSetChildRelation","suppress","","/sites/{}/termstore/sets/{}/children/{}/children/{}/relations","Get-MgSiteTermStoreSetChildRelation" -"GET","/sites/{}/termstore/sets/{}/children/{}/relations/{}/fromterm","Sites","Get-MgSiteTermStoreSetChildRelationFromTerm","suppress","","/sites/{}/termstore/sets/{}/children/{}/children/{}/relations/{}/fromterm","Get-MgSiteTermStoreSetChildRelationFromTerm" -"GET","/sites/{}/termstore/sets/{}/children/{}/relations/{}/set","Sites","Get-MgSiteTermStoreSetChildRelationSet","suppress","","/sites/{}/termstore/sets/{}/children/{}/children/{}/relations/{}/set","Get-MgSiteTermStoreSetChildRelationSet" -"GET","/sites/{}/termstore/sets/{}/children/{}/relations/{}/toterm","Sites","Get-MgSiteTermStoreSetChildRelationToTerm","suppress","","/sites/{}/termstore/sets/{}/children/{}/children/{}/relations/{}/toterm","Get-MgSiteTermStoreSetChildRelationToTerm" -"GET","/sites/{}/termstore/sets/{}/children/{}/set","Sites","Get-MgSiteTermStoreSetChildSet","suppress","","/sites/{}/termstore/sets/{}/children/{}/children/{}/set","Get-MgSiteTermStoreSetChildSet" -"GET","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children","Sites","Get-MgSiteTermStoreSetParentGroupSetChild","keep","Get-MgSiteTermStoreSetParentGroupSetChild","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{};/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children;/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}","Get-MgSiteTermStoreSetParentGroupSetChild" -"GET","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}","Sites","Get-MgSiteTermStoreSetParentGroupSetChild","keep","Get-MgSiteTermStoreSetParentGroupSetChild","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children","Get-MgSiteTermStoreSetParentGroupSetChild" -"GET","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children","Sites","Get-MgSiteTermStoreSetParentGroupSetChild","suppress","","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children","Get-MgSiteTermStoreSetParentGroupSetChild" -"GET","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}","Sites","Get-MgSiteTermStoreSetParentGroupSetChild","suppress","","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children","Get-MgSiteTermStoreSetParentGroupSetChild" -"GET","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations","Sites","Get-MgSiteTermStoreSetParentGroupSetChildRelation","keep","Get-MgSiteTermStoreSetParentGroupSetChildRelation","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations/{};/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations;/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations/{}","Get-MgSiteTermStoreSetParentGroupSetChildRelation" -"GET","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations/{}","Sites","Get-MgSiteTermStoreSetParentGroupSetChildRelation","keep","Get-MgSiteTermStoreSetParentGroupSetChildRelation","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations","Get-MgSiteTermStoreSetParentGroupSetChildRelation" -"GET","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations/{}/fromterm","Sites","Get-MgSiteTermStoreSetParentGroupSetChildRelationFromTerm","keep","Get-MgSiteTermStoreSetParentGroupSetChildRelationFromTerm","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations/{}/fromterm","" -"GET","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations/{}/set","Sites","Get-MgSiteTermStoreSetParentGroupSetChildRelationSet","keep","Get-MgSiteTermStoreSetParentGroupSetChildRelationSet","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations/{}/set","" -"GET","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations/{}/toterm","Sites","Get-MgSiteTermStoreSetParentGroupSetChildRelationToTerm","keep","Get-MgSiteTermStoreSetParentGroupSetChildRelationToTerm","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations/{}/toterm","" -"GET","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/set","Sites","Get-MgSiteTermStoreSetParentGroupSetChildSet","keep","Get-MgSiteTermStoreSetParentGroupSetChildSet","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/set","" -"GET","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations","Sites","Get-MgSiteTermStoreSetParentGroupSetChildRelation","suppress","","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations","Get-MgSiteTermStoreSetParentGroupSetChildRelation" -"GET","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations/{}","Sites","Get-MgSiteTermStoreSetParentGroupSetChildRelation","suppress","","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations","Get-MgSiteTermStoreSetParentGroupSetChildRelation" -"GET","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations/{}/fromterm","Sites","Get-MgSiteTermStoreSetParentGroupSetChildRelationFromTerm","suppress","","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations/{}/fromterm","Get-MgSiteTermStoreSetParentGroupSetChildRelationFromTerm" -"GET","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations/{}/set","Sites","Get-MgSiteTermStoreSetParentGroupSetChildRelationSet","suppress","","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations/{}/set","Get-MgSiteTermStoreSetParentGroupSetChildRelationSet" -"GET","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations/{}/toterm","Sites","Get-MgSiteTermStoreSetParentGroupSetChildRelationToTerm","suppress","","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations/{}/toterm","Get-MgSiteTermStoreSetParentGroupSetChildRelationToTerm" -"GET","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/set","Sites","Get-MgSiteTermStoreSetParentGroupSetChildSet","suppress","","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/set","Get-MgSiteTermStoreSetParentGroupSetChildSet" -"GET","/users/{}/calendar/calendarview","Calendar","Get-MgUserCalendarView","keep","Get-MgUserCalendarView","/users/{}/calendars/{}/calendarview;/users/{}/calendarview","" -"GET","/users/{}/calendars/{}/calendarview","Calendar","Get-MgUserCalendarView","suppress","","/users/{}/calendar/calendarview","Get-MgUserCalendarView" -"GET","/users/{}/calendarview","Calendar","Get-MgUserCalendarView","suppress","","/users/{}/calendar/calendarview","Get-MgUserCalendarView" -"GET","/users/{}/onenote/notebooks/{}/sectiongroups","Notes","Get-MgUserOnenoteNotebookSectionGroup","keep","Get-MgUserOnenoteNotebookSectionGroup","/users/{}/onenote/notebooks/{}/sectiongroups/{};/users/{}/onenote/notebooks/{}/sectiongroups/{}/sectiongroups;/users/{}/onenote/notebooks/{}/sectiongroups/{}/sectiongroups/{}","Get-MgUserOnenoteNotebookSectionGroup" -"GET","/users/{}/onenote/notebooks/{}/sectiongroups/{}","Notes","Get-MgUserOnenoteNotebookSectionGroup","keep","Get-MgUserOnenoteNotebookSectionGroup","/users/{}/onenote/notebooks/{}/sectiongroups","Get-MgUserOnenoteNotebookSectionGroup" -"GET","/users/{}/onenote/notebooks/{}/sectiongroups/{}/sectiongroups","Notes","Get-MgUserOnenoteNotebookSectionGroup","suppress","","/users/{}/onenote/notebooks/{}/sectiongroups","Get-MgUserOnenoteNotebookSectionGroup" -"GET","/users/{}/onenote/notebooks/{}/sectiongroups/{}/sectiongroups/{}","Notes","Get-MgUserOnenoteNotebookSectionGroup","suppress","","/users/{}/onenote/notebooks/{}/sectiongroups","Get-MgUserOnenoteNotebookSectionGroup" -"GET","/users/{}/onenote/sectiongroups","Notes","Get-MgUserOnenoteSectionGroup","keep","Get-MgUserOnenoteSectionGroup","/users/{}/onenote/sectiongroups/{};/users/{}/onenote/sectiongroups/{}/sectiongroups;/users/{}/onenote/sectiongroups/{}/sectiongroups/{}","Get-MgUserOnenoteSectionGroup" -"GET","/users/{}/onenote/sectiongroups/{}","Notes","Get-MgUserOnenoteSectionGroup","keep","Get-MgUserOnenoteSectionGroup","/users/{}/onenote/sectiongroups","Get-MgUserOnenoteSectionGroup" -"GET","/users/{}/onenote/sectiongroups/{}/sectiongroups","Notes","Get-MgUserOnenoteSectionGroup","suppress","","/users/{}/onenote/sectiongroups","Get-MgUserOnenoteSectionGroup" -"GET","/users/{}/onenote/sectiongroups/{}/sectiongroups/{}","Notes","Get-MgUserOnenoteSectionGroup","suppress","","/users/{}/onenote/sectiongroups","Get-MgUserOnenoteSectionGroup" -"PATCH","/groups/{}/settings/{}","Groups","Update-MgGroupSetting","keep","Update-MgGroupSetting","/groupsettings/{}","" -"PATCH","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}","Sites","Update-MgGroupSiteTermStoreGroupSetChild","keep","Update-MgGroupSiteTermStoreGroupSetChild","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}","" -"PATCH","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}","Sites","Update-MgGroupSiteTermStoreGroupSetChild","suppress","","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}","Update-MgGroupSiteTermStoreGroupSetChild" -"PATCH","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations/{}","Sites","Update-MgGroupSiteTermStoreGroupSetChildRelation","keep","Update-MgGroupSiteTermStoreGroupSetChildRelation","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations/{}","" -"PATCH","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations/{}","Sites","Update-MgGroupSiteTermStoreGroupSetChildRelation","suppress","","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations/{}","Update-MgGroupSiteTermStoreGroupSetChildRelation" -"PATCH","/groups/{}/sites/{}/termstore/sets/{}/children/{}","Sites","Update-MgGroupSiteTermStoreSetChild","keep","Update-MgGroupSiteTermStoreSetChild","/groups/{}/sites/{}/termstore/sets/{}/children/{}/children/{}","" -"PATCH","/groups/{}/sites/{}/termstore/sets/{}/children/{}/children/{}","Sites","Update-MgGroupSiteTermStoreSetChild","suppress","","/groups/{}/sites/{}/termstore/sets/{}/children/{}","Update-MgGroupSiteTermStoreSetChild" -"PATCH","/groups/{}/sites/{}/termstore/sets/{}/children/{}/children/{}/relations/{}","Sites","Update-MgGroupSiteTermStoreSetChildRelation","keep","Update-MgGroupSiteTermStoreSetChildRelation","/groups/{}/sites/{}/termstore/sets/{}/children/{}/relations/{}","" -"PATCH","/groups/{}/sites/{}/termstore/sets/{}/children/{}/relations/{}","Sites","Update-MgGroupSiteTermStoreSetChildRelation","suppress","","/groups/{}/sites/{}/termstore/sets/{}/children/{}/children/{}/relations/{}","Update-MgGroupSiteTermStoreSetChildRelation" -"PATCH","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}","Sites","Update-MgGroupSiteTermStoreSetParentGroupSetChild","keep","Update-MgGroupSiteTermStoreSetParentGroupSetChild","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}","" -"PATCH","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}","Sites","Update-MgGroupSiteTermStoreSetParentGroupSetChild","suppress","","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}","Update-MgGroupSiteTermStoreSetParentGroupSetChild" -"PATCH","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations/{}","Sites","Update-MgGroupSiteTermStoreSetParentGroupSetChildRelation","keep","Update-MgGroupSiteTermStoreSetParentGroupSetChildRelation","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations/{}","" -"PATCH","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations/{}","Sites","Update-MgGroupSiteTermStoreSetParentGroupSetChildRelation","suppress","","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations/{}","Update-MgGroupSiteTermStoreSetParentGroupSetChildRelation" -"PATCH","/groupsettings/{}","Groups","Update-MgGroupSetting","suppress","","/groups/{}/settings/{}","Update-MgGroupSetting" -"PATCH","/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}","Identity.Governance","Update-MgIdentityGovernanceEntitlementManagementCatalogResourceRole","rename","Update-MgEntitlementManagementCatalogResourceRole","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}","" -"PATCH","/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource","Identity.Governance","Update-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResource","suppress","","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource","" -"PATCH","/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes/{}","Identity.Governance","Update-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScope","rename","Update-MgEntitlementManagementCatalogResourceRoleResourceScope","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource/scopes/{}","" -"PATCH","/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes/{}/resource","Identity.Governance","Update-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResource","suppress","","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource/scopes/{}/resource","" -"PATCH","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}","Identity.Governance","Update-MgIdentityGovernanceEntitlementManagementCatalogResourceRole","suppress","","/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}","Update-MgEntitlementManagementCatalogResourceRole" -"PATCH","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource","Identity.Governance","Update-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResource","suppress","","/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource","" -"PATCH","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource/scopes/{}","Identity.Governance","Update-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScope","suppress","","/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes/{}","Update-MgEntitlementManagementCatalogResourceRoleResourceScope" -"PATCH","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource/scopes/{}/resource","Identity.Governance","Update-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResource","suppress","","/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes/{}/resource","" -"PATCH","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}","Identity.Governance","Update-MgIdentityGovernanceEntitlementManagementCatalogResourceScope","suppress","","/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}","Update-MgEntitlementManagementCatalogResourceScope" -"PATCH","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource","Identity.Governance","Update-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResource","suppress","","/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource","" -"PATCH","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles/{}","Identity.Governance","Update-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRole","rename","Update-MgEntitlementManagementCatalogResourceScopeResourceRole","/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/roles/{}","" -"PATCH","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles/{}/resource","Identity.Governance","Update-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResource","suppress","","/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/roles/{}/resource","" -"PATCH","/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}","Identity.Governance","Update-MgIdentityGovernanceEntitlementManagementCatalogResourceScope","rename","Update-MgEntitlementManagementCatalogResourceScope","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}","" -"PATCH","/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource","Identity.Governance","Update-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResource","suppress","","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource","" -"PATCH","/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/roles/{}","Identity.Governance","Update-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRole","suppress","","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles/{}","Update-MgEntitlementManagementCatalogResourceScopeResourceRole" -"PATCH","/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/roles/{}/resource","Identity.Governance","Update-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResource","suppress","","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles/{}/resource","" -"PATCH","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}","Identity.Governance","Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRole","rename","Update-MgEntitlementManagementResourceRequestCatalogResourceRole","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}","" -"PATCH","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource","Identity.Governance","Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResource","suppress","","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource","" -"PATCH","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes/{}","Identity.Governance","Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScope","rename","Update-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScope","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource/scopes/{}","" -"PATCH","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes/{}/resource","Identity.Governance","Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResource","suppress","","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource/scopes/{}/resource","" -"PATCH","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}","Identity.Governance","Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRole","suppress","","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}","Update-MgEntitlementManagementResourceRequestCatalogResourceRole" -"PATCH","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource","Identity.Governance","Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResource","suppress","","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource","" -"PATCH","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource/scopes/{}","Identity.Governance","Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScope","suppress","","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes/{}","Update-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScope" -"PATCH","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource/scopes/{}/resource","Identity.Governance","Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResource","suppress","","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes/{}/resource","" -"PATCH","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}","Identity.Governance","Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScope","suppress","","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}","Update-MgEntitlementManagementResourceRequestCatalogResourceScope" -"PATCH","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource","Identity.Governance","Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResource","suppress","","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource","" -"PATCH","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles/{}","Identity.Governance","Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRole","rename","Update-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRole","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/roles/{}","" -"PATCH","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles/{}/resource","Identity.Governance","Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResource","suppress","","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/roles/{}/resource","" -"PATCH","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}","Identity.Governance","Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScope","rename","Update-MgEntitlementManagementResourceRequestCatalogResourceScope","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}","" -"PATCH","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource","Identity.Governance","Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResource","suppress","","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource","" -"PATCH","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/roles/{}","Identity.Governance","Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRole","suppress","","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles/{}","Update-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRole" -"PATCH","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/roles/{}/resource","Identity.Governance","Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResource","suppress","","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles/{}/resource","" -"PATCH","/sites/{}/termstore/groups/{}/sets/{}/children/{}","Sites","Update-MgSiteTermStoreGroupSetChild","keep","Update-MgSiteTermStoreGroupSetChild","/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}","" -"PATCH","/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}","Sites","Update-MgSiteTermStoreGroupSetChild","suppress","","/sites/{}/termstore/groups/{}/sets/{}/children/{}","Update-MgSiteTermStoreGroupSetChild" -"PATCH","/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations/{}","Sites","Update-MgSiteTermStoreGroupSetChildRelation","keep","Update-MgSiteTermStoreGroupSetChildRelation","/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations/{}","" -"PATCH","/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations/{}","Sites","Update-MgSiteTermStoreGroupSetChildRelation","suppress","","/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations/{}","Update-MgSiteTermStoreGroupSetChildRelation" -"PATCH","/sites/{}/termstore/sets/{}/children/{}","Sites","Update-MgSiteTermStoreSetChild","keep","Update-MgSiteTermStoreSetChild","/sites/{}/termstore/sets/{}/children/{}/children/{}","" -"PATCH","/sites/{}/termstore/sets/{}/children/{}/children/{}","Sites","Update-MgSiteTermStoreSetChild","suppress","","/sites/{}/termstore/sets/{}/children/{}","Update-MgSiteTermStoreSetChild" -"PATCH","/sites/{}/termstore/sets/{}/children/{}/children/{}/relations/{}","Sites","Update-MgSiteTermStoreSetChildRelation","keep","Update-MgSiteTermStoreSetChildRelation","/sites/{}/termstore/sets/{}/children/{}/relations/{}","" -"PATCH","/sites/{}/termstore/sets/{}/children/{}/relations/{}","Sites","Update-MgSiteTermStoreSetChildRelation","suppress","","/sites/{}/termstore/sets/{}/children/{}/children/{}/relations/{}","Update-MgSiteTermStoreSetChildRelation" -"PATCH","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}","Sites","Update-MgSiteTermStoreSetParentGroupSetChild","keep","Update-MgSiteTermStoreSetParentGroupSetChild","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}","" -"PATCH","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}","Sites","Update-MgSiteTermStoreSetParentGroupSetChild","suppress","","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}","Update-MgSiteTermStoreSetParentGroupSetChild" -"PATCH","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations/{}","Sites","Update-MgSiteTermStoreSetParentGroupSetChildRelation","keep","Update-MgSiteTermStoreSetParentGroupSetChildRelation","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations/{}","" -"PATCH","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations/{}","Sites","Update-MgSiteTermStoreSetParentGroupSetChildRelation","suppress","","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations/{}","Update-MgSiteTermStoreSetParentGroupSetChildRelation" -"POST","/grouplifecyclepolicies","Groups","New-MgGroupLifecyclePolicy","keep","New-MgGroupLifecyclePolicy","/groups/{}/grouplifecyclepolicies","" -"POST","/groups/{}/grouplifecyclepolicies","Groups","New-MgGroupLifecyclePolicy","suppress","","/grouplifecyclepolicies","New-MgGroupLifecyclePolicy" -"POST","/groups/{}/settings","Groups","New-MgGroupSetting","keep","New-MgGroupSetting","/groupsettings","" -"POST","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children","Sites","New-MgGroupSiteTermStoreGroupSetChild","keep","New-MgGroupSiteTermStoreGroupSetChild","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/children","" -"POST","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/children","Sites","New-MgGroupSiteTermStoreGroupSetChild","suppress","","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children","New-MgGroupSiteTermStoreGroupSetChild" -"POST","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations","Sites","New-MgGroupSiteTermStoreGroupSetChildRelation","keep","New-MgGroupSiteTermStoreGroupSetChildRelation","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations","" -"POST","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations","Sites","New-MgGroupSiteTermStoreGroupSetChildRelation","suppress","","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations","New-MgGroupSiteTermStoreGroupSetChildRelation" -"POST","/groups/{}/sites/{}/termstore/sets/{}/children","Sites","New-MgGroupSiteTermStoreSetChild","keep","New-MgGroupSiteTermStoreSetChild","/groups/{}/sites/{}/termstore/sets/{}/children/{}/children","" -"POST","/groups/{}/sites/{}/termstore/sets/{}/children/{}/children","Sites","New-MgGroupSiteTermStoreSetChild","suppress","","/groups/{}/sites/{}/termstore/sets/{}/children","New-MgGroupSiteTermStoreSetChild" -"POST","/groups/{}/sites/{}/termstore/sets/{}/children/{}/children/{}/relations","Sites","New-MgGroupSiteTermStoreSetChildRelation","keep","New-MgGroupSiteTermStoreSetChildRelation","/groups/{}/sites/{}/termstore/sets/{}/children/{}/relations","" -"POST","/groups/{}/sites/{}/termstore/sets/{}/children/{}/relations","Sites","New-MgGroupSiteTermStoreSetChildRelation","suppress","","/groups/{}/sites/{}/termstore/sets/{}/children/{}/children/{}/relations","New-MgGroupSiteTermStoreSetChildRelation" -"POST","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children","Sites","New-MgGroupSiteTermStoreSetParentGroupSetChild","keep","New-MgGroupSiteTermStoreSetParentGroupSetChild","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children","" -"POST","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children","Sites","New-MgGroupSiteTermStoreSetParentGroupSetChild","suppress","","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children","New-MgGroupSiteTermStoreSetParentGroupSetChild" -"POST","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations","Sites","New-MgGroupSiteTermStoreSetParentGroupSetChildRelation","keep","New-MgGroupSiteTermStoreSetParentGroupSetChildRelation","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations","" -"POST","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations","Sites","New-MgGroupSiteTermStoreSetParentGroupSetChildRelation","suppress","","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations","New-MgGroupSiteTermStoreSetParentGroupSetChildRelation" -"POST","/groupsettings","Groups","New-MgGroupSetting","suppress","","/groups/{}/settings","New-MgGroupSetting" -"POST","/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles","Identity.Governance","New-MgIdentityGovernanceEntitlementManagementCatalogResourceRole","rename","New-MgEntitlementManagementCatalogResourceRole","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles","" -"POST","/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes","Identity.Governance","New-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScope","rename","New-MgEntitlementManagementCatalogResourceRoleResourceScope","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource/scopes","" -"POST","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles","Identity.Governance","New-MgIdentityGovernanceEntitlementManagementCatalogResourceRole","suppress","","/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles","New-MgEntitlementManagementCatalogResourceRole" -"POST","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource/scopes","Identity.Governance","New-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScope","suppress","","/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes","New-MgEntitlementManagementCatalogResourceRoleResourceScope" -"POST","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes","Identity.Governance","New-MgIdentityGovernanceEntitlementManagementCatalogResourceScope","suppress","","/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes","New-MgEntitlementManagementCatalogResourceScope" -"POST","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles","Identity.Governance","New-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRole","rename","New-MgEntitlementManagementCatalogResourceScopeResourceRole","/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/roles","" -"POST","/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes","Identity.Governance","New-MgIdentityGovernanceEntitlementManagementCatalogResourceScope","rename","New-MgEntitlementManagementCatalogResourceScope","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes","" -"POST","/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/roles","Identity.Governance","New-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRole","suppress","","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles","New-MgEntitlementManagementCatalogResourceScopeResourceRole" -"POST","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles","Identity.Governance","New-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRole","rename","New-MgEntitlementManagementResourceRequestCatalogResourceRole","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles","" -"POST","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes","Identity.Governance","New-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScope","rename","New-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScope","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource/scopes","" -"POST","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles","Identity.Governance","New-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRole","suppress","","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles","New-MgEntitlementManagementResourceRequestCatalogResourceRole" -"POST","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource/scopes","Identity.Governance","New-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScope","suppress","","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes","New-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScope" -"POST","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes","Identity.Governance","New-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScope","suppress","","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes","New-MgEntitlementManagementResourceRequestCatalogResourceScope" -"POST","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles","Identity.Governance","New-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRole","rename","New-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRole","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/roles","" -"POST","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes","Identity.Governance","New-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScope","rename","New-MgEntitlementManagementResourceRequestCatalogResourceScope","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes","" -"POST","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/roles","Identity.Governance","New-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRole","suppress","","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles","New-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRole" -"POST","/sites/{}/termstore/groups/{}/sets/{}/children","Sites","New-MgSiteTermStoreGroupSetChild","keep","New-MgSiteTermStoreGroupSetChild","/sites/{}/termstore/groups/{}/sets/{}/children/{}/children","" -"POST","/sites/{}/termstore/groups/{}/sets/{}/children/{}/children","Sites","New-MgSiteTermStoreGroupSetChild","suppress","","/sites/{}/termstore/groups/{}/sets/{}/children","New-MgSiteTermStoreGroupSetChild" -"POST","/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations","Sites","New-MgSiteTermStoreGroupSetChildRelation","keep","New-MgSiteTermStoreGroupSetChildRelation","/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations","" -"POST","/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations","Sites","New-MgSiteTermStoreGroupSetChildRelation","suppress","","/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations","New-MgSiteTermStoreGroupSetChildRelation" -"POST","/sites/{}/termstore/sets/{}/children","Sites","New-MgSiteTermStoreSetChild","keep","New-MgSiteTermStoreSetChild","/sites/{}/termstore/sets/{}/children/{}/children","" -"POST","/sites/{}/termstore/sets/{}/children/{}/children","Sites","New-MgSiteTermStoreSetChild","suppress","","/sites/{}/termstore/sets/{}/children","New-MgSiteTermStoreSetChild" -"POST","/sites/{}/termstore/sets/{}/children/{}/children/{}/relations","Sites","New-MgSiteTermStoreSetChildRelation","keep","New-MgSiteTermStoreSetChildRelation","/sites/{}/termstore/sets/{}/children/{}/relations","" -"POST","/sites/{}/termstore/sets/{}/children/{}/relations","Sites","New-MgSiteTermStoreSetChildRelation","suppress","","/sites/{}/termstore/sets/{}/children/{}/children/{}/relations","New-MgSiteTermStoreSetChildRelation" -"POST","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children","Sites","New-MgSiteTermStoreSetParentGroupSetChild","keep","New-MgSiteTermStoreSetParentGroupSetChild","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children","" -"POST","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children","Sites","New-MgSiteTermStoreSetParentGroupSetChild","suppress","","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children","New-MgSiteTermStoreSetParentGroupSetChild" -"POST","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations","Sites","New-MgSiteTermStoreSetParentGroupSetChildRelation","keep","New-MgSiteTermStoreSetParentGroupSetChildRelation","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations","" -"POST","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations","Sites","New-MgSiteTermStoreSetParentGroupSetChildRelation","suppress","","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations","New-MgSiteTermStoreSetParentGroupSetChildRelation" +"DELETE","/applications/{}/appmanagementpolicies/{}/$ref","Applications","Remove-MgApplicationAppManagementPolicyByRef","rename","System.Object[]","/applications/{}/appmanagementpolicies/$ref","" +"DELETE","/applications/{}/appmanagementpolicies/$ref","Applications","Remove-MgApplicationAppManagementPolicyByRef","suppress","System.Object[]","/applications/{}/appmanagementpolicies/{}/$ref","Remove-MgApplicationAppManagementPolicyAppManagementPolicyByRef" +"DELETE","/applications/{}/owners/{}/$ref","Applications","Remove-MgApplicationOwnerByRef","rename","System.Object[]","/applications/{}/owners/$ref","" +"DELETE","/applications/{}/owners/$ref","Applications","Remove-MgApplicationOwnerByRef","suppress","System.Object[]","/applications/{}/owners/{}/$ref","Remove-MgApplicationOwnerDirectoryObjectByRef" +"DELETE","/applications/{}/tokenissuancepolicies/{}/$ref","Applications","Remove-MgApplicationTokenIssuancePolicyByRef","rename","System.Object[]","/applications/{}/tokenissuancepolicies/$ref","" +"DELETE","/applications/{}/tokenissuancepolicies/$ref","Applications","Remove-MgApplicationTokenIssuancePolicyByRef","suppress","System.Object[]","/applications/{}/tokenissuancepolicies/{}/$ref","Remove-MgApplicationTokenIssuancePolicyTokenIssuancePolicyByRef" +"DELETE","/applications/{}/tokenlifetimepolicies/{}/$ref","Applications","Remove-MgApplicationTokenLifetimePolicyByRef","rename","System.Object[]","/applications/{}/tokenlifetimepolicies/$ref","" +"DELETE","/applications/{}/tokenlifetimepolicies/$ref","Applications","Remove-MgApplicationTokenLifetimePolicyByRef","suppress","System.Object[]","/applications/{}/tokenlifetimepolicies/{}/$ref","Remove-MgApplicationTokenLifetimePolicyTokenLifetimePolicyByRef" +"DELETE","/devices/{}/registeredowners/{}/$ref","Identity.DirectoryManagement","Remove-MgDeviceRegisteredOwnerByRef","rename","System.Object[]","/devices/{}/registeredowners/$ref","" +"DELETE","/devices/{}/registeredowners/$ref","Identity.DirectoryManagement","Remove-MgDeviceRegisteredOwnerByRef","suppress","System.Object[]","/devices/{}/registeredowners/{}/$ref","Remove-MgDeviceRegisteredOwnerDirectoryObjectByRef" +"DELETE","/devices/{}/registeredusers/{}/$ref","Identity.DirectoryManagement","Remove-MgDeviceRegisteredUserByRef","rename","System.Object[]","/devices/{}/registeredusers/$ref","" +"DELETE","/devices/{}/registeredusers/$ref","Identity.DirectoryManagement","Remove-MgDeviceRegisteredUserByRef","suppress","System.Object[]","/devices/{}/registeredusers/{}/$ref","Remove-MgDeviceRegisteredUserDirectoryObjectByRef" +"DELETE","/directory/administrativeunits/{}/members/{}/$ref","Identity.DirectoryManagement","Remove-MgDirectoryAdministrativeUnitMemberByRef","rename","System.Object[]","/directory/administrativeunits/{}/members/$ref","" +"DELETE","/directory/administrativeunits/{}/members/$ref","Identity.DirectoryManagement","Remove-MgDirectoryAdministrativeUnitMemberByRef","suppress","System.Object[]","/directory/administrativeunits/{}/members/{}/$ref","Remove-MgDirectoryAdministrativeUnitMemberDirectoryObjectByRef" +"DELETE","/directoryroles/{}/members/{}/$ref","Identity.DirectoryManagement","Remove-MgDirectoryRoleMemberByRef","rename","System.Object[]","/directoryroles/{}/members/$ref","" +"DELETE","/directoryroles/{}/members/$ref","Identity.DirectoryManagement","Remove-MgDirectoryRoleMemberByRef","suppress","System.Object[]","/directoryroles/{}/members/{}/$ref","Remove-MgDirectoryRoleMemberDirectoryObjectByRef" +"DELETE","/education/classes/{}/assignments/{}/categories/{}/$ref","Education","Remove-MgEducationClassAssignmentCategoryByRef","rename","System.Object[]","/education/classes/{}/assignments/{}/categories/$ref","" +"DELETE","/education/classes/{}/assignments/{}/categories/$ref","Education","Remove-MgEducationClassAssignmentCategoryByRef","suppress","System.Object[]","/education/classes/{}/assignments/{}/categories/{}/$ref","Remove-MgEducationClassAssignmentCategoryEducationCategoryByRef" +"DELETE","/education/classes/{}/members/{}/$ref","Education","Remove-MgEducationClassMemberByRef","rename","System.Object[]","/education/classes/{}/members/$ref","" +"DELETE","/education/classes/{}/members/$ref","Education","Remove-MgEducationClassMemberByRef","suppress","System.Object[]","/education/classes/{}/members/{}/$ref","Remove-MgEducationClassMemberEducationUserByRef" +"DELETE","/education/classes/{}/teachers/{}/$ref","Education","Remove-MgEducationClassTeacherByRef","rename","System.Object[]","/education/classes/{}/teachers/$ref","" +"DELETE","/education/classes/{}/teachers/$ref","Education","Remove-MgEducationClassTeacherByRef","suppress","System.Object[]","/education/classes/{}/teachers/{}/$ref","Remove-MgEducationClassTeacherEducationUserByRef" +"DELETE","/education/me/assignments/{}/categories/{}/$ref","Education","Remove-MgEducationMeAssignmentCategoryByRef","rename","System.Object[]","/education/me/assignments/{}/categories/$ref","" +"DELETE","/education/me/assignments/{}/categories/$ref","Education","Remove-MgEducationMeAssignmentCategoryByRef","suppress","System.Object[]","/education/me/assignments/{}/categories/{}/$ref","Remove-MgEducationMeAssignmentCategoryEducationCategoryByRef" +"DELETE","/education/schools/{}/classes/{}/$ref","Education","Remove-MgEducationSchoolClassByRef","rename","System.Object[]","/education/schools/{}/classes/$ref","" +"DELETE","/education/schools/{}/classes/$ref","Education","Remove-MgEducationSchoolClassByRef","suppress","System.Object[]","/education/schools/{}/classes/{}/$ref","Remove-MgEducationSchoolClassEducationClassByRef" +"DELETE","/education/schools/{}/users/{}/$ref","Education","Remove-MgEducationSchoolUserByRef","rename","System.Object[]","/education/schools/{}/users/$ref","" +"DELETE","/education/schools/{}/users/$ref","Education","Remove-MgEducationSchoolUserByRef","suppress","System.Object[]","/education/schools/{}/users/{}/$ref","Remove-MgEducationSchoolUserEducationUserByRef" +"DELETE","/education/users/{}/assignments/{}/categories/{}/$ref","Education","Remove-MgEducationUserAssignmentCategoryByRef","rename","System.Object[]","/education/users/{}/assignments/{}/categories/$ref","" +"DELETE","/education/users/{}/assignments/{}/categories/$ref","Education","Remove-MgEducationUserAssignmentCategoryByRef","suppress","System.Object[]","/education/users/{}/assignments/{}/categories/{}/$ref","Remove-MgEducationUserAssignmentCategoryEducationCategoryByRef" +"DELETE","/groups/{}/acceptedsenders/{}/$ref","Groups","Remove-MgGroupAcceptedSenderByRef","rename","System.Object[]","/groups/{}/acceptedsenders/$ref","" +"DELETE","/groups/{}/acceptedsenders/$ref","Groups","Remove-MgGroupAcceptedSenderByRef","suppress","System.Object[]","/groups/{}/acceptedsenders/{}/$ref","Remove-MgGroupAcceptedSenderDirectoryObjectByRef" +"DELETE","/groups/{}/members/{}/$ref","Groups","Remove-MgGroupMemberByRef","rename","System.Object[]","/groups/{}/members/$ref","" +"DELETE","/groups/{}/members/$ref","Groups","Remove-MgGroupMemberByRef","suppress","System.Object[]","/groups/{}/members/{}/$ref","Remove-MgGroupMemberDirectoryObjectByRef" +"DELETE","/groups/{}/owners/{}/$ref","Groups","Remove-MgGroupOwnerByRef","rename","System.Object[]","/groups/{}/owners/$ref","" +"DELETE","/groups/{}/owners/$ref","Groups","Remove-MgGroupOwnerByRef","suppress","System.Object[]","/groups/{}/owners/{}/$ref","Remove-MgGroupOwnerDirectoryObjectByRef" +"DELETE","/groups/{}/photo/$value","Groups","Remove-MgGroupPhotoContent","keep","System.Object[]","/groups/{}/photos/{}/$value","" +"DELETE","/groups/{}/photos/{}/$value","Groups","Remove-MgGroupPhotoContent","suppress","System.Object[]","/groups/{}/photo/$value","Remove-MgGroupPhotoContent" +"DELETE","/groups/{}/rejectedsenders/{}/$ref","Groups","Remove-MgGroupRejectedSenderByRef","rename","System.Object[]","/groups/{}/rejectedsenders/$ref","" +"DELETE","/groups/{}/rejectedsenders/$ref","Groups","Remove-MgGroupRejectedSenderByRef","suppress","System.Object[]","/groups/{}/rejectedsenders/{}/$ref","Remove-MgGroupRejectedSenderDirectoryObjectByRef" +"DELETE","/groups/{}/settings/{}","Groups","Remove-MgGroupSetting","keep","System.Object[]","/groupsettings/{}","" +"DELETE","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}","Sites","Remove-MgGroupSiteTermStoreGroupSetChild","keep","System.Object[]","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}","" +"DELETE","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}","Sites","Remove-MgGroupSiteTermStoreGroupSetChild","suppress","System.Object[]","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}","Remove-MgGroupSiteTermStoreGroupSetChild" +"DELETE","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations/{}","Sites","Remove-MgGroupSiteTermStoreGroupSetChildRelation","keep","System.Object[]","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations/{}","" +"DELETE","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations/{}","Sites","Remove-MgGroupSiteTermStoreGroupSetChildRelation","suppress","System.Object[]","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations/{}","Remove-MgGroupSiteTermStoreGroupSetChildRelation" +"DELETE","/groups/{}/sites/{}/termstore/sets/{}/children/{}","Sites","Remove-MgGroupSiteTermStoreSetChild","keep","System.Object[]","/groups/{}/sites/{}/termstore/sets/{}/children/{}/children/{}","" +"DELETE","/groups/{}/sites/{}/termstore/sets/{}/children/{}/children/{}","Sites","Remove-MgGroupSiteTermStoreSetChild","suppress","System.Object[]","/groups/{}/sites/{}/termstore/sets/{}/children/{}","Remove-MgGroupSiteTermStoreSetChild" +"DELETE","/groups/{}/sites/{}/termstore/sets/{}/children/{}/children/{}/relations/{}","Sites","Remove-MgGroupSiteTermStoreSetChildRelation","keep","System.Object[]","/groups/{}/sites/{}/termstore/sets/{}/children/{}/relations/{}","" +"DELETE","/groups/{}/sites/{}/termstore/sets/{}/children/{}/relations/{}","Sites","Remove-MgGroupSiteTermStoreSetChildRelation","suppress","System.Object[]","/groups/{}/sites/{}/termstore/sets/{}/children/{}/children/{}/relations/{}","Remove-MgGroupSiteTermStoreSetChildRelation" +"DELETE","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}","Sites","Remove-MgGroupSiteTermStoreSetParentGroupSetChild","keep","System.Object[]","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}","" +"DELETE","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}","Sites","Remove-MgGroupSiteTermStoreSetParentGroupSetChild","suppress","System.Object[]","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}","Remove-MgGroupSiteTermStoreSetParentGroupSetChild" +"DELETE","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations/{}","Sites","Remove-MgGroupSiteTermStoreSetParentGroupSetChildRelation","keep","System.Object[]","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations/{}","" +"DELETE","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations/{}","Sites","Remove-MgGroupSiteTermStoreSetParentGroupSetChildRelation","suppress","System.Object[]","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations/{}","Remove-MgGroupSiteTermStoreSetParentGroupSetChildRelation" +"DELETE","/groupsettings/{}","Groups","Remove-MgGroupSetting","suppress","System.Object[]","/groups/{}/settings/{}","Remove-MgGroupSetting" +"DELETE","/identity/authenticationeventsflows/{}/graph.externalusersselfservicesignupeventsflow/onattributecollection/graph.onattributecollectionexternalusersselfservicesignup/attributes/{}/$ref","Identity.SignIns","Remove-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowOnAttributeCollectionAsOnAttributeCollectionExternalUserSelfServiceSignUpAttributeByRef","suppress","System.Object[]","/identity/authenticationeventsflows/{}/graph.externalusersselfservicesignupeventsflow/onattributecollection/graph.onattributecollectionexternalusersselfservicesignup/attributes/$ref","" +"DELETE","/identity/authenticationeventsflows/{}/graph.externalusersselfservicesignupeventsflow/onattributecollection/graph.onattributecollectionexternalusersselfservicesignup/attributes/$ref","Identity.SignIns","Remove-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowOnAttributeCollectionAsOnAttributeCollectionExternalUserSelfServiceSignUpAttributeByRef","suppress","System.Object[]","/identity/authenticationeventsflows/{}/graph.externalusersselfservicesignupeventsflow/onattributecollection/graph.onattributecollectionexternalusersselfservicesignup/attributes/{}/$ref","" +"DELETE","/identity/authenticationeventsflows/{}/graph.externalusersselfservicesignupeventsflow/onauthenticationmethodloadstart/graph.onauthenticationmethodloadstartexternalusersselfservicesignup/identityproviders/{}/$ref","Identity.SignIns","Remove-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowOnAuthenticationMethodLoadStartAsOnAuthenticationMethodLoadStartExternalUserSelfServiceSignUpIdentityProviderByRef","suppress","System.Object[]","/identity/authenticationeventsflows/{}/graph.externalusersselfservicesignupeventsflow/onauthenticationmethodloadstart/graph.onauthenticationmethodloadstartexternalusersselfservicesignup/identityproviders/$ref","" +"DELETE","/identity/authenticationeventsflows/{}/graph.externalusersselfservicesignupeventsflow/onauthenticationmethodloadstart/graph.onauthenticationmethodloadstartexternalusersselfservicesignup/identityproviders/$ref","Identity.SignIns","Remove-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowOnAuthenticationMethodLoadStartAsOnAuthenticationMethodLoadStartExternalUserSelfServiceSignUpIdentityProviderByRef","suppress","System.Object[]","/identity/authenticationeventsflows/{}/graph.externalusersselfservicesignupeventsflow/onauthenticationmethodloadstart/graph.onauthenticationmethodloadstartexternalusersselfservicesignup/identityproviders/{}/$ref","" +"DELETE","/identity/b2xuserflows/{}/userflowidentityproviders/{}/$ref","Identity.SignIns","Remove-MgIdentityB2xUserFlowUserFlowIdentityProviderByRef","rename","System.Object[]","/identity/b2xuserflows/{}/userflowidentityproviders/$ref","" +"DELETE","/identity/b2xuserflows/{}/userflowidentityproviders/$ref","Identity.SignIns","Remove-MgIdentityB2xUserFlowUserFlowIdentityProviderByRef","suppress","System.Object[]","/identity/b2xuserflows/{}/userflowidentityproviders/{}/$ref","Remove-MgIdentityB2XUserFlowIdentityProviderBaseByRef" +"DELETE","/identitygovernance/entitlementmanagement/accesspackages/{}/incompatibleaccesspackages/{}/$ref","Identity.Governance","Remove-MgIdentityGovernanceEntitlementManagementAccessPackageIncompatibleAccessPackageByRef","suppress","System.Object[]","/identitygovernance/entitlementmanagement/accesspackages/{}/incompatibleaccesspackages/$ref","Remove-MgEntitlementManagementAccessPackageIncompatibleAccessPackageByRef" +"DELETE","/identitygovernance/entitlementmanagement/accesspackages/{}/incompatibleaccesspackages/$ref","Identity.Governance","Remove-MgIdentityGovernanceEntitlementManagementAccessPackageIncompatibleAccessPackageByRef","rename","System.Object[]","/identitygovernance/entitlementmanagement/accesspackages/{}/incompatibleaccesspackages/{}/$ref","" +"DELETE","/identitygovernance/entitlementmanagement/accesspackages/{}/incompatiblegroups/{}/$ref","Identity.Governance","Remove-MgIdentityGovernanceEntitlementManagementAccessPackageIncompatibleGroupByRef","suppress","System.Object[]","/identitygovernance/entitlementmanagement/accesspackages/{}/incompatiblegroups/$ref","Remove-MgEntitlementManagementAccessPackageIncompatibleGroupByRef" +"DELETE","/identitygovernance/entitlementmanagement/accesspackages/{}/incompatiblegroups/$ref","Identity.Governance","Remove-MgIdentityGovernanceEntitlementManagementAccessPackageIncompatibleGroupByRef","rename","System.Object[]","/identitygovernance/entitlementmanagement/accesspackages/{}/incompatiblegroups/{}/$ref","" +"DELETE","/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}","Identity.Governance","Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceRole","rename","System.Object[]","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}","" +"DELETE","/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource","Identity.Governance","Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResource","rename","System.Object[]","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource","" +"DELETE","/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes/{}","Identity.Governance","Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScope","rename","System.Object[]","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource/scopes/{}","" +"DELETE","/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes/{}/resource","Identity.Governance","Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResource","rename","System.Object[]","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource/scopes/{}/resource","" +"DELETE","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}","Identity.Governance","Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceRole","suppress","System.Object[]","/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}","Remove-MgEntitlementManagementCatalogResourceRole" +"DELETE","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource","Identity.Governance","Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResource","suppress","System.Object[]","/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource","Remove-MgEntitlementManagementCatalogResourceRoleResource" +"DELETE","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource/scopes/{}","Identity.Governance","Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScope","suppress","System.Object[]","/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes/{}","Remove-MgEntitlementManagementCatalogResourceRoleResourceScope" +"DELETE","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource/scopes/{}/resource","Identity.Governance","Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResource","suppress","System.Object[]","/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes/{}/resource","Remove-MgEntitlementManagementCatalogResourceRoleResourceScopeResource" +"DELETE","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}","Identity.Governance","Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceScope","suppress","System.Object[]","/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}","Remove-MgEntitlementManagementCatalogResourceScope" +"DELETE","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource","Identity.Governance","Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResource","rename","System.Object[]","/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource","" +"DELETE","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles/{}","Identity.Governance","Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRole","rename","System.Object[]","/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/roles/{}","" +"DELETE","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles/{}/resource","Identity.Governance","Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResource","rename","System.Object[]","/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/roles/{}/resource","" +"DELETE","/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}","Identity.Governance","Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceScope","rename","System.Object[]","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}","" +"DELETE","/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource","Identity.Governance","Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResource","suppress","System.Object[]","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource","Remove-MgEntitlementManagementCatalogResourceScopeResource" +"DELETE","/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/roles/{}","Identity.Governance","Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRole","suppress","System.Object[]","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles/{}","Remove-MgEntitlementManagementCatalogResourceScopeResourceRole" +"DELETE","/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/roles/{}/resource","Identity.Governance","Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResource","suppress","System.Object[]","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles/{}/resource","Remove-MgEntitlementManagementCatalogResourceScopeResourceRoleResource" +"DELETE","/identitygovernance/entitlementmanagement/connectedorganizations/{}/externalsponsors/{}/$ref","Identity.Governance","Remove-MgIdentityGovernanceEntitlementManagementConnectedOrganizationExternalSponsorByRef","rename","System.Object[]","/identitygovernance/entitlementmanagement/connectedorganizations/{}/externalsponsors/$ref","" +"DELETE","/identitygovernance/entitlementmanagement/connectedorganizations/{}/externalsponsors/$ref","Identity.Governance","Remove-MgIdentityGovernanceEntitlementManagementConnectedOrganizationExternalSponsorByRef","suppress","System.Object[]","/identitygovernance/entitlementmanagement/connectedorganizations/{}/externalsponsors/{}/$ref","Remove-MgEntitlementManagementConnectedOrganizationExternalSponsorDirectoryObjectByRef" +"DELETE","/identitygovernance/entitlementmanagement/connectedorganizations/{}/internalsponsors/{}/$ref","Identity.Governance","Remove-MgIdentityGovernanceEntitlementManagementConnectedOrganizationInternalSponsorByRef","rename","System.Object[]","/identitygovernance/entitlementmanagement/connectedorganizations/{}/internalsponsors/$ref","" +"DELETE","/identitygovernance/entitlementmanagement/connectedorganizations/{}/internalsponsors/$ref","Identity.Governance","Remove-MgIdentityGovernanceEntitlementManagementConnectedOrganizationInternalSponsorByRef","suppress","System.Object[]","/identitygovernance/entitlementmanagement/connectedorganizations/{}/internalsponsors/{}/$ref","Remove-MgEntitlementManagementConnectedOrganizationInternalSponsorDirectoryObjectByRef" +"DELETE","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}","Identity.Governance","Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRole","rename","System.Object[]","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}","" +"DELETE","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource","Identity.Governance","Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResource","rename","System.Object[]","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource","" +"DELETE","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes/{}","Identity.Governance","Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScope","rename","System.Object[]","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource/scopes/{}","" +"DELETE","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes/{}/resource","Identity.Governance","Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResource","rename","System.Object[]","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource/scopes/{}/resource","" +"DELETE","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}","Identity.Governance","Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRole","suppress","System.Object[]","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}","Remove-MgEntitlementManagementResourceRequestCatalogResourceRole" +"DELETE","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource","Identity.Governance","Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResource","suppress","System.Object[]","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource","Remove-MgEntitlementManagementResourceRequestCatalogResourceRoleResource" +"DELETE","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource/scopes/{}","Identity.Governance","Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScope","suppress","System.Object[]","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes/{}","Remove-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScope" +"DELETE","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource/scopes/{}/resource","Identity.Governance","Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResource","suppress","System.Object[]","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes/{}/resource","Remove-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResource" +"DELETE","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}","Identity.Governance","Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScope","suppress","System.Object[]","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}","Remove-MgEntitlementManagementResourceRequestCatalogResourceScope" +"DELETE","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource","Identity.Governance","Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResource","rename","System.Object[]","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource","" +"DELETE","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles/{}","Identity.Governance","Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRole","rename","System.Object[]","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/roles/{}","" +"DELETE","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles/{}/resource","Identity.Governance","Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResource","rename","System.Object[]","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/roles/{}/resource","" +"DELETE","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}","Identity.Governance","Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScope","rename","System.Object[]","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}","" +"DELETE","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource","Identity.Governance","Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResource","suppress","System.Object[]","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource","Remove-MgEntitlementManagementResourceRequestCatalogResourceScopeResource" +"DELETE","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/roles/{}","Identity.Governance","Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRole","suppress","System.Object[]","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles/{}","Remove-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRole" +"DELETE","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/roles/{}/resource","Identity.Governance","Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResource","suppress","System.Object[]","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles/{}/resource","Remove-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResource" +"DELETE","/policies/featurerolloutpolicies/{}/appliesto/{}/$ref","Identity.SignIns","Remove-MgPolicyFeatureRolloutPolicyApplyToByRef","rename","System.Object[]","/policies/featurerolloutpolicies/{}/appliesto/$ref","" +"DELETE","/policies/featurerolloutpolicies/{}/appliesto/$ref","Identity.SignIns","Remove-MgPolicyFeatureRolloutPolicyApplyToByRef","suppress","System.Object[]","/policies/featurerolloutpolicies/{}/appliesto/{}/$ref","Remove-MgPolicyFeatureRolloutPolicyApplyToDirectoryObjectByRef" +"DELETE","/print/shares/{}/allowedgroups/{}/$ref","Devices.CloudPrint","Remove-MgPrintShareAllowedGroupByRef","suppress","System.Object[]","/print/shares/{}/allowedgroups/$ref","Remove-MgPrintShareAllowedGroupByRef" +"DELETE","/print/shares/{}/allowedgroups/$ref","Devices.CloudPrint","Remove-MgPrintShareAllowedGroupByRef","keep","System.Object[]","/print/shares/{}/allowedgroups/{}/$ref","" +"DELETE","/print/shares/{}/allowedusers/{}/$ref","Devices.CloudPrint","Remove-MgPrintShareAllowedUserByRef","suppress","System.Object[]","/print/shares/{}/allowedusers/$ref","Remove-MgPrintShareAllowedUserByRef" +"DELETE","/print/shares/{}/allowedusers/$ref","Devices.CloudPrint","Remove-MgPrintShareAllowedUserByRef","keep","System.Object[]","/print/shares/{}/allowedusers/{}/$ref","" +"DELETE","/serviceprincipals/{}/claimsmappingpolicies/{}/$ref","Applications","Remove-MgServicePrincipalClaimMappingPolicyByRef","rename","System.Object[]","/serviceprincipals/{}/claimsmappingpolicies/$ref","" +"DELETE","/serviceprincipals/{}/claimsmappingpolicies/$ref","Applications","Remove-MgServicePrincipalClaimMappingPolicyByRef","suppress","System.Object[]","/serviceprincipals/{}/claimsmappingpolicies/{}/$ref","Remove-MgServicePrincipalClaimMappingPolicyClaimMappingPolicyByRef" +"DELETE","/serviceprincipals/{}/homerealmdiscoverypolicies/{}/$ref","Applications","Remove-MgServicePrincipalHomeRealmDiscoveryPolicyByRef","rename","System.Object[]","/serviceprincipals/{}/homerealmdiscoverypolicies/$ref","" +"DELETE","/serviceprincipals/{}/homerealmdiscoverypolicies/$ref","Applications","Remove-MgServicePrincipalHomeRealmDiscoveryPolicyByRef","suppress","System.Object[]","/serviceprincipals/{}/homerealmdiscoverypolicies/{}/$ref","Remove-MgServicePrincipalHomeRealmDiscoveryPolicyHomeRealmDiscoveryPolicyByRef" +"DELETE","/serviceprincipals/{}/owners/{}/$ref","Applications","Remove-MgServicePrincipalOwnerByRef","rename","System.Object[]","/serviceprincipals/{}/owners/$ref","" +"DELETE","/serviceprincipals/{}/owners/$ref","Applications","Remove-MgServicePrincipalOwnerByRef","suppress","System.Object[]","/serviceprincipals/{}/owners/{}/$ref","Remove-MgServicePrincipalOwnerDirectoryObjectByRef" +"DELETE","/serviceprincipals/{}/tokenissuancepolicies/{}/$ref","Applications","Remove-MgServicePrincipalTokenIssuancePolicyByRef","rename","System.Object[]","/serviceprincipals/{}/tokenissuancepolicies/$ref","Remove-MgServicePrincipalTokenIssuancePolicyByRef" +"DELETE","/serviceprincipals/{}/tokenissuancepolicies/$ref","Applications","Remove-MgServicePrincipalTokenIssuancePolicyByRef","keep","System.Object[]","/serviceprincipals/{}/tokenissuancepolicies/{}/$ref","Remove-MgServicePrincipalTokenIssuancePolicyTokenIssuancePolicyByRef" +"DELETE","/serviceprincipals/{}/tokenlifetimepolicies/{}/$ref","Applications","Remove-MgServicePrincipalTokenLifetimePolicyByRef","rename","System.Object[]","/serviceprincipals/{}/tokenlifetimepolicies/$ref","Remove-MgServicePrincipalTokenLifetimePolicyByRef" +"DELETE","/serviceprincipals/{}/tokenlifetimepolicies/$ref","Applications","Remove-MgServicePrincipalTokenLifetimePolicyByRef","keep","System.Object[]","/serviceprincipals/{}/tokenlifetimepolicies/{}/$ref","Remove-MgServicePrincipalTokenLifetimePolicyTokenLifetimePolicyByRef" +"DELETE","/sites/{}/termstore/groups/{}/sets/{}/children/{}","Sites","Remove-MgSiteTermStoreGroupSetChild","keep","System.Object[]","/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}","" +"DELETE","/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}","Sites","Remove-MgSiteTermStoreGroupSetChild","suppress","System.Object[]","/sites/{}/termstore/groups/{}/sets/{}/children/{}","Remove-MgSiteTermStoreGroupSetChild" +"DELETE","/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations/{}","Sites","Remove-MgSiteTermStoreGroupSetChildRelation","keep","System.Object[]","/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations/{}","" +"DELETE","/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations/{}","Sites","Remove-MgSiteTermStoreGroupSetChildRelation","suppress","System.Object[]","/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations/{}","Remove-MgSiteTermStoreGroupSetChildRelation" +"DELETE","/sites/{}/termstore/sets/{}/children/{}","Sites","Remove-MgSiteTermStoreSetChild","keep","System.Object[]","/sites/{}/termstore/sets/{}/children/{}/children/{}","" +"DELETE","/sites/{}/termstore/sets/{}/children/{}/children/{}","Sites","Remove-MgSiteTermStoreSetChild","suppress","System.Object[]","/sites/{}/termstore/sets/{}/children/{}","Remove-MgSiteTermStoreSetChild" +"DELETE","/sites/{}/termstore/sets/{}/children/{}/children/{}/relations/{}","Sites","Remove-MgSiteTermStoreSetChildRelation","keep","System.Object[]","/sites/{}/termstore/sets/{}/children/{}/relations/{}","" +"DELETE","/sites/{}/termstore/sets/{}/children/{}/relations/{}","Sites","Remove-MgSiteTermStoreSetChildRelation","suppress","System.Object[]","/sites/{}/termstore/sets/{}/children/{}/children/{}/relations/{}","Remove-MgSiteTermStoreSetChildRelation" +"DELETE","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}","Sites","Remove-MgSiteTermStoreSetParentGroupSetChild","keep","System.Object[]","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}","" +"DELETE","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}","Sites","Remove-MgSiteTermStoreSetParentGroupSetChild","suppress","System.Object[]","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}","Remove-MgSiteTermStoreSetParentGroupSetChild" +"DELETE","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations/{}","Sites","Remove-MgSiteTermStoreSetParentGroupSetChildRelation","keep","System.Object[]","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations/{}","" +"DELETE","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations/{}","Sites","Remove-MgSiteTermStoreSetParentGroupSetChildRelation","suppress","System.Object[]","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations/{}","Remove-MgSiteTermStoreSetParentGroupSetChildRelation" +"DELETE","/users/{}/photo/$value","Users","Remove-MgUserPhotoContent","keep","System.Object[]","/users/{}/photos/{}/$value","" +"DELETE","/users/{}/photos/{}/$value","Users","Remove-MgUserPhotoContent","suppress","System.Object[]","/users/{}/photo/$value","Remove-MgUserPhotoContent" +"DELETE","/users/{}/sponsors/{}/$ref","Users","Remove-MgUserSponsorByRef","rename","System.Object[]","/users/{}/sponsors/$ref","Remove-MgUserSponsorByRef" +"DELETE","/users/{}/sponsors/$ref","Users","Remove-MgUserSponsorByRef","keep","System.Object[]","/users/{}/sponsors/{}/$ref","Remove-MgUserSponsorDirectoryObjectByRef" +"GET","/education/classes/{}/assignmentcategories/$count","Education","Get-MgEducationClassAssignmentCategoryCount","keep","System.Object[]","/education/classes/{}/assignments/{}/categories/$count","" +"GET","/education/classes/{}/assignmentcategories/delta","Education","Get-MgEducationClassAssignmentCategoryDelta","keep","System.Object[]","/education/classes/{}/assignments/{}/categories/delta","" +"GET","/education/classes/{}/assignments/{}/categories/$count","Education","Get-MgEducationClassAssignmentCategoryCount","suppress","System.Object[]","/education/classes/{}/assignmentcategories/$count","Get-MgEducationClassAssignmentCategoryCount" +"GET","/education/classes/{}/assignments/{}/categories/delta","Education","Get-MgEducationClassAssignmentCategoryDelta","suppress","System.Object[]","/education/classes/{}/assignmentcategories/delta","Get-MgEducationClassAssignmentCategoryDelta" +"GET","/groups/{}/calendar/calendarview","Calendar","Get-MgGroupCalendarView","keep","System.Object[]","/groups/{}/calendarview","" +"GET","/groups/{}/calendar/calendarview/delta","Calendar","Get-MgGroupCalendarViewDelta","suppress","System.Object[]","/groups/{}/calendarview/delta","" +"GET","/groups/{}/calendarview","Calendar","Get-MgGroupCalendarView","suppress","System.Object[]","/groups/{}/calendar/calendarview","Get-MgGroupCalendarView" +"GET","/groups/{}/calendarview/delta","Calendar","Get-MgGroupCalendarViewDelta","suppress","System.Object[]","/groups/{}/calendar/calendarview/delta","" +"GET","/groups/{}/onenote/notebooks/{}/sectiongroups","Notes","Get-MgGroupOnenoteNotebookSectionGroup","keep","System.Object[]","/groups/{}/onenote/notebooks/{}/sectiongroups/{};/groups/{}/onenote/notebooks/{}/sectiongroups/{}/sectiongroups;/groups/{}/onenote/notebooks/{}/sectiongroups/{}/sectiongroups/{}","Get-MgGroupOnenoteNotebookSectionGroup" +"GET","/groups/{}/onenote/notebooks/{}/sectiongroups/{}","Notes","Get-MgGroupOnenoteNotebookSectionGroup","keep","System.Object[]","/groups/{}/onenote/notebooks/{}/sectiongroups","Get-MgGroupOnenoteNotebookSectionGroup" +"GET","/groups/{}/onenote/notebooks/{}/sectiongroups/{}/sectiongroups","Notes","Get-MgGroupOnenoteNotebookSectionGroup","suppress","System.Object[]","/groups/{}/onenote/notebooks/{}/sectiongroups","Get-MgGroupOnenoteNotebookSectionGroup" +"GET","/groups/{}/onenote/notebooks/{}/sectiongroups/{}/sectiongroups/{}","Notes","Get-MgGroupOnenoteNotebookSectionGroup","suppress","System.Object[]","/groups/{}/onenote/notebooks/{}/sectiongroups","Get-MgGroupOnenoteNotebookSectionGroup" +"GET","/groups/{}/onenote/notebooks/{}/sectiongroups/{}/sectiongroups/$count","Notes","Get-MgGroupOnenoteNotebookSectionGroupCount","keep","System.Object[]","/groups/{}/onenote/notebooks/{}/sectiongroups/$count","" +"GET","/groups/{}/onenote/notebooks/{}/sectiongroups/$count","Notes","Get-MgGroupOnenoteNotebookSectionGroupCount","suppress","System.Object[]","/groups/{}/onenote/notebooks/{}/sectiongroups/{}/sectiongroups/$count","Get-MgGroupOnenoteNotebookSectionGroupCount" +"GET","/groups/{}/onenote/sectiongroups","Notes","Get-MgGroupOnenoteSectionGroup","keep","System.Object[]","/groups/{}/onenote/sectiongroups/{};/groups/{}/onenote/sectiongroups/{}/sectiongroups;/groups/{}/onenote/sectiongroups/{}/sectiongroups/{}","Get-MgGroupOnenoteSectionGroup" +"GET","/groups/{}/onenote/sectiongroups/{}","Notes","Get-MgGroupOnenoteSectionGroup","keep","System.Object[]","/groups/{}/onenote/sectiongroups","Get-MgGroupOnenoteSectionGroup" +"GET","/groups/{}/onenote/sectiongroups/{}/sectiongroups","Notes","Get-MgGroupOnenoteSectionGroup","suppress","System.Object[]","/groups/{}/onenote/sectiongroups","Get-MgGroupOnenoteSectionGroup" +"GET","/groups/{}/onenote/sectiongroups/{}/sectiongroups/{}","Notes","Get-MgGroupOnenoteSectionGroup","suppress","System.Object[]","/groups/{}/onenote/sectiongroups","Get-MgGroupOnenoteSectionGroup" +"GET","/groups/{}/onenote/sectiongroups/{}/sectiongroups/$count","Notes","Get-MgGroupOnenoteSectionGroupCount","keep","System.Object[]","/groups/{}/onenote/sectiongroups/$count","" +"GET","/groups/{}/onenote/sectiongroups/$count","Notes","Get-MgGroupOnenoteSectionGroupCount","suppress","System.Object[]","/groups/{}/onenote/sectiongroups/{}/sectiongroups/$count","Get-MgGroupOnenoteSectionGroupCount" +"GET","/groups/{}/photo","Groups","Get-MgGroupPhoto","keep","System.Object[]","/groups/{}/photos","Get-MgGroupPhoto" +"GET","/groups/{}/photo/$value","Groups","Get-MgGroupPhotoContent","keep","System.Object[]","/groups/{}/photos/{}/$value","" +"GET","/groups/{}/photos","Groups","Get-MgGroupPhoto","suppress-deferred","System.Object[]","/groups/{}/photo","Get-MgGroupPhoto" +"GET","/groups/{}/photos/{}/$value","Groups","Get-MgGroupPhotoContent","suppress","System.Object[]","/groups/{}/photo/$value","Get-MgGroupPhotoContent" +"GET","/groups/{}/settings","Groups","Get-MgGroupSetting","keep","System.Object[]","/groups/{}/settings/{};/groupsettings;/groupsettings/{}","Get-MgGroupSetting" +"GET","/groups/{}/settings/{}","Groups","Get-MgGroupSetting","keep","System.Object[]","/groups/{}/settings","Get-MgGroupSetting" +"GET","/groups/{}/settings/$count","Groups","Get-MgGroupSettingCount","keep","System.Object[]","/groupsettings/$count","" +"GET","/groups/{}/sites/{}/onenote/notebooks/{}/sectiongroups","Sites","Get-MgGroupSiteOnenoteNotebookSectionGroup","keep","System.Object[]","/groups/{}/sites/{}/onenote/notebooks/{}/sectiongroups/{};/groups/{}/sites/{}/onenote/notebooks/{}/sectiongroups/{}/sectiongroups;/groups/{}/sites/{}/onenote/notebooks/{}/sectiongroups/{}/sectiongroups/{}","Get-MgGroupSiteOnenoteNotebookSectionGroup" +"GET","/groups/{}/sites/{}/onenote/notebooks/{}/sectiongroups/{}","Sites","Get-MgGroupSiteOnenoteNotebookSectionGroup","keep","System.Object[]","/groups/{}/sites/{}/onenote/notebooks/{}/sectiongroups","Get-MgGroupSiteOnenoteNotebookSectionGroup" +"GET","/groups/{}/sites/{}/onenote/notebooks/{}/sectiongroups/{}/sectiongroups","Sites","Get-MgGroupSiteOnenoteNotebookSectionGroup","suppress","System.Object[]","/groups/{}/sites/{}/onenote/notebooks/{}/sectiongroups","Get-MgGroupSiteOnenoteNotebookSectionGroup" +"GET","/groups/{}/sites/{}/onenote/notebooks/{}/sectiongroups/{}/sectiongroups/{}","Sites","Get-MgGroupSiteOnenoteNotebookSectionGroup","suppress","System.Object[]","/groups/{}/sites/{}/onenote/notebooks/{}/sectiongroups","Get-MgGroupSiteOnenoteNotebookSectionGroup" +"GET","/groups/{}/sites/{}/onenote/notebooks/{}/sectiongroups/{}/sectiongroups/$count","Sites","Get-MgGroupSiteOnenoteNotebookSectionGroupCount","keep","System.Object[]","/groups/{}/sites/{}/onenote/notebooks/{}/sectiongroups/$count","" +"GET","/groups/{}/sites/{}/onenote/notebooks/{}/sectiongroups/$count","Sites","Get-MgGroupSiteOnenoteNotebookSectionGroupCount","suppress","System.Object[]","/groups/{}/sites/{}/onenote/notebooks/{}/sectiongroups/{}/sectiongroups/$count","Get-MgGroupSiteOnenoteNotebookSectionGroupCount" +"GET","/groups/{}/sites/{}/onenote/sectiongroups","Sites","Get-MgGroupSiteOnenoteSectionGroup","keep","System.Object[]","/groups/{}/sites/{}/onenote/sectiongroups/{};/groups/{}/sites/{}/onenote/sectiongroups/{}/sectiongroups;/groups/{}/sites/{}/onenote/sectiongroups/{}/sectiongroups/{}","Get-MgGroupSiteOnenoteSectionGroup" +"GET","/groups/{}/sites/{}/onenote/sectiongroups/{}","Sites","Get-MgGroupSiteOnenoteSectionGroup","keep","System.Object[]","/groups/{}/sites/{}/onenote/sectiongroups","Get-MgGroupSiteOnenoteSectionGroup" +"GET","/groups/{}/sites/{}/onenote/sectiongroups/{}/sectiongroups","Sites","Get-MgGroupSiteOnenoteSectionGroup","suppress","System.Object[]","/groups/{}/sites/{}/onenote/sectiongroups","Get-MgGroupSiteOnenoteSectionGroup" +"GET","/groups/{}/sites/{}/onenote/sectiongroups/{}/sectiongroups/{}","Sites","Get-MgGroupSiteOnenoteSectionGroup","suppress","System.Object[]","/groups/{}/sites/{}/onenote/sectiongroups","Get-MgGroupSiteOnenoteSectionGroup" +"GET","/groups/{}/sites/{}/onenote/sectiongroups/{}/sectiongroups/$count","Sites","Get-MgGroupSiteOnenoteSectionGroupCount","keep","System.Object[]","/groups/{}/sites/{}/onenote/sectiongroups/$count","" +"GET","/groups/{}/sites/{}/onenote/sectiongroups/$count","Sites","Get-MgGroupSiteOnenoteSectionGroupCount","suppress","System.Object[]","/groups/{}/sites/{}/onenote/sectiongroups/{}/sectiongroups/$count","Get-MgGroupSiteOnenoteSectionGroupCount" +"GET","/groups/{}/sites/{}/sites/$count","Sites","Get-MgGroupSiteCount","rename","System.Object[]","/groups/{}/sites/$count","Get-MgGroupSiteCount" +"GET","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children","Sites","Get-MgGroupSiteTermStoreGroupSetChild","keep","System.Object[]","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{};/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/children;/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}","Get-MgGroupSiteTermStoreGroupSetChild" +"GET","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}","Sites","Get-MgGroupSiteTermStoreGroupSetChild","keep","System.Object[]","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children","Get-MgGroupSiteTermStoreGroupSetChild" +"GET","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/children","Sites","Get-MgGroupSiteTermStoreGroupSetChild","suppress","System.Object[]","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children","Get-MgGroupSiteTermStoreGroupSetChild" +"GET","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}","Sites","Get-MgGroupSiteTermStoreGroupSetChild","suppress","System.Object[]","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children","Get-MgGroupSiteTermStoreGroupSetChild" +"GET","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations","Sites","Get-MgGroupSiteTermStoreGroupSetChildRelation","keep","System.Object[]","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations/{};/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations;/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations/{}","Get-MgGroupSiteTermStoreGroupSetChildRelation" +"GET","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations/{}","Sites","Get-MgGroupSiteTermStoreGroupSetChildRelation","keep","System.Object[]","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations","Get-MgGroupSiteTermStoreGroupSetChildRelation" +"GET","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations/{}/fromterm","Sites","Get-MgGroupSiteTermStoreGroupSetChildRelationFromTerm","keep","System.Object[]","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations/{}/fromterm","" +"GET","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations/{}/set","Sites","Get-MgGroupSiteTermStoreGroupSetChildRelationSet","keep","System.Object[]","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations/{}/set","" +"GET","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations/{}/toterm","Sites","Get-MgGroupSiteTermStoreGroupSetChildRelationToTerm","keep","System.Object[]","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations/{}/toterm","" +"GET","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations/$count","Sites","Get-MgGroupSiteTermStoreGroupSetChildRelationCount","keep","System.Object[]","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations/$count","" +"GET","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/set","Sites","Get-MgGroupSiteTermStoreGroupSetChildSet","keep","System.Object[]","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/set","" +"GET","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/$count","Sites","Get-MgGroupSiteTermStoreGroupSetChildCount","keep","System.Object[]","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/$count","" +"GET","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations","Sites","Get-MgGroupSiteTermStoreGroupSetChildRelation","suppress","System.Object[]","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations","Get-MgGroupSiteTermStoreGroupSetChildRelation" +"GET","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations/{}","Sites","Get-MgGroupSiteTermStoreGroupSetChildRelation","suppress","System.Object[]","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations","Get-MgGroupSiteTermStoreGroupSetChildRelation" +"GET","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations/{}/fromterm","Sites","Get-MgGroupSiteTermStoreGroupSetChildRelationFromTerm","suppress","System.Object[]","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations/{}/fromterm","Get-MgGroupSiteTermStoreGroupSetChildRelationFromTerm" +"GET","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations/{}/set","Sites","Get-MgGroupSiteTermStoreGroupSetChildRelationSet","suppress","System.Object[]","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations/{}/set","Get-MgGroupSiteTermStoreGroupSetChildRelationSet" +"GET","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations/{}/toterm","Sites","Get-MgGroupSiteTermStoreGroupSetChildRelationToTerm","suppress","System.Object[]","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations/{}/toterm","Get-MgGroupSiteTermStoreGroupSetChildRelationToTerm" +"GET","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations/$count","Sites","Get-MgGroupSiteTermStoreGroupSetChildRelationCount","suppress","System.Object[]","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations/$count","Get-MgGroupSiteTermStoreGroupSetChildRelationCount" +"GET","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/set","Sites","Get-MgGroupSiteTermStoreGroupSetChildSet","suppress","System.Object[]","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/set","Get-MgGroupSiteTermStoreGroupSetChildSet" +"GET","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/$count","Sites","Get-MgGroupSiteTermStoreGroupSetChildCount","suppress","System.Object[]","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/$count","Get-MgGroupSiteTermStoreGroupSetChildCount" +"GET","/groups/{}/sites/{}/termstore/sets/{}/children","Sites","Get-MgGroupSiteTermStoreSetChild","keep","System.Object[]","/groups/{}/sites/{}/termstore/sets/{}/children/{};/groups/{}/sites/{}/termstore/sets/{}/children/{}/children;/groups/{}/sites/{}/termstore/sets/{}/children/{}/children/{}","Get-MgGroupSiteTermStoreSetChild" +"GET","/groups/{}/sites/{}/termstore/sets/{}/children/{}","Sites","Get-MgGroupSiteTermStoreSetChild","keep","System.Object[]","/groups/{}/sites/{}/termstore/sets/{}/children","Get-MgGroupSiteTermStoreSetChild" +"GET","/groups/{}/sites/{}/termstore/sets/{}/children/{}/children","Sites","Get-MgGroupSiteTermStoreSetChild","suppress","System.Object[]","/groups/{}/sites/{}/termstore/sets/{}/children","Get-MgGroupSiteTermStoreSetChild" +"GET","/groups/{}/sites/{}/termstore/sets/{}/children/{}/children/{}","Sites","Get-MgGroupSiteTermStoreSetChild","suppress","System.Object[]","/groups/{}/sites/{}/termstore/sets/{}/children","Get-MgGroupSiteTermStoreSetChild" +"GET","/groups/{}/sites/{}/termstore/sets/{}/children/{}/children/{}/relations","Sites","Get-MgGroupSiteTermStoreSetChildRelation","keep","System.Object[]","/groups/{}/sites/{}/termstore/sets/{}/children/{}/children/{}/relations/{};/groups/{}/sites/{}/termstore/sets/{}/children/{}/relations;/groups/{}/sites/{}/termstore/sets/{}/children/{}/relations/{}","Get-MgGroupSiteTermStoreSetChildRelation" +"GET","/groups/{}/sites/{}/termstore/sets/{}/children/{}/children/{}/relations/{}","Sites","Get-MgGroupSiteTermStoreSetChildRelation","keep","System.Object[]","/groups/{}/sites/{}/termstore/sets/{}/children/{}/children/{}/relations","Get-MgGroupSiteTermStoreSetChildRelation" +"GET","/groups/{}/sites/{}/termstore/sets/{}/children/{}/children/{}/relations/{}/fromterm","Sites","Get-MgGroupSiteTermStoreSetChildRelationFromTerm","keep","System.Object[]","/groups/{}/sites/{}/termstore/sets/{}/children/{}/relations/{}/fromterm","" +"GET","/groups/{}/sites/{}/termstore/sets/{}/children/{}/children/{}/relations/{}/set","Sites","Get-MgGroupSiteTermStoreSetChildRelationSet","keep","System.Object[]","/groups/{}/sites/{}/termstore/sets/{}/children/{}/relations/{}/set","" +"GET","/groups/{}/sites/{}/termstore/sets/{}/children/{}/children/{}/relations/{}/toterm","Sites","Get-MgGroupSiteTermStoreSetChildRelationToTerm","keep","System.Object[]","/groups/{}/sites/{}/termstore/sets/{}/children/{}/relations/{}/toterm","" +"GET","/groups/{}/sites/{}/termstore/sets/{}/children/{}/children/{}/relations/$count","Sites","Get-MgGroupSiteTermStoreSetChildRelationCount","keep","System.Object[]","/groups/{}/sites/{}/termstore/sets/{}/children/{}/relations/$count","" +"GET","/groups/{}/sites/{}/termstore/sets/{}/children/{}/children/{}/set","Sites","Get-MgGroupSiteTermStoreSetChildSet","keep","System.Object[]","/groups/{}/sites/{}/termstore/sets/{}/children/{}/set","" +"GET","/groups/{}/sites/{}/termstore/sets/{}/children/{}/children/$count","Sites","Get-MgGroupSiteTermStoreSetChildCount","keep","System.Object[]","/groups/{}/sites/{}/termstore/sets/{}/children/$count","" +"GET","/groups/{}/sites/{}/termstore/sets/{}/children/{}/relations","Sites","Get-MgGroupSiteTermStoreSetChildRelation","suppress","System.Object[]","/groups/{}/sites/{}/termstore/sets/{}/children/{}/children/{}/relations","Get-MgGroupSiteTermStoreSetChildRelation" +"GET","/groups/{}/sites/{}/termstore/sets/{}/children/{}/relations/{}","Sites","Get-MgGroupSiteTermStoreSetChildRelation","suppress","System.Object[]","/groups/{}/sites/{}/termstore/sets/{}/children/{}/children/{}/relations","Get-MgGroupSiteTermStoreSetChildRelation" +"GET","/groups/{}/sites/{}/termstore/sets/{}/children/{}/relations/{}/fromterm","Sites","Get-MgGroupSiteTermStoreSetChildRelationFromTerm","suppress","System.Object[]","/groups/{}/sites/{}/termstore/sets/{}/children/{}/children/{}/relations/{}/fromterm","Get-MgGroupSiteTermStoreSetChildRelationFromTerm" +"GET","/groups/{}/sites/{}/termstore/sets/{}/children/{}/relations/{}/set","Sites","Get-MgGroupSiteTermStoreSetChildRelationSet","suppress","System.Object[]","/groups/{}/sites/{}/termstore/sets/{}/children/{}/children/{}/relations/{}/set","Get-MgGroupSiteTermStoreSetChildRelationSet" +"GET","/groups/{}/sites/{}/termstore/sets/{}/children/{}/relations/{}/toterm","Sites","Get-MgGroupSiteTermStoreSetChildRelationToTerm","suppress","System.Object[]","/groups/{}/sites/{}/termstore/sets/{}/children/{}/children/{}/relations/{}/toterm","Get-MgGroupSiteTermStoreSetChildRelationToTerm" +"GET","/groups/{}/sites/{}/termstore/sets/{}/children/{}/relations/$count","Sites","Get-MgGroupSiteTermStoreSetChildRelationCount","suppress","System.Object[]","/groups/{}/sites/{}/termstore/sets/{}/children/{}/children/{}/relations/$count","Get-MgGroupSiteTermStoreSetChildRelationCount" +"GET","/groups/{}/sites/{}/termstore/sets/{}/children/{}/set","Sites","Get-MgGroupSiteTermStoreSetChildSet","suppress","System.Object[]","/groups/{}/sites/{}/termstore/sets/{}/children/{}/children/{}/set","Get-MgGroupSiteTermStoreSetChildSet" +"GET","/groups/{}/sites/{}/termstore/sets/{}/children/$count","Sites","Get-MgGroupSiteTermStoreSetChildCount","suppress","System.Object[]","/groups/{}/sites/{}/termstore/sets/{}/children/{}/children/$count","Get-MgGroupSiteTermStoreSetChildCount" +"GET","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children","Sites","Get-MgGroupSiteTermStoreSetParentGroupSetChild","keep","System.Object[]","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{};/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children;/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}","Get-MgGroupSiteTermStoreSetParentGroupSetChild" +"GET","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}","Sites","Get-MgGroupSiteTermStoreSetParentGroupSetChild","keep","System.Object[]","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children","Get-MgGroupSiteTermStoreSetParentGroupSetChild" +"GET","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children","Sites","Get-MgGroupSiteTermStoreSetParentGroupSetChild","suppress","System.Object[]","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children","Get-MgGroupSiteTermStoreSetParentGroupSetChild" +"GET","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}","Sites","Get-MgGroupSiteTermStoreSetParentGroupSetChild","suppress","System.Object[]","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children","Get-MgGroupSiteTermStoreSetParentGroupSetChild" +"GET","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations","Sites","Get-MgGroupSiteTermStoreSetParentGroupSetChildRelation","keep","System.Object[]","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations/{};/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations;/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations/{}","Get-MgGroupSiteTermStoreSetParentGroupSetChildRelation" +"GET","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations/{}","Sites","Get-MgGroupSiteTermStoreSetParentGroupSetChildRelation","keep","System.Object[]","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations","Get-MgGroupSiteTermStoreSetParentGroupSetChildRelation" +"GET","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations/{}/fromterm","Sites","Get-MgGroupSiteTermStoreSetParentGroupSetChildRelationFromTerm","keep","System.Object[]","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations/{}/fromterm","" +"GET","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations/{}/set","Sites","Get-MgGroupSiteTermStoreSetParentGroupSetChildRelationSet","keep","System.Object[]","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations/{}/set","" +"GET","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations/{}/toterm","Sites","Get-MgGroupSiteTermStoreSetParentGroupSetChildRelationToTerm","keep","System.Object[]","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations/{}/toterm","" +"GET","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations/$count","Sites","Get-MgGroupSiteTermStoreSetParentGroupSetChildRelationCount","keep","System.Object[]","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations/$count","" +"GET","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/set","Sites","Get-MgGroupSiteTermStoreSetParentGroupSetChildSet","keep","System.Object[]","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/set","" +"GET","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/$count","Sites","Get-MgGroupSiteTermStoreSetParentGroupSetChildCount","keep","System.Object[]","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/$count","" +"GET","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations","Sites","Get-MgGroupSiteTermStoreSetParentGroupSetChildRelation","suppress","System.Object[]","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations","Get-MgGroupSiteTermStoreSetParentGroupSetChildRelation" +"GET","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations/{}","Sites","Get-MgGroupSiteTermStoreSetParentGroupSetChildRelation","suppress","System.Object[]","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations","Get-MgGroupSiteTermStoreSetParentGroupSetChildRelation" +"GET","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations/{}/fromterm","Sites","Get-MgGroupSiteTermStoreSetParentGroupSetChildRelationFromTerm","suppress","System.Object[]","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations/{}/fromterm","Get-MgGroupSiteTermStoreSetParentGroupSetChildRelationFromTerm" +"GET","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations/{}/set","Sites","Get-MgGroupSiteTermStoreSetParentGroupSetChildRelationSet","suppress","System.Object[]","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations/{}/set","Get-MgGroupSiteTermStoreSetParentGroupSetChildRelationSet" +"GET","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations/{}/toterm","Sites","Get-MgGroupSiteTermStoreSetParentGroupSetChildRelationToTerm","suppress","System.Object[]","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations/{}/toterm","Get-MgGroupSiteTermStoreSetParentGroupSetChildRelationToTerm" +"GET","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations/$count","Sites","Get-MgGroupSiteTermStoreSetParentGroupSetChildRelationCount","suppress","System.Object[]","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations/$count","Get-MgGroupSiteTermStoreSetParentGroupSetChildRelationCount" +"GET","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/set","Sites","Get-MgGroupSiteTermStoreSetParentGroupSetChildSet","suppress","System.Object[]","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/set","Get-MgGroupSiteTermStoreSetParentGroupSetChildSet" +"GET","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/$count","Sites","Get-MgGroupSiteTermStoreSetParentGroupSetChildCount","suppress","System.Object[]","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/$count","Get-MgGroupSiteTermStoreSetParentGroupSetChildCount" +"GET","/groups/{}/sites/$count","Sites","Get-MgGroupSiteCount","keep","System.Object[]","/groups/{}/sites/{}/sites/$count","Get-MgGroupSubSiteCount" +"GET","/groupsettings","Groups","Get-MgGroupSetting","suppress","System.Object[]","/groups/{}/settings","Get-MgGroupSetting" +"GET","/groupsettings/{}","Groups","Get-MgGroupSetting","suppress","System.Object[]","/groups/{}/settings","Get-MgGroupSetting" +"GET","/groupsettings/$count","Groups","Get-MgGroupSettingCount","suppress","System.Object[]","/groups/{}/settings/$count","Get-MgGroupSettingCount" +"GET","/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRole","rename","System.Object[]","/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{};/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles;/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}","Get-MgEntitlementManagementCatalogResourceRole" +"GET","/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRole","rename","System.Object[]","/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles","Get-MgEntitlementManagementCatalogResourceRole" +"GET","/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResource","rename","System.Object[]","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource","" +"GET","/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/environment","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceEnvironment","rename","System.Object[]","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource/environment","" +"GET","/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScope","rename","System.Object[]","/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes/{};/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource/scopes;/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource/scopes/{}","Get-MgEntitlementManagementCatalogResourceRoleResourceScope" +"GET","/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes/{}","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScope","rename","System.Object[]","/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes","Get-MgEntitlementManagementCatalogResourceRoleResourceScope" +"GET","/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes/{}/resource","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResource","rename","System.Object[]","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource/scopes/{}/resource","" +"GET","/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes/{}/resource/environment","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResourceEnvironment","rename","System.Object[]","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource/scopes/{}/resource/environment","" +"GET","/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes/$count","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeCount","rename","System.Object[]","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource/scopes/$count","" +"GET","/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/$count","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleCount","rename","System.Object[]","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/$count","" +"GET","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRole","suppress","System.Object[]","/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles","Get-MgEntitlementManagementCatalogResourceRole" +"GET","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRole","suppress","System.Object[]","/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles","Get-MgEntitlementManagementCatalogResourceRole" +"GET","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResource","suppress","System.Object[]","/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource","Get-MgEntitlementManagementCatalogResourceRoleResource" +"GET","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource/environment","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceEnvironment","suppress","System.Object[]","/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/environment","Get-MgEntitlementManagementCatalogResourceRoleResourceEnvironment" +"GET","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource/scopes","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScope","suppress","System.Object[]","/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes","Get-MgEntitlementManagementCatalogResourceRoleResourceScope" +"GET","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource/scopes/{}","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScope","suppress","System.Object[]","/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes","Get-MgEntitlementManagementCatalogResourceRoleResourceScope" +"GET","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource/scopes/{}/resource","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResource","suppress","System.Object[]","/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes/{}/resource","Get-MgEntitlementManagementCatalogResourceRoleResourceScopeResource" +"GET","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource/scopes/{}/resource/environment","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResourceEnvironment","suppress","System.Object[]","/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes/{}/resource/environment","Get-MgEntitlementManagementCatalogResourceRoleResourceScopeResourceEnvironment" +"GET","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource/scopes/$count","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeCount","suppress","System.Object[]","/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes/$count","Get-MgEntitlementManagementCatalogResourceRoleResourceScopeCount" +"GET","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/$count","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleCount","suppress","System.Object[]","/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/$count","Get-MgEntitlementManagementCatalogResourceRoleCount" +"GET","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScope","suppress","System.Object[]","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{};/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes;/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}","Get-MgEntitlementManagementCatalogResourceScope" +"GET","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScope","suppress","System.Object[]","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes","" +"GET","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResource","rename","System.Object[]","/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource","" +"GET","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/environment","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceEnvironment","rename","System.Object[]","/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/environment","" +"GET","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRole","rename","System.Object[]","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles/{};/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/roles;/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/roles/{}","Get-MgEntitlementManagementCatalogResourceScopeResourceRole" +"GET","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles/{}","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRole","rename","System.Object[]","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles","Get-MgEntitlementManagementCatalogResourceScopeResourceRole" +"GET","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles/{}/resource","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResource","rename","System.Object[]","/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/roles/{}/resource","" +"GET","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles/{}/resource/environment","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResourceEnvironment","rename","System.Object[]","/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/roles/{}/resource/environment","" +"GET","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles/$count","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleCount","rename","System.Object[]","/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/roles/$count","" +"GET","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/$count","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeCount","rename","System.Object[]","/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/$count","" +"GET","/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScope","rename","System.Object[]","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes","" +"GET","/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScope","rename","System.Object[]","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes","" +"GET","/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResource","suppress","System.Object[]","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource","Get-MgEntitlementManagementCatalogResourceScopeResource" +"GET","/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/environment","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceEnvironment","suppress","System.Object[]","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/environment","Get-MgEntitlementManagementCatalogResourceScopeResourceEnvironment" +"GET","/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/roles","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRole","suppress","System.Object[]","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles","Get-MgEntitlementManagementCatalogResourceScopeResourceRole" +"GET","/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/roles/{}","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRole","suppress","System.Object[]","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles","Get-MgEntitlementManagementCatalogResourceScopeResourceRole" +"GET","/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/roles/{}/resource","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResource","suppress","System.Object[]","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles/{}/resource","Get-MgEntitlementManagementCatalogResourceScopeResourceRoleResource" +"GET","/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/roles/{}/resource/environment","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResourceEnvironment","suppress","System.Object[]","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles/{}/resource/environment","Get-MgEntitlementManagementCatalogResourceScopeResourceRoleResourceEnvironment" +"GET","/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/roles/$count","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleCount","suppress","System.Object[]","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles/$count","Get-MgEntitlementManagementCatalogResourceScopeResourceRoleCount" +"GET","/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/$count","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeCount","suppress","System.Object[]","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/$count","Get-MgEntitlementManagementCatalogResourceScopeCount" +"GET","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRole","rename","System.Object[]","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{};/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles;/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}","Get-MgEntitlementManagementResourceRequestCatalogResourceRole" +"GET","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRole","rename","System.Object[]","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles","Get-MgEntitlementManagementResourceRequestCatalogResourceRole" +"GET","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResource","rename","System.Object[]","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource","" +"GET","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/environment","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceEnvironment","rename","System.Object[]","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource/environment","" +"GET","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScope","rename","System.Object[]","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes/{};/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource/scopes;/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource/scopes/{}","Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScope" +"GET","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes/{}","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScope","rename","System.Object[]","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes","Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScope" +"GET","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes/{}/resource","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResource","rename","System.Object[]","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource/scopes/{}/resource","" +"GET","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes/{}/resource/environment","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceEnvironment","rename","System.Object[]","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource/scopes/{}/resource/environment","" +"GET","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes/$count","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeCount","rename","System.Object[]","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource/scopes/$count","" +"GET","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/$count","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleCount","rename","System.Object[]","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/$count","" +"GET","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRole","suppress","System.Object[]","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles","Get-MgEntitlementManagementResourceRequestCatalogResourceRole" +"GET","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRole","suppress","System.Object[]","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles","Get-MgEntitlementManagementResourceRequestCatalogResourceRole" +"GET","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResource","suppress","System.Object[]","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource","Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResource" +"GET","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource/environment","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceEnvironment","suppress","System.Object[]","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/environment","Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceEnvironment" +"GET","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource/scopes","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScope","suppress","System.Object[]","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes","Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScope" +"GET","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource/scopes/{}","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScope","suppress","System.Object[]","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes","Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScope" +"GET","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource/scopes/{}/resource","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResource","suppress","System.Object[]","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes/{}/resource","Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResource" +"GET","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource/scopes/{}/resource/environment","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceEnvironment","suppress","System.Object[]","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes/{}/resource/environment","Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceEnvironment" +"GET","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource/scopes/$count","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeCount","suppress","System.Object[]","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes/$count","Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeCount" +"GET","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/$count","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleCount","suppress","System.Object[]","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/$count","Get-MgEntitlementManagementResourceRequestCatalogResourceRoleCount" +"GET","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScope","suppress","System.Object[]","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{};/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes;/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}","Get-MgEntitlementManagementResourceRequestCatalogResourceScope" +"GET","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScope","suppress","System.Object[]","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes","" +"GET","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResource","rename","System.Object[]","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource","" +"GET","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/environment","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceEnvironment","rename","System.Object[]","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/environment","" +"GET","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRole","rename","System.Object[]","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles/{};/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/roles;/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/roles/{}","Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRole" +"GET","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles/{}","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRole","rename","System.Object[]","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles","Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRole" +"GET","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles/{}/resource","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResource","rename","System.Object[]","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/roles/{}/resource","" +"GET","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles/{}/resource/environment","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceEnvironment","rename","System.Object[]","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/roles/{}/resource/environment","" +"GET","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles/$count","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleCount","rename","System.Object[]","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/roles/$count","" +"GET","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/$count","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeCount","rename","System.Object[]","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/$count","" +"GET","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScope","rename","System.Object[]","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes","" +"GET","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScope","rename","System.Object[]","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes","" +"GET","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResource","suppress","System.Object[]","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource","Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResource" +"GET","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/environment","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceEnvironment","suppress","System.Object[]","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/environment","Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceEnvironment" +"GET","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/roles","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRole","suppress","System.Object[]","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles","Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRole" +"GET","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/roles/{}","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRole","suppress","System.Object[]","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles","Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRole" +"GET","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/roles/{}/resource","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResource","suppress","System.Object[]","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles/{}/resource","Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResource" +"GET","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/roles/{}/resource/environment","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceEnvironment","suppress","System.Object[]","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles/{}/resource/environment","Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceEnvironment" +"GET","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/roles/$count","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleCount","suppress","System.Object[]","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles/$count","Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleCount" +"GET","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/$count","Identity.Governance","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeCount","suppress","System.Object[]","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/$count","Get-MgEntitlementManagementResourceRequestCatalogResourceScopeCount" +"GET","/security/threatintelligence/articleindicators/$count","Security","Get-MgSecurityThreatIntelligenceArticleIndicatorCount","keep","System.Object[]","/security/threatintelligence/articles/{}/indicators/$count","" +"GET","/security/threatintelligence/articles/{}/indicators/$count","Security","Get-MgSecurityThreatIntelligenceArticleIndicatorCount","suppress","System.Object[]","/security/threatintelligence/articleindicators/$count","Get-MgSecurityThreatIntelligenceArticleIndicatorCount" +"GET","/security/threatintelligence/hostcomponents/$count","Security","Get-MgSecurityThreatIntelligenceHostComponentCount","keep","System.Object[]","/security/threatintelligence/hosts/{}/components/$count","" +"GET","/security/threatintelligence/hostcookies/$count","Security","Get-MgSecurityThreatIntelligenceHostCookieCount","keep","System.Object[]","/security/threatintelligence/hosts/{}/cookies/$count","" +"GET","/security/threatintelligence/hostpairs/$count","Security","Get-MgSecurityThreatIntelligenceHostPairCount","keep","System.Object[]","/security/threatintelligence/hosts/{}/hostpairs/$count","" +"GET","/security/threatintelligence/hostports/$count","Security","Get-MgSecurityThreatIntelligenceHostPortCount","keep","System.Object[]","/security/threatintelligence/hosts/{}/ports/$count","" +"GET","/security/threatintelligence/hosts/{}/components/$count","Security","Get-MgSecurityThreatIntelligenceHostComponentCount","suppress","System.Object[]","/security/threatintelligence/hostcomponents/$count","Get-MgSecurityThreatIntelligenceHostComponentCount" +"GET","/security/threatintelligence/hosts/{}/cookies/$count","Security","Get-MgSecurityThreatIntelligenceHostCookieCount","suppress","System.Object[]","/security/threatintelligence/hostcookies/$count","Get-MgSecurityThreatIntelligenceHostCookieCount" +"GET","/security/threatintelligence/hosts/{}/hostpairs/$count","Security","Get-MgSecurityThreatIntelligenceHostPairCount","suppress","System.Object[]","/security/threatintelligence/hostpairs/$count","Get-MgSecurityThreatIntelligenceHostPairCount" +"GET","/security/threatintelligence/hosts/{}/ports/$count","Security","Get-MgSecurityThreatIntelligenceHostPortCount","suppress","System.Object[]","/security/threatintelligence/hostports/$count","Get-MgSecurityThreatIntelligenceHostPortCount" +"GET","/security/threatintelligence/hosts/{}/sslcertificates/$count","Security","Get-MgSecurityThreatIntelligenceHostSslCertificateCount","keep","System.Object[]","/security/threatintelligence/hostsslcertificates/$count","" +"GET","/security/threatintelligence/hosts/{}/trackers/$count","Security","Get-MgSecurityThreatIntelligenceHostTrackerCount","keep","System.Object[]","/security/threatintelligence/hosttrackers/$count","" +"GET","/security/threatintelligence/hostsslcertificates/$count","Security","Get-MgSecurityThreatIntelligenceHostSslCertificateCount","suppress","System.Object[]","/security/threatintelligence/hosts/{}/sslcertificates/$count","Get-MgSecurityThreatIntelligenceHostSslCertificateCount" +"GET","/security/threatintelligence/hosttrackers/$count","Security","Get-MgSecurityThreatIntelligenceHostTrackerCount","suppress","System.Object[]","/security/threatintelligence/hosts/{}/trackers/$count","Get-MgSecurityThreatIntelligenceHostTrackerCount" +"GET","/shares/{}/list/items","Files","Get-MgShareListItem","suppress-deferred","System.Object[]","/shares/{}/listitem","Get-MgShareListItem" +"GET","/shares/{}/listitem","Files","Get-MgShareListItem","keep","System.Object[]","/shares/{}/list/items","Get-MgShareListItem" +"GET","/sites/{}/onenote/notebooks/{}/sectiongroups","Notes","Get-MgSiteOnenoteNotebookSectionGroup","keep","System.Object[]","/sites/{}/onenote/notebooks/{}/sectiongroups/{};/sites/{}/onenote/notebooks/{}/sectiongroups/{}/sectiongroups;/sites/{}/onenote/notebooks/{}/sectiongroups/{}/sectiongroups/{}","Get-MgSiteOnenoteNotebookSectionGroup" +"GET","/sites/{}/onenote/notebooks/{}/sectiongroups/{}","Notes","Get-MgSiteOnenoteNotebookSectionGroup","keep","System.Object[]","/sites/{}/onenote/notebooks/{}/sectiongroups","Get-MgSiteOnenoteNotebookSectionGroup" +"GET","/sites/{}/onenote/notebooks/{}/sectiongroups/{}/sectiongroups","Notes","Get-MgSiteOnenoteNotebookSectionGroup","suppress","System.Object[]","/sites/{}/onenote/notebooks/{}/sectiongroups","Get-MgSiteOnenoteNotebookSectionGroup" +"GET","/sites/{}/onenote/notebooks/{}/sectiongroups/{}/sectiongroups/{}","Notes","Get-MgSiteOnenoteNotebookSectionGroup","suppress","System.Object[]","/sites/{}/onenote/notebooks/{}/sectiongroups","Get-MgSiteOnenoteNotebookSectionGroup" +"GET","/sites/{}/onenote/notebooks/{}/sectiongroups/{}/sectiongroups/$count","Notes","Get-MgSiteOnenoteNotebookSectionGroupCount","keep","System.Object[]","/sites/{}/onenote/notebooks/{}/sectiongroups/$count","" +"GET","/sites/{}/onenote/notebooks/{}/sectiongroups/$count","Notes","Get-MgSiteOnenoteNotebookSectionGroupCount","suppress","System.Object[]","/sites/{}/onenote/notebooks/{}/sectiongroups/{}/sectiongroups/$count","Get-MgSiteOnenoteNotebookSectionGroupCount" +"GET","/sites/{}/onenote/sectiongroups","Notes","Get-MgSiteOnenoteSectionGroup","keep","System.Object[]","/sites/{}/onenote/sectiongroups/{};/sites/{}/onenote/sectiongroups/{}/sectiongroups;/sites/{}/onenote/sectiongroups/{}/sectiongroups/{}","Get-MgSiteOnenoteSectionGroup" +"GET","/sites/{}/onenote/sectiongroups/{}","Notes","Get-MgSiteOnenoteSectionGroup","keep","System.Object[]","/sites/{}/onenote/sectiongroups","Get-MgSiteOnenoteSectionGroup" +"GET","/sites/{}/onenote/sectiongroups/{}/sectiongroups","Notes","Get-MgSiteOnenoteSectionGroup","suppress","System.Object[]","/sites/{}/onenote/sectiongroups","Get-MgSiteOnenoteSectionGroup" +"GET","/sites/{}/onenote/sectiongroups/{}/sectiongroups/{}","Notes","Get-MgSiteOnenoteSectionGroup","suppress","System.Object[]","/sites/{}/onenote/sectiongroups","Get-MgSiteOnenoteSectionGroup" +"GET","/sites/{}/onenote/sectiongroups/{}/sectiongroups/$count","Notes","Get-MgSiteOnenoteSectionGroupCount","keep","System.Object[]","/sites/{}/onenote/sectiongroups/$count","" +"GET","/sites/{}/onenote/sectiongroups/$count","Notes","Get-MgSiteOnenoteSectionGroupCount","suppress","System.Object[]","/sites/{}/onenote/sectiongroups/{}/sectiongroups/$count","Get-MgSiteOnenoteSectionGroupCount" +"GET","/sites/{}/sites/$count","Sites","Get-MgSiteCount","rename","System.Object[]","/sites/$count","Get-MgSiteCount" +"GET","/sites/{}/termstore/groups/{}/sets/{}/children","Sites","Get-MgSiteTermStoreGroupSetChild","keep","System.Object[]","/sites/{}/termstore/groups/{}/sets/{}/children/{};/sites/{}/termstore/groups/{}/sets/{}/children/{}/children;/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}","Get-MgSiteTermStoreGroupSetChild" +"GET","/sites/{}/termstore/groups/{}/sets/{}/children/{}","Sites","Get-MgSiteTermStoreGroupSetChild","keep","System.Object[]","/sites/{}/termstore/groups/{}/sets/{}/children","Get-MgSiteTermStoreGroupSetChild" +"GET","/sites/{}/termstore/groups/{}/sets/{}/children/{}/children","Sites","Get-MgSiteTermStoreGroupSetChild","suppress","System.Object[]","/sites/{}/termstore/groups/{}/sets/{}/children","Get-MgSiteTermStoreGroupSetChild" +"GET","/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}","Sites","Get-MgSiteTermStoreGroupSetChild","suppress","System.Object[]","/sites/{}/termstore/groups/{}/sets/{}/children","Get-MgSiteTermStoreGroupSetChild" +"GET","/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations","Sites","Get-MgSiteTermStoreGroupSetChildRelation","keep","System.Object[]","/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations/{};/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations;/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations/{}","Get-MgSiteTermStoreGroupSetChildRelation" +"GET","/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations/{}","Sites","Get-MgSiteTermStoreGroupSetChildRelation","keep","System.Object[]","/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations","Get-MgSiteTermStoreGroupSetChildRelation" +"GET","/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations/{}/fromterm","Sites","Get-MgSiteTermStoreGroupSetChildRelationFromTerm","keep","System.Object[]","/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations/{}/fromterm","" +"GET","/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations/{}/set","Sites","Get-MgSiteTermStoreGroupSetChildRelationSet","keep","System.Object[]","/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations/{}/set","" +"GET","/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations/{}/toterm","Sites","Get-MgSiteTermStoreGroupSetChildRelationToTerm","keep","System.Object[]","/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations/{}/toterm","" +"GET","/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations/$count","Sites","Get-MgSiteTermStoreGroupSetChildRelationCount","keep","System.Object[]","/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations/$count","" +"GET","/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/set","Sites","Get-MgSiteTermStoreGroupSetChildSet","keep","System.Object[]","/sites/{}/termstore/groups/{}/sets/{}/children/{}/set","" +"GET","/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/$count","Sites","Get-MgSiteTermStoreGroupSetChildCount","keep","System.Object[]","/sites/{}/termstore/groups/{}/sets/{}/children/$count","" +"GET","/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations","Sites","Get-MgSiteTermStoreGroupSetChildRelation","suppress","System.Object[]","/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations","Get-MgSiteTermStoreGroupSetChildRelation" +"GET","/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations/{}","Sites","Get-MgSiteTermStoreGroupSetChildRelation","suppress","System.Object[]","/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations","Get-MgSiteTermStoreGroupSetChildRelation" +"GET","/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations/{}/fromterm","Sites","Get-MgSiteTermStoreGroupSetChildRelationFromTerm","suppress","System.Object[]","/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations/{}/fromterm","Get-MgSiteTermStoreGroupSetChildRelationFromTerm" +"GET","/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations/{}/set","Sites","Get-MgSiteTermStoreGroupSetChildRelationSet","suppress","System.Object[]","/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations/{}/set","Get-MgSiteTermStoreGroupSetChildRelationSet" +"GET","/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations/{}/toterm","Sites","Get-MgSiteTermStoreGroupSetChildRelationToTerm","suppress","System.Object[]","/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations/{}/toterm","Get-MgSiteTermStoreGroupSetChildRelationToTerm" +"GET","/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations/$count","Sites","Get-MgSiteTermStoreGroupSetChildRelationCount","suppress","System.Object[]","/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations/$count","Get-MgSiteTermStoreGroupSetChildRelationCount" +"GET","/sites/{}/termstore/groups/{}/sets/{}/children/{}/set","Sites","Get-MgSiteTermStoreGroupSetChildSet","suppress","System.Object[]","/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/set","Get-MgSiteTermStoreGroupSetChildSet" +"GET","/sites/{}/termstore/groups/{}/sets/{}/children/$count","Sites","Get-MgSiteTermStoreGroupSetChildCount","suppress","System.Object[]","/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/$count","Get-MgSiteTermStoreGroupSetChildCount" +"GET","/sites/{}/termstore/sets/{}/children","Sites","Get-MgSiteTermStoreSetChild","keep","System.Object[]","/sites/{}/termstore/sets/{}/children/{};/sites/{}/termstore/sets/{}/children/{}/children;/sites/{}/termstore/sets/{}/children/{}/children/{}","Get-MgSiteTermStoreSetChild" +"GET","/sites/{}/termstore/sets/{}/children/{}","Sites","Get-MgSiteTermStoreSetChild","keep","System.Object[]","/sites/{}/termstore/sets/{}/children","Get-MgSiteTermStoreSetChild" +"GET","/sites/{}/termstore/sets/{}/children/{}/children","Sites","Get-MgSiteTermStoreSetChild","suppress","System.Object[]","/sites/{}/termstore/sets/{}/children","Get-MgSiteTermStoreSetChild" +"GET","/sites/{}/termstore/sets/{}/children/{}/children/{}","Sites","Get-MgSiteTermStoreSetChild","suppress","System.Object[]","/sites/{}/termstore/sets/{}/children","Get-MgSiteTermStoreSetChild" +"GET","/sites/{}/termstore/sets/{}/children/{}/children/{}/relations","Sites","Get-MgSiteTermStoreSetChildRelation","keep","System.Object[]","/sites/{}/termstore/sets/{}/children/{}/children/{}/relations/{};/sites/{}/termstore/sets/{}/children/{}/relations;/sites/{}/termstore/sets/{}/children/{}/relations/{}","Get-MgSiteTermStoreSetChildRelation" +"GET","/sites/{}/termstore/sets/{}/children/{}/children/{}/relations/{}","Sites","Get-MgSiteTermStoreSetChildRelation","keep","System.Object[]","/sites/{}/termstore/sets/{}/children/{}/children/{}/relations","Get-MgSiteTermStoreSetChildRelation" +"GET","/sites/{}/termstore/sets/{}/children/{}/children/{}/relations/{}/fromterm","Sites","Get-MgSiteTermStoreSetChildRelationFromTerm","keep","System.Object[]","/sites/{}/termstore/sets/{}/children/{}/relations/{}/fromterm","" +"GET","/sites/{}/termstore/sets/{}/children/{}/children/{}/relations/{}/set","Sites","Get-MgSiteTermStoreSetChildRelationSet","keep","System.Object[]","/sites/{}/termstore/sets/{}/children/{}/relations/{}/set","" +"GET","/sites/{}/termstore/sets/{}/children/{}/children/{}/relations/{}/toterm","Sites","Get-MgSiteTermStoreSetChildRelationToTerm","keep","System.Object[]","/sites/{}/termstore/sets/{}/children/{}/relations/{}/toterm","" +"GET","/sites/{}/termstore/sets/{}/children/{}/children/{}/relations/$count","Sites","Get-MgSiteTermStoreSetChildRelationCount","keep","System.Object[]","/sites/{}/termstore/sets/{}/children/{}/relations/$count","" +"GET","/sites/{}/termstore/sets/{}/children/{}/children/{}/set","Sites","Get-MgSiteTermStoreSetChildSet","keep","System.Object[]","/sites/{}/termstore/sets/{}/children/{}/set","" +"GET","/sites/{}/termstore/sets/{}/children/{}/children/$count","Sites","Get-MgSiteTermStoreSetChildCount","keep","System.Object[]","/sites/{}/termstore/sets/{}/children/$count","" +"GET","/sites/{}/termstore/sets/{}/children/{}/relations","Sites","Get-MgSiteTermStoreSetChildRelation","suppress","System.Object[]","/sites/{}/termstore/sets/{}/children/{}/children/{}/relations","Get-MgSiteTermStoreSetChildRelation" +"GET","/sites/{}/termstore/sets/{}/children/{}/relations/{}","Sites","Get-MgSiteTermStoreSetChildRelation","suppress","System.Object[]","/sites/{}/termstore/sets/{}/children/{}/children/{}/relations","Get-MgSiteTermStoreSetChildRelation" +"GET","/sites/{}/termstore/sets/{}/children/{}/relations/{}/fromterm","Sites","Get-MgSiteTermStoreSetChildRelationFromTerm","suppress","System.Object[]","/sites/{}/termstore/sets/{}/children/{}/children/{}/relations/{}/fromterm","Get-MgSiteTermStoreSetChildRelationFromTerm" +"GET","/sites/{}/termstore/sets/{}/children/{}/relations/{}/set","Sites","Get-MgSiteTermStoreSetChildRelationSet","suppress","System.Object[]","/sites/{}/termstore/sets/{}/children/{}/children/{}/relations/{}/set","Get-MgSiteTermStoreSetChildRelationSet" +"GET","/sites/{}/termstore/sets/{}/children/{}/relations/{}/toterm","Sites","Get-MgSiteTermStoreSetChildRelationToTerm","suppress","System.Object[]","/sites/{}/termstore/sets/{}/children/{}/children/{}/relations/{}/toterm","Get-MgSiteTermStoreSetChildRelationToTerm" +"GET","/sites/{}/termstore/sets/{}/children/{}/relations/$count","Sites","Get-MgSiteTermStoreSetChildRelationCount","suppress","System.Object[]","/sites/{}/termstore/sets/{}/children/{}/children/{}/relations/$count","Get-MgSiteTermStoreSetChildRelationCount" +"GET","/sites/{}/termstore/sets/{}/children/{}/set","Sites","Get-MgSiteTermStoreSetChildSet","suppress","System.Object[]","/sites/{}/termstore/sets/{}/children/{}/children/{}/set","Get-MgSiteTermStoreSetChildSet" +"GET","/sites/{}/termstore/sets/{}/children/$count","Sites","Get-MgSiteTermStoreSetChildCount","suppress","System.Object[]","/sites/{}/termstore/sets/{}/children/{}/children/$count","Get-MgSiteTermStoreSetChildCount" +"GET","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children","Sites","Get-MgSiteTermStoreSetParentGroupSetChild","keep","System.Object[]","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{};/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children;/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}","Get-MgSiteTermStoreSetParentGroupSetChild" +"GET","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}","Sites","Get-MgSiteTermStoreSetParentGroupSetChild","keep","System.Object[]","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children","Get-MgSiteTermStoreSetParentGroupSetChild" +"GET","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children","Sites","Get-MgSiteTermStoreSetParentGroupSetChild","suppress","System.Object[]","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children","Get-MgSiteTermStoreSetParentGroupSetChild" +"GET","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}","Sites","Get-MgSiteTermStoreSetParentGroupSetChild","suppress","System.Object[]","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children","Get-MgSiteTermStoreSetParentGroupSetChild" +"GET","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations","Sites","Get-MgSiteTermStoreSetParentGroupSetChildRelation","keep","System.Object[]","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations/{};/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations;/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations/{}","Get-MgSiteTermStoreSetParentGroupSetChildRelation" +"GET","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations/{}","Sites","Get-MgSiteTermStoreSetParentGroupSetChildRelation","keep","System.Object[]","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations","Get-MgSiteTermStoreSetParentGroupSetChildRelation" +"GET","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations/{}/fromterm","Sites","Get-MgSiteTermStoreSetParentGroupSetChildRelationFromTerm","keep","System.Object[]","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations/{}/fromterm","" +"GET","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations/{}/set","Sites","Get-MgSiteTermStoreSetParentGroupSetChildRelationSet","keep","System.Object[]","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations/{}/set","" +"GET","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations/{}/toterm","Sites","Get-MgSiteTermStoreSetParentGroupSetChildRelationToTerm","keep","System.Object[]","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations/{}/toterm","" +"GET","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations/$count","Sites","Get-MgSiteTermStoreSetParentGroupSetChildRelationCount","keep","System.Object[]","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations/$count","" +"GET","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/set","Sites","Get-MgSiteTermStoreSetParentGroupSetChildSet","keep","System.Object[]","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/set","" +"GET","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/$count","Sites","Get-MgSiteTermStoreSetParentGroupSetChildCount","keep","System.Object[]","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/$count","" +"GET","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations","Sites","Get-MgSiteTermStoreSetParentGroupSetChildRelation","suppress","System.Object[]","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations","Get-MgSiteTermStoreSetParentGroupSetChildRelation" +"GET","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations/{}","Sites","Get-MgSiteTermStoreSetParentGroupSetChildRelation","suppress","System.Object[]","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations","Get-MgSiteTermStoreSetParentGroupSetChildRelation" +"GET","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations/{}/fromterm","Sites","Get-MgSiteTermStoreSetParentGroupSetChildRelationFromTerm","suppress","System.Object[]","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations/{}/fromterm","Get-MgSiteTermStoreSetParentGroupSetChildRelationFromTerm" +"GET","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations/{}/set","Sites","Get-MgSiteTermStoreSetParentGroupSetChildRelationSet","suppress","System.Object[]","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations/{}/set","Get-MgSiteTermStoreSetParentGroupSetChildRelationSet" +"GET","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations/{}/toterm","Sites","Get-MgSiteTermStoreSetParentGroupSetChildRelationToTerm","suppress","System.Object[]","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations/{}/toterm","Get-MgSiteTermStoreSetParentGroupSetChildRelationToTerm" +"GET","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations/$count","Sites","Get-MgSiteTermStoreSetParentGroupSetChildRelationCount","suppress","System.Object[]","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations/$count","Get-MgSiteTermStoreSetParentGroupSetChildRelationCount" +"GET","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/set","Sites","Get-MgSiteTermStoreSetParentGroupSetChildSet","suppress","System.Object[]","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/set","Get-MgSiteTermStoreSetParentGroupSetChildSet" +"GET","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/$count","Sites","Get-MgSiteTermStoreSetParentGroupSetChildCount","suppress","System.Object[]","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/$count","Get-MgSiteTermStoreSetParentGroupSetChildCount" +"GET","/sites/$count","Sites","Get-MgSiteCount","keep","System.Object[]","/sites/{}/sites/$count","Get-MgSubSiteCount" +"GET","/users/{}/calendar/allowedcalendarsharingroles(user='{}')","Calendar","Get-MgUserCalendarAllowedCalendarSharingRolesWithUser","rename","System.Object[]","/users/{}/calendars/{}/allowedcalendarsharingroles(user='{}')","" +"GET","/users/{}/calendar/calendarview","Calendar","Get-MgUserCalendarView","keep","System.Object[]","/users/{}/calendars/{}/calendarview;/users/{}/calendarview","" +"GET","/users/{}/calendar/calendarview/delta","Calendar","Get-MgUserCalendarViewDelta","suppress","System.Object[]","/users/{}/calendars/{}/calendarview/delta;/users/{}/calendarview/delta","" +"GET","/users/{}/calendar/events/$count","Calendar","Get-MgUserCalendarEventCount","suppress","System.Object[]","/users/{}/calendars/{}/events/$count","" +"GET","/users/{}/calendar/events/delta","Calendar","Get-MgUserCalendarEventDelta","suppress","System.Object[]","/users/{}/calendars/{}/events/delta","" +"GET","/users/{}/calendars/{}/allowedcalendarsharingroles(user='{}')","Calendar","Get-MgUserCalendarAllowedCalendarSharingRolesWithUser","suppress","System.Object[]","/users/{}/calendar/allowedcalendarsharingroles(user='{}')","Invoke-MgCalendarUserCalendarAllowedCalendarSharingRoles" +"GET","/users/{}/calendars/{}/calendarview","Calendar","Get-MgUserCalendarView","suppress","System.Object[]","/users/{}/calendar/calendarview","Get-MgUserCalendarView" +"GET","/users/{}/calendars/{}/calendarview/delta","Calendar","Get-MgUserCalendarViewDelta","suppress","System.Object[]","/users/{}/calendar/calendarview/delta","" +"GET","/users/{}/calendars/{}/events/$count","Calendar","Get-MgUserCalendarEventCount","suppress","System.Object[]","/users/{}/calendar/events/$count","" +"GET","/users/{}/calendars/{}/events/delta","Calendar","Get-MgUserCalendarEventDelta","suppress","System.Object[]","/users/{}/calendar/events/delta","" +"GET","/users/{}/calendarview","Calendar","Get-MgUserCalendarView","suppress","System.Object[]","/users/{}/calendar/calendarview","Get-MgUserCalendarView" +"GET","/users/{}/calendarview/delta","Calendar","Get-MgUserCalendarViewDelta","suppress","System.Object[]","/users/{}/calendar/calendarview/delta","" +"GET","/users/{}/onenote/notebooks/{}/sectiongroups","Notes","Get-MgUserOnenoteNotebookSectionGroup","keep","System.Object[]","/users/{}/onenote/notebooks/{}/sectiongroups/{};/users/{}/onenote/notebooks/{}/sectiongroups/{}/sectiongroups;/users/{}/onenote/notebooks/{}/sectiongroups/{}/sectiongroups/{}","Get-MgUserOnenoteNotebookSectionGroup" +"GET","/users/{}/onenote/notebooks/{}/sectiongroups/{}","Notes","Get-MgUserOnenoteNotebookSectionGroup","keep","System.Object[]","/users/{}/onenote/notebooks/{}/sectiongroups","Get-MgUserOnenoteNotebookSectionGroup" +"GET","/users/{}/onenote/notebooks/{}/sectiongroups/{}/sectiongroups","Notes","Get-MgUserOnenoteNotebookSectionGroup","suppress","System.Object[]","/users/{}/onenote/notebooks/{}/sectiongroups","Get-MgUserOnenoteNotebookSectionGroup" +"GET","/users/{}/onenote/notebooks/{}/sectiongroups/{}/sectiongroups/{}","Notes","Get-MgUserOnenoteNotebookSectionGroup","suppress","System.Object[]","/users/{}/onenote/notebooks/{}/sectiongroups","Get-MgUserOnenoteNotebookSectionGroup" +"GET","/users/{}/onenote/notebooks/{}/sectiongroups/{}/sectiongroups/$count","Notes","Get-MgUserOnenoteNotebookSectionGroupCount","keep","System.Object[]","/users/{}/onenote/notebooks/{}/sectiongroups/$count","" +"GET","/users/{}/onenote/notebooks/{}/sectiongroups/$count","Notes","Get-MgUserOnenoteNotebookSectionGroupCount","suppress","System.Object[]","/users/{}/onenote/notebooks/{}/sectiongroups/{}/sectiongroups/$count","Get-MgUserOnenoteNotebookSectionGroupCount" +"GET","/users/{}/onenote/sectiongroups","Notes","Get-MgUserOnenoteSectionGroup","keep","System.Object[]","/users/{}/onenote/sectiongroups/{};/users/{}/onenote/sectiongroups/{}/sectiongroups;/users/{}/onenote/sectiongroups/{}/sectiongroups/{}","Get-MgUserOnenoteSectionGroup" +"GET","/users/{}/onenote/sectiongroups/{}","Notes","Get-MgUserOnenoteSectionGroup","keep","System.Object[]","/users/{}/onenote/sectiongroups","Get-MgUserOnenoteSectionGroup" +"GET","/users/{}/onenote/sectiongroups/{}/sectiongroups","Notes","Get-MgUserOnenoteSectionGroup","suppress","System.Object[]","/users/{}/onenote/sectiongroups","Get-MgUserOnenoteSectionGroup" +"GET","/users/{}/onenote/sectiongroups/{}/sectiongroups/{}","Notes","Get-MgUserOnenoteSectionGroup","suppress","System.Object[]","/users/{}/onenote/sectiongroups","Get-MgUserOnenoteSectionGroup" +"GET","/users/{}/onenote/sectiongroups/{}/sectiongroups/$count","Notes","Get-MgUserOnenoteSectionGroupCount","keep","System.Object[]","/users/{}/onenote/sectiongroups/$count","" +"GET","/users/{}/onenote/sectiongroups/$count","Notes","Get-MgUserOnenoteSectionGroupCount","suppress","System.Object[]","/users/{}/onenote/sectiongroups/{}/sectiongroups/$count","Get-MgUserOnenoteSectionGroupCount" +"GET","/users/{}/photo/$value","Users","Get-MgUserPhotoContent","keep","System.Object[]","/users/{}/photos/{}/$value","" +"GET","/users/{}/photos/{}/$value","Users","Get-MgUserPhotoContent","suppress","System.Object[]","/users/{}/photo/$value","Get-MgUserPhotoContent" +"PATCH","/groups/{}/settings/{}","Groups","Update-MgGroupSetting","keep","System.Object[]","/groupsettings/{}","" +"PATCH","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}","Sites","Update-MgGroupSiteTermStoreGroupSetChild","keep","System.Object[]","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}","" +"PATCH","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}","Sites","Update-MgGroupSiteTermStoreGroupSetChild","suppress","System.Object[]","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}","Update-MgGroupSiteTermStoreGroupSetChild" +"PATCH","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations/{}","Sites","Update-MgGroupSiteTermStoreGroupSetChildRelation","keep","System.Object[]","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations/{}","" +"PATCH","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations/{}","Sites","Update-MgGroupSiteTermStoreGroupSetChildRelation","suppress","System.Object[]","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations/{}","Update-MgGroupSiteTermStoreGroupSetChildRelation" +"PATCH","/groups/{}/sites/{}/termstore/sets/{}/children/{}","Sites","Update-MgGroupSiteTermStoreSetChild","keep","System.Object[]","/groups/{}/sites/{}/termstore/sets/{}/children/{}/children/{}","" +"PATCH","/groups/{}/sites/{}/termstore/sets/{}/children/{}/children/{}","Sites","Update-MgGroupSiteTermStoreSetChild","suppress","System.Object[]","/groups/{}/sites/{}/termstore/sets/{}/children/{}","Update-MgGroupSiteTermStoreSetChild" +"PATCH","/groups/{}/sites/{}/termstore/sets/{}/children/{}/children/{}/relations/{}","Sites","Update-MgGroupSiteTermStoreSetChildRelation","keep","System.Object[]","/groups/{}/sites/{}/termstore/sets/{}/children/{}/relations/{}","" +"PATCH","/groups/{}/sites/{}/termstore/sets/{}/children/{}/relations/{}","Sites","Update-MgGroupSiteTermStoreSetChildRelation","suppress","System.Object[]","/groups/{}/sites/{}/termstore/sets/{}/children/{}/children/{}/relations/{}","Update-MgGroupSiteTermStoreSetChildRelation" +"PATCH","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}","Sites","Update-MgGroupSiteTermStoreSetParentGroupSetChild","keep","System.Object[]","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}","" +"PATCH","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}","Sites","Update-MgGroupSiteTermStoreSetParentGroupSetChild","suppress","System.Object[]","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}","Update-MgGroupSiteTermStoreSetParentGroupSetChild" +"PATCH","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations/{}","Sites","Update-MgGroupSiteTermStoreSetParentGroupSetChildRelation","keep","System.Object[]","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations/{}","" +"PATCH","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations/{}","Sites","Update-MgGroupSiteTermStoreSetParentGroupSetChildRelation","suppress","System.Object[]","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations/{}","Update-MgGroupSiteTermStoreSetParentGroupSetChildRelation" +"PATCH","/groupsettings/{}","Groups","Update-MgGroupSetting","suppress","System.Object[]","/groups/{}/settings/{}","Update-MgGroupSetting" +"PATCH","/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}","Identity.Governance","Update-MgIdentityGovernanceEntitlementManagementCatalogResourceRole","rename","System.Object[]","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}","" +"PATCH","/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource","Identity.Governance","Update-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResource","suppress","System.Object[]","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource","" +"PATCH","/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes/{}","Identity.Governance","Update-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScope","rename","System.Object[]","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource/scopes/{}","" +"PATCH","/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes/{}/resource","Identity.Governance","Update-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResource","suppress","System.Object[]","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource/scopes/{}/resource","" +"PATCH","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}","Identity.Governance","Update-MgIdentityGovernanceEntitlementManagementCatalogResourceRole","suppress","System.Object[]","/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}","Update-MgEntitlementManagementCatalogResourceRole" +"PATCH","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource","Identity.Governance","Update-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResource","suppress","System.Object[]","/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource","" +"PATCH","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource/scopes/{}","Identity.Governance","Update-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScope","suppress","System.Object[]","/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes/{}","Update-MgEntitlementManagementCatalogResourceRoleResourceScope" +"PATCH","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource/scopes/{}/resource","Identity.Governance","Update-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResource","suppress","System.Object[]","/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes/{}/resource","" +"PATCH","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}","Identity.Governance","Update-MgIdentityGovernanceEntitlementManagementCatalogResourceScope","suppress","System.Object[]","/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}","Update-MgEntitlementManagementCatalogResourceScope" +"PATCH","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource","Identity.Governance","Update-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResource","suppress","System.Object[]","/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource","" +"PATCH","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles/{}","Identity.Governance","Update-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRole","rename","System.Object[]","/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/roles/{}","" +"PATCH","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles/{}/resource","Identity.Governance","Update-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResource","suppress","System.Object[]","/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/roles/{}/resource","" +"PATCH","/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}","Identity.Governance","Update-MgIdentityGovernanceEntitlementManagementCatalogResourceScope","rename","System.Object[]","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}","" +"PATCH","/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource","Identity.Governance","Update-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResource","suppress","System.Object[]","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource","" +"PATCH","/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/roles/{}","Identity.Governance","Update-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRole","suppress","System.Object[]","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles/{}","Update-MgEntitlementManagementCatalogResourceScopeResourceRole" +"PATCH","/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/roles/{}/resource","Identity.Governance","Update-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResource","suppress","System.Object[]","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles/{}/resource","" +"PATCH","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}","Identity.Governance","Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRole","rename","System.Object[]","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}","" +"PATCH","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource","Identity.Governance","Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResource","suppress","System.Object[]","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource","" +"PATCH","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes/{}","Identity.Governance","Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScope","rename","System.Object[]","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource/scopes/{}","" +"PATCH","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes/{}/resource","Identity.Governance","Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResource","suppress","System.Object[]","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource/scopes/{}/resource","" +"PATCH","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}","Identity.Governance","Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRole","suppress","System.Object[]","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}","Update-MgEntitlementManagementResourceRequestCatalogResourceRole" +"PATCH","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource","Identity.Governance","Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResource","suppress","System.Object[]","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource","" +"PATCH","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource/scopes/{}","Identity.Governance","Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScope","suppress","System.Object[]","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes/{}","Update-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScope" +"PATCH","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource/scopes/{}/resource","Identity.Governance","Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResource","suppress","System.Object[]","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes/{}/resource","" +"PATCH","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}","Identity.Governance","Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScope","suppress","System.Object[]","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}","Update-MgEntitlementManagementResourceRequestCatalogResourceScope" +"PATCH","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource","Identity.Governance","Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResource","suppress","System.Object[]","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource","" +"PATCH","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles/{}","Identity.Governance","Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRole","rename","System.Object[]","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/roles/{}","" +"PATCH","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles/{}/resource","Identity.Governance","Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResource","suppress","System.Object[]","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/roles/{}/resource","" +"PATCH","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}","Identity.Governance","Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScope","rename","System.Object[]","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}","" +"PATCH","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource","Identity.Governance","Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResource","suppress","System.Object[]","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource","" +"PATCH","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/roles/{}","Identity.Governance","Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRole","suppress","System.Object[]","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles/{}","Update-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRole" +"PATCH","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/roles/{}/resource","Identity.Governance","Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResource","suppress","System.Object[]","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles/{}/resource","" +"PATCH","/sites/{}/termstore/groups/{}/sets/{}/children/{}","Sites","Update-MgSiteTermStoreGroupSetChild","keep","System.Object[]","/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}","" +"PATCH","/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}","Sites","Update-MgSiteTermStoreGroupSetChild","suppress","System.Object[]","/sites/{}/termstore/groups/{}/sets/{}/children/{}","Update-MgSiteTermStoreGroupSetChild" +"PATCH","/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations/{}","Sites","Update-MgSiteTermStoreGroupSetChildRelation","keep","System.Object[]","/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations/{}","" +"PATCH","/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations/{}","Sites","Update-MgSiteTermStoreGroupSetChildRelation","suppress","System.Object[]","/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations/{}","Update-MgSiteTermStoreGroupSetChildRelation" +"PATCH","/sites/{}/termstore/sets/{}/children/{}","Sites","Update-MgSiteTermStoreSetChild","keep","System.Object[]","/sites/{}/termstore/sets/{}/children/{}/children/{}","" +"PATCH","/sites/{}/termstore/sets/{}/children/{}/children/{}","Sites","Update-MgSiteTermStoreSetChild","suppress","System.Object[]","/sites/{}/termstore/sets/{}/children/{}","Update-MgSiteTermStoreSetChild" +"PATCH","/sites/{}/termstore/sets/{}/children/{}/children/{}/relations/{}","Sites","Update-MgSiteTermStoreSetChildRelation","keep","System.Object[]","/sites/{}/termstore/sets/{}/children/{}/relations/{}","" +"PATCH","/sites/{}/termstore/sets/{}/children/{}/relations/{}","Sites","Update-MgSiteTermStoreSetChildRelation","suppress","System.Object[]","/sites/{}/termstore/sets/{}/children/{}/children/{}/relations/{}","Update-MgSiteTermStoreSetChildRelation" +"PATCH","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}","Sites","Update-MgSiteTermStoreSetParentGroupSetChild","keep","System.Object[]","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}","" +"PATCH","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}","Sites","Update-MgSiteTermStoreSetParentGroupSetChild","suppress","System.Object[]","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}","Update-MgSiteTermStoreSetParentGroupSetChild" +"PATCH","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations/{}","Sites","Update-MgSiteTermStoreSetParentGroupSetChildRelation","keep","System.Object[]","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations/{}","" +"PATCH","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations/{}","Sites","Update-MgSiteTermStoreSetParentGroupSetChildRelation","suppress","System.Object[]","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations/{}","Update-MgSiteTermStoreSetParentGroupSetChildRelation" +"POST","/applications/{}/synchronization/jobs/{}/validatecredentials","Applications","Invoke-MgApplicationSynchronizationJobValidateCredentials","rename","System.Object[]","/applications/{}/synchronization/jobs/validatecredentials","" +"POST","/applications/{}/synchronization/jobs/validatecredentials","Applications","Invoke-MgApplicationSynchronizationJobValidateCredentials","suppress","System.Object[]","/applications/{}/synchronization/jobs/{}/validatecredentials","Test-MgApplicationSynchronizationJobCredential" +"POST","/grouplifecyclepolicies","Groups","New-MgGroupLifecyclePolicy","keep","System.Object[]","/groups/{}/grouplifecyclepolicies","" +"POST","/groups/{}/grouplifecyclepolicies","Groups","New-MgGroupLifecyclePolicy","suppress","System.Object[]","/grouplifecyclepolicies","New-MgGroupLifecyclePolicy" +"POST","/groups/{}/settings","Groups","New-MgGroupSetting","keep","System.Object[]","/groupsettings","" +"POST","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children","Sites","New-MgGroupSiteTermStoreGroupSetChild","keep","System.Object[]","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/children","" +"POST","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/children","Sites","New-MgGroupSiteTermStoreGroupSetChild","suppress","System.Object[]","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children","New-MgGroupSiteTermStoreGroupSetChild" +"POST","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations","Sites","New-MgGroupSiteTermStoreGroupSetChildRelation","keep","System.Object[]","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations","" +"POST","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations","Sites","New-MgGroupSiteTermStoreGroupSetChildRelation","suppress","System.Object[]","/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations","New-MgGroupSiteTermStoreGroupSetChildRelation" +"POST","/groups/{}/sites/{}/termstore/sets/{}/children","Sites","New-MgGroupSiteTermStoreSetChild","keep","System.Object[]","/groups/{}/sites/{}/termstore/sets/{}/children/{}/children","" +"POST","/groups/{}/sites/{}/termstore/sets/{}/children/{}/children","Sites","New-MgGroupSiteTermStoreSetChild","suppress","System.Object[]","/groups/{}/sites/{}/termstore/sets/{}/children","New-MgGroupSiteTermStoreSetChild" +"POST","/groups/{}/sites/{}/termstore/sets/{}/children/{}/children/{}/relations","Sites","New-MgGroupSiteTermStoreSetChildRelation","keep","System.Object[]","/groups/{}/sites/{}/termstore/sets/{}/children/{}/relations","" +"POST","/groups/{}/sites/{}/termstore/sets/{}/children/{}/relations","Sites","New-MgGroupSiteTermStoreSetChildRelation","suppress","System.Object[]","/groups/{}/sites/{}/termstore/sets/{}/children/{}/children/{}/relations","New-MgGroupSiteTermStoreSetChildRelation" +"POST","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children","Sites","New-MgGroupSiteTermStoreSetParentGroupSetChild","keep","System.Object[]","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children","" +"POST","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children","Sites","New-MgGroupSiteTermStoreSetParentGroupSetChild","suppress","System.Object[]","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children","New-MgGroupSiteTermStoreSetParentGroupSetChild" +"POST","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations","Sites","New-MgGroupSiteTermStoreSetParentGroupSetChildRelation","keep","System.Object[]","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations","" +"POST","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations","Sites","New-MgGroupSiteTermStoreSetParentGroupSetChildRelation","suppress","System.Object[]","/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations","New-MgGroupSiteTermStoreSetParentGroupSetChildRelation" +"POST","/groups/{}/validateproperties","Groups","Invoke-MgGroupValidateProperties","rename","System.Object[]","/groups/validateproperties","" +"POST","/groups/validateproperties","Groups","Invoke-MgGroupValidateProperties","suppress","System.Object[]","/groups/{}/validateproperties","Test-MgGroupProperty" +"POST","/groupsettings","Groups","New-MgGroupSetting","suppress","System.Object[]","/groups/{}/settings","New-MgGroupSetting" +"POST","/identity/customauthenticationextensions/{}/validateauthenticationconfiguration","Identity.SignIns","Invoke-MgIdentityCustomAuthenticationExtensionValidateAuthenticationConfiguration","rename","System.Object[]","/identity/customauthenticationextensions/validateauthenticationconfiguration","" +"POST","/identity/customauthenticationextensions/validateauthenticationconfiguration","Identity.SignIns","Invoke-MgIdentityCustomAuthenticationExtensionValidateAuthenticationConfiguration","suppress","System.Object[]","/identity/customauthenticationextensions/{}/validateauthenticationconfiguration","Test-MgIdentityCustomAuthenticationExtensionAuthenticationConfiguration" +"POST","/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles","Identity.Governance","New-MgIdentityGovernanceEntitlementManagementCatalogResourceRole","rename","System.Object[]","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles","" +"POST","/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/refresh","Identity.Governance","Invoke-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceRefresh","rename","System.Object[]","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource/refresh","" +"POST","/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes","Identity.Governance","New-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScope","rename","System.Object[]","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource/scopes","" +"POST","/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes/{}/resource/refresh","Identity.Governance","Invoke-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResourceRefresh","rename","System.Object[]","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource/scopes/{}/resource/refresh","" +"POST","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles","Identity.Governance","New-MgIdentityGovernanceEntitlementManagementCatalogResourceRole","suppress","System.Object[]","/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles","New-MgEntitlementManagementCatalogResourceRole" +"POST","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource/refresh","Identity.Governance","Invoke-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceRefresh","suppress","System.Object[]","/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/refresh","Update-MgEntitlementManagementCatalogResourceRoleResource" +"POST","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource/scopes","Identity.Governance","New-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScope","suppress","System.Object[]","/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes","New-MgEntitlementManagementCatalogResourceRoleResourceScope" +"POST","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource/scopes/{}/resource/refresh","Identity.Governance","Invoke-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResourceRefresh","suppress","System.Object[]","/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes/{}/resource/refresh","Update-MgEntitlementManagementCatalogResourceRoleResourceScopeResource" +"POST","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes","Identity.Governance","New-MgIdentityGovernanceEntitlementManagementCatalogResourceScope","suppress","System.Object[]","/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes","New-MgEntitlementManagementCatalogResourceScope" +"POST","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/refresh","Identity.Governance","Invoke-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRefresh","rename","System.Object[]","/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/refresh","" +"POST","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles","Identity.Governance","New-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRole","rename","System.Object[]","/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/roles","" +"POST","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles/{}/resource/refresh","Identity.Governance","Invoke-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResourceRefresh","rename","System.Object[]","/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/roles/{}/resource/refresh","" +"POST","/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes","Identity.Governance","New-MgIdentityGovernanceEntitlementManagementCatalogResourceScope","rename","System.Object[]","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes","" +"POST","/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/refresh","Identity.Governance","Invoke-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRefresh","suppress","System.Object[]","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/refresh","Update-MgEntitlementManagementCatalogResourceScopeResource" +"POST","/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/roles","Identity.Governance","New-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRole","suppress","System.Object[]","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles","New-MgEntitlementManagementCatalogResourceScopeResourceRole" +"POST","/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/roles/{}/resource/refresh","Identity.Governance","Invoke-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResourceRefresh","suppress","System.Object[]","/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles/{}/resource/refresh","Update-MgEntitlementManagementCatalogResourceScopeResourceRoleResource" +"POST","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles","Identity.Governance","New-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRole","rename","System.Object[]","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles","" +"POST","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/refresh","Identity.Governance","Invoke-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceRefresh","rename","System.Object[]","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource/refresh","" +"POST","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes","Identity.Governance","New-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScope","rename","System.Object[]","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource/scopes","" +"POST","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes/{}/resource/refresh","Identity.Governance","Invoke-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRefresh","rename","System.Object[]","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource/scopes/{}/resource/refresh","" +"POST","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles","Identity.Governance","New-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRole","suppress","System.Object[]","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles","New-MgEntitlementManagementResourceRequestCatalogResourceRole" +"POST","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource/refresh","Identity.Governance","Invoke-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceRefresh","suppress","System.Object[]","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/refresh","Update-MgEntitlementManagementResourceRequestCatalogResourceRoleResource" +"POST","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource/scopes","Identity.Governance","New-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScope","suppress","System.Object[]","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes","New-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScope" +"POST","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource/scopes/{}/resource/refresh","Identity.Governance","Invoke-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRefresh","suppress","System.Object[]","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes/{}/resource/refresh","Update-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResource" +"POST","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes","Identity.Governance","New-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScope","suppress","System.Object[]","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes","New-MgEntitlementManagementResourceRequestCatalogResourceScope" +"POST","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/refresh","Identity.Governance","Invoke-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRefresh","rename","System.Object[]","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/refresh","" +"POST","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles","Identity.Governance","New-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRole","rename","System.Object[]","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/roles","" +"POST","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles/{}/resource/refresh","Identity.Governance","Invoke-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceRefresh","rename","System.Object[]","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/roles/{}/resource/refresh","" +"POST","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes","Identity.Governance","New-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScope","rename","System.Object[]","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes","" +"POST","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/refresh","Identity.Governance","Invoke-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRefresh","suppress","System.Object[]","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/refresh","Update-MgEntitlementManagementResourceRequestCatalogResourceScopeResource" +"POST","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/roles","Identity.Governance","New-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRole","suppress","System.Object[]","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles","New-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRole" +"POST","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/roles/{}/resource/refresh","Identity.Governance","Invoke-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceRefresh","suppress","System.Object[]","/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles/{}/resource/refresh","Update-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResource" +"POST","/security/cases/ediscoverycases/{}/custodians/{}/microsoft.graph.security.applyhold","Security","Invoke-MgSecurityCaseEdiscoveryCaseCustodianApplyHold","rename","System.Object[]","/security/cases/ediscoverycases/{}/custodians/microsoft.graph.security.applyhold","" +"POST","/security/cases/ediscoverycases/{}/custodians/{}/microsoft.graph.security.removehold","Security","Invoke-MgSecurityCaseEdiscoveryCaseCustodianRemoveHold","rename","System.Object[]","/security/cases/ediscoverycases/{}/custodians/microsoft.graph.security.removehold","" +"POST","/security/cases/ediscoverycases/{}/custodians/microsoft.graph.security.applyhold","Security","Invoke-MgSecurityCaseEdiscoveryCaseCustodianApplyHold","suppress","System.Object[]","/security/cases/ediscoverycases/{}/custodians/{}/microsoft.graph.security.applyhold","" +"POST","/security/cases/ediscoverycases/{}/custodians/microsoft.graph.security.removehold","Security","Invoke-MgSecurityCaseEdiscoveryCaseCustodianRemoveHold","suppress","System.Object[]","/security/cases/ediscoverycases/{}/custodians/{}/microsoft.graph.security.removehold","" +"POST","/security/cases/ediscoverycases/{}/noncustodialdatasources/{}/microsoft.graph.security.applyhold","Security","Invoke-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceApplyHold","rename","System.Object[]","/security/cases/ediscoverycases/{}/noncustodialdatasources/microsoft.graph.security.applyhold","" +"POST","/security/cases/ediscoverycases/{}/noncustodialdatasources/{}/microsoft.graph.security.removehold","Security","Invoke-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceRemoveHold","rename","System.Object[]","/security/cases/ediscoverycases/{}/noncustodialdatasources/microsoft.graph.security.removehold","" +"POST","/security/cases/ediscoverycases/{}/noncustodialdatasources/microsoft.graph.security.applyhold","Security","Invoke-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceApplyHold","suppress","System.Object[]","/security/cases/ediscoverycases/{}/noncustodialdatasources/{}/microsoft.graph.security.applyhold","" +"POST","/security/cases/ediscoverycases/{}/noncustodialdatasources/microsoft.graph.security.removehold","Security","Invoke-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceRemoveHold","suppress","System.Object[]","/security/cases/ediscoverycases/{}/noncustodialdatasources/{}/microsoft.graph.security.removehold","" +"POST","/serviceprincipals/{}/synchronization/jobs/{}/validatecredentials","Applications","Invoke-MgServicePrincipalSynchronizationJobValidateCredentials","rename","System.Object[]","/serviceprincipals/{}/synchronization/jobs/validatecredentials","" +"POST","/serviceprincipals/{}/synchronization/jobs/validatecredentials","Applications","Invoke-MgServicePrincipalSynchronizationJobValidateCredentials","suppress","System.Object[]","/serviceprincipals/{}/synchronization/jobs/{}/validatecredentials","Test-MgServicePrincipalSynchronizationJobCredential" +"POST","/sites/{}/termstore/groups/{}/sets/{}/children","Sites","New-MgSiteTermStoreGroupSetChild","keep","System.Object[]","/sites/{}/termstore/groups/{}/sets/{}/children/{}/children","" +"POST","/sites/{}/termstore/groups/{}/sets/{}/children/{}/children","Sites","New-MgSiteTermStoreGroupSetChild","suppress","System.Object[]","/sites/{}/termstore/groups/{}/sets/{}/children","New-MgSiteTermStoreGroupSetChild" +"POST","/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations","Sites","New-MgSiteTermStoreGroupSetChildRelation","keep","System.Object[]","/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations","" +"POST","/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations","Sites","New-MgSiteTermStoreGroupSetChildRelation","suppress","System.Object[]","/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations","New-MgSiteTermStoreGroupSetChildRelation" +"POST","/sites/{}/termstore/sets/{}/children","Sites","New-MgSiteTermStoreSetChild","keep","System.Object[]","/sites/{}/termstore/sets/{}/children/{}/children","" +"POST","/sites/{}/termstore/sets/{}/children/{}/children","Sites","New-MgSiteTermStoreSetChild","suppress","System.Object[]","/sites/{}/termstore/sets/{}/children","New-MgSiteTermStoreSetChild" +"POST","/sites/{}/termstore/sets/{}/children/{}/children/{}/relations","Sites","New-MgSiteTermStoreSetChildRelation","keep","System.Object[]","/sites/{}/termstore/sets/{}/children/{}/relations","" +"POST","/sites/{}/termstore/sets/{}/children/{}/relations","Sites","New-MgSiteTermStoreSetChildRelation","suppress","System.Object[]","/sites/{}/termstore/sets/{}/children/{}/children/{}/relations","New-MgSiteTermStoreSetChildRelation" +"POST","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children","Sites","New-MgSiteTermStoreSetParentGroupSetChild","keep","System.Object[]","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children","" +"POST","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children","Sites","New-MgSiteTermStoreSetParentGroupSetChild","suppress","System.Object[]","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children","New-MgSiteTermStoreSetParentGroupSetChild" +"POST","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations","Sites","New-MgSiteTermStoreSetParentGroupSetChildRelation","keep","System.Object[]","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations","" +"POST","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations","Sites","New-MgSiteTermStoreSetParentGroupSetChildRelation","suppress","System.Object[]","/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations","New-MgSiteTermStoreSetParentGroupSetChildRelation" +"POST","/users/{}/calendar/getschedule","Calendar","Invoke-MgUserCalendarGetSchedule","suppress","System.Object[]","/users/{}/calendars/{}/getschedule","" +"POST","/users/{}/calendar/permanentdelete","Calendar","Invoke-MgUserCalendarPermanentDelete","rename","System.Object[]","/users/{}/calendars/{}/permanentdelete","" +"POST","/users/{}/calendars/{}/getschedule","Calendar","Invoke-MgUserCalendarGetSchedule","suppress","System.Object[]","/users/{}/calendar/getschedule","" +"POST","/users/{}/calendars/{}/permanentdelete","Calendar","Invoke-MgUserCalendarPermanentDelete","suppress","System.Object[]","/users/{}/calendar/permanentdelete","Remove-MgUserCalendarPermanent" diff --git a/tools/WrapperGenerator/data/collision-suppressions.v1.0.json b/tools/WrapperGenerator/data/collision-suppressions.v1.0.json index 261407ed1be..d9fe8e800c3 100644 --- a/tools/WrapperGenerator/data/collision-suppressions.v1.0.json +++ b/tools/WrapperGenerator/data/collision-suppressions.v1.0.json @@ -2,460 +2,460 @@ { "apiVersion": "v1.0", "modules": [ - "Sites" + "Applications" ], "method": "DELETE", - "uri": "/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}", + "uri": "/applications/{}/appmanagementpolicies/$ref", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}" + "/applications/{}/appmanagementpolicies/{}/$ref" ], "counterpartShipsAs": [ - "Remove-MgGroupSiteTermStoreGroupSetChild" + "Remove-MgApplicationAppManagementPolicyAppManagementPolicyByRef" ] } }, { "apiVersion": "v1.0", "modules": [ - "Sites" + "Applications" ], "method": "DELETE", - "uri": "/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations/{}", + "uri": "/applications/{}/owners/$ref", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations/{}" + "/applications/{}/owners/{}/$ref" ], "counterpartShipsAs": [ - "Remove-MgGroupSiteTermStoreGroupSetChildRelation" + "Remove-MgApplicationOwnerDirectoryObjectByRef" ] } }, { "apiVersion": "v1.0", "modules": [ - "Sites" + "Applications" ], "method": "DELETE", - "uri": "/groups/{}/sites/{}/termstore/sets/{}/children/{}/children/{}", + "uri": "/applications/{}/tokenissuancepolicies/$ref", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/groups/{}/sites/{}/termstore/sets/{}/children/{}" + "/applications/{}/tokenissuancepolicies/{}/$ref" ], "counterpartShipsAs": [ - "Remove-MgGroupSiteTermStoreSetChild" + "Remove-MgApplicationTokenIssuancePolicyTokenIssuancePolicyByRef" ] } }, { "apiVersion": "v1.0", "modules": [ - "Sites" + "Applications" ], "method": "DELETE", - "uri": "/groups/{}/sites/{}/termstore/sets/{}/children/{}/relations/{}", + "uri": "/applications/{}/tokenlifetimepolicies/$ref", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/groups/{}/sites/{}/termstore/sets/{}/children/{}/children/{}/relations/{}" + "/applications/{}/tokenlifetimepolicies/{}/$ref" ], "counterpartShipsAs": [ - "Remove-MgGroupSiteTermStoreSetChildRelation" + "Remove-MgApplicationTokenLifetimePolicyTokenLifetimePolicyByRef" ] } }, { "apiVersion": "v1.0", "modules": [ - "Sites" + "Identity.DirectoryManagement" ], "method": "DELETE", - "uri": "/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}", + "uri": "/devices/{}/registeredowners/$ref", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}" + "/devices/{}/registeredowners/{}/$ref" ], "counterpartShipsAs": [ - "Remove-MgGroupSiteTermStoreSetParentGroupSetChild" + "Remove-MgDeviceRegisteredOwnerDirectoryObjectByRef" ] } }, { "apiVersion": "v1.0", "modules": [ - "Sites" + "Identity.DirectoryManagement" ], "method": "DELETE", - "uri": "/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations/{}", + "uri": "/devices/{}/registeredusers/$ref", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations/{}" + "/devices/{}/registeredusers/{}/$ref" ], "counterpartShipsAs": [ - "Remove-MgGroupSiteTermStoreSetParentGroupSetChildRelation" + "Remove-MgDeviceRegisteredUserDirectoryObjectByRef" ] } }, { "apiVersion": "v1.0", "modules": [ - "Groups" + "Identity.DirectoryManagement" ], "method": "DELETE", - "uri": "/groupsettings/{}", + "uri": "/directory/administrativeunits/{}/members/$ref", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/groups/{}/settings/{}" + "/directory/administrativeunits/{}/members/{}/$ref" ], "counterpartShipsAs": [ - "Remove-MgGroupSetting" + "Remove-MgDirectoryAdministrativeUnitMemberDirectoryObjectByRef" ] } }, { "apiVersion": "v1.0", "modules": [ - "Identity.Governance" + "Identity.DirectoryManagement" ], "method": "DELETE", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}", + "uri": "/directoryroles/{}/members/$ref", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}" + "/directoryroles/{}/members/{}/$ref" ], "counterpartShipsAs": [ - "Remove-MgEntitlementManagementCatalogResourceRole" + "Remove-MgDirectoryRoleMemberDirectoryObjectByRef" ] } }, { "apiVersion": "v1.0", "modules": [ - "Identity.Governance" + "Education" ], "method": "DELETE", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource", + "uri": "/education/classes/{}/assignments/{}/categories/$ref", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource" + "/education/classes/{}/assignments/{}/categories/{}/$ref" ], "counterpartShipsAs": [ - "Remove-MgEntitlementManagementCatalogResourceRoleResource" + "Remove-MgEducationClassAssignmentCategoryEducationCategoryByRef" ] } }, { "apiVersion": "v1.0", "modules": [ - "Identity.Governance" + "Education" ], "method": "DELETE", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource/scopes/{}", + "uri": "/education/classes/{}/members/$ref", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes/{}" + "/education/classes/{}/members/{}/$ref" ], "counterpartShipsAs": [ - "Remove-MgEntitlementManagementCatalogResourceRoleResourceScope" + "Remove-MgEducationClassMemberEducationUserByRef" ] } }, { "apiVersion": "v1.0", "modules": [ - "Identity.Governance" + "Education" ], "method": "DELETE", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource/scopes/{}/resource", + "uri": "/education/classes/{}/teachers/$ref", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes/{}/resource" + "/education/classes/{}/teachers/{}/$ref" ], "counterpartShipsAs": [ - "Remove-MgEntitlementManagementCatalogResourceRoleResourceScopeResource" + "Remove-MgEducationClassTeacherEducationUserByRef" ] } }, { "apiVersion": "v1.0", "modules": [ - "Identity.Governance" + "Education" ], "method": "DELETE", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}", + "uri": "/education/me/assignments/{}/categories/$ref", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}" + "/education/me/assignments/{}/categories/{}/$ref" ], "counterpartShipsAs": [ - "Remove-MgEntitlementManagementCatalogResourceScope" + "Remove-MgEducationMeAssignmentCategoryEducationCategoryByRef" ] } }, { "apiVersion": "v1.0", "modules": [ - "Identity.Governance" + "Education" ], "method": "DELETE", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource", + "uri": "/education/schools/{}/classes/$ref", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource" + "/education/schools/{}/classes/{}/$ref" ], "counterpartShipsAs": [ - "Remove-MgEntitlementManagementCatalogResourceScopeResource" + "Remove-MgEducationSchoolClassEducationClassByRef" ] } }, { "apiVersion": "v1.0", "modules": [ - "Identity.Governance" + "Education" ], "method": "DELETE", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/roles/{}", + "uri": "/education/schools/{}/users/$ref", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles/{}" + "/education/schools/{}/users/{}/$ref" ], "counterpartShipsAs": [ - "Remove-MgEntitlementManagementCatalogResourceScopeResourceRole" + "Remove-MgEducationSchoolUserEducationUserByRef" ] } }, { "apiVersion": "v1.0", "modules": [ - "Identity.Governance" + "Education" ], "method": "DELETE", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/roles/{}/resource", + "uri": "/education/users/{}/assignments/{}/categories/$ref", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles/{}/resource" + "/education/users/{}/assignments/{}/categories/{}/$ref" ], "counterpartShipsAs": [ - "Remove-MgEntitlementManagementCatalogResourceScopeResourceRoleResource" + "Remove-MgEducationUserAssignmentCategoryEducationCategoryByRef" ] } }, { "apiVersion": "v1.0", "modules": [ - "Identity.Governance" + "Groups" ], "method": "DELETE", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}", + "uri": "/groups/{}/acceptedsenders/$ref", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}" + "/groups/{}/acceptedsenders/{}/$ref" ], "counterpartShipsAs": [ - "Remove-MgEntitlementManagementResourceRequestCatalogResourceRole" + "Remove-MgGroupAcceptedSenderDirectoryObjectByRef" ] } }, { "apiVersion": "v1.0", "modules": [ - "Identity.Governance" + "Groups" ], "method": "DELETE", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource", + "uri": "/groups/{}/members/$ref", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource" + "/groups/{}/members/{}/$ref" ], "counterpartShipsAs": [ - "Remove-MgEntitlementManagementResourceRequestCatalogResourceRoleResource" + "Remove-MgGroupMemberDirectoryObjectByRef" ] } }, { "apiVersion": "v1.0", "modules": [ - "Identity.Governance" + "Groups" ], "method": "DELETE", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource/scopes/{}", + "uri": "/groups/{}/owners/$ref", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes/{}" + "/groups/{}/owners/{}/$ref" ], "counterpartShipsAs": [ - "Remove-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScope" + "Remove-MgGroupOwnerDirectoryObjectByRef" ] } }, { "apiVersion": "v1.0", "modules": [ - "Identity.Governance" + "Groups" ], "method": "DELETE", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource/scopes/{}/resource", + "uri": "/groups/{}/photos/{}/$value", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes/{}/resource" + "/groups/{}/photo/$value" ], "counterpartShipsAs": [ - "Remove-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResource" + "Remove-MgGroupPhotoContent" ] } }, { "apiVersion": "v1.0", "modules": [ - "Identity.Governance" + "Groups" ], "method": "DELETE", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}", + "uri": "/groups/{}/rejectedsenders/$ref", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}" + "/groups/{}/rejectedsenders/{}/$ref" ], "counterpartShipsAs": [ - "Remove-MgEntitlementManagementResourceRequestCatalogResourceScope" + "Remove-MgGroupRejectedSenderDirectoryObjectByRef" ] } }, { "apiVersion": "v1.0", "modules": [ - "Identity.Governance" + "Sites" ], "method": "DELETE", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource", + "uri": "/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource" + "/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}" ], "counterpartShipsAs": [ - "Remove-MgEntitlementManagementResourceRequestCatalogResourceScopeResource" + "Remove-MgGroupSiteTermStoreGroupSetChild" ] } }, { "apiVersion": "v1.0", "modules": [ - "Identity.Governance" + "Sites" ], "method": "DELETE", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/roles/{}", + "uri": "/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations/{}", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles/{}" + "/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations/{}" ], "counterpartShipsAs": [ - "Remove-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRole" + "Remove-MgGroupSiteTermStoreGroupSetChildRelation" ] } }, { "apiVersion": "v1.0", "modules": [ - "Identity.Governance" + "Sites" ], "method": "DELETE", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/roles/{}/resource", + "uri": "/groups/{}/sites/{}/termstore/sets/{}/children/{}/children/{}", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles/{}/resource" + "/groups/{}/sites/{}/termstore/sets/{}/children/{}" ], "counterpartShipsAs": [ - "Remove-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResource" + "Remove-MgGroupSiteTermStoreSetChild" ] } }, @@ -465,17 +465,17 @@ "Sites" ], "method": "DELETE", - "uri": "/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}", + "uri": "/groups/{}/sites/{}/termstore/sets/{}/children/{}/relations/{}", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/sites/{}/termstore/groups/{}/sets/{}/children/{}" + "/groups/{}/sites/{}/termstore/sets/{}/children/{}/children/{}/relations/{}" ], "counterpartShipsAs": [ - "Remove-MgSiteTermStoreGroupSetChild" + "Remove-MgGroupSiteTermStoreSetChildRelation" ] } }, @@ -485,17 +485,17 @@ "Sites" ], "method": "DELETE", - "uri": "/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations/{}", + "uri": "/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations/{}" + "/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}" ], "counterpartShipsAs": [ - "Remove-MgSiteTermStoreGroupSetChildRelation" + "Remove-MgGroupSiteTermStoreSetParentGroupSetChild" ] } }, @@ -505,658 +505,649 @@ "Sites" ], "method": "DELETE", - "uri": "/sites/{}/termstore/sets/{}/children/{}/children/{}", + "uri": "/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations/{}", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/sites/{}/termstore/sets/{}/children/{}" + "/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations/{}" ], "counterpartShipsAs": [ - "Remove-MgSiteTermStoreSetChild" + "Remove-MgGroupSiteTermStoreSetParentGroupSetChildRelation" ] } }, { "apiVersion": "v1.0", "modules": [ - "Sites" + "Groups" ], "method": "DELETE", - "uri": "/sites/{}/termstore/sets/{}/children/{}/relations/{}", + "uri": "/groupsettings/{}", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/sites/{}/termstore/sets/{}/children/{}/children/{}/relations/{}" + "/groups/{}/settings/{}" ], "counterpartShipsAs": [ - "Remove-MgSiteTermStoreSetChildRelation" + "Remove-MgGroupSetting" ] } }, { "apiVersion": "v1.0", "modules": [ - "Sites" + "Identity.SignIns" ], "method": "DELETE", - "uri": "/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}", + "uri": "/identity/authenticationeventsflows/{}/graph.externalusersselfservicesignupeventsflow/onattributecollection/graph.onattributecollectionexternalusersselfservicesignup/attributes/{}/$ref", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}" + "/identity/authenticationeventsflows/{}/graph.externalusersselfservicesignupeventsflow/onattributecollection/graph.onattributecollectionexternalusersselfservicesignup/attributes/$ref" ], - "counterpartShipsAs": [ - "Remove-MgSiteTermStoreSetParentGroupSetChild" - ] + "counterpartShipsAs": [] } }, { "apiVersion": "v1.0", "modules": [ - "Sites" + "Identity.SignIns" ], "method": "DELETE", - "uri": "/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations/{}", + "uri": "/identity/authenticationeventsflows/{}/graph.externalusersselfservicesignupeventsflow/onattributecollection/graph.onattributecollectionexternalusersselfservicesignup/attributes/$ref", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations/{}" + "/identity/authenticationeventsflows/{}/graph.externalusersselfservicesignupeventsflow/onattributecollection/graph.onattributecollectionexternalusersselfservicesignup/attributes/{}/$ref" ], - "counterpartShipsAs": [ - "Remove-MgSiteTermStoreSetParentGroupSetChildRelation" - ] + "counterpartShipsAs": [] } }, { "apiVersion": "v1.0", "modules": [ - "Calendar" + "Identity.SignIns" ], - "method": "GET", - "uri": "/groups/{}/calendarview", + "method": "DELETE", + "uri": "/identity/authenticationeventsflows/{}/graph.externalusersselfservicesignupeventsflow/onauthenticationmethodloadstart/graph.onauthenticationmethodloadstartexternalusersselfservicesignup/identityproviders/{}/$ref", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/groups/{}/calendar/calendarview" + "/identity/authenticationeventsflows/{}/graph.externalusersselfservicesignupeventsflow/onauthenticationmethodloadstart/graph.onauthenticationmethodloadstartexternalusersselfservicesignup/identityproviders/$ref" ], - "counterpartShipsAs": [ - "Get-MgGroupCalendarView" - ] + "counterpartShipsAs": [] } }, { "apiVersion": "v1.0", "modules": [ - "Notes" + "Identity.SignIns" ], - "method": "GET", - "uri": "/groups/{}/onenote/notebooks/{}/sectiongroups/{}/sectiongroups", + "method": "DELETE", + "uri": "/identity/authenticationeventsflows/{}/graph.externalusersselfservicesignupeventsflow/onauthenticationmethodloadstart/graph.onauthenticationmethodloadstartexternalusersselfservicesignup/identityproviders/$ref", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/groups/{}/onenote/notebooks/{}/sectiongroups" + "/identity/authenticationeventsflows/{}/graph.externalusersselfservicesignupeventsflow/onauthenticationmethodloadstart/graph.onauthenticationmethodloadstartexternalusersselfservicesignup/identityproviders/{}/$ref" ], - "counterpartShipsAs": [ - "Get-MgGroupOnenoteNotebookSectionGroup" - ] + "counterpartShipsAs": [] } }, { "apiVersion": "v1.0", "modules": [ - "Notes" + "Identity.SignIns" ], - "method": "GET", - "uri": "/groups/{}/onenote/notebooks/{}/sectiongroups/{}/sectiongroups/{}", + "method": "DELETE", + "uri": "/identity/b2xuserflows/{}/userflowidentityproviders/$ref", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/groups/{}/onenote/notebooks/{}/sectiongroups" + "/identity/b2xuserflows/{}/userflowidentityproviders/{}/$ref" ], "counterpartShipsAs": [ - "Get-MgGroupOnenoteNotebookSectionGroup" + "Remove-MgIdentityB2XUserFlowIdentityProviderBaseByRef" ] } }, { "apiVersion": "v1.0", "modules": [ - "Notes" + "Identity.Governance" ], - "method": "GET", - "uri": "/groups/{}/onenote/sectiongroups/{}/sectiongroups", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/incompatibleaccesspackages/{}/$ref", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/groups/{}/onenote/sectiongroups" + "/identitygovernance/entitlementmanagement/accesspackages/{}/incompatibleaccesspackages/$ref" ], "counterpartShipsAs": [ - "Get-MgGroupOnenoteSectionGroup" + "Remove-MgEntitlementManagementAccessPackageIncompatibleAccessPackageByRef" ] } }, { "apiVersion": "v1.0", "modules": [ - "Notes" + "Identity.Governance" ], - "method": "GET", - "uri": "/groups/{}/onenote/sectiongroups/{}/sectiongroups/{}", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/incompatiblegroups/{}/$ref", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/groups/{}/onenote/sectiongroups" + "/identitygovernance/entitlementmanagement/accesspackages/{}/incompatiblegroups/$ref" ], "counterpartShipsAs": [ - "Get-MgGroupOnenoteSectionGroup" + "Remove-MgEntitlementManagementAccessPackageIncompatibleGroupByRef" ] } }, { "apiVersion": "v1.0", "modules": [ - "Groups" + "Identity.Governance" ], - "method": "GET", - "uri": "/groups/{}/photos", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}", "action": "suppress", "evidence": { "shipsAs": [ - "Get-MgGroupPhoto" + [] ], "counterpartUris": [ - "/groups/{}/photo" + "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}" ], "counterpartShipsAs": [ - "Get-MgGroupPhoto" + "Remove-MgEntitlementManagementCatalogResourceRole" ] - }, - "deferredCrossPathMerge": true + } }, { "apiVersion": "v1.0", "modules": [ - "Sites" + "Identity.Governance" ], - "method": "GET", - "uri": "/groups/{}/sites/{}/onenote/notebooks/{}/sectiongroups/{}/sectiongroups", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/groups/{}/sites/{}/onenote/notebooks/{}/sectiongroups" + "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource" ], "counterpartShipsAs": [ - "Get-MgGroupSiteOnenoteNotebookSectionGroup" + "Remove-MgEntitlementManagementCatalogResourceRoleResource" ] } }, { "apiVersion": "v1.0", "modules": [ - "Sites" + "Identity.Governance" ], - "method": "GET", - "uri": "/groups/{}/sites/{}/onenote/notebooks/{}/sectiongroups/{}/sectiongroups/{}", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource/scopes/{}", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/groups/{}/sites/{}/onenote/notebooks/{}/sectiongroups" + "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes/{}" ], "counterpartShipsAs": [ - "Get-MgGroupSiteOnenoteNotebookSectionGroup" + "Remove-MgEntitlementManagementCatalogResourceRoleResourceScope" ] } }, { "apiVersion": "v1.0", "modules": [ - "Sites" + "Identity.Governance" ], - "method": "GET", - "uri": "/groups/{}/sites/{}/onenote/sectiongroups/{}/sectiongroups", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource/scopes/{}/resource", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/groups/{}/sites/{}/onenote/sectiongroups" + "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes/{}/resource" ], "counterpartShipsAs": [ - "Get-MgGroupSiteOnenoteSectionGroup" + "Remove-MgEntitlementManagementCatalogResourceRoleResourceScopeResource" ] } }, { "apiVersion": "v1.0", "modules": [ - "Sites" + "Identity.Governance" ], - "method": "GET", - "uri": "/groups/{}/sites/{}/onenote/sectiongroups/{}/sectiongroups/{}", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/groups/{}/sites/{}/onenote/sectiongroups" + "/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}" ], "counterpartShipsAs": [ - "Get-MgGroupSiteOnenoteSectionGroup" + "Remove-MgEntitlementManagementCatalogResourceScope" ] } }, { "apiVersion": "v1.0", "modules": [ - "Sites" + "Identity.Governance" ], - "method": "GET", - "uri": "/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/children", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children" + "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource" ], "counterpartShipsAs": [ - "Get-MgGroupSiteTermStoreGroupSetChild" + "Remove-MgEntitlementManagementCatalogResourceScopeResource" ] } }, { "apiVersion": "v1.0", "modules": [ - "Sites" + "Identity.Governance" ], - "method": "GET", - "uri": "/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}", - "action": "suppress", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/roles/{}", + "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children" + "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles/{}" ], "counterpartShipsAs": [ - "Get-MgGroupSiteTermStoreGroupSetChild" + "Remove-MgEntitlementManagementCatalogResourceScopeResourceRole" ] } }, { "apiVersion": "v1.0", "modules": [ - "Sites" + "Identity.Governance" ], - "method": "GET", - "uri": "/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/roles/{}/resource", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations" + "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles/{}/resource" ], "counterpartShipsAs": [ - "Get-MgGroupSiteTermStoreGroupSetChildRelation" + "Remove-MgEntitlementManagementCatalogResourceScopeResourceRoleResource" ] } }, { "apiVersion": "v1.0", "modules": [ - "Sites" + "Identity.Governance" ], - "method": "GET", - "uri": "/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations/{}", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/connectedorganizations/{}/externalsponsors/$ref", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations" + "/identitygovernance/entitlementmanagement/connectedorganizations/{}/externalsponsors/{}/$ref" ], "counterpartShipsAs": [ - "Get-MgGroupSiteTermStoreGroupSetChildRelation" + "Remove-MgEntitlementManagementConnectedOrganizationExternalSponsorDirectoryObjectByRef" ] } }, { "apiVersion": "v1.0", "modules": [ - "Sites" + "Identity.Governance" ], - "method": "GET", - "uri": "/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations/{}/fromterm", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/connectedorganizations/{}/internalsponsors/$ref", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations/{}/fromterm" + "/identitygovernance/entitlementmanagement/connectedorganizations/{}/internalsponsors/{}/$ref" ], "counterpartShipsAs": [ - "Get-MgGroupSiteTermStoreGroupSetChildRelationFromTerm" + "Remove-MgEntitlementManagementConnectedOrganizationInternalSponsorDirectoryObjectByRef" ] } }, { "apiVersion": "v1.0", "modules": [ - "Sites" + "Identity.Governance" ], - "method": "GET", - "uri": "/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations/{}/set", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations/{}/set" + "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}" ], "counterpartShipsAs": [ - "Get-MgGroupSiteTermStoreGroupSetChildRelationSet" + "Remove-MgEntitlementManagementResourceRequestCatalogResourceRole" ] } }, { "apiVersion": "v1.0", "modules": [ - "Sites" + "Identity.Governance" ], - "method": "GET", - "uri": "/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations/{}/toterm", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations/{}/toterm" + "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource" ], "counterpartShipsAs": [ - "Get-MgGroupSiteTermStoreGroupSetChildRelationToTerm" + "Remove-MgEntitlementManagementResourceRequestCatalogResourceRoleResource" ] } }, { "apiVersion": "v1.0", "modules": [ - "Sites" + "Identity.Governance" ], - "method": "GET", - "uri": "/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/set", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource/scopes/{}", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/set" + "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes/{}" ], "counterpartShipsAs": [ - "Get-MgGroupSiteTermStoreGroupSetChildSet" + "Remove-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScope" ] } }, { "apiVersion": "v1.0", "modules": [ - "Sites" + "Identity.Governance" ], - "method": "GET", - "uri": "/groups/{}/sites/{}/termstore/sets/{}/children/{}/children", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource/scopes/{}/resource", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/groups/{}/sites/{}/termstore/sets/{}/children" + "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes/{}/resource" ], "counterpartShipsAs": [ - "Get-MgGroupSiteTermStoreSetChild" + "Remove-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResource" ] } }, { "apiVersion": "v1.0", "modules": [ - "Sites" + "Identity.Governance" ], - "method": "GET", - "uri": "/groups/{}/sites/{}/termstore/sets/{}/children/{}/children/{}", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/groups/{}/sites/{}/termstore/sets/{}/children" + "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}" ], "counterpartShipsAs": [ - "Get-MgGroupSiteTermStoreSetChild" + "Remove-MgEntitlementManagementResourceRequestCatalogResourceScope" ] } }, { "apiVersion": "v1.0", "modules": [ - "Sites" + "Identity.Governance" ], - "method": "GET", - "uri": "/groups/{}/sites/{}/termstore/sets/{}/children/{}/relations", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/groups/{}/sites/{}/termstore/sets/{}/children/{}/children/{}/relations" + "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource" ], "counterpartShipsAs": [ - "Get-MgGroupSiteTermStoreSetChildRelation" + "Remove-MgEntitlementManagementResourceRequestCatalogResourceScopeResource" ] } }, { "apiVersion": "v1.0", "modules": [ - "Sites" + "Identity.Governance" ], - "method": "GET", - "uri": "/groups/{}/sites/{}/termstore/sets/{}/children/{}/relations/{}", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/roles/{}", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/groups/{}/sites/{}/termstore/sets/{}/children/{}/children/{}/relations" + "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles/{}" ], "counterpartShipsAs": [ - "Get-MgGroupSiteTermStoreSetChildRelation" + "Remove-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRole" ] } }, { "apiVersion": "v1.0", "modules": [ - "Sites" + "Identity.Governance" ], - "method": "GET", - "uri": "/groups/{}/sites/{}/termstore/sets/{}/children/{}/relations/{}/fromterm", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/roles/{}/resource", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/groups/{}/sites/{}/termstore/sets/{}/children/{}/children/{}/relations/{}/fromterm" + "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles/{}/resource" ], "counterpartShipsAs": [ - "Get-MgGroupSiteTermStoreSetChildRelationFromTerm" + "Remove-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResource" ] } }, { "apiVersion": "v1.0", "modules": [ - "Sites" + "Identity.SignIns" ], - "method": "GET", - "uri": "/groups/{}/sites/{}/termstore/sets/{}/children/{}/relations/{}/set", + "method": "DELETE", + "uri": "/policies/featurerolloutpolicies/{}/appliesto/$ref", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/groups/{}/sites/{}/termstore/sets/{}/children/{}/children/{}/relations/{}/set" + "/policies/featurerolloutpolicies/{}/appliesto/{}/$ref" ], "counterpartShipsAs": [ - "Get-MgGroupSiteTermStoreSetChildRelationSet" + "Remove-MgPolicyFeatureRolloutPolicyApplyToDirectoryObjectByRef" ] } }, { "apiVersion": "v1.0", "modules": [ - "Sites" + "Devices.CloudPrint" ], - "method": "GET", - "uri": "/groups/{}/sites/{}/termstore/sets/{}/children/{}/relations/{}/toterm", + "method": "DELETE", + "uri": "/print/shares/{}/allowedgroups/{}/$ref", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/groups/{}/sites/{}/termstore/sets/{}/children/{}/children/{}/relations/{}/toterm" + "/print/shares/{}/allowedgroups/$ref" ], "counterpartShipsAs": [ - "Get-MgGroupSiteTermStoreSetChildRelationToTerm" + "Remove-MgPrintShareAllowedGroupByRef" ] } }, { "apiVersion": "v1.0", "modules": [ - "Sites" + "Devices.CloudPrint" ], - "method": "GET", - "uri": "/groups/{}/sites/{}/termstore/sets/{}/children/{}/set", + "method": "DELETE", + "uri": "/print/shares/{}/allowedusers/{}/$ref", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/groups/{}/sites/{}/termstore/sets/{}/children/{}/children/{}/set" + "/print/shares/{}/allowedusers/$ref" ], "counterpartShipsAs": [ - "Get-MgGroupSiteTermStoreSetChildSet" + "Remove-MgPrintShareAllowedUserByRef" ] } }, { "apiVersion": "v1.0", "modules": [ - "Sites" + "Applications" ], - "method": "GET", - "uri": "/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children", + "method": "DELETE", + "uri": "/serviceprincipals/{}/claimsmappingpolicies/$ref", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children" + "/serviceprincipals/{}/claimsmappingpolicies/{}/$ref" ], "counterpartShipsAs": [ - "Get-MgGroupSiteTermStoreSetParentGroupSetChild" + "Remove-MgServicePrincipalClaimMappingPolicyClaimMappingPolicyByRef" ] } }, { "apiVersion": "v1.0", "modules": [ - "Sites" + "Applications" ], - "method": "GET", - "uri": "/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}", + "method": "DELETE", + "uri": "/serviceprincipals/{}/homerealmdiscoverypolicies/$ref", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children" + "/serviceprincipals/{}/homerealmdiscoverypolicies/{}/$ref" ], "counterpartShipsAs": [ - "Get-MgGroupSiteTermStoreSetParentGroupSetChild" + "Remove-MgServicePrincipalHomeRealmDiscoveryPolicyHomeRealmDiscoveryPolicyByRef" ] } }, { "apiVersion": "v1.0", "modules": [ - "Sites" + "Applications" ], - "method": "GET", - "uri": "/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations", + "method": "DELETE", + "uri": "/serviceprincipals/{}/owners/$ref", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations" + "/serviceprincipals/{}/owners/{}/$ref" ], "counterpartShipsAs": [ - "Get-MgGroupSiteTermStoreSetParentGroupSetChildRelation" + "Remove-MgServicePrincipalOwnerDirectoryObjectByRef" ] } }, @@ -1165,18 +1156,18 @@ "modules": [ "Sites" ], - "method": "GET", - "uri": "/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations/{}", + "method": "DELETE", + "uri": "/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations" + "/sites/{}/termstore/groups/{}/sets/{}/children/{}" ], "counterpartShipsAs": [ - "Get-MgGroupSiteTermStoreSetParentGroupSetChildRelation" + "Remove-MgSiteTermStoreGroupSetChild" ] } }, @@ -1185,18 +1176,18 @@ "modules": [ "Sites" ], - "method": "GET", - "uri": "/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations/{}/fromterm", + "method": "DELETE", + "uri": "/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations/{}", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations/{}/fromterm" + "/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations/{}" ], "counterpartShipsAs": [ - "Get-MgGroupSiteTermStoreSetParentGroupSetChildRelationFromTerm" + "Remove-MgSiteTermStoreGroupSetChildRelation" ] } }, @@ -1205,18 +1196,18 @@ "modules": [ "Sites" ], - "method": "GET", - "uri": "/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations/{}/set", + "method": "DELETE", + "uri": "/sites/{}/termstore/sets/{}/children/{}/children/{}", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations/{}/set" + "/sites/{}/termstore/sets/{}/children/{}" ], "counterpartShipsAs": [ - "Get-MgGroupSiteTermStoreSetParentGroupSetChildRelationSet" + "Remove-MgSiteTermStoreSetChild" ] } }, @@ -1225,18 +1216,18 @@ "modules": [ "Sites" ], - "method": "GET", - "uri": "/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations/{}/toterm", + "method": "DELETE", + "uri": "/sites/{}/termstore/sets/{}/children/{}/relations/{}", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations/{}/toterm" + "/sites/{}/termstore/sets/{}/children/{}/children/{}/relations/{}" ], "counterpartShipsAs": [ - "Get-MgGroupSiteTermStoreSetParentGroupSetChildRelationToTerm" + "Remove-MgSiteTermStoreSetChildRelation" ] } }, @@ -1245,799 +1236,797 @@ "modules": [ "Sites" ], - "method": "GET", - "uri": "/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/set", + "method": "DELETE", + "uri": "/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/set" + "/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}" ], "counterpartShipsAs": [ - "Get-MgGroupSiteTermStoreSetParentGroupSetChildSet" + "Remove-MgSiteTermStoreSetParentGroupSetChild" ] } }, { "apiVersion": "v1.0", "modules": [ - "Groups" + "Sites" ], - "method": "GET", - "uri": "/groupsettings", + "method": "DELETE", + "uri": "/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations/{}", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/groups/{}/settings" + "/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations/{}" ], "counterpartShipsAs": [ - "Get-MgGroupSetting" + "Remove-MgSiteTermStoreSetParentGroupSetChildRelation" ] } }, { "apiVersion": "v1.0", "modules": [ - "Groups" + "Users" ], - "method": "GET", - "uri": "/groupsettings/{}", + "method": "DELETE", + "uri": "/users/{}/photos/{}/$value", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/groups/{}/settings" + "/users/{}/photo/$value" ], "counterpartShipsAs": [ - "Get-MgGroupSetting" + "Remove-MgUserPhotoContent" ] } }, { "apiVersion": "v1.0", "modules": [ - "Identity.Governance" + "Education" ], "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles", + "uri": "/education/classes/{}/assignments/{}/categories/$count", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles" + "/education/classes/{}/assignmentcategories/$count" ], "counterpartShipsAs": [ - "Get-MgEntitlementManagementCatalogResourceRole" + "Get-MgEducationClassAssignmentCategoryCount" ] } }, { "apiVersion": "v1.0", "modules": [ - "Identity.Governance" + "Education" ], "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}", + "uri": "/education/classes/{}/assignments/{}/categories/delta", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles" + "/education/classes/{}/assignmentcategories/delta" ], "counterpartShipsAs": [ - "Get-MgEntitlementManagementCatalogResourceRole" + "Get-MgEducationClassAssignmentCategoryDelta" ] } }, { "apiVersion": "v1.0", "modules": [ - "Identity.Governance" + "Calendar" ], "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource", + "uri": "/groups/{}/calendar/calendarview/delta", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource" + "/groups/{}/calendarview/delta" ], - "counterpartShipsAs": [ - "Get-MgEntitlementManagementCatalogResourceRoleResource" - ] + "counterpartShipsAs": [] } }, { "apiVersion": "v1.0", "modules": [ - "Identity.Governance" + "Calendar" ], "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource/environment", + "uri": "/groups/{}/calendarview", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/environment" + "/groups/{}/calendar/calendarview" ], "counterpartShipsAs": [ - "Get-MgEntitlementManagementCatalogResourceRoleResourceEnvironment" + "Get-MgGroupCalendarView" ] } }, { "apiVersion": "v1.0", "modules": [ - "Identity.Governance" + "Calendar" ], "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource/scopes", + "uri": "/groups/{}/calendarview/delta", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes" + "/groups/{}/calendar/calendarview/delta" ], - "counterpartShipsAs": [ - "Get-MgEntitlementManagementCatalogResourceRoleResourceScope" - ] + "counterpartShipsAs": [] } }, { "apiVersion": "v1.0", "modules": [ - "Identity.Governance" + "Notes" ], "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource/scopes/{}", + "uri": "/groups/{}/onenote/notebooks/{}/sectiongroups/{}/sectiongroups", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes" + "/groups/{}/onenote/notebooks/{}/sectiongroups" ], "counterpartShipsAs": [ - "Get-MgEntitlementManagementCatalogResourceRoleResourceScope" + "Get-MgGroupOnenoteNotebookSectionGroup" ] } }, { "apiVersion": "v1.0", "modules": [ - "Identity.Governance" + "Notes" ], "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource/scopes/{}/resource", + "uri": "/groups/{}/onenote/notebooks/{}/sectiongroups/{}/sectiongroups/{}", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes/{}/resource" + "/groups/{}/onenote/notebooks/{}/sectiongroups" ], "counterpartShipsAs": [ - "Get-MgEntitlementManagementCatalogResourceRoleResourceScopeResource" + "Get-MgGroupOnenoteNotebookSectionGroup" ] } }, { "apiVersion": "v1.0", "modules": [ - "Identity.Governance" + "Notes" ], "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource/scopes/{}/resource/environment", + "uri": "/groups/{}/onenote/notebooks/{}/sectiongroups/$count", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes/{}/resource/environment" + "/groups/{}/onenote/notebooks/{}/sectiongroups/{}/sectiongroups/$count" ], "counterpartShipsAs": [ - "Get-MgEntitlementManagementCatalogResourceRoleResourceScopeResourceEnvironment" + "Get-MgGroupOnenoteNotebookSectionGroupCount" ] } }, { "apiVersion": "v1.0", "modules": [ - "Identity.Governance" + "Notes" ], "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes", + "uri": "/groups/{}/onenote/sectiongroups/{}/sectiongroups", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}", - "/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes", - "/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}" + "/groups/{}/onenote/sectiongroups" ], "counterpartShipsAs": [ - "Get-MgEntitlementManagementCatalogResourceScope" + "Get-MgGroupOnenoteSectionGroup" ] } }, { "apiVersion": "v1.0", "modules": [ - "Identity.Governance" + "Notes" ], "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}", + "uri": "/groups/{}/onenote/sectiongroups/{}/sectiongroups/{}", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes" + "/groups/{}/onenote/sectiongroups" ], - "counterpartShipsAs": [] + "counterpartShipsAs": [ + "Get-MgGroupOnenoteSectionGroup" + ] } }, { "apiVersion": "v1.0", "modules": [ - "Identity.Governance" + "Notes" ], "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource", + "uri": "/groups/{}/onenote/sectiongroups/$count", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource" + "/groups/{}/onenote/sectiongroups/{}/sectiongroups/$count" ], "counterpartShipsAs": [ - "Get-MgEntitlementManagementCatalogResourceScopeResource" + "Get-MgGroupOnenoteSectionGroupCount" ] } }, { "apiVersion": "v1.0", "modules": [ - "Identity.Governance" + "Groups" ], "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/environment", + "uri": "/groups/{}/photos", "action": "suppress", "evidence": { "shipsAs": [ - null + [ + "Get-MgGroupPhoto" + ] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/environment" + "/groups/{}/photo" ], "counterpartShipsAs": [ - "Get-MgEntitlementManagementCatalogResourceScopeResourceEnvironment" + "Get-MgGroupPhoto" ] - } + }, + "deferredCrossPathMerge": true }, { "apiVersion": "v1.0", "modules": [ - "Identity.Governance" + "Groups" ], "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/roles", + "uri": "/groups/{}/photos/{}/$value", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles" + "/groups/{}/photo/$value" ], "counterpartShipsAs": [ - "Get-MgEntitlementManagementCatalogResourceScopeResourceRole" + "Get-MgGroupPhotoContent" ] } }, { "apiVersion": "v1.0", "modules": [ - "Identity.Governance" + "Sites" ], "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/roles/{}", + "uri": "/groups/{}/sites/{}/onenote/notebooks/{}/sectiongroups/{}/sectiongroups", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles" + "/groups/{}/sites/{}/onenote/notebooks/{}/sectiongroups" ], "counterpartShipsAs": [ - "Get-MgEntitlementManagementCatalogResourceScopeResourceRole" + "Get-MgGroupSiteOnenoteNotebookSectionGroup" ] } }, { "apiVersion": "v1.0", "modules": [ - "Identity.Governance" + "Sites" ], "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/roles/{}/resource", + "uri": "/groups/{}/sites/{}/onenote/notebooks/{}/sectiongroups/{}/sectiongroups/{}", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles/{}/resource" + "/groups/{}/sites/{}/onenote/notebooks/{}/sectiongroups" ], "counterpartShipsAs": [ - "Get-MgEntitlementManagementCatalogResourceScopeResourceRoleResource" + "Get-MgGroupSiteOnenoteNotebookSectionGroup" ] } }, { "apiVersion": "v1.0", "modules": [ - "Identity.Governance" + "Sites" ], "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/roles/{}/resource/environment", + "uri": "/groups/{}/sites/{}/onenote/notebooks/{}/sectiongroups/$count", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles/{}/resource/environment" + "/groups/{}/sites/{}/onenote/notebooks/{}/sectiongroups/{}/sectiongroups/$count" ], "counterpartShipsAs": [ - "Get-MgEntitlementManagementCatalogResourceScopeResourceRoleResourceEnvironment" + "Get-MgGroupSiteOnenoteNotebookSectionGroupCount" ] } }, { "apiVersion": "v1.0", "modules": [ - "Identity.Governance" + "Sites" ], "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles", + "uri": "/groups/{}/sites/{}/onenote/sectiongroups/{}/sectiongroups", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles" + "/groups/{}/sites/{}/onenote/sectiongroups" ], "counterpartShipsAs": [ - "Get-MgEntitlementManagementResourceRequestCatalogResourceRole" + "Get-MgGroupSiteOnenoteSectionGroup" ] } }, { "apiVersion": "v1.0", "modules": [ - "Identity.Governance" + "Sites" ], "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}", + "uri": "/groups/{}/sites/{}/onenote/sectiongroups/{}/sectiongroups/{}", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles" + "/groups/{}/sites/{}/onenote/sectiongroups" ], "counterpartShipsAs": [ - "Get-MgEntitlementManagementResourceRequestCatalogResourceRole" + "Get-MgGroupSiteOnenoteSectionGroup" ] } }, { "apiVersion": "v1.0", "modules": [ - "Identity.Governance" + "Sites" ], "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource", + "uri": "/groups/{}/sites/{}/onenote/sectiongroups/$count", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource" + "/groups/{}/sites/{}/onenote/sectiongroups/{}/sectiongroups/$count" ], "counterpartShipsAs": [ - "Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResource" + "Get-MgGroupSiteOnenoteSectionGroupCount" ] } }, { "apiVersion": "v1.0", "modules": [ - "Identity.Governance" + "Sites" ], "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource/environment", + "uri": "/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/children", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/environment" + "/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children" ], "counterpartShipsAs": [ - "Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceEnvironment" + "Get-MgGroupSiteTermStoreGroupSetChild" ] } }, { "apiVersion": "v1.0", "modules": [ - "Identity.Governance" + "Sites" ], "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource/scopes", + "uri": "/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes" + "/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children" ], "counterpartShipsAs": [ - "Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScope" + "Get-MgGroupSiteTermStoreGroupSetChild" ] } }, { "apiVersion": "v1.0", "modules": [ - "Identity.Governance" + "Sites" ], "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource/scopes/{}", + "uri": "/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes" + "/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations" ], "counterpartShipsAs": [ - "Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScope" + "Get-MgGroupSiteTermStoreGroupSetChildRelation" ] } }, { "apiVersion": "v1.0", "modules": [ - "Identity.Governance" + "Sites" ], "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource/scopes/{}/resource", + "uri": "/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations/{}", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes/{}/resource" + "/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations" ], "counterpartShipsAs": [ - "Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResource" + "Get-MgGroupSiteTermStoreGroupSetChildRelation" ] } }, { "apiVersion": "v1.0", "modules": [ - "Identity.Governance" + "Sites" ], "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource/scopes/{}/resource/environment", + "uri": "/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations/{}/fromterm", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes/{}/resource/environment" + "/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations/{}/fromterm" ], "counterpartShipsAs": [ - "Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceEnvironment" + "Get-MgGroupSiteTermStoreGroupSetChildRelationFromTerm" ] } }, { "apiVersion": "v1.0", "modules": [ - "Identity.Governance" + "Sites" ], "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes", + "uri": "/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations/{}/set", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}", - "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes", - "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}" + "/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations/{}/set" ], "counterpartShipsAs": [ - "Get-MgEntitlementManagementResourceRequestCatalogResourceScope" + "Get-MgGroupSiteTermStoreGroupSetChildRelationSet" ] } }, { "apiVersion": "v1.0", "modules": [ - "Identity.Governance" + "Sites" ], "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}", + "uri": "/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations/{}/toterm", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes" + "/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations/{}/toterm" ], - "counterpartShipsAs": [] + "counterpartShipsAs": [ + "Get-MgGroupSiteTermStoreGroupSetChildRelationToTerm" + ] } }, { "apiVersion": "v1.0", "modules": [ - "Identity.Governance" + "Sites" ], "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource", + "uri": "/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations/$count", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource" + "/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations/$count" ], "counterpartShipsAs": [ - "Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResource" + "Get-MgGroupSiteTermStoreGroupSetChildRelationCount" ] } }, { "apiVersion": "v1.0", "modules": [ - "Identity.Governance" + "Sites" ], "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/environment", + "uri": "/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/set", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/environment" + "/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/set" ], "counterpartShipsAs": [ - "Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceEnvironment" + "Get-MgGroupSiteTermStoreGroupSetChildSet" ] } }, { "apiVersion": "v1.0", "modules": [ - "Identity.Governance" + "Sites" ], "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/roles", + "uri": "/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/$count", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles" + "/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/$count" ], "counterpartShipsAs": [ - "Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRole" + "Get-MgGroupSiteTermStoreGroupSetChildCount" ] } }, { "apiVersion": "v1.0", "modules": [ - "Identity.Governance" + "Sites" ], "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/roles/{}", + "uri": "/groups/{}/sites/{}/termstore/sets/{}/children/{}/children", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles" + "/groups/{}/sites/{}/termstore/sets/{}/children" ], "counterpartShipsAs": [ - "Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRole" + "Get-MgGroupSiteTermStoreSetChild" ] } }, { "apiVersion": "v1.0", "modules": [ - "Identity.Governance" + "Sites" ], "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/roles/{}/resource", + "uri": "/groups/{}/sites/{}/termstore/sets/{}/children/{}/children/{}", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles/{}/resource" + "/groups/{}/sites/{}/termstore/sets/{}/children" ], "counterpartShipsAs": [ - "Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResource" + "Get-MgGroupSiteTermStoreSetChild" ] } }, { "apiVersion": "v1.0", "modules": [ - "Identity.Governance" + "Sites" ], "method": "GET", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/roles/{}/resource/environment", + "uri": "/groups/{}/sites/{}/termstore/sets/{}/children/{}/relations", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles/{}/resource/environment" + "/groups/{}/sites/{}/termstore/sets/{}/children/{}/children/{}/relations" ], "counterpartShipsAs": [ - "Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceEnvironment" + "Get-MgGroupSiteTermStoreSetChildRelation" ] } }, { "apiVersion": "v1.0", "modules": [ - "Files" + "Sites" ], "method": "GET", - "uri": "/shares/{}/list/items", + "uri": "/groups/{}/sites/{}/termstore/sets/{}/children/{}/relations/{}", "action": "suppress", "evidence": { "shipsAs": [ - "Get-MgShareListItem" + [] ], "counterpartUris": [ - "/shares/{}/listitem" + "/groups/{}/sites/{}/termstore/sets/{}/children/{}/children/{}/relations" ], "counterpartShipsAs": [ - "Get-MgShareListItem" + "Get-MgGroupSiteTermStoreSetChildRelation" ] - }, - "deferredCrossPathMerge": true + } }, { "apiVersion": "v1.0", "modules": [ - "Notes" + "Sites" ], "method": "GET", - "uri": "/sites/{}/onenote/notebooks/{}/sectiongroups/{}/sectiongroups", + "uri": "/groups/{}/sites/{}/termstore/sets/{}/children/{}/relations/{}/fromterm", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/sites/{}/onenote/notebooks/{}/sectiongroups" + "/groups/{}/sites/{}/termstore/sets/{}/children/{}/children/{}/relations/{}/fromterm" ], "counterpartShipsAs": [ - "Get-MgSiteOnenoteNotebookSectionGroup" + "Get-MgGroupSiteTermStoreSetChildRelationFromTerm" ] } }, { "apiVersion": "v1.0", "modules": [ - "Notes" + "Sites" ], "method": "GET", - "uri": "/sites/{}/onenote/notebooks/{}/sectiongroups/{}/sectiongroups/{}", + "uri": "/groups/{}/sites/{}/termstore/sets/{}/children/{}/relations/{}/set", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/sites/{}/onenote/notebooks/{}/sectiongroups" + "/groups/{}/sites/{}/termstore/sets/{}/children/{}/children/{}/relations/{}/set" ], "counterpartShipsAs": [ - "Get-MgSiteOnenoteNotebookSectionGroup" + "Get-MgGroupSiteTermStoreSetChildRelationSet" ] } }, { "apiVersion": "v1.0", "modules": [ - "Notes" + "Sites" ], "method": "GET", - "uri": "/sites/{}/onenote/sectiongroups/{}/sectiongroups", + "uri": "/groups/{}/sites/{}/termstore/sets/{}/children/{}/relations/{}/toterm", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/sites/{}/onenote/sectiongroups" + "/groups/{}/sites/{}/termstore/sets/{}/children/{}/children/{}/relations/{}/toterm" ], "counterpartShipsAs": [ - "Get-MgSiteOnenoteSectionGroup" + "Get-MgGroupSiteTermStoreSetChildRelationToTerm" ] } }, { "apiVersion": "v1.0", "modules": [ - "Notes" + "Sites" ], "method": "GET", - "uri": "/sites/{}/onenote/sectiongroups/{}/sectiongroups/{}", + "uri": "/groups/{}/sites/{}/termstore/sets/{}/children/{}/relations/$count", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/sites/{}/onenote/sectiongroups" + "/groups/{}/sites/{}/termstore/sets/{}/children/{}/children/{}/relations/$count" ], "counterpartShipsAs": [ - "Get-MgSiteOnenoteSectionGroup" + "Get-MgGroupSiteTermStoreSetChildRelationCount" ] } }, @@ -2047,17 +2036,17 @@ "Sites" ], "method": "GET", - "uri": "/sites/{}/termstore/groups/{}/sets/{}/children/{}/children", + "uri": "/groups/{}/sites/{}/termstore/sets/{}/children/{}/set", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/sites/{}/termstore/groups/{}/sets/{}/children" + "/groups/{}/sites/{}/termstore/sets/{}/children/{}/children/{}/set" ], "counterpartShipsAs": [ - "Get-MgSiteTermStoreGroupSetChild" + "Get-MgGroupSiteTermStoreSetChildSet" ] } }, @@ -2067,17 +2056,17 @@ "Sites" ], "method": "GET", - "uri": "/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}", + "uri": "/groups/{}/sites/{}/termstore/sets/{}/children/$count", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/sites/{}/termstore/groups/{}/sets/{}/children" + "/groups/{}/sites/{}/termstore/sets/{}/children/{}/children/$count" ], "counterpartShipsAs": [ - "Get-MgSiteTermStoreGroupSetChild" + "Get-MgGroupSiteTermStoreSetChildCount" ] } }, @@ -2087,17 +2076,17 @@ "Sites" ], "method": "GET", - "uri": "/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations", + "uri": "/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations" + "/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children" ], "counterpartShipsAs": [ - "Get-MgSiteTermStoreGroupSetChildRelation" + "Get-MgGroupSiteTermStoreSetParentGroupSetChild" ] } }, @@ -2107,17 +2096,17 @@ "Sites" ], "method": "GET", - "uri": "/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations/{}", + "uri": "/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations" + "/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children" ], "counterpartShipsAs": [ - "Get-MgSiteTermStoreGroupSetChildRelation" + "Get-MgGroupSiteTermStoreSetParentGroupSetChild" ] } }, @@ -2127,17 +2116,17 @@ "Sites" ], "method": "GET", - "uri": "/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations/{}/fromterm", + "uri": "/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations/{}/fromterm" + "/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations" ], "counterpartShipsAs": [ - "Get-MgSiteTermStoreGroupSetChildRelationFromTerm" + "Get-MgGroupSiteTermStoreSetParentGroupSetChildRelation" ] } }, @@ -2147,17 +2136,17 @@ "Sites" ], "method": "GET", - "uri": "/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations/{}/set", + "uri": "/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations/{}", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations/{}/set" + "/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations" ], "counterpartShipsAs": [ - "Get-MgSiteTermStoreGroupSetChildRelationSet" + "Get-MgGroupSiteTermStoreSetParentGroupSetChildRelation" ] } }, @@ -2167,17 +2156,17 @@ "Sites" ], "method": "GET", - "uri": "/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations/{}/toterm", + "uri": "/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations/{}/fromterm", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations/{}/toterm" + "/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations/{}/fromterm" ], "counterpartShipsAs": [ - "Get-MgSiteTermStoreGroupSetChildRelationToTerm" + "Get-MgGroupSiteTermStoreSetParentGroupSetChildRelationFromTerm" ] } }, @@ -2187,17 +2176,17 @@ "Sites" ], "method": "GET", - "uri": "/sites/{}/termstore/groups/{}/sets/{}/children/{}/set", + "uri": "/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations/{}/set", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/set" + "/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations/{}/set" ], "counterpartShipsAs": [ - "Get-MgSiteTermStoreGroupSetChildSet" + "Get-MgGroupSiteTermStoreSetParentGroupSetChildRelationSet" ] } }, @@ -2207,17 +2196,17 @@ "Sites" ], "method": "GET", - "uri": "/sites/{}/termstore/sets/{}/children/{}/children", + "uri": "/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations/{}/toterm", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/sites/{}/termstore/sets/{}/children" + "/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations/{}/toterm" ], "counterpartShipsAs": [ - "Get-MgSiteTermStoreSetChild" + "Get-MgGroupSiteTermStoreSetParentGroupSetChildRelationToTerm" ] } }, @@ -2227,17 +2216,17 @@ "Sites" ], "method": "GET", - "uri": "/sites/{}/termstore/sets/{}/children/{}/children/{}", + "uri": "/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations/$count", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/sites/{}/termstore/sets/{}/children" + "/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations/$count" ], "counterpartShipsAs": [ - "Get-MgSiteTermStoreSetChild" + "Get-MgGroupSiteTermStoreSetParentGroupSetChildRelationCount" ] } }, @@ -2247,17 +2236,17 @@ "Sites" ], "method": "GET", - "uri": "/sites/{}/termstore/sets/{}/children/{}/relations", + "uri": "/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/set", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/sites/{}/termstore/sets/{}/children/{}/children/{}/relations" + "/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/set" ], "counterpartShipsAs": [ - "Get-MgSiteTermStoreSetChildRelation" + "Get-MgGroupSiteTermStoreSetParentGroupSetChildSet" ] } }, @@ -2267,517 +2256,517 @@ "Sites" ], "method": "GET", - "uri": "/sites/{}/termstore/sets/{}/children/{}/relations/{}", + "uri": "/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/$count", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/sites/{}/termstore/sets/{}/children/{}/children/{}/relations" + "/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/$count" ], "counterpartShipsAs": [ - "Get-MgSiteTermStoreSetChildRelation" + "Get-MgGroupSiteTermStoreSetParentGroupSetChildCount" ] } }, { "apiVersion": "v1.0", "modules": [ - "Sites" + "Groups" ], "method": "GET", - "uri": "/sites/{}/termstore/sets/{}/children/{}/relations/{}/fromterm", + "uri": "/groupsettings", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/sites/{}/termstore/sets/{}/children/{}/children/{}/relations/{}/fromterm" + "/groups/{}/settings" ], "counterpartShipsAs": [ - "Get-MgSiteTermStoreSetChildRelationFromTerm" + "Get-MgGroupSetting" ] } }, { "apiVersion": "v1.0", "modules": [ - "Sites" + "Groups" ], "method": "GET", - "uri": "/sites/{}/termstore/sets/{}/children/{}/relations/{}/set", + "uri": "/groupsettings/{}", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/sites/{}/termstore/sets/{}/children/{}/children/{}/relations/{}/set" + "/groups/{}/settings" ], "counterpartShipsAs": [ - "Get-MgSiteTermStoreSetChildRelationSet" + "Get-MgGroupSetting" ] } }, { "apiVersion": "v1.0", "modules": [ - "Sites" + "Groups" ], "method": "GET", - "uri": "/sites/{}/termstore/sets/{}/children/{}/relations/{}/toterm", + "uri": "/groupsettings/$count", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/sites/{}/termstore/sets/{}/children/{}/children/{}/relations/{}/toterm" + "/groups/{}/settings/$count" ], "counterpartShipsAs": [ - "Get-MgSiteTermStoreSetChildRelationToTerm" + "Get-MgGroupSettingCount" ] } }, { "apiVersion": "v1.0", "modules": [ - "Sites" + "Identity.Governance" ], "method": "GET", - "uri": "/sites/{}/termstore/sets/{}/children/{}/set", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/sites/{}/termstore/sets/{}/children/{}/children/{}/set" + "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles" ], "counterpartShipsAs": [ - "Get-MgSiteTermStoreSetChildSet" + "Get-MgEntitlementManagementCatalogResourceRole" ] } }, { "apiVersion": "v1.0", "modules": [ - "Sites" + "Identity.Governance" ], "method": "GET", - "uri": "/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children" + "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles" ], "counterpartShipsAs": [ - "Get-MgSiteTermStoreSetParentGroupSetChild" + "Get-MgEntitlementManagementCatalogResourceRole" ] } }, { "apiVersion": "v1.0", "modules": [ - "Sites" + "Identity.Governance" ], "method": "GET", - "uri": "/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children" + "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource" ], "counterpartShipsAs": [ - "Get-MgSiteTermStoreSetParentGroupSetChild" + "Get-MgEntitlementManagementCatalogResourceRoleResource" ] } }, { "apiVersion": "v1.0", "modules": [ - "Sites" + "Identity.Governance" ], "method": "GET", - "uri": "/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource/environment", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations" + "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/environment" ], "counterpartShipsAs": [ - "Get-MgSiteTermStoreSetParentGroupSetChildRelation" + "Get-MgEntitlementManagementCatalogResourceRoleResourceEnvironment" ] } }, { "apiVersion": "v1.0", "modules": [ - "Sites" + "Identity.Governance" ], "method": "GET", - "uri": "/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations/{}", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource/scopes", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations" + "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes" ], "counterpartShipsAs": [ - "Get-MgSiteTermStoreSetParentGroupSetChildRelation" + "Get-MgEntitlementManagementCatalogResourceRoleResourceScope" ] } }, { "apiVersion": "v1.0", "modules": [ - "Sites" + "Identity.Governance" ], "method": "GET", - "uri": "/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations/{}/fromterm", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource/scopes/{}", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations/{}/fromterm" + "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes" ], "counterpartShipsAs": [ - "Get-MgSiteTermStoreSetParentGroupSetChildRelationFromTerm" + "Get-MgEntitlementManagementCatalogResourceRoleResourceScope" ] } }, { "apiVersion": "v1.0", "modules": [ - "Sites" + "Identity.Governance" ], "method": "GET", - "uri": "/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations/{}/set", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource/scopes/{}/resource", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations/{}/set" + "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes/{}/resource" ], "counterpartShipsAs": [ - "Get-MgSiteTermStoreSetParentGroupSetChildRelationSet" + "Get-MgEntitlementManagementCatalogResourceRoleResourceScopeResource" ] } }, { "apiVersion": "v1.0", "modules": [ - "Sites" + "Identity.Governance" ], "method": "GET", - "uri": "/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations/{}/toterm", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource/scopes/{}/resource/environment", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations/{}/toterm" + "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes/{}/resource/environment" ], "counterpartShipsAs": [ - "Get-MgSiteTermStoreSetParentGroupSetChildRelationToTerm" + "Get-MgEntitlementManagementCatalogResourceRoleResourceScopeResourceEnvironment" ] } }, { "apiVersion": "v1.0", "modules": [ - "Sites" + "Identity.Governance" ], "method": "GET", - "uri": "/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/set", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource/scopes/$count", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/set" + "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes/$count" ], "counterpartShipsAs": [ - "Get-MgSiteTermStoreSetParentGroupSetChildSet" + "Get-MgEntitlementManagementCatalogResourceRoleResourceScopeCount" ] } }, { "apiVersion": "v1.0", "modules": [ - "Calendar" + "Identity.Governance" ], "method": "GET", - "uri": "/users/{}/calendars/{}/calendarview", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/$count", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/users/{}/calendar/calendarview" + "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/$count" ], "counterpartShipsAs": [ - "Get-MgUserCalendarView" + "Get-MgEntitlementManagementCatalogResourceRoleCount" ] } }, { "apiVersion": "v1.0", "modules": [ - "Calendar" + "Identity.Governance" ], "method": "GET", - "uri": "/users/{}/calendarview", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/users/{}/calendar/calendarview" + "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}", + "/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes", + "/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}" ], "counterpartShipsAs": [ - "Get-MgUserCalendarView" + "Get-MgEntitlementManagementCatalogResourceScope" ] } }, { "apiVersion": "v1.0", "modules": [ - "Notes" + "Identity.Governance" ], "method": "GET", - "uri": "/users/{}/onenote/notebooks/{}/sectiongroups/{}/sectiongroups", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/users/{}/onenote/notebooks/{}/sectiongroups" + "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes" ], - "counterpartShipsAs": [ - "Get-MgUserOnenoteNotebookSectionGroup" - ] + "counterpartShipsAs": [] } }, { "apiVersion": "v1.0", "modules": [ - "Notes" + "Identity.Governance" ], "method": "GET", - "uri": "/users/{}/onenote/notebooks/{}/sectiongroups/{}/sectiongroups/{}", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/users/{}/onenote/notebooks/{}/sectiongroups" + "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource" ], "counterpartShipsAs": [ - "Get-MgUserOnenoteNotebookSectionGroup" + "Get-MgEntitlementManagementCatalogResourceScopeResource" ] } }, { "apiVersion": "v1.0", "modules": [ - "Notes" + "Identity.Governance" ], "method": "GET", - "uri": "/users/{}/onenote/sectiongroups/{}/sectiongroups", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/environment", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/users/{}/onenote/sectiongroups" + "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/environment" ], "counterpartShipsAs": [ - "Get-MgUserOnenoteSectionGroup" + "Get-MgEntitlementManagementCatalogResourceScopeResourceEnvironment" ] } }, { "apiVersion": "v1.0", "modules": [ - "Notes" + "Identity.Governance" ], "method": "GET", - "uri": "/users/{}/onenote/sectiongroups/{}/sectiongroups/{}", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/roles", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/users/{}/onenote/sectiongroups" + "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles" ], "counterpartShipsAs": [ - "Get-MgUserOnenoteSectionGroup" + "Get-MgEntitlementManagementCatalogResourceScopeResourceRole" ] } }, { "apiVersion": "v1.0", "modules": [ - "Sites" + "Identity.Governance" ], - "method": "PATCH", - "uri": "/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/roles/{}", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}" + "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles" ], "counterpartShipsAs": [ - "Update-MgGroupSiteTermStoreGroupSetChild" + "Get-MgEntitlementManagementCatalogResourceScopeResourceRole" ] } }, { "apiVersion": "v1.0", "modules": [ - "Sites" + "Identity.Governance" ], - "method": "PATCH", - "uri": "/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations/{}", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/roles/{}/resource", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations/{}" + "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles/{}/resource" ], "counterpartShipsAs": [ - "Update-MgGroupSiteTermStoreGroupSetChildRelation" + "Get-MgEntitlementManagementCatalogResourceScopeResourceRoleResource" ] } }, { "apiVersion": "v1.0", "modules": [ - "Sites" + "Identity.Governance" ], - "method": "PATCH", - "uri": "/groups/{}/sites/{}/termstore/sets/{}/children/{}/children/{}", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/roles/{}/resource/environment", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/groups/{}/sites/{}/termstore/sets/{}/children/{}" + "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles/{}/resource/environment" ], "counterpartShipsAs": [ - "Update-MgGroupSiteTermStoreSetChild" + "Get-MgEntitlementManagementCatalogResourceScopeResourceRoleResourceEnvironment" ] } }, { "apiVersion": "v1.0", "modules": [ - "Sites" + "Identity.Governance" ], - "method": "PATCH", - "uri": "/groups/{}/sites/{}/termstore/sets/{}/children/{}/relations/{}", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/roles/$count", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/groups/{}/sites/{}/termstore/sets/{}/children/{}/children/{}/relations/{}" + "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles/$count" ], "counterpartShipsAs": [ - "Update-MgGroupSiteTermStoreSetChildRelation" + "Get-MgEntitlementManagementCatalogResourceScopeResourceRoleCount" ] } }, { "apiVersion": "v1.0", "modules": [ - "Sites" + "Identity.Governance" ], - "method": "PATCH", - "uri": "/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/$count", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}" + "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/$count" ], "counterpartShipsAs": [ - "Update-MgGroupSiteTermStoreSetParentGroupSetChild" + "Get-MgEntitlementManagementCatalogResourceScopeCount" ] } }, { "apiVersion": "v1.0", "modules": [ - "Sites" + "Identity.Governance" ], - "method": "PATCH", - "uri": "/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations/{}", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations/{}" + "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles" ], "counterpartShipsAs": [ - "Update-MgGroupSiteTermStoreSetParentGroupSetChildRelation" + "Get-MgEntitlementManagementResourceRequestCatalogResourceRole" ] } }, { "apiVersion": "v1.0", "modules": [ - "Groups" + "Identity.Governance" ], - "method": "PATCH", - "uri": "/groupsettings/{}", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/groups/{}/settings/{}" + "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles" ], "counterpartShipsAs": [ - "Update-MgGroupSetting" + "Get-MgEntitlementManagementResourceRequestCatalogResourceRole" ] } }, @@ -2786,17 +2775,19 @@ "modules": [ "Identity.Governance" ], - "method": "PATCH", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource" + "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource" ], - "counterpartShipsAs": [] + "counterpartShipsAs": [ + "Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResource" + ] } }, { @@ -2804,17 +2795,1857 @@ "modules": [ "Identity.Governance" ], - "method": "PATCH", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes/{}/resource", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource/environment", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource/scopes/{}/resource" + "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/environment" ], - "counterpartShipsAs": [] + "counterpartShipsAs": [ + "Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceEnvironment" + ] + } + }, + { + "apiVersion": "v1.0", + "modules": [ + "Identity.Governance" + ], + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource/scopes", + "action": "suppress", + "evidence": { + "shipsAs": [ + [] + ], + "counterpartUris": [ + "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes" + ], + "counterpartShipsAs": [ + "Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScope" + ] + } + }, + { + "apiVersion": "v1.0", + "modules": [ + "Identity.Governance" + ], + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource/scopes/{}", + "action": "suppress", + "evidence": { + "shipsAs": [ + [] + ], + "counterpartUris": [ + "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes" + ], + "counterpartShipsAs": [ + "Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScope" + ] + } + }, + { + "apiVersion": "v1.0", + "modules": [ + "Identity.Governance" + ], + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource/scopes/{}/resource", + "action": "suppress", + "evidence": { + "shipsAs": [ + [] + ], + "counterpartUris": [ + "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes/{}/resource" + ], + "counterpartShipsAs": [ + "Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResource" + ] + } + }, + { + "apiVersion": "v1.0", + "modules": [ + "Identity.Governance" + ], + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource/scopes/{}/resource/environment", + "action": "suppress", + "evidence": { + "shipsAs": [ + [] + ], + "counterpartUris": [ + "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes/{}/resource/environment" + ], + "counterpartShipsAs": [ + "Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceEnvironment" + ] + } + }, + { + "apiVersion": "v1.0", + "modules": [ + "Identity.Governance" + ], + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource/scopes/$count", + "action": "suppress", + "evidence": { + "shipsAs": [ + [] + ], + "counterpartUris": [ + "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes/$count" + ], + "counterpartShipsAs": [ + "Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeCount" + ] + } + }, + { + "apiVersion": "v1.0", + "modules": [ + "Identity.Governance" + ], + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/$count", + "action": "suppress", + "evidence": { + "shipsAs": [ + [] + ], + "counterpartUris": [ + "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/$count" + ], + "counterpartShipsAs": [ + "Get-MgEntitlementManagementResourceRequestCatalogResourceRoleCount" + ] + } + }, + { + "apiVersion": "v1.0", + "modules": [ + "Identity.Governance" + ], + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes", + "action": "suppress", + "evidence": { + "shipsAs": [ + [] + ], + "counterpartUris": [ + "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}", + "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes", + "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}" + ], + "counterpartShipsAs": [ + "Get-MgEntitlementManagementResourceRequestCatalogResourceScope" + ] + } + }, + { + "apiVersion": "v1.0", + "modules": [ + "Identity.Governance" + ], + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}", + "action": "suppress", + "evidence": { + "shipsAs": [ + [] + ], + "counterpartUris": [ + "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes" + ], + "counterpartShipsAs": [] + } + }, + { + "apiVersion": "v1.0", + "modules": [ + "Identity.Governance" + ], + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource", + "action": "suppress", + "evidence": { + "shipsAs": [ + [] + ], + "counterpartUris": [ + "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource" + ], + "counterpartShipsAs": [ + "Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResource" + ] + } + }, + { + "apiVersion": "v1.0", + "modules": [ + "Identity.Governance" + ], + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/environment", + "action": "suppress", + "evidence": { + "shipsAs": [ + [] + ], + "counterpartUris": [ + "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/environment" + ], + "counterpartShipsAs": [ + "Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceEnvironment" + ] + } + }, + { + "apiVersion": "v1.0", + "modules": [ + "Identity.Governance" + ], + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/roles", + "action": "suppress", + "evidence": { + "shipsAs": [ + [] + ], + "counterpartUris": [ + "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles" + ], + "counterpartShipsAs": [ + "Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRole" + ] + } + }, + { + "apiVersion": "v1.0", + "modules": [ + "Identity.Governance" + ], + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/roles/{}", + "action": "suppress", + "evidence": { + "shipsAs": [ + [] + ], + "counterpartUris": [ + "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles" + ], + "counterpartShipsAs": [ + "Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRole" + ] + } + }, + { + "apiVersion": "v1.0", + "modules": [ + "Identity.Governance" + ], + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/roles/{}/resource", + "action": "suppress", + "evidence": { + "shipsAs": [ + [] + ], + "counterpartUris": [ + "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles/{}/resource" + ], + "counterpartShipsAs": [ + "Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResource" + ] + } + }, + { + "apiVersion": "v1.0", + "modules": [ + "Identity.Governance" + ], + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/roles/{}/resource/environment", + "action": "suppress", + "evidence": { + "shipsAs": [ + [] + ], + "counterpartUris": [ + "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles/{}/resource/environment" + ], + "counterpartShipsAs": [ + "Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceEnvironment" + ] + } + }, + { + "apiVersion": "v1.0", + "modules": [ + "Identity.Governance" + ], + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/roles/$count", + "action": "suppress", + "evidence": { + "shipsAs": [ + [] + ], + "counterpartUris": [ + "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles/$count" + ], + "counterpartShipsAs": [ + "Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleCount" + ] + } + }, + { + "apiVersion": "v1.0", + "modules": [ + "Identity.Governance" + ], + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/$count", + "action": "suppress", + "evidence": { + "shipsAs": [ + [] + ], + "counterpartUris": [ + "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/$count" + ], + "counterpartShipsAs": [ + "Get-MgEntitlementManagementResourceRequestCatalogResourceScopeCount" + ] + } + }, + { + "apiVersion": "v1.0", + "modules": [ + "Security" + ], + "method": "GET", + "uri": "/security/threatintelligence/articles/{}/indicators/$count", + "action": "suppress", + "evidence": { + "shipsAs": [ + [] + ], + "counterpartUris": [ + "/security/threatintelligence/articleindicators/$count" + ], + "counterpartShipsAs": [ + "Get-MgSecurityThreatIntelligenceArticleIndicatorCount" + ] + } + }, + { + "apiVersion": "v1.0", + "modules": [ + "Security" + ], + "method": "GET", + "uri": "/security/threatintelligence/hosts/{}/components/$count", + "action": "suppress", + "evidence": { + "shipsAs": [ + [] + ], + "counterpartUris": [ + "/security/threatintelligence/hostcomponents/$count" + ], + "counterpartShipsAs": [ + "Get-MgSecurityThreatIntelligenceHostComponentCount" + ] + } + }, + { + "apiVersion": "v1.0", + "modules": [ + "Security" + ], + "method": "GET", + "uri": "/security/threatintelligence/hosts/{}/cookies/$count", + "action": "suppress", + "evidence": { + "shipsAs": [ + [] + ], + "counterpartUris": [ + "/security/threatintelligence/hostcookies/$count" + ], + "counterpartShipsAs": [ + "Get-MgSecurityThreatIntelligenceHostCookieCount" + ] + } + }, + { + "apiVersion": "v1.0", + "modules": [ + "Security" + ], + "method": "GET", + "uri": "/security/threatintelligence/hosts/{}/hostpairs/$count", + "action": "suppress", + "evidence": { + "shipsAs": [ + [] + ], + "counterpartUris": [ + "/security/threatintelligence/hostpairs/$count" + ], + "counterpartShipsAs": [ + "Get-MgSecurityThreatIntelligenceHostPairCount" + ] + } + }, + { + "apiVersion": "v1.0", + "modules": [ + "Security" + ], + "method": "GET", + "uri": "/security/threatintelligence/hosts/{}/ports/$count", + "action": "suppress", + "evidence": { + "shipsAs": [ + [] + ], + "counterpartUris": [ + "/security/threatintelligence/hostports/$count" + ], + "counterpartShipsAs": [ + "Get-MgSecurityThreatIntelligenceHostPortCount" + ] + } + }, + { + "apiVersion": "v1.0", + "modules": [ + "Security" + ], + "method": "GET", + "uri": "/security/threatintelligence/hostsslcertificates/$count", + "action": "suppress", + "evidence": { + "shipsAs": [ + [] + ], + "counterpartUris": [ + "/security/threatintelligence/hosts/{}/sslcertificates/$count" + ], + "counterpartShipsAs": [ + "Get-MgSecurityThreatIntelligenceHostSslCertificateCount" + ] + } + }, + { + "apiVersion": "v1.0", + "modules": [ + "Security" + ], + "method": "GET", + "uri": "/security/threatintelligence/hosttrackers/$count", + "action": "suppress", + "evidence": { + "shipsAs": [ + [] + ], + "counterpartUris": [ + "/security/threatintelligence/hosts/{}/trackers/$count" + ], + "counterpartShipsAs": [ + "Get-MgSecurityThreatIntelligenceHostTrackerCount" + ] + } + }, + { + "apiVersion": "v1.0", + "modules": [ + "Files" + ], + "method": "GET", + "uri": "/shares/{}/list/items", + "action": "suppress", + "evidence": { + "shipsAs": [ + [ + "Get-MgShareListItem" + ] + ], + "counterpartUris": [ + "/shares/{}/listitem" + ], + "counterpartShipsAs": [ + "Get-MgShareListItem" + ] + }, + "deferredCrossPathMerge": true + }, + { + "apiVersion": "v1.0", + "modules": [ + "Notes" + ], + "method": "GET", + "uri": "/sites/{}/onenote/notebooks/{}/sectiongroups/{}/sectiongroups", + "action": "suppress", + "evidence": { + "shipsAs": [ + [] + ], + "counterpartUris": [ + "/sites/{}/onenote/notebooks/{}/sectiongroups" + ], + "counterpartShipsAs": [ + "Get-MgSiteOnenoteNotebookSectionGroup" + ] + } + }, + { + "apiVersion": "v1.0", + "modules": [ + "Notes" + ], + "method": "GET", + "uri": "/sites/{}/onenote/notebooks/{}/sectiongroups/{}/sectiongroups/{}", + "action": "suppress", + "evidence": { + "shipsAs": [ + [] + ], + "counterpartUris": [ + "/sites/{}/onenote/notebooks/{}/sectiongroups" + ], + "counterpartShipsAs": [ + "Get-MgSiteOnenoteNotebookSectionGroup" + ] + } + }, + { + "apiVersion": "v1.0", + "modules": [ + "Notes" + ], + "method": "GET", + "uri": "/sites/{}/onenote/notebooks/{}/sectiongroups/$count", + "action": "suppress", + "evidence": { + "shipsAs": [ + [] + ], + "counterpartUris": [ + "/sites/{}/onenote/notebooks/{}/sectiongroups/{}/sectiongroups/$count" + ], + "counterpartShipsAs": [ + "Get-MgSiteOnenoteNotebookSectionGroupCount" + ] + } + }, + { + "apiVersion": "v1.0", + "modules": [ + "Notes" + ], + "method": "GET", + "uri": "/sites/{}/onenote/sectiongroups/{}/sectiongroups", + "action": "suppress", + "evidence": { + "shipsAs": [ + [] + ], + "counterpartUris": [ + "/sites/{}/onenote/sectiongroups" + ], + "counterpartShipsAs": [ + "Get-MgSiteOnenoteSectionGroup" + ] + } + }, + { + "apiVersion": "v1.0", + "modules": [ + "Notes" + ], + "method": "GET", + "uri": "/sites/{}/onenote/sectiongroups/{}/sectiongroups/{}", + "action": "suppress", + "evidence": { + "shipsAs": [ + [] + ], + "counterpartUris": [ + "/sites/{}/onenote/sectiongroups" + ], + "counterpartShipsAs": [ + "Get-MgSiteOnenoteSectionGroup" + ] + } + }, + { + "apiVersion": "v1.0", + "modules": [ + "Notes" + ], + "method": "GET", + "uri": "/sites/{}/onenote/sectiongroups/$count", + "action": "suppress", + "evidence": { + "shipsAs": [ + [] + ], + "counterpartUris": [ + "/sites/{}/onenote/sectiongroups/{}/sectiongroups/$count" + ], + "counterpartShipsAs": [ + "Get-MgSiteOnenoteSectionGroupCount" + ] + } + }, + { + "apiVersion": "v1.0", + "modules": [ + "Sites" + ], + "method": "GET", + "uri": "/sites/{}/termstore/groups/{}/sets/{}/children/{}/children", + "action": "suppress", + "evidence": { + "shipsAs": [ + [] + ], + "counterpartUris": [ + "/sites/{}/termstore/groups/{}/sets/{}/children" + ], + "counterpartShipsAs": [ + "Get-MgSiteTermStoreGroupSetChild" + ] + } + }, + { + "apiVersion": "v1.0", + "modules": [ + "Sites" + ], + "method": "GET", + "uri": "/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}", + "action": "suppress", + "evidence": { + "shipsAs": [ + [] + ], + "counterpartUris": [ + "/sites/{}/termstore/groups/{}/sets/{}/children" + ], + "counterpartShipsAs": [ + "Get-MgSiteTermStoreGroupSetChild" + ] + } + }, + { + "apiVersion": "v1.0", + "modules": [ + "Sites" + ], + "method": "GET", + "uri": "/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations", + "action": "suppress", + "evidence": { + "shipsAs": [ + [] + ], + "counterpartUris": [ + "/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations" + ], + "counterpartShipsAs": [ + "Get-MgSiteTermStoreGroupSetChildRelation" + ] + } + }, + { + "apiVersion": "v1.0", + "modules": [ + "Sites" + ], + "method": "GET", + "uri": "/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations/{}", + "action": "suppress", + "evidence": { + "shipsAs": [ + [] + ], + "counterpartUris": [ + "/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations" + ], + "counterpartShipsAs": [ + "Get-MgSiteTermStoreGroupSetChildRelation" + ] + } + }, + { + "apiVersion": "v1.0", + "modules": [ + "Sites" + ], + "method": "GET", + "uri": "/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations/{}/fromterm", + "action": "suppress", + "evidence": { + "shipsAs": [ + [] + ], + "counterpartUris": [ + "/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations/{}/fromterm" + ], + "counterpartShipsAs": [ + "Get-MgSiteTermStoreGroupSetChildRelationFromTerm" + ] + } + }, + { + "apiVersion": "v1.0", + "modules": [ + "Sites" + ], + "method": "GET", + "uri": "/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations/{}/set", + "action": "suppress", + "evidence": { + "shipsAs": [ + [] + ], + "counterpartUris": [ + "/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations/{}/set" + ], + "counterpartShipsAs": [ + "Get-MgSiteTermStoreGroupSetChildRelationSet" + ] + } + }, + { + "apiVersion": "v1.0", + "modules": [ + "Sites" + ], + "method": "GET", + "uri": "/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations/{}/toterm", + "action": "suppress", + "evidence": { + "shipsAs": [ + [] + ], + "counterpartUris": [ + "/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations/{}/toterm" + ], + "counterpartShipsAs": [ + "Get-MgSiteTermStoreGroupSetChildRelationToTerm" + ] + } + }, + { + "apiVersion": "v1.0", + "modules": [ + "Sites" + ], + "method": "GET", + "uri": "/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations/$count", + "action": "suppress", + "evidence": { + "shipsAs": [ + [] + ], + "counterpartUris": [ + "/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations/$count" + ], + "counterpartShipsAs": [ + "Get-MgSiteTermStoreGroupSetChildRelationCount" + ] + } + }, + { + "apiVersion": "v1.0", + "modules": [ + "Sites" + ], + "method": "GET", + "uri": "/sites/{}/termstore/groups/{}/sets/{}/children/{}/set", + "action": "suppress", + "evidence": { + "shipsAs": [ + [] + ], + "counterpartUris": [ + "/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/set" + ], + "counterpartShipsAs": [ + "Get-MgSiteTermStoreGroupSetChildSet" + ] + } + }, + { + "apiVersion": "v1.0", + "modules": [ + "Sites" + ], + "method": "GET", + "uri": "/sites/{}/termstore/groups/{}/sets/{}/children/$count", + "action": "suppress", + "evidence": { + "shipsAs": [ + [] + ], + "counterpartUris": [ + "/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/$count" + ], + "counterpartShipsAs": [ + "Get-MgSiteTermStoreGroupSetChildCount" + ] + } + }, + { + "apiVersion": "v1.0", + "modules": [ + "Sites" + ], + "method": "GET", + "uri": "/sites/{}/termstore/sets/{}/children/{}/children", + "action": "suppress", + "evidence": { + "shipsAs": [ + [] + ], + "counterpartUris": [ + "/sites/{}/termstore/sets/{}/children" + ], + "counterpartShipsAs": [ + "Get-MgSiteTermStoreSetChild" + ] + } + }, + { + "apiVersion": "v1.0", + "modules": [ + "Sites" + ], + "method": "GET", + "uri": "/sites/{}/termstore/sets/{}/children/{}/children/{}", + "action": "suppress", + "evidence": { + "shipsAs": [ + [] + ], + "counterpartUris": [ + "/sites/{}/termstore/sets/{}/children" + ], + "counterpartShipsAs": [ + "Get-MgSiteTermStoreSetChild" + ] + } + }, + { + "apiVersion": "v1.0", + "modules": [ + "Sites" + ], + "method": "GET", + "uri": "/sites/{}/termstore/sets/{}/children/{}/relations", + "action": "suppress", + "evidence": { + "shipsAs": [ + [] + ], + "counterpartUris": [ + "/sites/{}/termstore/sets/{}/children/{}/children/{}/relations" + ], + "counterpartShipsAs": [ + "Get-MgSiteTermStoreSetChildRelation" + ] + } + }, + { + "apiVersion": "v1.0", + "modules": [ + "Sites" + ], + "method": "GET", + "uri": "/sites/{}/termstore/sets/{}/children/{}/relations/{}", + "action": "suppress", + "evidence": { + "shipsAs": [ + [] + ], + "counterpartUris": [ + "/sites/{}/termstore/sets/{}/children/{}/children/{}/relations" + ], + "counterpartShipsAs": [ + "Get-MgSiteTermStoreSetChildRelation" + ] + } + }, + { + "apiVersion": "v1.0", + "modules": [ + "Sites" + ], + "method": "GET", + "uri": "/sites/{}/termstore/sets/{}/children/{}/relations/{}/fromterm", + "action": "suppress", + "evidence": { + "shipsAs": [ + [] + ], + "counterpartUris": [ + "/sites/{}/termstore/sets/{}/children/{}/children/{}/relations/{}/fromterm" + ], + "counterpartShipsAs": [ + "Get-MgSiteTermStoreSetChildRelationFromTerm" + ] + } + }, + { + "apiVersion": "v1.0", + "modules": [ + "Sites" + ], + "method": "GET", + "uri": "/sites/{}/termstore/sets/{}/children/{}/relations/{}/set", + "action": "suppress", + "evidence": { + "shipsAs": [ + [] + ], + "counterpartUris": [ + "/sites/{}/termstore/sets/{}/children/{}/children/{}/relations/{}/set" + ], + "counterpartShipsAs": [ + "Get-MgSiteTermStoreSetChildRelationSet" + ] + } + }, + { + "apiVersion": "v1.0", + "modules": [ + "Sites" + ], + "method": "GET", + "uri": "/sites/{}/termstore/sets/{}/children/{}/relations/{}/toterm", + "action": "suppress", + "evidence": { + "shipsAs": [ + [] + ], + "counterpartUris": [ + "/sites/{}/termstore/sets/{}/children/{}/children/{}/relations/{}/toterm" + ], + "counterpartShipsAs": [ + "Get-MgSiteTermStoreSetChildRelationToTerm" + ] + } + }, + { + "apiVersion": "v1.0", + "modules": [ + "Sites" + ], + "method": "GET", + "uri": "/sites/{}/termstore/sets/{}/children/{}/relations/$count", + "action": "suppress", + "evidence": { + "shipsAs": [ + [] + ], + "counterpartUris": [ + "/sites/{}/termstore/sets/{}/children/{}/children/{}/relations/$count" + ], + "counterpartShipsAs": [ + "Get-MgSiteTermStoreSetChildRelationCount" + ] + } + }, + { + "apiVersion": "v1.0", + "modules": [ + "Sites" + ], + "method": "GET", + "uri": "/sites/{}/termstore/sets/{}/children/{}/set", + "action": "suppress", + "evidence": { + "shipsAs": [ + [] + ], + "counterpartUris": [ + "/sites/{}/termstore/sets/{}/children/{}/children/{}/set" + ], + "counterpartShipsAs": [ + "Get-MgSiteTermStoreSetChildSet" + ] + } + }, + { + "apiVersion": "v1.0", + "modules": [ + "Sites" + ], + "method": "GET", + "uri": "/sites/{}/termstore/sets/{}/children/$count", + "action": "suppress", + "evidence": { + "shipsAs": [ + [] + ], + "counterpartUris": [ + "/sites/{}/termstore/sets/{}/children/{}/children/$count" + ], + "counterpartShipsAs": [ + "Get-MgSiteTermStoreSetChildCount" + ] + } + }, + { + "apiVersion": "v1.0", + "modules": [ + "Sites" + ], + "method": "GET", + "uri": "/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children", + "action": "suppress", + "evidence": { + "shipsAs": [ + [] + ], + "counterpartUris": [ + "/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children" + ], + "counterpartShipsAs": [ + "Get-MgSiteTermStoreSetParentGroupSetChild" + ] + } + }, + { + "apiVersion": "v1.0", + "modules": [ + "Sites" + ], + "method": "GET", + "uri": "/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}", + "action": "suppress", + "evidence": { + "shipsAs": [ + [] + ], + "counterpartUris": [ + "/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children" + ], + "counterpartShipsAs": [ + "Get-MgSiteTermStoreSetParentGroupSetChild" + ] + } + }, + { + "apiVersion": "v1.0", + "modules": [ + "Sites" + ], + "method": "GET", + "uri": "/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations", + "action": "suppress", + "evidence": { + "shipsAs": [ + [] + ], + "counterpartUris": [ + "/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations" + ], + "counterpartShipsAs": [ + "Get-MgSiteTermStoreSetParentGroupSetChildRelation" + ] + } + }, + { + "apiVersion": "v1.0", + "modules": [ + "Sites" + ], + "method": "GET", + "uri": "/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations/{}", + "action": "suppress", + "evidence": { + "shipsAs": [ + [] + ], + "counterpartUris": [ + "/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations" + ], + "counterpartShipsAs": [ + "Get-MgSiteTermStoreSetParentGroupSetChildRelation" + ] + } + }, + { + "apiVersion": "v1.0", + "modules": [ + "Sites" + ], + "method": "GET", + "uri": "/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations/{}/fromterm", + "action": "suppress", + "evidence": { + "shipsAs": [ + [] + ], + "counterpartUris": [ + "/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations/{}/fromterm" + ], + "counterpartShipsAs": [ + "Get-MgSiteTermStoreSetParentGroupSetChildRelationFromTerm" + ] + } + }, + { + "apiVersion": "v1.0", + "modules": [ + "Sites" + ], + "method": "GET", + "uri": "/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations/{}/set", + "action": "suppress", + "evidence": { + "shipsAs": [ + [] + ], + "counterpartUris": [ + "/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations/{}/set" + ], + "counterpartShipsAs": [ + "Get-MgSiteTermStoreSetParentGroupSetChildRelationSet" + ] + } + }, + { + "apiVersion": "v1.0", + "modules": [ + "Sites" + ], + "method": "GET", + "uri": "/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations/{}/toterm", + "action": "suppress", + "evidence": { + "shipsAs": [ + [] + ], + "counterpartUris": [ + "/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations/{}/toterm" + ], + "counterpartShipsAs": [ + "Get-MgSiteTermStoreSetParentGroupSetChildRelationToTerm" + ] + } + }, + { + "apiVersion": "v1.0", + "modules": [ + "Sites" + ], + "method": "GET", + "uri": "/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations/$count", + "action": "suppress", + "evidence": { + "shipsAs": [ + [] + ], + "counterpartUris": [ + "/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations/$count" + ], + "counterpartShipsAs": [ + "Get-MgSiteTermStoreSetParentGroupSetChildRelationCount" + ] + } + }, + { + "apiVersion": "v1.0", + "modules": [ + "Sites" + ], + "method": "GET", + "uri": "/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/set", + "action": "suppress", + "evidence": { + "shipsAs": [ + [] + ], + "counterpartUris": [ + "/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/set" + ], + "counterpartShipsAs": [ + "Get-MgSiteTermStoreSetParentGroupSetChildSet" + ] + } + }, + { + "apiVersion": "v1.0", + "modules": [ + "Sites" + ], + "method": "GET", + "uri": "/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/$count", + "action": "suppress", + "evidence": { + "shipsAs": [ + [] + ], + "counterpartUris": [ + "/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/$count" + ], + "counterpartShipsAs": [ + "Get-MgSiteTermStoreSetParentGroupSetChildCount" + ] + } + }, + { + "apiVersion": "v1.0", + "modules": [ + "Calendar" + ], + "method": "GET", + "uri": "/users/{}/calendar/calendarview/delta", + "action": "suppress", + "evidence": { + "shipsAs": [ + [] + ], + "counterpartUris": [ + "/users/{}/calendars/{}/calendarview/delta", + "/users/{}/calendarview/delta" + ], + "counterpartShipsAs": [] + } + }, + { + "apiVersion": "v1.0", + "modules": [ + "Calendar" + ], + "method": "GET", + "uri": "/users/{}/calendar/events/$count", + "action": "suppress", + "evidence": { + "shipsAs": [ + [] + ], + "counterpartUris": [ + "/users/{}/calendars/{}/events/$count" + ], + "counterpartShipsAs": [] + } + }, + { + "apiVersion": "v1.0", + "modules": [ + "Calendar" + ], + "method": "GET", + "uri": "/users/{}/calendar/events/delta", + "action": "suppress", + "evidence": { + "shipsAs": [ + [] + ], + "counterpartUris": [ + "/users/{}/calendars/{}/events/delta" + ], + "counterpartShipsAs": [] + } + }, + { + "apiVersion": "v1.0", + "modules": [ + "Calendar" + ], + "method": "GET", + "uri": "/users/{}/calendars/{}/allowedcalendarsharingroles(user='{}')", + "action": "suppress", + "evidence": { + "shipsAs": [ + [] + ], + "counterpartUris": [ + "/users/{}/calendar/allowedcalendarsharingroles(user='{}')" + ], + "counterpartShipsAs": [ + "Invoke-MgCalendarUserCalendarAllowedCalendarSharingRoles" + ] + } + }, + { + "apiVersion": "v1.0", + "modules": [ + "Calendar" + ], + "method": "GET", + "uri": "/users/{}/calendars/{}/calendarview", + "action": "suppress", + "evidence": { + "shipsAs": [ + [] + ], + "counterpartUris": [ + "/users/{}/calendar/calendarview" + ], + "counterpartShipsAs": [ + "Get-MgUserCalendarView" + ] + } + }, + { + "apiVersion": "v1.0", + "modules": [ + "Calendar" + ], + "method": "GET", + "uri": "/users/{}/calendars/{}/calendarview/delta", + "action": "suppress", + "evidence": { + "shipsAs": [ + [] + ], + "counterpartUris": [ + "/users/{}/calendar/calendarview/delta" + ], + "counterpartShipsAs": [] + } + }, + { + "apiVersion": "v1.0", + "modules": [ + "Calendar" + ], + "method": "GET", + "uri": "/users/{}/calendars/{}/events/$count", + "action": "suppress", + "evidence": { + "shipsAs": [ + [] + ], + "counterpartUris": [ + "/users/{}/calendar/events/$count" + ], + "counterpartShipsAs": [] + } + }, + { + "apiVersion": "v1.0", + "modules": [ + "Calendar" + ], + "method": "GET", + "uri": "/users/{}/calendars/{}/events/delta", + "action": "suppress", + "evidence": { + "shipsAs": [ + [] + ], + "counterpartUris": [ + "/users/{}/calendar/events/delta" + ], + "counterpartShipsAs": [] + } + }, + { + "apiVersion": "v1.0", + "modules": [ + "Calendar" + ], + "method": "GET", + "uri": "/users/{}/calendarview", + "action": "suppress", + "evidence": { + "shipsAs": [ + [] + ], + "counterpartUris": [ + "/users/{}/calendar/calendarview" + ], + "counterpartShipsAs": [ + "Get-MgUserCalendarView" + ] + } + }, + { + "apiVersion": "v1.0", + "modules": [ + "Calendar" + ], + "method": "GET", + "uri": "/users/{}/calendarview/delta", + "action": "suppress", + "evidence": { + "shipsAs": [ + [] + ], + "counterpartUris": [ + "/users/{}/calendar/calendarview/delta" + ], + "counterpartShipsAs": [] + } + }, + { + "apiVersion": "v1.0", + "modules": [ + "Notes" + ], + "method": "GET", + "uri": "/users/{}/onenote/notebooks/{}/sectiongroups/{}/sectiongroups", + "action": "suppress", + "evidence": { + "shipsAs": [ + [] + ], + "counterpartUris": [ + "/users/{}/onenote/notebooks/{}/sectiongroups" + ], + "counterpartShipsAs": [ + "Get-MgUserOnenoteNotebookSectionGroup" + ] + } + }, + { + "apiVersion": "v1.0", + "modules": [ + "Notes" + ], + "method": "GET", + "uri": "/users/{}/onenote/notebooks/{}/sectiongroups/{}/sectiongroups/{}", + "action": "suppress", + "evidence": { + "shipsAs": [ + [] + ], + "counterpartUris": [ + "/users/{}/onenote/notebooks/{}/sectiongroups" + ], + "counterpartShipsAs": [ + "Get-MgUserOnenoteNotebookSectionGroup" + ] + } + }, + { + "apiVersion": "v1.0", + "modules": [ + "Notes" + ], + "method": "GET", + "uri": "/users/{}/onenote/notebooks/{}/sectiongroups/$count", + "action": "suppress", + "evidence": { + "shipsAs": [ + [] + ], + "counterpartUris": [ + "/users/{}/onenote/notebooks/{}/sectiongroups/{}/sectiongroups/$count" + ], + "counterpartShipsAs": [ + "Get-MgUserOnenoteNotebookSectionGroupCount" + ] + } + }, + { + "apiVersion": "v1.0", + "modules": [ + "Notes" + ], + "method": "GET", + "uri": "/users/{}/onenote/sectiongroups/{}/sectiongroups", + "action": "suppress", + "evidence": { + "shipsAs": [ + [] + ], + "counterpartUris": [ + "/users/{}/onenote/sectiongroups" + ], + "counterpartShipsAs": [ + "Get-MgUserOnenoteSectionGroup" + ] + } + }, + { + "apiVersion": "v1.0", + "modules": [ + "Notes" + ], + "method": "GET", + "uri": "/users/{}/onenote/sectiongroups/{}/sectiongroups/{}", + "action": "suppress", + "evidence": { + "shipsAs": [ + [] + ], + "counterpartUris": [ + "/users/{}/onenote/sectiongroups" + ], + "counterpartShipsAs": [ + "Get-MgUserOnenoteSectionGroup" + ] + } + }, + { + "apiVersion": "v1.0", + "modules": [ + "Notes" + ], + "method": "GET", + "uri": "/users/{}/onenote/sectiongroups/$count", + "action": "suppress", + "evidence": { + "shipsAs": [ + [] + ], + "counterpartUris": [ + "/users/{}/onenote/sectiongroups/{}/sectiongroups/$count" + ], + "counterpartShipsAs": [ + "Get-MgUserOnenoteSectionGroupCount" + ] + } + }, + { + "apiVersion": "v1.0", + "modules": [ + "Users" + ], + "method": "GET", + "uri": "/users/{}/photos/{}/$value", + "action": "suppress", + "evidence": { + "shipsAs": [ + [] + ], + "counterpartUris": [ + "/users/{}/photo/$value" + ], + "counterpartShipsAs": [ + "Get-MgUserPhotoContent" + ] + } + }, + { + "apiVersion": "v1.0", + "modules": [ + "Sites" + ], + "method": "PATCH", + "uri": "/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}", + "action": "suppress", + "evidence": { + "shipsAs": [ + [] + ], + "counterpartUris": [ + "/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}" + ], + "counterpartShipsAs": [ + "Update-MgGroupSiteTermStoreGroupSetChild" + ] + } + }, + { + "apiVersion": "v1.0", + "modules": [ + "Sites" + ], + "method": "PATCH", + "uri": "/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations/{}", + "action": "suppress", + "evidence": { + "shipsAs": [ + [] + ], + "counterpartUris": [ + "/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations/{}" + ], + "counterpartShipsAs": [ + "Update-MgGroupSiteTermStoreGroupSetChildRelation" + ] + } + }, + { + "apiVersion": "v1.0", + "modules": [ + "Sites" + ], + "method": "PATCH", + "uri": "/groups/{}/sites/{}/termstore/sets/{}/children/{}/children/{}", + "action": "suppress", + "evidence": { + "shipsAs": [ + [] + ], + "counterpartUris": [ + "/groups/{}/sites/{}/termstore/sets/{}/children/{}" + ], + "counterpartShipsAs": [ + "Update-MgGroupSiteTermStoreSetChild" + ] + } + }, + { + "apiVersion": "v1.0", + "modules": [ + "Sites" + ], + "method": "PATCH", + "uri": "/groups/{}/sites/{}/termstore/sets/{}/children/{}/relations/{}", + "action": "suppress", + "evidence": { + "shipsAs": [ + [] + ], + "counterpartUris": [ + "/groups/{}/sites/{}/termstore/sets/{}/children/{}/children/{}/relations/{}" + ], + "counterpartShipsAs": [ + "Update-MgGroupSiteTermStoreSetChildRelation" + ] + } + }, + { + "apiVersion": "v1.0", + "modules": [ + "Sites" + ], + "method": "PATCH", + "uri": "/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}", + "action": "suppress", + "evidence": { + "shipsAs": [ + [] + ], + "counterpartUris": [ + "/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}" + ], + "counterpartShipsAs": [ + "Update-MgGroupSiteTermStoreSetParentGroupSetChild" + ] + } + }, + { + "apiVersion": "v1.0", + "modules": [ + "Sites" + ], + "method": "PATCH", + "uri": "/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations/{}", + "action": "suppress", + "evidence": { + "shipsAs": [ + [] + ], + "counterpartUris": [ + "/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations/{}" + ], + "counterpartShipsAs": [ + "Update-MgGroupSiteTermStoreSetParentGroupSetChildRelation" + ] + } + }, + { + "apiVersion": "v1.0", + "modules": [ + "Groups" + ], + "method": "PATCH", + "uri": "/groupsettings/{}", + "action": "suppress", + "evidence": { + "shipsAs": [ + [] + ], + "counterpartUris": [ + "/groups/{}/settings/{}" + ], + "counterpartShipsAs": [ + "Update-MgGroupSetting" + ] + } + }, + { + "apiVersion": "v1.0", + "modules": [ + "Identity.Governance" + ], + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource", + "action": "suppress", + "evidence": { + "shipsAs": [ + [] + ], + "counterpartUris": [ + "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource" + ], + "counterpartShipsAs": [] + } + }, + { + "apiVersion": "v1.0", + "modules": [ + "Identity.Governance" + ], + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes/{}/resource", + "action": "suppress", + "evidence": { + "shipsAs": [ + [] + ], + "counterpartUris": [ + "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource/scopes/{}/resource" + ], + "counterpartShipsAs": [] + } + }, + { + "apiVersion": "v1.0", + "modules": [ + "Identity.Governance" + ], + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}", + "action": "suppress", + "evidence": { + "shipsAs": [ + [] + ], + "counterpartUris": [ + "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}" + ], + "counterpartShipsAs": [ + "Update-MgEntitlementManagementCatalogResourceRole" + ] + } + }, + { + "apiVersion": "v1.0", + "modules": [ + "Identity.Governance" + ], + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource", + "action": "suppress", + "evidence": { + "shipsAs": [ + [] + ], + "counterpartUris": [ + "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource" + ], + "counterpartShipsAs": [] + } + }, + { + "apiVersion": "v1.0", + "modules": [ + "Identity.Governance" + ], + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource/scopes/{}", + "action": "suppress", + "evidence": { + "shipsAs": [ + [] + ], + "counterpartUris": [ + "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes/{}" + ], + "counterpartShipsAs": [ + "Update-MgEntitlementManagementCatalogResourceRoleResourceScope" + ] + } + }, + { + "apiVersion": "v1.0", + "modules": [ + "Identity.Governance" + ], + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource/scopes/{}/resource", + "action": "suppress", + "evidence": { + "shipsAs": [ + [] + ], + "counterpartUris": [ + "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes/{}/resource" + ], + "counterpartShipsAs": [] + } + }, + { + "apiVersion": "v1.0", + "modules": [ + "Identity.Governance" + ], + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}", + "action": "suppress", + "evidence": { + "shipsAs": [ + [] + ], + "counterpartUris": [ + "/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}" + ], + "counterpartShipsAs": [ + "Update-MgEntitlementManagementCatalogResourceScope" + ] + } + }, + { + "apiVersion": "v1.0", + "modules": [ + "Identity.Governance" + ], + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource", + "action": "suppress", + "evidence": { + "shipsAs": [ + [] + ], + "counterpartUris": [ + "/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource" + ], + "counterpartShipsAs": [] + } + }, + { + "apiVersion": "v1.0", + "modules": [ + "Identity.Governance" + ], + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles/{}/resource", + "action": "suppress", + "evidence": { + "shipsAs": [ + [] + ], + "counterpartUris": [ + "/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/roles/{}/resource" + ], + "counterpartShipsAs": [] } }, { @@ -2823,17 +4654,35 @@ "Identity.Governance" ], "method": "PATCH", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}" + "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource" + ], + "counterpartShipsAs": [] + } + }, + { + "apiVersion": "v1.0", + "modules": [ + "Identity.Governance" + ], + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/roles/{}", + "action": "suppress", + "evidence": { + "shipsAs": [ + [] + ], + "counterpartUris": [ + "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles/{}" ], "counterpartShipsAs": [ - "Update-MgEntitlementManagementCatalogResourceRole" + "Update-MgEntitlementManagementCatalogResourceScopeResourceRole" ] } }, @@ -2843,14 +4692,14 @@ "Identity.Governance" ], "method": "PATCH", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/roles/{}/resource", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource" + "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles/{}/resource" ], "counterpartShipsAs": [] } @@ -2861,18 +4710,16 @@ "Identity.Governance" ], "method": "PATCH", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource/scopes/{}", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes/{}" + "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource" ], - "counterpartShipsAs": [ - "Update-MgEntitlementManagementCatalogResourceRoleResourceScope" - ] + "counterpartShipsAs": [] } }, { @@ -2881,14 +4728,14 @@ "Identity.Governance" ], "method": "PATCH", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource/scopes/{}/resource", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes/{}/resource", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes/{}/resource" + "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource/scopes/{}/resource" ], "counterpartShipsAs": [] } @@ -2899,17 +4746,17 @@ "Identity.Governance" ], "method": "PATCH", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}" + "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}" ], "counterpartShipsAs": [ - "Update-MgEntitlementManagementCatalogResourceScope" + "Update-MgEntitlementManagementResourceRequestCatalogResourceRole" ] } }, @@ -2919,14 +4766,14 @@ "Identity.Governance" ], "method": "PATCH", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource" + "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource" ], "counterpartShipsAs": [] } @@ -2937,16 +4784,18 @@ "Identity.Governance" ], "method": "PATCH", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles/{}/resource", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource/scopes/{}", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/roles/{}/resource" + "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes/{}" ], - "counterpartShipsAs": [] + "counterpartShipsAs": [ + "Update-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScope" + ] } }, { @@ -2955,14 +4804,14 @@ "Identity.Governance" ], "method": "PATCH", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource/scopes/{}/resource", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource" + "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes/{}/resource" ], "counterpartShipsAs": [] } @@ -2973,17 +4822,17 @@ "Identity.Governance" ], "method": "PATCH", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/roles/{}", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles/{}" + "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}" ], "counterpartShipsAs": [ - "Update-MgEntitlementManagementCatalogResourceScopeResourceRole" + "Update-MgEntitlementManagementResourceRequestCatalogResourceScope" ] } }, @@ -2993,14 +4842,14 @@ "Identity.Governance" ], "method": "PATCH", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/roles/{}/resource", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles/{}/resource" + "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource" ], "counterpartShipsAs": [] } @@ -3011,14 +4860,14 @@ "Identity.Governance" ], "method": "PATCH", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles/{}/resource", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource" + "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/roles/{}/resource" ], "counterpartShipsAs": [] } @@ -3029,14 +4878,14 @@ "Identity.Governance" ], "method": "PATCH", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes/{}/resource", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource/scopes/{}/resource" + "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource" ], "counterpartShipsAs": [] } @@ -3047,17 +4896,17 @@ "Identity.Governance" ], "method": "PATCH", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/roles/{}", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}" + "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles/{}" ], "counterpartShipsAs": [ - "Update-MgEntitlementManagementResourceRequestCatalogResourceRole" + "Update-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRole" ] } }, @@ -3067,14 +4916,14 @@ "Identity.Governance" ], "method": "PATCH", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/roles/{}/resource", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource" + "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles/{}/resource" ], "counterpartShipsAs": [] } @@ -3082,430 +4931,600 @@ { "apiVersion": "v1.0", "modules": [ - "Identity.Governance" + "Sites" ], "method": "PATCH", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource/scopes/{}", + "uri": "/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes/{}" + "/sites/{}/termstore/groups/{}/sets/{}/children/{}" ], "counterpartShipsAs": [ - "Update-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScope" + "Update-MgSiteTermStoreGroupSetChild" ] } }, { "apiVersion": "v1.0", "modules": [ - "Identity.Governance" + "Sites" ], "method": "PATCH", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource/scopes/{}/resource", + "uri": "/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations/{}", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes/{}/resource" + "/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations/{}" ], - "counterpartShipsAs": [] + "counterpartShipsAs": [ + "Update-MgSiteTermStoreGroupSetChildRelation" + ] } }, { "apiVersion": "v1.0", "modules": [ - "Identity.Governance" + "Sites" + ], + "method": "PATCH", + "uri": "/sites/{}/termstore/sets/{}/children/{}/children/{}", + "action": "suppress", + "evidence": { + "shipsAs": [ + [] + ], + "counterpartUris": [ + "/sites/{}/termstore/sets/{}/children/{}" + ], + "counterpartShipsAs": [ + "Update-MgSiteTermStoreSetChild" + ] + } + }, + { + "apiVersion": "v1.0", + "modules": [ + "Sites" + ], + "method": "PATCH", + "uri": "/sites/{}/termstore/sets/{}/children/{}/relations/{}", + "action": "suppress", + "evidence": { + "shipsAs": [ + [] + ], + "counterpartUris": [ + "/sites/{}/termstore/sets/{}/children/{}/children/{}/relations/{}" + ], + "counterpartShipsAs": [ + "Update-MgSiteTermStoreSetChildRelation" + ] + } + }, + { + "apiVersion": "v1.0", + "modules": [ + "Sites" + ], + "method": "PATCH", + "uri": "/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}", + "action": "suppress", + "evidence": { + "shipsAs": [ + [] + ], + "counterpartUris": [ + "/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}" + ], + "counterpartShipsAs": [ + "Update-MgSiteTermStoreSetParentGroupSetChild" + ] + } + }, + { + "apiVersion": "v1.0", + "modules": [ + "Sites" + ], + "method": "PATCH", + "uri": "/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations/{}", + "action": "suppress", + "evidence": { + "shipsAs": [ + [] + ], + "counterpartUris": [ + "/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations/{}" + ], + "counterpartShipsAs": [ + "Update-MgSiteTermStoreSetParentGroupSetChildRelation" + ] + } + }, + { + "apiVersion": "v1.0", + "modules": [ + "Applications" + ], + "method": "POST", + "uri": "/applications/{}/synchronization/jobs/validatecredentials", + "action": "suppress", + "evidence": { + "shipsAs": [ + [] + ], + "counterpartUris": [ + "/applications/{}/synchronization/jobs/{}/validatecredentials" + ], + "counterpartShipsAs": [ + "Test-MgApplicationSynchronizationJobCredential" + ] + } + }, + { + "apiVersion": "v1.0", + "modules": [ + "Groups" + ], + "method": "POST", + "uri": "/groups/{}/grouplifecyclepolicies", + "action": "suppress", + "evidence": { + "shipsAs": [ + [] + ], + "counterpartUris": [ + "/grouplifecyclepolicies" + ], + "counterpartShipsAs": [ + "New-MgGroupLifecyclePolicy" + ] + } + }, + { + "apiVersion": "v1.0", + "modules": [ + "Sites" + ], + "method": "POST", + "uri": "/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/children", + "action": "suppress", + "evidence": { + "shipsAs": [ + [] + ], + "counterpartUris": [ + "/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children" + ], + "counterpartShipsAs": [ + "New-MgGroupSiteTermStoreGroupSetChild" + ] + } + }, + { + "apiVersion": "v1.0", + "modules": [ + "Sites" + ], + "method": "POST", + "uri": "/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations", + "action": "suppress", + "evidence": { + "shipsAs": [ + [] + ], + "counterpartUris": [ + "/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations" + ], + "counterpartShipsAs": [ + "New-MgGroupSiteTermStoreGroupSetChildRelation" + ] + } + }, + { + "apiVersion": "v1.0", + "modules": [ + "Sites" ], - "method": "PATCH", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}", + "method": "POST", + "uri": "/groups/{}/sites/{}/termstore/sets/{}/children/{}/children", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}" + "/groups/{}/sites/{}/termstore/sets/{}/children" ], "counterpartShipsAs": [ - "Update-MgEntitlementManagementResourceRequestCatalogResourceScope" + "New-MgGroupSiteTermStoreSetChild" ] } }, { "apiVersion": "v1.0", "modules": [ - "Identity.Governance" + "Sites" ], - "method": "PATCH", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource", + "method": "POST", + "uri": "/groups/{}/sites/{}/termstore/sets/{}/children/{}/relations", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource" + "/groups/{}/sites/{}/termstore/sets/{}/children/{}/children/{}/relations" ], - "counterpartShipsAs": [] + "counterpartShipsAs": [ + "New-MgGroupSiteTermStoreSetChildRelation" + ] } }, { "apiVersion": "v1.0", "modules": [ - "Identity.Governance" + "Sites" ], - "method": "PATCH", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles/{}/resource", + "method": "POST", + "uri": "/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/roles/{}/resource" + "/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children" ], - "counterpartShipsAs": [] + "counterpartShipsAs": [ + "New-MgGroupSiteTermStoreSetParentGroupSetChild" + ] } }, { "apiVersion": "v1.0", "modules": [ - "Identity.Governance" + "Sites" ], - "method": "PATCH", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource", + "method": "POST", + "uri": "/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource" + "/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations" ], - "counterpartShipsAs": [] + "counterpartShipsAs": [ + "New-MgGroupSiteTermStoreSetParentGroupSetChildRelation" + ] } }, { "apiVersion": "v1.0", "modules": [ - "Identity.Governance" + "Groups" ], - "method": "PATCH", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/roles/{}", + "method": "POST", + "uri": "/groups/validateproperties", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles/{}" + "/groups/{}/validateproperties" ], "counterpartShipsAs": [ - "Update-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRole" + "Test-MgGroupProperty" ] } }, { "apiVersion": "v1.0", "modules": [ - "Identity.Governance" + "Groups" ], - "method": "PATCH", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/roles/{}/resource", + "method": "POST", + "uri": "/groupsettings", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles/{}/resource" + "/groups/{}/settings" ], - "counterpartShipsAs": [] + "counterpartShipsAs": [ + "New-MgGroupSetting" + ] } }, { "apiVersion": "v1.0", "modules": [ - "Sites" + "Identity.SignIns" ], - "method": "PATCH", - "uri": "/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}", + "method": "POST", + "uri": "/identity/customauthenticationextensions/validateauthenticationconfiguration", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/sites/{}/termstore/groups/{}/sets/{}/children/{}" + "/identity/customauthenticationextensions/{}/validateauthenticationconfiguration" ], "counterpartShipsAs": [ - "Update-MgSiteTermStoreGroupSetChild" + "Test-MgIdentityCustomAuthenticationExtensionAuthenticationConfiguration" ] } }, { "apiVersion": "v1.0", "modules": [ - "Sites" + "Identity.Governance" ], - "method": "PATCH", - "uri": "/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations/{}", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations/{}" + "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles" ], "counterpartShipsAs": [ - "Update-MgSiteTermStoreGroupSetChildRelation" + "New-MgEntitlementManagementCatalogResourceRole" ] } }, { "apiVersion": "v1.0", "modules": [ - "Sites" + "Identity.Governance" ], - "method": "PATCH", - "uri": "/sites/{}/termstore/sets/{}/children/{}/children/{}", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource/refresh", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/sites/{}/termstore/sets/{}/children/{}" + "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/refresh" ], "counterpartShipsAs": [ - "Update-MgSiteTermStoreSetChild" + "Update-MgEntitlementManagementCatalogResourceRoleResource" ] } }, { "apiVersion": "v1.0", "modules": [ - "Sites" + "Identity.Governance" ], - "method": "PATCH", - "uri": "/sites/{}/termstore/sets/{}/children/{}/relations/{}", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource/scopes", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/sites/{}/termstore/sets/{}/children/{}/children/{}/relations/{}" + "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes" ], "counterpartShipsAs": [ - "Update-MgSiteTermStoreSetChildRelation" + "New-MgEntitlementManagementCatalogResourceRoleResourceScope" ] } }, { "apiVersion": "v1.0", "modules": [ - "Sites" + "Identity.Governance" ], - "method": "PATCH", - "uri": "/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource/scopes/{}/resource/refresh", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}" + "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes/{}/resource/refresh" ], "counterpartShipsAs": [ - "Update-MgSiteTermStoreSetParentGroupSetChild" + "Update-MgEntitlementManagementCatalogResourceRoleResourceScopeResource" ] } }, { "apiVersion": "v1.0", "modules": [ - "Sites" + "Identity.Governance" ], - "method": "PATCH", - "uri": "/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations/{}", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations/{}" + "/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes" ], "counterpartShipsAs": [ - "Update-MgSiteTermStoreSetParentGroupSetChildRelation" + "New-MgEntitlementManagementCatalogResourceScope" ] } }, { "apiVersion": "v1.0", "modules": [ - "Groups" + "Identity.Governance" ], "method": "POST", - "uri": "/groups/{}/grouplifecyclepolicies", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/refresh", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/grouplifecyclepolicies" + "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/refresh" ], "counterpartShipsAs": [ - "New-MgGroupLifecyclePolicy" + "Update-MgEntitlementManagementCatalogResourceScopeResource" ] } }, { "apiVersion": "v1.0", "modules": [ - "Sites" + "Identity.Governance" ], "method": "POST", - "uri": "/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/children", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/roles", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children" + "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles" ], "counterpartShipsAs": [ - "New-MgGroupSiteTermStoreGroupSetChild" + "New-MgEntitlementManagementCatalogResourceScopeResourceRole" ] } }, { "apiVersion": "v1.0", "modules": [ - "Sites" + "Identity.Governance" ], "method": "POST", - "uri": "/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/relations", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/roles/{}/resource/refresh", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/groups/{}/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations" + "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles/{}/resource/refresh" ], "counterpartShipsAs": [ - "New-MgGroupSiteTermStoreGroupSetChildRelation" + "Update-MgEntitlementManagementCatalogResourceScopeResourceRoleResource" ] } }, { "apiVersion": "v1.0", "modules": [ - "Sites" + "Identity.Governance" ], "method": "POST", - "uri": "/groups/{}/sites/{}/termstore/sets/{}/children/{}/children", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/groups/{}/sites/{}/termstore/sets/{}/children" + "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles" ], "counterpartShipsAs": [ - "New-MgGroupSiteTermStoreSetChild" + "New-MgEntitlementManagementResourceRequestCatalogResourceRole" ] } }, { "apiVersion": "v1.0", "modules": [ - "Sites" + "Identity.Governance" ], "method": "POST", - "uri": "/groups/{}/sites/{}/termstore/sets/{}/children/{}/relations", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource/refresh", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/groups/{}/sites/{}/termstore/sets/{}/children/{}/children/{}/relations" + "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/refresh" ], "counterpartShipsAs": [ - "New-MgGroupSiteTermStoreSetChildRelation" + "Update-MgEntitlementManagementResourceRequestCatalogResourceRoleResource" ] } }, { "apiVersion": "v1.0", "modules": [ - "Sites" + "Identity.Governance" ], "method": "POST", - "uri": "/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource/scopes", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children" + "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes" ], "counterpartShipsAs": [ - "New-MgGroupSiteTermStoreSetParentGroupSetChild" + "New-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScope" ] } }, { "apiVersion": "v1.0", "modules": [ - "Sites" + "Identity.Governance" ], "method": "POST", - "uri": "/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/relations", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource/scopes/{}/resource/refresh", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/groups/{}/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations" + "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes/{}/resource/refresh" ], "counterpartShipsAs": [ - "New-MgGroupSiteTermStoreSetParentGroupSetChildRelation" + "Update-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResource" ] } }, { "apiVersion": "v1.0", "modules": [ - "Groups" + "Identity.Governance" ], "method": "POST", - "uri": "/groupsettings", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/groups/{}/settings" + "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes" ], "counterpartShipsAs": [ - "New-MgGroupSetting" + "New-MgEntitlementManagementResourceRequestCatalogResourceScope" ] } }, @@ -3515,17 +5534,17 @@ "Identity.Governance" ], "method": "POST", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/refresh", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles" + "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/refresh" ], "counterpartShipsAs": [ - "New-MgEntitlementManagementCatalogResourceRole" + "Update-MgEntitlementManagementResourceRequestCatalogResourceScopeResource" ] } }, @@ -3535,17 +5554,17 @@ "Identity.Governance" ], "method": "POST", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/roles/{}/resource/scopes", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/roles", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes" + "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles" ], "counterpartShipsAs": [ - "New-MgEntitlementManagementCatalogResourceRoleResourceScope" + "New-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRole" ] } }, @@ -3555,117 +5574,109 @@ "Identity.Governance" ], "method": "POST", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/roles/{}/resource/refresh", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes" + "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles/{}/resource/refresh" ], "counterpartShipsAs": [ - "New-MgEntitlementManagementCatalogResourceScope" + "Update-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResource" ] } }, { "apiVersion": "v1.0", "modules": [ - "Identity.Governance" + "Security" ], "method": "POST", - "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/roles", + "uri": "/security/cases/ediscoverycases/{}/custodians/microsoft.graph.security.applyhold", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles" + "/security/cases/ediscoverycases/{}/custodians/{}/microsoft.graph.security.applyhold" ], - "counterpartShipsAs": [ - "New-MgEntitlementManagementCatalogResourceScopeResourceRole" - ] + "counterpartShipsAs": [] } }, { "apiVersion": "v1.0", "modules": [ - "Identity.Governance" + "Security" ], "method": "POST", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles", + "uri": "/security/cases/ediscoverycases/{}/custodians/microsoft.graph.security.removehold", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles" + "/security/cases/ediscoverycases/{}/custodians/{}/microsoft.graph.security.removehold" ], - "counterpartShipsAs": [ - "New-MgEntitlementManagementResourceRequestCatalogResourceRole" - ] + "counterpartShipsAs": [] } }, { "apiVersion": "v1.0", "modules": [ - "Identity.Governance" + "Security" ], "method": "POST", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/roles/{}/resource/scopes", + "uri": "/security/cases/ediscoverycases/{}/noncustodialdatasources/microsoft.graph.security.applyhold", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes" + "/security/cases/ediscoverycases/{}/noncustodialdatasources/{}/microsoft.graph.security.applyhold" ], - "counterpartShipsAs": [ - "New-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScope" - ] + "counterpartShipsAs": [] } }, { "apiVersion": "v1.0", "modules": [ - "Identity.Governance" + "Security" ], "method": "POST", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes", + "uri": "/security/cases/ediscoverycases/{}/noncustodialdatasources/microsoft.graph.security.removehold", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes" + "/security/cases/ediscoverycases/{}/noncustodialdatasources/{}/microsoft.graph.security.removehold" ], - "counterpartShipsAs": [ - "New-MgEntitlementManagementResourceRequestCatalogResourceScope" - ] + "counterpartShipsAs": [] } }, { "apiVersion": "v1.0", "modules": [ - "Identity.Governance" + "Applications" ], "method": "POST", - "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/roles", + "uri": "/serviceprincipals/{}/synchronization/jobs/validatecredentials", "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ - "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles" + "/serviceprincipals/{}/synchronization/jobs/{}/validatecredentials" ], "counterpartShipsAs": [ - "New-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRole" + "Test-MgServicePrincipalSynchronizationJobCredential" ] } }, @@ -3679,7 +5690,7 @@ "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ "/sites/{}/termstore/groups/{}/sets/{}/children" @@ -3699,7 +5710,7 @@ "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ "/sites/{}/termstore/groups/{}/sets/{}/children/{}/children/{}/relations" @@ -3719,7 +5730,7 @@ "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ "/sites/{}/termstore/sets/{}/children" @@ -3739,7 +5750,7 @@ "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ "/sites/{}/termstore/sets/{}/children/{}/children/{}/relations" @@ -3759,7 +5770,7 @@ "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ "/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children" @@ -3779,7 +5790,7 @@ "action": "suppress", "evidence": { "shipsAs": [ - null + [] ], "counterpartUris": [ "/sites/{}/termstore/sets/{}/parentgroup/sets/{}/children/{}/children/{}/relations" @@ -3788,5 +5799,61 @@ "New-MgSiteTermStoreSetParentGroupSetChildRelation" ] } + }, + { + "apiVersion": "v1.0", + "modules": [ + "Calendar" + ], + "method": "POST", + "uri": "/users/{}/calendar/getschedule", + "action": "suppress", + "evidence": { + "shipsAs": [ + [] + ], + "counterpartUris": [ + "/users/{}/calendars/{}/getschedule" + ], + "counterpartShipsAs": [] + } + }, + { + "apiVersion": "v1.0", + "modules": [ + "Calendar" + ], + "method": "POST", + "uri": "/users/{}/calendars/{}/getschedule", + "action": "suppress", + "evidence": { + "shipsAs": [ + [] + ], + "counterpartUris": [ + "/users/{}/calendar/getschedule" + ], + "counterpartShipsAs": [] + } + }, + { + "apiVersion": "v1.0", + "modules": [ + "Calendar" + ], + "method": "POST", + "uri": "/users/{}/calendars/{}/permanentdelete", + "action": "suppress", + "evidence": { + "shipsAs": [ + [] + ], + "counterpartUris": [ + "/users/{}/calendar/permanentdelete" + ], + "counterpartShipsAs": [ + "Remove-MgUserCalendarPermanent" + ] + } } ] diff --git a/tools/WrapperGenerator/data/parity-input-ledger.v1.0.csv b/tools/WrapperGenerator/data/parity-input-ledger.v1.0.csv new file mode 100644 index 00000000000..91ba24c8ca8 --- /dev/null +++ b/tools/WrapperGenerator/data/parity-input-ledger.v1.0.csv @@ -0,0 +1,13947 @@ +"Module","File","ApiVersion","Command","Method","Uri","Disposition","OracleCommands" +"Applications","GetMgApplication_Get.g.cs","v1.0","Get-MgApplication","GET","/applications/{param}","matched","Get-MgApplication" +"Applications","GetMgApplication_List.g.cs","v1.0","Get-MgApplication","GET","/applications","matched","Get-MgApplication" +"Applications","GetMgApplication.g.cs","v1.0","Get-MgApplication","","","dispatcher","" +"Applications","GetMgApplicationAppManagementPolicy.g.cs","v1.0","Get-MgApplicationAppManagementPolicy","GET","/applications/{param}/appManagementPolicies","matched","Get-MgApplicationAppManagementPolicy" +"Applications","GetMgApplicationAppManagementPolicyByRef.g.cs","v1.0","Get-MgApplicationAppManagementPolicyByRef","GET","/applications/{param}/appManagementPolicies/$ref","matched","Get-MgApplicationAppManagementPolicyByRef" +"Applications","GetMgApplicationAppManagementPolicyCount.g.cs","v1.0","Get-MgApplicationAppManagementPolicyCount","GET","/applications/{param}/appManagementPolicies/$count","matched","Get-MgApplicationAppManagementPolicyCount" +"Applications","GetMgApplicationCount.g.cs","v1.0","Get-MgApplicationCount","GET","/applications/$count","matched","Get-MgApplicationCount" +"Applications","GetMgApplicationCreatedOnBehalfOf.g.cs","v1.0","Get-MgApplicationCreatedOnBehalfOf","GET","/applications/{param}/createdOnBehalfOf","matched","Get-MgApplicationCreatedOnBehalfOf" +"Applications","GetMgApplicationDelta.g.cs","v1.0","Get-MgApplicationDelta","GET","/applications/delta","matched","Get-MgApplicationDelta" +"Applications","GetMgApplicationExtensionProperty_Get.g.cs","v1.0","Get-MgApplicationExtensionProperty","GET","/applications/{param}/extensionProperties/{param}","matched","Get-MgApplicationExtensionProperty" +"Applications","GetMgApplicationExtensionProperty_List.g.cs","v1.0","Get-MgApplicationExtensionProperty","GET","/applications/{param}/extensionProperties","matched","Get-MgApplicationExtensionProperty" +"Applications","GetMgApplicationExtensionProperty.g.cs","v1.0","Get-MgApplicationExtensionProperty","","","dispatcher","" +"Applications","GetMgApplicationExtensionPropertyCount.g.cs","v1.0","Get-MgApplicationExtensionPropertyCount","GET","/applications/{param}/extensionProperties/$count","matched","Get-MgApplicationExtensionPropertyCount" +"Applications","GetMgApplicationFederatedIdentityCredential_Get.g.cs","v1.0","Get-MgApplicationFederatedIdentityCredential","GET","/applications/{param}/federatedIdentityCredentials/{param}","matched","Get-MgApplicationFederatedIdentityCredential" +"Applications","GetMgApplicationFederatedIdentityCredential_List.g.cs","v1.0","Get-MgApplicationFederatedIdentityCredential","GET","/applications/{param}/federatedIdentityCredentials","matched","Get-MgApplicationFederatedIdentityCredential" +"Applications","GetMgApplicationFederatedIdentityCredential.g.cs","v1.0","Get-MgApplicationFederatedIdentityCredential","","","dispatcher","" +"Applications","GetMgApplicationFederatedIdentityCredentialCount.g.cs","v1.0","Get-MgApplicationFederatedIdentityCredentialCount","GET","/applications/{param}/federatedIdentityCredentials/$count","matched","Get-MgApplicationFederatedIdentityCredentialCount" +"Applications","GetMgApplicationHomeRealmDiscoveryPolicy_Get.g.cs","v1.0","Get-MgApplicationHomeRealmDiscoveryPolicy","GET","/applications/{param}/homeRealmDiscoveryPolicies/{param}","matched","Get-MgApplicationHomeRealmDiscoveryPolicy" +"Applications","GetMgApplicationHomeRealmDiscoveryPolicy_List.g.cs","v1.0","Get-MgApplicationHomeRealmDiscoveryPolicy","GET","/applications/{param}/homeRealmDiscoveryPolicies","matched","Get-MgApplicationHomeRealmDiscoveryPolicy" +"Applications","GetMgApplicationHomeRealmDiscoveryPolicy.g.cs","v1.0","Get-MgApplicationHomeRealmDiscoveryPolicy","","","dispatcher","" +"Applications","GetMgApplicationHomeRealmDiscoveryPolicyCount.g.cs","v1.0","Get-MgApplicationHomeRealmDiscoveryPolicyCount","GET","/applications/{param}/homeRealmDiscoveryPolicies/$count","matched","Get-MgApplicationHomeRealmDiscoveryPolicyCount" +"Applications","GetMgApplicationOwner.g.cs","v1.0","Get-MgApplicationOwner","GET","/applications/{param}/owners","matched","Get-MgApplicationOwner" +"Applications","GetMgApplicationOwnerAsAppRoleAssignment_Get.g.cs","v1.0","Get-MgApplicationOwnerAsAppRoleAssignment","GET","","cast","" +"Applications","GetMgApplicationOwnerAsAppRoleAssignment_List.g.cs","v1.0","Get-MgApplicationOwnerAsAppRoleAssignment","GET","","cast","" +"Applications","GetMgApplicationOwnerAsAppRoleAssignment.g.cs","v1.0","Get-MgApplicationOwnerAsAppRoleAssignment","","","dispatcher","" +"Applications","GetMgApplicationOwnerAsAppRoleAssignmentCount.g.cs","v1.0","Get-MgApplicationOwnerAsAppRoleAssignmentCount","GET","","cast","" +"Applications","GetMgApplicationOwnerAsEndpoint_Get.g.cs","v1.0","Get-MgApplicationOwnerAsEndpoint","GET","","cast","" +"Applications","GetMgApplicationOwnerAsEndpoint_List.g.cs","v1.0","Get-MgApplicationOwnerAsEndpoint","GET","","cast","" +"Applications","GetMgApplicationOwnerAsEndpoint.g.cs","v1.0","Get-MgApplicationOwnerAsEndpoint","","","dispatcher","" +"Applications","GetMgApplicationOwnerAsEndpointCount.g.cs","v1.0","Get-MgApplicationOwnerAsEndpointCount","GET","","cast","" +"Applications","GetMgApplicationOwnerAsServicePrincipal_Get.g.cs","v1.0","Get-MgApplicationOwnerAsServicePrincipal","GET","","cast","" +"Applications","GetMgApplicationOwnerAsServicePrincipal_List.g.cs","v1.0","Get-MgApplicationOwnerAsServicePrincipal","GET","","cast","" +"Applications","GetMgApplicationOwnerAsServicePrincipal.g.cs","v1.0","Get-MgApplicationOwnerAsServicePrincipal","","","dispatcher","" +"Applications","GetMgApplicationOwnerAsServicePrincipalCount.g.cs","v1.0","Get-MgApplicationOwnerAsServicePrincipalCount","GET","","cast","" +"Applications","GetMgApplicationOwnerAsUser_Get.g.cs","v1.0","Get-MgApplicationOwnerAsUser","GET","","cast","" +"Applications","GetMgApplicationOwnerAsUser_List.g.cs","v1.0","Get-MgApplicationOwnerAsUser","GET","","cast","" +"Applications","GetMgApplicationOwnerAsUser.g.cs","v1.0","Get-MgApplicationOwnerAsUser","","","dispatcher","" +"Applications","GetMgApplicationOwnerAsUserCount.g.cs","v1.0","Get-MgApplicationOwnerAsUserCount","GET","","cast","" +"Applications","GetMgApplicationOwnerByRef.g.cs","v1.0","Get-MgApplicationOwnerByRef","GET","/applications/{param}/owners/$ref","matched","Get-MgApplicationOwnerByRef" +"Applications","GetMgApplicationOwnerCount.g.cs","v1.0","Get-MgApplicationOwnerCount","GET","/applications/{param}/owners/$count","matched","Get-MgApplicationOwnerCount" +"Applications","GetMgApplicationSynchronization.g.cs","v1.0","Get-MgApplicationSynchronization","GET","/applications/{param}/synchronization","matched","Get-MgApplicationSynchronization" +"Applications","GetMgApplicationSynchronizationJob_Get.g.cs","v1.0","Get-MgApplicationSynchronizationJob","GET","/applications/{param}/synchronization/jobs/{param}","matched","Get-MgApplicationSynchronizationJob" +"Applications","GetMgApplicationSynchronizationJob_List.g.cs","v1.0","Get-MgApplicationSynchronizationJob","GET","/applications/{param}/synchronization/jobs","matched","Get-MgApplicationSynchronizationJob" +"Applications","GetMgApplicationSynchronizationJob.g.cs","v1.0","Get-MgApplicationSynchronizationJob","","","dispatcher","" +"Applications","GetMgApplicationSynchronizationJobBulkUpload.g.cs","v1.0","Get-MgApplicationSynchronizationJobBulkUpload","GET","/applications/{param}/synchronization/jobs/{param}/bulkUpload","matched","Get-MgApplicationSynchronizationJobBulkUpload" +"Applications","GetMgApplicationSynchronizationJobBulkUploadContent.g.cs","v1.0","Get-MgApplicationSynchronizationJobBulkUploadContent","GET","/applications/{param}/synchronization/jobs/{param}/bulkUpload/$value","matched","Get-MgApplicationSynchronizationJobBulkUploadContent" +"Applications","GetMgApplicationSynchronizationJobCount.g.cs","v1.0","Get-MgApplicationSynchronizationJobCount","GET","/applications/{param}/synchronization/jobs/$count","matched","Get-MgApplicationSynchronizationJobCount" +"Applications","GetMgApplicationSynchronizationJobSchema.g.cs","v1.0","Get-MgApplicationSynchronizationJobSchema","GET","/applications/{param}/synchronization/jobs/{param}/schema","matched","Get-MgApplicationSynchronizationJobSchema" +"Applications","GetMgApplicationSynchronizationJobSchemaDirectory_Get.g.cs","v1.0","Get-MgApplicationSynchronizationJobSchemaDirectory","GET","/applications/{param}/synchronization/jobs/{param}/schema/directories/{param}","matched","Get-MgApplicationSynchronizationJobSchemaDirectory" +"Applications","GetMgApplicationSynchronizationJobSchemaDirectory_List.g.cs","v1.0","Get-MgApplicationSynchronizationJobSchemaDirectory","GET","/applications/{param}/synchronization/jobs/{param}/schema/directories","matched","Get-MgApplicationSynchronizationJobSchemaDirectory" +"Applications","GetMgApplicationSynchronizationJobSchemaDirectory.g.cs","v1.0","Get-MgApplicationSynchronizationJobSchemaDirectory","","","dispatcher","" +"Applications","GetMgApplicationSynchronizationJobSchemaDirectoryCount.g.cs","v1.0","Get-MgApplicationSynchronizationJobSchemaDirectoryCount","GET","/applications/{param}/synchronization/jobs/{param}/schema/directories/$count","matched","Get-MgApplicationSynchronizationJobSchemaDirectoryCount" +"Applications","GetMgApplicationSynchronizationJobSchemaFilterOperators.g.cs","v1.0","Get-MgApplicationSynchronizationJobSchemaFilterOperators","GET","/applications/{param}/synchronization/jobs/{param}/schema/filterOperators","mismatch","Invoke-MgFilterApplicationSynchronizationJobSchemaOperator" +"Applications","GetMgApplicationSynchronizationJobSchemaFunctions.g.cs","v1.0","Get-MgApplicationSynchronizationJobSchemaFunctions","GET","/applications/{param}/synchronization/jobs/{param}/schema/functions","mismatch","Invoke-MgFunctionApplicationSynchronizationJobSchema" +"Applications","GetMgApplicationSynchronizationSecretCount.g.cs","v1.0","Get-MgApplicationSynchronizationSecretCount","GET","/applications/{param}/synchronization/secrets/$count","matched","Get-MgApplicationSynchronizationSecretCount" +"Applications","GetMgApplicationSynchronizationTemplate_Get.g.cs","v1.0","Get-MgApplicationSynchronizationTemplate","GET","/applications/{param}/synchronization/templates/{param}","matched","Get-MgApplicationSynchronizationTemplate" +"Applications","GetMgApplicationSynchronizationTemplate_List.g.cs","v1.0","Get-MgApplicationSynchronizationTemplate","GET","/applications/{param}/synchronization/templates","matched","Get-MgApplicationSynchronizationTemplate" +"Applications","GetMgApplicationSynchronizationTemplate.g.cs","v1.0","Get-MgApplicationSynchronizationTemplate","","","dispatcher","" +"Applications","GetMgApplicationSynchronizationTemplateCount.g.cs","v1.0","Get-MgApplicationSynchronizationTemplateCount","GET","/applications/{param}/synchronization/templates/$count","matched","Get-MgApplicationSynchronizationTemplateCount" +"Applications","GetMgApplicationSynchronizationTemplateSchema.g.cs","v1.0","Get-MgApplicationSynchronizationTemplateSchema","GET","/applications/{param}/synchronization/templates/{param}/schema","matched","Get-MgApplicationSynchronizationTemplateSchema" +"Applications","GetMgApplicationSynchronizationTemplateSchemaDirectory_Get.g.cs","v1.0","Get-MgApplicationSynchronizationTemplateSchemaDirectory","GET","/applications/{param}/synchronization/templates/{param}/schema/directories/{param}","matched","Get-MgApplicationSynchronizationTemplateSchemaDirectory" +"Applications","GetMgApplicationSynchronizationTemplateSchemaDirectory_List.g.cs","v1.0","Get-MgApplicationSynchronizationTemplateSchemaDirectory","GET","/applications/{param}/synchronization/templates/{param}/schema/directories","matched","Get-MgApplicationSynchronizationTemplateSchemaDirectory" +"Applications","GetMgApplicationSynchronizationTemplateSchemaDirectory.g.cs","v1.0","Get-MgApplicationSynchronizationTemplateSchemaDirectory","","","dispatcher","" +"Applications","GetMgApplicationSynchronizationTemplateSchemaDirectoryCount.g.cs","v1.0","Get-MgApplicationSynchronizationTemplateSchemaDirectoryCount","GET","/applications/{param}/synchronization/templates/{param}/schema/directories/$count","matched","Get-MgApplicationSynchronizationTemplateSchemaDirectoryCount" +"Applications","GetMgApplicationSynchronizationTemplateSchemaFilterOperators.g.cs","v1.0","Get-MgApplicationSynchronizationTemplateSchemaFilterOperators","GET","/applications/{param}/synchronization/templates/{param}/schema/filterOperators","mismatch","Invoke-MgFilterApplicationSynchronizationTemplateSchemaOperator" +"Applications","GetMgApplicationSynchronizationTemplateSchemaFunctions.g.cs","v1.0","Get-MgApplicationSynchronizationTemplateSchemaFunctions","GET","/applications/{param}/synchronization/templates/{param}/schema/functions","mismatch","Invoke-MgFunctionApplicationSynchronizationTemplateSchema" +"Applications","GetMgApplicationTemplate_Get.g.cs","v1.0","Get-MgApplicationTemplate","GET","/applicationTemplates/{param}","matched","Get-MgApplicationTemplate" +"Applications","GetMgApplicationTemplate_List.g.cs","v1.0","Get-MgApplicationTemplate","GET","/applicationTemplates","matched","Get-MgApplicationTemplate" +"Applications","GetMgApplicationTemplate.g.cs","v1.0","Get-MgApplicationTemplate","","","dispatcher","" +"Applications","GetMgApplicationTemplateCount.g.cs","v1.0","Get-MgApplicationTemplateCount","GET","/applicationTemplates/$count","matched","Get-MgApplicationTemplateCount" +"Applications","GetMgApplicationTokenIssuancePolicy.g.cs","v1.0","Get-MgApplicationTokenIssuancePolicy","GET","/applications/{param}/tokenIssuancePolicies","matched","Get-MgApplicationTokenIssuancePolicy" +"Applications","GetMgApplicationTokenIssuancePolicyByRef.g.cs","v1.0","Get-MgApplicationTokenIssuancePolicyByRef","GET","/applications/{param}/tokenIssuancePolicies/$ref","matched","Get-MgApplicationTokenIssuancePolicyByRef" +"Applications","GetMgApplicationTokenIssuancePolicyCount.g.cs","v1.0","Get-MgApplicationTokenIssuancePolicyCount","GET","/applications/{param}/tokenIssuancePolicies/$count","matched","Get-MgApplicationTokenIssuancePolicyCount" +"Applications","GetMgApplicationTokenLifetimePolicy.g.cs","v1.0","Get-MgApplicationTokenLifetimePolicy","GET","/applications/{param}/tokenLifetimePolicies","matched","Get-MgApplicationTokenLifetimePolicy" +"Applications","GetMgApplicationTokenLifetimePolicyByRef.g.cs","v1.0","Get-MgApplicationTokenLifetimePolicyByRef","GET","/applications/{param}/tokenLifetimePolicies/$ref","matched","Get-MgApplicationTokenLifetimePolicyByRef" +"Applications","GetMgApplicationTokenLifetimePolicyCount.g.cs","v1.0","Get-MgApplicationTokenLifetimePolicyCount","GET","/applications/{param}/tokenLifetimePolicies/$count","matched","Get-MgApplicationTokenLifetimePolicyCount" +"Applications","GetMgGroupAppRoleAssignment_Get.g.cs","v1.0","Get-MgGroupAppRoleAssignment","GET","/groups/{param}/appRoleAssignments/{param}","matched","Get-MgGroupAppRoleAssignment" +"Applications","GetMgGroupAppRoleAssignment_List.g.cs","v1.0","Get-MgGroupAppRoleAssignment","GET","/groups/{param}/appRoleAssignments","matched","Get-MgGroupAppRoleAssignment" +"Applications","GetMgGroupAppRoleAssignment.g.cs","v1.0","Get-MgGroupAppRoleAssignment","","","dispatcher","" +"Applications","GetMgGroupAppRoleAssignmentCount.g.cs","v1.0","Get-MgGroupAppRoleAssignmentCount","GET","/groups/{param}/appRoleAssignments/$count","matched","Get-MgGroupAppRoleAssignmentCount" +"Applications","GetMgServicePrincipal_Get.g.cs","v1.0","Get-MgServicePrincipal","GET","/servicePrincipals/{param}","matched","Get-MgServicePrincipal" +"Applications","GetMgServicePrincipal_List.g.cs","v1.0","Get-MgServicePrincipal","GET","/servicePrincipals","matched","Get-MgServicePrincipal" +"Applications","GetMgServicePrincipal.g.cs","v1.0","Get-MgServicePrincipal","","","dispatcher","" +"Applications","GetMgServicePrincipalAppManagementPolicy_Get.g.cs","v1.0","Get-MgServicePrincipalAppManagementPolicy","GET","/servicePrincipals/{param}/appManagementPolicies/{param}","matched","Get-MgServicePrincipalAppManagementPolicy" +"Applications","GetMgServicePrincipalAppManagementPolicy_List.g.cs","v1.0","Get-MgServicePrincipalAppManagementPolicy","GET","/servicePrincipals/{param}/appManagementPolicies","matched","Get-MgServicePrincipalAppManagementPolicy" +"Applications","GetMgServicePrincipalAppManagementPolicy.g.cs","v1.0","Get-MgServicePrincipalAppManagementPolicy","","","dispatcher","" +"Applications","GetMgServicePrincipalAppManagementPolicyCount.g.cs","v1.0","Get-MgServicePrincipalAppManagementPolicyCount","GET","/servicePrincipals/{param}/appManagementPolicies/$count","matched","Get-MgServicePrincipalAppManagementPolicyCount" +"Applications","GetMgServicePrincipalAppRoleAssignedTo_Get.g.cs","v1.0","Get-MgServicePrincipalAppRoleAssignedTo","GET","/servicePrincipals/{param}/appRoleAssignedTo/{param}","matched","Get-MgServicePrincipalAppRoleAssignedTo" +"Applications","GetMgServicePrincipalAppRoleAssignedTo_List.g.cs","v1.0","Get-MgServicePrincipalAppRoleAssignedTo","GET","/servicePrincipals/{param}/appRoleAssignedTo","matched","Get-MgServicePrincipalAppRoleAssignedTo" +"Applications","GetMgServicePrincipalAppRoleAssignedTo.g.cs","v1.0","Get-MgServicePrincipalAppRoleAssignedTo","","","dispatcher","" +"Applications","GetMgServicePrincipalAppRoleAssignedToCount.g.cs","v1.0","Get-MgServicePrincipalAppRoleAssignedToCount","GET","/servicePrincipals/{param}/appRoleAssignedTo/$count","matched","Get-MgServicePrincipalAppRoleAssignedToCount" +"Applications","GetMgServicePrincipalAppRoleAssignment_Get.g.cs","v1.0","Get-MgServicePrincipalAppRoleAssignment","GET","/servicePrincipals/{param}/appRoleAssignments/{param}","matched","Get-MgServicePrincipalAppRoleAssignment" +"Applications","GetMgServicePrincipalAppRoleAssignment_List.g.cs","v1.0","Get-MgServicePrincipalAppRoleAssignment","GET","/servicePrincipals/{param}/appRoleAssignments","matched","Get-MgServicePrincipalAppRoleAssignment" +"Applications","GetMgServicePrincipalAppRoleAssignment.g.cs","v1.0","Get-MgServicePrincipalAppRoleAssignment","","","dispatcher","" +"Applications","GetMgServicePrincipalAppRoleAssignmentCount.g.cs","v1.0","Get-MgServicePrincipalAppRoleAssignmentCount","GET","/servicePrincipals/{param}/appRoleAssignments/$count","matched","Get-MgServicePrincipalAppRoleAssignmentCount" +"Applications","GetMgServicePrincipalClaimMappingPolicy.g.cs","v1.0","Get-MgServicePrincipalClaimMappingPolicy","GET","/servicePrincipals/{param}/claimsMappingPolicies","matched","Get-MgServicePrincipalClaimMappingPolicy" +"Applications","GetMgServicePrincipalClaimMappingPolicyByRef.g.cs","v1.0","Get-MgServicePrincipalClaimMappingPolicyByRef","GET","/servicePrincipals/{param}/claimsMappingPolicies/$ref","matched","Get-MgServicePrincipalClaimMappingPolicyByRef" +"Applications","GetMgServicePrincipalClaimMappingPolicyCount.g.cs","v1.0","Get-MgServicePrincipalClaimMappingPolicyCount","GET","/servicePrincipals/{param}/claimsMappingPolicies/$count","matched","Get-MgServicePrincipalClaimMappingPolicyCount" +"Applications","GetMgServicePrincipalCount.g.cs","v1.0","Get-MgServicePrincipalCount","GET","/servicePrincipals/$count","matched","Get-MgServicePrincipalCount" +"Applications","GetMgServicePrincipalCreatedObject_Get.g.cs","v1.0","Get-MgServicePrincipalCreatedObject","GET","/servicePrincipals/{param}/createdObjects/{param}","matched","Get-MgServicePrincipalCreatedObject" +"Applications","GetMgServicePrincipalCreatedObject_List.g.cs","v1.0","Get-MgServicePrincipalCreatedObject","GET","/servicePrincipals/{param}/createdObjects","matched","Get-MgServicePrincipalCreatedObject" +"Applications","GetMgServicePrincipalCreatedObject.g.cs","v1.0","Get-MgServicePrincipalCreatedObject","","","dispatcher","" +"Applications","GetMgServicePrincipalCreatedObjectAsServicePrincipal_Get.g.cs","v1.0","Get-MgServicePrincipalCreatedObjectAsServicePrincipal","GET","","cast","" +"Applications","GetMgServicePrincipalCreatedObjectAsServicePrincipal_List.g.cs","v1.0","Get-MgServicePrincipalCreatedObjectAsServicePrincipal","GET","","cast","" +"Applications","GetMgServicePrincipalCreatedObjectAsServicePrincipal.g.cs","v1.0","Get-MgServicePrincipalCreatedObjectAsServicePrincipal","","","dispatcher","" +"Applications","GetMgServicePrincipalCreatedObjectAsServicePrincipalCount.g.cs","v1.0","Get-MgServicePrincipalCreatedObjectAsServicePrincipalCount","GET","","cast","" +"Applications","GetMgServicePrincipalCreatedObjectCount.g.cs","v1.0","Get-MgServicePrincipalCreatedObjectCount","GET","/servicePrincipals/{param}/createdObjects/$count","matched","Get-MgServicePrincipalCreatedObjectCount" +"Applications","GetMgServicePrincipalDelegatedPermissionClassification_Get.g.cs","v1.0","Get-MgServicePrincipalDelegatedPermissionClassification","GET","/servicePrincipals/{param}/delegatedPermissionClassifications/{param}","matched","Get-MgServicePrincipalDelegatedPermissionClassification" +"Applications","GetMgServicePrincipalDelegatedPermissionClassification_List.g.cs","v1.0","Get-MgServicePrincipalDelegatedPermissionClassification","GET","/servicePrincipals/{param}/delegatedPermissionClassifications","matched","Get-MgServicePrincipalDelegatedPermissionClassification" +"Applications","GetMgServicePrincipalDelegatedPermissionClassification.g.cs","v1.0","Get-MgServicePrincipalDelegatedPermissionClassification","","","dispatcher","" +"Applications","GetMgServicePrincipalDelegatedPermissionClassificationCount.g.cs","v1.0","Get-MgServicePrincipalDelegatedPermissionClassificationCount","GET","/servicePrincipals/{param}/delegatedPermissionClassifications/$count","matched","Get-MgServicePrincipalDelegatedPermissionClassificationCount" +"Applications","GetMgServicePrincipalDelta.g.cs","v1.0","Get-MgServicePrincipalDelta","GET","/servicePrincipals/delta","matched","Get-MgServicePrincipalDelta" +"Applications","GetMgServicePrincipalEndpoint_Get.g.cs","v1.0","Get-MgServicePrincipalEndpoint","GET","/servicePrincipals/{param}/endpoints/{param}","matched","Get-MgServicePrincipalEndpoint" +"Applications","GetMgServicePrincipalEndpoint_List.g.cs","v1.0","Get-MgServicePrincipalEndpoint","GET","/servicePrincipals/{param}/endpoints","matched","Get-MgServicePrincipalEndpoint" +"Applications","GetMgServicePrincipalEndpoint.g.cs","v1.0","Get-MgServicePrincipalEndpoint","","","dispatcher","" +"Applications","GetMgServicePrincipalEndpointCount.g.cs","v1.0","Get-MgServicePrincipalEndpointCount","GET","/servicePrincipals/{param}/endpoints/$count","matched","Get-MgServicePrincipalEndpointCount" +"Applications","GetMgServicePrincipalFederatedIdentityCredential_Get.g.cs","v1.0","Get-MgServicePrincipalFederatedIdentityCredential","GET","/servicePrincipals/{param}/federatedIdentityCredentials/{param}","no-oracle","" +"Applications","GetMgServicePrincipalFederatedIdentityCredential_List.g.cs","v1.0","Get-MgServicePrincipalFederatedIdentityCredential","GET","/servicePrincipals/{param}/federatedIdentityCredentials","no-oracle","" +"Applications","GetMgServicePrincipalFederatedIdentityCredential.g.cs","v1.0","Get-MgServicePrincipalFederatedIdentityCredential","","","dispatcher","" +"Applications","GetMgServicePrincipalFederatedIdentityCredentialCount.g.cs","v1.0","Get-MgServicePrincipalFederatedIdentityCredentialCount","GET","/servicePrincipals/{param}/federatedIdentityCredentials/$count","no-oracle","" +"Applications","GetMgServicePrincipalHomeRealmDiscoveryPolicy.g.cs","v1.0","Get-MgServicePrincipalHomeRealmDiscoveryPolicy","GET","/servicePrincipals/{param}/homeRealmDiscoveryPolicies","matched","Get-MgServicePrincipalHomeRealmDiscoveryPolicy" +"Applications","GetMgServicePrincipalHomeRealmDiscoveryPolicyByRef.g.cs","v1.0","Get-MgServicePrincipalHomeRealmDiscoveryPolicyByRef","GET","/servicePrincipals/{param}/homeRealmDiscoveryPolicies/$ref","matched","Get-MgServicePrincipalHomeRealmDiscoveryPolicyByRef" +"Applications","GetMgServicePrincipalHomeRealmDiscoveryPolicyCount.g.cs","v1.0","Get-MgServicePrincipalHomeRealmDiscoveryPolicyCount","GET","/servicePrincipals/{param}/homeRealmDiscoveryPolicies/$count","matched","Get-MgServicePrincipalHomeRealmDiscoveryPolicyCount" +"Applications","GetMgServicePrincipalMemberOf_Get.g.cs","v1.0","Get-MgServicePrincipalMemberOf","GET","/servicePrincipals/{param}/memberOf/{param}","matched","Get-MgServicePrincipalMemberOf" +"Applications","GetMgServicePrincipalMemberOf_List.g.cs","v1.0","Get-MgServicePrincipalMemberOf","GET","/servicePrincipals/{param}/memberOf","matched","Get-MgServicePrincipalMemberOf" +"Applications","GetMgServicePrincipalMemberOf.g.cs","v1.0","Get-MgServicePrincipalMemberOf","","","dispatcher","" +"Applications","GetMgServicePrincipalMemberOfAsAdministrativeUnit_Get.g.cs","v1.0","Get-MgServicePrincipalMemberOfAsAdministrativeUnit","GET","","cast","" +"Applications","GetMgServicePrincipalMemberOfAsAdministrativeUnit_List.g.cs","v1.0","Get-MgServicePrincipalMemberOfAsAdministrativeUnit","GET","","cast","" +"Applications","GetMgServicePrincipalMemberOfAsAdministrativeUnit.g.cs","v1.0","Get-MgServicePrincipalMemberOfAsAdministrativeUnit","","","dispatcher","" +"Applications","GetMgServicePrincipalMemberOfAsAdministrativeUnitCount.g.cs","v1.0","Get-MgServicePrincipalMemberOfAsAdministrativeUnitCount","GET","","cast","" +"Applications","GetMgServicePrincipalMemberOfAsDirectoryRole_Get.g.cs","v1.0","Get-MgServicePrincipalMemberOfAsDirectoryRole","GET","","cast","" +"Applications","GetMgServicePrincipalMemberOfAsDirectoryRole_List.g.cs","v1.0","Get-MgServicePrincipalMemberOfAsDirectoryRole","GET","","cast","" +"Applications","GetMgServicePrincipalMemberOfAsDirectoryRole.g.cs","v1.0","Get-MgServicePrincipalMemberOfAsDirectoryRole","","","dispatcher","" +"Applications","GetMgServicePrincipalMemberOfAsDirectoryRoleCount.g.cs","v1.0","Get-MgServicePrincipalMemberOfAsDirectoryRoleCount","GET","","cast","" +"Applications","GetMgServicePrincipalMemberOfAsGroup_Get.g.cs","v1.0","Get-MgServicePrincipalMemberOfAsGroup","GET","","cast","" +"Applications","GetMgServicePrincipalMemberOfAsGroup_List.g.cs","v1.0","Get-MgServicePrincipalMemberOfAsGroup","GET","","cast","" +"Applications","GetMgServicePrincipalMemberOfAsGroup.g.cs","v1.0","Get-MgServicePrincipalMemberOfAsGroup","","","dispatcher","" +"Applications","GetMgServicePrincipalMemberOfAsGroupCount.g.cs","v1.0","Get-MgServicePrincipalMemberOfAsGroupCount","GET","","cast","" +"Applications","GetMgServicePrincipalMemberOfCount.g.cs","v1.0","Get-MgServicePrincipalMemberOfCount","GET","/servicePrincipals/{param}/memberOf/$count","matched","Get-MgServicePrincipalMemberOfCount" +"Applications","GetMgServicePrincipalOauth2PermissionGrant_Get.g.cs","v1.0","Get-MgServicePrincipalOauth2PermissionGrant","GET","/servicePrincipals/{param}/oauth2PermissionGrants/{param}","matched","Get-MgServicePrincipalOauth2PermissionGrant" +"Applications","GetMgServicePrincipalOauth2PermissionGrant_List.g.cs","v1.0","Get-MgServicePrincipalOauth2PermissionGrant","GET","/servicePrincipals/{param}/oauth2PermissionGrants","matched","Get-MgServicePrincipalOauth2PermissionGrant" +"Applications","GetMgServicePrincipalOauth2PermissionGrant.g.cs","v1.0","Get-MgServicePrincipalOauth2PermissionGrant","","","dispatcher","" +"Applications","GetMgServicePrincipalOauth2PermissionGrantCount.g.cs","v1.0","Get-MgServicePrincipalOauth2PermissionGrantCount","GET","/servicePrincipals/{param}/oauth2PermissionGrants/$count","matched","Get-MgServicePrincipalOauth2PermissionGrantCount" +"Applications","GetMgServicePrincipalOwnedObject_Get.g.cs","v1.0","Get-MgServicePrincipalOwnedObject","GET","/servicePrincipals/{param}/ownedObjects/{param}","matched","Get-MgServicePrincipalOwnedObject" +"Applications","GetMgServicePrincipalOwnedObject_List.g.cs","v1.0","Get-MgServicePrincipalOwnedObject","GET","/servicePrincipals/{param}/ownedObjects","matched","Get-MgServicePrincipalOwnedObject" +"Applications","GetMgServicePrincipalOwnedObject.g.cs","v1.0","Get-MgServicePrincipalOwnedObject","","","dispatcher","" +"Applications","GetMgServicePrincipalOwnedObjectAsApplication_Get.g.cs","v1.0","Get-MgServicePrincipalOwnedObjectAsApplication","GET","","cast","" +"Applications","GetMgServicePrincipalOwnedObjectAsApplication_List.g.cs","v1.0","Get-MgServicePrincipalOwnedObjectAsApplication","GET","","cast","" +"Applications","GetMgServicePrincipalOwnedObjectAsApplication.g.cs","v1.0","Get-MgServicePrincipalOwnedObjectAsApplication","","","dispatcher","" +"Applications","GetMgServicePrincipalOwnedObjectAsApplicationCount.g.cs","v1.0","Get-MgServicePrincipalOwnedObjectAsApplicationCount","GET","","cast","" +"Applications","GetMgServicePrincipalOwnedObjectAsAppRoleAssignment_Get.g.cs","v1.0","Get-MgServicePrincipalOwnedObjectAsAppRoleAssignment","GET","","cast","" +"Applications","GetMgServicePrincipalOwnedObjectAsAppRoleAssignment_List.g.cs","v1.0","Get-MgServicePrincipalOwnedObjectAsAppRoleAssignment","GET","","cast","" +"Applications","GetMgServicePrincipalOwnedObjectAsAppRoleAssignment.g.cs","v1.0","Get-MgServicePrincipalOwnedObjectAsAppRoleAssignment","","","dispatcher","" +"Applications","GetMgServicePrincipalOwnedObjectAsAppRoleAssignmentCount.g.cs","v1.0","Get-MgServicePrincipalOwnedObjectAsAppRoleAssignmentCount","GET","","cast","" +"Applications","GetMgServicePrincipalOwnedObjectAsEndpoint_Get.g.cs","v1.0","Get-MgServicePrincipalOwnedObjectAsEndpoint","GET","","cast","" +"Applications","GetMgServicePrincipalOwnedObjectAsEndpoint_List.g.cs","v1.0","Get-MgServicePrincipalOwnedObjectAsEndpoint","GET","","cast","" +"Applications","GetMgServicePrincipalOwnedObjectAsEndpoint.g.cs","v1.0","Get-MgServicePrincipalOwnedObjectAsEndpoint","","","dispatcher","" +"Applications","GetMgServicePrincipalOwnedObjectAsEndpointCount.g.cs","v1.0","Get-MgServicePrincipalOwnedObjectAsEndpointCount","GET","","cast","" +"Applications","GetMgServicePrincipalOwnedObjectAsGroup_Get.g.cs","v1.0","Get-MgServicePrincipalOwnedObjectAsGroup","GET","","cast","" +"Applications","GetMgServicePrincipalOwnedObjectAsGroup_List.g.cs","v1.0","Get-MgServicePrincipalOwnedObjectAsGroup","GET","","cast","" +"Applications","GetMgServicePrincipalOwnedObjectAsGroup.g.cs","v1.0","Get-MgServicePrincipalOwnedObjectAsGroup","","","dispatcher","" +"Applications","GetMgServicePrincipalOwnedObjectAsGroupCount.g.cs","v1.0","Get-MgServicePrincipalOwnedObjectAsGroupCount","GET","","cast","" +"Applications","GetMgServicePrincipalOwnedObjectAsServicePrincipal_Get.g.cs","v1.0","Get-MgServicePrincipalOwnedObjectAsServicePrincipal","GET","","cast","" +"Applications","GetMgServicePrincipalOwnedObjectAsServicePrincipal_List.g.cs","v1.0","Get-MgServicePrincipalOwnedObjectAsServicePrincipal","GET","","cast","" +"Applications","GetMgServicePrincipalOwnedObjectAsServicePrincipal.g.cs","v1.0","Get-MgServicePrincipalOwnedObjectAsServicePrincipal","","","dispatcher","" +"Applications","GetMgServicePrincipalOwnedObjectAsServicePrincipalCount.g.cs","v1.0","Get-MgServicePrincipalOwnedObjectAsServicePrincipalCount","GET","","cast","" +"Applications","GetMgServicePrincipalOwnedObjectCount.g.cs","v1.0","Get-MgServicePrincipalOwnedObjectCount","GET","/servicePrincipals/{param}/ownedObjects/$count","matched","Get-MgServicePrincipalOwnedObjectCount" +"Applications","GetMgServicePrincipalOwner.g.cs","v1.0","Get-MgServicePrincipalOwner","GET","/servicePrincipals/{param}/owners","matched","Get-MgServicePrincipalOwner" +"Applications","GetMgServicePrincipalOwnerAsAppRoleAssignment_Get.g.cs","v1.0","Get-MgServicePrincipalOwnerAsAppRoleAssignment","GET","","cast","" +"Applications","GetMgServicePrincipalOwnerAsAppRoleAssignment_List.g.cs","v1.0","Get-MgServicePrincipalOwnerAsAppRoleAssignment","GET","","cast","" +"Applications","GetMgServicePrincipalOwnerAsAppRoleAssignment.g.cs","v1.0","Get-MgServicePrincipalOwnerAsAppRoleAssignment","","","dispatcher","" +"Applications","GetMgServicePrincipalOwnerAsAppRoleAssignmentCount.g.cs","v1.0","Get-MgServicePrincipalOwnerAsAppRoleAssignmentCount","GET","","cast","" +"Applications","GetMgServicePrincipalOwnerAsEndpoint_Get.g.cs","v1.0","Get-MgServicePrincipalOwnerAsEndpoint","GET","","cast","" +"Applications","GetMgServicePrincipalOwnerAsEndpoint_List.g.cs","v1.0","Get-MgServicePrincipalOwnerAsEndpoint","GET","","cast","" +"Applications","GetMgServicePrincipalOwnerAsEndpoint.g.cs","v1.0","Get-MgServicePrincipalOwnerAsEndpoint","","","dispatcher","" +"Applications","GetMgServicePrincipalOwnerAsEndpointCount.g.cs","v1.0","Get-MgServicePrincipalOwnerAsEndpointCount","GET","","cast","" +"Applications","GetMgServicePrincipalOwnerAsServicePrincipal_Get.g.cs","v1.0","Get-MgServicePrincipalOwnerAsServicePrincipal","GET","","cast","" +"Applications","GetMgServicePrincipalOwnerAsServicePrincipal_List.g.cs","v1.0","Get-MgServicePrincipalOwnerAsServicePrincipal","GET","","cast","" +"Applications","GetMgServicePrincipalOwnerAsServicePrincipal.g.cs","v1.0","Get-MgServicePrincipalOwnerAsServicePrincipal","","","dispatcher","" +"Applications","GetMgServicePrincipalOwnerAsServicePrincipalCount.g.cs","v1.0","Get-MgServicePrincipalOwnerAsServicePrincipalCount","GET","","cast","" +"Applications","GetMgServicePrincipalOwnerAsUser_Get.g.cs","v1.0","Get-MgServicePrincipalOwnerAsUser","GET","","cast","" +"Applications","GetMgServicePrincipalOwnerAsUser_List.g.cs","v1.0","Get-MgServicePrincipalOwnerAsUser","GET","","cast","" +"Applications","GetMgServicePrincipalOwnerAsUser.g.cs","v1.0","Get-MgServicePrincipalOwnerAsUser","","","dispatcher","" +"Applications","GetMgServicePrincipalOwnerAsUserCount.g.cs","v1.0","Get-MgServicePrincipalOwnerAsUserCount","GET","","cast","" +"Applications","GetMgServicePrincipalOwnerByRef.g.cs","v1.0","Get-MgServicePrincipalOwnerByRef","GET","/servicePrincipals/{param}/owners/$ref","matched","Get-MgServicePrincipalOwnerByRef" +"Applications","GetMgServicePrincipalOwnerCount.g.cs","v1.0","Get-MgServicePrincipalOwnerCount","GET","/servicePrincipals/{param}/owners/$count","matched","Get-MgServicePrincipalOwnerCount" +"Applications","GetMgServicePrincipalRemoteDesktopSecurityConfiguration.g.cs","v1.0","Get-MgServicePrincipalRemoteDesktopSecurityConfiguration","GET","/servicePrincipals/{param}/remoteDesktopSecurityConfiguration","matched","Get-MgServicePrincipalRemoteDesktopSecurityConfiguration" +"Applications","GetMgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp_Get.g.cs","v1.0","Get-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp","GET","/servicePrincipals/{param}/remoteDesktopSecurityConfiguration/approvedClientApps/{param}","matched","Get-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp" +"Applications","GetMgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp_List.g.cs","v1.0","Get-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp","GET","/servicePrincipals/{param}/remoteDesktopSecurityConfiguration/approvedClientApps","matched","Get-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp" +"Applications","GetMgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp.g.cs","v1.0","Get-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp","","","dispatcher","" +"Applications","GetMgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientAppCount.g.cs","v1.0","Get-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientAppCount","GET","/servicePrincipals/{param}/remoteDesktopSecurityConfiguration/approvedClientApps/$count","matched","Get-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientAppCount" +"Applications","GetMgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup_Get.g.cs","v1.0","Get-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup","GET","/servicePrincipals/{param}/remoteDesktopSecurityConfiguration/targetDeviceGroups/{param}","matched","Get-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup" +"Applications","GetMgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup_List.g.cs","v1.0","Get-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup","GET","/servicePrincipals/{param}/remoteDesktopSecurityConfiguration/targetDeviceGroups","matched","Get-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup" +"Applications","GetMgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup.g.cs","v1.0","Get-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup","","","dispatcher","" +"Applications","GetMgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroupCount.g.cs","v1.0","Get-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroupCount","GET","/servicePrincipals/{param}/remoteDesktopSecurityConfiguration/targetDeviceGroups/$count","matched","Get-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroupCount" +"Applications","GetMgServicePrincipalSynchronization.g.cs","v1.0","Get-MgServicePrincipalSynchronization","GET","/servicePrincipals/{param}/synchronization","matched","Get-MgServicePrincipalSynchronization" +"Applications","GetMgServicePrincipalSynchronizationJob_Get.g.cs","v1.0","Get-MgServicePrincipalSynchronizationJob","GET","/servicePrincipals/{param}/synchronization/jobs/{param}","matched","Get-MgServicePrincipalSynchronizationJob" +"Applications","GetMgServicePrincipalSynchronizationJob_List.g.cs","v1.0","Get-MgServicePrincipalSynchronizationJob","GET","/servicePrincipals/{param}/synchronization/jobs","matched","Get-MgServicePrincipalSynchronizationJob" +"Applications","GetMgServicePrincipalSynchronizationJob.g.cs","v1.0","Get-MgServicePrincipalSynchronizationJob","","","dispatcher","" +"Applications","GetMgServicePrincipalSynchronizationJobBulkUpload.g.cs","v1.0","Get-MgServicePrincipalSynchronizationJobBulkUpload","GET","/servicePrincipals/{param}/synchronization/jobs/{param}/bulkUpload","matched","Get-MgServicePrincipalSynchronizationJobBulkUpload" +"Applications","GetMgServicePrincipalSynchronizationJobBulkUploadContent.g.cs","v1.0","Get-MgServicePrincipalSynchronizationJobBulkUploadContent","GET","/servicePrincipals/{param}/synchronization/jobs/{param}/bulkUpload/$value","matched","Get-MgServicePrincipalSynchronizationJobBulkUploadContent" +"Applications","GetMgServicePrincipalSynchronizationJobCount.g.cs","v1.0","Get-MgServicePrincipalSynchronizationJobCount","GET","/servicePrincipals/{param}/synchronization/jobs/$count","matched","Get-MgServicePrincipalSynchronizationJobCount" +"Applications","GetMgServicePrincipalSynchronizationJobSchema.g.cs","v1.0","Get-MgServicePrincipalSynchronizationJobSchema","GET","/servicePrincipals/{param}/synchronization/jobs/{param}/schema","matched","Get-MgServicePrincipalSynchronizationJobSchema" +"Applications","GetMgServicePrincipalSynchronizationJobSchemaDirectory_Get.g.cs","v1.0","Get-MgServicePrincipalSynchronizationJobSchemaDirectory","GET","/servicePrincipals/{param}/synchronization/jobs/{param}/schema/directories/{param}","matched","Get-MgServicePrincipalSynchronizationJobSchemaDirectory" +"Applications","GetMgServicePrincipalSynchronizationJobSchemaDirectory_List.g.cs","v1.0","Get-MgServicePrincipalSynchronizationJobSchemaDirectory","GET","/servicePrincipals/{param}/synchronization/jobs/{param}/schema/directories","matched","Get-MgServicePrincipalSynchronizationJobSchemaDirectory" +"Applications","GetMgServicePrincipalSynchronizationJobSchemaDirectory.g.cs","v1.0","Get-MgServicePrincipalSynchronizationJobSchemaDirectory","","","dispatcher","" +"Applications","GetMgServicePrincipalSynchronizationJobSchemaDirectoryCount.g.cs","v1.0","Get-MgServicePrincipalSynchronizationJobSchemaDirectoryCount","GET","/servicePrincipals/{param}/synchronization/jobs/{param}/schema/directories/$count","matched","Get-MgServicePrincipalSynchronizationJobSchemaDirectoryCount" +"Applications","GetMgServicePrincipalSynchronizationJobSchemaFilterOperators.g.cs","v1.0","Get-MgServicePrincipalSynchronizationJobSchemaFilterOperators","GET","/servicePrincipals/{param}/synchronization/jobs/{param}/schema/filterOperators","mismatch","Invoke-MgFilterServicePrincipalSynchronizationJobSchemaOperator" +"Applications","GetMgServicePrincipalSynchronizationJobSchemaFunctions.g.cs","v1.0","Get-MgServicePrincipalSynchronizationJobSchemaFunctions","GET","/servicePrincipals/{param}/synchronization/jobs/{param}/schema/functions","mismatch","Invoke-MgFunctionServicePrincipalSynchronizationJobSchema" +"Applications","GetMgServicePrincipalSynchronizationSecretCount.g.cs","v1.0","Get-MgServicePrincipalSynchronizationSecretCount","GET","/servicePrincipals/{param}/synchronization/secrets/$count","matched","Get-MgServicePrincipalSynchronizationSecretCount" +"Applications","GetMgServicePrincipalSynchronizationTemplate_Get.g.cs","v1.0","Get-MgServicePrincipalSynchronizationTemplate","GET","/servicePrincipals/{param}/synchronization/templates/{param}","matched","Get-MgServicePrincipalSynchronizationTemplate" +"Applications","GetMgServicePrincipalSynchronizationTemplate_List.g.cs","v1.0","Get-MgServicePrincipalSynchronizationTemplate","GET","/servicePrincipals/{param}/synchronization/templates","matched","Get-MgServicePrincipalSynchronizationTemplate" +"Applications","GetMgServicePrincipalSynchronizationTemplate.g.cs","v1.0","Get-MgServicePrincipalSynchronizationTemplate","","","dispatcher","" +"Applications","GetMgServicePrincipalSynchronizationTemplateCount.g.cs","v1.0","Get-MgServicePrincipalSynchronizationTemplateCount","GET","/servicePrincipals/{param}/synchronization/templates/$count","matched","Get-MgServicePrincipalSynchronizationTemplateCount" +"Applications","GetMgServicePrincipalSynchronizationTemplateSchema.g.cs","v1.0","Get-MgServicePrincipalSynchronizationTemplateSchema","GET","/servicePrincipals/{param}/synchronization/templates/{param}/schema","matched","Get-MgServicePrincipalSynchronizationTemplateSchema" +"Applications","GetMgServicePrincipalSynchronizationTemplateSchemaDirectory_Get.g.cs","v1.0","Get-MgServicePrincipalSynchronizationTemplateSchemaDirectory","GET","/servicePrincipals/{param}/synchronization/templates/{param}/schema/directories/{param}","matched","Get-MgServicePrincipalSynchronizationTemplateSchemaDirectory" +"Applications","GetMgServicePrincipalSynchronizationTemplateSchemaDirectory_List.g.cs","v1.0","Get-MgServicePrincipalSynchronizationTemplateSchemaDirectory","GET","/servicePrincipals/{param}/synchronization/templates/{param}/schema/directories","matched","Get-MgServicePrincipalSynchronizationTemplateSchemaDirectory" +"Applications","GetMgServicePrincipalSynchronizationTemplateSchemaDirectory.g.cs","v1.0","Get-MgServicePrincipalSynchronizationTemplateSchemaDirectory","","","dispatcher","" +"Applications","GetMgServicePrincipalSynchronizationTemplateSchemaDirectoryCount.g.cs","v1.0","Get-MgServicePrincipalSynchronizationTemplateSchemaDirectoryCount","GET","/servicePrincipals/{param}/synchronization/templates/{param}/schema/directories/$count","matched","Get-MgServicePrincipalSynchronizationTemplateSchemaDirectoryCount" +"Applications","GetMgServicePrincipalSynchronizationTemplateSchemaFilterOperators.g.cs","v1.0","Get-MgServicePrincipalSynchronizationTemplateSchemaFilterOperators","GET","/servicePrincipals/{param}/synchronization/templates/{param}/schema/filterOperators","mismatch","Invoke-MgFilterServicePrincipalSynchronizationTemplateSchemaOperator" +"Applications","GetMgServicePrincipalSynchronizationTemplateSchemaFunctions.g.cs","v1.0","Get-MgServicePrincipalSynchronizationTemplateSchemaFunctions","GET","/servicePrincipals/{param}/synchronization/templates/{param}/schema/functions","mismatch","Invoke-MgFunctionServicePrincipalSynchronizationTemplateSchema" +"Applications","GetMgServicePrincipalTokenIssuancePolicy.g.cs","v1.0","Get-MgServicePrincipalTokenIssuancePolicy","GET","/servicePrincipals/{param}/tokenIssuancePolicies","matched","Get-MgServicePrincipalTokenIssuancePolicy" +"Applications","GetMgServicePrincipalTokenIssuancePolicyByRef.g.cs","v1.0","Get-MgServicePrincipalTokenIssuancePolicyByRef","GET","/servicePrincipals/{param}/tokenIssuancePolicies/$ref","matched","Get-MgServicePrincipalTokenIssuancePolicyByRef" +"Applications","GetMgServicePrincipalTokenIssuancePolicyCount.g.cs","v1.0","Get-MgServicePrincipalTokenIssuancePolicyCount","GET","/servicePrincipals/{param}/tokenIssuancePolicies/$count","matched","Get-MgServicePrincipalTokenIssuancePolicyCount" +"Applications","GetMgServicePrincipalTokenLifetimePolicy.g.cs","v1.0","Get-MgServicePrincipalTokenLifetimePolicy","GET","/servicePrincipals/{param}/tokenLifetimePolicies","matched","Get-MgServicePrincipalTokenLifetimePolicy" +"Applications","GetMgServicePrincipalTokenLifetimePolicyByRef.g.cs","v1.0","Get-MgServicePrincipalTokenLifetimePolicyByRef","GET","/servicePrincipals/{param}/tokenLifetimePolicies/$ref","matched","Get-MgServicePrincipalTokenLifetimePolicyByRef" +"Applications","GetMgServicePrincipalTokenLifetimePolicyCount.g.cs","v1.0","Get-MgServicePrincipalTokenLifetimePolicyCount","GET","/servicePrincipals/{param}/tokenLifetimePolicies/$count","matched","Get-MgServicePrincipalTokenLifetimePolicyCount" +"Applications","GetMgServicePrincipalTransitiveMemberOf_Get.g.cs","v1.0","Get-MgServicePrincipalTransitiveMemberOf","GET","/servicePrincipals/{param}/transitiveMemberOf/{param}","matched","Get-MgServicePrincipalTransitiveMemberOf" +"Applications","GetMgServicePrincipalTransitiveMemberOf_List.g.cs","v1.0","Get-MgServicePrincipalTransitiveMemberOf","GET","/servicePrincipals/{param}/transitiveMemberOf","matched","Get-MgServicePrincipalTransitiveMemberOf" +"Applications","GetMgServicePrincipalTransitiveMemberOf.g.cs","v1.0","Get-MgServicePrincipalTransitiveMemberOf","","","dispatcher","" +"Applications","GetMgServicePrincipalTransitiveMemberOfAsAdministrativeUnit_Get.g.cs","v1.0","Get-MgServicePrincipalTransitiveMemberOfAsAdministrativeUnit","GET","","cast","" +"Applications","GetMgServicePrincipalTransitiveMemberOfAsAdministrativeUnit_List.g.cs","v1.0","Get-MgServicePrincipalTransitiveMemberOfAsAdministrativeUnit","GET","","cast","" +"Applications","GetMgServicePrincipalTransitiveMemberOfAsAdministrativeUnit.g.cs","v1.0","Get-MgServicePrincipalTransitiveMemberOfAsAdministrativeUnit","","","dispatcher","" +"Applications","GetMgServicePrincipalTransitiveMemberOfAsAdministrativeUnitCount.g.cs","v1.0","Get-MgServicePrincipalTransitiveMemberOfAsAdministrativeUnitCount","GET","","cast","" +"Applications","GetMgServicePrincipalTransitiveMemberOfAsDirectoryRole_Get.g.cs","v1.0","Get-MgServicePrincipalTransitiveMemberOfAsDirectoryRole","GET","","cast","" +"Applications","GetMgServicePrincipalTransitiveMemberOfAsDirectoryRole_List.g.cs","v1.0","Get-MgServicePrincipalTransitiveMemberOfAsDirectoryRole","GET","","cast","" +"Applications","GetMgServicePrincipalTransitiveMemberOfAsDirectoryRole.g.cs","v1.0","Get-MgServicePrincipalTransitiveMemberOfAsDirectoryRole","","","dispatcher","" +"Applications","GetMgServicePrincipalTransitiveMemberOfAsDirectoryRoleCount.g.cs","v1.0","Get-MgServicePrincipalTransitiveMemberOfAsDirectoryRoleCount","GET","","cast","" +"Applications","GetMgServicePrincipalTransitiveMemberOfAsGroup_Get.g.cs","v1.0","Get-MgServicePrincipalTransitiveMemberOfAsGroup","GET","","cast","" +"Applications","GetMgServicePrincipalTransitiveMemberOfAsGroup_List.g.cs","v1.0","Get-MgServicePrincipalTransitiveMemberOfAsGroup","GET","","cast","" +"Applications","GetMgServicePrincipalTransitiveMemberOfAsGroup.g.cs","v1.0","Get-MgServicePrincipalTransitiveMemberOfAsGroup","","","dispatcher","" +"Applications","GetMgServicePrincipalTransitiveMemberOfAsGroupCount.g.cs","v1.0","Get-MgServicePrincipalTransitiveMemberOfAsGroupCount","GET","","cast","" +"Applications","GetMgServicePrincipalTransitiveMemberOfCount.g.cs","v1.0","Get-MgServicePrincipalTransitiveMemberOfCount","GET","/servicePrincipals/{param}/transitiveMemberOf/$count","matched","Get-MgServicePrincipalTransitiveMemberOfCount" +"Applications","GetMgUserAppRoleAssignment_Get.g.cs","v1.0","Get-MgUserAppRoleAssignment","GET","/users/{param}/appRoleAssignments/{param}","matched","Get-MgUserAppRoleAssignment" +"Applications","GetMgUserAppRoleAssignment_List.g.cs","v1.0","Get-MgUserAppRoleAssignment","GET","/users/{param}/appRoleAssignments","matched","Get-MgUserAppRoleAssignment" +"Applications","GetMgUserAppRoleAssignment.g.cs","v1.0","Get-MgUserAppRoleAssignment","","","dispatcher","" +"Applications","GetMgUserAppRoleAssignmentCount.g.cs","v1.0","Get-MgUserAppRoleAssignmentCount","GET","/users/{param}/appRoleAssignments/$count","matched","Get-MgUserAppRoleAssignmentCount" +"Applications","InvokeMgApplicationAddKey.g.cs","v1.0","Invoke-MgApplicationAddKey","POST","/applications/{param}/addKey","mismatch","Add-MgApplicationKey" +"Applications","InvokeMgApplicationAddPassword.g.cs","v1.0","Invoke-MgApplicationAddPassword","POST","/applications/{param}/addPassword","mismatch","Add-MgApplicationPassword" +"Applications","InvokeMgApplicationCheckMemberGroups.g.cs","v1.0","Invoke-MgApplicationCheckMemberGroups","POST","/applications/{param}/checkMemberGroups","mismatch","Confirm-MgApplicationMemberGroup" +"Applications","InvokeMgApplicationCheckMemberObjects.g.cs","v1.0","Invoke-MgApplicationCheckMemberObjects","POST","/applications/{param}/checkMemberObjects","mismatch","Confirm-MgApplicationMemberObject" +"Applications","InvokeMgApplicationGetAvailableExtensionProperties.g.cs","v1.0","Invoke-MgApplicationGetAvailableExtensionProperties","POST","/applications/getAvailableExtensionProperties","no-oracle","" +"Applications","InvokeMgApplicationGetByIds.g.cs","v1.0","Invoke-MgApplicationGetByIds","POST","/applications/getByIds","mismatch","Get-MgApplicationById" +"Applications","InvokeMgApplicationGetMemberGroups.g.cs","v1.0","Invoke-MgApplicationGetMemberGroups","POST","/applications/{param}/getMemberGroups","mismatch","Get-MgApplicationMemberGroup" +"Applications","InvokeMgApplicationGetMemberObjects.g.cs","v1.0","Invoke-MgApplicationGetMemberObjects","POST","/applications/{param}/getMemberObjects","mismatch","Get-MgApplicationMemberObject" +"Applications","InvokeMgApplicationRemoveKey.g.cs","v1.0","Invoke-MgApplicationRemoveKey","POST","/applications/{param}/removeKey","mismatch","Remove-MgApplicationKey" +"Applications","InvokeMgApplicationRemovePassword.g.cs","v1.0","Invoke-MgApplicationRemovePassword","POST","/applications/{param}/removePassword","mismatch","Remove-MgApplicationPassword" +"Applications","InvokeMgApplicationRestore.g.cs","v1.0","Invoke-MgApplicationRestore","POST","/applications/{param}/restore","no-oracle","" +"Applications","InvokeMgApplicationSetVerifiedPublisher.g.cs","v1.0","Invoke-MgApplicationSetVerifiedPublisher","POST","/applications/{param}/setVerifiedPublisher","mismatch","Set-MgApplicationVerifiedPublisher" +"Applications","InvokeMgApplicationSynchronizationAcquireAccessToken.g.cs","v1.0","Invoke-MgApplicationSynchronizationAcquireAccessToken","POST","/applications/{param}/synchronization/acquireAccessToken","mismatch","Get-MgApplicationSynchronizationAccessToken" +"Applications","InvokeMgApplicationSynchronizationJobPause.g.cs","v1.0","Invoke-MgApplicationSynchronizationJobPause","POST","/applications/{param}/synchronization/jobs/{param}/pause","mismatch","Suspend-MgApplicationSynchronizationJob" +"Applications","InvokeMgApplicationSynchronizationJobProvisionOnDemand.g.cs","v1.0","Invoke-MgApplicationSynchronizationJobProvisionOnDemand","POST","/applications/{param}/synchronization/jobs/{param}/provisionOnDemand","mismatch","New-MgApplicationSynchronizationJobOnDemand" +"Applications","InvokeMgApplicationSynchronizationJobRestart.g.cs","v1.0","Invoke-MgApplicationSynchronizationJobRestart","POST","/applications/{param}/synchronization/jobs/{param}/restart","mismatch","Restart-MgApplicationSynchronizationJob" +"Applications","InvokeMgApplicationSynchronizationJobSchemaDirectoryDiscover.g.cs","v1.0","Invoke-MgApplicationSynchronizationJobSchemaDirectoryDiscover","POST","/applications/{param}/synchronization/jobs/{param}/schema/directories/{param}/discover","mismatch","Find-MgApplicationSynchronizationJobSchemaDirectory" +"Applications","InvokeMgApplicationSynchronizationJobSchemaParseExpression.g.cs","v1.0","Invoke-MgApplicationSynchronizationJobSchemaParseExpression","POST","/applications/{param}/synchronization/jobs/{param}/schema/parseExpression","mismatch","Invoke-MgParseApplicationSynchronizationJobSchemaExpression" +"Applications","InvokeMgApplicationSynchronizationJobStart.g.cs","v1.0","Invoke-MgApplicationSynchronizationJobStart","POST","/applications/{param}/synchronization/jobs/{param}/start","mismatch","Start-MgApplicationSynchronizationJob" +"Applications","InvokeMgApplicationSynchronizationJobValidateCredentials.g.cs","v1.0","Invoke-MgApplicationSynchronizationJobValidateCredentials","POST","/applications/{param}/synchronization/jobs/{param}/validateCredentials","mismatch","Test-MgApplicationSynchronizationJobCredential" +"Applications","InvokeMgApplicationSynchronizationTemplateSchemaDirectoryDiscover.g.cs","v1.0","Invoke-MgApplicationSynchronizationTemplateSchemaDirectoryDiscover","POST","/applications/{param}/synchronization/templates/{param}/schema/directories/{param}/discover","mismatch","Find-MgApplicationSynchronizationTemplateSchemaDirectory" +"Applications","InvokeMgApplicationSynchronizationTemplateSchemaParseExpression.g.cs","v1.0","Invoke-MgApplicationSynchronizationTemplateSchemaParseExpression","POST","/applications/{param}/synchronization/templates/{param}/schema/parseExpression","mismatch","Invoke-MgParseApplicationSynchronizationTemplateSchemaExpression" +"Applications","InvokeMgApplicationTemplateInstantiate.g.cs","v1.0","Invoke-MgApplicationTemplateInstantiate","POST","/applicationTemplates/{param}/instantiate","mismatch","Invoke-MgInstantiateApplicationTemplate" +"Applications","InvokeMgApplicationUnsetVerifiedPublisher.g.cs","v1.0","Invoke-MgApplicationUnsetVerifiedPublisher","POST","/applications/{param}/unsetVerifiedPublisher","mismatch","Clear-MgApplicationVerifiedPublisher" +"Applications","InvokeMgApplicationValidateProperties.g.cs","v1.0","Invoke-MgApplicationValidateProperties","POST","/applications/validateProperties","mismatch","Test-MgApplicationProperty" +"Applications","InvokeMgServicePrincipalAddKey.g.cs","v1.0","Invoke-MgServicePrincipalAddKey","POST","/servicePrincipals/{param}/addKey","mismatch","Add-MgServicePrincipalKey" +"Applications","InvokeMgServicePrincipalAddPassword.g.cs","v1.0","Invoke-MgServicePrincipalAddPassword","POST","/servicePrincipals/{param}/addPassword","mismatch","Add-MgServicePrincipalPassword" +"Applications","InvokeMgServicePrincipalAddTokenSigningCertificate.g.cs","v1.0","Invoke-MgServicePrincipalAddTokenSigningCertificate","POST","/servicePrincipals/{param}/addTokenSigningCertificate","mismatch","Add-MgServicePrincipalTokenSigningCertificate" +"Applications","InvokeMgServicePrincipalCheckMemberGroups.g.cs","v1.0","Invoke-MgServicePrincipalCheckMemberGroups","POST","/servicePrincipals/{param}/checkMemberGroups","mismatch","Confirm-MgServicePrincipalMemberGroup" +"Applications","InvokeMgServicePrincipalCheckMemberObjects.g.cs","v1.0","Invoke-MgServicePrincipalCheckMemberObjects","POST","/servicePrincipals/{param}/checkMemberObjects","mismatch","Confirm-MgServicePrincipalMemberObject" +"Applications","InvokeMgServicePrincipalGetAvailableExtensionProperties.g.cs","v1.0","Invoke-MgServicePrincipalGetAvailableExtensionProperties","POST","/servicePrincipals/getAvailableExtensionProperties","no-oracle","" +"Applications","InvokeMgServicePrincipalGetByIds.g.cs","v1.0","Invoke-MgServicePrincipalGetByIds","POST","/servicePrincipals/getByIds","mismatch","Get-MgServicePrincipalById" +"Applications","InvokeMgServicePrincipalGetMemberGroups.g.cs","v1.0","Invoke-MgServicePrincipalGetMemberGroups","POST","/servicePrincipals/{param}/getMemberGroups","mismatch","Get-MgServicePrincipalMemberGroup" +"Applications","InvokeMgServicePrincipalGetMemberObjects.g.cs","v1.0","Invoke-MgServicePrincipalGetMemberObjects","POST","/servicePrincipals/{param}/getMemberObjects","mismatch","Get-MgServicePrincipalMemberObject" +"Applications","InvokeMgServicePrincipalRemoveKey.g.cs","v1.0","Invoke-MgServicePrincipalRemoveKey","POST","/servicePrincipals/{param}/removeKey","mismatch","Remove-MgServicePrincipalKey" +"Applications","InvokeMgServicePrincipalRemovePassword.g.cs","v1.0","Invoke-MgServicePrincipalRemovePassword","POST","/servicePrincipals/{param}/removePassword","mismatch","Remove-MgServicePrincipalPassword" +"Applications","InvokeMgServicePrincipalRestore.g.cs","v1.0","Invoke-MgServicePrincipalRestore","POST","/servicePrincipals/{param}/restore","no-oracle","" +"Applications","InvokeMgServicePrincipalSynchronizationAcquireAccessToken.g.cs","v1.0","Invoke-MgServicePrincipalSynchronizationAcquireAccessToken","POST","/servicePrincipals/{param}/synchronization/acquireAccessToken","mismatch","Get-MgServicePrincipalSynchronizationAccessToken" +"Applications","InvokeMgServicePrincipalSynchronizationJobPause.g.cs","v1.0","Invoke-MgServicePrincipalSynchronizationJobPause","POST","/servicePrincipals/{param}/synchronization/jobs/{param}/pause","mismatch","Suspend-MgServicePrincipalSynchronizationJob" +"Applications","InvokeMgServicePrincipalSynchronizationJobProvisionOnDemand.g.cs","v1.0","Invoke-MgServicePrincipalSynchronizationJobProvisionOnDemand","POST","/servicePrincipals/{param}/synchronization/jobs/{param}/provisionOnDemand","mismatch","New-MgServicePrincipalSynchronizationJobOnDemand" +"Applications","InvokeMgServicePrincipalSynchronizationJobRestart.g.cs","v1.0","Invoke-MgServicePrincipalSynchronizationJobRestart","POST","/servicePrincipals/{param}/synchronization/jobs/{param}/restart","mismatch","Restart-MgServicePrincipalSynchronizationJob" +"Applications","InvokeMgServicePrincipalSynchronizationJobSchemaDirectoryDiscover.g.cs","v1.0","Invoke-MgServicePrincipalSynchronizationJobSchemaDirectoryDiscover","POST","/servicePrincipals/{param}/synchronization/jobs/{param}/schema/directories/{param}/discover","mismatch","Find-MgServicePrincipalSynchronizationJobSchemaDirectory" +"Applications","InvokeMgServicePrincipalSynchronizationJobSchemaParseExpression.g.cs","v1.0","Invoke-MgServicePrincipalSynchronizationJobSchemaParseExpression","POST","/servicePrincipals/{param}/synchronization/jobs/{param}/schema/parseExpression","mismatch","Invoke-MgParseServicePrincipalSynchronizationJobSchemaExpression" +"Applications","InvokeMgServicePrincipalSynchronizationJobStart.g.cs","v1.0","Invoke-MgServicePrincipalSynchronizationJobStart","POST","/servicePrincipals/{param}/synchronization/jobs/{param}/start","mismatch","Start-MgServicePrincipalSynchronizationJob" +"Applications","InvokeMgServicePrincipalSynchronizationJobValidateCredentials.g.cs","v1.0","Invoke-MgServicePrincipalSynchronizationJobValidateCredentials","POST","/servicePrincipals/{param}/synchronization/jobs/{param}/validateCredentials","mismatch","Test-MgServicePrincipalSynchronizationJobCredential" +"Applications","InvokeMgServicePrincipalSynchronizationTemplateSchemaDirectoryDiscover.g.cs","v1.0","Invoke-MgServicePrincipalSynchronizationTemplateSchemaDirectoryDiscover","POST","/servicePrincipals/{param}/synchronization/templates/{param}/schema/directories/{param}/discover","mismatch","Find-MgServicePrincipalSynchronizationTemplateSchemaDirectory" +"Applications","InvokeMgServicePrincipalSynchronizationTemplateSchemaParseExpression.g.cs","v1.0","Invoke-MgServicePrincipalSynchronizationTemplateSchemaParseExpression","POST","/servicePrincipals/{param}/synchronization/templates/{param}/schema/parseExpression","mismatch","Invoke-MgParseServicePrincipalSynchronizationTemplateSchemaExpression" +"Applications","InvokeMgServicePrincipalValidateProperties.g.cs","v1.0","Invoke-MgServicePrincipalValidateProperties","POST","/servicePrincipals/validateProperties","mismatch","Test-MgServicePrincipalProperty" +"Applications","NewMgApplication.g.cs","v1.0","New-MgApplication","POST","/applications","matched","New-MgApplication" +"Applications","NewMgApplicationAppManagementPolicyByRef.g.cs","v1.0","New-MgApplicationAppManagementPolicyByRef","POST","/applications/{param}/appManagementPolicies/$ref","matched","New-MgApplicationAppManagementPolicyByRef" +"Applications","NewMgApplicationExtensionProperty.g.cs","v1.0","New-MgApplicationExtensionProperty","POST","/applications/{param}/extensionProperties","matched","New-MgApplicationExtensionProperty" +"Applications","NewMgApplicationFederatedIdentityCredential.g.cs","v1.0","New-MgApplicationFederatedIdentityCredential","POST","/applications/{param}/federatedIdentityCredentials","matched","New-MgApplicationFederatedIdentityCredential" +"Applications","NewMgApplicationOwnerByRef.g.cs","v1.0","New-MgApplicationOwnerByRef","POST","/applications/{param}/owners/$ref","matched","New-MgApplicationOwnerByRef" +"Applications","NewMgApplicationSynchronizationJob.g.cs","v1.0","New-MgApplicationSynchronizationJob","POST","/applications/{param}/synchronization/jobs","matched","New-MgApplicationSynchronizationJob" +"Applications","NewMgApplicationSynchronizationJobSchemaDirectory.g.cs","v1.0","New-MgApplicationSynchronizationJobSchemaDirectory","POST","/applications/{param}/synchronization/jobs/{param}/schema/directories","matched","New-MgApplicationSynchronizationJobSchemaDirectory" +"Applications","NewMgApplicationSynchronizationTemplate.g.cs","v1.0","New-MgApplicationSynchronizationTemplate","POST","/applications/{param}/synchronization/templates","matched","New-MgApplicationSynchronizationTemplate" +"Applications","NewMgApplicationSynchronizationTemplateSchemaDirectory.g.cs","v1.0","New-MgApplicationSynchronizationTemplateSchemaDirectory","POST","/applications/{param}/synchronization/templates/{param}/schema/directories","matched","New-MgApplicationSynchronizationTemplateSchemaDirectory" +"Applications","NewMgApplicationTokenIssuancePolicyByRef.g.cs","v1.0","New-MgApplicationTokenIssuancePolicyByRef","POST","/applications/{param}/tokenIssuancePolicies/$ref","matched","New-MgApplicationTokenIssuancePolicyByRef" +"Applications","NewMgApplicationTokenLifetimePolicyByRef.g.cs","v1.0","New-MgApplicationTokenLifetimePolicyByRef","POST","/applications/{param}/tokenLifetimePolicies/$ref","matched","New-MgApplicationTokenLifetimePolicyByRef" +"Applications","NewMgGroupAppRoleAssignment.g.cs","v1.0","New-MgGroupAppRoleAssignment","POST","/groups/{param}/appRoleAssignments","matched","New-MgGroupAppRoleAssignment" +"Applications","NewMgServicePrincipal.g.cs","v1.0","New-MgServicePrincipal","POST","/servicePrincipals","matched","New-MgServicePrincipal" +"Applications","NewMgServicePrincipalAppRoleAssignedTo.g.cs","v1.0","New-MgServicePrincipalAppRoleAssignedTo","POST","/servicePrincipals/{param}/appRoleAssignedTo","matched","New-MgServicePrincipalAppRoleAssignedTo" +"Applications","NewMgServicePrincipalAppRoleAssignment.g.cs","v1.0","New-MgServicePrincipalAppRoleAssignment","POST","/servicePrincipals/{param}/appRoleAssignments","matched","New-MgServicePrincipalAppRoleAssignment" +"Applications","NewMgServicePrincipalClaimMappingPolicyByRef.g.cs","v1.0","New-MgServicePrincipalClaimMappingPolicyByRef","POST","/servicePrincipals/{param}/claimsMappingPolicies/$ref","matched","New-MgServicePrincipalClaimMappingPolicyByRef" +"Applications","NewMgServicePrincipalDelegatedPermissionClassification.g.cs","v1.0","New-MgServicePrincipalDelegatedPermissionClassification","POST","/servicePrincipals/{param}/delegatedPermissionClassifications","matched","New-MgServicePrincipalDelegatedPermissionClassification" +"Applications","NewMgServicePrincipalEndpoint.g.cs","v1.0","New-MgServicePrincipalEndpoint","POST","/servicePrincipals/{param}/endpoints","matched","New-MgServicePrincipalEndpoint" +"Applications","NewMgServicePrincipalFederatedIdentityCredential.g.cs","v1.0","New-MgServicePrincipalFederatedIdentityCredential","POST","/servicePrincipals/{param}/federatedIdentityCredentials","no-oracle","" +"Applications","NewMgServicePrincipalHomeRealmDiscoveryPolicyByRef.g.cs","v1.0","New-MgServicePrincipalHomeRealmDiscoveryPolicyByRef","POST","/servicePrincipals/{param}/homeRealmDiscoveryPolicies/$ref","matched","New-MgServicePrincipalHomeRealmDiscoveryPolicyByRef" +"Applications","NewMgServicePrincipalOwnerByRef.g.cs","v1.0","New-MgServicePrincipalOwnerByRef","POST","/servicePrincipals/{param}/owners/$ref","matched","New-MgServicePrincipalOwnerByRef" +"Applications","NewMgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp.g.cs","v1.0","New-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp","POST","/servicePrincipals/{param}/remoteDesktopSecurityConfiguration/approvedClientApps","matched","New-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp" +"Applications","NewMgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup.g.cs","v1.0","New-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup","POST","/servicePrincipals/{param}/remoteDesktopSecurityConfiguration/targetDeviceGroups","matched","New-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup" +"Applications","NewMgServicePrincipalSynchronizationJob.g.cs","v1.0","New-MgServicePrincipalSynchronizationJob","POST","/servicePrincipals/{param}/synchronization/jobs","matched","New-MgServicePrincipalSynchronizationJob" +"Applications","NewMgServicePrincipalSynchronizationJobSchemaDirectory.g.cs","v1.0","New-MgServicePrincipalSynchronizationJobSchemaDirectory","POST","/servicePrincipals/{param}/synchronization/jobs/{param}/schema/directories","matched","New-MgServicePrincipalSynchronizationJobSchemaDirectory" +"Applications","NewMgServicePrincipalSynchronizationTemplate.g.cs","v1.0","New-MgServicePrincipalSynchronizationTemplate","POST","/servicePrincipals/{param}/synchronization/templates","matched","New-MgServicePrincipalSynchronizationTemplate" +"Applications","NewMgServicePrincipalSynchronizationTemplateSchemaDirectory.g.cs","v1.0","New-MgServicePrincipalSynchronizationTemplateSchemaDirectory","POST","/servicePrincipals/{param}/synchronization/templates/{param}/schema/directories","matched","New-MgServicePrincipalSynchronizationTemplateSchemaDirectory" +"Applications","NewMgServicePrincipalTokenIssuancePolicyByRef.g.cs","v1.0","New-MgServicePrincipalTokenIssuancePolicyByRef","POST","/servicePrincipals/{param}/tokenIssuancePolicies/$ref","matched","New-MgServicePrincipalTokenIssuancePolicyByRef" +"Applications","NewMgServicePrincipalTokenLifetimePolicyByRef.g.cs","v1.0","New-MgServicePrincipalTokenLifetimePolicyByRef","POST","/servicePrincipals/{param}/tokenLifetimePolicies/$ref","matched","New-MgServicePrincipalTokenLifetimePolicyByRef" +"Applications","NewMgUserAppRoleAssignment.g.cs","v1.0","New-MgUserAppRoleAssignment","POST","/users/{param}/appRoleAssignments","matched","New-MgUserAppRoleAssignment" +"Applications","RemoveMgApplication.g.cs","v1.0","Remove-MgApplication","DELETE","/applications/{param}","matched","Remove-MgApplication" +"Applications","RemoveMgApplicationAppManagementPolicyByRef.g.cs","v1.0","Remove-MgApplicationAppManagementPolicyByRef","DELETE","/applications/{param}/appManagementPolicies/{param}/$ref","mismatch","Remove-MgApplicationAppManagementPolicyAppManagementPolicyByRef" +"Applications","RemoveMgApplicationExtensionProperty.g.cs","v1.0","Remove-MgApplicationExtensionProperty","DELETE","/applications/{param}/extensionProperties/{param}","matched","Remove-MgApplicationExtensionProperty" +"Applications","RemoveMgApplicationFederatedIdentityCredential.g.cs","v1.0","Remove-MgApplicationFederatedIdentityCredential","DELETE","/applications/{param}/federatedIdentityCredentials/{param}","matched","Remove-MgApplicationFederatedIdentityCredential" +"Applications","RemoveMgApplicationLogo.g.cs","v1.0","Remove-MgApplicationLogo","DELETE","/applications/{param}/logo","matched","Remove-MgApplicationLogo" +"Applications","RemoveMgApplicationOwnerByRef.g.cs","v1.0","Remove-MgApplicationOwnerByRef","DELETE","/applications/{param}/owners/{param}/$ref","mismatch","Remove-MgApplicationOwnerDirectoryObjectByRef" +"Applications","RemoveMgApplicationSynchronization.g.cs","v1.0","Remove-MgApplicationSynchronization","DELETE","/applications/{param}/synchronization","matched","Remove-MgApplicationSynchronization" +"Applications","RemoveMgApplicationSynchronizationJob.g.cs","v1.0","Remove-MgApplicationSynchronizationJob","DELETE","/applications/{param}/synchronization/jobs/{param}","matched","Remove-MgApplicationSynchronizationJob" +"Applications","RemoveMgApplicationSynchronizationJobBulkUpload.g.cs","v1.0","Remove-MgApplicationSynchronizationJobBulkUpload","DELETE","/applications/{param}/synchronization/jobs/{param}/bulkUpload","matched","Remove-MgApplicationSynchronizationJobBulkUpload" +"Applications","RemoveMgApplicationSynchronizationJobBulkUploadContent.g.cs","v1.0","Remove-MgApplicationSynchronizationJobBulkUploadContent","DELETE","/applications/{param}/synchronization/jobs/{param}/bulkUpload/$value","matched","Remove-MgApplicationSynchronizationJobBulkUploadContent" +"Applications","RemoveMgApplicationSynchronizationJobSchema.g.cs","v1.0","Remove-MgApplicationSynchronizationJobSchema","DELETE","/applications/{param}/synchronization/jobs/{param}/schema","matched","Remove-MgApplicationSynchronizationJobSchema" +"Applications","RemoveMgApplicationSynchronizationJobSchemaDirectory.g.cs","v1.0","Remove-MgApplicationSynchronizationJobSchemaDirectory","DELETE","/applications/{param}/synchronization/jobs/{param}/schema/directories/{param}","matched","Remove-MgApplicationSynchronizationJobSchemaDirectory" +"Applications","RemoveMgApplicationSynchronizationTemplate.g.cs","v1.0","Remove-MgApplicationSynchronizationTemplate","DELETE","/applications/{param}/synchronization/templates/{param}","matched","Remove-MgApplicationSynchronizationTemplate" +"Applications","RemoveMgApplicationSynchronizationTemplateSchema.g.cs","v1.0","Remove-MgApplicationSynchronizationTemplateSchema","DELETE","/applications/{param}/synchronization/templates/{param}/schema","matched","Remove-MgApplicationSynchronizationTemplateSchema" +"Applications","RemoveMgApplicationSynchronizationTemplateSchemaDirectory.g.cs","v1.0","Remove-MgApplicationSynchronizationTemplateSchemaDirectory","DELETE","/applications/{param}/synchronization/templates/{param}/schema/directories/{param}","matched","Remove-MgApplicationSynchronizationTemplateSchemaDirectory" +"Applications","RemoveMgApplicationTokenIssuancePolicyByRef.g.cs","v1.0","Remove-MgApplicationTokenIssuancePolicyByRef","DELETE","/applications/{param}/tokenIssuancePolicies/{param}/$ref","mismatch","Remove-MgApplicationTokenIssuancePolicyTokenIssuancePolicyByRef" +"Applications","RemoveMgApplicationTokenLifetimePolicyByRef.g.cs","v1.0","Remove-MgApplicationTokenLifetimePolicyByRef","DELETE","/applications/{param}/tokenLifetimePolicies/{param}/$ref","mismatch","Remove-MgApplicationTokenLifetimePolicyTokenLifetimePolicyByRef" +"Applications","RemoveMgGroupAppRoleAssignment.g.cs","v1.0","Remove-MgGroupAppRoleAssignment","DELETE","/groups/{param}/appRoleAssignments/{param}","matched","Remove-MgGroupAppRoleAssignment" +"Applications","RemoveMgServicePrincipal.g.cs","v1.0","Remove-MgServicePrincipal","DELETE","/servicePrincipals/{param}","matched","Remove-MgServicePrincipal" +"Applications","RemoveMgServicePrincipalAppRoleAssignedTo.g.cs","v1.0","Remove-MgServicePrincipalAppRoleAssignedTo","DELETE","/servicePrincipals/{param}/appRoleAssignedTo/{param}","matched","Remove-MgServicePrincipalAppRoleAssignedTo" +"Applications","RemoveMgServicePrincipalAppRoleAssignment.g.cs","v1.0","Remove-MgServicePrincipalAppRoleAssignment","DELETE","/servicePrincipals/{param}/appRoleAssignments/{param}","matched","Remove-MgServicePrincipalAppRoleAssignment" +"Applications","RemoveMgServicePrincipalClaimMappingPolicyByRef.g.cs","v1.0","Remove-MgServicePrincipalClaimMappingPolicyByRef","DELETE","/servicePrincipals/{param}/claimsMappingPolicies/{param}/$ref","mismatch","Remove-MgServicePrincipalClaimMappingPolicyClaimMappingPolicyByRef" +"Applications","RemoveMgServicePrincipalDelegatedPermissionClassification.g.cs","v1.0","Remove-MgServicePrincipalDelegatedPermissionClassification","DELETE","/servicePrincipals/{param}/delegatedPermissionClassifications/{param}","matched","Remove-MgServicePrincipalDelegatedPermissionClassification" +"Applications","RemoveMgServicePrincipalEndpoint.g.cs","v1.0","Remove-MgServicePrincipalEndpoint","DELETE","/servicePrincipals/{param}/endpoints/{param}","matched","Remove-MgServicePrincipalEndpoint" +"Applications","RemoveMgServicePrincipalFederatedIdentityCredential.g.cs","v1.0","Remove-MgServicePrincipalFederatedIdentityCredential","DELETE","/servicePrincipals/{param}/federatedIdentityCredentials/{param}","no-oracle","" +"Applications","RemoveMgServicePrincipalHomeRealmDiscoveryPolicyByRef.g.cs","v1.0","Remove-MgServicePrincipalHomeRealmDiscoveryPolicyByRef","DELETE","/servicePrincipals/{param}/homeRealmDiscoveryPolicies/{param}/$ref","mismatch","Remove-MgServicePrincipalHomeRealmDiscoveryPolicyHomeRealmDiscoveryPolicyByRef" +"Applications","RemoveMgServicePrincipalOwnerByRef.g.cs","v1.0","Remove-MgServicePrincipalOwnerByRef","DELETE","/servicePrincipals/{param}/owners/{param}/$ref","mismatch","Remove-MgServicePrincipalOwnerDirectoryObjectByRef" +"Applications","RemoveMgServicePrincipalRemoteDesktopSecurityConfiguration.g.cs","v1.0","Remove-MgServicePrincipalRemoteDesktopSecurityConfiguration","DELETE","/servicePrincipals/{param}/remoteDesktopSecurityConfiguration","matched","Remove-MgServicePrincipalRemoteDesktopSecurityConfiguration" +"Applications","RemoveMgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp.g.cs","v1.0","Remove-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp","DELETE","/servicePrincipals/{param}/remoteDesktopSecurityConfiguration/approvedClientApps/{param}","matched","Remove-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp" +"Applications","RemoveMgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup.g.cs","v1.0","Remove-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup","DELETE","/servicePrincipals/{param}/remoteDesktopSecurityConfiguration/targetDeviceGroups/{param}","matched","Remove-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup" +"Applications","RemoveMgServicePrincipalSynchronization.g.cs","v1.0","Remove-MgServicePrincipalSynchronization","DELETE","/servicePrincipals/{param}/synchronization","matched","Remove-MgServicePrincipalSynchronization" +"Applications","RemoveMgServicePrincipalSynchronizationJob.g.cs","v1.0","Remove-MgServicePrincipalSynchronizationJob","DELETE","/servicePrincipals/{param}/synchronization/jobs/{param}","matched","Remove-MgServicePrincipalSynchronizationJob" +"Applications","RemoveMgServicePrincipalSynchronizationJobBulkUpload.g.cs","v1.0","Remove-MgServicePrincipalSynchronizationJobBulkUpload","DELETE","/servicePrincipals/{param}/synchronization/jobs/{param}/bulkUpload","matched","Remove-MgServicePrincipalSynchronizationJobBulkUpload" +"Applications","RemoveMgServicePrincipalSynchronizationJobBulkUploadContent.g.cs","v1.0","Remove-MgServicePrincipalSynchronizationJobBulkUploadContent","DELETE","/servicePrincipals/{param}/synchronization/jobs/{param}/bulkUpload/$value","matched","Remove-MgServicePrincipalSynchronizationJobBulkUploadContent" +"Applications","RemoveMgServicePrincipalSynchronizationJobSchema.g.cs","v1.0","Remove-MgServicePrincipalSynchronizationJobSchema","DELETE","/servicePrincipals/{param}/synchronization/jobs/{param}/schema","matched","Remove-MgServicePrincipalSynchronizationJobSchema" +"Applications","RemoveMgServicePrincipalSynchronizationJobSchemaDirectory.g.cs","v1.0","Remove-MgServicePrincipalSynchronizationJobSchemaDirectory","DELETE","/servicePrincipals/{param}/synchronization/jobs/{param}/schema/directories/{param}","matched","Remove-MgServicePrincipalSynchronizationJobSchemaDirectory" +"Applications","RemoveMgServicePrincipalSynchronizationTemplate.g.cs","v1.0","Remove-MgServicePrincipalSynchronizationTemplate","DELETE","/servicePrincipals/{param}/synchronization/templates/{param}","matched","Remove-MgServicePrincipalSynchronizationTemplate" +"Applications","RemoveMgServicePrincipalSynchronizationTemplateSchema.g.cs","v1.0","Remove-MgServicePrincipalSynchronizationTemplateSchema","DELETE","/servicePrincipals/{param}/synchronization/templates/{param}/schema","matched","Remove-MgServicePrincipalSynchronizationTemplateSchema" +"Applications","RemoveMgServicePrincipalSynchronizationTemplateSchemaDirectory.g.cs","v1.0","Remove-MgServicePrincipalSynchronizationTemplateSchemaDirectory","DELETE","/servicePrincipals/{param}/synchronization/templates/{param}/schema/directories/{param}","matched","Remove-MgServicePrincipalSynchronizationTemplateSchemaDirectory" +"Applications","RemoveMgServicePrincipalTokenIssuancePolicyByRef.g.cs","v1.0","Remove-MgServicePrincipalTokenIssuancePolicyByRef","DELETE","/servicePrincipals/{param}/tokenIssuancePolicies/{param}/$ref","mismatch","Remove-MgServicePrincipalTokenIssuancePolicyTokenIssuancePolicyByRef" +"Applications","RemoveMgServicePrincipalTokenLifetimePolicyByRef.g.cs","v1.0","Remove-MgServicePrincipalTokenLifetimePolicyByRef","DELETE","/servicePrincipals/{param}/tokenLifetimePolicies/{param}/$ref","mismatch","Remove-MgServicePrincipalTokenLifetimePolicyTokenLifetimePolicyByRef" +"Applications","RemoveMgUserAppRoleAssignment.g.cs","v1.0","Remove-MgUserAppRoleAssignment","DELETE","/users/{param}/appRoleAssignments/{param}","matched","Remove-MgUserAppRoleAssignment" +"Applications","SetMgApplicationSynchronization.g.cs","v1.0","Set-MgApplicationSynchronization","PUT","/applications/{param}/synchronization","matched","Set-MgApplicationSynchronization" +"Applications","SetMgServicePrincipalSynchronization.g.cs","v1.0","Set-MgServicePrincipalSynchronization","PUT","/servicePrincipals/{param}/synchronization","matched","Set-MgServicePrincipalSynchronization" +"Applications","UpdateMgApplication.g.cs","v1.0","Update-MgApplication","PATCH","/applications/{param}","matched","Update-MgApplication" +"Applications","UpdateMgApplicationExtensionProperty.g.cs","v1.0","Update-MgApplicationExtensionProperty","PATCH","/applications/{param}/extensionProperties/{param}","matched","Update-MgApplicationExtensionProperty" +"Applications","UpdateMgApplicationFederatedIdentityCredential.g.cs","v1.0","Update-MgApplicationFederatedIdentityCredential","PATCH","/applications/{param}/federatedIdentityCredentials/{param}","matched","Update-MgApplicationFederatedIdentityCredential" +"Applications","UpdateMgApplicationSynchronizationJob.g.cs","v1.0","Update-MgApplicationSynchronizationJob","PATCH","/applications/{param}/synchronization/jobs/{param}","matched","Update-MgApplicationSynchronizationJob" +"Applications","UpdateMgApplicationSynchronizationJobBulkUpload.g.cs","v1.0","Update-MgApplicationSynchronizationJobBulkUpload","PATCH","/applications/{param}/synchronization/jobs/{param}/bulkUpload","matched","Update-MgApplicationSynchronizationJobBulkUpload" +"Applications","UpdateMgApplicationSynchronizationJobSchema.g.cs","v1.0","Update-MgApplicationSynchronizationJobSchema","PATCH","/applications/{param}/synchronization/jobs/{param}/schema","matched","Update-MgApplicationSynchronizationJobSchema" +"Applications","UpdateMgApplicationSynchronizationJobSchemaDirectory.g.cs","v1.0","Update-MgApplicationSynchronizationJobSchemaDirectory","PATCH","/applications/{param}/synchronization/jobs/{param}/schema/directories/{param}","matched","Update-MgApplicationSynchronizationJobSchemaDirectory" +"Applications","UpdateMgApplicationSynchronizationTemplate.g.cs","v1.0","Update-MgApplicationSynchronizationTemplate","PATCH","/applications/{param}/synchronization/templates/{param}","matched","Update-MgApplicationSynchronizationTemplate" +"Applications","UpdateMgApplicationSynchronizationTemplateSchema.g.cs","v1.0","Update-MgApplicationSynchronizationTemplateSchema","PATCH","/applications/{param}/synchronization/templates/{param}/schema","matched","Update-MgApplicationSynchronizationTemplateSchema" +"Applications","UpdateMgApplicationSynchronizationTemplateSchemaDirectory.g.cs","v1.0","Update-MgApplicationSynchronizationTemplateSchemaDirectory","PATCH","/applications/{param}/synchronization/templates/{param}/schema/directories/{param}","matched","Update-MgApplicationSynchronizationTemplateSchemaDirectory" +"Applications","UpdateMgGroupAppRoleAssignment.g.cs","v1.0","Update-MgGroupAppRoleAssignment","PATCH","/groups/{param}/appRoleAssignments/{param}","matched","Update-MgGroupAppRoleAssignment" +"Applications","UpdateMgServicePrincipal.g.cs","v1.0","Update-MgServicePrincipal","PATCH","/servicePrincipals/{param}","matched","Update-MgServicePrincipal" +"Applications","UpdateMgServicePrincipalAppRoleAssignedTo.g.cs","v1.0","Update-MgServicePrincipalAppRoleAssignedTo","PATCH","/servicePrincipals/{param}/appRoleAssignedTo/{param}","matched","Update-MgServicePrincipalAppRoleAssignedTo" +"Applications","UpdateMgServicePrincipalAppRoleAssignment.g.cs","v1.0","Update-MgServicePrincipalAppRoleAssignment","PATCH","/servicePrincipals/{param}/appRoleAssignments/{param}","matched","Update-MgServicePrincipalAppRoleAssignment" +"Applications","UpdateMgServicePrincipalDelegatedPermissionClassification.g.cs","v1.0","Update-MgServicePrincipalDelegatedPermissionClassification","PATCH","/servicePrincipals/{param}/delegatedPermissionClassifications/{param}","matched","Update-MgServicePrincipalDelegatedPermissionClassification" +"Applications","UpdateMgServicePrincipalEndpoint.g.cs","v1.0","Update-MgServicePrincipalEndpoint","PATCH","/servicePrincipals/{param}/endpoints/{param}","matched","Update-MgServicePrincipalEndpoint" +"Applications","UpdateMgServicePrincipalFederatedIdentityCredential.g.cs","v1.0","Update-MgServicePrincipalFederatedIdentityCredential","PATCH","/servicePrincipals/{param}/federatedIdentityCredentials/{param}","no-oracle","" +"Applications","UpdateMgServicePrincipalRemoteDesktopSecurityConfiguration.g.cs","v1.0","Update-MgServicePrincipalRemoteDesktopSecurityConfiguration","PATCH","/servicePrincipals/{param}/remoteDesktopSecurityConfiguration","matched","Update-MgServicePrincipalRemoteDesktopSecurityConfiguration" +"Applications","UpdateMgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp.g.cs","v1.0","Update-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp","PATCH","/servicePrincipals/{param}/remoteDesktopSecurityConfiguration/approvedClientApps/{param}","matched","Update-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp" +"Applications","UpdateMgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup.g.cs","v1.0","Update-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup","PATCH","/servicePrincipals/{param}/remoteDesktopSecurityConfiguration/targetDeviceGroups/{param}","matched","Update-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup" +"Applications","UpdateMgServicePrincipalSynchronizationJob.g.cs","v1.0","Update-MgServicePrincipalSynchronizationJob","PATCH","/servicePrincipals/{param}/synchronization/jobs/{param}","matched","Update-MgServicePrincipalSynchronizationJob" +"Applications","UpdateMgServicePrincipalSynchronizationJobBulkUpload.g.cs","v1.0","Update-MgServicePrincipalSynchronizationJobBulkUpload","PATCH","/servicePrincipals/{param}/synchronization/jobs/{param}/bulkUpload","matched","Update-MgServicePrincipalSynchronizationJobBulkUpload" +"Applications","UpdateMgServicePrincipalSynchronizationJobSchema.g.cs","v1.0","Update-MgServicePrincipalSynchronizationJobSchema","PATCH","/servicePrincipals/{param}/synchronization/jobs/{param}/schema","matched","Update-MgServicePrincipalSynchronizationJobSchema" +"Applications","UpdateMgServicePrincipalSynchronizationJobSchemaDirectory.g.cs","v1.0","Update-MgServicePrincipalSynchronizationJobSchemaDirectory","PATCH","/servicePrincipals/{param}/synchronization/jobs/{param}/schema/directories/{param}","matched","Update-MgServicePrincipalSynchronizationJobSchemaDirectory" +"Applications","UpdateMgServicePrincipalSynchronizationTemplate.g.cs","v1.0","Update-MgServicePrincipalSynchronizationTemplate","PATCH","/servicePrincipals/{param}/synchronization/templates/{param}","matched","Update-MgServicePrincipalSynchronizationTemplate" +"Applications","UpdateMgServicePrincipalSynchronizationTemplateSchema.g.cs","v1.0","Update-MgServicePrincipalSynchronizationTemplateSchema","PATCH","/servicePrincipals/{param}/synchronization/templates/{param}/schema","matched","Update-MgServicePrincipalSynchronizationTemplateSchema" +"Applications","UpdateMgServicePrincipalSynchronizationTemplateSchemaDirectory.g.cs","v1.0","Update-MgServicePrincipalSynchronizationTemplateSchemaDirectory","PATCH","/servicePrincipals/{param}/synchronization/templates/{param}/schema/directories/{param}","matched","Update-MgServicePrincipalSynchronizationTemplateSchemaDirectory" +"Applications","UpdateMgUserAppRoleAssignment.g.cs","v1.0","Update-MgUserAppRoleAssignment","PATCH","/users/{param}/appRoleAssignments/{param}","matched","Update-MgUserAppRoleAssignment" +"BackupRestore","GetMgSolutionBackupRestore.g.cs","v1.0","Get-MgSolutionBackupRestore","GET","/solutions/backupRestore","matched","Get-MgSolutionBackupRestore" +"BackupRestore","GetMgSolutionBackupRestoreBrowseSession_Get.g.cs","v1.0","Get-MgSolutionBackupRestoreBrowseSession","GET","/solutions/backupRestore/browseSessions/{param}","matched","Get-MgSolutionBackupRestoreBrowseSession" +"BackupRestore","GetMgSolutionBackupRestoreBrowseSession_List.g.cs","v1.0","Get-MgSolutionBackupRestoreBrowseSession","GET","/solutions/backupRestore/browseSessions","matched","Get-MgSolutionBackupRestoreBrowseSession" +"BackupRestore","GetMgSolutionBackupRestoreBrowseSession.g.cs","v1.0","Get-MgSolutionBackupRestoreBrowseSession","","","dispatcher","" +"BackupRestore","GetMgSolutionBackupRestoreBrowseSessionBrowseWithNextFetchToken.g.cs","v1.0","Get-MgSolutionBackupRestoreBrowseSessionBrowseWithNextFetchToken","","","parameterized-function","" +"BackupRestore","GetMgSolutionBackupRestoreBrowseSessionCount.g.cs","v1.0","Get-MgSolutionBackupRestoreBrowseSessionCount","GET","/solutions/backupRestore/browseSessions/$count","matched","Get-MgSolutionBackupRestoreBrowseSessionCount" +"BackupRestore","GetMgSolutionBackupRestoreDriveInclusionRule_Get.g.cs","v1.0","Get-MgSolutionBackupRestoreDriveInclusionRule","GET","/solutions/backupRestore/driveInclusionRules/{param}","matched","Get-MgSolutionBackupRestoreDriveInclusionRule" +"BackupRestore","GetMgSolutionBackupRestoreDriveInclusionRule_List.g.cs","v1.0","Get-MgSolutionBackupRestoreDriveInclusionRule","GET","/solutions/backupRestore/driveInclusionRules","matched","Get-MgSolutionBackupRestoreDriveInclusionRule" +"BackupRestore","GetMgSolutionBackupRestoreDriveInclusionRule.g.cs","v1.0","Get-MgSolutionBackupRestoreDriveInclusionRule","","","dispatcher","" +"BackupRestore","GetMgSolutionBackupRestoreDriveInclusionRuleCount.g.cs","v1.0","Get-MgSolutionBackupRestoreDriveInclusionRuleCount","GET","/solutions/backupRestore/driveInclusionRules/$count","matched","Get-MgSolutionBackupRestoreDriveInclusionRuleCount" +"BackupRestore","GetMgSolutionBackupRestoreDriveProtectionUnit_Get.g.cs","v1.0","Get-MgSolutionBackupRestoreDriveProtectionUnit","GET","/solutions/backupRestore/driveProtectionUnits/{param}","matched","Get-MgSolutionBackupRestoreDriveProtectionUnit" +"BackupRestore","GetMgSolutionBackupRestoreDriveProtectionUnit_List.g.cs","v1.0","Get-MgSolutionBackupRestoreDriveProtectionUnit","GET","/solutions/backupRestore/driveProtectionUnits","matched","Get-MgSolutionBackupRestoreDriveProtectionUnit" +"BackupRestore","GetMgSolutionBackupRestoreDriveProtectionUnit.g.cs","v1.0","Get-MgSolutionBackupRestoreDriveProtectionUnit","","","dispatcher","" +"BackupRestore","GetMgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob_Get.g.cs","v1.0","Get-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob","GET","/solutions/backupRestore/driveProtectionUnitsBulkAdditionJobs/{param}","matched","Get-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob" +"BackupRestore","GetMgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob_List.g.cs","v1.0","Get-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob","GET","/solutions/backupRestore/driveProtectionUnitsBulkAdditionJobs","matched","Get-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob" +"BackupRestore","GetMgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob.g.cs","v1.0","Get-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob","","","dispatcher","" +"BackupRestore","GetMgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJobCount.g.cs","v1.0","Get-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJobCount","GET","/solutions/backupRestore/driveProtectionUnitsBulkAdditionJobs/$count","matched","Get-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJobCount" +"BackupRestore","GetMgSolutionBackupRestoreDriveProtectionUnitCount.g.cs","v1.0","Get-MgSolutionBackupRestoreDriveProtectionUnitCount","GET","/solutions/backupRestore/driveProtectionUnits/$count","matched","Get-MgSolutionBackupRestoreDriveProtectionUnitCount" +"BackupRestore","GetMgSolutionBackupRestoreEmailNotificationSetting.g.cs","v1.0","Get-MgSolutionBackupRestoreEmailNotificationSetting","GET","/solutions/backupRestore/emailNotificationsSetting","matched","Get-MgSolutionBackupRestoreEmailNotificationSetting" +"BackupRestore","GetMgSolutionBackupRestoreExchangeProtectionPolicy_Get.g.cs","v1.0","Get-MgSolutionBackupRestoreExchangeProtectionPolicy","GET","/solutions/backupRestore/exchangeProtectionPolicies/{param}","matched","Get-MgSolutionBackupRestoreExchangeProtectionPolicy" +"BackupRestore","GetMgSolutionBackupRestoreExchangeProtectionPolicy_List.g.cs","v1.0","Get-MgSolutionBackupRestoreExchangeProtectionPolicy","GET","/solutions/backupRestore/exchangeProtectionPolicies","matched","Get-MgSolutionBackupRestoreExchangeProtectionPolicy" +"BackupRestore","GetMgSolutionBackupRestoreExchangeProtectionPolicy.g.cs","v1.0","Get-MgSolutionBackupRestoreExchangeProtectionPolicy","","","dispatcher","" +"BackupRestore","GetMgSolutionBackupRestoreExchangeProtectionPolicyCount.g.cs","v1.0","Get-MgSolutionBackupRestoreExchangeProtectionPolicyCount","GET","/solutions/backupRestore/exchangeProtectionPolicies/$count","matched","Get-MgSolutionBackupRestoreExchangeProtectionPolicyCount" +"BackupRestore","GetMgSolutionBackupRestoreExchangeProtectionPolicyMailboxInclusionRule_Get.g.cs","v1.0","Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxInclusionRule","GET","/solutions/backupRestore/exchangeProtectionPolicies/{param}/mailboxInclusionRules/{param}","matched","Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxInclusionRule" +"BackupRestore","GetMgSolutionBackupRestoreExchangeProtectionPolicyMailboxInclusionRule_List.g.cs","v1.0","Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxInclusionRule","GET","/solutions/backupRestore/exchangeProtectionPolicies/{param}/mailboxInclusionRules","matched","Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxInclusionRule" +"BackupRestore","GetMgSolutionBackupRestoreExchangeProtectionPolicyMailboxInclusionRule.g.cs","v1.0","Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxInclusionRule","","","dispatcher","" +"BackupRestore","GetMgSolutionBackupRestoreExchangeProtectionPolicyMailboxInclusionRuleCount.g.cs","v1.0","Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxInclusionRuleCount","GET","/solutions/backupRestore/exchangeProtectionPolicies/{param}/mailboxInclusionRules/$count","matched","Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxInclusionRuleCount" +"BackupRestore","GetMgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnit_Get.g.cs","v1.0","Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnit","GET","/solutions/backupRestore/exchangeProtectionPolicies/{param}/mailboxProtectionUnits/{param}","matched","Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnit" +"BackupRestore","GetMgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnit_List.g.cs","v1.0","Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnit","GET","/solutions/backupRestore/exchangeProtectionPolicies/{param}/mailboxProtectionUnits","matched","Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnit" +"BackupRestore","GetMgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnit.g.cs","v1.0","Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnit","","","dispatcher","" +"BackupRestore","GetMgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitBulkAdditionJob_Get.g.cs","v1.0","Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitBulkAdditionJob","GET","/solutions/backupRestore/exchangeProtectionPolicies/{param}/mailboxProtectionUnitsBulkAdditionJobs/{param}","matched","Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitBulkAdditionJob" +"BackupRestore","GetMgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitBulkAdditionJob_List.g.cs","v1.0","Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitBulkAdditionJob","GET","/solutions/backupRestore/exchangeProtectionPolicies/{param}/mailboxProtectionUnitsBulkAdditionJobs","matched","Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitBulkAdditionJob" +"BackupRestore","GetMgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitBulkAdditionJob.g.cs","v1.0","Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitBulkAdditionJob","","","dispatcher","" +"BackupRestore","GetMgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitBulkAdditionJobCount.g.cs","v1.0","Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitBulkAdditionJobCount","GET","/solutions/backupRestore/exchangeProtectionPolicies/{param}/mailboxProtectionUnitsBulkAdditionJobs/$count","matched","Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitBulkAdditionJobCount" +"BackupRestore","GetMgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitCount.g.cs","v1.0","Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitCount","GET","/solutions/backupRestore/exchangeProtectionPolicies/{param}/mailboxProtectionUnits/$count","matched","Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitCount" +"BackupRestore","GetMgSolutionBackupRestoreExchangeRestoreSession_Get.g.cs","v1.0","Get-MgSolutionBackupRestoreExchangeRestoreSession","GET","/solutions/backupRestore/exchangeRestoreSessions/{param}","matched","Get-MgSolutionBackupRestoreExchangeRestoreSession" +"BackupRestore","GetMgSolutionBackupRestoreExchangeRestoreSession_List.g.cs","v1.0","Get-MgSolutionBackupRestoreExchangeRestoreSession","GET","/solutions/backupRestore/exchangeRestoreSessions","matched","Get-MgSolutionBackupRestoreExchangeRestoreSession" +"BackupRestore","GetMgSolutionBackupRestoreExchangeRestoreSession.g.cs","v1.0","Get-MgSolutionBackupRestoreExchangeRestoreSession","","","dispatcher","" +"BackupRestore","GetMgSolutionBackupRestoreExchangeRestoreSessionCount.g.cs","v1.0","Get-MgSolutionBackupRestoreExchangeRestoreSessionCount","GET","/solutions/backupRestore/exchangeRestoreSessions/$count","matched","Get-MgSolutionBackupRestoreExchangeRestoreSessionCount" +"BackupRestore","GetMgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact_Get.g.cs","v1.0","Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact","GET","/solutions/backupRestore/exchangeRestoreSessions/{param}/granularMailboxRestoreArtifacts/{param}","matched","Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact" +"BackupRestore","GetMgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact_List.g.cs","v1.0","Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact","GET","/solutions/backupRestore/exchangeRestoreSessions/{param}/granularMailboxRestoreArtifacts","matched","Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact" +"BackupRestore","GetMgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact.g.cs","v1.0","Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact","","","dispatcher","" +"BackupRestore","GetMgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifactCount.g.cs","v1.0","Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifactCount","GET","/solutions/backupRestore/exchangeRestoreSessions/{param}/granularMailboxRestoreArtifacts/$count","matched","Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifactCount" +"BackupRestore","GetMgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifactRestorePoint.g.cs","v1.0","Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifactRestorePoint","GET","/solutions/backupRestore/exchangeRestoreSessions/{param}/granularMailboxRestoreArtifacts/{param}/restorePoint","matched","Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifactRestorePoint" +"BackupRestore","GetMgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact_Get.g.cs","v1.0","Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact","GET","/solutions/backupRestore/exchangeRestoreSessions/{param}/mailboxRestoreArtifacts/{param}","matched","Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact" +"BackupRestore","GetMgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact_List.g.cs","v1.0","Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact","GET","/solutions/backupRestore/exchangeRestoreSessions/{param}/mailboxRestoreArtifacts","matched","Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact" +"BackupRestore","GetMgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact.g.cs","v1.0","Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact","","","dispatcher","" +"BackupRestore","GetMgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest_Get.g.cs","v1.0","Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest","GET","/solutions/backupRestore/exchangeRestoreSessions/{param}/mailboxRestoreArtifactsBulkAdditionRequests/{param}","matched","Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest" +"BackupRestore","GetMgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest_List.g.cs","v1.0","Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest","GET","/solutions/backupRestore/exchangeRestoreSessions/{param}/mailboxRestoreArtifactsBulkAdditionRequests","matched","Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest" +"BackupRestore","GetMgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest.g.cs","v1.0","Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest","","","dispatcher","" +"BackupRestore","GetMgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequestCount.g.cs","v1.0","Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequestCount","GET","/solutions/backupRestore/exchangeRestoreSessions/{param}/mailboxRestoreArtifactsBulkAdditionRequests/$count","matched","Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequestCount" +"BackupRestore","GetMgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactCount.g.cs","v1.0","Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactCount","GET","/solutions/backupRestore/exchangeRestoreSessions/{param}/mailboxRestoreArtifacts/$count","matched","Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactCount" +"BackupRestore","GetMgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactRestorePoint.g.cs","v1.0","Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactRestorePoint","GET","/solutions/backupRestore/exchangeRestoreSessions/{param}/mailboxRestoreArtifacts/{param}/restorePoint","matched","Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactRestorePoint" +"BackupRestore","GetMgSolutionBackupRestoreMailboxInclusionRule_Get.g.cs","v1.0","Get-MgSolutionBackupRestoreMailboxInclusionRule","GET","/solutions/backupRestore/mailboxInclusionRules/{param}","matched","Get-MgSolutionBackupRestoreMailboxInclusionRule" +"BackupRestore","GetMgSolutionBackupRestoreMailboxInclusionRule_List.g.cs","v1.0","Get-MgSolutionBackupRestoreMailboxInclusionRule","GET","/solutions/backupRestore/mailboxInclusionRules","matched","Get-MgSolutionBackupRestoreMailboxInclusionRule" +"BackupRestore","GetMgSolutionBackupRestoreMailboxInclusionRule.g.cs","v1.0","Get-MgSolutionBackupRestoreMailboxInclusionRule","","","dispatcher","" +"BackupRestore","GetMgSolutionBackupRestoreMailboxInclusionRuleCount.g.cs","v1.0","Get-MgSolutionBackupRestoreMailboxInclusionRuleCount","GET","/solutions/backupRestore/mailboxInclusionRules/$count","matched","Get-MgSolutionBackupRestoreMailboxInclusionRuleCount" +"BackupRestore","GetMgSolutionBackupRestoreMailboxProtectionUnit_Get.g.cs","v1.0","Get-MgSolutionBackupRestoreMailboxProtectionUnit","GET","/solutions/backupRestore/mailboxProtectionUnits/{param}","matched","Get-MgSolutionBackupRestoreMailboxProtectionUnit" +"BackupRestore","GetMgSolutionBackupRestoreMailboxProtectionUnit_List.g.cs","v1.0","Get-MgSolutionBackupRestoreMailboxProtectionUnit","GET","/solutions/backupRestore/mailboxProtectionUnits","matched","Get-MgSolutionBackupRestoreMailboxProtectionUnit" +"BackupRestore","GetMgSolutionBackupRestoreMailboxProtectionUnit.g.cs","v1.0","Get-MgSolutionBackupRestoreMailboxProtectionUnit","","","dispatcher","" +"BackupRestore","GetMgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob_Get.g.cs","v1.0","Get-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob","GET","/solutions/backupRestore/mailboxProtectionUnitsBulkAdditionJobs/{param}","matched","Get-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob" +"BackupRestore","GetMgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob_List.g.cs","v1.0","Get-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob","GET","/solutions/backupRestore/mailboxProtectionUnitsBulkAdditionJobs","matched","Get-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob" +"BackupRestore","GetMgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob.g.cs","v1.0","Get-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob","","","dispatcher","" +"BackupRestore","GetMgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJobCount.g.cs","v1.0","Get-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJobCount","GET","/solutions/backupRestore/mailboxProtectionUnitsBulkAdditionJobs/$count","matched","Get-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJobCount" +"BackupRestore","GetMgSolutionBackupRestoreMailboxProtectionUnitCount.g.cs","v1.0","Get-MgSolutionBackupRestoreMailboxProtectionUnitCount","GET","/solutions/backupRestore/mailboxProtectionUnits/$count","matched","Get-MgSolutionBackupRestoreMailboxProtectionUnitCount" +"BackupRestore","GetMgSolutionBackupRestoreOneDriveForBusinessBrowseSession_Get.g.cs","v1.0","Get-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession","GET","/solutions/backupRestore/oneDriveForBusinessBrowseSessions/{param}","matched","Get-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession" +"BackupRestore","GetMgSolutionBackupRestoreOneDriveForBusinessBrowseSession_List.g.cs","v1.0","Get-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession","GET","/solutions/backupRestore/oneDriveForBusinessBrowseSessions","matched","Get-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession" +"BackupRestore","GetMgSolutionBackupRestoreOneDriveForBusinessBrowseSession.g.cs","v1.0","Get-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession","","","dispatcher","" +"BackupRestore","GetMgSolutionBackupRestoreOneDriveForBusinessBrowseSessionCount.g.cs","v1.0","Get-MgSolutionBackupRestoreOneDriveForBusinessBrowseSessionCount","GET","/solutions/backupRestore/oneDriveForBusinessBrowseSessions/$count","matched","Get-MgSolutionBackupRestoreOneDriveForBusinessBrowseSessionCount" +"BackupRestore","GetMgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy_Get.g.cs","v1.0","Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy","GET","/solutions/backupRestore/oneDriveForBusinessProtectionPolicies/{param}","matched","Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy" +"BackupRestore","GetMgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy_List.g.cs","v1.0","Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy","GET","/solutions/backupRestore/oneDriveForBusinessProtectionPolicies","matched","Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy" +"BackupRestore","GetMgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy.g.cs","v1.0","Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy","","","dispatcher","" +"BackupRestore","GetMgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyCount.g.cs","v1.0","Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyCount","GET","/solutions/backupRestore/oneDriveForBusinessProtectionPolicies/$count","matched","Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyCount" +"BackupRestore","GetMgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveInclusionRule_Get.g.cs","v1.0","Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveInclusionRule","GET","/solutions/backupRestore/oneDriveForBusinessProtectionPolicies/{param}/driveInclusionRules/{param}","matched","Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveInclusionRule" +"BackupRestore","GetMgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveInclusionRule_List.g.cs","v1.0","Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveInclusionRule","GET","/solutions/backupRestore/oneDriveForBusinessProtectionPolicies/{param}/driveInclusionRules","matched","Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveInclusionRule" +"BackupRestore","GetMgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveInclusionRule.g.cs","v1.0","Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveInclusionRule","","","dispatcher","" +"BackupRestore","GetMgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveInclusionRuleCount.g.cs","v1.0","Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveInclusionRuleCount","GET","/solutions/backupRestore/oneDriveForBusinessProtectionPolicies/{param}/driveInclusionRules/$count","matched","Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveInclusionRuleCount" +"BackupRestore","GetMgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnit_Get.g.cs","v1.0","Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnit","GET","/solutions/backupRestore/oneDriveForBusinessProtectionPolicies/{param}/driveProtectionUnits/{param}","matched","Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnit" +"BackupRestore","GetMgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnit_List.g.cs","v1.0","Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnit","GET","/solutions/backupRestore/oneDriveForBusinessProtectionPolicies/{param}/driveProtectionUnits","matched","Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnit" +"BackupRestore","GetMgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnit.g.cs","v1.0","Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnit","","","dispatcher","" +"BackupRestore","GetMgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitBulkAdditionJob_Get.g.cs","v1.0","Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitBulkAdditionJob","GET","/solutions/backupRestore/oneDriveForBusinessProtectionPolicies/{param}/driveProtectionUnitsBulkAdditionJobs/{param}","matched","Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitBulkAdditionJob" +"BackupRestore","GetMgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitBulkAdditionJob_List.g.cs","v1.0","Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitBulkAdditionJob","GET","/solutions/backupRestore/oneDriveForBusinessProtectionPolicies/{param}/driveProtectionUnitsBulkAdditionJobs","matched","Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitBulkAdditionJob" +"BackupRestore","GetMgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitBulkAdditionJob.g.cs","v1.0","Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitBulkAdditionJob","","","dispatcher","" +"BackupRestore","GetMgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitBulkAdditionJobCount.g.cs","v1.0","Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitBulkAdditionJobCount","GET","/solutions/backupRestore/oneDriveForBusinessProtectionPolicies/{param}/driveProtectionUnitsBulkAdditionJobs/$count","matched","Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitBulkAdditionJobCount" +"BackupRestore","GetMgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitCount.g.cs","v1.0","Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitCount","GET","/solutions/backupRestore/oneDriveForBusinessProtectionPolicies/{param}/driveProtectionUnits/$count","matched","Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitCount" +"BackupRestore","GetMgSolutionBackupRestoreOneDriveForBusinessRestoreSession_Get.g.cs","v1.0","Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession","GET","/solutions/backupRestore/oneDriveForBusinessRestoreSessions/{param}","matched","Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession" +"BackupRestore","GetMgSolutionBackupRestoreOneDriveForBusinessRestoreSession_List.g.cs","v1.0","Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession","GET","/solutions/backupRestore/oneDriveForBusinessRestoreSessions","matched","Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession" +"BackupRestore","GetMgSolutionBackupRestoreOneDriveForBusinessRestoreSession.g.cs","v1.0","Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession","","","dispatcher","" +"BackupRestore","GetMgSolutionBackupRestoreOneDriveForBusinessRestoreSessionCount.g.cs","v1.0","Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionCount","GET","/solutions/backupRestore/oneDriveForBusinessRestoreSessions/$count","matched","Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionCount" +"BackupRestore","GetMgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact_Get.g.cs","v1.0","Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact","GET","/solutions/backupRestore/oneDriveForBusinessRestoreSessions/{param}/driveRestoreArtifacts/{param}","matched","Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact" +"BackupRestore","GetMgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact_List.g.cs","v1.0","Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact","GET","/solutions/backupRestore/oneDriveForBusinessRestoreSessions/{param}/driveRestoreArtifacts","matched","Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact" +"BackupRestore","GetMgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact.g.cs","v1.0","Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact","","","dispatcher","" +"BackupRestore","GetMgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest_Get.g.cs","v1.0","Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest","GET","/solutions/backupRestore/oneDriveForBusinessRestoreSessions/{param}/driveRestoreArtifactsBulkAdditionRequests/{param}","matched","Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest" +"BackupRestore","GetMgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest_List.g.cs","v1.0","Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest","GET","/solutions/backupRestore/oneDriveForBusinessRestoreSessions/{param}/driveRestoreArtifactsBulkAdditionRequests","matched","Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest" +"BackupRestore","GetMgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest.g.cs","v1.0","Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest","","","dispatcher","" +"BackupRestore","GetMgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequestCount.g.cs","v1.0","Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequestCount","GET","/solutions/backupRestore/oneDriveForBusinessRestoreSessions/{param}/driveRestoreArtifactsBulkAdditionRequests/$count","matched","Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequestCount" +"BackupRestore","GetMgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactCount.g.cs","v1.0","Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactCount","GET","/solutions/backupRestore/oneDriveForBusinessRestoreSessions/{param}/driveRestoreArtifacts/$count","matched","Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactCount" +"BackupRestore","GetMgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactRestorePoint.g.cs","v1.0","Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactRestorePoint","GET","/solutions/backupRestore/oneDriveForBusinessRestoreSessions/{param}/driveRestoreArtifacts/{param}/restorePoint","matched","Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactRestorePoint" +"BackupRestore","GetMgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact_Get.g.cs","v1.0","Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact","GET","/solutions/backupRestore/oneDriveForBusinessRestoreSessions/{param}/granularDriveRestoreArtifacts/{param}","matched","Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact" +"BackupRestore","GetMgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact_List.g.cs","v1.0","Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact","GET","/solutions/backupRestore/oneDriveForBusinessRestoreSessions/{param}/granularDriveRestoreArtifacts","matched","Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact" +"BackupRestore","GetMgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact.g.cs","v1.0","Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact","","","dispatcher","" +"BackupRestore","GetMgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifactCount.g.cs","v1.0","Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifactCount","GET","/solutions/backupRestore/oneDriveForBusinessRestoreSessions/{param}/granularDriveRestoreArtifacts/$count","matched","Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifactCount" +"BackupRestore","GetMgSolutionBackupRestorePoint_Get.g.cs","v1.0","Get-MgSolutionBackupRestorePoint","GET","/solutions/backupRestore/restorePoints/{param}","matched","Get-MgSolutionBackupRestorePoint" +"BackupRestore","GetMgSolutionBackupRestorePoint_List.g.cs","v1.0","Get-MgSolutionBackupRestorePoint","GET","/solutions/backupRestore/restorePoints","matched","Get-MgSolutionBackupRestorePoint" +"BackupRestore","GetMgSolutionBackupRestorePoint.g.cs","v1.0","Get-MgSolutionBackupRestorePoint","","","dispatcher","" +"BackupRestore","GetMgSolutionBackupRestorePointCount.g.cs","v1.0","Get-MgSolutionBackupRestorePointCount","GET","/solutions/backupRestore/restorePoints/$count","matched","Get-MgSolutionBackupRestorePointCount" +"BackupRestore","GetMgSolutionBackupRestorePointProtectionUnit.g.cs","v1.0","Get-MgSolutionBackupRestorePointProtectionUnit","GET","/solutions/backupRestore/restorePoints/{param}/protectionUnit","matched","Get-MgSolutionBackupRestorePointProtectionUnit" +"BackupRestore","GetMgSolutionBackupRestoreProtectionPolicy_Get.g.cs","v1.0","Get-MgSolutionBackupRestoreProtectionPolicy","GET","/solutions/backupRestore/protectionPolicies/{param}","matched","Get-MgSolutionBackupRestoreProtectionPolicy" +"BackupRestore","GetMgSolutionBackupRestoreProtectionPolicy_List.g.cs","v1.0","Get-MgSolutionBackupRestoreProtectionPolicy","GET","/solutions/backupRestore/protectionPolicies","matched","Get-MgSolutionBackupRestoreProtectionPolicy" +"BackupRestore","GetMgSolutionBackupRestoreProtectionPolicy.g.cs","v1.0","Get-MgSolutionBackupRestoreProtectionPolicy","","","dispatcher","" +"BackupRestore","GetMgSolutionBackupRestoreProtectionPolicyCount.g.cs","v1.0","Get-MgSolutionBackupRestoreProtectionPolicyCount","GET","/solutions/backupRestore/protectionPolicies/$count","matched","Get-MgSolutionBackupRestoreProtectionPolicyCount" +"BackupRestore","GetMgSolutionBackupRestoreProtectionUnit_Get.g.cs","v1.0","Get-MgSolutionBackupRestoreProtectionUnit","GET","/solutions/backupRestore/protectionUnits/{param}","matched","Get-MgSolutionBackupRestoreProtectionUnit" +"BackupRestore","GetMgSolutionBackupRestoreProtectionUnit_List.g.cs","v1.0","Get-MgSolutionBackupRestoreProtectionUnit","GET","/solutions/backupRestore/protectionUnits","matched","Get-MgSolutionBackupRestoreProtectionUnit" +"BackupRestore","GetMgSolutionBackupRestoreProtectionUnit.g.cs","v1.0","Get-MgSolutionBackupRestoreProtectionUnit","","","dispatcher","" +"BackupRestore","GetMgSolutionBackupRestoreProtectionUnitAsDriveProtectionUnit_Get.g.cs","v1.0","Get-MgSolutionBackupRestoreProtectionUnitAsDriveProtectionUnit","GET","","cast","" +"BackupRestore","GetMgSolutionBackupRestoreProtectionUnitAsDriveProtectionUnit_List.g.cs","v1.0","Get-MgSolutionBackupRestoreProtectionUnitAsDriveProtectionUnit","GET","","cast","" +"BackupRestore","GetMgSolutionBackupRestoreProtectionUnitAsDriveProtectionUnit.g.cs","v1.0","Get-MgSolutionBackupRestoreProtectionUnitAsDriveProtectionUnit","","","dispatcher","" +"BackupRestore","GetMgSolutionBackupRestoreProtectionUnitAsDriveProtectionUnitCount.g.cs","v1.0","Get-MgSolutionBackupRestoreProtectionUnitAsDriveProtectionUnitCount","GET","","cast","" +"BackupRestore","GetMgSolutionBackupRestoreProtectionUnitAsMailboxProtectionUnit_Get.g.cs","v1.0","Get-MgSolutionBackupRestoreProtectionUnitAsMailboxProtectionUnit","GET","","cast","" +"BackupRestore","GetMgSolutionBackupRestoreProtectionUnitAsMailboxProtectionUnit_List.g.cs","v1.0","Get-MgSolutionBackupRestoreProtectionUnitAsMailboxProtectionUnit","GET","","cast","" +"BackupRestore","GetMgSolutionBackupRestoreProtectionUnitAsMailboxProtectionUnit.g.cs","v1.0","Get-MgSolutionBackupRestoreProtectionUnitAsMailboxProtectionUnit","","","dispatcher","" +"BackupRestore","GetMgSolutionBackupRestoreProtectionUnitAsMailboxProtectionUnitCount.g.cs","v1.0","Get-MgSolutionBackupRestoreProtectionUnitAsMailboxProtectionUnitCount","GET","","cast","" +"BackupRestore","GetMgSolutionBackupRestoreProtectionUnitAsSiteProtectionUnit_Get.g.cs","v1.0","Get-MgSolutionBackupRestoreProtectionUnitAsSiteProtectionUnit","GET","","cast","" +"BackupRestore","GetMgSolutionBackupRestoreProtectionUnitAsSiteProtectionUnit_List.g.cs","v1.0","Get-MgSolutionBackupRestoreProtectionUnitAsSiteProtectionUnit","GET","","cast","" +"BackupRestore","GetMgSolutionBackupRestoreProtectionUnitAsSiteProtectionUnit.g.cs","v1.0","Get-MgSolutionBackupRestoreProtectionUnitAsSiteProtectionUnit","","","dispatcher","" +"BackupRestore","GetMgSolutionBackupRestoreProtectionUnitAsSiteProtectionUnitCount.g.cs","v1.0","Get-MgSolutionBackupRestoreProtectionUnitAsSiteProtectionUnitCount","GET","","cast","" +"BackupRestore","GetMgSolutionBackupRestoreProtectionUnitCount.g.cs","v1.0","Get-MgSolutionBackupRestoreProtectionUnitCount","GET","/solutions/backupRestore/protectionUnits/$count","matched","Get-MgSolutionBackupRestoreProtectionUnitCount" +"BackupRestore","GetMgSolutionBackupRestoreServiceApp_Get.g.cs","v1.0","Get-MgSolutionBackupRestoreServiceApp","GET","/solutions/backupRestore/serviceApps/{param}","matched","Get-MgSolutionBackupRestoreServiceApp" +"BackupRestore","GetMgSolutionBackupRestoreServiceApp_List.g.cs","v1.0","Get-MgSolutionBackupRestoreServiceApp","GET","/solutions/backupRestore/serviceApps","matched","Get-MgSolutionBackupRestoreServiceApp" +"BackupRestore","GetMgSolutionBackupRestoreServiceApp.g.cs","v1.0","Get-MgSolutionBackupRestoreServiceApp","","","dispatcher","" +"BackupRestore","GetMgSolutionBackupRestoreServiceAppCount.g.cs","v1.0","Get-MgSolutionBackupRestoreServiceAppCount","GET","/solutions/backupRestore/serviceApps/$count","matched","Get-MgSolutionBackupRestoreServiceAppCount" +"BackupRestore","GetMgSolutionBackupRestoreSession_Get.g.cs","v1.0","Get-MgSolutionBackupRestoreSession","GET","/solutions/backupRestore/restoreSessions/{param}","matched","Get-MgSolutionBackupRestoreSession" +"BackupRestore","GetMgSolutionBackupRestoreSession_List.g.cs","v1.0","Get-MgSolutionBackupRestoreSession","GET","/solutions/backupRestore/restoreSessions","matched","Get-MgSolutionBackupRestoreSession" +"BackupRestore","GetMgSolutionBackupRestoreSession.g.cs","v1.0","Get-MgSolutionBackupRestoreSession","","","dispatcher","" +"BackupRestore","GetMgSolutionBackupRestoreSessionCount.g.cs","v1.0","Get-MgSolutionBackupRestoreSessionCount","GET","/solutions/backupRestore/restoreSessions/$count","matched","Get-MgSolutionBackupRestoreSessionCount" +"BackupRestore","GetMgSolutionBackupRestoreSharePointBrowseSession_Get.g.cs","v1.0","Get-MgSolutionBackupRestoreSharePointBrowseSession","GET","/solutions/backupRestore/sharePointBrowseSessions/{param}","matched","Get-MgSolutionBackupRestoreSharePointBrowseSession" +"BackupRestore","GetMgSolutionBackupRestoreSharePointBrowseSession_List.g.cs","v1.0","Get-MgSolutionBackupRestoreSharePointBrowseSession","GET","/solutions/backupRestore/sharePointBrowseSessions","matched","Get-MgSolutionBackupRestoreSharePointBrowseSession" +"BackupRestore","GetMgSolutionBackupRestoreSharePointBrowseSession.g.cs","v1.0","Get-MgSolutionBackupRestoreSharePointBrowseSession","","","dispatcher","" +"BackupRestore","GetMgSolutionBackupRestoreSharePointBrowseSessionCount.g.cs","v1.0","Get-MgSolutionBackupRestoreSharePointBrowseSessionCount","GET","/solutions/backupRestore/sharePointBrowseSessions/$count","matched","Get-MgSolutionBackupRestoreSharePointBrowseSessionCount" +"BackupRestore","GetMgSolutionBackupRestoreSharePointProtectionPolicy_Get.g.cs","v1.0","Get-MgSolutionBackupRestoreSharePointProtectionPolicy","GET","/solutions/backupRestore/sharePointProtectionPolicies/{param}","matched","Get-MgSolutionBackupRestoreSharePointProtectionPolicy" +"BackupRestore","GetMgSolutionBackupRestoreSharePointProtectionPolicy_List.g.cs","v1.0","Get-MgSolutionBackupRestoreSharePointProtectionPolicy","GET","/solutions/backupRestore/sharePointProtectionPolicies","matched","Get-MgSolutionBackupRestoreSharePointProtectionPolicy" +"BackupRestore","GetMgSolutionBackupRestoreSharePointProtectionPolicy.g.cs","v1.0","Get-MgSolutionBackupRestoreSharePointProtectionPolicy","","","dispatcher","" +"BackupRestore","GetMgSolutionBackupRestoreSharePointProtectionPolicyCount.g.cs","v1.0","Get-MgSolutionBackupRestoreSharePointProtectionPolicyCount","GET","/solutions/backupRestore/sharePointProtectionPolicies/$count","matched","Get-MgSolutionBackupRestoreSharePointProtectionPolicyCount" +"BackupRestore","GetMgSolutionBackupRestoreSharePointProtectionPolicySiteInclusionRule_Get.g.cs","v1.0","Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteInclusionRule","GET","/solutions/backupRestore/sharePointProtectionPolicies/{param}/siteInclusionRules/{param}","matched","Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteInclusionRule" +"BackupRestore","GetMgSolutionBackupRestoreSharePointProtectionPolicySiteInclusionRule_List.g.cs","v1.0","Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteInclusionRule","GET","/solutions/backupRestore/sharePointProtectionPolicies/{param}/siteInclusionRules","matched","Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteInclusionRule" +"BackupRestore","GetMgSolutionBackupRestoreSharePointProtectionPolicySiteInclusionRule.g.cs","v1.0","Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteInclusionRule","","","dispatcher","" +"BackupRestore","GetMgSolutionBackupRestoreSharePointProtectionPolicySiteInclusionRuleCount.g.cs","v1.0","Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteInclusionRuleCount","GET","/solutions/backupRestore/sharePointProtectionPolicies/{param}/siteInclusionRules/$count","matched","Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteInclusionRuleCount" +"BackupRestore","GetMgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnit_Get.g.cs","v1.0","Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnit","GET","/solutions/backupRestore/sharePointProtectionPolicies/{param}/siteProtectionUnits/{param}","matched","Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnit" +"BackupRestore","GetMgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnit_List.g.cs","v1.0","Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnit","GET","/solutions/backupRestore/sharePointProtectionPolicies/{param}/siteProtectionUnits","matched","Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnit" +"BackupRestore","GetMgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnit.g.cs","v1.0","Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnit","","","dispatcher","" +"BackupRestore","GetMgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitBulkAdditionJob_Get.g.cs","v1.0","Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitBulkAdditionJob","GET","/solutions/backupRestore/sharePointProtectionPolicies/{param}/siteProtectionUnitsBulkAdditionJobs/{param}","matched","Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitBulkAdditionJob" +"BackupRestore","GetMgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitBulkAdditionJob_List.g.cs","v1.0","Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitBulkAdditionJob","GET","/solutions/backupRestore/sharePointProtectionPolicies/{param}/siteProtectionUnitsBulkAdditionJobs","matched","Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitBulkAdditionJob" +"BackupRestore","GetMgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitBulkAdditionJob.g.cs","v1.0","Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitBulkAdditionJob","","","dispatcher","" +"BackupRestore","GetMgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitBulkAdditionJobCount.g.cs","v1.0","Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitBulkAdditionJobCount","GET","/solutions/backupRestore/sharePointProtectionPolicies/{param}/siteProtectionUnitsBulkAdditionJobs/$count","matched","Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitBulkAdditionJobCount" +"BackupRestore","GetMgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitCount.g.cs","v1.0","Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitCount","GET","/solutions/backupRestore/sharePointProtectionPolicies/{param}/siteProtectionUnits/$count","matched","Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitCount" +"BackupRestore","GetMgSolutionBackupRestoreSharePointRestoreSession_Get.g.cs","v1.0","Get-MgSolutionBackupRestoreSharePointRestoreSession","GET","/solutions/backupRestore/sharePointRestoreSessions/{param}","matched","Get-MgSolutionBackupRestoreSharePointRestoreSession" +"BackupRestore","GetMgSolutionBackupRestoreSharePointRestoreSession_List.g.cs","v1.0","Get-MgSolutionBackupRestoreSharePointRestoreSession","GET","/solutions/backupRestore/sharePointRestoreSessions","matched","Get-MgSolutionBackupRestoreSharePointRestoreSession" +"BackupRestore","GetMgSolutionBackupRestoreSharePointRestoreSession.g.cs","v1.0","Get-MgSolutionBackupRestoreSharePointRestoreSession","","","dispatcher","" +"BackupRestore","GetMgSolutionBackupRestoreSharePointRestoreSessionCount.g.cs","v1.0","Get-MgSolutionBackupRestoreSharePointRestoreSessionCount","GET","/solutions/backupRestore/sharePointRestoreSessions/$count","matched","Get-MgSolutionBackupRestoreSharePointRestoreSessionCount" +"BackupRestore","GetMgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact_Get.g.cs","v1.0","Get-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact","GET","/solutions/backupRestore/sharePointRestoreSessions/{param}/granularSiteRestoreArtifacts/{param}","matched","Get-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact" +"BackupRestore","GetMgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact_List.g.cs","v1.0","Get-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact","GET","/solutions/backupRestore/sharePointRestoreSessions/{param}/granularSiteRestoreArtifacts","matched","Get-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact" +"BackupRestore","GetMgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact.g.cs","v1.0","Get-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact","","","dispatcher","" +"BackupRestore","GetMgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifactCount.g.cs","v1.0","Get-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifactCount","GET","/solutions/backupRestore/sharePointRestoreSessions/{param}/granularSiteRestoreArtifacts/$count","matched","Get-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifactCount" +"BackupRestore","GetMgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact_Get.g.cs","v1.0","Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact","GET","/solutions/backupRestore/sharePointRestoreSessions/{param}/siteRestoreArtifacts/{param}","matched","Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact" +"BackupRestore","GetMgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact_List.g.cs","v1.0","Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact","GET","/solutions/backupRestore/sharePointRestoreSessions/{param}/siteRestoreArtifacts","matched","Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact" +"BackupRestore","GetMgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact.g.cs","v1.0","Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact","","","dispatcher","" +"BackupRestore","GetMgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest_Get.g.cs","v1.0","Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest","GET","/solutions/backupRestore/sharePointRestoreSessions/{param}/siteRestoreArtifactsBulkAdditionRequests/{param}","matched","Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest" +"BackupRestore","GetMgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest_List.g.cs","v1.0","Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest","GET","/solutions/backupRestore/sharePointRestoreSessions/{param}/siteRestoreArtifactsBulkAdditionRequests","matched","Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest" +"BackupRestore","GetMgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest.g.cs","v1.0","Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest","","","dispatcher","" +"BackupRestore","GetMgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequestCount.g.cs","v1.0","Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequestCount","GET","/solutions/backupRestore/sharePointRestoreSessions/{param}/siteRestoreArtifactsBulkAdditionRequests/$count","matched","Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequestCount" +"BackupRestore","GetMgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactCount.g.cs","v1.0","Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactCount","GET","/solutions/backupRestore/sharePointRestoreSessions/{param}/siteRestoreArtifacts/$count","matched","Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactCount" +"BackupRestore","GetMgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactRestorePoint.g.cs","v1.0","Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactRestorePoint","GET","/solutions/backupRestore/sharePointRestoreSessions/{param}/siteRestoreArtifacts/{param}/restorePoint","matched","Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactRestorePoint" +"BackupRestore","GetMgSolutionBackupRestoreSiteInclusionRule_Get.g.cs","v1.0","Get-MgSolutionBackupRestoreSiteInclusionRule","GET","/solutions/backupRestore/siteInclusionRules/{param}","matched","Get-MgSolutionBackupRestoreSiteInclusionRule" +"BackupRestore","GetMgSolutionBackupRestoreSiteInclusionRule_List.g.cs","v1.0","Get-MgSolutionBackupRestoreSiteInclusionRule","GET","/solutions/backupRestore/siteInclusionRules","matched","Get-MgSolutionBackupRestoreSiteInclusionRule" +"BackupRestore","GetMgSolutionBackupRestoreSiteInclusionRule.g.cs","v1.0","Get-MgSolutionBackupRestoreSiteInclusionRule","","","dispatcher","" +"BackupRestore","GetMgSolutionBackupRestoreSiteInclusionRuleCount.g.cs","v1.0","Get-MgSolutionBackupRestoreSiteInclusionRuleCount","GET","/solutions/backupRestore/siteInclusionRules/$count","matched","Get-MgSolutionBackupRestoreSiteInclusionRuleCount" +"BackupRestore","GetMgSolutionBackupRestoreSiteProtectionUnit_Get.g.cs","v1.0","Get-MgSolutionBackupRestoreSiteProtectionUnit","GET","/solutions/backupRestore/siteProtectionUnits/{param}","matched","Get-MgSolutionBackupRestoreSiteProtectionUnit" +"BackupRestore","GetMgSolutionBackupRestoreSiteProtectionUnit_List.g.cs","v1.0","Get-MgSolutionBackupRestoreSiteProtectionUnit","GET","/solutions/backupRestore/siteProtectionUnits","matched","Get-MgSolutionBackupRestoreSiteProtectionUnit" +"BackupRestore","GetMgSolutionBackupRestoreSiteProtectionUnit.g.cs","v1.0","Get-MgSolutionBackupRestoreSiteProtectionUnit","","","dispatcher","" +"BackupRestore","GetMgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob_Get.g.cs","v1.0","Get-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob","GET","/solutions/backupRestore/siteProtectionUnitsBulkAdditionJobs/{param}","matched","Get-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob" +"BackupRestore","GetMgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob_List.g.cs","v1.0","Get-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob","GET","/solutions/backupRestore/siteProtectionUnitsBulkAdditionJobs","matched","Get-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob" +"BackupRestore","GetMgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob.g.cs","v1.0","Get-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob","","","dispatcher","" +"BackupRestore","GetMgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJobCount.g.cs","v1.0","Get-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJobCount","GET","/solutions/backupRestore/siteProtectionUnitsBulkAdditionJobs/$count","matched","Get-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJobCount" +"BackupRestore","GetMgSolutionBackupRestoreSiteProtectionUnitCount.g.cs","v1.0","Get-MgSolutionBackupRestoreSiteProtectionUnitCount","GET","/solutions/backupRestore/siteProtectionUnits/$count","matched","Get-MgSolutionBackupRestoreSiteProtectionUnitCount" +"BackupRestore","InvokeMgSolutionBackupRestoreBrowseSessionBrowse.g.cs","v1.0","Invoke-MgSolutionBackupRestoreBrowseSessionBrowse","POST","/solutions/backupRestore/browseSessions/{param}/browse","mismatch","Invoke-MgBrowseSolutionBackupRestoreBrowseSession" +"BackupRestore","InvokeMgSolutionBackupRestoreEnable.g.cs","v1.0","Invoke-MgSolutionBackupRestoreEnable","POST","/solutions/backupRestore/enable","mismatch","Enable-MgSolutionBackupRestore" +"BackupRestore","InvokeMgSolutionBackupRestorePointSearch.g.cs","v1.0","Invoke-MgSolutionBackupRestorePointSearch","POST","/solutions/backupRestore/restorePoints/search","mismatch","Search-MgSolutionBackupRestorePoint" +"BackupRestore","InvokeMgSolutionBackupRestoreProtectionPolicyActivate.g.cs","v1.0","Invoke-MgSolutionBackupRestoreProtectionPolicyActivate","POST","/solutions/backupRestore/protectionPolicies/{param}/activate","mismatch","Initialize-MgSolutionBackupRestoreProtectionPolicy" +"BackupRestore","InvokeMgSolutionBackupRestoreProtectionPolicyDeactivate.g.cs","v1.0","Invoke-MgSolutionBackupRestoreProtectionPolicyDeactivate","POST","/solutions/backupRestore/protectionPolicies/{param}/deactivate","mismatch","Invoke-MgDeactivateSolutionBackupRestoreProtectionPolicy" +"BackupRestore","InvokeMgSolutionBackupRestoreProtectionUnitCancelOffboard.g.cs","v1.0","Invoke-MgSolutionBackupRestoreProtectionUnitCancelOffboard","POST","/solutions/backupRestore/protectionUnits/{param}/cancelOffboard","mismatch","Stop-MgSolutionBackupRestoreProtectionUnitOffboard" +"BackupRestore","InvokeMgSolutionBackupRestoreProtectionUnitOffboard.g.cs","v1.0","Invoke-MgSolutionBackupRestoreProtectionUnitOffboard","POST","/solutions/backupRestore/protectionUnits/{param}/offboard","mismatch","Invoke-MgOffboardSolutionBackupRestoreProtectionUnit" +"BackupRestore","InvokeMgSolutionBackupRestoreServiceAppActivate.g.cs","v1.0","Invoke-MgSolutionBackupRestoreServiceAppActivate","POST","/solutions/backupRestore/serviceApps/{param}/activate","mismatch","Initialize-MgSolutionBackupRestoreServiceApp" +"BackupRestore","InvokeMgSolutionBackupRestoreServiceAppDeactivate.g.cs","v1.0","Invoke-MgSolutionBackupRestoreServiceAppDeactivate","POST","/solutions/backupRestore/serviceApps/{param}/deactivate","mismatch","Invoke-MgDeactivateSolutionBackupRestoreServiceApp" +"BackupRestore","InvokeMgSolutionBackupRestoreSessionActivate.g.cs","v1.0","Invoke-MgSolutionBackupRestoreSessionActivate","POST","/solutions/backupRestore/restoreSessions/{param}/activate","mismatch","Initialize-MgSolutionBackupRestoreSession" +"BackupRestore","NewMgSolutionBackupRestoreBrowseSession.g.cs","v1.0","New-MgSolutionBackupRestoreBrowseSession","POST","/solutions/backupRestore/browseSessions","matched","New-MgSolutionBackupRestoreBrowseSession" +"BackupRestore","NewMgSolutionBackupRestoreDriveInclusionRule.g.cs","v1.0","New-MgSolutionBackupRestoreDriveInclusionRule","POST","/solutions/backupRestore/driveInclusionRules","matched","New-MgSolutionBackupRestoreDriveInclusionRule" +"BackupRestore","NewMgSolutionBackupRestoreDriveProtectionUnit.g.cs","v1.0","New-MgSolutionBackupRestoreDriveProtectionUnit","POST","/solutions/backupRestore/driveProtectionUnits","matched","New-MgSolutionBackupRestoreDriveProtectionUnit" +"BackupRestore","NewMgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob.g.cs","v1.0","New-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob","POST","/solutions/backupRestore/driveProtectionUnitsBulkAdditionJobs","matched","New-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob" +"BackupRestore","NewMgSolutionBackupRestoreExchangeProtectionPolicy.g.cs","v1.0","New-MgSolutionBackupRestoreExchangeProtectionPolicy","POST","/solutions/backupRestore/exchangeProtectionPolicies","matched","New-MgSolutionBackupRestoreExchangeProtectionPolicy" +"BackupRestore","NewMgSolutionBackupRestoreExchangeRestoreSession.g.cs","v1.0","New-MgSolutionBackupRestoreExchangeRestoreSession","POST","/solutions/backupRestore/exchangeRestoreSessions","matched","New-MgSolutionBackupRestoreExchangeRestoreSession" +"BackupRestore","NewMgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact.g.cs","v1.0","New-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact","POST","/solutions/backupRestore/exchangeRestoreSessions/{param}/granularMailboxRestoreArtifacts","matched","New-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact" +"BackupRestore","NewMgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact.g.cs","v1.0","New-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact","POST","/solutions/backupRestore/exchangeRestoreSessions/{param}/mailboxRestoreArtifacts","matched","New-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact" +"BackupRestore","NewMgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest.g.cs","v1.0","New-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest","POST","/solutions/backupRestore/exchangeRestoreSessions/{param}/mailboxRestoreArtifactsBulkAdditionRequests","matched","New-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest" +"BackupRestore","NewMgSolutionBackupRestoreMailboxInclusionRule.g.cs","v1.0","New-MgSolutionBackupRestoreMailboxInclusionRule","POST","/solutions/backupRestore/mailboxInclusionRules","matched","New-MgSolutionBackupRestoreMailboxInclusionRule" +"BackupRestore","NewMgSolutionBackupRestoreMailboxProtectionUnit.g.cs","v1.0","New-MgSolutionBackupRestoreMailboxProtectionUnit","POST","/solutions/backupRestore/mailboxProtectionUnits","matched","New-MgSolutionBackupRestoreMailboxProtectionUnit" +"BackupRestore","NewMgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob.g.cs","v1.0","New-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob","POST","/solutions/backupRestore/mailboxProtectionUnitsBulkAdditionJobs","matched","New-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob" +"BackupRestore","NewMgSolutionBackupRestoreOneDriveForBusinessBrowseSession.g.cs","v1.0","New-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession","POST","/solutions/backupRestore/oneDriveForBusinessBrowseSessions","matched","New-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession" +"BackupRestore","NewMgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy.g.cs","v1.0","New-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy","POST","/solutions/backupRestore/oneDriveForBusinessProtectionPolicies","matched","New-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy" +"BackupRestore","NewMgSolutionBackupRestoreOneDriveForBusinessRestoreSession.g.cs","v1.0","New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession","POST","/solutions/backupRestore/oneDriveForBusinessRestoreSessions","matched","New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession" +"BackupRestore","NewMgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact.g.cs","v1.0","New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact","POST","/solutions/backupRestore/oneDriveForBusinessRestoreSessions/{param}/driveRestoreArtifacts","matched","New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact" +"BackupRestore","NewMgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest.g.cs","v1.0","New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest","POST","/solutions/backupRestore/oneDriveForBusinessRestoreSessions/{param}/driveRestoreArtifactsBulkAdditionRequests","matched","New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest" +"BackupRestore","NewMgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact.g.cs","v1.0","New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact","POST","/solutions/backupRestore/oneDriveForBusinessRestoreSessions/{param}/granularDriveRestoreArtifacts","matched","New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact" +"BackupRestore","NewMgSolutionBackupRestorePoint.g.cs","v1.0","New-MgSolutionBackupRestorePoint","POST","/solutions/backupRestore/restorePoints","matched","New-MgSolutionBackupRestorePoint" +"BackupRestore","NewMgSolutionBackupRestoreProtectionPolicy.g.cs","v1.0","New-MgSolutionBackupRestoreProtectionPolicy","POST","/solutions/backupRestore/protectionPolicies","matched","New-MgSolutionBackupRestoreProtectionPolicy" +"BackupRestore","NewMgSolutionBackupRestoreServiceApp.g.cs","v1.0","New-MgSolutionBackupRestoreServiceApp","POST","/solutions/backupRestore/serviceApps","matched","New-MgSolutionBackupRestoreServiceApp" +"BackupRestore","NewMgSolutionBackupRestoreSession.g.cs","v1.0","New-MgSolutionBackupRestoreSession","POST","/solutions/backupRestore/restoreSessions","matched","New-MgSolutionBackupRestoreSession" +"BackupRestore","NewMgSolutionBackupRestoreSharePointBrowseSession.g.cs","v1.0","New-MgSolutionBackupRestoreSharePointBrowseSession","POST","/solutions/backupRestore/sharePointBrowseSessions","matched","New-MgSolutionBackupRestoreSharePointBrowseSession" +"BackupRestore","NewMgSolutionBackupRestoreSharePointProtectionPolicy.g.cs","v1.0","New-MgSolutionBackupRestoreSharePointProtectionPolicy","POST","/solutions/backupRestore/sharePointProtectionPolicies","matched","New-MgSolutionBackupRestoreSharePointProtectionPolicy" +"BackupRestore","NewMgSolutionBackupRestoreSharePointRestoreSession.g.cs","v1.0","New-MgSolutionBackupRestoreSharePointRestoreSession","POST","/solutions/backupRestore/sharePointRestoreSessions","matched","New-MgSolutionBackupRestoreSharePointRestoreSession" +"BackupRestore","NewMgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact.g.cs","v1.0","New-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact","POST","/solutions/backupRestore/sharePointRestoreSessions/{param}/granularSiteRestoreArtifacts","matched","New-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact" +"BackupRestore","NewMgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact.g.cs","v1.0","New-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact","POST","/solutions/backupRestore/sharePointRestoreSessions/{param}/siteRestoreArtifacts","matched","New-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact" +"BackupRestore","NewMgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest.g.cs","v1.0","New-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest","POST","/solutions/backupRestore/sharePointRestoreSessions/{param}/siteRestoreArtifactsBulkAdditionRequests","matched","New-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest" +"BackupRestore","NewMgSolutionBackupRestoreSiteInclusionRule.g.cs","v1.0","New-MgSolutionBackupRestoreSiteInclusionRule","POST","/solutions/backupRestore/siteInclusionRules","matched","New-MgSolutionBackupRestoreSiteInclusionRule" +"BackupRestore","NewMgSolutionBackupRestoreSiteProtectionUnit.g.cs","v1.0","New-MgSolutionBackupRestoreSiteProtectionUnit","POST","/solutions/backupRestore/siteProtectionUnits","matched","New-MgSolutionBackupRestoreSiteProtectionUnit" +"BackupRestore","NewMgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob.g.cs","v1.0","New-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob","POST","/solutions/backupRestore/siteProtectionUnitsBulkAdditionJobs","matched","New-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob" +"BackupRestore","RemoveMgSolutionBackupRestore.g.cs","v1.0","Remove-MgSolutionBackupRestore","DELETE","/solutions/backupRestore","matched","Remove-MgSolutionBackupRestore" +"BackupRestore","RemoveMgSolutionBackupRestoreBrowseSession.g.cs","v1.0","Remove-MgSolutionBackupRestoreBrowseSession","DELETE","/solutions/backupRestore/browseSessions/{param}","matched","Remove-MgSolutionBackupRestoreBrowseSession" +"BackupRestore","RemoveMgSolutionBackupRestoreDriveInclusionRule.g.cs","v1.0","Remove-MgSolutionBackupRestoreDriveInclusionRule","DELETE","/solutions/backupRestore/driveInclusionRules/{param}","matched","Remove-MgSolutionBackupRestoreDriveInclusionRule" +"BackupRestore","RemoveMgSolutionBackupRestoreDriveProtectionUnit.g.cs","v1.0","Remove-MgSolutionBackupRestoreDriveProtectionUnit","DELETE","/solutions/backupRestore/driveProtectionUnits/{param}","matched","Remove-MgSolutionBackupRestoreDriveProtectionUnit" +"BackupRestore","RemoveMgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob.g.cs","v1.0","Remove-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob","DELETE","/solutions/backupRestore/driveProtectionUnitsBulkAdditionJobs/{param}","matched","Remove-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob" +"BackupRestore","RemoveMgSolutionBackupRestoreEmailNotificationSetting.g.cs","v1.0","Remove-MgSolutionBackupRestoreEmailNotificationSetting","DELETE","/solutions/backupRestore/emailNotificationsSetting","matched","Remove-MgSolutionBackupRestoreEmailNotificationSetting" +"BackupRestore","RemoveMgSolutionBackupRestoreExchangeProtectionPolicy.g.cs","v1.0","Remove-MgSolutionBackupRestoreExchangeProtectionPolicy","DELETE","/solutions/backupRestore/exchangeProtectionPolicies/{param}","matched","Remove-MgSolutionBackupRestoreExchangeProtectionPolicy" +"BackupRestore","RemoveMgSolutionBackupRestoreExchangeRestoreSession.g.cs","v1.0","Remove-MgSolutionBackupRestoreExchangeRestoreSession","DELETE","/solutions/backupRestore/exchangeRestoreSessions/{param}","matched","Remove-MgSolutionBackupRestoreExchangeRestoreSession" +"BackupRestore","RemoveMgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact.g.cs","v1.0","Remove-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact","DELETE","/solutions/backupRestore/exchangeRestoreSessions/{param}/granularMailboxRestoreArtifacts/{param}","matched","Remove-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact" +"BackupRestore","RemoveMgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact.g.cs","v1.0","Remove-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact","DELETE","/solutions/backupRestore/exchangeRestoreSessions/{param}/mailboxRestoreArtifacts/{param}","matched","Remove-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact" +"BackupRestore","RemoveMgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest.g.cs","v1.0","Remove-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest","DELETE","/solutions/backupRestore/exchangeRestoreSessions/{param}/mailboxRestoreArtifactsBulkAdditionRequests/{param}","matched","Remove-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest" +"BackupRestore","RemoveMgSolutionBackupRestoreMailboxInclusionRule.g.cs","v1.0","Remove-MgSolutionBackupRestoreMailboxInclusionRule","DELETE","/solutions/backupRestore/mailboxInclusionRules/{param}","matched","Remove-MgSolutionBackupRestoreMailboxInclusionRule" +"BackupRestore","RemoveMgSolutionBackupRestoreMailboxProtectionUnit.g.cs","v1.0","Remove-MgSolutionBackupRestoreMailboxProtectionUnit","DELETE","/solutions/backupRestore/mailboxProtectionUnits/{param}","matched","Remove-MgSolutionBackupRestoreMailboxProtectionUnit" +"BackupRestore","RemoveMgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob.g.cs","v1.0","Remove-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob","DELETE","/solutions/backupRestore/mailboxProtectionUnitsBulkAdditionJobs/{param}","matched","Remove-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob" +"BackupRestore","RemoveMgSolutionBackupRestoreOneDriveForBusinessBrowseSession.g.cs","v1.0","Remove-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession","DELETE","/solutions/backupRestore/oneDriveForBusinessBrowseSessions/{param}","matched","Remove-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession" +"BackupRestore","RemoveMgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy.g.cs","v1.0","Remove-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy","DELETE","/solutions/backupRestore/oneDriveForBusinessProtectionPolicies/{param}","matched","Remove-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy" +"BackupRestore","RemoveMgSolutionBackupRestoreOneDriveForBusinessRestoreSession.g.cs","v1.0","Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession","DELETE","/solutions/backupRestore/oneDriveForBusinessRestoreSessions/{param}","matched","Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession" +"BackupRestore","RemoveMgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact.g.cs","v1.0","Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact","DELETE","/solutions/backupRestore/oneDriveForBusinessRestoreSessions/{param}/driveRestoreArtifacts/{param}","matched","Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact" +"BackupRestore","RemoveMgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest.g.cs","v1.0","Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest","DELETE","/solutions/backupRestore/oneDriveForBusinessRestoreSessions/{param}/driveRestoreArtifactsBulkAdditionRequests/{param}","matched","Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest" +"BackupRestore","RemoveMgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact.g.cs","v1.0","Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact","DELETE","/solutions/backupRestore/oneDriveForBusinessRestoreSessions/{param}/granularDriveRestoreArtifacts/{param}","matched","Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact" +"BackupRestore","RemoveMgSolutionBackupRestorePoint.g.cs","v1.0","Remove-MgSolutionBackupRestorePoint","DELETE","/solutions/backupRestore/restorePoints/{param}","matched","Remove-MgSolutionBackupRestorePoint" +"BackupRestore","RemoveMgSolutionBackupRestoreProtectionPolicy.g.cs","v1.0","Remove-MgSolutionBackupRestoreProtectionPolicy","DELETE","/solutions/backupRestore/protectionPolicies/{param}","matched","Remove-MgSolutionBackupRestoreProtectionPolicy" +"BackupRestore","RemoveMgSolutionBackupRestoreServiceApp.g.cs","v1.0","Remove-MgSolutionBackupRestoreServiceApp","DELETE","/solutions/backupRestore/serviceApps/{param}","matched","Remove-MgSolutionBackupRestoreServiceApp" +"BackupRestore","RemoveMgSolutionBackupRestoreSession.g.cs","v1.0","Remove-MgSolutionBackupRestoreSession","DELETE","/solutions/backupRestore/restoreSessions/{param}","matched","Remove-MgSolutionBackupRestoreSession" +"BackupRestore","RemoveMgSolutionBackupRestoreSharePointBrowseSession.g.cs","v1.0","Remove-MgSolutionBackupRestoreSharePointBrowseSession","DELETE","/solutions/backupRestore/sharePointBrowseSessions/{param}","matched","Remove-MgSolutionBackupRestoreSharePointBrowseSession" +"BackupRestore","RemoveMgSolutionBackupRestoreSharePointProtectionPolicy.g.cs","v1.0","Remove-MgSolutionBackupRestoreSharePointProtectionPolicy","DELETE","/solutions/backupRestore/sharePointProtectionPolicies/{param}","matched","Remove-MgSolutionBackupRestoreSharePointProtectionPolicy" +"BackupRestore","RemoveMgSolutionBackupRestoreSharePointRestoreSession.g.cs","v1.0","Remove-MgSolutionBackupRestoreSharePointRestoreSession","DELETE","/solutions/backupRestore/sharePointRestoreSessions/{param}","matched","Remove-MgSolutionBackupRestoreSharePointRestoreSession" +"BackupRestore","RemoveMgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact.g.cs","v1.0","Remove-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact","DELETE","/solutions/backupRestore/sharePointRestoreSessions/{param}/granularSiteRestoreArtifacts/{param}","matched","Remove-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact" +"BackupRestore","RemoveMgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact.g.cs","v1.0","Remove-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact","DELETE","/solutions/backupRestore/sharePointRestoreSessions/{param}/siteRestoreArtifacts/{param}","matched","Remove-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact" +"BackupRestore","RemoveMgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest.g.cs","v1.0","Remove-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest","DELETE","/solutions/backupRestore/sharePointRestoreSessions/{param}/siteRestoreArtifactsBulkAdditionRequests/{param}","matched","Remove-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest" +"BackupRestore","RemoveMgSolutionBackupRestoreSiteInclusionRule.g.cs","v1.0","Remove-MgSolutionBackupRestoreSiteInclusionRule","DELETE","/solutions/backupRestore/siteInclusionRules/{param}","matched","Remove-MgSolutionBackupRestoreSiteInclusionRule" +"BackupRestore","RemoveMgSolutionBackupRestoreSiteProtectionUnit.g.cs","v1.0","Remove-MgSolutionBackupRestoreSiteProtectionUnit","DELETE","/solutions/backupRestore/siteProtectionUnits/{param}","matched","Remove-MgSolutionBackupRestoreSiteProtectionUnit" +"BackupRestore","RemoveMgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob.g.cs","v1.0","Remove-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob","DELETE","/solutions/backupRestore/siteProtectionUnitsBulkAdditionJobs/{param}","matched","Remove-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob" +"BackupRestore","UpdateMgSolutionBackupRestore.g.cs","v1.0","Update-MgSolutionBackupRestore","PATCH","/solutions/backupRestore","matched","Update-MgSolutionBackupRestore" +"BackupRestore","UpdateMgSolutionBackupRestoreBrowseSession.g.cs","v1.0","Update-MgSolutionBackupRestoreBrowseSession","PATCH","/solutions/backupRestore/browseSessions/{param}","matched","Update-MgSolutionBackupRestoreBrowseSession" +"BackupRestore","UpdateMgSolutionBackupRestoreDriveInclusionRule.g.cs","v1.0","Update-MgSolutionBackupRestoreDriveInclusionRule","PATCH","/solutions/backupRestore/driveInclusionRules/{param}","matched","Update-MgSolutionBackupRestoreDriveInclusionRule" +"BackupRestore","UpdateMgSolutionBackupRestoreDriveProtectionUnit.g.cs","v1.0","Update-MgSolutionBackupRestoreDriveProtectionUnit","PATCH","/solutions/backupRestore/driveProtectionUnits/{param}","matched","Update-MgSolutionBackupRestoreDriveProtectionUnit" +"BackupRestore","UpdateMgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob.g.cs","v1.0","Update-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob","PATCH","/solutions/backupRestore/driveProtectionUnitsBulkAdditionJobs/{param}","matched","Update-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob" +"BackupRestore","UpdateMgSolutionBackupRestoreEmailNotificationSetting.g.cs","v1.0","Update-MgSolutionBackupRestoreEmailNotificationSetting","PATCH","/solutions/backupRestore/emailNotificationsSetting","matched","Update-MgSolutionBackupRestoreEmailNotificationSetting" +"BackupRestore","UpdateMgSolutionBackupRestoreExchangeProtectionPolicy.g.cs","v1.0","Update-MgSolutionBackupRestoreExchangeProtectionPolicy","PATCH","/solutions/backupRestore/exchangeProtectionPolicies/{param}","matched","Update-MgSolutionBackupRestoreExchangeProtectionPolicy" +"BackupRestore","UpdateMgSolutionBackupRestoreExchangeRestoreSession.g.cs","v1.0","Update-MgSolutionBackupRestoreExchangeRestoreSession","PATCH","/solutions/backupRestore/exchangeRestoreSessions/{param}","matched","Update-MgSolutionBackupRestoreExchangeRestoreSession" +"BackupRestore","UpdateMgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact.g.cs","v1.0","Update-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact","PATCH","/solutions/backupRestore/exchangeRestoreSessions/{param}/granularMailboxRestoreArtifacts/{param}","matched","Update-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact" +"BackupRestore","UpdateMgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact.g.cs","v1.0","Update-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact","PATCH","/solutions/backupRestore/exchangeRestoreSessions/{param}/mailboxRestoreArtifacts/{param}","matched","Update-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact" +"BackupRestore","UpdateMgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest.g.cs","v1.0","Update-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest","PATCH","/solutions/backupRestore/exchangeRestoreSessions/{param}/mailboxRestoreArtifactsBulkAdditionRequests/{param}","matched","Update-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest" +"BackupRestore","UpdateMgSolutionBackupRestoreMailboxInclusionRule.g.cs","v1.0","Update-MgSolutionBackupRestoreMailboxInclusionRule","PATCH","/solutions/backupRestore/mailboxInclusionRules/{param}","matched","Update-MgSolutionBackupRestoreMailboxInclusionRule" +"BackupRestore","UpdateMgSolutionBackupRestoreMailboxProtectionUnit.g.cs","v1.0","Update-MgSolutionBackupRestoreMailboxProtectionUnit","PATCH","/solutions/backupRestore/mailboxProtectionUnits/{param}","matched","Update-MgSolutionBackupRestoreMailboxProtectionUnit" +"BackupRestore","UpdateMgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob.g.cs","v1.0","Update-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob","PATCH","/solutions/backupRestore/mailboxProtectionUnitsBulkAdditionJobs/{param}","matched","Update-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob" +"BackupRestore","UpdateMgSolutionBackupRestoreOneDriveForBusinessBrowseSession.g.cs","v1.0","Update-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession","PATCH","/solutions/backupRestore/oneDriveForBusinessBrowseSessions/{param}","matched","Update-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession" +"BackupRestore","UpdateMgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy.g.cs","v1.0","Update-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy","PATCH","/solutions/backupRestore/oneDriveForBusinessProtectionPolicies/{param}","matched","Update-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy" +"BackupRestore","UpdateMgSolutionBackupRestoreOneDriveForBusinessRestoreSession.g.cs","v1.0","Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession","PATCH","/solutions/backupRestore/oneDriveForBusinessRestoreSessions/{param}","matched","Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession" +"BackupRestore","UpdateMgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact.g.cs","v1.0","Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact","PATCH","/solutions/backupRestore/oneDriveForBusinessRestoreSessions/{param}/driveRestoreArtifacts/{param}","matched","Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact" +"BackupRestore","UpdateMgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest.g.cs","v1.0","Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest","PATCH","/solutions/backupRestore/oneDriveForBusinessRestoreSessions/{param}/driveRestoreArtifactsBulkAdditionRequests/{param}","matched","Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest" +"BackupRestore","UpdateMgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact.g.cs","v1.0","Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact","PATCH","/solutions/backupRestore/oneDriveForBusinessRestoreSessions/{param}/granularDriveRestoreArtifacts/{param}","matched","Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact" +"BackupRestore","UpdateMgSolutionBackupRestorePoint.g.cs","v1.0","Update-MgSolutionBackupRestorePoint","PATCH","/solutions/backupRestore/restorePoints/{param}","matched","Update-MgSolutionBackupRestorePoint" +"BackupRestore","UpdateMgSolutionBackupRestoreProtectionPolicy.g.cs","v1.0","Update-MgSolutionBackupRestoreProtectionPolicy","PATCH","/solutions/backupRestore/protectionPolicies/{param}","matched","Update-MgSolutionBackupRestoreProtectionPolicy" +"BackupRestore","UpdateMgSolutionBackupRestoreServiceApp.g.cs","v1.0","Update-MgSolutionBackupRestoreServiceApp","PATCH","/solutions/backupRestore/serviceApps/{param}","matched","Update-MgSolutionBackupRestoreServiceApp" +"BackupRestore","UpdateMgSolutionBackupRestoreSession.g.cs","v1.0","Update-MgSolutionBackupRestoreSession","PATCH","/solutions/backupRestore/restoreSessions/{param}","matched","Update-MgSolutionBackupRestoreSession" +"BackupRestore","UpdateMgSolutionBackupRestoreSharePointBrowseSession.g.cs","v1.0","Update-MgSolutionBackupRestoreSharePointBrowseSession","PATCH","/solutions/backupRestore/sharePointBrowseSessions/{param}","matched","Update-MgSolutionBackupRestoreSharePointBrowseSession" +"BackupRestore","UpdateMgSolutionBackupRestoreSharePointProtectionPolicy.g.cs","v1.0","Update-MgSolutionBackupRestoreSharePointProtectionPolicy","PATCH","/solutions/backupRestore/sharePointProtectionPolicies/{param}","matched","Update-MgSolutionBackupRestoreSharePointProtectionPolicy" +"BackupRestore","UpdateMgSolutionBackupRestoreSharePointRestoreSession.g.cs","v1.0","Update-MgSolutionBackupRestoreSharePointRestoreSession","PATCH","/solutions/backupRestore/sharePointRestoreSessions/{param}","matched","Update-MgSolutionBackupRestoreSharePointRestoreSession" +"BackupRestore","UpdateMgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact.g.cs","v1.0","Update-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact","PATCH","/solutions/backupRestore/sharePointRestoreSessions/{param}/granularSiteRestoreArtifacts/{param}","matched","Update-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact" +"BackupRestore","UpdateMgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact.g.cs","v1.0","Update-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact","PATCH","/solutions/backupRestore/sharePointRestoreSessions/{param}/siteRestoreArtifacts/{param}","matched","Update-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact" +"BackupRestore","UpdateMgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest.g.cs","v1.0","Update-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest","PATCH","/solutions/backupRestore/sharePointRestoreSessions/{param}/siteRestoreArtifactsBulkAdditionRequests/{param}","matched","Update-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest" +"BackupRestore","UpdateMgSolutionBackupRestoreSiteInclusionRule.g.cs","v1.0","Update-MgSolutionBackupRestoreSiteInclusionRule","PATCH","/solutions/backupRestore/siteInclusionRules/{param}","matched","Update-MgSolutionBackupRestoreSiteInclusionRule" +"BackupRestore","UpdateMgSolutionBackupRestoreSiteProtectionUnit.g.cs","v1.0","Update-MgSolutionBackupRestoreSiteProtectionUnit","PATCH","/solutions/backupRestore/siteProtectionUnits/{param}","matched","Update-MgSolutionBackupRestoreSiteProtectionUnit" +"BackupRestore","UpdateMgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob.g.cs","v1.0","Update-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob","PATCH","/solutions/backupRestore/siteProtectionUnitsBulkAdditionJobs/{param}","matched","Update-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob" +"Bookings","GetMgBookingBusiness_Get.g.cs","v1.0","Get-MgBookingBusiness","GET","/solutions/bookingBusinesses/{param}","matched","Get-MgBookingBusiness" +"Bookings","GetMgBookingBusiness_List.g.cs","v1.0","Get-MgBookingBusiness","GET","/solutions/bookingBusinesses","matched","Get-MgBookingBusiness" +"Bookings","GetMgBookingBusiness.g.cs","v1.0","Get-MgBookingBusiness","","","dispatcher","" +"Bookings","GetMgBookingBusinessAppointment_Get.g.cs","v1.0","Get-MgBookingBusinessAppointment","GET","/solutions/bookingBusinesses/{param}/appointments/{param}","matched","Get-MgBookingBusinessAppointment" +"Bookings","GetMgBookingBusinessAppointment_List.g.cs","v1.0","Get-MgBookingBusinessAppointment","GET","/solutions/bookingBusinesses/{param}/appointments","matched","Get-MgBookingBusinessAppointment" +"Bookings","GetMgBookingBusinessAppointment.g.cs","v1.0","Get-MgBookingBusinessAppointment","","","dispatcher","" +"Bookings","GetMgBookingBusinessAppointmentCount.g.cs","v1.0","Get-MgBookingBusinessAppointmentCount","GET","/solutions/bookingBusinesses/{param}/appointments/$count","matched","Get-MgBookingBusinessAppointmentCount" +"Bookings","GetMgBookingBusinessCalendarView_Get.g.cs","v1.0","Get-MgBookingBusinessCalendarView","GET","/solutions/bookingBusinesses/{param}/calendarView/{param}","matched","Get-MgBookingBusinessCalendarView" +"Bookings","GetMgBookingBusinessCalendarView_List.g.cs","v1.0","Get-MgBookingBusinessCalendarView","GET","/solutions/bookingBusinesses/{param}/calendarView","matched","Get-MgBookingBusinessCalendarView" +"Bookings","GetMgBookingBusinessCalendarView.g.cs","v1.0","Get-MgBookingBusinessCalendarView","","","dispatcher","" +"Bookings","GetMgBookingBusinessCalendarViewCount.g.cs","v1.0","Get-MgBookingBusinessCalendarViewCount","GET","/solutions/bookingBusinesses/{param}/calendarView/$count","matched","Get-MgBookingBusinessCalendarViewCount" +"Bookings","GetMgBookingBusinessCount.g.cs","v1.0","Get-MgBookingBusinessCount","GET","/solutions/bookingBusinesses/$count","matched","Get-MgBookingBusinessCount" +"Bookings","GetMgBookingBusinessCustomer_Get.g.cs","v1.0","Get-MgBookingBusinessCustomer","GET","/solutions/bookingBusinesses/{param}/customers/{param}","matched","Get-MgBookingBusinessCustomer" +"Bookings","GetMgBookingBusinessCustomer_List.g.cs","v1.0","Get-MgBookingBusinessCustomer","GET","/solutions/bookingBusinesses/{param}/customers","matched","Get-MgBookingBusinessCustomer" +"Bookings","GetMgBookingBusinessCustomer.g.cs","v1.0","Get-MgBookingBusinessCustomer","","","dispatcher","" +"Bookings","GetMgBookingBusinessCustomerCount.g.cs","v1.0","Get-MgBookingBusinessCustomerCount","GET","/solutions/bookingBusinesses/{param}/customers/$count","matched","Get-MgBookingBusinessCustomerCount" +"Bookings","GetMgBookingBusinessCustomQuestion_Get.g.cs","v1.0","Get-MgBookingBusinessCustomQuestion","GET","/solutions/bookingBusinesses/{param}/customQuestions/{param}","matched","Get-MgBookingBusinessCustomQuestion" +"Bookings","GetMgBookingBusinessCustomQuestion_List.g.cs","v1.0","Get-MgBookingBusinessCustomQuestion","GET","/solutions/bookingBusinesses/{param}/customQuestions","matched","Get-MgBookingBusinessCustomQuestion" +"Bookings","GetMgBookingBusinessCustomQuestion.g.cs","v1.0","Get-MgBookingBusinessCustomQuestion","","","dispatcher","" +"Bookings","GetMgBookingBusinessCustomQuestionCount.g.cs","v1.0","Get-MgBookingBusinessCustomQuestionCount","GET","/solutions/bookingBusinesses/{param}/customQuestions/$count","matched","Get-MgBookingBusinessCustomQuestionCount" +"Bookings","GetMgBookingBusinessService_Get.g.cs","v1.0","Get-MgBookingBusinessService","GET","/solutions/bookingBusinesses/{param}/services/{param}","matched","Get-MgBookingBusinessService" +"Bookings","GetMgBookingBusinessService_List.g.cs","v1.0","Get-MgBookingBusinessService","GET","/solutions/bookingBusinesses/{param}/services","matched","Get-MgBookingBusinessService" +"Bookings","GetMgBookingBusinessService.g.cs","v1.0","Get-MgBookingBusinessService","","","dispatcher","" +"Bookings","GetMgBookingBusinessServiceCount.g.cs","v1.0","Get-MgBookingBusinessServiceCount","GET","/solutions/bookingBusinesses/{param}/services/$count","matched","Get-MgBookingBusinessServiceCount" +"Bookings","GetMgBookingBusinessStaffMember_Get.g.cs","v1.0","Get-MgBookingBusinessStaffMember","GET","/solutions/bookingBusinesses/{param}/staffMembers/{param}","matched","Get-MgBookingBusinessStaffMember" +"Bookings","GetMgBookingBusinessStaffMember_List.g.cs","v1.0","Get-MgBookingBusinessStaffMember","GET","/solutions/bookingBusinesses/{param}/staffMembers","matched","Get-MgBookingBusinessStaffMember" +"Bookings","GetMgBookingBusinessStaffMember.g.cs","v1.0","Get-MgBookingBusinessStaffMember","","","dispatcher","" +"Bookings","GetMgBookingBusinessStaffMemberCount.g.cs","v1.0","Get-MgBookingBusinessStaffMemberCount","GET","/solutions/bookingBusinesses/{param}/staffMembers/$count","matched","Get-MgBookingBusinessStaffMemberCount" +"Bookings","GetMgBookingCurrency_Get.g.cs","v1.0","Get-MgBookingCurrency","GET","/solutions/bookingCurrencies/{param}","matched","Get-MgBookingCurrency" +"Bookings","GetMgBookingCurrency_List.g.cs","v1.0","Get-MgBookingCurrency","GET","/solutions/bookingCurrencies","matched","Get-MgBookingCurrency" +"Bookings","GetMgBookingCurrency.g.cs","v1.0","Get-MgBookingCurrency","","","dispatcher","" +"Bookings","GetMgBookingCurrencyCount.g.cs","v1.0","Get-MgBookingCurrencyCount","GET","/solutions/bookingCurrencies/$count","matched","Get-MgBookingCurrencyCount" +"Bookings","GetMgVirtualEvent_Get.g.cs","v1.0","Get-MgVirtualEvent","GET","/solutions/virtualEvents/events/{param}","matched","Get-MgVirtualEvent" +"Bookings","GetMgVirtualEvent_List.g.cs","v1.0","Get-MgVirtualEvent","GET","/solutions/virtualEvents/events","matched","Get-MgVirtualEvent" +"Bookings","GetMgVirtualEvent.g.cs","v1.0","Get-MgVirtualEvent","","","dispatcher","" +"Bookings","GetMgVirtualEventCount.g.cs","v1.0","Get-MgVirtualEventCount","GET","/solutions/virtualEvents/events/$count","matched","Get-MgVirtualEventCount" +"Bookings","GetMgVirtualEventPresenter_Get.g.cs","v1.0","Get-MgVirtualEventPresenter","GET","/solutions/virtualEvents/events/{param}/presenters/{param}","matched","Get-MgVirtualEventPresenter" +"Bookings","GetMgVirtualEventPresenter_List.g.cs","v1.0","Get-MgVirtualEventPresenter","GET","/solutions/virtualEvents/events/{param}/presenters","matched","Get-MgVirtualEventPresenter" +"Bookings","GetMgVirtualEventPresenter.g.cs","v1.0","Get-MgVirtualEventPresenter","","","dispatcher","" +"Bookings","GetMgVirtualEventPresenterCount.g.cs","v1.0","Get-MgVirtualEventPresenterCount","GET","/solutions/virtualEvents/events/{param}/presenters/$count","matched","Get-MgVirtualEventPresenterCount" +"Bookings","GetMgVirtualEventSession_Get.g.cs","v1.0","Get-MgVirtualEventSession","GET","/solutions/virtualEvents/events/{param}/sessions/{param}","matched","Get-MgVirtualEventSession" +"Bookings","GetMgVirtualEventSession_List.g.cs","v1.0","Get-MgVirtualEventSession","GET","/solutions/virtualEvents/events/{param}/sessions","matched","Get-MgVirtualEventSession" +"Bookings","GetMgVirtualEventSession.g.cs","v1.0","Get-MgVirtualEventSession","","","dispatcher","" +"Bookings","GetMgVirtualEventSessionAttendanceReport_Get.g.cs","v1.0","Get-MgVirtualEventSessionAttendanceReport","GET","/solutions/virtualEvents/events/{param}/sessions/{param}/attendanceReports/{param}","matched","Get-MgVirtualEventSessionAttendanceReport" +"Bookings","GetMgVirtualEventSessionAttendanceReport_List.g.cs","v1.0","Get-MgVirtualEventSessionAttendanceReport","GET","/solutions/virtualEvents/events/{param}/sessions/{param}/attendanceReports","matched","Get-MgVirtualEventSessionAttendanceReport" +"Bookings","GetMgVirtualEventSessionAttendanceReport.g.cs","v1.0","Get-MgVirtualEventSessionAttendanceReport","","","dispatcher","" +"Bookings","GetMgVirtualEventSessionAttendanceReportAttendanceRecord_Get.g.cs","v1.0","Get-MgVirtualEventSessionAttendanceReportAttendanceRecord","GET","/solutions/virtualEvents/events/{param}/sessions/{param}/attendanceReports/{param}/attendanceRecords/{param}","matched","Get-MgVirtualEventSessionAttendanceReportAttendanceRecord" +"Bookings","GetMgVirtualEventSessionAttendanceReportAttendanceRecord_List.g.cs","v1.0","Get-MgVirtualEventSessionAttendanceReportAttendanceRecord","GET","/solutions/virtualEvents/events/{param}/sessions/{param}/attendanceReports/{param}/attendanceRecords","matched","Get-MgVirtualEventSessionAttendanceReportAttendanceRecord" +"Bookings","GetMgVirtualEventSessionAttendanceReportAttendanceRecord.g.cs","v1.0","Get-MgVirtualEventSessionAttendanceReportAttendanceRecord","","","dispatcher","" +"Bookings","GetMgVirtualEventSessionAttendanceReportAttendanceRecordCount.g.cs","v1.0","Get-MgVirtualEventSessionAttendanceReportAttendanceRecordCount","GET","/solutions/virtualEvents/events/{param}/sessions/{param}/attendanceReports/{param}/attendanceRecords/$count","matched","Get-MgVirtualEventSessionAttendanceReportAttendanceRecordCount" +"Bookings","GetMgVirtualEventSessionAttendanceReportCount.g.cs","v1.0","Get-MgVirtualEventSessionAttendanceReportCount","GET","/solutions/virtualEvents/events/{param}/sessions/{param}/attendanceReports/$count","matched","Get-MgVirtualEventSessionAttendanceReportCount" +"Bookings","GetMgVirtualEventSessionCount.g.cs","v1.0","Get-MgVirtualEventSessionCount","GET","/solutions/virtualEvents/events/{param}/sessions/$count","matched","Get-MgVirtualEventSessionCount" +"Bookings","GetMgVirtualEventTownhall_Get.g.cs","v1.0","Get-MgVirtualEventTownhall","GET","/solutions/virtualEvents/townhalls/{param}","matched","Get-MgVirtualEventTownhall" +"Bookings","GetMgVirtualEventTownhall_List.g.cs","v1.0","Get-MgVirtualEventTownhall","GET","/solutions/virtualEvents/townhalls","matched","Get-MgVirtualEventTownhall" +"Bookings","GetMgVirtualEventTownhall.g.cs","v1.0","Get-MgVirtualEventTownhall","","","dispatcher","" +"Bookings","GetMgVirtualEventTownhallCount.g.cs","v1.0","Get-MgVirtualEventTownhallCount","GET","/solutions/virtualEvents/townhalls/$count","matched","Get-MgVirtualEventTownhallCount" +"Bookings","GetMgVirtualEventTownhallGetByUserIdAndRoleWithUserIdWithRole.g.cs","v1.0","Get-MgVirtualEventTownhallGetByUserIdAndRoleWithUserIdWithRole","","","parameterized-function","" +"Bookings","GetMgVirtualEventTownhallGetByUserRoleWithRole.g.cs","v1.0","Get-MgVirtualEventTownhallGetByUserRoleWithRole","","","parameterized-function","" +"Bookings","GetMgVirtualEventTownhallPresenter_Get.g.cs","v1.0","Get-MgVirtualEventTownhallPresenter","GET","/solutions/virtualEvents/townhalls/{param}/presenters/{param}","matched","Get-MgVirtualEventTownhallPresenter" +"Bookings","GetMgVirtualEventTownhallPresenter_List.g.cs","v1.0","Get-MgVirtualEventTownhallPresenter","GET","/solutions/virtualEvents/townhalls/{param}/presenters","matched","Get-MgVirtualEventTownhallPresenter" +"Bookings","GetMgVirtualEventTownhallPresenter.g.cs","v1.0","Get-MgVirtualEventTownhallPresenter","","","dispatcher","" +"Bookings","GetMgVirtualEventTownhallPresenterCount.g.cs","v1.0","Get-MgVirtualEventTownhallPresenterCount","GET","/solutions/virtualEvents/townhalls/{param}/presenters/$count","matched","Get-MgVirtualEventTownhallPresenterCount" +"Bookings","GetMgVirtualEventTownhallSession_Get.g.cs","v1.0","Get-MgVirtualEventTownhallSession","GET","/solutions/virtualEvents/townhalls/{param}/sessions/{param}","matched","Get-MgVirtualEventTownhallSession" +"Bookings","GetMgVirtualEventTownhallSession_List.g.cs","v1.0","Get-MgVirtualEventTownhallSession","GET","/solutions/virtualEvents/townhalls/{param}/sessions","matched","Get-MgVirtualEventTownhallSession" +"Bookings","GetMgVirtualEventTownhallSession.g.cs","v1.0","Get-MgVirtualEventTownhallSession","","","dispatcher","" +"Bookings","GetMgVirtualEventTownhallSessionAttendanceReport_Get.g.cs","v1.0","Get-MgVirtualEventTownhallSessionAttendanceReport","GET","/solutions/virtualEvents/townhalls/{param}/sessions/{param}/attendanceReports/{param}","matched","Get-MgVirtualEventTownhallSessionAttendanceReport" +"Bookings","GetMgVirtualEventTownhallSessionAttendanceReport_List.g.cs","v1.0","Get-MgVirtualEventTownhallSessionAttendanceReport","GET","/solutions/virtualEvents/townhalls/{param}/sessions/{param}/attendanceReports","matched","Get-MgVirtualEventTownhallSessionAttendanceReport" +"Bookings","GetMgVirtualEventTownhallSessionAttendanceReport.g.cs","v1.0","Get-MgVirtualEventTownhallSessionAttendanceReport","","","dispatcher","" +"Bookings","GetMgVirtualEventTownhallSessionAttendanceReportAttendanceRecord_Get.g.cs","v1.0","Get-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord","GET","/solutions/virtualEvents/townhalls/{param}/sessions/{param}/attendanceReports/{param}/attendanceRecords/{param}","matched","Get-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord" +"Bookings","GetMgVirtualEventTownhallSessionAttendanceReportAttendanceRecord_List.g.cs","v1.0","Get-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord","GET","/solutions/virtualEvents/townhalls/{param}/sessions/{param}/attendanceReports/{param}/attendanceRecords","matched","Get-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord" +"Bookings","GetMgVirtualEventTownhallSessionAttendanceReportAttendanceRecord.g.cs","v1.0","Get-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord","","","dispatcher","" +"Bookings","GetMgVirtualEventTownhallSessionAttendanceReportAttendanceRecordCount.g.cs","v1.0","Get-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecordCount","GET","/solutions/virtualEvents/townhalls/{param}/sessions/{param}/attendanceReports/{param}/attendanceRecords/$count","matched","Get-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecordCount" +"Bookings","GetMgVirtualEventTownhallSessionAttendanceReportCount.g.cs","v1.0","Get-MgVirtualEventTownhallSessionAttendanceReportCount","GET","/solutions/virtualEvents/townhalls/{param}/sessions/{param}/attendanceReports/$count","matched","Get-MgVirtualEventTownhallSessionAttendanceReportCount" +"Bookings","GetMgVirtualEventTownhallSessionCount.g.cs","v1.0","Get-MgVirtualEventTownhallSessionCount","GET","/solutions/virtualEvents/townhalls/{param}/sessions/$count","matched","Get-MgVirtualEventTownhallSessionCount" +"Bookings","GetMgVirtualEventWebinar_Get.g.cs","v1.0","Get-MgVirtualEventWebinar","GET","/solutions/virtualEvents/webinars/{param}","matched","Get-MgVirtualEventWebinar" +"Bookings","GetMgVirtualEventWebinar_List.g.cs","v1.0","Get-MgVirtualEventWebinar","GET","/solutions/virtualEvents/webinars","matched","Get-MgVirtualEventWebinar" +"Bookings","GetMgVirtualEventWebinar.g.cs","v1.0","Get-MgVirtualEventWebinar","","","dispatcher","" +"Bookings","GetMgVirtualEventWebinarCount.g.cs","v1.0","Get-MgVirtualEventWebinarCount","GET","/solutions/virtualEvents/webinars/$count","matched","Get-MgVirtualEventWebinarCount" +"Bookings","GetMgVirtualEventWebinarGetByUserIdAndRoleWithUserIdWithRole.g.cs","v1.0","Get-MgVirtualEventWebinarGetByUserIdAndRoleWithUserIdWithRole","","","parameterized-function","" +"Bookings","GetMgVirtualEventWebinarGetByUserRoleWithRole.g.cs","v1.0","Get-MgVirtualEventWebinarGetByUserRoleWithRole","","","parameterized-function","" +"Bookings","GetMgVirtualEventWebinarPresenter_Get.g.cs","v1.0","Get-MgVirtualEventWebinarPresenter","GET","/solutions/virtualEvents/webinars/{param}/presenters/{param}","matched","Get-MgVirtualEventWebinarPresenter" +"Bookings","GetMgVirtualEventWebinarPresenter_List.g.cs","v1.0","Get-MgVirtualEventWebinarPresenter","GET","/solutions/virtualEvents/webinars/{param}/presenters","matched","Get-MgVirtualEventWebinarPresenter" +"Bookings","GetMgVirtualEventWebinarPresenter.g.cs","v1.0","Get-MgVirtualEventWebinarPresenter","","","dispatcher","" +"Bookings","GetMgVirtualEventWebinarPresenterCount.g.cs","v1.0","Get-MgVirtualEventWebinarPresenterCount","GET","/solutions/virtualEvents/webinars/{param}/presenters/$count","matched","Get-MgVirtualEventWebinarPresenterCount" +"Bookings","GetMgVirtualEventWebinarRegistration_Get.g.cs","v1.0","Get-MgVirtualEventWebinarRegistration","GET","/solutions/virtualEvents/webinars/{param}/registrations/{param}","matched","Get-MgVirtualEventWebinarRegistration" +"Bookings","GetMgVirtualEventWebinarRegistration_List.g.cs","v1.0","Get-MgVirtualEventWebinarRegistration","GET","/solutions/virtualEvents/webinars/{param}/registrations","matched","Get-MgVirtualEventWebinarRegistration" +"Bookings","GetMgVirtualEventWebinarRegistration.g.cs","v1.0","Get-MgVirtualEventWebinarRegistration","","","dispatcher","" +"Bookings","GetMgVirtualEventWebinarRegistrationConfiguration.g.cs","v1.0","Get-MgVirtualEventWebinarRegistrationConfiguration","GET","/solutions/virtualEvents/webinars/{param}/registrationConfiguration","matched","Get-MgVirtualEventWebinarRegistrationConfiguration" +"Bookings","GetMgVirtualEventWebinarRegistrationConfigurationQuestion_Get.g.cs","v1.0","Get-MgVirtualEventWebinarRegistrationConfigurationQuestion","GET","/solutions/virtualEvents/webinars/{param}/registrationConfiguration/questions/{param}","matched","Get-MgVirtualEventWebinarRegistrationConfigurationQuestion" +"Bookings","GetMgVirtualEventWebinarRegistrationConfigurationQuestion_List.g.cs","v1.0","Get-MgVirtualEventWebinarRegistrationConfigurationQuestion","GET","/solutions/virtualEvents/webinars/{param}/registrationConfiguration/questions","matched","Get-MgVirtualEventWebinarRegistrationConfigurationQuestion" +"Bookings","GetMgVirtualEventWebinarRegistrationConfigurationQuestion.g.cs","v1.0","Get-MgVirtualEventWebinarRegistrationConfigurationQuestion","","","dispatcher","" +"Bookings","GetMgVirtualEventWebinarRegistrationConfigurationQuestionCount.g.cs","v1.0","Get-MgVirtualEventWebinarRegistrationConfigurationQuestionCount","GET","/solutions/virtualEvents/webinars/{param}/registrationConfiguration/questions/$count","matched","Get-MgVirtualEventWebinarRegistrationConfigurationQuestionCount" +"Bookings","GetMgVirtualEventWebinarRegistrationCount.g.cs","v1.0","Get-MgVirtualEventWebinarRegistrationCount","GET","/solutions/virtualEvents/webinars/{param}/registrations/$count","matched","Get-MgVirtualEventWebinarRegistrationCount" +"Bookings","GetMgVirtualEventWebinarRegistrationSession_Get.g.cs","v1.0","Get-MgVirtualEventWebinarRegistrationSession","GET","/solutions/virtualEvents/webinars/{param}/registrations/{param}/sessions/{param}","matched","Get-MgVirtualEventWebinarRegistrationSession" +"Bookings","GetMgVirtualEventWebinarRegistrationSession_List.g.cs","v1.0","Get-MgVirtualEventWebinarRegistrationSession","GET","/solutions/virtualEvents/webinars/{param}/registrations/{param}/sessions","matched","Get-MgVirtualEventWebinarRegistrationSession" +"Bookings","GetMgVirtualEventWebinarRegistrationSession.g.cs","v1.0","Get-MgVirtualEventWebinarRegistrationSession","","","dispatcher","" +"Bookings","GetMgVirtualEventWebinarRegistrationSessionCount.g.cs","v1.0","Get-MgVirtualEventWebinarRegistrationSessionCount","GET","/solutions/virtualEvents/webinars/{param}/registrations/{param}/sessions/$count","matched","Get-MgVirtualEventWebinarRegistrationSessionCount" +"Bookings","GetMgVirtualEventWebinarSession_Get.g.cs","v1.0","Get-MgVirtualEventWebinarSession","GET","/solutions/virtualEvents/webinars/{param}/sessions/{param}","matched","Get-MgVirtualEventWebinarSession" +"Bookings","GetMgVirtualEventWebinarSession_List.g.cs","v1.0","Get-MgVirtualEventWebinarSession","GET","/solutions/virtualEvents/webinars/{param}/sessions","matched","Get-MgVirtualEventWebinarSession" +"Bookings","GetMgVirtualEventWebinarSession.g.cs","v1.0","Get-MgVirtualEventWebinarSession","","","dispatcher","" +"Bookings","GetMgVirtualEventWebinarSessionAttendanceReport_Get.g.cs","v1.0","Get-MgVirtualEventWebinarSessionAttendanceReport","GET","/solutions/virtualEvents/webinars/{param}/sessions/{param}/attendanceReports/{param}","matched","Get-MgVirtualEventWebinarSessionAttendanceReport" +"Bookings","GetMgVirtualEventWebinarSessionAttendanceReport_List.g.cs","v1.0","Get-MgVirtualEventWebinarSessionAttendanceReport","GET","/solutions/virtualEvents/webinars/{param}/sessions/{param}/attendanceReports","matched","Get-MgVirtualEventWebinarSessionAttendanceReport" +"Bookings","GetMgVirtualEventWebinarSessionAttendanceReport.g.cs","v1.0","Get-MgVirtualEventWebinarSessionAttendanceReport","","","dispatcher","" +"Bookings","GetMgVirtualEventWebinarSessionAttendanceReportAttendanceRecord_Get.g.cs","v1.0","Get-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord","GET","/solutions/virtualEvents/webinars/{param}/sessions/{param}/attendanceReports/{param}/attendanceRecords/{param}","matched","Get-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord" +"Bookings","GetMgVirtualEventWebinarSessionAttendanceReportAttendanceRecord_List.g.cs","v1.0","Get-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord","GET","/solutions/virtualEvents/webinars/{param}/sessions/{param}/attendanceReports/{param}/attendanceRecords","matched","Get-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord" +"Bookings","GetMgVirtualEventWebinarSessionAttendanceReportAttendanceRecord.g.cs","v1.0","Get-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord","","","dispatcher","" +"Bookings","GetMgVirtualEventWebinarSessionAttendanceReportAttendanceRecordCount.g.cs","v1.0","Get-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecordCount","GET","/solutions/virtualEvents/webinars/{param}/sessions/{param}/attendanceReports/{param}/attendanceRecords/$count","matched","Get-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecordCount" +"Bookings","GetMgVirtualEventWebinarSessionAttendanceReportCount.g.cs","v1.0","Get-MgVirtualEventWebinarSessionAttendanceReportCount","GET","/solutions/virtualEvents/webinars/{param}/sessions/{param}/attendanceReports/$count","matched","Get-MgVirtualEventWebinarSessionAttendanceReportCount" +"Bookings","GetMgVirtualEventWebinarSessionCount.g.cs","v1.0","Get-MgVirtualEventWebinarSessionCount","GET","/solutions/virtualEvents/webinars/{param}/sessions/$count","matched","Get-MgVirtualEventWebinarSessionCount" +"Bookings","InvokeMgBookingBusinessAppointmentCancel.g.cs","v1.0","Invoke-MgBookingBusinessAppointmentCancel","POST","/solutions/bookingBusinesses/{param}/appointments/{param}/cancel","mismatch","Stop-MgBookingBusinessAppointment" +"Bookings","InvokeMgBookingBusinessCalendarViewCancel.g.cs","v1.0","Invoke-MgBookingBusinessCalendarViewCancel","POST","/solutions/bookingBusinesses/{param}/calendarView/{param}/cancel","mismatch","Stop-MgBookingBusinessCalendarView" +"Bookings","InvokeMgBookingBusinessGetStaffAvailability.g.cs","v1.0","Invoke-MgBookingBusinessGetStaffAvailability","POST","/solutions/bookingBusinesses/{param}/getStaffAvailability","mismatch","Get-MgBookingBusinessStaffAvailability" +"Bookings","InvokeMgBookingBusinessPublish.g.cs","v1.0","Invoke-MgBookingBusinessPublish","POST","/solutions/bookingBusinesses/{param}/publish","mismatch","Publish-MgBookingBusiness" +"Bookings","InvokeMgBookingBusinessUnpublish.g.cs","v1.0","Invoke-MgBookingBusinessUnpublish","POST","/solutions/bookingBusinesses/{param}/unpublish","mismatch","Unpublish-MgBookingBusiness" +"Bookings","InvokeMgVirtualEventCancel.g.cs","v1.0","Invoke-MgVirtualEventCancel","POST","/solutions/virtualEvents/events/{param}/cancel","mismatch","Stop-MgVirtualEvent" +"Bookings","InvokeMgVirtualEventPublish.g.cs","v1.0","Invoke-MgVirtualEventPublish","POST","/solutions/virtualEvents/events/{param}/publish","mismatch","Publish-MgVirtualEvent" +"Bookings","InvokeMgVirtualEventSetExternalEventInformation.g.cs","v1.0","Invoke-MgVirtualEventSetExternalEventInformation","POST","/solutions/virtualEvents/events/{param}/setExternalEventInformation","mismatch","Set-MgVirtualEventExternalEventInformation" +"Bookings","InvokeMgVirtualEventWebinarRegistrationCancel.g.cs","v1.0","Invoke-MgVirtualEventWebinarRegistrationCancel","POST","/solutions/virtualEvents/webinars/{param}/registrations/{param}/cancel","mismatch","Stop-MgVirtualEventWebinarRegistration" +"Bookings","NewMgBookingBusiness.g.cs","v1.0","New-MgBookingBusiness","POST","/solutions/bookingBusinesses","matched","New-MgBookingBusiness" +"Bookings","NewMgBookingBusinessAppointment.g.cs","v1.0","New-MgBookingBusinessAppointment","POST","/solutions/bookingBusinesses/{param}/appointments","matched","New-MgBookingBusinessAppointment" +"Bookings","NewMgBookingBusinessCalendarView.g.cs","v1.0","New-MgBookingBusinessCalendarView","POST","/solutions/bookingBusinesses/{param}/calendarView","matched","New-MgBookingBusinessCalendarView" +"Bookings","NewMgBookingBusinessCustomer.g.cs","v1.0","New-MgBookingBusinessCustomer","POST","/solutions/bookingBusinesses/{param}/customers","matched","New-MgBookingBusinessCustomer" +"Bookings","NewMgBookingBusinessCustomQuestion.g.cs","v1.0","New-MgBookingBusinessCustomQuestion","POST","/solutions/bookingBusinesses/{param}/customQuestions","matched","New-MgBookingBusinessCustomQuestion" +"Bookings","NewMgBookingBusinessService.g.cs","v1.0","New-MgBookingBusinessService","POST","/solutions/bookingBusinesses/{param}/services","matched","New-MgBookingBusinessService" +"Bookings","NewMgBookingBusinessStaffMember.g.cs","v1.0","New-MgBookingBusinessStaffMember","POST","/solutions/bookingBusinesses/{param}/staffMembers","matched","New-MgBookingBusinessStaffMember" +"Bookings","NewMgBookingCurrency.g.cs","v1.0","New-MgBookingCurrency","POST","/solutions/bookingCurrencies","matched","New-MgBookingCurrency" +"Bookings","NewMgVirtualEvent.g.cs","v1.0","New-MgVirtualEvent","POST","/solutions/virtualEvents/events","matched","New-MgVirtualEvent" +"Bookings","NewMgVirtualEventPresenter.g.cs","v1.0","New-MgVirtualEventPresenter","POST","/solutions/virtualEvents/events/{param}/presenters","matched","New-MgVirtualEventPresenter" +"Bookings","NewMgVirtualEventSession.g.cs","v1.0","New-MgVirtualEventSession","POST","/solutions/virtualEvents/events/{param}/sessions","matched","New-MgVirtualEventSession" +"Bookings","NewMgVirtualEventSessionAttendanceReport.g.cs","v1.0","New-MgVirtualEventSessionAttendanceReport","POST","/solutions/virtualEvents/events/{param}/sessions/{param}/attendanceReports","matched","New-MgVirtualEventSessionAttendanceReport" +"Bookings","NewMgVirtualEventSessionAttendanceReportAttendanceRecord.g.cs","v1.0","New-MgVirtualEventSessionAttendanceReportAttendanceRecord","POST","/solutions/virtualEvents/events/{param}/sessions/{param}/attendanceReports/{param}/attendanceRecords","matched","New-MgVirtualEventSessionAttendanceReportAttendanceRecord" +"Bookings","NewMgVirtualEventTownhall.g.cs","v1.0","New-MgVirtualEventTownhall","POST","/solutions/virtualEvents/townhalls","matched","New-MgVirtualEventTownhall" +"Bookings","NewMgVirtualEventTownhallPresenter.g.cs","v1.0","New-MgVirtualEventTownhallPresenter","POST","/solutions/virtualEvents/townhalls/{param}/presenters","matched","New-MgVirtualEventTownhallPresenter" +"Bookings","NewMgVirtualEventTownhallSession.g.cs","v1.0","New-MgVirtualEventTownhallSession","POST","/solutions/virtualEvents/townhalls/{param}/sessions","matched","New-MgVirtualEventTownhallSession" +"Bookings","NewMgVirtualEventTownhallSessionAttendanceReport.g.cs","v1.0","New-MgVirtualEventTownhallSessionAttendanceReport","POST","/solutions/virtualEvents/townhalls/{param}/sessions/{param}/attendanceReports","matched","New-MgVirtualEventTownhallSessionAttendanceReport" +"Bookings","NewMgVirtualEventTownhallSessionAttendanceReportAttendanceRecord.g.cs","v1.0","New-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord","POST","/solutions/virtualEvents/townhalls/{param}/sessions/{param}/attendanceReports/{param}/attendanceRecords","matched","New-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord" +"Bookings","NewMgVirtualEventWebinar.g.cs","v1.0","New-MgVirtualEventWebinar","POST","/solutions/virtualEvents/webinars","matched","New-MgVirtualEventWebinar" +"Bookings","NewMgVirtualEventWebinarPresenter.g.cs","v1.0","New-MgVirtualEventWebinarPresenter","POST","/solutions/virtualEvents/webinars/{param}/presenters","matched","New-MgVirtualEventWebinarPresenter" +"Bookings","NewMgVirtualEventWebinarRegistration.g.cs","v1.0","New-MgVirtualEventWebinarRegistration","POST","/solutions/virtualEvents/webinars/{param}/registrations","matched","New-MgVirtualEventWebinarRegistration" +"Bookings","NewMgVirtualEventWebinarRegistrationConfigurationQuestion.g.cs","v1.0","New-MgVirtualEventWebinarRegistrationConfigurationQuestion","POST","/solutions/virtualEvents/webinars/{param}/registrationConfiguration/questions","matched","New-MgVirtualEventWebinarRegistrationConfigurationQuestion" +"Bookings","NewMgVirtualEventWebinarSession.g.cs","v1.0","New-MgVirtualEventWebinarSession","POST","/solutions/virtualEvents/webinars/{param}/sessions","matched","New-MgVirtualEventWebinarSession" +"Bookings","NewMgVirtualEventWebinarSessionAttendanceReport.g.cs","v1.0","New-MgVirtualEventWebinarSessionAttendanceReport","POST","/solutions/virtualEvents/webinars/{param}/sessions/{param}/attendanceReports","matched","New-MgVirtualEventWebinarSessionAttendanceReport" +"Bookings","NewMgVirtualEventWebinarSessionAttendanceReportAttendanceRecord.g.cs","v1.0","New-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord","POST","/solutions/virtualEvents/webinars/{param}/sessions/{param}/attendanceReports/{param}/attendanceRecords","matched","New-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord" +"Bookings","RemoveMgBookingBusiness.g.cs","v1.0","Remove-MgBookingBusiness","DELETE","/solutions/bookingBusinesses/{param}","matched","Remove-MgBookingBusiness" +"Bookings","RemoveMgBookingBusinessAppointment.g.cs","v1.0","Remove-MgBookingBusinessAppointment","DELETE","/solutions/bookingBusinesses/{param}/appointments/{param}","matched","Remove-MgBookingBusinessAppointment" +"Bookings","RemoveMgBookingBusinessCalendarView.g.cs","v1.0","Remove-MgBookingBusinessCalendarView","DELETE","/solutions/bookingBusinesses/{param}/calendarView/{param}","matched","Remove-MgBookingBusinessCalendarView" +"Bookings","RemoveMgBookingBusinessCustomer.g.cs","v1.0","Remove-MgBookingBusinessCustomer","DELETE","/solutions/bookingBusinesses/{param}/customers/{param}","matched","Remove-MgBookingBusinessCustomer" +"Bookings","RemoveMgBookingBusinessCustomQuestion.g.cs","v1.0","Remove-MgBookingBusinessCustomQuestion","DELETE","/solutions/bookingBusinesses/{param}/customQuestions/{param}","matched","Remove-MgBookingBusinessCustomQuestion" +"Bookings","RemoveMgBookingBusinessService.g.cs","v1.0","Remove-MgBookingBusinessService","DELETE","/solutions/bookingBusinesses/{param}/services/{param}","matched","Remove-MgBookingBusinessService" +"Bookings","RemoveMgBookingBusinessStaffMember.g.cs","v1.0","Remove-MgBookingBusinessStaffMember","DELETE","/solutions/bookingBusinesses/{param}/staffMembers/{param}","matched","Remove-MgBookingBusinessStaffMember" +"Bookings","RemoveMgBookingCurrency.g.cs","v1.0","Remove-MgBookingCurrency","DELETE","/solutions/bookingCurrencies/{param}","matched","Remove-MgBookingCurrency" +"Bookings","RemoveMgVirtualEvent.g.cs","v1.0","Remove-MgVirtualEvent","DELETE","/solutions/virtualEvents/events/{param}","matched","Remove-MgVirtualEvent" +"Bookings","RemoveMgVirtualEventPresenter.g.cs","v1.0","Remove-MgVirtualEventPresenter","DELETE","/solutions/virtualEvents/events/{param}/presenters/{param}","matched","Remove-MgVirtualEventPresenter" +"Bookings","RemoveMgVirtualEventSession.g.cs","v1.0","Remove-MgVirtualEventSession","DELETE","/solutions/virtualEvents/events/{param}/sessions/{param}","matched","Remove-MgVirtualEventSession" +"Bookings","RemoveMgVirtualEventSessionAttendanceReport.g.cs","v1.0","Remove-MgVirtualEventSessionAttendanceReport","DELETE","/solutions/virtualEvents/events/{param}/sessions/{param}/attendanceReports/{param}","matched","Remove-MgVirtualEventSessionAttendanceReport" +"Bookings","RemoveMgVirtualEventSessionAttendanceReportAttendanceRecord.g.cs","v1.0","Remove-MgVirtualEventSessionAttendanceReportAttendanceRecord","DELETE","/solutions/virtualEvents/events/{param}/sessions/{param}/attendanceReports/{param}/attendanceRecords/{param}","matched","Remove-MgVirtualEventSessionAttendanceReportAttendanceRecord" +"Bookings","RemoveMgVirtualEventTownhall.g.cs","v1.0","Remove-MgVirtualEventTownhall","DELETE","/solutions/virtualEvents/townhalls/{param}","matched","Remove-MgVirtualEventTownhall" +"Bookings","RemoveMgVirtualEventTownhallPresenter.g.cs","v1.0","Remove-MgVirtualEventTownhallPresenter","DELETE","/solutions/virtualEvents/townhalls/{param}/presenters/{param}","matched","Remove-MgVirtualEventTownhallPresenter" +"Bookings","RemoveMgVirtualEventTownhallSession.g.cs","v1.0","Remove-MgVirtualEventTownhallSession","DELETE","/solutions/virtualEvents/townhalls/{param}/sessions/{param}","matched","Remove-MgVirtualEventTownhallSession" +"Bookings","RemoveMgVirtualEventTownhallSessionAttendanceReport.g.cs","v1.0","Remove-MgVirtualEventTownhallSessionAttendanceReport","DELETE","/solutions/virtualEvents/townhalls/{param}/sessions/{param}/attendanceReports/{param}","matched","Remove-MgVirtualEventTownhallSessionAttendanceReport" +"Bookings","RemoveMgVirtualEventTownhallSessionAttendanceReportAttendanceRecord.g.cs","v1.0","Remove-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord","DELETE","/solutions/virtualEvents/townhalls/{param}/sessions/{param}/attendanceReports/{param}/attendanceRecords/{param}","matched","Remove-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord" +"Bookings","RemoveMgVirtualEventWebinar.g.cs","v1.0","Remove-MgVirtualEventWebinar","DELETE","/solutions/virtualEvents/webinars/{param}","matched","Remove-MgVirtualEventWebinar" +"Bookings","RemoveMgVirtualEventWebinarPresenter.g.cs","v1.0","Remove-MgVirtualEventWebinarPresenter","DELETE","/solutions/virtualEvents/webinars/{param}/presenters/{param}","matched","Remove-MgVirtualEventWebinarPresenter" +"Bookings","RemoveMgVirtualEventWebinarRegistration.g.cs","v1.0","Remove-MgVirtualEventWebinarRegistration","DELETE","/solutions/virtualEvents/webinars/{param}/registrations/{param}","matched","Remove-MgVirtualEventWebinarRegistration" +"Bookings","RemoveMgVirtualEventWebinarRegistrationConfiguration.g.cs","v1.0","Remove-MgVirtualEventWebinarRegistrationConfiguration","DELETE","/solutions/virtualEvents/webinars/{param}/registrationConfiguration","matched","Remove-MgVirtualEventWebinarRegistrationConfiguration" +"Bookings","RemoveMgVirtualEventWebinarRegistrationConfigurationQuestion.g.cs","v1.0","Remove-MgVirtualEventWebinarRegistrationConfigurationQuestion","DELETE","/solutions/virtualEvents/webinars/{param}/registrationConfiguration/questions/{param}","matched","Remove-MgVirtualEventWebinarRegistrationConfigurationQuestion" +"Bookings","RemoveMgVirtualEventWebinarSession.g.cs","v1.0","Remove-MgVirtualEventWebinarSession","DELETE","/solutions/virtualEvents/webinars/{param}/sessions/{param}","matched","Remove-MgVirtualEventWebinarSession" +"Bookings","RemoveMgVirtualEventWebinarSessionAttendanceReport.g.cs","v1.0","Remove-MgVirtualEventWebinarSessionAttendanceReport","DELETE","/solutions/virtualEvents/webinars/{param}/sessions/{param}/attendanceReports/{param}","matched","Remove-MgVirtualEventWebinarSessionAttendanceReport" +"Bookings","RemoveMgVirtualEventWebinarSessionAttendanceReportAttendanceRecord.g.cs","v1.0","Remove-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord","DELETE","/solutions/virtualEvents/webinars/{param}/sessions/{param}/attendanceReports/{param}/attendanceRecords/{param}","matched","Remove-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord" +"Bookings","UpdateMgBookingBusiness.g.cs","v1.0","Update-MgBookingBusiness","PATCH","/solutions/bookingBusinesses/{param}","matched","Update-MgBookingBusiness" +"Bookings","UpdateMgBookingBusinessAppointment.g.cs","v1.0","Update-MgBookingBusinessAppointment","PATCH","/solutions/bookingBusinesses/{param}/appointments/{param}","matched","Update-MgBookingBusinessAppointment" +"Bookings","UpdateMgBookingBusinessCalendarView.g.cs","v1.0","Update-MgBookingBusinessCalendarView","PATCH","/solutions/bookingBusinesses/{param}/calendarView/{param}","matched","Update-MgBookingBusinessCalendarView" +"Bookings","UpdateMgBookingBusinessCustomer.g.cs","v1.0","Update-MgBookingBusinessCustomer","PATCH","/solutions/bookingBusinesses/{param}/customers/{param}","matched","Update-MgBookingBusinessCustomer" +"Bookings","UpdateMgBookingBusinessCustomQuestion.g.cs","v1.0","Update-MgBookingBusinessCustomQuestion","PATCH","/solutions/bookingBusinesses/{param}/customQuestions/{param}","matched","Update-MgBookingBusinessCustomQuestion" +"Bookings","UpdateMgBookingBusinessService.g.cs","v1.0","Update-MgBookingBusinessService","PATCH","/solutions/bookingBusinesses/{param}/services/{param}","matched","Update-MgBookingBusinessService" +"Bookings","UpdateMgBookingBusinessStaffMember.g.cs","v1.0","Update-MgBookingBusinessStaffMember","PATCH","/solutions/bookingBusinesses/{param}/staffMembers/{param}","matched","Update-MgBookingBusinessStaffMember" +"Bookings","UpdateMgBookingCurrency.g.cs","v1.0","Update-MgBookingCurrency","PATCH","/solutions/bookingCurrencies/{param}","matched","Update-MgBookingCurrency" +"Bookings","UpdateMgVirtualEvent.g.cs","v1.0","Update-MgVirtualEvent","PATCH","/solutions/virtualEvents/events/{param}","matched","Update-MgVirtualEvent" +"Bookings","UpdateMgVirtualEventPresenter.g.cs","v1.0","Update-MgVirtualEventPresenter","PATCH","/solutions/virtualEvents/events/{param}/presenters/{param}","matched","Update-MgVirtualEventPresenter" +"Bookings","UpdateMgVirtualEventSession.g.cs","v1.0","Update-MgVirtualEventSession","PATCH","/solutions/virtualEvents/events/{param}/sessions/{param}","matched","Update-MgVirtualEventSession" +"Bookings","UpdateMgVirtualEventSessionAttendanceReport.g.cs","v1.0","Update-MgVirtualEventSessionAttendanceReport","PATCH","/solutions/virtualEvents/events/{param}/sessions/{param}/attendanceReports/{param}","matched","Update-MgVirtualEventSessionAttendanceReport" +"Bookings","UpdateMgVirtualEventSessionAttendanceReportAttendanceRecord.g.cs","v1.0","Update-MgVirtualEventSessionAttendanceReportAttendanceRecord","PATCH","/solutions/virtualEvents/events/{param}/sessions/{param}/attendanceReports/{param}/attendanceRecords/{param}","matched","Update-MgVirtualEventSessionAttendanceReportAttendanceRecord" +"Bookings","UpdateMgVirtualEventTownhall.g.cs","v1.0","Update-MgVirtualEventTownhall","PATCH","/solutions/virtualEvents/townhalls/{param}","matched","Update-MgVirtualEventTownhall" +"Bookings","UpdateMgVirtualEventTownhallPresenter.g.cs","v1.0","Update-MgVirtualEventTownhallPresenter","PATCH","/solutions/virtualEvents/townhalls/{param}/presenters/{param}","matched","Update-MgVirtualEventTownhallPresenter" +"Bookings","UpdateMgVirtualEventTownhallSession.g.cs","v1.0","Update-MgVirtualEventTownhallSession","PATCH","/solutions/virtualEvents/townhalls/{param}/sessions/{param}","matched","Update-MgVirtualEventTownhallSession" +"Bookings","UpdateMgVirtualEventTownhallSessionAttendanceReport.g.cs","v1.0","Update-MgVirtualEventTownhallSessionAttendanceReport","PATCH","/solutions/virtualEvents/townhalls/{param}/sessions/{param}/attendanceReports/{param}","matched","Update-MgVirtualEventTownhallSessionAttendanceReport" +"Bookings","UpdateMgVirtualEventTownhallSessionAttendanceReportAttendanceRecord.g.cs","v1.0","Update-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord","PATCH","/solutions/virtualEvents/townhalls/{param}/sessions/{param}/attendanceReports/{param}/attendanceRecords/{param}","matched","Update-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord" +"Bookings","UpdateMgVirtualEventWebinar.g.cs","v1.0","Update-MgVirtualEventWebinar","PATCH","/solutions/virtualEvents/webinars/{param}","matched","Update-MgVirtualEventWebinar" +"Bookings","UpdateMgVirtualEventWebinarPresenter.g.cs","v1.0","Update-MgVirtualEventWebinarPresenter","PATCH","/solutions/virtualEvents/webinars/{param}/presenters/{param}","matched","Update-MgVirtualEventWebinarPresenter" +"Bookings","UpdateMgVirtualEventWebinarRegistration.g.cs","v1.0","Update-MgVirtualEventWebinarRegistration","PATCH","/solutions/virtualEvents/webinars/{param}/registrations/{param}","matched","Update-MgVirtualEventWebinarRegistration" +"Bookings","UpdateMgVirtualEventWebinarRegistrationConfiguration.g.cs","v1.0","Update-MgVirtualEventWebinarRegistrationConfiguration","PATCH","/solutions/virtualEvents/webinars/{param}/registrationConfiguration","matched","Update-MgVirtualEventWebinarRegistrationConfiguration" +"Bookings","UpdateMgVirtualEventWebinarRegistrationConfigurationQuestion.g.cs","v1.0","Update-MgVirtualEventWebinarRegistrationConfigurationQuestion","PATCH","/solutions/virtualEvents/webinars/{param}/registrationConfiguration/questions/{param}","matched","Update-MgVirtualEventWebinarRegistrationConfigurationQuestion" +"Bookings","UpdateMgVirtualEventWebinarSession.g.cs","v1.0","Update-MgVirtualEventWebinarSession","PATCH","/solutions/virtualEvents/webinars/{param}/sessions/{param}","matched","Update-MgVirtualEventWebinarSession" +"Bookings","UpdateMgVirtualEventWebinarSessionAttendanceReport.g.cs","v1.0","Update-MgVirtualEventWebinarSessionAttendanceReport","PATCH","/solutions/virtualEvents/webinars/{param}/sessions/{param}/attendanceReports/{param}","matched","Update-MgVirtualEventWebinarSessionAttendanceReport" +"Bookings","UpdateMgVirtualEventWebinarSessionAttendanceReportAttendanceRecord.g.cs","v1.0","Update-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord","PATCH","/solutions/virtualEvents/webinars/{param}/sessions/{param}/attendanceReports/{param}/attendanceRecords/{param}","matched","Update-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord" +"Calendar","GetMgGroupCalendar.g.cs","v1.0","Get-MgGroupCalendar","GET","/groups/{param}/calendar","matched","Get-MgGroupCalendar" +"Calendar","GetMgGroupCalendarAllowedCalendarSharingRolesWithUser.g.cs","v1.0","Get-MgGroupCalendarAllowedCalendarSharingRolesWithUser","","","parameterized-function","" +"Calendar","GetMgGroupCalendarEvent_Get.g.cs","v1.0","Get-MgGroupCalendarEvent","GET","/groups/{param}/calendar/events/{param}","matched","Get-MgGroupCalendarEvent" +"Calendar","GetMgGroupCalendarEvent_List.g.cs","v1.0","Get-MgGroupCalendarEvent","GET","/groups/{param}/calendar/events","matched","Get-MgGroupCalendarEvent" +"Calendar","GetMgGroupCalendarEvent.g.cs","v1.0","Get-MgGroupCalendarEvent","","","dispatcher","" +"Calendar","GetMgGroupCalendarEventAttachment_Get.g.cs","v1.0","Get-MgGroupCalendarEventAttachment","GET","/groups/{param}/calendar/events/{param}/attachments/{param}","no-oracle","" +"Calendar","GetMgGroupCalendarEventAttachment_List.g.cs","v1.0","Get-MgGroupCalendarEventAttachment","GET","/groups/{param}/calendar/events/{param}/attachments","no-oracle","" +"Calendar","GetMgGroupCalendarEventAttachment.g.cs","v1.0","Get-MgGroupCalendarEventAttachment","","","dispatcher","" +"Calendar","GetMgGroupCalendarEventAttachmentCount.g.cs","v1.0","Get-MgGroupCalendarEventAttachmentCount","GET","/groups/{param}/calendar/events/{param}/attachments/$count","no-oracle","" +"Calendar","GetMgGroupCalendarEventCalendar.g.cs","v1.0","Get-MgGroupCalendarEventCalendar","GET","/groups/{param}/calendar/events/{param}/calendar","no-oracle","" +"Calendar","GetMgGroupCalendarEventCount.g.cs","v1.0","Get-MgGroupCalendarEventCount","GET","/groups/{param}/calendar/events/$count","no-oracle","" +"Calendar","GetMgGroupCalendarEventDelta.g.cs","v1.0","Get-MgGroupCalendarEventDelta","GET","/groups/{param}/calendar/events/delta","no-oracle","" +"Calendar","GetMgGroupCalendarEventExtension_Get.g.cs","v1.0","Get-MgGroupCalendarEventExtension","GET","/groups/{param}/calendar/events/{param}/extensions/{param}","no-oracle","" +"Calendar","GetMgGroupCalendarEventExtension_List.g.cs","v1.0","Get-MgGroupCalendarEventExtension","GET","/groups/{param}/calendar/events/{param}/extensions","no-oracle","" +"Calendar","GetMgGroupCalendarEventExtension.g.cs","v1.0","Get-MgGroupCalendarEventExtension","","","dispatcher","" +"Calendar","GetMgGroupCalendarEventExtensionCount.g.cs","v1.0","Get-MgGroupCalendarEventExtensionCount","GET","/groups/{param}/calendar/events/{param}/extensions/$count","no-oracle","" +"Calendar","GetMgGroupCalendarEventInstance.g.cs","v1.0","Get-MgGroupCalendarEventInstance","GET","/groups/{param}/calendar/events/{param}/instances","no-oracle","" +"Calendar","GetMgGroupCalendarEventInstanceDelta.g.cs","v1.0","Get-MgGroupCalendarEventInstanceDelta","GET","/groups/{param}/calendar/events/{param}/instances/delta","no-oracle","" +"Calendar","GetMgGroupCalendarPermission_Get.g.cs","v1.0","Get-MgGroupCalendarPermission","GET","/groups/{param}/calendar/calendarPermissions/{param}","matched","Get-MgGroupCalendarPermission" +"Calendar","GetMgGroupCalendarPermission_List.g.cs","v1.0","Get-MgGroupCalendarPermission","GET","/groups/{param}/calendar/calendarPermissions","matched","Get-MgGroupCalendarPermission" +"Calendar","GetMgGroupCalendarPermission.g.cs","v1.0","Get-MgGroupCalendarPermission","","","dispatcher","" +"Calendar","GetMgGroupCalendarPermissionCount.g.cs","v1.0","Get-MgGroupCalendarPermissionCount","GET","/groups/{param}/calendar/calendarPermissions/$count","matched","Get-MgGroupCalendarPermissionCount" +"Calendar","GetMgGroupCalendarView.g.cs","v1.0","Get-MgGroupCalendarView","GET","/groups/{param}/calendar/calendarView","matched","Get-MgGroupCalendarView" +"Calendar","GetMgGroupCalendarViewDelta.g.cs","v1.0","Get-MgGroupCalendarViewDelta","GET","/groups/{param}/calendar/calendarView/delta","no-oracle","" +"Calendar","GetMgGroupEvent_Get.g.cs","v1.0","Get-MgGroupEvent","GET","/groups/{param}/events/{param}","matched","Get-MgGroupEvent" +"Calendar","GetMgGroupEvent_List.g.cs","v1.0","Get-MgGroupEvent","GET","/groups/{param}/events","matched","Get-MgGroupEvent" +"Calendar","GetMgGroupEvent.g.cs","v1.0","Get-MgGroupEvent","","","dispatcher","" +"Calendar","GetMgGroupEventAttachment_Get.g.cs","v1.0","Get-MgGroupEventAttachment","GET","/groups/{param}/events/{param}/attachments/{param}","matched","Get-MgGroupEventAttachment" +"Calendar","GetMgGroupEventAttachment_List.g.cs","v1.0","Get-MgGroupEventAttachment","GET","/groups/{param}/events/{param}/attachments","matched","Get-MgGroupEventAttachment" +"Calendar","GetMgGroupEventAttachment.g.cs","v1.0","Get-MgGroupEventAttachment","","","dispatcher","" +"Calendar","GetMgGroupEventAttachmentCount.g.cs","v1.0","Get-MgGroupEventAttachmentCount","GET","/groups/{param}/events/{param}/attachments/$count","matched","Get-MgGroupEventAttachmentCount" +"Calendar","GetMgGroupEventCalendar.g.cs","v1.0","Get-MgGroupEventCalendar","GET","/groups/{param}/events/{param}/calendar","matched","Get-MgGroupEventCalendar" +"Calendar","GetMgGroupEventCount.g.cs","v1.0","Get-MgGroupEventCount","GET","/groups/{param}/events/$count","matched","Get-MgGroupEventCount" +"Calendar","GetMgGroupEventDelta.g.cs","v1.0","Get-MgGroupEventDelta","GET","/groups/{param}/events/delta","matched","Get-MgGroupEventDelta" +"Calendar","GetMgGroupEventExtension_Get.g.cs","v1.0","Get-MgGroupEventExtension","GET","/groups/{param}/events/{param}/extensions/{param}","matched","Get-MgGroupEventExtension" +"Calendar","GetMgGroupEventExtension_List.g.cs","v1.0","Get-MgGroupEventExtension","GET","/groups/{param}/events/{param}/extensions","matched","Get-MgGroupEventExtension" +"Calendar","GetMgGroupEventExtension.g.cs","v1.0","Get-MgGroupEventExtension","","","dispatcher","" +"Calendar","GetMgGroupEventExtensionCount.g.cs","v1.0","Get-MgGroupEventExtensionCount","GET","/groups/{param}/events/{param}/extensions/$count","matched","Get-MgGroupEventExtensionCount" +"Calendar","GetMgGroupEventInstance.g.cs","v1.0","Get-MgGroupEventInstance","GET","/groups/{param}/events/{param}/instances","matched","Get-MgGroupEventInstance" +"Calendar","GetMgGroupEventInstanceDelta.g.cs","v1.0","Get-MgGroupEventInstanceDelta","GET","/groups/{param}/events/{param}/instances/delta","matched","Get-MgGroupEventInstanceDelta" +"Calendar","GetMgPlaceAsBuilding_Get.g.cs","v1.0","Get-MgPlaceAsBuilding","GET","","cast","" +"Calendar","GetMgPlaceAsBuilding_List.g.cs","v1.0","Get-MgPlaceAsBuilding","GET","","cast","" +"Calendar","GetMgPlaceAsBuilding.g.cs","v1.0","Get-MgPlaceAsBuilding","","","dispatcher","" +"Calendar","GetMgPlaceAsBuildingCheckIn_Get.g.cs","v1.0","Get-MgPlaceAsBuildingCheckIn","GET","","cast","" +"Calendar","GetMgPlaceAsBuildingCheckIn_List.g.cs","v1.0","Get-MgPlaceAsBuildingCheckIn","GET","","cast","" +"Calendar","GetMgPlaceAsBuildingCheckIn.g.cs","v1.0","Get-MgPlaceAsBuildingCheckIn","","","dispatcher","" +"Calendar","GetMgPlaceAsBuildingCheckInCount.g.cs","v1.0","Get-MgPlaceAsBuildingCheckInCount","GET","","cast","" +"Calendar","GetMgPlaceAsBuildingCount.g.cs","v1.0","Get-MgPlaceAsBuildingCount","GET","","cast","" +"Calendar","GetMgPlaceAsBuildingMap.g.cs","v1.0","Get-MgPlaceAsBuildingMap","GET","","cast","" +"Calendar","GetMgPlaceAsBuildingMapFootprint_Get.g.cs","v1.0","Get-MgPlaceAsBuildingMapFootprint","GET","","cast","" +"Calendar","GetMgPlaceAsBuildingMapFootprint_List.g.cs","v1.0","Get-MgPlaceAsBuildingMapFootprint","GET","","cast","" +"Calendar","GetMgPlaceAsBuildingMapFootprint.g.cs","v1.0","Get-MgPlaceAsBuildingMapFootprint","","","dispatcher","" +"Calendar","GetMgPlaceAsBuildingMapFootprintCount.g.cs","v1.0","Get-MgPlaceAsBuildingMapFootprintCount","GET","","cast","" +"Calendar","GetMgPlaceAsBuildingMapLevel_Get.g.cs","v1.0","Get-MgPlaceAsBuildingMapLevel","GET","","cast","" +"Calendar","GetMgPlaceAsBuildingMapLevel_List.g.cs","v1.0","Get-MgPlaceAsBuildingMapLevel","GET","","cast","" +"Calendar","GetMgPlaceAsBuildingMapLevel.g.cs","v1.0","Get-MgPlaceAsBuildingMapLevel","","","dispatcher","" +"Calendar","GetMgPlaceAsBuildingMapLevelCount.g.cs","v1.0","Get-MgPlaceAsBuildingMapLevelCount","GET","","cast","" +"Calendar","GetMgPlaceAsBuildingMapLevelFixture_Get.g.cs","v1.0","Get-MgPlaceAsBuildingMapLevelFixture","GET","","cast","" +"Calendar","GetMgPlaceAsBuildingMapLevelFixture_List.g.cs","v1.0","Get-MgPlaceAsBuildingMapLevelFixture","GET","","cast","" +"Calendar","GetMgPlaceAsBuildingMapLevelFixture.g.cs","v1.0","Get-MgPlaceAsBuildingMapLevelFixture","","","dispatcher","" +"Calendar","GetMgPlaceAsBuildingMapLevelFixtureCount.g.cs","v1.0","Get-MgPlaceAsBuildingMapLevelFixtureCount","GET","","cast","" +"Calendar","GetMgPlaceAsBuildingMapLevelSection_Get.g.cs","v1.0","Get-MgPlaceAsBuildingMapLevelSection","GET","","cast","" +"Calendar","GetMgPlaceAsBuildingMapLevelSection_List.g.cs","v1.0","Get-MgPlaceAsBuildingMapLevelSection","GET","","cast","" +"Calendar","GetMgPlaceAsBuildingMapLevelSection.g.cs","v1.0","Get-MgPlaceAsBuildingMapLevelSection","","","dispatcher","" +"Calendar","GetMgPlaceAsBuildingMapLevelSectionCount.g.cs","v1.0","Get-MgPlaceAsBuildingMapLevelSectionCount","GET","","cast","" +"Calendar","GetMgPlaceAsBuildingMapLevelUnit_Get.g.cs","v1.0","Get-MgPlaceAsBuildingMapLevelUnit","GET","","cast","" +"Calendar","GetMgPlaceAsBuildingMapLevelUnit_List.g.cs","v1.0","Get-MgPlaceAsBuildingMapLevelUnit","GET","","cast","" +"Calendar","GetMgPlaceAsBuildingMapLevelUnit.g.cs","v1.0","Get-MgPlaceAsBuildingMapLevelUnit","","","dispatcher","" +"Calendar","GetMgPlaceAsBuildingMapLevelUnitCount.g.cs","v1.0","Get-MgPlaceAsBuildingMapLevelUnitCount","GET","","cast","" +"Calendar","GetMgPlaceAsDesk_Get.g.cs","v1.0","Get-MgPlaceAsDesk","GET","","cast","" +"Calendar","GetMgPlaceAsDesk_List.g.cs","v1.0","Get-MgPlaceAsDesk","GET","","cast","" +"Calendar","GetMgPlaceAsDesk.g.cs","v1.0","Get-MgPlaceAsDesk","","","dispatcher","" +"Calendar","GetMgPlaceAsDeskCheckIn_Get.g.cs","v1.0","Get-MgPlaceAsDeskCheckIn","GET","","cast","" +"Calendar","GetMgPlaceAsDeskCheckIn_List.g.cs","v1.0","Get-MgPlaceAsDeskCheckIn","GET","","cast","" +"Calendar","GetMgPlaceAsDeskCheckIn.g.cs","v1.0","Get-MgPlaceAsDeskCheckIn","","","dispatcher","" +"Calendar","GetMgPlaceAsDeskCheckInCount.g.cs","v1.0","Get-MgPlaceAsDeskCheckInCount","GET","","cast","" +"Calendar","GetMgPlaceAsDeskCount.g.cs","v1.0","Get-MgPlaceAsDeskCount","GET","","cast","" +"Calendar","GetMgPlaceAsFloor_Get.g.cs","v1.0","Get-MgPlaceAsFloor","GET","","cast","" +"Calendar","GetMgPlaceAsFloor_List.g.cs","v1.0","Get-MgPlaceAsFloor","GET","","cast","" +"Calendar","GetMgPlaceAsFloor.g.cs","v1.0","Get-MgPlaceAsFloor","","","dispatcher","" +"Calendar","GetMgPlaceAsFloorCheckIn_Get.g.cs","v1.0","Get-MgPlaceAsFloorCheckIn","GET","","cast","" +"Calendar","GetMgPlaceAsFloorCheckIn_List.g.cs","v1.0","Get-MgPlaceAsFloorCheckIn","GET","","cast","" +"Calendar","GetMgPlaceAsFloorCheckIn.g.cs","v1.0","Get-MgPlaceAsFloorCheckIn","","","dispatcher","" +"Calendar","GetMgPlaceAsFloorCheckInCount.g.cs","v1.0","Get-MgPlaceAsFloorCheckInCount","GET","","cast","" +"Calendar","GetMgPlaceAsFloorCount.g.cs","v1.0","Get-MgPlaceAsFloorCount","GET","","cast","" +"Calendar","GetMgPlaceAsRoom_Get.g.cs","v1.0","Get-MgPlaceAsRoom","GET","","cast","" +"Calendar","GetMgPlaceAsRoom_List.g.cs","v1.0","Get-MgPlaceAsRoom","GET","","cast","" +"Calendar","GetMgPlaceAsRoom.g.cs","v1.0","Get-MgPlaceAsRoom","","","dispatcher","" +"Calendar","GetMgPlaceAsRoomCheckIn_Get.g.cs","v1.0","Get-MgPlaceAsRoomCheckIn","GET","","cast","" +"Calendar","GetMgPlaceAsRoomCheckIn_List.g.cs","v1.0","Get-MgPlaceAsRoomCheckIn","GET","","cast","" +"Calendar","GetMgPlaceAsRoomCheckIn.g.cs","v1.0","Get-MgPlaceAsRoomCheckIn","","","dispatcher","" +"Calendar","GetMgPlaceAsRoomCheckInCount.g.cs","v1.0","Get-MgPlaceAsRoomCheckInCount","GET","","cast","" +"Calendar","GetMgPlaceAsRoomCount.g.cs","v1.0","Get-MgPlaceAsRoomCount","GET","","cast","" +"Calendar","GetMgPlaceAsRoomList_Get.g.cs","v1.0","Get-MgPlaceAsRoomList","GET","","cast","" +"Calendar","GetMgPlaceAsRoomList_List.g.cs","v1.0","Get-MgPlaceAsRoomList","GET","","cast","" +"Calendar","GetMgPlaceAsRoomList.g.cs","v1.0","Get-MgPlaceAsRoomList","","","dispatcher","" +"Calendar","GetMgPlaceAsRoomListCheckIn_Get.g.cs","v1.0","Get-MgPlaceAsRoomListCheckIn","GET","","cast","" +"Calendar","GetMgPlaceAsRoomListCheckIn_List.g.cs","v1.0","Get-MgPlaceAsRoomListCheckIn","GET","","cast","" +"Calendar","GetMgPlaceAsRoomListCheckIn.g.cs","v1.0","Get-MgPlaceAsRoomListCheckIn","","","dispatcher","" +"Calendar","GetMgPlaceAsRoomListCheckInCount.g.cs","v1.0","Get-MgPlaceAsRoomListCheckInCount","GET","","cast","" +"Calendar","GetMgPlaceAsRoomListCount.g.cs","v1.0","Get-MgPlaceAsRoomListCount","GET","","cast","" +"Calendar","GetMgPlaceAsRoomListRoom_Get.g.cs","v1.0","Get-MgPlaceAsRoomListRoom","GET","","cast","" +"Calendar","GetMgPlaceAsRoomListRoom_List.g.cs","v1.0","Get-MgPlaceAsRoomListRoom","GET","","cast","" +"Calendar","GetMgPlaceAsRoomListRoom.g.cs","v1.0","Get-MgPlaceAsRoomListRoom","","","dispatcher","" +"Calendar","GetMgPlaceAsRoomListRoomCheckIn_Get.g.cs","v1.0","Get-MgPlaceAsRoomListRoomCheckIn","GET","","cast","" +"Calendar","GetMgPlaceAsRoomListRoomCheckIn_List.g.cs","v1.0","Get-MgPlaceAsRoomListRoomCheckIn","GET","","cast","" +"Calendar","GetMgPlaceAsRoomListRoomCheckIn.g.cs","v1.0","Get-MgPlaceAsRoomListRoomCheckIn","","","dispatcher","" +"Calendar","GetMgPlaceAsRoomListRoomCheckInCount.g.cs","v1.0","Get-MgPlaceAsRoomListRoomCheckInCount","GET","","cast","" +"Calendar","GetMgPlaceAsRoomListRoomCount.g.cs","v1.0","Get-MgPlaceAsRoomListRoomCount","GET","","cast","" +"Calendar","GetMgPlaceAsRoomListWorkspace_Get.g.cs","v1.0","Get-MgPlaceAsRoomListWorkspace","GET","","cast","" +"Calendar","GetMgPlaceAsRoomListWorkspace_List.g.cs","v1.0","Get-MgPlaceAsRoomListWorkspace","GET","","cast","" +"Calendar","GetMgPlaceAsRoomListWorkspace.g.cs","v1.0","Get-MgPlaceAsRoomListWorkspace","","","dispatcher","" +"Calendar","GetMgPlaceAsRoomListWorkspaceCheckIn_Get.g.cs","v1.0","Get-MgPlaceAsRoomListWorkspaceCheckIn","GET","","cast","" +"Calendar","GetMgPlaceAsRoomListWorkspaceCheckIn_List.g.cs","v1.0","Get-MgPlaceAsRoomListWorkspaceCheckIn","GET","","cast","" +"Calendar","GetMgPlaceAsRoomListWorkspaceCheckIn.g.cs","v1.0","Get-MgPlaceAsRoomListWorkspaceCheckIn","","","dispatcher","" +"Calendar","GetMgPlaceAsRoomListWorkspaceCheckInCount.g.cs","v1.0","Get-MgPlaceAsRoomListWorkspaceCheckInCount","GET","","cast","" +"Calendar","GetMgPlaceAsRoomListWorkspaceCount.g.cs","v1.0","Get-MgPlaceAsRoomListWorkspaceCount","GET","","cast","" +"Calendar","GetMgPlaceAsSection_Get.g.cs","v1.0","Get-MgPlaceAsSection","GET","","cast","" +"Calendar","GetMgPlaceAsSection_List.g.cs","v1.0","Get-MgPlaceAsSection","GET","","cast","" +"Calendar","GetMgPlaceAsSection.g.cs","v1.0","Get-MgPlaceAsSection","","","dispatcher","" +"Calendar","GetMgPlaceAsSectionCheckIn_Get.g.cs","v1.0","Get-MgPlaceAsSectionCheckIn","GET","","cast","" +"Calendar","GetMgPlaceAsSectionCheckIn_List.g.cs","v1.0","Get-MgPlaceAsSectionCheckIn","GET","","cast","" +"Calendar","GetMgPlaceAsSectionCheckIn.g.cs","v1.0","Get-MgPlaceAsSectionCheckIn","","","dispatcher","" +"Calendar","GetMgPlaceAsSectionCheckInCount.g.cs","v1.0","Get-MgPlaceAsSectionCheckInCount","GET","","cast","" +"Calendar","GetMgPlaceAsSectionCount.g.cs","v1.0","Get-MgPlaceAsSectionCount","GET","","cast","" +"Calendar","GetMgPlaceAsWorkspace_Get.g.cs","v1.0","Get-MgPlaceAsWorkspace","GET","","cast","" +"Calendar","GetMgPlaceAsWorkspace_List.g.cs","v1.0","Get-MgPlaceAsWorkspace","GET","","cast","" +"Calendar","GetMgPlaceAsWorkspace.g.cs","v1.0","Get-MgPlaceAsWorkspace","","","dispatcher","" +"Calendar","GetMgPlaceAsWorkspaceCheckIn_Get.g.cs","v1.0","Get-MgPlaceAsWorkspaceCheckIn","GET","","cast","" +"Calendar","GetMgPlaceAsWorkspaceCheckIn_List.g.cs","v1.0","Get-MgPlaceAsWorkspaceCheckIn","GET","","cast","" +"Calendar","GetMgPlaceAsWorkspaceCheckIn.g.cs","v1.0","Get-MgPlaceAsWorkspaceCheckIn","","","dispatcher","" +"Calendar","GetMgPlaceAsWorkspaceCheckInCount.g.cs","v1.0","Get-MgPlaceAsWorkspaceCheckInCount","GET","","cast","" +"Calendar","GetMgPlaceAsWorkspaceCount.g.cs","v1.0","Get-MgPlaceAsWorkspaceCount","GET","","cast","" +"Calendar","GetMgPlaceCheckIn_Get.g.cs","v1.0","Get-MgPlaceCheckIn","GET","/places/{param}/checkIns/{param}","corrected","Get-MgPlaceCheck" +"Calendar","GetMgPlaceCheckIn_List.g.cs","v1.0","Get-MgPlaceCheckIn","GET","/places/{param}/checkIns","corrected","Get-MgPlaceCheck" +"Calendar","GetMgPlaceCheckIn.g.cs","v1.0","Get-MgPlaceCheckIn","","","dispatcher","" +"Calendar","GetMgPlaceCheckInCount.g.cs","v1.0","Get-MgPlaceCheckInCount","GET","/places/{param}/checkIns/$count","matched","Get-MgPlaceCheckInCount" +"Calendar","GetMgPlaceCount.g.cs","v1.0","Get-MgPlaceCount","GET","/places/$count","matched","Get-MgPlaceCount" +"Calendar","GetMgPlaceDescendants.g.cs","v1.0","Get-MgPlaceDescendants","GET","/places/{param}/descendants","mismatch","Invoke-MgDescendantPlace" +"Calendar","GetMgUserCalendar_Get.g.cs","v1.0","Get-MgUserCalendar","GET","/users/{param}/calendars/{param}","matched","Get-MgUserCalendar" +"Calendar","GetMgUserCalendar_List.g.cs","v1.0","Get-MgUserCalendar","GET","/users/{param}/calendars","matched","Get-MgUserCalendar" +"Calendar","GetMgUserCalendar.g.cs","v1.0","Get-MgUserCalendar","","","dispatcher","" +"Calendar","GetMgUserCalendarAllowedCalendarSharingRolesWithUser.g.cs","v1.0","Get-MgUserCalendarAllowedCalendarSharingRolesWithUser","","","parameterized-function","" +"Calendar","GetMgUserCalendarCount.g.cs","v1.0","Get-MgUserCalendarCount","GET","/users/{param}/calendars/$count","matched","Get-MgUserCalendarCount" +"Calendar","GetMgUserCalendarEvent.g.cs","v1.0","Get-MgUserCalendarEvent","GET","/users/{param}/calendars/{param}/events","matched","Get-MgUserCalendarEvent" +"Calendar","GetMgUserCalendarEventCount.g.cs","v1.0","Get-MgUserCalendarEventCount","GET","/users/{param}/calendar/events/$count","no-oracle","" +"Calendar","GetMgUserCalendarEventDelta.g.cs","v1.0","Get-MgUserCalendarEventDelta","GET","/users/{param}/calendar/events/delta","no-oracle","" +"Calendar","GetMgUserCalendarGroup_Get.g.cs","v1.0","Get-MgUserCalendarGroup","GET","/users/{param}/calendarGroups/{param}","matched","Get-MgUserCalendarGroup" +"Calendar","GetMgUserCalendarGroup_List.g.cs","v1.0","Get-MgUserCalendarGroup","GET","/users/{param}/calendarGroups","matched","Get-MgUserCalendarGroup" +"Calendar","GetMgUserCalendarGroup.g.cs","v1.0","Get-MgUserCalendarGroup","","","dispatcher","" +"Calendar","GetMgUserCalendarGroupCalendar_Get.g.cs","v1.0","Get-MgUserCalendarGroupCalendar","GET","/users/{param}/calendarGroups/{param}/calendars/{param}","no-oracle","" +"Calendar","GetMgUserCalendarGroupCalendar_List.g.cs","v1.0","Get-MgUserCalendarGroupCalendar","GET","/users/{param}/calendarGroups/{param}/calendars","matched","Get-MgUserCalendarGroupCalendar" +"Calendar","GetMgUserCalendarGroupCalendar.g.cs","v1.0","Get-MgUserCalendarGroupCalendar","","","dispatcher","" +"Calendar","GetMgUserCalendarGroupCalendarAllowedCalendarSharingRolesWithUser.g.cs","v1.0","Get-MgUserCalendarGroupCalendarAllowedCalendarSharingRolesWithUser","","","parameterized-function","" +"Calendar","GetMgUserCalendarGroupCalendarCount.g.cs","v1.0","Get-MgUserCalendarGroupCalendarCount","GET","/users/{param}/calendarGroups/{param}/calendars/$count","no-oracle","" +"Calendar","GetMgUserCalendarGroupCalendarEvent_Get.g.cs","v1.0","Get-MgUserCalendarGroupCalendarEvent","GET","/users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}","no-oracle","" +"Calendar","GetMgUserCalendarGroupCalendarEvent_List.g.cs","v1.0","Get-MgUserCalendarGroupCalendarEvent","GET","/users/{param}/calendarGroups/{param}/calendars/{param}/events","no-oracle","" +"Calendar","GetMgUserCalendarGroupCalendarEvent.g.cs","v1.0","Get-MgUserCalendarGroupCalendarEvent","","","dispatcher","" +"Calendar","GetMgUserCalendarGroupCalendarEventAttachment_Get.g.cs","v1.0","Get-MgUserCalendarGroupCalendarEventAttachment","GET","/users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/attachments/{param}","no-oracle","" +"Calendar","GetMgUserCalendarGroupCalendarEventAttachment_List.g.cs","v1.0","Get-MgUserCalendarGroupCalendarEventAttachment","GET","/users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/attachments","no-oracle","" +"Calendar","GetMgUserCalendarGroupCalendarEventAttachment.g.cs","v1.0","Get-MgUserCalendarGroupCalendarEventAttachment","","","dispatcher","" +"Calendar","GetMgUserCalendarGroupCalendarEventAttachmentCount.g.cs","v1.0","Get-MgUserCalendarGroupCalendarEventAttachmentCount","GET","/users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/attachments/$count","no-oracle","" +"Calendar","GetMgUserCalendarGroupCalendarEventCalendar.g.cs","v1.0","Get-MgUserCalendarGroupCalendarEventCalendar","GET","/users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/calendar","no-oracle","" +"Calendar","GetMgUserCalendarGroupCalendarEventCount.g.cs","v1.0","Get-MgUserCalendarGroupCalendarEventCount","GET","/users/{param}/calendarGroups/{param}/calendars/{param}/events/$count","no-oracle","" +"Calendar","GetMgUserCalendarGroupCalendarEventDelta.g.cs","v1.0","Get-MgUserCalendarGroupCalendarEventDelta","GET","/users/{param}/calendarGroups/{param}/calendars/{param}/events/delta","no-oracle","" +"Calendar","GetMgUserCalendarGroupCalendarEventExtension_Get.g.cs","v1.0","Get-MgUserCalendarGroupCalendarEventExtension","GET","/users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/extensions/{param}","no-oracle","" +"Calendar","GetMgUserCalendarGroupCalendarEventExtension_List.g.cs","v1.0","Get-MgUserCalendarGroupCalendarEventExtension","GET","/users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/extensions","no-oracle","" +"Calendar","GetMgUserCalendarGroupCalendarEventExtension.g.cs","v1.0","Get-MgUserCalendarGroupCalendarEventExtension","","","dispatcher","" +"Calendar","GetMgUserCalendarGroupCalendarEventExtensionCount.g.cs","v1.0","Get-MgUserCalendarGroupCalendarEventExtensionCount","GET","/users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/extensions/$count","no-oracle","" +"Calendar","GetMgUserCalendarGroupCalendarEventInstance.g.cs","v1.0","Get-MgUserCalendarGroupCalendarEventInstance","GET","/users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/instances","no-oracle","" +"Calendar","GetMgUserCalendarGroupCalendarEventInstanceDelta.g.cs","v1.0","Get-MgUserCalendarGroupCalendarEventInstanceDelta","GET","/users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/instances/delta","no-oracle","" +"Calendar","GetMgUserCalendarGroupCalendarPermission_Get.g.cs","v1.0","Get-MgUserCalendarGroupCalendarPermission","GET","/users/{param}/calendarGroups/{param}/calendars/{param}/calendarPermissions/{param}","no-oracle","" +"Calendar","GetMgUserCalendarGroupCalendarPermission_List.g.cs","v1.0","Get-MgUserCalendarGroupCalendarPermission","GET","/users/{param}/calendarGroups/{param}/calendars/{param}/calendarPermissions","no-oracle","" +"Calendar","GetMgUserCalendarGroupCalendarPermission.g.cs","v1.0","Get-MgUserCalendarGroupCalendarPermission","","","dispatcher","" +"Calendar","GetMgUserCalendarGroupCalendarPermissionCount.g.cs","v1.0","Get-MgUserCalendarGroupCalendarPermissionCount","GET","/users/{param}/calendarGroups/{param}/calendars/{param}/calendarPermissions/$count","no-oracle","" +"Calendar","GetMgUserCalendarGroupCalendarView.g.cs","v1.0","Get-MgUserCalendarGroupCalendarView","GET","/users/{param}/calendarGroups/{param}/calendars/{param}/calendarView","no-oracle","" +"Calendar","GetMgUserCalendarGroupCalendarViewDelta.g.cs","v1.0","Get-MgUserCalendarGroupCalendarViewDelta","GET","/users/{param}/calendarGroups/{param}/calendars/{param}/calendarView/delta","no-oracle","" +"Calendar","GetMgUserCalendarGroupCount.g.cs","v1.0","Get-MgUserCalendarGroupCount","GET","/users/{param}/calendarGroups/$count","matched","Get-MgUserCalendarGroupCount" +"Calendar","GetMgUserCalendarPermission_Get.g.cs","v1.0","Get-MgUserCalendarPermission","GET","/users/{param}/calendar/calendarPermissions/{param}","matched","Get-MgUserCalendarPermission" +"Calendar","GetMgUserCalendarPermission_List.g.cs","v1.0","Get-MgUserCalendarPermission","GET","/users/{param}/calendar/calendarPermissions","matched","Get-MgUserCalendarPermission" +"Calendar","GetMgUserCalendarPermission.g.cs","v1.0","Get-MgUserCalendarPermission","","","dispatcher","" +"Calendar","GetMgUserCalendarPermissionCount.g.cs","v1.0","Get-MgUserCalendarPermissionCount","GET","/users/{param}/calendar/calendarPermissions/$count","matched","Get-MgUserCalendarPermissionCount" +"Calendar","GetMgUserCalendarView.g.cs","v1.0","Get-MgUserCalendarView","GET","/users/{param}/calendar/calendarView","matched","Get-MgUserCalendarView" +"Calendar","GetMgUserCalendarViewDelta.g.cs","v1.0","Get-MgUserCalendarViewDelta","GET","/users/{param}/calendar/calendarView/delta","no-oracle","" +"Calendar","GetMgUserDefaultCalendar.g.cs","v1.0","Get-MgUserDefaultCalendar","GET","/users/{param}/calendar","matched","Get-MgUserDefaultCalendar" +"Calendar","GetMgUserDefaultCalendarEvent.g.cs","v1.0","Get-MgUserDefaultCalendarEvent","GET","/users/{param}/calendar/events","matched","Get-MgUserDefaultCalendarEvent" +"Calendar","GetMgUserEvent_Get.g.cs","v1.0","Get-MgUserEvent","GET","/users/{param}/events/{param}","matched","Get-MgUserEvent" +"Calendar","GetMgUserEvent_List.g.cs","v1.0","Get-MgUserEvent","GET","/users/{param}/events","matched","Get-MgUserEvent" +"Calendar","GetMgUserEvent.g.cs","v1.0","Get-MgUserEvent","","","dispatcher","" +"Calendar","GetMgUserEventAttachment_Get.g.cs","v1.0","Get-MgUserEventAttachment","GET","/users/{param}/events/{param}/attachments/{param}","matched","Get-MgUserEventAttachment" +"Calendar","GetMgUserEventAttachment_List.g.cs","v1.0","Get-MgUserEventAttachment","GET","/users/{param}/events/{param}/attachments","matched","Get-MgUserEventAttachment" +"Calendar","GetMgUserEventAttachment.g.cs","v1.0","Get-MgUserEventAttachment","","","dispatcher","" +"Calendar","GetMgUserEventAttachmentCount.g.cs","v1.0","Get-MgUserEventAttachmentCount","GET","/users/{param}/events/{param}/attachments/$count","matched","Get-MgUserEventAttachmentCount" +"Calendar","GetMgUserEventCalendar.g.cs","v1.0","Get-MgUserEventCalendar","GET","/users/{param}/events/{param}/calendar","matched","Get-MgUserEventCalendar" +"Calendar","GetMgUserEventCount.g.cs","v1.0","Get-MgUserEventCount","GET","/users/{param}/events/$count","matched","Get-MgUserEventCount" +"Calendar","GetMgUserEventDelta.g.cs","v1.0","Get-MgUserEventDelta","GET","/users/{param}/events/delta","matched","Get-MgUserEventDelta" +"Calendar","GetMgUserEventExtension_Get.g.cs","v1.0","Get-MgUserEventExtension","GET","/users/{param}/events/{param}/extensions/{param}","matched","Get-MgUserEventExtension" +"Calendar","GetMgUserEventExtension_List.g.cs","v1.0","Get-MgUserEventExtension","GET","/users/{param}/events/{param}/extensions","matched","Get-MgUserEventExtension" +"Calendar","GetMgUserEventExtension.g.cs","v1.0","Get-MgUserEventExtension","","","dispatcher","" +"Calendar","GetMgUserEventExtensionCount.g.cs","v1.0","Get-MgUserEventExtensionCount","GET","/users/{param}/events/{param}/extensions/$count","matched","Get-MgUserEventExtensionCount" +"Calendar","GetMgUserEventInstance.g.cs","v1.0","Get-MgUserEventInstance","GET","/users/{param}/events/{param}/instances","matched","Get-MgUserEventInstance" +"Calendar","GetMgUserEventInstanceDelta.g.cs","v1.0","Get-MgUserEventInstanceDelta","GET","/users/{param}/events/{param}/instances/delta","matched","Get-MgUserEventInstanceDelta" +"Calendar","InvokeMgGroupCalendarEventAccept.g.cs","v1.0","Invoke-MgGroupCalendarEventAccept","POST","/groups/{param}/calendar/events/{param}/accept","no-oracle","" +"Calendar","InvokeMgGroupCalendarEventAttachmentCreateUploadSession.g.cs","v1.0","Invoke-MgGroupCalendarEventAttachmentCreateUploadSession","POST","/groups/{param}/calendar/events/{param}/attachments/createUploadSession","no-oracle","" +"Calendar","InvokeMgGroupCalendarEventCancel.g.cs","v1.0","Invoke-MgGroupCalendarEventCancel","POST","/groups/{param}/calendar/events/{param}/cancel","no-oracle","" +"Calendar","InvokeMgGroupCalendarEventDecline.g.cs","v1.0","Invoke-MgGroupCalendarEventDecline","POST","/groups/{param}/calendar/events/{param}/decline","no-oracle","" +"Calendar","InvokeMgGroupCalendarEventDismissReminder.g.cs","v1.0","Invoke-MgGroupCalendarEventDismissReminder","POST","/groups/{param}/calendar/events/{param}/dismissReminder","no-oracle","" +"Calendar","InvokeMgGroupCalendarEventForward.g.cs","v1.0","Invoke-MgGroupCalendarEventForward","POST","/groups/{param}/calendar/events/{param}/forward","no-oracle","" +"Calendar","InvokeMgGroupCalendarEventPermanentDelete.g.cs","v1.0","Invoke-MgGroupCalendarEventPermanentDelete","POST","/groups/{param}/calendar/events/{param}/permanentDelete","no-oracle","" +"Calendar","InvokeMgGroupCalendarEventSnoozeReminder.g.cs","v1.0","Invoke-MgGroupCalendarEventSnoozeReminder","POST","/groups/{param}/calendar/events/{param}/snoozeReminder","no-oracle","" +"Calendar","InvokeMgGroupCalendarEventTentativelyAccept.g.cs","v1.0","Invoke-MgGroupCalendarEventTentativelyAccept","POST","/groups/{param}/calendar/events/{param}/tentativelyAccept","no-oracle","" +"Calendar","InvokeMgGroupCalendarGetSchedule.g.cs","v1.0","Invoke-MgGroupCalendarGetSchedule","POST","/groups/{param}/calendar/getSchedule","mismatch","Get-MgGroupCalendarSchedule" +"Calendar","InvokeMgGroupCalendarPermanentDelete.g.cs","v1.0","Invoke-MgGroupCalendarPermanentDelete","POST","/groups/{param}/calendar/permanentDelete","mismatch","Remove-MgGroupCalendarPermanent" +"Calendar","InvokeMgGroupEventAccept.g.cs","v1.0","Invoke-MgGroupEventAccept","POST","/groups/{param}/events/{param}/accept","mismatch","Invoke-MgAcceptGroupEvent" +"Calendar","InvokeMgGroupEventAttachmentCreateUploadSession.g.cs","v1.0","Invoke-MgGroupEventAttachmentCreateUploadSession","POST","/groups/{param}/events/{param}/attachments/createUploadSession","mismatch","New-MgGroupEventAttachmentUploadSession" +"Calendar","InvokeMgGroupEventCancel.g.cs","v1.0","Invoke-MgGroupEventCancel","POST","/groups/{param}/events/{param}/cancel","mismatch","Stop-MgGroupEvent" +"Calendar","InvokeMgGroupEventDecline.g.cs","v1.0","Invoke-MgGroupEventDecline","POST","/groups/{param}/events/{param}/decline","mismatch","Invoke-MgDeclineGroupEvent" +"Calendar","InvokeMgGroupEventDismissReminder.g.cs","v1.0","Invoke-MgGroupEventDismissReminder","POST","/groups/{param}/events/{param}/dismissReminder","mismatch","Invoke-MgDismissGroupEventReminder" +"Calendar","InvokeMgGroupEventForward.g.cs","v1.0","Invoke-MgGroupEventForward","POST","/groups/{param}/events/{param}/forward","mismatch","Invoke-MgForwardGroupEvent" +"Calendar","InvokeMgGroupEventPermanentDelete.g.cs","v1.0","Invoke-MgGroupEventPermanentDelete","POST","/groups/{param}/events/{param}/permanentDelete","mismatch","Remove-MgGroupEventPermanent" +"Calendar","InvokeMgGroupEventSnoozeReminder.g.cs","v1.0","Invoke-MgGroupEventSnoozeReminder","POST","/groups/{param}/events/{param}/snoozeReminder","mismatch","Invoke-MgSnoozeGroupEventReminder" +"Calendar","InvokeMgGroupEventTentativelyAccept.g.cs","v1.0","Invoke-MgGroupEventTentativelyAccept","POST","/groups/{param}/events/{param}/tentativelyAccept","mismatch","Invoke-MgAcceptGroupEventTentatively" +"Calendar","InvokeMgUserCalendarGetSchedule.g.cs","v1.0","Invoke-MgUserCalendarGetSchedule","POST","/users/{param}/calendar/getSchedule","no-oracle","" +"Calendar","InvokeMgUserCalendarGroupCalendarEventAccept.g.cs","v1.0","Invoke-MgUserCalendarGroupCalendarEventAccept","POST","/users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/accept","no-oracle","" +"Calendar","InvokeMgUserCalendarGroupCalendarEventAttachmentCreateUploadSession.g.cs","v1.0","Invoke-MgUserCalendarGroupCalendarEventAttachmentCreateUploadSession","POST","/users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/attachments/createUploadSession","no-oracle","" +"Calendar","InvokeMgUserCalendarGroupCalendarEventCancel.g.cs","v1.0","Invoke-MgUserCalendarGroupCalendarEventCancel","POST","/users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/cancel","no-oracle","" +"Calendar","InvokeMgUserCalendarGroupCalendarEventDecline.g.cs","v1.0","Invoke-MgUserCalendarGroupCalendarEventDecline","POST","/users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/decline","no-oracle","" +"Calendar","InvokeMgUserCalendarGroupCalendarEventDismissReminder.g.cs","v1.0","Invoke-MgUserCalendarGroupCalendarEventDismissReminder","POST","/users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/dismissReminder","no-oracle","" +"Calendar","InvokeMgUserCalendarGroupCalendarEventForward.g.cs","v1.0","Invoke-MgUserCalendarGroupCalendarEventForward","POST","/users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/forward","no-oracle","" +"Calendar","InvokeMgUserCalendarGroupCalendarEventPermanentDelete.g.cs","v1.0","Invoke-MgUserCalendarGroupCalendarEventPermanentDelete","POST","/users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/permanentDelete","no-oracle","" +"Calendar","InvokeMgUserCalendarGroupCalendarEventSnoozeReminder.g.cs","v1.0","Invoke-MgUserCalendarGroupCalendarEventSnoozeReminder","POST","/users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/snoozeReminder","no-oracle","" +"Calendar","InvokeMgUserCalendarGroupCalendarEventTentativelyAccept.g.cs","v1.0","Invoke-MgUserCalendarGroupCalendarEventTentativelyAccept","POST","/users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/tentativelyAccept","no-oracle","" +"Calendar","InvokeMgUserCalendarGroupCalendarGetSchedule.g.cs","v1.0","Invoke-MgUserCalendarGroupCalendarGetSchedule","POST","/users/{param}/calendarGroups/{param}/calendars/{param}/getSchedule","no-oracle","" +"Calendar","InvokeMgUserCalendarGroupCalendarPermanentDelete.g.cs","v1.0","Invoke-MgUserCalendarGroupCalendarPermanentDelete","POST","/users/{param}/calendarGroups/{param}/calendars/{param}/permanentDelete","no-oracle","" +"Calendar","InvokeMgUserCalendarPermanentDelete.g.cs","v1.0","Invoke-MgUserCalendarPermanentDelete","POST","/users/{param}/calendar/permanentDelete","mismatch","Remove-MgUserCalendarPermanent" +"Calendar","InvokeMgUserEventAccept.g.cs","v1.0","Invoke-MgUserEventAccept","POST","/users/{param}/events/{param}/accept","mismatch","Invoke-MgAcceptUserEvent" +"Calendar","InvokeMgUserEventAttachmentCreateUploadSession.g.cs","v1.0","Invoke-MgUserEventAttachmentCreateUploadSession","POST","/users/{param}/events/{param}/attachments/createUploadSession","mismatch","New-MgUserEventAttachmentUploadSession" +"Calendar","InvokeMgUserEventCancel.g.cs","v1.0","Invoke-MgUserEventCancel","POST","/users/{param}/events/{param}/cancel","mismatch","Stop-MgUserEvent" +"Calendar","InvokeMgUserEventDecline.g.cs","v1.0","Invoke-MgUserEventDecline","POST","/users/{param}/events/{param}/decline","mismatch","Invoke-MgDeclineUserEvent" +"Calendar","InvokeMgUserEventDismissReminder.g.cs","v1.0","Invoke-MgUserEventDismissReminder","POST","/users/{param}/events/{param}/dismissReminder","mismatch","Invoke-MgDismissUserEventReminder" +"Calendar","InvokeMgUserEventForward.g.cs","v1.0","Invoke-MgUserEventForward","POST","/users/{param}/events/{param}/forward","mismatch","Invoke-MgForwardUserEvent" +"Calendar","InvokeMgUserEventPermanentDelete.g.cs","v1.0","Invoke-MgUserEventPermanentDelete","POST","/users/{param}/events/{param}/permanentDelete","mismatch","Remove-MgUserEventPermanent" +"Calendar","InvokeMgUserEventSnoozeReminder.g.cs","v1.0","Invoke-MgUserEventSnoozeReminder","POST","/users/{param}/events/{param}/snoozeReminder","mismatch","Invoke-MgSnoozeUserEventReminder" +"Calendar","InvokeMgUserEventTentativelyAccept.g.cs","v1.0","Invoke-MgUserEventTentativelyAccept","POST","/users/{param}/events/{param}/tentativelyAccept","mismatch","Invoke-MgAcceptUserEventTentatively" +"Calendar","NewMgGroupCalendarEvent.g.cs","v1.0","New-MgGroupCalendarEvent","POST","/groups/{param}/calendar/events","matched","New-MgGroupCalendarEvent" +"Calendar","NewMgGroupCalendarEventAttachment.g.cs","v1.0","New-MgGroupCalendarEventAttachment","POST","/groups/{param}/calendar/events/{param}/attachments","no-oracle","" +"Calendar","NewMgGroupCalendarEventExtension.g.cs","v1.0","New-MgGroupCalendarEventExtension","POST","/groups/{param}/calendar/events/{param}/extensions","no-oracle","" +"Calendar","NewMgGroupCalendarPermission.g.cs","v1.0","New-MgGroupCalendarPermission","POST","/groups/{param}/calendar/calendarPermissions","matched","New-MgGroupCalendarPermission" +"Calendar","NewMgGroupEvent.g.cs","v1.0","New-MgGroupEvent","POST","/groups/{param}/events","matched","New-MgGroupEvent" +"Calendar","NewMgGroupEventAttachment.g.cs","v1.0","New-MgGroupEventAttachment","POST","/groups/{param}/events/{param}/attachments","matched","New-MgGroupEventAttachment" +"Calendar","NewMgGroupEventExtension.g.cs","v1.0","New-MgGroupEventExtension","POST","/groups/{param}/events/{param}/extensions","matched","New-MgGroupEventExtension" +"Calendar","NewMgPlace.g.cs","v1.0","New-MgPlace","POST","/places","matched","New-MgPlace" +"Calendar","NewMgPlaceAsBuildingCheckIn.g.cs","v1.0","New-MgPlaceAsBuildingCheckIn","POST","","cast","" +"Calendar","NewMgPlaceAsBuildingMapFootprint.g.cs","v1.0","New-MgPlaceAsBuildingMapFootprint","POST","","cast","" +"Calendar","NewMgPlaceAsBuildingMapLevel.g.cs","v1.0","New-MgPlaceAsBuildingMapLevel","POST","","cast","" +"Calendar","NewMgPlaceAsBuildingMapLevelFixture.g.cs","v1.0","New-MgPlaceAsBuildingMapLevelFixture","POST","","cast","" +"Calendar","NewMgPlaceAsBuildingMapLevelSection.g.cs","v1.0","New-MgPlaceAsBuildingMapLevelSection","POST","","cast","" +"Calendar","NewMgPlaceAsBuildingMapLevelUnit.g.cs","v1.0","New-MgPlaceAsBuildingMapLevelUnit","POST","","cast","" +"Calendar","NewMgPlaceAsDeskCheckIn.g.cs","v1.0","New-MgPlaceAsDeskCheckIn","POST","","cast","" +"Calendar","NewMgPlaceAsFloorCheckIn.g.cs","v1.0","New-MgPlaceAsFloorCheckIn","POST","","cast","" +"Calendar","NewMgPlaceAsRoomCheckIn.g.cs","v1.0","New-MgPlaceAsRoomCheckIn","POST","","cast","" +"Calendar","NewMgPlaceAsRoomListCheckIn.g.cs","v1.0","New-MgPlaceAsRoomListCheckIn","POST","","cast","" +"Calendar","NewMgPlaceAsRoomListRoom.g.cs","v1.0","New-MgPlaceAsRoomListRoom","POST","","cast","" +"Calendar","NewMgPlaceAsRoomListRoomCheckIn.g.cs","v1.0","New-MgPlaceAsRoomListRoomCheckIn","POST","","cast","" +"Calendar","NewMgPlaceAsRoomListWorkspace.g.cs","v1.0","New-MgPlaceAsRoomListWorkspace","POST","","cast","" +"Calendar","NewMgPlaceAsRoomListWorkspaceCheckIn.g.cs","v1.0","New-MgPlaceAsRoomListWorkspaceCheckIn","POST","","cast","" +"Calendar","NewMgPlaceAsSectionCheckIn.g.cs","v1.0","New-MgPlaceAsSectionCheckIn","POST","","cast","" +"Calendar","NewMgPlaceAsWorkspaceCheckIn.g.cs","v1.0","New-MgPlaceAsWorkspaceCheckIn","POST","","cast","" +"Calendar","NewMgPlaceCheckIn.g.cs","v1.0","New-MgPlaceCheckIn","POST","/places/{param}/checkIns","corrected","New-MgPlaceCheck" +"Calendar","NewMgUserCalendar.g.cs","v1.0","New-MgUserCalendar","POST","/users/{param}/calendars","matched","New-MgUserCalendar" +"Calendar","NewMgUserCalendarEvent.g.cs","v1.0","New-MgUserCalendarEvent","POST","/users/{param}/calendars/{param}/events","matched","New-MgUserCalendarEvent" +"Calendar","NewMgUserCalendarGroup.g.cs","v1.0","New-MgUserCalendarGroup","POST","/users/{param}/calendarGroups","matched","New-MgUserCalendarGroup" +"Calendar","NewMgUserCalendarGroupCalendar.g.cs","v1.0","New-MgUserCalendarGroupCalendar","POST","/users/{param}/calendarGroups/{param}/calendars","matched","New-MgUserCalendarGroupCalendar" +"Calendar","NewMgUserCalendarGroupCalendarEvent.g.cs","v1.0","New-MgUserCalendarGroupCalendarEvent","POST","/users/{param}/calendarGroups/{param}/calendars/{param}/events","no-oracle","" +"Calendar","NewMgUserCalendarGroupCalendarEventAttachment.g.cs","v1.0","New-MgUserCalendarGroupCalendarEventAttachment","POST","/users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/attachments","no-oracle","" +"Calendar","NewMgUserCalendarGroupCalendarEventExtension.g.cs","v1.0","New-MgUserCalendarGroupCalendarEventExtension","POST","/users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/extensions","no-oracle","" +"Calendar","NewMgUserCalendarGroupCalendarPermission.g.cs","v1.0","New-MgUserCalendarGroupCalendarPermission","POST","/users/{param}/calendarGroups/{param}/calendars/{param}/calendarPermissions","no-oracle","" +"Calendar","NewMgUserCalendarPermission.g.cs","v1.0","New-MgUserCalendarPermission","POST","/users/{param}/calendar/calendarPermissions","matched","New-MgUserCalendarPermission" +"Calendar","NewMgUserDefaultCalendarEvent.g.cs","v1.0","New-MgUserDefaultCalendarEvent","POST","/users/{param}/calendar/events","matched","New-MgUserDefaultCalendarEvent" +"Calendar","NewMgUserEvent.g.cs","v1.0","New-MgUserEvent","POST","/users/{param}/events","matched","New-MgUserEvent" +"Calendar","NewMgUserEventAttachment.g.cs","v1.0","New-MgUserEventAttachment","POST","/users/{param}/events/{param}/attachments","matched","New-MgUserEventAttachment" +"Calendar","NewMgUserEventExtension.g.cs","v1.0","New-MgUserEventExtension","POST","/users/{param}/events/{param}/extensions","matched","New-MgUserEventExtension" +"Calendar","RemoveMgGroupCalendarEvent.g.cs","v1.0","Remove-MgGroupCalendarEvent","DELETE","/groups/{param}/calendar/events/{param}","matched","Remove-MgGroupCalendarEvent" +"Calendar","RemoveMgGroupCalendarEventAttachment.g.cs","v1.0","Remove-MgGroupCalendarEventAttachment","DELETE","/groups/{param}/calendar/events/{param}/attachments/{param}","no-oracle","" +"Calendar","RemoveMgGroupCalendarEventExtension.g.cs","v1.0","Remove-MgGroupCalendarEventExtension","DELETE","/groups/{param}/calendar/events/{param}/extensions/{param}","no-oracle","" +"Calendar","RemoveMgGroupCalendarPermission.g.cs","v1.0","Remove-MgGroupCalendarPermission","DELETE","/groups/{param}/calendar/calendarPermissions/{param}","matched","Remove-MgGroupCalendarPermission" +"Calendar","RemoveMgGroupEvent.g.cs","v1.0","Remove-MgGroupEvent","DELETE","/groups/{param}/events/{param}","matched","Remove-MgGroupEvent" +"Calendar","RemoveMgGroupEventAttachment.g.cs","v1.0","Remove-MgGroupEventAttachment","DELETE","/groups/{param}/events/{param}/attachments/{param}","matched","Remove-MgGroupEventAttachment" +"Calendar","RemoveMgGroupEventExtension.g.cs","v1.0","Remove-MgGroupEventExtension","DELETE","/groups/{param}/events/{param}/extensions/{param}","matched","Remove-MgGroupEventExtension" +"Calendar","RemoveMgPlace.g.cs","v1.0","Remove-MgPlace","DELETE","/places/{param}","matched","Remove-MgPlace" +"Calendar","RemoveMgPlaceAsBuildingCheckIn.g.cs","v1.0","Remove-MgPlaceAsBuildingCheckIn","DELETE","","cast","" +"Calendar","RemoveMgPlaceAsBuildingMap.g.cs","v1.0","Remove-MgPlaceAsBuildingMap","DELETE","","cast","" +"Calendar","RemoveMgPlaceAsBuildingMapFootprint.g.cs","v1.0","Remove-MgPlaceAsBuildingMapFootprint","DELETE","","cast","" +"Calendar","RemoveMgPlaceAsBuildingMapLevel.g.cs","v1.0","Remove-MgPlaceAsBuildingMapLevel","DELETE","","cast","" +"Calendar","RemoveMgPlaceAsBuildingMapLevelFixture.g.cs","v1.0","Remove-MgPlaceAsBuildingMapLevelFixture","DELETE","","cast","" +"Calendar","RemoveMgPlaceAsBuildingMapLevelSection.g.cs","v1.0","Remove-MgPlaceAsBuildingMapLevelSection","DELETE","","cast","" +"Calendar","RemoveMgPlaceAsBuildingMapLevelUnit.g.cs","v1.0","Remove-MgPlaceAsBuildingMapLevelUnit","DELETE","","cast","" +"Calendar","RemoveMgPlaceAsDeskCheckIn.g.cs","v1.0","Remove-MgPlaceAsDeskCheckIn","DELETE","","cast","" +"Calendar","RemoveMgPlaceAsFloorCheckIn.g.cs","v1.0","Remove-MgPlaceAsFloorCheckIn","DELETE","","cast","" +"Calendar","RemoveMgPlaceAsRoomCheckIn.g.cs","v1.0","Remove-MgPlaceAsRoomCheckIn","DELETE","","cast","" +"Calendar","RemoveMgPlaceAsRoomListCheckIn.g.cs","v1.0","Remove-MgPlaceAsRoomListCheckIn","DELETE","","cast","" +"Calendar","RemoveMgPlaceAsRoomListRoom.g.cs","v1.0","Remove-MgPlaceAsRoomListRoom","DELETE","","cast","" +"Calendar","RemoveMgPlaceAsRoomListRoomCheckIn.g.cs","v1.0","Remove-MgPlaceAsRoomListRoomCheckIn","DELETE","","cast","" +"Calendar","RemoveMgPlaceAsRoomListWorkspace.g.cs","v1.0","Remove-MgPlaceAsRoomListWorkspace","DELETE","","cast","" +"Calendar","RemoveMgPlaceAsRoomListWorkspaceCheckIn.g.cs","v1.0","Remove-MgPlaceAsRoomListWorkspaceCheckIn","DELETE","","cast","" +"Calendar","RemoveMgPlaceAsSectionCheckIn.g.cs","v1.0","Remove-MgPlaceAsSectionCheckIn","DELETE","","cast","" +"Calendar","RemoveMgPlaceAsWorkspaceCheckIn.g.cs","v1.0","Remove-MgPlaceAsWorkspaceCheckIn","DELETE","","cast","" +"Calendar","RemoveMgPlaceCheckIn.g.cs","v1.0","Remove-MgPlaceCheckIn","DELETE","/places/{param}/checkIns/{param}","corrected","Remove-MgPlaceCheck" +"Calendar","RemoveMgUserCalendar.g.cs","v1.0","Remove-MgUserCalendar","DELETE","/users/{param}/calendars/{param}","no-oracle","" +"Calendar","RemoveMgUserCalendarGroup.g.cs","v1.0","Remove-MgUserCalendarGroup","DELETE","/users/{param}/calendarGroups/{param}","matched","Remove-MgUserCalendarGroup" +"Calendar","RemoveMgUserCalendarGroupCalendar.g.cs","v1.0","Remove-MgUserCalendarGroupCalendar","DELETE","/users/{param}/calendarGroups/{param}/calendars/{param}","no-oracle","" +"Calendar","RemoveMgUserCalendarGroupCalendarEvent.g.cs","v1.0","Remove-MgUserCalendarGroupCalendarEvent","DELETE","/users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}","no-oracle","" +"Calendar","RemoveMgUserCalendarGroupCalendarEventAttachment.g.cs","v1.0","Remove-MgUserCalendarGroupCalendarEventAttachment","DELETE","/users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/attachments/{param}","no-oracle","" +"Calendar","RemoveMgUserCalendarGroupCalendarEventExtension.g.cs","v1.0","Remove-MgUserCalendarGroupCalendarEventExtension","DELETE","/users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/extensions/{param}","no-oracle","" +"Calendar","RemoveMgUserCalendarGroupCalendarPermission.g.cs","v1.0","Remove-MgUserCalendarGroupCalendarPermission","DELETE","/users/{param}/calendarGroups/{param}/calendars/{param}/calendarPermissions/{param}","no-oracle","" +"Calendar","RemoveMgUserCalendarPermission.g.cs","v1.0","Remove-MgUserCalendarPermission","DELETE","/users/{param}/calendar/calendarPermissions/{param}","matched","Remove-MgUserCalendarPermission" +"Calendar","RemoveMgUserEvent.g.cs","v1.0","Remove-MgUserEvent","DELETE","/users/{param}/events/{param}","matched","Remove-MgUserEvent" +"Calendar","RemoveMgUserEventAttachment.g.cs","v1.0","Remove-MgUserEventAttachment","DELETE","/users/{param}/events/{param}/attachments/{param}","matched","Remove-MgUserEventAttachment" +"Calendar","RemoveMgUserEventExtension.g.cs","v1.0","Remove-MgUserEventExtension","DELETE","/users/{param}/events/{param}/extensions/{param}","matched","Remove-MgUserEventExtension" +"Calendar","UpdateMgGroupCalendarEvent.g.cs","v1.0","Update-MgGroupCalendarEvent","PATCH","/groups/{param}/calendar/events/{param}","matched","Update-MgGroupCalendarEvent" +"Calendar","UpdateMgGroupCalendarEventExtension.g.cs","v1.0","Update-MgGroupCalendarEventExtension","PATCH","/groups/{param}/calendar/events/{param}/extensions/{param}","no-oracle","" +"Calendar","UpdateMgGroupCalendarPermission.g.cs","v1.0","Update-MgGroupCalendarPermission","PATCH","/groups/{param}/calendar/calendarPermissions/{param}","matched","Update-MgGroupCalendarPermission" +"Calendar","UpdateMgGroupEvent.g.cs","v1.0","Update-MgGroupEvent","PATCH","/groups/{param}/events/{param}","matched","Update-MgGroupEvent" +"Calendar","UpdateMgGroupEventExtension.g.cs","v1.0","Update-MgGroupEventExtension","PATCH","/groups/{param}/events/{param}/extensions/{param}","matched","Update-MgGroupEventExtension" +"Calendar","UpdateMgPlace.g.cs","v1.0","Update-MgPlace","PATCH","/places/{param}","matched","Update-MgPlace" +"Calendar","UpdateMgPlaceAsBuildingCheckIn.g.cs","v1.0","Update-MgPlaceAsBuildingCheckIn","PATCH","","cast","" +"Calendar","UpdateMgPlaceAsBuildingMap.g.cs","v1.0","Update-MgPlaceAsBuildingMap","PATCH","","cast","" +"Calendar","UpdateMgPlaceAsBuildingMapFootprint.g.cs","v1.0","Update-MgPlaceAsBuildingMapFootprint","PATCH","","cast","" +"Calendar","UpdateMgPlaceAsBuildingMapLevel.g.cs","v1.0","Update-MgPlaceAsBuildingMapLevel","PATCH","","cast","" +"Calendar","UpdateMgPlaceAsBuildingMapLevelFixture.g.cs","v1.0","Update-MgPlaceAsBuildingMapLevelFixture","PATCH","","cast","" +"Calendar","UpdateMgPlaceAsBuildingMapLevelSection.g.cs","v1.0","Update-MgPlaceAsBuildingMapLevelSection","PATCH","","cast","" +"Calendar","UpdateMgPlaceAsBuildingMapLevelUnit.g.cs","v1.0","Update-MgPlaceAsBuildingMapLevelUnit","PATCH","","cast","" +"Calendar","UpdateMgPlaceAsDeskCheckIn.g.cs","v1.0","Update-MgPlaceAsDeskCheckIn","PATCH","","cast","" +"Calendar","UpdateMgPlaceAsFloorCheckIn.g.cs","v1.0","Update-MgPlaceAsFloorCheckIn","PATCH","","cast","" +"Calendar","UpdateMgPlaceAsRoomCheckIn.g.cs","v1.0","Update-MgPlaceAsRoomCheckIn","PATCH","","cast","" +"Calendar","UpdateMgPlaceAsRoomListCheckIn.g.cs","v1.0","Update-MgPlaceAsRoomListCheckIn","PATCH","","cast","" +"Calendar","UpdateMgPlaceAsRoomListRoom.g.cs","v1.0","Update-MgPlaceAsRoomListRoom","PATCH","","cast","" +"Calendar","UpdateMgPlaceAsRoomListRoomCheckIn.g.cs","v1.0","Update-MgPlaceAsRoomListRoomCheckIn","PATCH","","cast","" +"Calendar","UpdateMgPlaceAsRoomListWorkspace.g.cs","v1.0","Update-MgPlaceAsRoomListWorkspace","PATCH","","cast","" +"Calendar","UpdateMgPlaceAsRoomListWorkspaceCheckIn.g.cs","v1.0","Update-MgPlaceAsRoomListWorkspaceCheckIn","PATCH","","cast","" +"Calendar","UpdateMgPlaceAsSectionCheckIn.g.cs","v1.0","Update-MgPlaceAsSectionCheckIn","PATCH","","cast","" +"Calendar","UpdateMgPlaceAsWorkspaceCheckIn.g.cs","v1.0","Update-MgPlaceAsWorkspaceCheckIn","PATCH","","cast","" +"Calendar","UpdateMgPlaceCheckIn.g.cs","v1.0","Update-MgPlaceCheckIn","PATCH","/places/{param}/checkIns/{param}","corrected","Update-MgPlaceCheck" +"Calendar","UpdateMgUserCalendar.g.cs","v1.0","Update-MgUserCalendar","PATCH","/users/{param}/calendars/{param}","no-oracle","" +"Calendar","UpdateMgUserCalendarGroup.g.cs","v1.0","Update-MgUserCalendarGroup","PATCH","/users/{param}/calendarGroups/{param}","matched","Update-MgUserCalendarGroup" +"Calendar","UpdateMgUserCalendarGroupCalendar.g.cs","v1.0","Update-MgUserCalendarGroupCalendar","PATCH","/users/{param}/calendarGroups/{param}/calendars/{param}","no-oracle","" +"Calendar","UpdateMgUserCalendarGroupCalendarEvent.g.cs","v1.0","Update-MgUserCalendarGroupCalendarEvent","PATCH","/users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}","no-oracle","" +"Calendar","UpdateMgUserCalendarGroupCalendarEventExtension.g.cs","v1.0","Update-MgUserCalendarGroupCalendarEventExtension","PATCH","/users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/extensions/{param}","no-oracle","" +"Calendar","UpdateMgUserCalendarGroupCalendarPermission.g.cs","v1.0","Update-MgUserCalendarGroupCalendarPermission","PATCH","/users/{param}/calendarGroups/{param}/calendars/{param}/calendarPermissions/{param}","no-oracle","" +"Calendar","UpdateMgUserCalendarPermission.g.cs","v1.0","Update-MgUserCalendarPermission","PATCH","/users/{param}/calendar/calendarPermissions/{param}","matched","Update-MgUserCalendarPermission" +"Calendar","UpdateMgUserEvent.g.cs","v1.0","Update-MgUserEvent","PATCH","/users/{param}/events/{param}","matched","Update-MgUserEvent" +"Calendar","UpdateMgUserEventExtension.g.cs","v1.0","Update-MgUserEventExtension","PATCH","/users/{param}/events/{param}/extensions/{param}","matched","Update-MgUserEventExtension" +"ChangeNotifications","GetMgSubscription_Get.g.cs","v1.0","Get-MgSubscription","GET","/subscriptions/{param}","matched","Get-MgSubscription" +"ChangeNotifications","GetMgSubscription_List.g.cs","v1.0","Get-MgSubscription","GET","/subscriptions","matched","Get-MgSubscription" +"ChangeNotifications","GetMgSubscription.g.cs","v1.0","Get-MgSubscription","","","dispatcher","" +"ChangeNotifications","InvokeMgSubscriptionReauthorize.g.cs","v1.0","Invoke-MgSubscriptionReauthorize","POST","/subscriptions/{param}/reauthorize","mismatch","Invoke-MgReauthorizeSubscription" +"ChangeNotifications","NewMgSubscription.g.cs","v1.0","New-MgSubscription","POST","/subscriptions","matched","New-MgSubscription" +"ChangeNotifications","RemoveMgSubscription.g.cs","v1.0","Remove-MgSubscription","DELETE","/subscriptions/{param}","matched","Remove-MgSubscription" +"ChangeNotifications","UpdateMgSubscription.g.cs","v1.0","Update-MgSubscription","PATCH","/subscriptions/{param}","matched","Update-MgSubscription" +"CloudCommunications","GetMgCommunication.g.cs","v1.0","Get-MgCommunication","GET","/communications","no-oracle","" +"CloudCommunications","GetMgCommunicationAdhocCall_Get.g.cs","v1.0","Get-MgCommunicationAdhocCall","GET","/communications/adhocCalls/{param}","matched","Get-MgCommunicationAdhocCall" +"CloudCommunications","GetMgCommunicationAdhocCall_List.g.cs","v1.0","Get-MgCommunicationAdhocCall","GET","/communications/adhocCalls","matched","Get-MgCommunicationAdhocCall" +"CloudCommunications","GetMgCommunicationAdhocCall.g.cs","v1.0","Get-MgCommunicationAdhocCall","","","dispatcher","" +"CloudCommunications","GetMgCommunicationAdhocCallCount.g.cs","v1.0","Get-MgCommunicationAdhocCallCount","GET","/communications/adhocCalls/$count","matched","Get-MgCommunicationAdhocCallCount" +"CloudCommunications","GetMgCommunicationAdhocCallRecording_Get.g.cs","v1.0","Get-MgCommunicationAdhocCallRecording","GET","/communications/adhocCalls/{param}/recordings/{param}","matched","Get-MgCommunicationAdhocCallRecording" +"CloudCommunications","GetMgCommunicationAdhocCallRecording_List.g.cs","v1.0","Get-MgCommunicationAdhocCallRecording","GET","/communications/adhocCalls/{param}/recordings","matched","Get-MgCommunicationAdhocCallRecording" +"CloudCommunications","GetMgCommunicationAdhocCallRecording.g.cs","v1.0","Get-MgCommunicationAdhocCallRecording","","","dispatcher","" +"CloudCommunications","GetMgCommunicationAdhocCallRecordingCount.g.cs","v1.0","Get-MgCommunicationAdhocCallRecordingCount","GET","/communications/adhocCalls/{param}/recordings/$count","matched","Get-MgCommunicationAdhocCallRecordingCount" +"CloudCommunications","GetMgCommunicationAdhocCallRecordingDelta.g.cs","v1.0","Get-MgCommunicationAdhocCallRecordingDelta","GET","/communications/adhocCalls/{param}/recordings/delta","matched","Get-MgCommunicationAdhocCallRecordingDelta" +"CloudCommunications","GetMgCommunicationAdhocCallTranscript_Get.g.cs","v1.0","Get-MgCommunicationAdhocCallTranscript","GET","/communications/adhocCalls/{param}/transcripts/{param}","matched","Get-MgCommunicationAdhocCallTranscript" +"CloudCommunications","GetMgCommunicationAdhocCallTranscript_List.g.cs","v1.0","Get-MgCommunicationAdhocCallTranscript","GET","/communications/adhocCalls/{param}/transcripts","matched","Get-MgCommunicationAdhocCallTranscript" +"CloudCommunications","GetMgCommunicationAdhocCallTranscript.g.cs","v1.0","Get-MgCommunicationAdhocCallTranscript","","","dispatcher","" +"CloudCommunications","GetMgCommunicationAdhocCallTranscriptCount.g.cs","v1.0","Get-MgCommunicationAdhocCallTranscriptCount","GET","/communications/adhocCalls/{param}/transcripts/$count","matched","Get-MgCommunicationAdhocCallTranscriptCount" +"CloudCommunications","GetMgCommunicationAdhocCallTranscriptDelta.g.cs","v1.0","Get-MgCommunicationAdhocCallTranscriptDelta","GET","/communications/adhocCalls/{param}/transcripts/delta","matched","Get-MgCommunicationAdhocCallTranscriptDelta" +"CloudCommunications","GetMgCommunicationCall_Get.g.cs","v1.0","Get-MgCommunicationCall","GET","/communications/calls/{param}","matched","Get-MgCommunicationCall" +"CloudCommunications","GetMgCommunicationCall_List.g.cs","v1.0","Get-MgCommunicationCall","GET","/communications/calls","no-oracle","" +"CloudCommunications","GetMgCommunicationCall.g.cs","v1.0","Get-MgCommunicationCall","","","dispatcher","" +"CloudCommunications","GetMgCommunicationCallAudioRoutingGroup_Get.g.cs","v1.0","Get-MgCommunicationCallAudioRoutingGroup","GET","/communications/calls/{param}/audioRoutingGroups/{param}","matched","Get-MgCommunicationCallAudioRoutingGroup" +"CloudCommunications","GetMgCommunicationCallAudioRoutingGroup_List.g.cs","v1.0","Get-MgCommunicationCallAudioRoutingGroup","GET","/communications/calls/{param}/audioRoutingGroups","matched","Get-MgCommunicationCallAudioRoutingGroup" +"CloudCommunications","GetMgCommunicationCallAudioRoutingGroup.g.cs","v1.0","Get-MgCommunicationCallAudioRoutingGroup","","","dispatcher","" +"CloudCommunications","GetMgCommunicationCallAudioRoutingGroupCount.g.cs","v1.0","Get-MgCommunicationCallAudioRoutingGroupCount","GET","/communications/calls/{param}/audioRoutingGroups/$count","matched","Get-MgCommunicationCallAudioRoutingGroupCount" +"CloudCommunications","GetMgCommunicationCallContentSharingSession_Get.g.cs","v1.0","Get-MgCommunicationCallContentSharingSession","GET","/communications/calls/{param}/contentSharingSessions/{param}","matched","Get-MgCommunicationCallContentSharingSession" +"CloudCommunications","GetMgCommunicationCallContentSharingSession_List.g.cs","v1.0","Get-MgCommunicationCallContentSharingSession","GET","/communications/calls/{param}/contentSharingSessions","matched","Get-MgCommunicationCallContentSharingSession" +"CloudCommunications","GetMgCommunicationCallContentSharingSession.g.cs","v1.0","Get-MgCommunicationCallContentSharingSession","","","dispatcher","" +"CloudCommunications","GetMgCommunicationCallContentSharingSessionCount.g.cs","v1.0","Get-MgCommunicationCallContentSharingSessionCount","GET","/communications/calls/{param}/contentSharingSessions/$count","matched","Get-MgCommunicationCallContentSharingSessionCount" +"CloudCommunications","GetMgCommunicationCallCount.g.cs","v1.0","Get-MgCommunicationCallCount","GET","/communications/calls/$count","matched","Get-MgCommunicationCallCount" +"CloudCommunications","GetMgCommunicationCallOperation_Get.g.cs","v1.0","Get-MgCommunicationCallOperation","GET","/communications/calls/{param}/operations/{param}","matched","Get-MgCommunicationCallOperation" +"CloudCommunications","GetMgCommunicationCallOperation_List.g.cs","v1.0","Get-MgCommunicationCallOperation","GET","/communications/calls/{param}/operations","matched","Get-MgCommunicationCallOperation" +"CloudCommunications","GetMgCommunicationCallOperation.g.cs","v1.0","Get-MgCommunicationCallOperation","","","dispatcher","" +"CloudCommunications","GetMgCommunicationCallOperationCount.g.cs","v1.0","Get-MgCommunicationCallOperationCount","GET","/communications/calls/{param}/operations/$count","matched","Get-MgCommunicationCallOperationCount" +"CloudCommunications","GetMgCommunicationCallParticipant_Get.g.cs","v1.0","Get-MgCommunicationCallParticipant","GET","/communications/calls/{param}/participants/{param}","matched","Get-MgCommunicationCallParticipant" +"CloudCommunications","GetMgCommunicationCallParticipant_List.g.cs","v1.0","Get-MgCommunicationCallParticipant","GET","/communications/calls/{param}/participants","matched","Get-MgCommunicationCallParticipant" +"CloudCommunications","GetMgCommunicationCallParticipant.g.cs","v1.0","Get-MgCommunicationCallParticipant","","","dispatcher","" +"CloudCommunications","GetMgCommunicationCallParticipantCount.g.cs","v1.0","Get-MgCommunicationCallParticipantCount","GET","/communications/calls/{param}/participants/$count","matched","Get-MgCommunicationCallParticipantCount" +"CloudCommunications","GetMgCommunicationCallRecord_Get.g.cs","v1.0","Get-MgCommunicationCallRecord","GET","/communications/callRecords/{param}","matched","Get-MgCommunicationCallRecord" +"CloudCommunications","GetMgCommunicationCallRecord_List.g.cs","v1.0","Get-MgCommunicationCallRecord","GET","/communications/callRecords","no-oracle","" +"CloudCommunications","GetMgCommunicationCallRecord.g.cs","v1.0","Get-MgCommunicationCallRecord","","","dispatcher","" +"CloudCommunications","GetMgCommunicationCallRecordCount.g.cs","v1.0","Get-MgCommunicationCallRecordCount","GET","/communications/callRecords/$count","matched","Get-MgCommunicationCallRecordCount" +"CloudCommunications","GetMgCommunicationCallRecordGetDirectRoutingCallsWithFromDateTimeWithToDateTime.g.cs","v1.0","Get-MgCommunicationCallRecordGetDirectRoutingCallsWithFromDateTimeWithToDateTime","","","parameterized-function","" +"CloudCommunications","GetMgCommunicationCallRecordGetPstnCallsWithFromDateTimeWithToDateTime.g.cs","v1.0","Get-MgCommunicationCallRecordGetPstnCallsWithFromDateTimeWithToDateTime","","","parameterized-function","" +"CloudCommunications","GetMgCommunicationCallRecordOrganizerV2.g.cs","v1.0","Get-MgCommunicationCallRecordOrganizerV2","GET","","cast","" +"CloudCommunications","GetMgCommunicationCallRecordParticipantV2_Get.g.cs","v1.0","Get-MgCommunicationCallRecordParticipantV2","GET","","cast","" +"CloudCommunications","GetMgCommunicationCallRecordParticipantV2_List.g.cs","v1.0","Get-MgCommunicationCallRecordParticipantV2","GET","","cast","" +"CloudCommunications","GetMgCommunicationCallRecordParticipantV2.g.cs","v1.0","Get-MgCommunicationCallRecordParticipantV2","","","dispatcher","" +"CloudCommunications","GetMgCommunicationCallRecordParticipantV2Count.g.cs","v1.0","Get-MgCommunicationCallRecordParticipantV2Count","GET","","cast","" +"CloudCommunications","GetMgCommunicationCallRecordSession_Get.g.cs","v1.0","Get-MgCommunicationCallRecordSession","GET","/communications/callRecords/{param}/sessions/{param}","matched","Get-MgCommunicationCallRecordSession" +"CloudCommunications","GetMgCommunicationCallRecordSession_List.g.cs","v1.0","Get-MgCommunicationCallRecordSession","GET","/communications/callRecords/{param}/sessions","matched","Get-MgCommunicationCallRecordSession" +"CloudCommunications","GetMgCommunicationCallRecordSession.g.cs","v1.0","Get-MgCommunicationCallRecordSession","","","dispatcher","" +"CloudCommunications","GetMgCommunicationCallRecordSessionCount.g.cs","v1.0","Get-MgCommunicationCallRecordSessionCount","GET","/communications/callRecords/{param}/sessions/$count","matched","Get-MgCommunicationCallRecordSessionCount" +"CloudCommunications","GetMgCommunicationCallRecordSessionSegment_Get.g.cs","v1.0","Get-MgCommunicationCallRecordSessionSegment","GET","/communications/callRecords/{param}/sessions/{param}/segments/{param}","no-oracle","" +"CloudCommunications","GetMgCommunicationCallRecordSessionSegment_List.g.cs","v1.0","Get-MgCommunicationCallRecordSessionSegment","GET","/communications/callRecords/{param}/sessions/{param}/segments","no-oracle","" +"CloudCommunications","GetMgCommunicationCallRecordSessionSegment.g.cs","v1.0","Get-MgCommunicationCallRecordSessionSegment","","","dispatcher","" +"CloudCommunications","GetMgCommunicationCallRecordSessionSegmentCount.g.cs","v1.0","Get-MgCommunicationCallRecordSessionSegmentCount","GET","/communications/callRecords/{param}/sessions/{param}/segments/$count","matched","Get-MgCommunicationCallRecordSessionSegmentCount" +"CloudCommunications","GetMgCommunicationGetAllOnlineMeetingMessages.g.cs","v1.0","Get-MgCommunicationGetAllOnlineMeetingMessages","GET","/communications/getAllOnlineMeetingMessages","mismatch","Get-MgCommunicationOnlineMeetingMessage" +"CloudCommunications","GetMgCommunicationOnlineMeeting_Get.g.cs","v1.0","Get-MgCommunicationOnlineMeeting","GET","/communications/onlineMeetings/{param}","matched","Get-MgCommunicationOnlineMeeting" +"CloudCommunications","GetMgCommunicationOnlineMeeting_List.g.cs","v1.0","Get-MgCommunicationOnlineMeeting","GET","/communications/onlineMeetings","matched","Get-MgCommunicationOnlineMeeting" +"CloudCommunications","GetMgCommunicationOnlineMeeting.g.cs","v1.0","Get-MgCommunicationOnlineMeeting","","","dispatcher","" +"CloudCommunications","GetMgCommunicationOnlineMeetingAttendanceReport_Get.g.cs","v1.0","Get-MgCommunicationOnlineMeetingAttendanceReport","GET","/communications/onlineMeetings/{param}/attendanceReports/{param}","matched","Get-MgCommunicationOnlineMeetingAttendanceReport" +"CloudCommunications","GetMgCommunicationOnlineMeetingAttendanceReport_List.g.cs","v1.0","Get-MgCommunicationOnlineMeetingAttendanceReport","GET","/communications/onlineMeetings/{param}/attendanceReports","matched","Get-MgCommunicationOnlineMeetingAttendanceReport" +"CloudCommunications","GetMgCommunicationOnlineMeetingAttendanceReport.g.cs","v1.0","Get-MgCommunicationOnlineMeetingAttendanceReport","","","dispatcher","" +"CloudCommunications","GetMgCommunicationOnlineMeetingAttendanceReportAttendanceRecord_Get.g.cs","v1.0","Get-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord","GET","/communications/onlineMeetings/{param}/attendanceReports/{param}/attendanceRecords/{param}","matched","Get-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord" +"CloudCommunications","GetMgCommunicationOnlineMeetingAttendanceReportAttendanceRecord_List.g.cs","v1.0","Get-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord","GET","/communications/onlineMeetings/{param}/attendanceReports/{param}/attendanceRecords","matched","Get-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord" +"CloudCommunications","GetMgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.g.cs","v1.0","Get-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord","","","dispatcher","" +"CloudCommunications","GetMgCommunicationOnlineMeetingAttendanceReportAttendanceRecordCount.g.cs","v1.0","Get-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecordCount","GET","/communications/onlineMeetings/{param}/attendanceReports/{param}/attendanceRecords/$count","matched","Get-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecordCount" +"CloudCommunications","GetMgCommunicationOnlineMeetingAttendanceReportCount.g.cs","v1.0","Get-MgCommunicationOnlineMeetingAttendanceReportCount","GET","/communications/onlineMeetings/{param}/attendanceReports/$count","matched","Get-MgCommunicationOnlineMeetingAttendanceReportCount" +"CloudCommunications","GetMgCommunicationOnlineMeetingConversation_Get.g.cs","v1.0","Get-MgCommunicationOnlineMeetingConversation","GET","/communications/onlineMeetingConversations/{param}","matched","Get-MgCommunicationOnlineMeetingConversation" +"CloudCommunications","GetMgCommunicationOnlineMeetingConversation_List.g.cs","v1.0","Get-MgCommunicationOnlineMeetingConversation","GET","/communications/onlineMeetingConversations","matched","Get-MgCommunicationOnlineMeetingConversation" +"CloudCommunications","GetMgCommunicationOnlineMeetingConversation.g.cs","v1.0","Get-MgCommunicationOnlineMeetingConversation","","","dispatcher","" +"CloudCommunications","GetMgCommunicationOnlineMeetingConversationCount.g.cs","v1.0","Get-MgCommunicationOnlineMeetingConversationCount","GET","/communications/onlineMeetingConversations/$count","matched","Get-MgCommunicationOnlineMeetingConversationCount" +"CloudCommunications","GetMgCommunicationOnlineMeetingConversationMessage_Get.g.cs","v1.0","Get-MgCommunicationOnlineMeetingConversationMessage","GET","/communications/onlineMeetingConversations/{param}/messages/{param}","matched","Get-MgCommunicationOnlineMeetingConversationMessage" +"CloudCommunications","GetMgCommunicationOnlineMeetingConversationMessage_List.g.cs","v1.0","Get-MgCommunicationOnlineMeetingConversationMessage","GET","/communications/onlineMeetingConversations/{param}/messages","matched","Get-MgCommunicationOnlineMeetingConversationMessage" +"CloudCommunications","GetMgCommunicationOnlineMeetingConversationMessage.g.cs","v1.0","Get-MgCommunicationOnlineMeetingConversationMessage","","","dispatcher","" +"CloudCommunications","GetMgCommunicationOnlineMeetingConversationMessageConversation.g.cs","v1.0","Get-MgCommunicationOnlineMeetingConversationMessageConversation","GET","/communications/onlineMeetingConversations/{param}/messages/{param}/conversation","matched","Get-MgCommunicationOnlineMeetingConversationMessageConversation" +"CloudCommunications","GetMgCommunicationOnlineMeetingConversationMessageCount.g.cs","v1.0","Get-MgCommunicationOnlineMeetingConversationMessageCount","GET","/communications/onlineMeetingConversations/{param}/messages/$count","matched","Get-MgCommunicationOnlineMeetingConversationMessageCount" +"CloudCommunications","GetMgCommunicationOnlineMeetingConversationMessageReaction_Get.g.cs","v1.0","Get-MgCommunicationOnlineMeetingConversationMessageReaction","GET","/communications/onlineMeetingConversations/{param}/messages/{param}/reactions/{param}","matched","Get-MgCommunicationOnlineMeetingConversationMessageReaction" +"CloudCommunications","GetMgCommunicationOnlineMeetingConversationMessageReaction_List.g.cs","v1.0","Get-MgCommunicationOnlineMeetingConversationMessageReaction","GET","/communications/onlineMeetingConversations/{param}/messages/{param}/reactions","matched","Get-MgCommunicationOnlineMeetingConversationMessageReaction" +"CloudCommunications","GetMgCommunicationOnlineMeetingConversationMessageReaction.g.cs","v1.0","Get-MgCommunicationOnlineMeetingConversationMessageReaction","","","dispatcher","" +"CloudCommunications","GetMgCommunicationOnlineMeetingConversationMessageReactionCount.g.cs","v1.0","Get-MgCommunicationOnlineMeetingConversationMessageReactionCount","GET","/communications/onlineMeetingConversations/{param}/messages/{param}/reactions/$count","matched","Get-MgCommunicationOnlineMeetingConversationMessageReactionCount" +"CloudCommunications","GetMgCommunicationOnlineMeetingConversationMessageReply_Get.g.cs","v1.0","Get-MgCommunicationOnlineMeetingConversationMessageReply","GET","/communications/onlineMeetingConversations/{param}/messages/{param}/replies/{param}","matched","Get-MgCommunicationOnlineMeetingConversationMessageReply" +"CloudCommunications","GetMgCommunicationOnlineMeetingConversationMessageReply_List.g.cs","v1.0","Get-MgCommunicationOnlineMeetingConversationMessageReply","GET","/communications/onlineMeetingConversations/{param}/messages/{param}/replies","matched","Get-MgCommunicationOnlineMeetingConversationMessageReply" +"CloudCommunications","GetMgCommunicationOnlineMeetingConversationMessageReply.g.cs","v1.0","Get-MgCommunicationOnlineMeetingConversationMessageReply","","","dispatcher","" +"CloudCommunications","GetMgCommunicationOnlineMeetingConversationMessageReplyConversation.g.cs","v1.0","Get-MgCommunicationOnlineMeetingConversationMessageReplyConversation","GET","/communications/onlineMeetingConversations/{param}/messages/{param}/replies/{param}/conversation","matched","Get-MgCommunicationOnlineMeetingConversationMessageReplyConversation" +"CloudCommunications","GetMgCommunicationOnlineMeetingConversationMessageReplyCount.g.cs","v1.0","Get-MgCommunicationOnlineMeetingConversationMessageReplyCount","GET","/communications/onlineMeetingConversations/{param}/messages/{param}/replies/$count","matched","Get-MgCommunicationOnlineMeetingConversationMessageReplyCount" +"CloudCommunications","GetMgCommunicationOnlineMeetingConversationMessageReplyReaction_Get.g.cs","v1.0","Get-MgCommunicationOnlineMeetingConversationMessageReplyReaction","GET","/communications/onlineMeetingConversations/{param}/messages/{param}/replies/{param}/reactions/{param}","matched","Get-MgCommunicationOnlineMeetingConversationMessageReplyReaction" +"CloudCommunications","GetMgCommunicationOnlineMeetingConversationMessageReplyReaction_List.g.cs","v1.0","Get-MgCommunicationOnlineMeetingConversationMessageReplyReaction","GET","/communications/onlineMeetingConversations/{param}/messages/{param}/replies/{param}/reactions","matched","Get-MgCommunicationOnlineMeetingConversationMessageReplyReaction" +"CloudCommunications","GetMgCommunicationOnlineMeetingConversationMessageReplyReaction.g.cs","v1.0","Get-MgCommunicationOnlineMeetingConversationMessageReplyReaction","","","dispatcher","" +"CloudCommunications","GetMgCommunicationOnlineMeetingConversationMessageReplyReactionCount.g.cs","v1.0","Get-MgCommunicationOnlineMeetingConversationMessageReplyReactionCount","GET","/communications/onlineMeetingConversations/{param}/messages/{param}/replies/{param}/reactions/$count","matched","Get-MgCommunicationOnlineMeetingConversationMessageReplyReactionCount" +"CloudCommunications","GetMgCommunicationOnlineMeetingConversationMessageReplyTo.g.cs","v1.0","Get-MgCommunicationOnlineMeetingConversationMessageReplyTo","GET","/communications/onlineMeetingConversations/{param}/messages/{param}/replyTo","matched","Get-MgCommunicationOnlineMeetingConversationMessageReplyTo" +"CloudCommunications","GetMgCommunicationOnlineMeetingConversationOnlineMeeting.g.cs","v1.0","Get-MgCommunicationOnlineMeetingConversationOnlineMeeting","GET","/communications/onlineMeetingConversations/{param}/onlineMeeting","matched","Get-MgCommunicationOnlineMeetingConversationOnlineMeeting" +"CloudCommunications","GetMgCommunicationOnlineMeetingConversationStarter.g.cs","v1.0","Get-MgCommunicationOnlineMeetingConversationStarter","GET","/communications/onlineMeetingConversations/{param}/starter","matched","Get-MgCommunicationOnlineMeetingConversationStarter" +"CloudCommunications","GetMgCommunicationOnlineMeetingConversationStarterConversation.g.cs","v1.0","Get-MgCommunicationOnlineMeetingConversationStarterConversation","GET","/communications/onlineMeetingConversations/{param}/starter/conversation","matched","Get-MgCommunicationOnlineMeetingConversationStarterConversation" +"CloudCommunications","GetMgCommunicationOnlineMeetingConversationStarterReaction_Get.g.cs","v1.0","Get-MgCommunicationOnlineMeetingConversationStarterReaction","GET","/communications/onlineMeetingConversations/{param}/starter/reactions/{param}","matched","Get-MgCommunicationOnlineMeetingConversationStarterReaction" +"CloudCommunications","GetMgCommunicationOnlineMeetingConversationStarterReaction_List.g.cs","v1.0","Get-MgCommunicationOnlineMeetingConversationStarterReaction","GET","/communications/onlineMeetingConversations/{param}/starter/reactions","matched","Get-MgCommunicationOnlineMeetingConversationStarterReaction" +"CloudCommunications","GetMgCommunicationOnlineMeetingConversationStarterReaction.g.cs","v1.0","Get-MgCommunicationOnlineMeetingConversationStarterReaction","","","dispatcher","" +"CloudCommunications","GetMgCommunicationOnlineMeetingConversationStarterReactionCount.g.cs","v1.0","Get-MgCommunicationOnlineMeetingConversationStarterReactionCount","GET","/communications/onlineMeetingConversations/{param}/starter/reactions/$count","matched","Get-MgCommunicationOnlineMeetingConversationStarterReactionCount" +"CloudCommunications","GetMgCommunicationOnlineMeetingConversationStarterReply_Get.g.cs","v1.0","Get-MgCommunicationOnlineMeetingConversationStarterReply","GET","/communications/onlineMeetingConversations/{param}/starter/replies/{param}","matched","Get-MgCommunicationOnlineMeetingConversationStarterReply" +"CloudCommunications","GetMgCommunicationOnlineMeetingConversationStarterReply_List.g.cs","v1.0","Get-MgCommunicationOnlineMeetingConversationStarterReply","GET","/communications/onlineMeetingConversations/{param}/starter/replies","matched","Get-MgCommunicationOnlineMeetingConversationStarterReply" +"CloudCommunications","GetMgCommunicationOnlineMeetingConversationStarterReply.g.cs","v1.0","Get-MgCommunicationOnlineMeetingConversationStarterReply","","","dispatcher","" +"CloudCommunications","GetMgCommunicationOnlineMeetingConversationStarterReplyConversation.g.cs","v1.0","Get-MgCommunicationOnlineMeetingConversationStarterReplyConversation","GET","/communications/onlineMeetingConversations/{param}/starter/replies/{param}/conversation","matched","Get-MgCommunicationOnlineMeetingConversationStarterReplyConversation" +"CloudCommunications","GetMgCommunicationOnlineMeetingConversationStarterReplyCount.g.cs","v1.0","Get-MgCommunicationOnlineMeetingConversationStarterReplyCount","GET","/communications/onlineMeetingConversations/{param}/starter/replies/$count","matched","Get-MgCommunicationOnlineMeetingConversationStarterReplyCount" +"CloudCommunications","GetMgCommunicationOnlineMeetingConversationStarterReplyReaction_Get.g.cs","v1.0","Get-MgCommunicationOnlineMeetingConversationStarterReplyReaction","GET","/communications/onlineMeetingConversations/{param}/starter/replies/{param}/reactions/{param}","matched","Get-MgCommunicationOnlineMeetingConversationStarterReplyReaction" +"CloudCommunications","GetMgCommunicationOnlineMeetingConversationStarterReplyReaction_List.g.cs","v1.0","Get-MgCommunicationOnlineMeetingConversationStarterReplyReaction","GET","/communications/onlineMeetingConversations/{param}/starter/replies/{param}/reactions","matched","Get-MgCommunicationOnlineMeetingConversationStarterReplyReaction" +"CloudCommunications","GetMgCommunicationOnlineMeetingConversationStarterReplyReaction.g.cs","v1.0","Get-MgCommunicationOnlineMeetingConversationStarterReplyReaction","","","dispatcher","" +"CloudCommunications","GetMgCommunicationOnlineMeetingConversationStarterReplyReactionCount.g.cs","v1.0","Get-MgCommunicationOnlineMeetingConversationStarterReplyReactionCount","GET","/communications/onlineMeetingConversations/{param}/starter/replies/{param}/reactions/$count","matched","Get-MgCommunicationOnlineMeetingConversationStarterReplyReactionCount" +"CloudCommunications","GetMgCommunicationOnlineMeetingConversationStarterReplyTo.g.cs","v1.0","Get-MgCommunicationOnlineMeetingConversationStarterReplyTo","GET","/communications/onlineMeetingConversations/{param}/starter/replyTo","matched","Get-MgCommunicationOnlineMeetingConversationStarterReplyTo" +"CloudCommunications","GetMgCommunicationOnlineMeetingCount.g.cs","v1.0","Get-MgCommunicationOnlineMeetingCount","GET","/communications/onlineMeetings/$count","matched","Get-MgCommunicationOnlineMeetingCount" +"CloudCommunications","GetMgCommunicationOnlineMeetingGetVirtualAppointmentJoinWebUrl.g.cs","v1.0","Get-MgCommunicationOnlineMeetingGetVirtualAppointmentJoinWebUrl","GET","/communications/onlineMeetings/{param}/getVirtualAppointmentJoinWebUrl","mismatch","Get-MgCommunicationOnlineMeetingVirtualAppointmentJoinWebUrl" +"CloudCommunications","GetMgCommunicationOnlineMeetingRecording_Get.g.cs","v1.0","Get-MgCommunicationOnlineMeetingRecording","GET","/communications/onlineMeetings/{param}/recordings/{param}","matched","Get-MgCommunicationOnlineMeetingRecording" +"CloudCommunications","GetMgCommunicationOnlineMeetingRecording_List.g.cs","v1.0","Get-MgCommunicationOnlineMeetingRecording","GET","/communications/onlineMeetings/{param}/recordings","matched","Get-MgCommunicationOnlineMeetingRecording" +"CloudCommunications","GetMgCommunicationOnlineMeetingRecording.g.cs","v1.0","Get-MgCommunicationOnlineMeetingRecording","","","dispatcher","" +"CloudCommunications","GetMgCommunicationOnlineMeetingRecordingCount.g.cs","v1.0","Get-MgCommunicationOnlineMeetingRecordingCount","GET","/communications/onlineMeetings/{param}/recordings/$count","matched","Get-MgCommunicationOnlineMeetingRecordingCount" +"CloudCommunications","GetMgCommunicationOnlineMeetingRecordingDelta.g.cs","v1.0","Get-MgCommunicationOnlineMeetingRecordingDelta","GET","/communications/onlineMeetings/{param}/recordings/delta","matched","Get-MgCommunicationOnlineMeetingRecordingDelta" +"CloudCommunications","GetMgCommunicationOnlineMeetingTranscript_Get.g.cs","v1.0","Get-MgCommunicationOnlineMeetingTranscript","GET","/communications/onlineMeetings/{param}/transcripts/{param}","matched","Get-MgCommunicationOnlineMeetingTranscript" +"CloudCommunications","GetMgCommunicationOnlineMeetingTranscript_List.g.cs","v1.0","Get-MgCommunicationOnlineMeetingTranscript","GET","/communications/onlineMeetings/{param}/transcripts","matched","Get-MgCommunicationOnlineMeetingTranscript" +"CloudCommunications","GetMgCommunicationOnlineMeetingTranscript.g.cs","v1.0","Get-MgCommunicationOnlineMeetingTranscript","","","dispatcher","" +"CloudCommunications","GetMgCommunicationOnlineMeetingTranscriptCount.g.cs","v1.0","Get-MgCommunicationOnlineMeetingTranscriptCount","GET","/communications/onlineMeetings/{param}/transcripts/$count","matched","Get-MgCommunicationOnlineMeetingTranscriptCount" +"CloudCommunications","GetMgCommunicationOnlineMeetingTranscriptDelta.g.cs","v1.0","Get-MgCommunicationOnlineMeetingTranscriptDelta","GET","/communications/onlineMeetings/{param}/transcripts/delta","matched","Get-MgCommunicationOnlineMeetingTranscriptDelta" +"CloudCommunications","GetMgCommunicationPresence_Get.g.cs","v1.0","Get-MgCommunicationPresence","GET","/communications/presences/{param}","matched","Get-MgCommunicationPresence" +"CloudCommunications","GetMgCommunicationPresence_List.g.cs","v1.0","Get-MgCommunicationPresence","GET","/communications/presences","matched","Get-MgCommunicationPresence" +"CloudCommunications","GetMgCommunicationPresence.g.cs","v1.0","Get-MgCommunicationPresence","","","dispatcher","" +"CloudCommunications","GetMgCommunicationPresenceCount.g.cs","v1.0","Get-MgCommunicationPresenceCount","GET","/communications/presences/$count","matched","Get-MgCommunicationPresenceCount" +"CloudCommunications","GetMgUserOnlineMeeting_Get.g.cs","v1.0","Get-MgUserOnlineMeeting","GET","/users/{param}/onlineMeetings/{param}","matched","Get-MgUserOnlineMeeting" +"CloudCommunications","GetMgUserOnlineMeeting_List.g.cs","v1.0","Get-MgUserOnlineMeeting","GET","/users/{param}/onlineMeetings","matched","Get-MgUserOnlineMeeting" +"CloudCommunications","GetMgUserOnlineMeeting.g.cs","v1.0","Get-MgUserOnlineMeeting","","","dispatcher","" +"CloudCommunications","GetMgUserOnlineMeetingAttendanceReport_Get.g.cs","v1.0","Get-MgUserOnlineMeetingAttendanceReport","GET","/users/{param}/onlineMeetings/{param}/attendanceReports/{param}","matched","Get-MgUserOnlineMeetingAttendanceReport" +"CloudCommunications","GetMgUserOnlineMeetingAttendanceReport_List.g.cs","v1.0","Get-MgUserOnlineMeetingAttendanceReport","GET","/users/{param}/onlineMeetings/{param}/attendanceReports","matched","Get-MgUserOnlineMeetingAttendanceReport" +"CloudCommunications","GetMgUserOnlineMeetingAttendanceReport.g.cs","v1.0","Get-MgUserOnlineMeetingAttendanceReport","","","dispatcher","" +"CloudCommunications","GetMgUserOnlineMeetingAttendanceReportAttendanceRecord_Get.g.cs","v1.0","Get-MgUserOnlineMeetingAttendanceReportAttendanceRecord","GET","/users/{param}/onlineMeetings/{param}/attendanceReports/{param}/attendanceRecords/{param}","matched","Get-MgUserOnlineMeetingAttendanceReportAttendanceRecord" +"CloudCommunications","GetMgUserOnlineMeetingAttendanceReportAttendanceRecord_List.g.cs","v1.0","Get-MgUserOnlineMeetingAttendanceReportAttendanceRecord","GET","/users/{param}/onlineMeetings/{param}/attendanceReports/{param}/attendanceRecords","matched","Get-MgUserOnlineMeetingAttendanceReportAttendanceRecord" +"CloudCommunications","GetMgUserOnlineMeetingAttendanceReportAttendanceRecord.g.cs","v1.0","Get-MgUserOnlineMeetingAttendanceReportAttendanceRecord","","","dispatcher","" +"CloudCommunications","GetMgUserOnlineMeetingAttendanceReportAttendanceRecordCount.g.cs","v1.0","Get-MgUserOnlineMeetingAttendanceReportAttendanceRecordCount","GET","/users/{param}/onlineMeetings/{param}/attendanceReports/{param}/attendanceRecords/$count","matched","Get-MgUserOnlineMeetingAttendanceReportAttendanceRecordCount" +"CloudCommunications","GetMgUserOnlineMeetingAttendanceReportCount.g.cs","v1.0","Get-MgUserOnlineMeetingAttendanceReportCount","GET","/users/{param}/onlineMeetings/{param}/attendanceReports/$count","matched","Get-MgUserOnlineMeetingAttendanceReportCount" +"CloudCommunications","GetMgUserOnlineMeetingCount.g.cs","v1.0","Get-MgUserOnlineMeetingCount","GET","/users/{param}/onlineMeetings/$count","matched","Get-MgUserOnlineMeetingCount" +"CloudCommunications","GetMgUserOnlineMeetingGetVirtualAppointmentJoinWebUrl.g.cs","v1.0","Get-MgUserOnlineMeetingGetVirtualAppointmentJoinWebUrl","GET","/users/{param}/onlineMeetings/{param}/getVirtualAppointmentJoinWebUrl","mismatch","Get-MgUserOnlineMeetingVirtualAppointmentJoinWebUrl" +"CloudCommunications","GetMgUserOnlineMeetingRecording_Get.g.cs","v1.0","Get-MgUserOnlineMeetingRecording","GET","/users/{param}/onlineMeetings/{param}/recordings/{param}","matched","Get-MgUserOnlineMeetingRecording" +"CloudCommunications","GetMgUserOnlineMeetingRecording_List.g.cs","v1.0","Get-MgUserOnlineMeetingRecording","GET","/users/{param}/onlineMeetings/{param}/recordings","matched","Get-MgUserOnlineMeetingRecording" +"CloudCommunications","GetMgUserOnlineMeetingRecording.g.cs","v1.0","Get-MgUserOnlineMeetingRecording","","","dispatcher","" +"CloudCommunications","GetMgUserOnlineMeetingRecordingCount.g.cs","v1.0","Get-MgUserOnlineMeetingRecordingCount","GET","/users/{param}/onlineMeetings/{param}/recordings/$count","matched","Get-MgUserOnlineMeetingRecordingCount" +"CloudCommunications","GetMgUserOnlineMeetingRecordingDelta.g.cs","v1.0","Get-MgUserOnlineMeetingRecordingDelta","GET","/users/{param}/onlineMeetings/{param}/recordings/delta","matched","Get-MgUserOnlineMeetingRecordingDelta" +"CloudCommunications","GetMgUserOnlineMeetingTranscript_Get.g.cs","v1.0","Get-MgUserOnlineMeetingTranscript","GET","/users/{param}/onlineMeetings/{param}/transcripts/{param}","matched","Get-MgUserOnlineMeetingTranscript" +"CloudCommunications","GetMgUserOnlineMeetingTranscript_List.g.cs","v1.0","Get-MgUserOnlineMeetingTranscript","GET","/users/{param}/onlineMeetings/{param}/transcripts","matched","Get-MgUserOnlineMeetingTranscript" +"CloudCommunications","GetMgUserOnlineMeetingTranscript.g.cs","v1.0","Get-MgUserOnlineMeetingTranscript","","","dispatcher","" +"CloudCommunications","GetMgUserOnlineMeetingTranscriptCount.g.cs","v1.0","Get-MgUserOnlineMeetingTranscriptCount","GET","/users/{param}/onlineMeetings/{param}/transcripts/$count","matched","Get-MgUserOnlineMeetingTranscriptCount" +"CloudCommunications","GetMgUserOnlineMeetingTranscriptDelta.g.cs","v1.0","Get-MgUserOnlineMeetingTranscriptDelta","GET","/users/{param}/onlineMeetings/{param}/transcripts/delta","matched","Get-MgUserOnlineMeetingTranscriptDelta" +"CloudCommunications","GetMgUserPresence.g.cs","v1.0","Get-MgUserPresence","GET","/users/{param}/presence","matched","Get-MgUserPresence" +"CloudCommunications","InvokeMgCommunicationCallAddLargeGalleryView.g.cs","v1.0","Invoke-MgCommunicationCallAddLargeGalleryView","POST","/communications/calls/{param}/addLargeGalleryView","mismatch","Add-MgCommunicationCallLargeGalleryView" +"CloudCommunications","InvokeMgCommunicationCallAnswer.g.cs","v1.0","Invoke-MgCommunicationCallAnswer","POST","/communications/calls/{param}/answer","mismatch","Invoke-MgAnswerCommunicationCall" +"CloudCommunications","InvokeMgCommunicationCallCancelMediaProcessing.g.cs","v1.0","Invoke-MgCommunicationCallCancelMediaProcessing","POST","/communications/calls/{param}/cancelMediaProcessing","mismatch","Stop-MgCommunicationCallMediaProcessing" +"CloudCommunications","InvokeMgCommunicationCallChangeScreenSharingRole.g.cs","v1.0","Invoke-MgCommunicationCallChangeScreenSharingRole","POST","/communications/calls/{param}/changeScreenSharingRole","mismatch","Rename-MgCommunicationCallScreenSharingRole" +"CloudCommunications","InvokeMgCommunicationCallKeepAlive.g.cs","v1.0","Invoke-MgCommunicationCallKeepAlive","POST","/communications/calls/{param}/keepAlive","mismatch","Invoke-MgKeepCommunicationCallAlive" +"CloudCommunications","InvokeMgCommunicationCallLogTeleconferenceDeviceQuality.g.cs","v1.0","Invoke-MgCommunicationCallLogTeleconferenceDeviceQuality","POST","/communications/calls/logTeleconferenceDeviceQuality","mismatch","Invoke-MgLogCommunicationCallTeleconferenceDeviceQuality" +"CloudCommunications","InvokeMgCommunicationCallMute.g.cs","v1.0","Invoke-MgCommunicationCallMute","POST","/communications/calls/{param}/mute","mismatch","Invoke-MgMuteCommunicationCall" +"CloudCommunications","InvokeMgCommunicationCallParticipantInvite.g.cs","v1.0","Invoke-MgCommunicationCallParticipantInvite","POST","/communications/calls/{param}/participants/invite","mismatch","Invoke-MgInviteCommunicationCallParticipant" +"CloudCommunications","InvokeMgCommunicationCallParticipantMute.g.cs","v1.0","Invoke-MgCommunicationCallParticipantMute","POST","/communications/calls/{param}/participants/{param}/mute","mismatch","Invoke-MgMuteCommunicationCallParticipant" +"CloudCommunications","InvokeMgCommunicationCallParticipantStartHoldMusic.g.cs","v1.0","Invoke-MgCommunicationCallParticipantStartHoldMusic","POST","/communications/calls/{param}/participants/{param}/startHoldMusic","mismatch","Start-MgCommunicationCallParticipantHoldMusic" +"CloudCommunications","InvokeMgCommunicationCallParticipantStopHoldMusic.g.cs","v1.0","Invoke-MgCommunicationCallParticipantStopHoldMusic","POST","/communications/calls/{param}/participants/{param}/stopHoldMusic","mismatch","Stop-MgCommunicationCallParticipantHoldMusic" +"CloudCommunications","InvokeMgCommunicationCallPlayPrompt.g.cs","v1.0","Invoke-MgCommunicationCallPlayPrompt","POST","/communications/calls/{param}/playPrompt","mismatch","Invoke-MgPlayCommunicationCallPrompt" +"CloudCommunications","InvokeMgCommunicationCallRecordResponse.g.cs","v1.0","Invoke-MgCommunicationCallRecordResponse","POST","/communications/calls/{param}/recordResponse","mismatch","Invoke-MgRecordCommunicationCallResponse" +"CloudCommunications","InvokeMgCommunicationCallRedirect.g.cs","v1.0","Invoke-MgCommunicationCallRedirect","POST","/communications/calls/{param}/redirect","mismatch","Invoke-MgRedirectCommunicationCall" +"CloudCommunications","InvokeMgCommunicationCallReject.g.cs","v1.0","Invoke-MgCommunicationCallReject","POST","/communications/calls/{param}/reject","mismatch","Invoke-MgRejectCommunicationCall" +"CloudCommunications","InvokeMgCommunicationCallSendDtmfTones.g.cs","v1.0","Invoke-MgCommunicationCallSendDtmfTones","POST","/communications/calls/{param}/sendDtmfTones","mismatch","Send-MgCommunicationCallDtmfTone" +"CloudCommunications","InvokeMgCommunicationCallSubscribeToTone.g.cs","v1.0","Invoke-MgCommunicationCallSubscribeToTone","POST","/communications/calls/{param}/subscribeToTone","mismatch","Invoke-MgSubscribeCommunicationCallToTone" +"CloudCommunications","InvokeMgCommunicationCallTransfer.g.cs","v1.0","Invoke-MgCommunicationCallTransfer","POST","/communications/calls/{param}/transfer","mismatch","Move-MgCommunicationCall" +"CloudCommunications","InvokeMgCommunicationCallUnmute.g.cs","v1.0","Invoke-MgCommunicationCallUnmute","POST","/communications/calls/{param}/unmute","mismatch","Invoke-MgUnmuteCommunicationCall" +"CloudCommunications","InvokeMgCommunicationCallUpdateRecordingStatus.g.cs","v1.0","Invoke-MgCommunicationCallUpdateRecordingStatus","POST","/communications/calls/{param}/updateRecordingStatus","mismatch","Update-MgCommunicationCallRecordingStatus" +"CloudCommunications","InvokeMgCommunicationGetPresencesByUserId.g.cs","v1.0","Invoke-MgCommunicationGetPresencesByUserId","POST","/communications/getPresencesByUserId","mismatch","Get-MgCommunicationPresenceByUserId" +"CloudCommunications","InvokeMgCommunicationOnlineMeetingCreateOrGet.g.cs","v1.0","Invoke-MgCommunicationOnlineMeetingCreateOrGet","POST","/communications/onlineMeetings/createOrGet","mismatch","Invoke-MgCreateOrGetCommunicationOnlineMeeting" +"CloudCommunications","InvokeMgCommunicationOnlineMeetingSendVirtualAppointmentReminderSms.g.cs","v1.0","Invoke-MgCommunicationOnlineMeetingSendVirtualAppointmentReminderSms","POST","/communications/onlineMeetings/{param}/sendVirtualAppointmentReminderSms","mismatch","Send-MgCommunicationOnlineMeetingVirtualAppointmentReminderSm" +"CloudCommunications","InvokeMgCommunicationOnlineMeetingSendVirtualAppointmentSms.g.cs","v1.0","Invoke-MgCommunicationOnlineMeetingSendVirtualAppointmentSms","POST","/communications/onlineMeetings/{param}/sendVirtualAppointmentSms","mismatch","Send-MgCommunicationOnlineMeetingVirtualAppointmentSm" +"CloudCommunications","InvokeMgCommunicationPresenceClearAutomaticLocation.g.cs","v1.0","Invoke-MgCommunicationPresenceClearAutomaticLocation","POST","/communications/presences/{param}/clearAutomaticLocation","mismatch","Clear-MgCommunicationPresenceAutomaticLocation" +"CloudCommunications","InvokeMgCommunicationPresenceClearLocation.g.cs","v1.0","Invoke-MgCommunicationPresenceClearLocation","POST","/communications/presences/{param}/clearLocation","mismatch","Clear-MgCommunicationPresenceLocation" +"CloudCommunications","InvokeMgCommunicationPresenceClearPresence.g.cs","v1.0","Invoke-MgCommunicationPresenceClearPresence","POST","/communications/presences/{param}/clearPresence","mismatch","Clear-MgCommunicationPresence" +"CloudCommunications","InvokeMgCommunicationPresenceClearUserPreferredPresence.g.cs","v1.0","Invoke-MgCommunicationPresenceClearUserPreferredPresence","POST","/communications/presences/{param}/clearUserPreferredPresence","mismatch","Clear-MgCommunicationPresenceUserPreferredPresence" +"CloudCommunications","InvokeMgCommunicationPresenceSetAutomaticLocation.g.cs","v1.0","Invoke-MgCommunicationPresenceSetAutomaticLocation","POST","/communications/presences/{param}/setAutomaticLocation","mismatch","Set-MgCommunicationPresenceAutomaticLocation" +"CloudCommunications","InvokeMgCommunicationPresenceSetManualLocation.g.cs","v1.0","Invoke-MgCommunicationPresenceSetManualLocation","POST","/communications/presences/{param}/setManualLocation","mismatch","Set-MgCommunicationPresenceManualLocation" +"CloudCommunications","InvokeMgCommunicationPresenceSetPresence.g.cs","v1.0","Invoke-MgCommunicationPresenceSetPresence","POST","/communications/presences/{param}/setPresence","mismatch","Set-MgCommunicationPresence" +"CloudCommunications","InvokeMgCommunicationPresenceSetStatusMessage.g.cs","v1.0","Invoke-MgCommunicationPresenceSetStatusMessage","POST","/communications/presences/{param}/setStatusMessage","mismatch","Set-MgCommunicationPresenceStatusMessage" +"CloudCommunications","InvokeMgCommunicationPresenceSetUserPreferredPresence.g.cs","v1.0","Invoke-MgCommunicationPresenceSetUserPreferredPresence","POST","/communications/presences/{param}/setUserPreferredPresence","mismatch","Set-MgCommunicationPresenceUserPreferredPresence" +"CloudCommunications","InvokeMgUserOnlineMeetingCreateOrGet.g.cs","v1.0","Invoke-MgUserOnlineMeetingCreateOrGet","POST","/users/{param}/onlineMeetings/createOrGet","no-oracle","" +"CloudCommunications","InvokeMgUserOnlineMeetingSendVirtualAppointmentReminderSms.g.cs","v1.0","Invoke-MgUserOnlineMeetingSendVirtualAppointmentReminderSms","POST","/users/{param}/onlineMeetings/{param}/sendVirtualAppointmentReminderSms","mismatch","Send-MgUserOnlineMeetingVirtualAppointmentReminderSm" +"CloudCommunications","InvokeMgUserOnlineMeetingSendVirtualAppointmentSms.g.cs","v1.0","Invoke-MgUserOnlineMeetingSendVirtualAppointmentSms","POST","/users/{param}/onlineMeetings/{param}/sendVirtualAppointmentSms","mismatch","Send-MgUserOnlineMeetingVirtualAppointmentSm" +"CloudCommunications","InvokeMgUserPresenceClearAutomaticLocation.g.cs","v1.0","Invoke-MgUserPresenceClearAutomaticLocation","POST","/users/{param}/presence/clearAutomaticLocation","mismatch","Clear-MgUserPresenceAutomaticLocation" +"CloudCommunications","InvokeMgUserPresenceClearLocation.g.cs","v1.0","Invoke-MgUserPresenceClearLocation","POST","/users/{param}/presence/clearLocation","mismatch","Clear-MgUserPresenceLocation" +"CloudCommunications","InvokeMgUserPresenceClearPresence.g.cs","v1.0","Invoke-MgUserPresenceClearPresence","POST","/users/{param}/presence/clearPresence","mismatch","Clear-MgUserPresence" +"CloudCommunications","InvokeMgUserPresenceClearUserPreferredPresence.g.cs","v1.0","Invoke-MgUserPresenceClearUserPreferredPresence","POST","/users/{param}/presence/clearUserPreferredPresence","mismatch","Clear-MgUserPresenceUserPreferredPresence" +"CloudCommunications","InvokeMgUserPresenceSetAutomaticLocation.g.cs","v1.0","Invoke-MgUserPresenceSetAutomaticLocation","POST","/users/{param}/presence/setAutomaticLocation","mismatch","Set-MgUserPresenceAutomaticLocation" +"CloudCommunications","InvokeMgUserPresenceSetManualLocation.g.cs","v1.0","Invoke-MgUserPresenceSetManualLocation","POST","/users/{param}/presence/setManualLocation","mismatch","Set-MgUserPresenceManualLocation" +"CloudCommunications","InvokeMgUserPresenceSetPresence.g.cs","v1.0","Invoke-MgUserPresenceSetPresence","POST","/users/{param}/presence/setPresence","mismatch","Set-MgUserPresence" +"CloudCommunications","InvokeMgUserPresenceSetStatusMessage.g.cs","v1.0","Invoke-MgUserPresenceSetStatusMessage","POST","/users/{param}/presence/setStatusMessage","mismatch","Set-MgUserPresenceStatusMessage" +"CloudCommunications","InvokeMgUserPresenceSetUserPreferredPresence.g.cs","v1.0","Invoke-MgUserPresenceSetUserPreferredPresence","POST","/users/{param}/presence/setUserPreferredPresence","mismatch","Set-MgUserPresenceUserPreferredPresence" +"CloudCommunications","NewMgCommunicationAdhocCall.g.cs","v1.0","New-MgCommunicationAdhocCall","POST","/communications/adhocCalls","matched","New-MgCommunicationAdhocCall" +"CloudCommunications","NewMgCommunicationAdhocCallRecording.g.cs","v1.0","New-MgCommunicationAdhocCallRecording","POST","/communications/adhocCalls/{param}/recordings","matched","New-MgCommunicationAdhocCallRecording" +"CloudCommunications","NewMgCommunicationAdhocCallTranscript.g.cs","v1.0","New-MgCommunicationAdhocCallTranscript","POST","/communications/adhocCalls/{param}/transcripts","matched","New-MgCommunicationAdhocCallTranscript" +"CloudCommunications","NewMgCommunicationCall.g.cs","v1.0","New-MgCommunicationCall","POST","/communications/calls","matched","New-MgCommunicationCall" +"CloudCommunications","NewMgCommunicationCallAudioRoutingGroup.g.cs","v1.0","New-MgCommunicationCallAudioRoutingGroup","POST","/communications/calls/{param}/audioRoutingGroups","matched","New-MgCommunicationCallAudioRoutingGroup" +"CloudCommunications","NewMgCommunicationCallContentSharingSession.g.cs","v1.0","New-MgCommunicationCallContentSharingSession","POST","/communications/calls/{param}/contentSharingSessions","matched","New-MgCommunicationCallContentSharingSession" +"CloudCommunications","NewMgCommunicationCallOperation.g.cs","v1.0","New-MgCommunicationCallOperation","POST","/communications/calls/{param}/operations","matched","New-MgCommunicationCallOperation" +"CloudCommunications","NewMgCommunicationCallParticipant.g.cs","v1.0","New-MgCommunicationCallParticipant","POST","/communications/calls/{param}/participants","matched","New-MgCommunicationCallParticipant" +"CloudCommunications","NewMgCommunicationCallRecord.g.cs","v1.0","New-MgCommunicationCallRecord","POST","/communications/callRecords","no-oracle","" +"CloudCommunications","NewMgCommunicationCallRecordParticipantV2.g.cs","v1.0","New-MgCommunicationCallRecordParticipantV2","POST","","cast","" +"CloudCommunications","NewMgCommunicationCallRecordSession.g.cs","v1.0","New-MgCommunicationCallRecordSession","POST","/communications/callRecords/{param}/sessions","matched","New-MgCommunicationCallRecordSession" +"CloudCommunications","NewMgCommunicationCallRecordSessionSegment.g.cs","v1.0","New-MgCommunicationCallRecordSessionSegment","POST","/communications/callRecords/{param}/sessions/{param}/segments","no-oracle","" +"CloudCommunications","NewMgCommunicationOnlineMeeting.g.cs","v1.0","New-MgCommunicationOnlineMeeting","POST","/communications/onlineMeetings","matched","New-MgCommunicationOnlineMeeting" +"CloudCommunications","NewMgCommunicationOnlineMeetingAttendanceReport.g.cs","v1.0","New-MgCommunicationOnlineMeetingAttendanceReport","POST","/communications/onlineMeetings/{param}/attendanceReports","matched","New-MgCommunicationOnlineMeetingAttendanceReport" +"CloudCommunications","NewMgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.g.cs","v1.0","New-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord","POST","/communications/onlineMeetings/{param}/attendanceReports/{param}/attendanceRecords","matched","New-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord" +"CloudCommunications","NewMgCommunicationOnlineMeetingConversation.g.cs","v1.0","New-MgCommunicationOnlineMeetingConversation","POST","/communications/onlineMeetingConversations","matched","New-MgCommunicationOnlineMeetingConversation" +"CloudCommunications","NewMgCommunicationOnlineMeetingConversationMessage.g.cs","v1.0","New-MgCommunicationOnlineMeetingConversationMessage","POST","/communications/onlineMeetingConversations/{param}/messages","matched","New-MgCommunicationOnlineMeetingConversationMessage" +"CloudCommunications","NewMgCommunicationOnlineMeetingConversationMessageReaction.g.cs","v1.0","New-MgCommunicationOnlineMeetingConversationMessageReaction","POST","/communications/onlineMeetingConversations/{param}/messages/{param}/reactions","matched","New-MgCommunicationOnlineMeetingConversationMessageReaction" +"CloudCommunications","NewMgCommunicationOnlineMeetingConversationMessageReply.g.cs","v1.0","New-MgCommunicationOnlineMeetingConversationMessageReply","POST","/communications/onlineMeetingConversations/{param}/messages/{param}/replies","matched","New-MgCommunicationOnlineMeetingConversationMessageReply" +"CloudCommunications","NewMgCommunicationOnlineMeetingConversationMessageReplyReaction.g.cs","v1.0","New-MgCommunicationOnlineMeetingConversationMessageReplyReaction","POST","/communications/onlineMeetingConversations/{param}/messages/{param}/replies/{param}/reactions","matched","New-MgCommunicationOnlineMeetingConversationMessageReplyReaction" +"CloudCommunications","NewMgCommunicationOnlineMeetingConversationStarterReaction.g.cs","v1.0","New-MgCommunicationOnlineMeetingConversationStarterReaction","POST","/communications/onlineMeetingConversations/{param}/starter/reactions","matched","New-MgCommunicationOnlineMeetingConversationStarterReaction" +"CloudCommunications","NewMgCommunicationOnlineMeetingConversationStarterReply.g.cs","v1.0","New-MgCommunicationOnlineMeetingConversationStarterReply","POST","/communications/onlineMeetingConversations/{param}/starter/replies","matched","New-MgCommunicationOnlineMeetingConversationStarterReply" +"CloudCommunications","NewMgCommunicationOnlineMeetingConversationStarterReplyReaction.g.cs","v1.0","New-MgCommunicationOnlineMeetingConversationStarterReplyReaction","POST","/communications/onlineMeetingConversations/{param}/starter/replies/{param}/reactions","matched","New-MgCommunicationOnlineMeetingConversationStarterReplyReaction" +"CloudCommunications","NewMgCommunicationOnlineMeetingRecording.g.cs","v1.0","New-MgCommunicationOnlineMeetingRecording","POST","/communications/onlineMeetings/{param}/recordings","matched","New-MgCommunicationOnlineMeetingRecording" +"CloudCommunications","NewMgCommunicationOnlineMeetingTranscript.g.cs","v1.0","New-MgCommunicationOnlineMeetingTranscript","POST","/communications/onlineMeetings/{param}/transcripts","matched","New-MgCommunicationOnlineMeetingTranscript" +"CloudCommunications","NewMgCommunicationPresence.g.cs","v1.0","New-MgCommunicationPresence","POST","/communications/presences","matched","New-MgCommunicationPresence" +"CloudCommunications","NewMgUserOnlineMeeting.g.cs","v1.0","New-MgUserOnlineMeeting","POST","/users/{param}/onlineMeetings","matched","New-MgUserOnlineMeeting" +"CloudCommunications","NewMgUserOnlineMeetingAttendanceReport.g.cs","v1.0","New-MgUserOnlineMeetingAttendanceReport","POST","/users/{param}/onlineMeetings/{param}/attendanceReports","matched","New-MgUserOnlineMeetingAttendanceReport" +"CloudCommunications","NewMgUserOnlineMeetingAttendanceReportAttendanceRecord.g.cs","v1.0","New-MgUserOnlineMeetingAttendanceReportAttendanceRecord","POST","/users/{param}/onlineMeetings/{param}/attendanceReports/{param}/attendanceRecords","matched","New-MgUserOnlineMeetingAttendanceReportAttendanceRecord" +"CloudCommunications","NewMgUserOnlineMeetingRecording.g.cs","v1.0","New-MgUserOnlineMeetingRecording","POST","/users/{param}/onlineMeetings/{param}/recordings","matched","New-MgUserOnlineMeetingRecording" +"CloudCommunications","NewMgUserOnlineMeetingTranscript.g.cs","v1.0","New-MgUserOnlineMeetingTranscript","POST","/users/{param}/onlineMeetings/{param}/transcripts","matched","New-MgUserOnlineMeetingTranscript" +"CloudCommunications","RemoveMgCommunicationAdhocCall.g.cs","v1.0","Remove-MgCommunicationAdhocCall","DELETE","/communications/adhocCalls/{param}","matched","Remove-MgCommunicationAdhocCall" +"CloudCommunications","RemoveMgCommunicationAdhocCallRecording.g.cs","v1.0","Remove-MgCommunicationAdhocCallRecording","DELETE","/communications/adhocCalls/{param}/recordings/{param}","matched","Remove-MgCommunicationAdhocCallRecording" +"CloudCommunications","RemoveMgCommunicationAdhocCallRecordingContent.g.cs","v1.0","Remove-MgCommunicationAdhocCallRecordingContent","DELETE","/communications/adhocCalls/{param}/recordings/{param}/$value","matched","Remove-MgCommunicationAdhocCallRecordingContent" +"CloudCommunications","RemoveMgCommunicationAdhocCallTranscript.g.cs","v1.0","Remove-MgCommunicationAdhocCallTranscript","DELETE","/communications/adhocCalls/{param}/transcripts/{param}","matched","Remove-MgCommunicationAdhocCallTranscript" +"CloudCommunications","RemoveMgCommunicationAdhocCallTranscriptContent.g.cs","v1.0","Remove-MgCommunicationAdhocCallTranscriptContent","DELETE","/communications/adhocCalls/{param}/transcripts/{param}/$value","matched","Remove-MgCommunicationAdhocCallTranscriptContent" +"CloudCommunications","RemoveMgCommunicationAdhocCallTranscriptMetadataContent.g.cs","v1.0","Remove-MgCommunicationAdhocCallTranscriptMetadataContent","DELETE","/communications/adhocCalls/{param}/transcripts/{param}/metadataContent","matched","Remove-MgCommunicationAdhocCallTranscriptMetadataContent" +"CloudCommunications","RemoveMgCommunicationCall.g.cs","v1.0","Remove-MgCommunicationCall","DELETE","/communications/calls/{param}","matched","Remove-MgCommunicationCall" +"CloudCommunications","RemoveMgCommunicationCallAudioRoutingGroup.g.cs","v1.0","Remove-MgCommunicationCallAudioRoutingGroup","DELETE","/communications/calls/{param}/audioRoutingGroups/{param}","matched","Remove-MgCommunicationCallAudioRoutingGroup" +"CloudCommunications","RemoveMgCommunicationCallContentSharingSession.g.cs","v1.0","Remove-MgCommunicationCallContentSharingSession","DELETE","/communications/calls/{param}/contentSharingSessions/{param}","matched","Remove-MgCommunicationCallContentSharingSession" +"CloudCommunications","RemoveMgCommunicationCallOperation.g.cs","v1.0","Remove-MgCommunicationCallOperation","DELETE","/communications/calls/{param}/operations/{param}","matched","Remove-MgCommunicationCallOperation" +"CloudCommunications","RemoveMgCommunicationCallParticipant.g.cs","v1.0","Remove-MgCommunicationCallParticipant","DELETE","/communications/calls/{param}/participants/{param}","matched","Remove-MgCommunicationCallParticipant" +"CloudCommunications","RemoveMgCommunicationCallRecord.g.cs","v1.0","Remove-MgCommunicationCallRecord","DELETE","/communications/callRecords/{param}","no-oracle","" +"CloudCommunications","RemoveMgCommunicationCallRecordOrganizerV2.g.cs","v1.0","Remove-MgCommunicationCallRecordOrganizerV2","DELETE","","cast","" +"CloudCommunications","RemoveMgCommunicationCallRecordParticipantV2.g.cs","v1.0","Remove-MgCommunicationCallRecordParticipantV2","DELETE","","cast","" +"CloudCommunications","RemoveMgCommunicationCallRecordSession.g.cs","v1.0","Remove-MgCommunicationCallRecordSession","DELETE","/communications/callRecords/{param}/sessions/{param}","matched","Remove-MgCommunicationCallRecordSession" +"CloudCommunications","RemoveMgCommunicationCallRecordSessionSegment.g.cs","v1.0","Remove-MgCommunicationCallRecordSessionSegment","DELETE","/communications/callRecords/{param}/sessions/{param}/segments/{param}","no-oracle","" +"CloudCommunications","RemoveMgCommunicationOnlineMeeting.g.cs","v1.0","Remove-MgCommunicationOnlineMeeting","DELETE","/communications/onlineMeetings/{param}","matched","Remove-MgCommunicationOnlineMeeting" +"CloudCommunications","RemoveMgCommunicationOnlineMeetingAttendanceReport.g.cs","v1.0","Remove-MgCommunicationOnlineMeetingAttendanceReport","DELETE","/communications/onlineMeetings/{param}/attendanceReports/{param}","matched","Remove-MgCommunicationOnlineMeetingAttendanceReport" +"CloudCommunications","RemoveMgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.g.cs","v1.0","Remove-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord","DELETE","/communications/onlineMeetings/{param}/attendanceReports/{param}/attendanceRecords/{param}","matched","Remove-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord" +"CloudCommunications","RemoveMgCommunicationOnlineMeetingAttendeeReport.g.cs","v1.0","Remove-MgCommunicationOnlineMeetingAttendeeReport","DELETE","/communications/onlineMeetings/{param}/attendeeReport","matched","Remove-MgCommunicationOnlineMeetingAttendeeReport" +"CloudCommunications","RemoveMgCommunicationOnlineMeetingConversation.g.cs","v1.0","Remove-MgCommunicationOnlineMeetingConversation","DELETE","/communications/onlineMeetingConversations/{param}","matched","Remove-MgCommunicationOnlineMeetingConversation" +"CloudCommunications","RemoveMgCommunicationOnlineMeetingConversationMessage.g.cs","v1.0","Remove-MgCommunicationOnlineMeetingConversationMessage","DELETE","/communications/onlineMeetingConversations/{param}/messages/{param}","matched","Remove-MgCommunicationOnlineMeetingConversationMessage" +"CloudCommunications","RemoveMgCommunicationOnlineMeetingConversationMessageReaction.g.cs","v1.0","Remove-MgCommunicationOnlineMeetingConversationMessageReaction","DELETE","/communications/onlineMeetingConversations/{param}/messages/{param}/reactions/{param}","matched","Remove-MgCommunicationOnlineMeetingConversationMessageReaction" +"CloudCommunications","RemoveMgCommunicationOnlineMeetingConversationMessageReply.g.cs","v1.0","Remove-MgCommunicationOnlineMeetingConversationMessageReply","DELETE","/communications/onlineMeetingConversations/{param}/messages/{param}/replies/{param}","matched","Remove-MgCommunicationOnlineMeetingConversationMessageReply" +"CloudCommunications","RemoveMgCommunicationOnlineMeetingConversationMessageReplyReaction.g.cs","v1.0","Remove-MgCommunicationOnlineMeetingConversationMessageReplyReaction","DELETE","/communications/onlineMeetingConversations/{param}/messages/{param}/replies/{param}/reactions/{param}","matched","Remove-MgCommunicationOnlineMeetingConversationMessageReplyReaction" +"CloudCommunications","RemoveMgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport.g.cs","v1.0","Remove-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport","DELETE","/communications/onlineMeetingConversations/{param}/onlineMeeting/attendeeReport","matched","Remove-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport" +"CloudCommunications","RemoveMgCommunicationOnlineMeetingConversationStarter.g.cs","v1.0","Remove-MgCommunicationOnlineMeetingConversationStarter","DELETE","/communications/onlineMeetingConversations/{param}/starter","matched","Remove-MgCommunicationOnlineMeetingConversationStarter" +"CloudCommunications","RemoveMgCommunicationOnlineMeetingConversationStarterReaction.g.cs","v1.0","Remove-MgCommunicationOnlineMeetingConversationStarterReaction","DELETE","/communications/onlineMeetingConversations/{param}/starter/reactions/{param}","matched","Remove-MgCommunicationOnlineMeetingConversationStarterReaction" +"CloudCommunications","RemoveMgCommunicationOnlineMeetingConversationStarterReply.g.cs","v1.0","Remove-MgCommunicationOnlineMeetingConversationStarterReply","DELETE","/communications/onlineMeetingConversations/{param}/starter/replies/{param}","matched","Remove-MgCommunicationOnlineMeetingConversationStarterReply" +"CloudCommunications","RemoveMgCommunicationOnlineMeetingConversationStarterReplyReaction.g.cs","v1.0","Remove-MgCommunicationOnlineMeetingConversationStarterReplyReaction","DELETE","/communications/onlineMeetingConversations/{param}/starter/replies/{param}/reactions/{param}","matched","Remove-MgCommunicationOnlineMeetingConversationStarterReplyReaction" +"CloudCommunications","RemoveMgCommunicationOnlineMeetingRecording.g.cs","v1.0","Remove-MgCommunicationOnlineMeetingRecording","DELETE","/communications/onlineMeetings/{param}/recordings/{param}","matched","Remove-MgCommunicationOnlineMeetingRecording" +"CloudCommunications","RemoveMgCommunicationOnlineMeetingRecordingContent.g.cs","v1.0","Remove-MgCommunicationOnlineMeetingRecordingContent","DELETE","/communications/onlineMeetings/{param}/recordings/{param}/$value","matched","Remove-MgCommunicationOnlineMeetingRecordingContent" +"CloudCommunications","RemoveMgCommunicationOnlineMeetingTranscript.g.cs","v1.0","Remove-MgCommunicationOnlineMeetingTranscript","DELETE","/communications/onlineMeetings/{param}/transcripts/{param}","matched","Remove-MgCommunicationOnlineMeetingTranscript" +"CloudCommunications","RemoveMgCommunicationOnlineMeetingTranscriptContent.g.cs","v1.0","Remove-MgCommunicationOnlineMeetingTranscriptContent","DELETE","/communications/onlineMeetings/{param}/transcripts/{param}/$value","matched","Remove-MgCommunicationOnlineMeetingTranscriptContent" +"CloudCommunications","RemoveMgCommunicationOnlineMeetingTranscriptMetadataContent.g.cs","v1.0","Remove-MgCommunicationOnlineMeetingTranscriptMetadataContent","DELETE","/communications/onlineMeetings/{param}/transcripts/{param}/metadataContent","matched","Remove-MgCommunicationOnlineMeetingTranscriptMetadataContent" +"CloudCommunications","RemoveMgCommunicationPresence.g.cs","v1.0","Remove-MgCommunicationPresence","DELETE","/communications/presences/{param}","matched","Remove-MgCommunicationPresence" +"CloudCommunications","RemoveMgUserOnlineMeeting.g.cs","v1.0","Remove-MgUserOnlineMeeting","DELETE","/users/{param}/onlineMeetings/{param}","matched","Remove-MgUserOnlineMeeting" +"CloudCommunications","RemoveMgUserOnlineMeetingAttendanceReport.g.cs","v1.0","Remove-MgUserOnlineMeetingAttendanceReport","DELETE","/users/{param}/onlineMeetings/{param}/attendanceReports/{param}","matched","Remove-MgUserOnlineMeetingAttendanceReport" +"CloudCommunications","RemoveMgUserOnlineMeetingAttendanceReportAttendanceRecord.g.cs","v1.0","Remove-MgUserOnlineMeetingAttendanceReportAttendanceRecord","DELETE","/users/{param}/onlineMeetings/{param}/attendanceReports/{param}/attendanceRecords/{param}","matched","Remove-MgUserOnlineMeetingAttendanceReportAttendanceRecord" +"CloudCommunications","RemoveMgUserOnlineMeetingAttendeeReport.g.cs","v1.0","Remove-MgUserOnlineMeetingAttendeeReport","DELETE","/users/{param}/onlineMeetings/{param}/attendeeReport","matched","Remove-MgUserOnlineMeetingAttendeeReport" +"CloudCommunications","RemoveMgUserOnlineMeetingRecording.g.cs","v1.0","Remove-MgUserOnlineMeetingRecording","DELETE","/users/{param}/onlineMeetings/{param}/recordings/{param}","matched","Remove-MgUserOnlineMeetingRecording" +"CloudCommunications","RemoveMgUserOnlineMeetingRecordingContent.g.cs","v1.0","Remove-MgUserOnlineMeetingRecordingContent","DELETE","/users/{param}/onlineMeetings/{param}/recordings/{param}/$value","matched","Remove-MgUserOnlineMeetingRecordingContent" +"CloudCommunications","RemoveMgUserOnlineMeetingTranscript.g.cs","v1.0","Remove-MgUserOnlineMeetingTranscript","DELETE","/users/{param}/onlineMeetings/{param}/transcripts/{param}","matched","Remove-MgUserOnlineMeetingTranscript" +"CloudCommunications","RemoveMgUserOnlineMeetingTranscriptContent.g.cs","v1.0","Remove-MgUserOnlineMeetingTranscriptContent","DELETE","/users/{param}/onlineMeetings/{param}/transcripts/{param}/$value","matched","Remove-MgUserOnlineMeetingTranscriptContent" +"CloudCommunications","RemoveMgUserOnlineMeetingTranscriptMetadataContent.g.cs","v1.0","Remove-MgUserOnlineMeetingTranscriptMetadataContent","DELETE","/users/{param}/onlineMeetings/{param}/transcripts/{param}/metadataContent","matched","Remove-MgUserOnlineMeetingTranscriptMetadataContent" +"CloudCommunications","RemoveMgUserPresence.g.cs","v1.0","Remove-MgUserPresence","DELETE","/users/{param}/presence","matched","Remove-MgUserPresence" +"CloudCommunications","SetMgCommunicationAdhocCallRecordingContent.g.cs","v1.0","Set-MgCommunicationAdhocCallRecordingContent","PUT","/communications/adhocCalls/{param}/recordings/{param}/$value","matched","Set-MgCommunicationAdhocCallRecordingContent" +"CloudCommunications","SetMgCommunicationAdhocCallTranscriptContent.g.cs","v1.0","Set-MgCommunicationAdhocCallTranscriptContent","PUT","/communications/adhocCalls/{param}/transcripts/{param}/$value","matched","Set-MgCommunicationAdhocCallTranscriptContent" +"CloudCommunications","SetMgCommunicationOnlineMeetingRecordingContent.g.cs","v1.0","Set-MgCommunicationOnlineMeetingRecordingContent","PUT","/communications/onlineMeetings/{param}/recordings/{param}/$value","matched","Set-MgCommunicationOnlineMeetingRecordingContent" +"CloudCommunications","SetMgCommunicationOnlineMeetingTranscriptContent.g.cs","v1.0","Set-MgCommunicationOnlineMeetingTranscriptContent","PUT","/communications/onlineMeetings/{param}/transcripts/{param}/$value","matched","Set-MgCommunicationOnlineMeetingTranscriptContent" +"CloudCommunications","SetMgUserOnlineMeetingRecordingContent.g.cs","v1.0","Set-MgUserOnlineMeetingRecordingContent","PUT","/users/{param}/onlineMeetings/{param}/recordings/{param}/$value","matched","Set-MgUserOnlineMeetingRecordingContent" +"CloudCommunications","SetMgUserOnlineMeetingTranscriptContent.g.cs","v1.0","Set-MgUserOnlineMeetingTranscriptContent","PUT","/users/{param}/onlineMeetings/{param}/transcripts/{param}/$value","matched","Set-MgUserOnlineMeetingTranscriptContent" +"CloudCommunications","UpdateMgCommunication.g.cs","v1.0","Update-MgCommunication","PATCH","/communications","no-oracle","" +"CloudCommunications","UpdateMgCommunicationAdhocCall.g.cs","v1.0","Update-MgCommunicationAdhocCall","PATCH","/communications/adhocCalls/{param}","matched","Update-MgCommunicationAdhocCall" +"CloudCommunications","UpdateMgCommunicationAdhocCallRecording.g.cs","v1.0","Update-MgCommunicationAdhocCallRecording","PATCH","/communications/adhocCalls/{param}/recordings/{param}","matched","Update-MgCommunicationAdhocCallRecording" +"CloudCommunications","UpdateMgCommunicationAdhocCallTranscript.g.cs","v1.0","Update-MgCommunicationAdhocCallTranscript","PATCH","/communications/adhocCalls/{param}/transcripts/{param}","matched","Update-MgCommunicationAdhocCallTranscript" +"CloudCommunications","UpdateMgCommunicationCall.g.cs","v1.0","Update-MgCommunicationCall","PATCH","/communications/calls/{param}","no-oracle","" +"CloudCommunications","UpdateMgCommunicationCallAudioRoutingGroup.g.cs","v1.0","Update-MgCommunicationCallAudioRoutingGroup","PATCH","/communications/calls/{param}/audioRoutingGroups/{param}","matched","Update-MgCommunicationCallAudioRoutingGroup" +"CloudCommunications","UpdateMgCommunicationCallContentSharingSession.g.cs","v1.0","Update-MgCommunicationCallContentSharingSession","PATCH","/communications/calls/{param}/contentSharingSessions/{param}","matched","Update-MgCommunicationCallContentSharingSession" +"CloudCommunications","UpdateMgCommunicationCallOperation.g.cs","v1.0","Update-MgCommunicationCallOperation","PATCH","/communications/calls/{param}/operations/{param}","matched","Update-MgCommunicationCallOperation" +"CloudCommunications","UpdateMgCommunicationCallParticipant.g.cs","v1.0","Update-MgCommunicationCallParticipant","PATCH","/communications/calls/{param}/participants/{param}","matched","Update-MgCommunicationCallParticipant" +"CloudCommunications","UpdateMgCommunicationCallRecord.g.cs","v1.0","Update-MgCommunicationCallRecord","PATCH","/communications/callRecords/{param}","no-oracle","" +"CloudCommunications","UpdateMgCommunicationCallRecordOrganizerV2.g.cs","v1.0","Update-MgCommunicationCallRecordOrganizerV2","PATCH","","cast","" +"CloudCommunications","UpdateMgCommunicationCallRecordParticipantV2.g.cs","v1.0","Update-MgCommunicationCallRecordParticipantV2","PATCH","","cast","" +"CloudCommunications","UpdateMgCommunicationCallRecordSession.g.cs","v1.0","Update-MgCommunicationCallRecordSession","PATCH","/communications/callRecords/{param}/sessions/{param}","matched","Update-MgCommunicationCallRecordSession" +"CloudCommunications","UpdateMgCommunicationCallRecordSessionSegment.g.cs","v1.0","Update-MgCommunicationCallRecordSessionSegment","PATCH","/communications/callRecords/{param}/sessions/{param}/segments/{param}","no-oracle","" +"CloudCommunications","UpdateMgCommunicationOnlineMeeting.g.cs","v1.0","Update-MgCommunicationOnlineMeeting","PATCH","/communications/onlineMeetings/{param}","matched","Update-MgCommunicationOnlineMeeting" +"CloudCommunications","UpdateMgCommunicationOnlineMeetingAttendanceReport.g.cs","v1.0","Update-MgCommunicationOnlineMeetingAttendanceReport","PATCH","/communications/onlineMeetings/{param}/attendanceReports/{param}","matched","Update-MgCommunicationOnlineMeetingAttendanceReport" +"CloudCommunications","UpdateMgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.g.cs","v1.0","Update-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord","PATCH","/communications/onlineMeetings/{param}/attendanceReports/{param}/attendanceRecords/{param}","matched","Update-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord" +"CloudCommunications","UpdateMgCommunicationOnlineMeetingConversation.g.cs","v1.0","Update-MgCommunicationOnlineMeetingConversation","PATCH","/communications/onlineMeetingConversations/{param}","matched","Update-MgCommunicationOnlineMeetingConversation" +"CloudCommunications","UpdateMgCommunicationOnlineMeetingConversationMessage.g.cs","v1.0","Update-MgCommunicationOnlineMeetingConversationMessage","PATCH","/communications/onlineMeetingConversations/{param}/messages/{param}","matched","Update-MgCommunicationOnlineMeetingConversationMessage" +"CloudCommunications","UpdateMgCommunicationOnlineMeetingConversationMessageReaction.g.cs","v1.0","Update-MgCommunicationOnlineMeetingConversationMessageReaction","PATCH","/communications/onlineMeetingConversations/{param}/messages/{param}/reactions/{param}","matched","Update-MgCommunicationOnlineMeetingConversationMessageReaction" +"CloudCommunications","UpdateMgCommunicationOnlineMeetingConversationMessageReply.g.cs","v1.0","Update-MgCommunicationOnlineMeetingConversationMessageReply","PATCH","/communications/onlineMeetingConversations/{param}/messages/{param}/replies/{param}","matched","Update-MgCommunicationOnlineMeetingConversationMessageReply" +"CloudCommunications","UpdateMgCommunicationOnlineMeetingConversationMessageReplyReaction.g.cs","v1.0","Update-MgCommunicationOnlineMeetingConversationMessageReplyReaction","PATCH","/communications/onlineMeetingConversations/{param}/messages/{param}/replies/{param}/reactions/{param}","matched","Update-MgCommunicationOnlineMeetingConversationMessageReplyReaction" +"CloudCommunications","UpdateMgCommunicationOnlineMeetingConversationStarter.g.cs","v1.0","Update-MgCommunicationOnlineMeetingConversationStarter","PATCH","/communications/onlineMeetingConversations/{param}/starter","matched","Update-MgCommunicationOnlineMeetingConversationStarter" +"CloudCommunications","UpdateMgCommunicationOnlineMeetingConversationStarterReaction.g.cs","v1.0","Update-MgCommunicationOnlineMeetingConversationStarterReaction","PATCH","/communications/onlineMeetingConversations/{param}/starter/reactions/{param}","matched","Update-MgCommunicationOnlineMeetingConversationStarterReaction" +"CloudCommunications","UpdateMgCommunicationOnlineMeetingConversationStarterReply.g.cs","v1.0","Update-MgCommunicationOnlineMeetingConversationStarterReply","PATCH","/communications/onlineMeetingConversations/{param}/starter/replies/{param}","matched","Update-MgCommunicationOnlineMeetingConversationStarterReply" +"CloudCommunications","UpdateMgCommunicationOnlineMeetingConversationStarterReplyReaction.g.cs","v1.0","Update-MgCommunicationOnlineMeetingConversationStarterReplyReaction","PATCH","/communications/onlineMeetingConversations/{param}/starter/replies/{param}/reactions/{param}","matched","Update-MgCommunicationOnlineMeetingConversationStarterReplyReaction" +"CloudCommunications","UpdateMgCommunicationOnlineMeetingRecording.g.cs","v1.0","Update-MgCommunicationOnlineMeetingRecording","PATCH","/communications/onlineMeetings/{param}/recordings/{param}","matched","Update-MgCommunicationOnlineMeetingRecording" +"CloudCommunications","UpdateMgCommunicationOnlineMeetingTranscript.g.cs","v1.0","Update-MgCommunicationOnlineMeetingTranscript","PATCH","/communications/onlineMeetings/{param}/transcripts/{param}","matched","Update-MgCommunicationOnlineMeetingTranscript" +"CloudCommunications","UpdateMgCommunicationPresence.g.cs","v1.0","Update-MgCommunicationPresence","PATCH","/communications/presences/{param}","matched","Update-MgCommunicationPresence" +"CloudCommunications","UpdateMgUserOnlineMeeting.g.cs","v1.0","Update-MgUserOnlineMeeting","PATCH","/users/{param}/onlineMeetings/{param}","matched","Update-MgUserOnlineMeeting" +"CloudCommunications","UpdateMgUserOnlineMeetingAttendanceReport.g.cs","v1.0","Update-MgUserOnlineMeetingAttendanceReport","PATCH","/users/{param}/onlineMeetings/{param}/attendanceReports/{param}","matched","Update-MgUserOnlineMeetingAttendanceReport" +"CloudCommunications","UpdateMgUserOnlineMeetingAttendanceReportAttendanceRecord.g.cs","v1.0","Update-MgUserOnlineMeetingAttendanceReportAttendanceRecord","PATCH","/users/{param}/onlineMeetings/{param}/attendanceReports/{param}/attendanceRecords/{param}","matched","Update-MgUserOnlineMeetingAttendanceReportAttendanceRecord" +"CloudCommunications","UpdateMgUserOnlineMeetingRecording.g.cs","v1.0","Update-MgUserOnlineMeetingRecording","PATCH","/users/{param}/onlineMeetings/{param}/recordings/{param}","matched","Update-MgUserOnlineMeetingRecording" +"CloudCommunications","UpdateMgUserOnlineMeetingTranscript.g.cs","v1.0","Update-MgUserOnlineMeetingTranscript","PATCH","/users/{param}/onlineMeetings/{param}/transcripts/{param}","matched","Update-MgUserOnlineMeetingTranscript" +"CloudCommunications","UpdateMgUserPresence.g.cs","v1.0","Update-MgUserPresence","PATCH","/users/{param}/presence","matched","Update-MgUserPresence" +"Compliance","GetMgCompliance.g.cs","v1.0","Get-MgCompliance","GET","/compliance","matched","Get-MgCompliance" +"Compliance","GetMgPrivacySubjectRightsRequest_Get.g.cs","v1.0","Get-MgPrivacySubjectRightsRequest","GET","/privacy/subjectRightsRequests/{param}","matched","Get-MgPrivacySubjectRightsRequest" +"Compliance","GetMgPrivacySubjectRightsRequest_List.g.cs","v1.0","Get-MgPrivacySubjectRightsRequest","GET","/privacy/subjectRightsRequests","matched","Get-MgPrivacySubjectRightsRequest" +"Compliance","GetMgPrivacySubjectRightsRequest.g.cs","v1.0","Get-MgPrivacySubjectRightsRequest","","","dispatcher","" +"Compliance","GetMgPrivacySubjectRightsRequestApprover_Get.g.cs","v1.0","Get-MgPrivacySubjectRightsRequestApprover","GET","/privacy/subjectRightsRequests/{param}/approvers/{param}","matched","Get-MgPrivacySubjectRightsRequestApprover" +"Compliance","GetMgPrivacySubjectRightsRequestApprover_List.g.cs","v1.0","Get-MgPrivacySubjectRightsRequestApprover","GET","/privacy/subjectRightsRequests/{param}/approvers","matched","Get-MgPrivacySubjectRightsRequestApprover" +"Compliance","GetMgPrivacySubjectRightsRequestApprover.g.cs","v1.0","Get-MgPrivacySubjectRightsRequestApprover","","","dispatcher","" +"Compliance","GetMgPrivacySubjectRightsRequestApproverCount.g.cs","v1.0","Get-MgPrivacySubjectRightsRequestApproverCount","GET","/privacy/subjectRightsRequests/{param}/approvers/$count","matched","Get-MgPrivacySubjectRightsRequestApproverCount" +"Compliance","GetMgPrivacySubjectRightsRequestApproverMailboxSetting.g.cs","v1.0","Get-MgPrivacySubjectRightsRequestApproverMailboxSetting","GET","/privacy/subjectRightsRequests/{param}/approvers/{param}/mailboxSettings","matched","Get-MgPrivacySubjectRightsRequestApproverMailboxSetting" +"Compliance","GetMgPrivacySubjectRightsRequestApproverServiceProvisioningError.g.cs","v1.0","Get-MgPrivacySubjectRightsRequestApproverServiceProvisioningError","GET","/privacy/subjectRightsRequests/{param}/approvers/{param}/serviceProvisioningErrors","matched","Get-MgPrivacySubjectRightsRequestApproverServiceProvisioningError" +"Compliance","GetMgPrivacySubjectRightsRequestApproverServiceProvisioningErrorCount.g.cs","v1.0","Get-MgPrivacySubjectRightsRequestApproverServiceProvisioningErrorCount","GET","/privacy/subjectRightsRequests/{param}/approvers/{param}/serviceProvisioningErrors/$count","matched","Get-MgPrivacySubjectRightsRequestApproverServiceProvisioningErrorCount" +"Compliance","GetMgPrivacySubjectRightsRequestCollaborator_Get.g.cs","v1.0","Get-MgPrivacySubjectRightsRequestCollaborator","GET","/privacy/subjectRightsRequests/{param}/collaborators/{param}","matched","Get-MgPrivacySubjectRightsRequestCollaborator" +"Compliance","GetMgPrivacySubjectRightsRequestCollaborator_List.g.cs","v1.0","Get-MgPrivacySubjectRightsRequestCollaborator","GET","/privacy/subjectRightsRequests/{param}/collaborators","matched","Get-MgPrivacySubjectRightsRequestCollaborator" +"Compliance","GetMgPrivacySubjectRightsRequestCollaborator.g.cs","v1.0","Get-MgPrivacySubjectRightsRequestCollaborator","","","dispatcher","" +"Compliance","GetMgPrivacySubjectRightsRequestCollaboratorCount.g.cs","v1.0","Get-MgPrivacySubjectRightsRequestCollaboratorCount","GET","/privacy/subjectRightsRequests/{param}/collaborators/$count","matched","Get-MgPrivacySubjectRightsRequestCollaboratorCount" +"Compliance","GetMgPrivacySubjectRightsRequestCollaboratorMailboxSetting.g.cs","v1.0","Get-MgPrivacySubjectRightsRequestCollaboratorMailboxSetting","GET","/privacy/subjectRightsRequests/{param}/collaborators/{param}/mailboxSettings","matched","Get-MgPrivacySubjectRightsRequestCollaboratorMailboxSetting" +"Compliance","GetMgPrivacySubjectRightsRequestCollaboratorServiceProvisioningError.g.cs","v1.0","Get-MgPrivacySubjectRightsRequestCollaboratorServiceProvisioningError","GET","/privacy/subjectRightsRequests/{param}/collaborators/{param}/serviceProvisioningErrors","matched","Get-MgPrivacySubjectRightsRequestCollaboratorServiceProvisioningError" +"Compliance","GetMgPrivacySubjectRightsRequestCollaboratorServiceProvisioningErrorCount.g.cs","v1.0","Get-MgPrivacySubjectRightsRequestCollaboratorServiceProvisioningErrorCount","GET","/privacy/subjectRightsRequests/{param}/collaborators/{param}/serviceProvisioningErrors/$count","matched","Get-MgPrivacySubjectRightsRequestCollaboratorServiceProvisioningErrorCount" +"Compliance","GetMgPrivacySubjectRightsRequestCount.g.cs","v1.0","Get-MgPrivacySubjectRightsRequestCount","GET","/privacy/subjectRightsRequests/$count","matched","Get-MgPrivacySubjectRightsRequestCount" +"Compliance","GetMgPrivacySubjectRightsRequestGetFinalAttachment.g.cs","v1.0","Get-MgPrivacySubjectRightsRequestGetFinalAttachment","GET","/privacy/subjectRightsRequests/{param}/getFinalAttachment","mismatch","Get-MgPrivacySubjectRightsRequestFinalAttachment" +"Compliance","GetMgPrivacySubjectRightsRequestGetFinalReport.g.cs","v1.0","Get-MgPrivacySubjectRightsRequestGetFinalReport","GET","/privacy/subjectRightsRequests/{param}/getFinalReport","mismatch","Get-MgPrivacySubjectRightsRequestFinalReport" +"Compliance","GetMgPrivacySubjectRightsRequestNote_Get.g.cs","v1.0","Get-MgPrivacySubjectRightsRequestNote","GET","/privacy/subjectRightsRequests/{param}/notes/{param}","matched","Get-MgPrivacySubjectRightsRequestNote" +"Compliance","GetMgPrivacySubjectRightsRequestNote_List.g.cs","v1.0","Get-MgPrivacySubjectRightsRequestNote","GET","/privacy/subjectRightsRequests/{param}/notes","matched","Get-MgPrivacySubjectRightsRequestNote" +"Compliance","GetMgPrivacySubjectRightsRequestNote.g.cs","v1.0","Get-MgPrivacySubjectRightsRequestNote","","","dispatcher","" +"Compliance","GetMgPrivacySubjectRightsRequestNoteCount.g.cs","v1.0","Get-MgPrivacySubjectRightsRequestNoteCount","GET","/privacy/subjectRightsRequests/{param}/notes/$count","matched","Get-MgPrivacySubjectRightsRequestNoteCount" +"Compliance","GetMgPrivacySubjectRightsRequestTeam.g.cs","v1.0","Get-MgPrivacySubjectRightsRequestTeam","GET","/privacy/subjectRightsRequests/{param}/team","matched","Get-MgPrivacySubjectRightsRequestTeam" +"Compliance","NewMgPrivacySubjectRightsRequest.g.cs","v1.0","New-MgPrivacySubjectRightsRequest","POST","/privacy/subjectRightsRequests","matched","New-MgPrivacySubjectRightsRequest" +"Compliance","NewMgPrivacySubjectRightsRequestNote.g.cs","v1.0","New-MgPrivacySubjectRightsRequestNote","POST","/privacy/subjectRightsRequests/{param}/notes","matched","New-MgPrivacySubjectRightsRequestNote" +"Compliance","RemoveMgPrivacySubjectRightsRequest.g.cs","v1.0","Remove-MgPrivacySubjectRightsRequest","DELETE","/privacy/subjectRightsRequests/{param}","matched","Remove-MgPrivacySubjectRightsRequest" +"Compliance","RemoveMgPrivacySubjectRightsRequestNote.g.cs","v1.0","Remove-MgPrivacySubjectRightsRequestNote","DELETE","/privacy/subjectRightsRequests/{param}/notes/{param}","matched","Remove-MgPrivacySubjectRightsRequestNote" +"Compliance","UpdateMgCompliance.g.cs","v1.0","Update-MgCompliance","PATCH","/compliance","matched","Update-MgCompliance" +"Compliance","UpdateMgPrivacySubjectRightsRequest.g.cs","v1.0","Update-MgPrivacySubjectRightsRequest","PATCH","/privacy/subjectRightsRequests/{param}","matched","Update-MgPrivacySubjectRightsRequest" +"Compliance","UpdateMgPrivacySubjectRightsRequestApproverMailboxSetting.g.cs","v1.0","Update-MgPrivacySubjectRightsRequestApproverMailboxSetting","PATCH","/privacy/subjectRightsRequests/{param}/approvers/{param}/mailboxSettings","matched","Update-MgPrivacySubjectRightsRequestApproverMailboxSetting" +"Compliance","UpdateMgPrivacySubjectRightsRequestCollaboratorMailboxSetting.g.cs","v1.0","Update-MgPrivacySubjectRightsRequestCollaboratorMailboxSetting","PATCH","/privacy/subjectRightsRequests/{param}/collaborators/{param}/mailboxSettings","matched","Update-MgPrivacySubjectRightsRequestCollaboratorMailboxSetting" +"Compliance","UpdateMgPrivacySubjectRightsRequestNote.g.cs","v1.0","Update-MgPrivacySubjectRightsRequestNote","PATCH","/privacy/subjectRightsRequests/{param}/notes/{param}","matched","Update-MgPrivacySubjectRightsRequestNote" +"ConfigurationManagement","GetMgAdminConfigurationManagement.g.cs","v1.0","Get-MgAdminConfigurationManagement","GET","/admin/configurationManagement","matched","Get-MgAdminConfigurationManagement" +"ConfigurationManagement","GetMgAdminConfigurationManagementConfigurationDrift_Get.g.cs","v1.0","Get-MgAdminConfigurationManagementConfigurationDrift","GET","/admin/configurationManagement/configurationDrifts/{param}","matched","Get-MgAdminConfigurationManagementConfigurationDrift" +"ConfigurationManagement","GetMgAdminConfigurationManagementConfigurationDrift_List.g.cs","v1.0","Get-MgAdminConfigurationManagementConfigurationDrift","GET","/admin/configurationManagement/configurationDrifts","matched","Get-MgAdminConfigurationManagementConfigurationDrift" +"ConfigurationManagement","GetMgAdminConfigurationManagementConfigurationDrift.g.cs","v1.0","Get-MgAdminConfigurationManagementConfigurationDrift","","","dispatcher","" +"ConfigurationManagement","GetMgAdminConfigurationManagementConfigurationDriftCount.g.cs","v1.0","Get-MgAdminConfigurationManagementConfigurationDriftCount","GET","/admin/configurationManagement/configurationDrifts/$count","matched","Get-MgAdminConfigurationManagementConfigurationDriftCount" +"ConfigurationManagement","GetMgAdminConfigurationManagementConfigurationMonitor_Get.g.cs","v1.0","Get-MgAdminConfigurationManagementConfigurationMonitor","GET","/admin/configurationManagement/configurationMonitors/{param}","matched","Get-MgAdminConfigurationManagementConfigurationMonitor" +"ConfigurationManagement","GetMgAdminConfigurationManagementConfigurationMonitor_List.g.cs","v1.0","Get-MgAdminConfigurationManagementConfigurationMonitor","GET","/admin/configurationManagement/configurationMonitors","matched","Get-MgAdminConfigurationManagementConfigurationMonitor" +"ConfigurationManagement","GetMgAdminConfigurationManagementConfigurationMonitor.g.cs","v1.0","Get-MgAdminConfigurationManagementConfigurationMonitor","","","dispatcher","" +"ConfigurationManagement","GetMgAdminConfigurationManagementConfigurationMonitorBaseline.g.cs","v1.0","Get-MgAdminConfigurationManagementConfigurationMonitorBaseline","GET","/admin/configurationManagement/configurationMonitors/{param}/baseline","matched","Get-MgAdminConfigurationManagementConfigurationMonitorBaseline" +"ConfigurationManagement","GetMgAdminConfigurationManagementConfigurationMonitorCount.g.cs","v1.0","Get-MgAdminConfigurationManagementConfigurationMonitorCount","GET","/admin/configurationManagement/configurationMonitors/$count","matched","Get-MgAdminConfigurationManagementConfigurationMonitorCount" +"ConfigurationManagement","GetMgAdminConfigurationManagementConfigurationMonitoringResult_Get.g.cs","v1.0","Get-MgAdminConfigurationManagementConfigurationMonitoringResult","GET","/admin/configurationManagement/configurationMonitoringResults/{param}","matched","Get-MgAdminConfigurationManagementConfigurationMonitoringResult" +"ConfigurationManagement","GetMgAdminConfigurationManagementConfigurationMonitoringResult_List.g.cs","v1.0","Get-MgAdminConfigurationManagementConfigurationMonitoringResult","GET","/admin/configurationManagement/configurationMonitoringResults","matched","Get-MgAdminConfigurationManagementConfigurationMonitoringResult" +"ConfigurationManagement","GetMgAdminConfigurationManagementConfigurationMonitoringResult.g.cs","v1.0","Get-MgAdminConfigurationManagementConfigurationMonitoringResult","","","dispatcher","" +"ConfigurationManagement","GetMgAdminConfigurationManagementConfigurationMonitoringResultCount.g.cs","v1.0","Get-MgAdminConfigurationManagementConfigurationMonitoringResultCount","GET","/admin/configurationManagement/configurationMonitoringResults/$count","matched","Get-MgAdminConfigurationManagementConfigurationMonitoringResultCount" +"ConfigurationManagement","GetMgAdminConfigurationManagementConfigurationSnapshot_Get.g.cs","v1.0","Get-MgAdminConfigurationManagementConfigurationSnapshot","GET","/admin/configurationManagement/configurationSnapshots/{param}","matched","Get-MgAdminConfigurationManagementConfigurationSnapshot" +"ConfigurationManagement","GetMgAdminConfigurationManagementConfigurationSnapshot_List.g.cs","v1.0","Get-MgAdminConfigurationManagementConfigurationSnapshot","GET","/admin/configurationManagement/configurationSnapshots","matched","Get-MgAdminConfigurationManagementConfigurationSnapshot" +"ConfigurationManagement","GetMgAdminConfigurationManagementConfigurationSnapshot.g.cs","v1.0","Get-MgAdminConfigurationManagementConfigurationSnapshot","","","dispatcher","" +"ConfigurationManagement","GetMgAdminConfigurationManagementConfigurationSnapshotCount.g.cs","v1.0","Get-MgAdminConfigurationManagementConfigurationSnapshotCount","GET","/admin/configurationManagement/configurationSnapshots/$count","matched","Get-MgAdminConfigurationManagementConfigurationSnapshotCount" +"ConfigurationManagement","GetMgAdminConfigurationManagementConfigurationSnapshotJob_Get.g.cs","v1.0","Get-MgAdminConfigurationManagementConfigurationSnapshotJob","GET","/admin/configurationManagement/configurationSnapshotJobs/{param}","matched","Get-MgAdminConfigurationManagementConfigurationSnapshotJob" +"ConfigurationManagement","GetMgAdminConfigurationManagementConfigurationSnapshotJob_List.g.cs","v1.0","Get-MgAdminConfigurationManagementConfigurationSnapshotJob","GET","/admin/configurationManagement/configurationSnapshotJobs","matched","Get-MgAdminConfigurationManagementConfigurationSnapshotJob" +"ConfigurationManagement","GetMgAdminConfigurationManagementConfigurationSnapshotJob.g.cs","v1.0","Get-MgAdminConfigurationManagementConfigurationSnapshotJob","","","dispatcher","" +"ConfigurationManagement","GetMgAdminConfigurationManagementConfigurationSnapshotJobCount.g.cs","v1.0","Get-MgAdminConfigurationManagementConfigurationSnapshotJobCount","GET","/admin/configurationManagement/configurationSnapshotJobs/$count","matched","Get-MgAdminConfigurationManagementConfigurationSnapshotJobCount" +"ConfigurationManagement","NewMgAdminConfigurationManagementConfigurationDrift.g.cs","v1.0","New-MgAdminConfigurationManagementConfigurationDrift","POST","/admin/configurationManagement/configurationDrifts","matched","New-MgAdminConfigurationManagementConfigurationDrift" +"ConfigurationManagement","NewMgAdminConfigurationManagementConfigurationMonitor.g.cs","v1.0","New-MgAdminConfigurationManagementConfigurationMonitor","POST","/admin/configurationManagement/configurationMonitors","matched","New-MgAdminConfigurationManagementConfigurationMonitor" +"ConfigurationManagement","NewMgAdminConfigurationManagementConfigurationMonitoringResult.g.cs","v1.0","New-MgAdminConfigurationManagementConfigurationMonitoringResult","POST","/admin/configurationManagement/configurationMonitoringResults","matched","New-MgAdminConfigurationManagementConfigurationMonitoringResult" +"ConfigurationManagement","NewMgAdminConfigurationManagementConfigurationSnapshot.g.cs","v1.0","New-MgAdminConfigurationManagementConfigurationSnapshot","POST","/admin/configurationManagement/configurationSnapshots","matched","New-MgAdminConfigurationManagementConfigurationSnapshot" +"ConfigurationManagement","NewMgAdminConfigurationManagementConfigurationSnapshotJob.g.cs","v1.0","New-MgAdminConfigurationManagementConfigurationSnapshotJob","POST","/admin/configurationManagement/configurationSnapshotJobs","matched","New-MgAdminConfigurationManagementConfigurationSnapshotJob" +"ConfigurationManagement","RemoveMgAdminConfigurationManagement.g.cs","v1.0","Remove-MgAdminConfigurationManagement","DELETE","/admin/configurationManagement","matched","Remove-MgAdminConfigurationManagement" +"ConfigurationManagement","RemoveMgAdminConfigurationManagementConfigurationDrift.g.cs","v1.0","Remove-MgAdminConfigurationManagementConfigurationDrift","DELETE","/admin/configurationManagement/configurationDrifts/{param}","matched","Remove-MgAdminConfigurationManagementConfigurationDrift" +"ConfigurationManagement","RemoveMgAdminConfigurationManagementConfigurationMonitor.g.cs","v1.0","Remove-MgAdminConfigurationManagementConfigurationMonitor","DELETE","/admin/configurationManagement/configurationMonitors/{param}","matched","Remove-MgAdminConfigurationManagementConfigurationMonitor" +"ConfigurationManagement","RemoveMgAdminConfigurationManagementConfigurationMonitorBaseline.g.cs","v1.0","Remove-MgAdminConfigurationManagementConfigurationMonitorBaseline","DELETE","/admin/configurationManagement/configurationMonitors/{param}/baseline","matched","Remove-MgAdminConfigurationManagementConfigurationMonitorBaseline" +"ConfigurationManagement","RemoveMgAdminConfigurationManagementConfigurationMonitoringResult.g.cs","v1.0","Remove-MgAdminConfigurationManagementConfigurationMonitoringResult","DELETE","/admin/configurationManagement/configurationMonitoringResults/{param}","matched","Remove-MgAdminConfigurationManagementConfigurationMonitoringResult" +"ConfigurationManagement","RemoveMgAdminConfigurationManagementConfigurationSnapshot.g.cs","v1.0","Remove-MgAdminConfigurationManagementConfigurationSnapshot","DELETE","/admin/configurationManagement/configurationSnapshots/{param}","matched","Remove-MgAdminConfigurationManagementConfigurationSnapshot" +"ConfigurationManagement","RemoveMgAdminConfigurationManagementConfigurationSnapshotJob.g.cs","v1.0","Remove-MgAdminConfigurationManagementConfigurationSnapshotJob","DELETE","/admin/configurationManagement/configurationSnapshotJobs/{param}","matched","Remove-MgAdminConfigurationManagementConfigurationSnapshotJob" +"ConfigurationManagement","UpdateMgAdminConfigurationManagement.g.cs","v1.0","Update-MgAdminConfigurationManagement","PATCH","/admin/configurationManagement","matched","Update-MgAdminConfigurationManagement" +"ConfigurationManagement","UpdateMgAdminConfigurationManagementConfigurationDrift.g.cs","v1.0","Update-MgAdminConfigurationManagementConfigurationDrift","PATCH","/admin/configurationManagement/configurationDrifts/{param}","matched","Update-MgAdminConfigurationManagementConfigurationDrift" +"ConfigurationManagement","UpdateMgAdminConfigurationManagementConfigurationMonitor.g.cs","v1.0","Update-MgAdminConfigurationManagementConfigurationMonitor","PATCH","/admin/configurationManagement/configurationMonitors/{param}","matched","Update-MgAdminConfigurationManagementConfigurationMonitor" +"ConfigurationManagement","UpdateMgAdminConfigurationManagementConfigurationMonitorBaseline.g.cs","v1.0","Update-MgAdminConfigurationManagementConfigurationMonitorBaseline","PATCH","/admin/configurationManagement/configurationMonitors/{param}/baseline","matched","Update-MgAdminConfigurationManagementConfigurationMonitorBaseline" +"ConfigurationManagement","UpdateMgAdminConfigurationManagementConfigurationMonitoringResult.g.cs","v1.0","Update-MgAdminConfigurationManagementConfigurationMonitoringResult","PATCH","/admin/configurationManagement/configurationMonitoringResults/{param}","matched","Update-MgAdminConfigurationManagementConfigurationMonitoringResult" +"ConfigurationManagement","UpdateMgAdminConfigurationManagementConfigurationSnapshot.g.cs","v1.0","Update-MgAdminConfigurationManagementConfigurationSnapshot","PATCH","/admin/configurationManagement/configurationSnapshots/{param}","matched","Update-MgAdminConfigurationManagementConfigurationSnapshot" +"ConfigurationManagement","UpdateMgAdminConfigurationManagementConfigurationSnapshotJob.g.cs","v1.0","Update-MgAdminConfigurationManagementConfigurationSnapshotJob","PATCH","/admin/configurationManagement/configurationSnapshotJobs/{param}","matched","Update-MgAdminConfigurationManagementConfigurationSnapshotJob" +"CrossDeviceExperiences","GetMgUserActivity_Get.g.cs","v1.0","Get-MgUserActivity","GET","/users/{param}/activities/{param}","matched","Get-MgUserActivity" +"CrossDeviceExperiences","GetMgUserActivity_List.g.cs","v1.0","Get-MgUserActivity","GET","/users/{param}/activities","matched","Get-MgUserActivity" +"CrossDeviceExperiences","GetMgUserActivity.g.cs","v1.0","Get-MgUserActivity","","","dispatcher","" +"CrossDeviceExperiences","GetMgUserActivityCount.g.cs","v1.0","Get-MgUserActivityCount","GET","/users/{param}/activities/$count","matched","Get-MgUserActivityCount" +"CrossDeviceExperiences","GetMgUserActivityHistoryItem_Get.g.cs","v1.0","Get-MgUserActivityHistoryItem","GET","/users/{param}/activities/{param}/historyItems/{param}","matched","Get-MgUserActivityHistoryItem" +"CrossDeviceExperiences","GetMgUserActivityHistoryItem_List.g.cs","v1.0","Get-MgUserActivityHistoryItem","GET","/users/{param}/activities/{param}/historyItems","matched","Get-MgUserActivityHistoryItem" +"CrossDeviceExperiences","GetMgUserActivityHistoryItem.g.cs","v1.0","Get-MgUserActivityHistoryItem","","","dispatcher","" +"CrossDeviceExperiences","GetMgUserActivityHistoryItemActivity.g.cs","v1.0","Get-MgUserActivityHistoryItemActivity","GET","/users/{param}/activities/{param}/historyItems/{param}/activity","matched","Get-MgUserActivityHistoryItemActivity" +"CrossDeviceExperiences","GetMgUserActivityHistoryItemCount.g.cs","v1.0","Get-MgUserActivityHistoryItemCount","GET","/users/{param}/activities/{param}/historyItems/$count","matched","Get-MgUserActivityHistoryItemCount" +"CrossDeviceExperiences","GetMgUserActivityRecent.g.cs","v1.0","Get-MgUserActivityRecent","GET","/users/{param}/activities/recent","mismatch","Invoke-MgRecentUserActivity" +"CrossDeviceExperiences","NewMgUserActivity.g.cs","v1.0","New-MgUserActivity","POST","/users/{param}/activities","matched","New-MgUserActivity" +"CrossDeviceExperiences","NewMgUserActivityHistoryItem.g.cs","v1.0","New-MgUserActivityHistoryItem","POST","/users/{param}/activities/{param}/historyItems","matched","New-MgUserActivityHistoryItem" +"CrossDeviceExperiences","RemoveMgUserActivity.g.cs","v1.0","Remove-MgUserActivity","DELETE","/users/{param}/activities/{param}","matched","Remove-MgUserActivity" +"CrossDeviceExperiences","RemoveMgUserActivityHistoryItem.g.cs","v1.0","Remove-MgUserActivityHistoryItem","DELETE","/users/{param}/activities/{param}/historyItems/{param}","matched","Remove-MgUserActivityHistoryItem" +"CrossDeviceExperiences","UpdateMgUserActivity.g.cs","v1.0","Update-MgUserActivity","PATCH","/users/{param}/activities/{param}","matched","Update-MgUserActivity" +"CrossDeviceExperiences","UpdateMgUserActivityHistoryItem.g.cs","v1.0","Update-MgUserActivityHistoryItem","PATCH","/users/{param}/activities/{param}/historyItems/{param}","matched","Update-MgUserActivityHistoryItem" +"DeviceManagement","GetMgAdminEdge.g.cs","v1.0","Get-MgAdminEdge","GET","/admin/edge","matched","Get-MgAdminEdge" +"DeviceManagement","GetMgAdminEdgeInternetExplorerMode.g.cs","v1.0","Get-MgAdminEdgeInternetExplorerMode","GET","/admin/edge/internetExplorerMode","matched","Get-MgAdminEdgeInternetExplorerMode" +"DeviceManagement","GetMgAdminEdgeInternetExplorerModeSiteList_Get.g.cs","v1.0","Get-MgAdminEdgeInternetExplorerModeSiteList","GET","/admin/edge/internetExplorerMode/siteLists/{param}","matched","Get-MgAdminEdgeInternetExplorerModeSiteList" +"DeviceManagement","GetMgAdminEdgeInternetExplorerModeSiteList_List.g.cs","v1.0","Get-MgAdminEdgeInternetExplorerModeSiteList","GET","/admin/edge/internetExplorerMode/siteLists","matched","Get-MgAdminEdgeInternetExplorerModeSiteList" +"DeviceManagement","GetMgAdminEdgeInternetExplorerModeSiteList.g.cs","v1.0","Get-MgAdminEdgeInternetExplorerModeSiteList","","","dispatcher","" +"DeviceManagement","GetMgAdminEdgeInternetExplorerModeSiteListCount.g.cs","v1.0","Get-MgAdminEdgeInternetExplorerModeSiteListCount","GET","/admin/edge/internetExplorerMode/siteLists/$count","matched","Get-MgAdminEdgeInternetExplorerModeSiteListCount" +"DeviceManagement","GetMgAdminEdgeInternetExplorerModeSiteListSharedCookie_Get.g.cs","v1.0","Get-MgAdminEdgeInternetExplorerModeSiteListSharedCookie","GET","/admin/edge/internetExplorerMode/siteLists/{param}/sharedCookies/{param}","matched","Get-MgAdminEdgeInternetExplorerModeSiteListSharedCookie" +"DeviceManagement","GetMgAdminEdgeInternetExplorerModeSiteListSharedCookie_List.g.cs","v1.0","Get-MgAdminEdgeInternetExplorerModeSiteListSharedCookie","GET","/admin/edge/internetExplorerMode/siteLists/{param}/sharedCookies","matched","Get-MgAdminEdgeInternetExplorerModeSiteListSharedCookie" +"DeviceManagement","GetMgAdminEdgeInternetExplorerModeSiteListSharedCookie.g.cs","v1.0","Get-MgAdminEdgeInternetExplorerModeSiteListSharedCookie","","","dispatcher","" +"DeviceManagement","GetMgAdminEdgeInternetExplorerModeSiteListSharedCookieCount.g.cs","v1.0","Get-MgAdminEdgeInternetExplorerModeSiteListSharedCookieCount","GET","/admin/edge/internetExplorerMode/siteLists/{param}/sharedCookies/$count","matched","Get-MgAdminEdgeInternetExplorerModeSiteListSharedCookieCount" +"DeviceManagement","GetMgAdminEdgeInternetExplorerModeSiteListSite_Get.g.cs","v1.0","Get-MgAdminEdgeInternetExplorerModeSiteListSite","GET","/admin/edge/internetExplorerMode/siteLists/{param}/sites/{param}","matched","Get-MgAdminEdgeInternetExplorerModeSiteListSite" +"DeviceManagement","GetMgAdminEdgeInternetExplorerModeSiteListSite_List.g.cs","v1.0","Get-MgAdminEdgeInternetExplorerModeSiteListSite","GET","/admin/edge/internetExplorerMode/siteLists/{param}/sites","matched","Get-MgAdminEdgeInternetExplorerModeSiteListSite" +"DeviceManagement","GetMgAdminEdgeInternetExplorerModeSiteListSite.g.cs","v1.0","Get-MgAdminEdgeInternetExplorerModeSiteListSite","","","dispatcher","" +"DeviceManagement","GetMgAdminEdgeInternetExplorerModeSiteListSiteCount.g.cs","v1.0","Get-MgAdminEdgeInternetExplorerModeSiteListSiteCount","GET","/admin/edge/internetExplorerMode/siteLists/{param}/sites/$count","matched","Get-MgAdminEdgeInternetExplorerModeSiteListSiteCount" +"DeviceManagement","GetMgDeviceManagement.g.cs","v1.0","Get-MgDeviceManagement","GET","/deviceManagement","matched","Get-MgDeviceManagement" +"DeviceManagement","GetMgDeviceManagementDetectedApp_Get.g.cs","v1.0","Get-MgDeviceManagementDetectedApp","GET","/deviceManagement/detectedApps/{param}","matched","Get-MgDeviceManagementDetectedApp" +"DeviceManagement","GetMgDeviceManagementDetectedApp_List.g.cs","v1.0","Get-MgDeviceManagementDetectedApp","GET","/deviceManagement/detectedApps","matched","Get-MgDeviceManagementDetectedApp" +"DeviceManagement","GetMgDeviceManagementDetectedApp.g.cs","v1.0","Get-MgDeviceManagementDetectedApp","","","dispatcher","" +"DeviceManagement","GetMgDeviceManagementDetectedAppCount.g.cs","v1.0","Get-MgDeviceManagementDetectedAppCount","GET","/deviceManagement/detectedApps/$count","matched","Get-MgDeviceManagementDetectedAppCount" +"DeviceManagement","GetMgDeviceManagementDetectedAppManagedDevice_Get.g.cs","v1.0","Get-MgDeviceManagementDetectedAppManagedDevice","GET","/deviceManagement/detectedApps/{param}/managedDevices/{param}","matched","Get-MgDeviceManagementDetectedAppManagedDevice" +"DeviceManagement","GetMgDeviceManagementDetectedAppManagedDevice_List.g.cs","v1.0","Get-MgDeviceManagementDetectedAppManagedDevice","GET","/deviceManagement/detectedApps/{param}/managedDevices","matched","Get-MgDeviceManagementDetectedAppManagedDevice" +"DeviceManagement","GetMgDeviceManagementDetectedAppManagedDevice.g.cs","v1.0","Get-MgDeviceManagementDetectedAppManagedDevice","","","dispatcher","" +"DeviceManagement","GetMgDeviceManagementDetectedAppManagedDeviceCount.g.cs","v1.0","Get-MgDeviceManagementDetectedAppManagedDeviceCount","GET","/deviceManagement/detectedApps/{param}/managedDevices/$count","matched","Get-MgDeviceManagementDetectedAppManagedDeviceCount" +"DeviceManagement","GetMgDeviceManagementDeviceCategory_Get.g.cs","v1.0","Get-MgDeviceManagementDeviceCategory","GET","/deviceManagement/deviceCategories/{param}","matched","Get-MgDeviceManagementDeviceCategory" +"DeviceManagement","GetMgDeviceManagementDeviceCategory_List.g.cs","v1.0","Get-MgDeviceManagementDeviceCategory","GET","/deviceManagement/deviceCategories","matched","Get-MgDeviceManagementDeviceCategory" +"DeviceManagement","GetMgDeviceManagementDeviceCategory.g.cs","v1.0","Get-MgDeviceManagementDeviceCategory","","","dispatcher","" +"DeviceManagement","GetMgDeviceManagementDeviceCategoryCount.g.cs","v1.0","Get-MgDeviceManagementDeviceCategoryCount","GET","/deviceManagement/deviceCategories/$count","matched","Get-MgDeviceManagementDeviceCategoryCount" +"DeviceManagement","GetMgDeviceManagementDeviceCompliancePolicy_Get.g.cs","v1.0","Get-MgDeviceManagementDeviceCompliancePolicy","GET","/deviceManagement/deviceCompliancePolicies/{param}","matched","Get-MgDeviceManagementDeviceCompliancePolicy" +"DeviceManagement","GetMgDeviceManagementDeviceCompliancePolicy_List.g.cs","v1.0","Get-MgDeviceManagementDeviceCompliancePolicy","GET","/deviceManagement/deviceCompliancePolicies","matched","Get-MgDeviceManagementDeviceCompliancePolicy" +"DeviceManagement","GetMgDeviceManagementDeviceCompliancePolicy.g.cs","v1.0","Get-MgDeviceManagementDeviceCompliancePolicy","","","dispatcher","" +"DeviceManagement","GetMgDeviceManagementDeviceCompliancePolicyAssignment_Get.g.cs","v1.0","Get-MgDeviceManagementDeviceCompliancePolicyAssignment","GET","/deviceManagement/deviceCompliancePolicies/{param}/assignments/{param}","matched","Get-MgDeviceManagementDeviceCompliancePolicyAssignment" +"DeviceManagement","GetMgDeviceManagementDeviceCompliancePolicyAssignment_List.g.cs","v1.0","Get-MgDeviceManagementDeviceCompliancePolicyAssignment","GET","/deviceManagement/deviceCompliancePolicies/{param}/assignments","matched","Get-MgDeviceManagementDeviceCompliancePolicyAssignment" +"DeviceManagement","GetMgDeviceManagementDeviceCompliancePolicyAssignment.g.cs","v1.0","Get-MgDeviceManagementDeviceCompliancePolicyAssignment","","","dispatcher","" +"DeviceManagement","GetMgDeviceManagementDeviceCompliancePolicyAssignmentCount.g.cs","v1.0","Get-MgDeviceManagementDeviceCompliancePolicyAssignmentCount","GET","/deviceManagement/deviceCompliancePolicies/{param}/assignments/$count","matched","Get-MgDeviceManagementDeviceCompliancePolicyAssignmentCount" +"DeviceManagement","GetMgDeviceManagementDeviceCompliancePolicyCount.g.cs","v1.0","Get-MgDeviceManagementDeviceCompliancePolicyCount","GET","/deviceManagement/deviceCompliancePolicies/$count","matched","Get-MgDeviceManagementDeviceCompliancePolicyCount" +"DeviceManagement","GetMgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary_Get.g.cs","v1.0","Get-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary","GET","/deviceManagement/deviceCompliancePolicies/{param}/deviceSettingStateSummaries/{param}","matched","Get-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary" +"DeviceManagement","GetMgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary_List.g.cs","v1.0","Get-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary","GET","/deviceManagement/deviceCompliancePolicies/{param}/deviceSettingStateSummaries","matched","Get-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary" +"DeviceManagement","GetMgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary.g.cs","v1.0","Get-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary","","","dispatcher","" +"DeviceManagement","GetMgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummaryCount.g.cs","v1.0","Get-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummaryCount","GET","/deviceManagement/deviceCompliancePolicies/{param}/deviceSettingStateSummaries/$count","matched","Get-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummaryCount" +"DeviceManagement","GetMgDeviceManagementDeviceCompliancePolicyDeviceStateSummary.g.cs","v1.0","Get-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary","GET","/deviceManagement/deviceCompliancePolicyDeviceStateSummary","matched","Get-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary" +"DeviceManagement","GetMgDeviceManagementDeviceCompliancePolicyDeviceStatus_Get.g.cs","v1.0","Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatus","GET","/deviceManagement/deviceCompliancePolicies/{param}/deviceStatuses/{param}","matched","Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatus" +"DeviceManagement","GetMgDeviceManagementDeviceCompliancePolicyDeviceStatus_List.g.cs","v1.0","Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatus","GET","/deviceManagement/deviceCompliancePolicies/{param}/deviceStatuses","matched","Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatus" +"DeviceManagement","GetMgDeviceManagementDeviceCompliancePolicyDeviceStatus.g.cs","v1.0","Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatus","","","dispatcher","" +"DeviceManagement","GetMgDeviceManagementDeviceCompliancePolicyDeviceStatusCount.g.cs","v1.0","Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatusCount","GET","/deviceManagement/deviceCompliancePolicies/{param}/deviceStatuses/$count","matched","Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatusCount" +"DeviceManagement","GetMgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview.g.cs","v1.0","Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview","GET","/deviceManagement/deviceCompliancePolicies/{param}/deviceStatusOverview","matched","Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview" +"DeviceManagement","GetMgDeviceManagementDeviceCompliancePolicyScheduledActionForRule_Get.g.cs","v1.0","Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule","GET","/deviceManagement/deviceCompliancePolicies/{param}/scheduledActionsForRule/{param}","matched","Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule" +"DeviceManagement","GetMgDeviceManagementDeviceCompliancePolicyScheduledActionForRule_List.g.cs","v1.0","Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule","GET","/deviceManagement/deviceCompliancePolicies/{param}/scheduledActionsForRule","matched","Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule" +"DeviceManagement","GetMgDeviceManagementDeviceCompliancePolicyScheduledActionForRule.g.cs","v1.0","Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule","","","dispatcher","" +"DeviceManagement","GetMgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleCount.g.cs","v1.0","Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleCount","GET","/deviceManagement/deviceCompliancePolicies/{param}/scheduledActionsForRule/$count","matched","Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleCount" +"DeviceManagement","GetMgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration_Get.g.cs","v1.0","Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration","GET","/deviceManagement/deviceCompliancePolicies/{param}/scheduledActionsForRule/{param}/scheduledActionConfigurations/{param}","matched","Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration" +"DeviceManagement","GetMgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration_List.g.cs","v1.0","Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration","GET","/deviceManagement/deviceCompliancePolicies/{param}/scheduledActionsForRule/{param}/scheduledActionConfigurations","matched","Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration" +"DeviceManagement","GetMgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration.g.cs","v1.0","Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration","","","dispatcher","" +"DeviceManagement","GetMgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfigurationCount.g.cs","v1.0","Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfigurationCount","GET","/deviceManagement/deviceCompliancePolicies/{param}/scheduledActionsForRule/{param}/scheduledActionConfigurations/$count","matched","Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfigurationCount" +"DeviceManagement","GetMgDeviceManagementDeviceCompliancePolicySettingStateSummary_Get.g.cs","v1.0","Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummary","GET","/deviceManagement/deviceCompliancePolicySettingStateSummaries/{param}","matched","Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummary" +"DeviceManagement","GetMgDeviceManagementDeviceCompliancePolicySettingStateSummary_List.g.cs","v1.0","Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummary","GET","/deviceManagement/deviceCompliancePolicySettingStateSummaries","matched","Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummary" +"DeviceManagement","GetMgDeviceManagementDeviceCompliancePolicySettingStateSummary.g.cs","v1.0","Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummary","","","dispatcher","" +"DeviceManagement","GetMgDeviceManagementDeviceCompliancePolicySettingStateSummaryCount.g.cs","v1.0","Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryCount","GET","/deviceManagement/deviceCompliancePolicySettingStateSummaries/$count","matched","Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryCount" +"DeviceManagement","GetMgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState_Get.g.cs","v1.0","Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState","GET","/deviceManagement/deviceCompliancePolicySettingStateSummaries/{param}/deviceComplianceSettingStates/{param}","matched","Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState" +"DeviceManagement","GetMgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState_List.g.cs","v1.0","Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState","GET","/deviceManagement/deviceCompliancePolicySettingStateSummaries/{param}/deviceComplianceSettingStates","matched","Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState" +"DeviceManagement","GetMgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState.g.cs","v1.0","Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState","","","dispatcher","" +"DeviceManagement","GetMgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingStateCount.g.cs","v1.0","Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingStateCount","GET","/deviceManagement/deviceCompliancePolicySettingStateSummaries/{param}/deviceComplianceSettingStates/$count","matched","Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingStateCount" +"DeviceManagement","GetMgDeviceManagementDeviceCompliancePolicyUserStatus_Get.g.cs","v1.0","Get-MgDeviceManagementDeviceCompliancePolicyUserStatus","GET","/deviceManagement/deviceCompliancePolicies/{param}/userStatuses/{param}","matched","Get-MgDeviceManagementDeviceCompliancePolicyUserStatus" +"DeviceManagement","GetMgDeviceManagementDeviceCompliancePolicyUserStatus_List.g.cs","v1.0","Get-MgDeviceManagementDeviceCompliancePolicyUserStatus","GET","/deviceManagement/deviceCompliancePolicies/{param}/userStatuses","matched","Get-MgDeviceManagementDeviceCompliancePolicyUserStatus" +"DeviceManagement","GetMgDeviceManagementDeviceCompliancePolicyUserStatus.g.cs","v1.0","Get-MgDeviceManagementDeviceCompliancePolicyUserStatus","","","dispatcher","" +"DeviceManagement","GetMgDeviceManagementDeviceCompliancePolicyUserStatusCount.g.cs","v1.0","Get-MgDeviceManagementDeviceCompliancePolicyUserStatusCount","GET","/deviceManagement/deviceCompliancePolicies/{param}/userStatuses/$count","matched","Get-MgDeviceManagementDeviceCompliancePolicyUserStatusCount" +"DeviceManagement","GetMgDeviceManagementDeviceCompliancePolicyUserStatusOverview.g.cs","v1.0","Get-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview","GET","/deviceManagement/deviceCompliancePolicies/{param}/userStatusOverview","matched","Get-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview" +"DeviceManagement","GetMgDeviceManagementDeviceConfiguration_Get.g.cs","v1.0","Get-MgDeviceManagementDeviceConfiguration","GET","/deviceManagement/deviceConfigurations/{param}","matched","Get-MgDeviceManagementDeviceConfiguration" +"DeviceManagement","GetMgDeviceManagementDeviceConfiguration_List.g.cs","v1.0","Get-MgDeviceManagementDeviceConfiguration","GET","/deviceManagement/deviceConfigurations","matched","Get-MgDeviceManagementDeviceConfiguration" +"DeviceManagement","GetMgDeviceManagementDeviceConfiguration.g.cs","v1.0","Get-MgDeviceManagementDeviceConfiguration","","","dispatcher","" +"DeviceManagement","GetMgDeviceManagementDeviceConfigurationAssignment_Get.g.cs","v1.0","Get-MgDeviceManagementDeviceConfigurationAssignment","GET","/deviceManagement/deviceConfigurations/{param}/assignments/{param}","matched","Get-MgDeviceManagementDeviceConfigurationAssignment" +"DeviceManagement","GetMgDeviceManagementDeviceConfigurationAssignment_List.g.cs","v1.0","Get-MgDeviceManagementDeviceConfigurationAssignment","GET","/deviceManagement/deviceConfigurations/{param}/assignments","matched","Get-MgDeviceManagementDeviceConfigurationAssignment" +"DeviceManagement","GetMgDeviceManagementDeviceConfigurationAssignment.g.cs","v1.0","Get-MgDeviceManagementDeviceConfigurationAssignment","","","dispatcher","" +"DeviceManagement","GetMgDeviceManagementDeviceConfigurationAssignmentCount.g.cs","v1.0","Get-MgDeviceManagementDeviceConfigurationAssignmentCount","GET","/deviceManagement/deviceConfigurations/{param}/assignments/$count","matched","Get-MgDeviceManagementDeviceConfigurationAssignmentCount" +"DeviceManagement","GetMgDeviceManagementDeviceConfigurationCount.g.cs","v1.0","Get-MgDeviceManagementDeviceConfigurationCount","GET","/deviceManagement/deviceConfigurations/$count","matched","Get-MgDeviceManagementDeviceConfigurationCount" +"DeviceManagement","GetMgDeviceManagementDeviceConfigurationDeviceSettingStateSummary_Get.g.cs","v1.0","Get-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary","GET","/deviceManagement/deviceConfigurations/{param}/deviceSettingStateSummaries/{param}","matched","Get-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary" +"DeviceManagement","GetMgDeviceManagementDeviceConfigurationDeviceSettingStateSummary_List.g.cs","v1.0","Get-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary","GET","/deviceManagement/deviceConfigurations/{param}/deviceSettingStateSummaries","matched","Get-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary" +"DeviceManagement","GetMgDeviceManagementDeviceConfigurationDeviceSettingStateSummary.g.cs","v1.0","Get-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary","","","dispatcher","" +"DeviceManagement","GetMgDeviceManagementDeviceConfigurationDeviceSettingStateSummaryCount.g.cs","v1.0","Get-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummaryCount","GET","/deviceManagement/deviceConfigurations/{param}/deviceSettingStateSummaries/$count","matched","Get-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummaryCount" +"DeviceManagement","GetMgDeviceManagementDeviceConfigurationDeviceStateSummary.g.cs","v1.0","Get-MgDeviceManagementDeviceConfigurationDeviceStateSummary","GET","/deviceManagement/deviceConfigurationDeviceStateSummaries","matched","Get-MgDeviceManagementDeviceConfigurationDeviceStateSummary" +"DeviceManagement","GetMgDeviceManagementDeviceConfigurationDeviceStatus_Get.g.cs","v1.0","Get-MgDeviceManagementDeviceConfigurationDeviceStatus","GET","/deviceManagement/deviceConfigurations/{param}/deviceStatuses/{param}","matched","Get-MgDeviceManagementDeviceConfigurationDeviceStatus" +"DeviceManagement","GetMgDeviceManagementDeviceConfigurationDeviceStatus_List.g.cs","v1.0","Get-MgDeviceManagementDeviceConfigurationDeviceStatus","GET","/deviceManagement/deviceConfigurations/{param}/deviceStatuses","matched","Get-MgDeviceManagementDeviceConfigurationDeviceStatus" +"DeviceManagement","GetMgDeviceManagementDeviceConfigurationDeviceStatus.g.cs","v1.0","Get-MgDeviceManagementDeviceConfigurationDeviceStatus","","","dispatcher","" +"DeviceManagement","GetMgDeviceManagementDeviceConfigurationDeviceStatusCount.g.cs","v1.0","Get-MgDeviceManagementDeviceConfigurationDeviceStatusCount","GET","/deviceManagement/deviceConfigurations/{param}/deviceStatuses/$count","matched","Get-MgDeviceManagementDeviceConfigurationDeviceStatusCount" +"DeviceManagement","GetMgDeviceManagementDeviceConfigurationDeviceStatusOverview.g.cs","v1.0","Get-MgDeviceManagementDeviceConfigurationDeviceStatusOverview","GET","/deviceManagement/deviceConfigurations/{param}/deviceStatusOverview","matched","Get-MgDeviceManagementDeviceConfigurationDeviceStatusOverview" +"DeviceManagement","GetMgDeviceManagementDeviceConfigurationGetOmaSettingPlainTextValueWithSecretReferenceValueId.g.cs","v1.0","Get-MgDeviceManagementDeviceConfigurationGetOmaSettingPlainTextValueWithSecretReferenceValueId","","","parameterized-function","" +"DeviceManagement","GetMgDeviceManagementDeviceConfigurationUserStatus_Get.g.cs","v1.0","Get-MgDeviceManagementDeviceConfigurationUserStatus","GET","/deviceManagement/deviceConfigurations/{param}/userStatuses/{param}","matched","Get-MgDeviceManagementDeviceConfigurationUserStatus" +"DeviceManagement","GetMgDeviceManagementDeviceConfigurationUserStatus_List.g.cs","v1.0","Get-MgDeviceManagementDeviceConfigurationUserStatus","GET","/deviceManagement/deviceConfigurations/{param}/userStatuses","matched","Get-MgDeviceManagementDeviceConfigurationUserStatus" +"DeviceManagement","GetMgDeviceManagementDeviceConfigurationUserStatus.g.cs","v1.0","Get-MgDeviceManagementDeviceConfigurationUserStatus","","","dispatcher","" +"DeviceManagement","GetMgDeviceManagementDeviceConfigurationUserStatusCount.g.cs","v1.0","Get-MgDeviceManagementDeviceConfigurationUserStatusCount","GET","/deviceManagement/deviceConfigurations/{param}/userStatuses/$count","matched","Get-MgDeviceManagementDeviceConfigurationUserStatusCount" +"DeviceManagement","GetMgDeviceManagementDeviceConfigurationUserStatusOverview.g.cs","v1.0","Get-MgDeviceManagementDeviceConfigurationUserStatusOverview","GET","/deviceManagement/deviceConfigurations/{param}/userStatusOverview","matched","Get-MgDeviceManagementDeviceConfigurationUserStatusOverview" +"DeviceManagement","GetMgDeviceManagementManagedDevice_Get.g.cs","v1.0","Get-MgDeviceManagementManagedDevice","GET","/deviceManagement/managedDevices/{param}","matched","Get-MgDeviceManagementManagedDevice" +"DeviceManagement","GetMgDeviceManagementManagedDevice_List.g.cs","v1.0","Get-MgDeviceManagementManagedDevice","GET","/deviceManagement/managedDevices","matched","Get-MgDeviceManagementManagedDevice" +"DeviceManagement","GetMgDeviceManagementManagedDevice.g.cs","v1.0","Get-MgDeviceManagementManagedDevice","","","dispatcher","" +"DeviceManagement","GetMgDeviceManagementManagedDeviceCategory.g.cs","v1.0","Get-MgDeviceManagementManagedDeviceCategory","GET","/deviceManagement/managedDevices/{param}/deviceCategory","matched","Get-MgDeviceManagementManagedDeviceCategory" +"DeviceManagement","GetMgDeviceManagementManagedDeviceCategoryByRef.g.cs","v1.0","Get-MgDeviceManagementManagedDeviceCategoryByRef","GET","/deviceManagement/managedDevices/{param}/deviceCategory/$ref","matched","Get-MgDeviceManagementManagedDeviceCategoryByRef" +"DeviceManagement","GetMgDeviceManagementManagedDeviceCompliancePolicyState_Get.g.cs","v1.0","Get-MgDeviceManagementManagedDeviceCompliancePolicyState","GET","/deviceManagement/managedDevices/{param}/deviceCompliancePolicyStates/{param}","matched","Get-MgDeviceManagementManagedDeviceCompliancePolicyState" +"DeviceManagement","GetMgDeviceManagementManagedDeviceCompliancePolicyState_List.g.cs","v1.0","Get-MgDeviceManagementManagedDeviceCompliancePolicyState","GET","/deviceManagement/managedDevices/{param}/deviceCompliancePolicyStates","matched","Get-MgDeviceManagementManagedDeviceCompliancePolicyState" +"DeviceManagement","GetMgDeviceManagementManagedDeviceCompliancePolicyState.g.cs","v1.0","Get-MgDeviceManagementManagedDeviceCompliancePolicyState","","","dispatcher","" +"DeviceManagement","GetMgDeviceManagementManagedDeviceCompliancePolicyStateCount.g.cs","v1.0","Get-MgDeviceManagementManagedDeviceCompliancePolicyStateCount","GET","/deviceManagement/managedDevices/{param}/deviceCompliancePolicyStates/$count","matched","Get-MgDeviceManagementManagedDeviceCompliancePolicyStateCount" +"DeviceManagement","GetMgDeviceManagementManagedDeviceConfigurationState_Get.g.cs","v1.0","Get-MgDeviceManagementManagedDeviceConfigurationState","GET","/deviceManagement/managedDevices/{param}/deviceConfigurationStates/{param}","matched","Get-MgDeviceManagementManagedDeviceConfigurationState" +"DeviceManagement","GetMgDeviceManagementManagedDeviceConfigurationState_List.g.cs","v1.0","Get-MgDeviceManagementManagedDeviceConfigurationState","GET","/deviceManagement/managedDevices/{param}/deviceConfigurationStates","matched","Get-MgDeviceManagementManagedDeviceConfigurationState" +"DeviceManagement","GetMgDeviceManagementManagedDeviceConfigurationState.g.cs","v1.0","Get-MgDeviceManagementManagedDeviceConfigurationState","","","dispatcher","" +"DeviceManagement","GetMgDeviceManagementManagedDeviceConfigurationStateCount.g.cs","v1.0","Get-MgDeviceManagementManagedDeviceConfigurationStateCount","GET","/deviceManagement/managedDevices/{param}/deviceConfigurationStates/$count","matched","Get-MgDeviceManagementManagedDeviceConfigurationStateCount" +"DeviceManagement","GetMgDeviceManagementManagedDeviceCount.g.cs","v1.0","Get-MgDeviceManagementManagedDeviceCount","GET","/deviceManagement/managedDevices/$count","matched","Get-MgDeviceManagementManagedDeviceCount" +"DeviceManagement","GetMgDeviceManagementManagedDeviceLogCollectionRequest_Get.g.cs","v1.0","Get-MgDeviceManagementManagedDeviceLogCollectionRequest","GET","/deviceManagement/managedDevices/{param}/logCollectionRequests/{param}","matched","Get-MgDeviceManagementManagedDeviceLogCollectionRequest" +"DeviceManagement","GetMgDeviceManagementManagedDeviceLogCollectionRequest_List.g.cs","v1.0","Get-MgDeviceManagementManagedDeviceLogCollectionRequest","GET","/deviceManagement/managedDevices/{param}/logCollectionRequests","matched","Get-MgDeviceManagementManagedDeviceLogCollectionRequest" +"DeviceManagement","GetMgDeviceManagementManagedDeviceLogCollectionRequest.g.cs","v1.0","Get-MgDeviceManagementManagedDeviceLogCollectionRequest","","","dispatcher","" +"DeviceManagement","GetMgDeviceManagementManagedDeviceLogCollectionRequestCount.g.cs","v1.0","Get-MgDeviceManagementManagedDeviceLogCollectionRequestCount","GET","/deviceManagement/managedDevices/{param}/logCollectionRequests/$count","matched","Get-MgDeviceManagementManagedDeviceLogCollectionRequestCount" +"DeviceManagement","GetMgDeviceManagementManagedDeviceOverview.g.cs","v1.0","Get-MgDeviceManagementManagedDeviceOverview","GET","/deviceManagement/managedDeviceOverview","matched","Get-MgDeviceManagementManagedDeviceOverview" +"DeviceManagement","GetMgDeviceManagementManagedDeviceUser.g.cs","v1.0","Get-MgDeviceManagementManagedDeviceUser","GET","/deviceManagement/managedDevices/{param}/users","matched","Get-MgDeviceManagementManagedDeviceUser" +"DeviceManagement","GetMgDeviceManagementManagedDeviceWindowsProtectionState.g.cs","v1.0","Get-MgDeviceManagementManagedDeviceWindowsProtectionState","GET","/deviceManagement/managedDevices/{param}/windowsProtectionState","matched","Get-MgDeviceManagementManagedDeviceWindowsProtectionState" +"DeviceManagement","GetMgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState_Get.g.cs","v1.0","Get-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState","GET","/deviceManagement/managedDevices/{param}/windowsProtectionState/detectedMalwareState/{param}","matched","Get-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState" +"DeviceManagement","GetMgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState_List.g.cs","v1.0","Get-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState","GET","/deviceManagement/managedDevices/{param}/windowsProtectionState/detectedMalwareState","matched","Get-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState" +"DeviceManagement","GetMgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState.g.cs","v1.0","Get-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState","","","dispatcher","" +"DeviceManagement","GetMgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareStateCount.g.cs","v1.0","Get-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareStateCount","GET","/deviceManagement/managedDevices/{param}/windowsProtectionState/detectedMalwareState/$count","matched","Get-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareStateCount" +"DeviceManagement","GetMgDeviceManagementMobileAppTroubleshootingEvent_Get.g.cs","v1.0","Get-MgDeviceManagementMobileAppTroubleshootingEvent","GET","/deviceManagement/mobileAppTroubleshootingEvents/{param}","matched","Get-MgDeviceManagementMobileAppTroubleshootingEvent" +"DeviceManagement","GetMgDeviceManagementMobileAppTroubleshootingEvent_List.g.cs","v1.0","Get-MgDeviceManagementMobileAppTroubleshootingEvent","GET","/deviceManagement/mobileAppTroubleshootingEvents","matched","Get-MgDeviceManagementMobileAppTroubleshootingEvent" +"DeviceManagement","GetMgDeviceManagementMobileAppTroubleshootingEvent.g.cs","v1.0","Get-MgDeviceManagementMobileAppTroubleshootingEvent","","","dispatcher","" +"DeviceManagement","GetMgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest_Get.g.cs","v1.0","Get-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest","GET","/deviceManagement/mobileAppTroubleshootingEvents/{param}/appLogCollectionRequests/{param}","matched","Get-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest" +"DeviceManagement","GetMgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest_List.g.cs","v1.0","Get-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest","GET","/deviceManagement/mobileAppTroubleshootingEvents/{param}/appLogCollectionRequests","matched","Get-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest" +"DeviceManagement","GetMgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest.g.cs","v1.0","Get-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest","","","dispatcher","" +"DeviceManagement","GetMgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestCount.g.cs","v1.0","Get-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestCount","GET","/deviceManagement/mobileAppTroubleshootingEvents/{param}/appLogCollectionRequests/$count","matched","Get-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestCount" +"DeviceManagement","GetMgDeviceManagementMobileAppTroubleshootingEventCount.g.cs","v1.0","Get-MgDeviceManagementMobileAppTroubleshootingEventCount","GET","/deviceManagement/mobileAppTroubleshootingEvents/$count","matched","Get-MgDeviceManagementMobileAppTroubleshootingEventCount" +"DeviceManagement","GetMgDeviceManagementNotificationMessageTemplate_Get.g.cs","v1.0","Get-MgDeviceManagementNotificationMessageTemplate","GET","/deviceManagement/notificationMessageTemplates/{param}","matched","Get-MgDeviceManagementNotificationMessageTemplate" +"DeviceManagement","GetMgDeviceManagementNotificationMessageTemplate_List.g.cs","v1.0","Get-MgDeviceManagementNotificationMessageTemplate","GET","/deviceManagement/notificationMessageTemplates","matched","Get-MgDeviceManagementNotificationMessageTemplate" +"DeviceManagement","GetMgDeviceManagementNotificationMessageTemplate.g.cs","v1.0","Get-MgDeviceManagementNotificationMessageTemplate","","","dispatcher","" +"DeviceManagement","GetMgDeviceManagementNotificationMessageTemplateCount.g.cs","v1.0","Get-MgDeviceManagementNotificationMessageTemplateCount","GET","/deviceManagement/notificationMessageTemplates/$count","matched","Get-MgDeviceManagementNotificationMessageTemplateCount" +"DeviceManagement","GetMgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage_Get.g.cs","v1.0","Get-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage","GET","/deviceManagement/notificationMessageTemplates/{param}/localizedNotificationMessages/{param}","matched","Get-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage" +"DeviceManagement","GetMgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage_List.g.cs","v1.0","Get-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage","GET","/deviceManagement/notificationMessageTemplates/{param}/localizedNotificationMessages","matched","Get-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage" +"DeviceManagement","GetMgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage.g.cs","v1.0","Get-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage","","","dispatcher","" +"DeviceManagement","GetMgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessageCount.g.cs","v1.0","Get-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessageCount","GET","/deviceManagement/notificationMessageTemplates/{param}/localizedNotificationMessages/$count","matched","Get-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessageCount" +"DeviceManagement","GetMgDeviceManagementSoftwareUpdateStatusSummary.g.cs","v1.0","Get-MgDeviceManagementSoftwareUpdateStatusSummary","GET","/deviceManagement/softwareUpdateStatusSummary","matched","Get-MgDeviceManagementSoftwareUpdateStatusSummary" +"DeviceManagement","GetMgDeviceManagementTroubleshootingEvent_Get.g.cs","v1.0","Get-MgDeviceManagementTroubleshootingEvent","GET","/deviceManagement/troubleshootingEvents/{param}","matched","Get-MgDeviceManagementTroubleshootingEvent" +"DeviceManagement","GetMgDeviceManagementTroubleshootingEvent_List.g.cs","v1.0","Get-MgDeviceManagementTroubleshootingEvent","GET","/deviceManagement/troubleshootingEvents","matched","Get-MgDeviceManagementTroubleshootingEvent" +"DeviceManagement","GetMgDeviceManagementTroubleshootingEvent.g.cs","v1.0","Get-MgDeviceManagementTroubleshootingEvent","","","dispatcher","" +"DeviceManagement","GetMgDeviceManagementTroubleshootingEventCount.g.cs","v1.0","Get-MgDeviceManagementTroubleshootingEventCount","GET","/deviceManagement/troubleshootingEvents/$count","matched","Get-MgDeviceManagementTroubleshootingEventCount" +"DeviceManagement","GetMgDeviceManagementWindowsInformationProtectionAppLearningSummary_Get.g.cs","v1.0","Get-MgDeviceManagementWindowsInformationProtectionAppLearningSummary","GET","/deviceManagement/windowsInformationProtectionAppLearningSummaries/{param}","matched","Get-MgDeviceManagementWindowsInformationProtectionAppLearningSummary" +"DeviceManagement","GetMgDeviceManagementWindowsInformationProtectionAppLearningSummary_List.g.cs","v1.0","Get-MgDeviceManagementWindowsInformationProtectionAppLearningSummary","GET","/deviceManagement/windowsInformationProtectionAppLearningSummaries","matched","Get-MgDeviceManagementWindowsInformationProtectionAppLearningSummary" +"DeviceManagement","GetMgDeviceManagementWindowsInformationProtectionAppLearningSummary.g.cs","v1.0","Get-MgDeviceManagementWindowsInformationProtectionAppLearningSummary","","","dispatcher","" +"DeviceManagement","GetMgDeviceManagementWindowsInformationProtectionAppLearningSummaryCount.g.cs","v1.0","Get-MgDeviceManagementWindowsInformationProtectionAppLearningSummaryCount","GET","/deviceManagement/windowsInformationProtectionAppLearningSummaries/$count","matched","Get-MgDeviceManagementWindowsInformationProtectionAppLearningSummaryCount" +"DeviceManagement","GetMgDeviceManagementWindowsInformationProtectionNetworkLearningSummary_Get.g.cs","v1.0","Get-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary","GET","/deviceManagement/windowsInformationProtectionNetworkLearningSummaries/{param}","matched","Get-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary" +"DeviceManagement","GetMgDeviceManagementWindowsInformationProtectionNetworkLearningSummary_List.g.cs","v1.0","Get-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary","GET","/deviceManagement/windowsInformationProtectionNetworkLearningSummaries","matched","Get-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary" +"DeviceManagement","GetMgDeviceManagementWindowsInformationProtectionNetworkLearningSummary.g.cs","v1.0","Get-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary","","","dispatcher","" +"DeviceManagement","GetMgDeviceManagementWindowsInformationProtectionNetworkLearningSummaryCount.g.cs","v1.0","Get-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummaryCount","GET","/deviceManagement/windowsInformationProtectionNetworkLearningSummaries/$count","matched","Get-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummaryCount" +"DeviceManagement","GetMgDeviceManagementWindowsMalwareInformation_Get.g.cs","v1.0","Get-MgDeviceManagementWindowsMalwareInformation","GET","/deviceManagement/windowsMalwareInformation/{param}","matched","Get-MgDeviceManagementWindowsMalwareInformation" +"DeviceManagement","GetMgDeviceManagementWindowsMalwareInformation_List.g.cs","v1.0","Get-MgDeviceManagementWindowsMalwareInformation","GET","/deviceManagement/windowsMalwareInformation","matched","Get-MgDeviceManagementWindowsMalwareInformation" +"DeviceManagement","GetMgDeviceManagementWindowsMalwareInformation.g.cs","v1.0","Get-MgDeviceManagementWindowsMalwareInformation","","","dispatcher","" +"DeviceManagement","GetMgDeviceManagementWindowsMalwareInformationCount.g.cs","v1.0","Get-MgDeviceManagementWindowsMalwareInformationCount","GET","/deviceManagement/windowsMalwareInformation/$count","matched","Get-MgDeviceManagementWindowsMalwareInformationCount" +"DeviceManagement","GetMgDeviceManagementWindowsMalwareInformationDeviceMalwareState_Get.g.cs","v1.0","Get-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState","GET","/deviceManagement/windowsMalwareInformation/{param}/deviceMalwareStates/{param}","matched","Get-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState" +"DeviceManagement","GetMgDeviceManagementWindowsMalwareInformationDeviceMalwareState_List.g.cs","v1.0","Get-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState","GET","/deviceManagement/windowsMalwareInformation/{param}/deviceMalwareStates","matched","Get-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState" +"DeviceManagement","GetMgDeviceManagementWindowsMalwareInformationDeviceMalwareState.g.cs","v1.0","Get-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState","","","dispatcher","" +"DeviceManagement","GetMgDeviceManagementWindowsMalwareInformationDeviceMalwareStateCount.g.cs","v1.0","Get-MgDeviceManagementWindowsMalwareInformationDeviceMalwareStateCount","GET","/deviceManagement/windowsMalwareInformation/{param}/deviceMalwareStates/$count","matched","Get-MgDeviceManagementWindowsMalwareInformationDeviceMalwareStateCount" +"DeviceManagement","InvokeMgAdminEdgeInternetExplorerModeSiteListPublish.g.cs","v1.0","Invoke-MgAdminEdgeInternetExplorerModeSiteListPublish","POST","/admin/edge/internetExplorerMode/siteLists/{param}/publish","mismatch","Publish-MgAdminEdgeInternetExplorerModeSiteList" +"DeviceManagement","InvokeMgDeviceManagementDeviceCompliancePolicyAssign.g.cs","v1.0","Invoke-MgDeviceManagementDeviceCompliancePolicyAssign","POST","/deviceManagement/deviceCompliancePolicies/{param}/assign","mismatch","Set-MgDeviceManagementDeviceCompliancePolicy" +"DeviceManagement","InvokeMgDeviceManagementDeviceCompliancePolicyScheduleActionsForRules.g.cs","v1.0","Invoke-MgDeviceManagementDeviceCompliancePolicyScheduleActionsForRules","POST","/deviceManagement/deviceCompliancePolicies/{param}/scheduleActionsForRules","mismatch","Invoke-MgScheduleDeviceManagementDeviceCompliancePolicyActionForRule" +"DeviceManagement","InvokeMgDeviceManagementDeviceConfigurationAssign.g.cs","v1.0","Invoke-MgDeviceManagementDeviceConfigurationAssign","POST","/deviceManagement/deviceConfigurations/{param}/assign","mismatch","Set-MgDeviceManagementDeviceConfiguration" +"DeviceManagement","InvokeMgDeviceManagementManagedDeviceBypassActivationLock.g.cs","v1.0","Invoke-MgDeviceManagementManagedDeviceBypassActivationLock","POST","/deviceManagement/managedDevices/{param}/bypassActivationLock","mismatch","Skip-MgDeviceManagementManagedDeviceActivationLock" +"DeviceManagement","InvokeMgDeviceManagementManagedDeviceCleanWindowsDevice.g.cs","v1.0","Invoke-MgDeviceManagementManagedDeviceCleanWindowsDevice","POST","/deviceManagement/managedDevices/{param}/cleanWindowsDevice","mismatch","Invoke-MgCleanDeviceManagementManagedDeviceWindowsDevice" +"DeviceManagement","InvokeMgDeviceManagementManagedDeviceDeleteUserFromSharedAppleDevice.g.cs","v1.0","Invoke-MgDeviceManagementManagedDeviceDeleteUserFromSharedAppleDevice","POST","/deviceManagement/managedDevices/{param}/deleteUserFromSharedAppleDevice","mismatch","Remove-MgDeviceManagementManagedDeviceUserFromSharedAppleDevice" +"DeviceManagement","InvokeMgDeviceManagementManagedDeviceDisableLostMode.g.cs","v1.0","Invoke-MgDeviceManagementManagedDeviceDisableLostMode","POST","/deviceManagement/managedDevices/{param}/disableLostMode","mismatch","Disable-MgDeviceManagementManagedDeviceLostMode" +"DeviceManagement","InvokeMgDeviceManagementManagedDeviceLocateDevice.g.cs","v1.0","Invoke-MgDeviceManagementManagedDeviceLocateDevice","POST","/deviceManagement/managedDevices/{param}/locateDevice","mismatch","Find-MgDeviceManagementManagedDevice" +"DeviceManagement","InvokeMgDeviceManagementManagedDeviceLogCollectionRequestCreateDownloadUrl.g.cs","v1.0","Invoke-MgDeviceManagementManagedDeviceLogCollectionRequestCreateDownloadUrl","POST","/deviceManagement/managedDevices/{param}/logCollectionRequests/{param}/createDownloadUrl","mismatch","New-MgDeviceManagementManagedDeviceLogCollectionRequestDownloadUrl" +"DeviceManagement","InvokeMgDeviceManagementManagedDeviceLogoutSharedAppleDeviceActiveUser.g.cs","v1.0","Invoke-MgDeviceManagementManagedDeviceLogoutSharedAppleDeviceActiveUser","POST","/deviceManagement/managedDevices/{param}/logoutSharedAppleDeviceActiveUser","mismatch","Invoke-MgLogoutDeviceManagementManagedDeviceSharedAppleDeviceActiveUser" +"DeviceManagement","InvokeMgDeviceManagementManagedDeviceRebootNow.g.cs","v1.0","Invoke-MgDeviceManagementManagedDeviceRebootNow","POST","/deviceManagement/managedDevices/{param}/rebootNow","mismatch","Restart-MgDeviceManagementManagedDeviceNow" +"DeviceManagement","InvokeMgDeviceManagementManagedDeviceRecoverPasscode.g.cs","v1.0","Invoke-MgDeviceManagementManagedDeviceRecoverPasscode","POST","/deviceManagement/managedDevices/{param}/recoverPasscode","mismatch","Restore-MgDeviceManagementManagedDevicePasscode" +"DeviceManagement","InvokeMgDeviceManagementManagedDeviceRemoteLock.g.cs","v1.0","Invoke-MgDeviceManagementManagedDeviceRemoteLock","POST","/deviceManagement/managedDevices/{param}/remoteLock","mismatch","Lock-MgDeviceManagementManagedDeviceRemote" +"DeviceManagement","InvokeMgDeviceManagementManagedDeviceRequestRemoteAssistance.g.cs","v1.0","Invoke-MgDeviceManagementManagedDeviceRequestRemoteAssistance","POST","/deviceManagement/managedDevices/{param}/requestRemoteAssistance","mismatch","Request-MgDeviceManagementManagedDeviceRemoteAssistance" +"DeviceManagement","InvokeMgDeviceManagementManagedDeviceResetPasscode.g.cs","v1.0","Invoke-MgDeviceManagementManagedDeviceResetPasscode","POST","/deviceManagement/managedDevices/{param}/resetPasscode","mismatch","Reset-MgDeviceManagementManagedDevicePasscode" +"DeviceManagement","InvokeMgDeviceManagementManagedDeviceRetire.g.cs","v1.0","Invoke-MgDeviceManagementManagedDeviceRetire","POST","/deviceManagement/managedDevices/{param}/retire","mismatch","Invoke-MgRetireDeviceManagementManagedDevice" +"DeviceManagement","InvokeMgDeviceManagementManagedDeviceShutDown.g.cs","v1.0","Invoke-MgDeviceManagementManagedDeviceShutDown","POST","/deviceManagement/managedDevices/{param}/shutDown","mismatch","Invoke-MgDownDeviceManagementManagedDeviceShut" +"DeviceManagement","InvokeMgDeviceManagementManagedDeviceSyncDevice.g.cs","v1.0","Invoke-MgDeviceManagementManagedDeviceSyncDevice","POST","/deviceManagement/managedDevices/{param}/syncDevice","mismatch","Sync-MgDeviceManagementManagedDevice" +"DeviceManagement","InvokeMgDeviceManagementManagedDeviceUpdateWindowsDeviceAccount.g.cs","v1.0","Invoke-MgDeviceManagementManagedDeviceUpdateWindowsDeviceAccount","POST","/deviceManagement/managedDevices/{param}/updateWindowsDeviceAccount","mismatch","Update-MgDeviceManagementManagedDeviceWindowsDeviceAccount" +"DeviceManagement","InvokeMgDeviceManagementManagedDeviceWindowsDefenderScan.g.cs","v1.0","Invoke-MgDeviceManagementManagedDeviceWindowsDefenderScan","POST","/deviceManagement/managedDevices/{param}/windowsDefenderScan","mismatch","Invoke-MgScanDeviceManagementManagedDeviceWindowsDefender" +"DeviceManagement","InvokeMgDeviceManagementManagedDeviceWindowsDefenderUpdateSignatures.g.cs","v1.0","Invoke-MgDeviceManagementManagedDeviceWindowsDefenderUpdateSignatures","POST","/deviceManagement/managedDevices/{param}/windowsDefenderUpdateSignatures","no-oracle","" +"DeviceManagement","InvokeMgDeviceManagementManagedDeviceWipe.g.cs","v1.0","Invoke-MgDeviceManagementManagedDeviceWipe","POST","/deviceManagement/managedDevices/{param}/wipe","mismatch","Clear-MgDeviceManagementManagedDevice" +"DeviceManagement","InvokeMgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestCreateDownloadUrl.g.cs","v1.0","Invoke-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestCreateDownloadUrl","POST","/deviceManagement/mobileAppTroubleshootingEvents/{param}/appLogCollectionRequests/{param}/createDownloadUrl","mismatch","New-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestDownloadUrl" +"DeviceManagement","InvokeMgDeviceManagementNotificationMessageTemplateSendTestMessage.g.cs","v1.0","Invoke-MgDeviceManagementNotificationMessageTemplateSendTestMessage","POST","/deviceManagement/notificationMessageTemplates/{param}/sendTestMessage","mismatch","Send-MgDeviceManagementNotificationMessageTemplateTestMessage" +"DeviceManagement","NewMgAdminEdgeInternetExplorerModeSiteList.g.cs","v1.0","New-MgAdminEdgeInternetExplorerModeSiteList","POST","/admin/edge/internetExplorerMode/siteLists","matched","New-MgAdminEdgeInternetExplorerModeSiteList" +"DeviceManagement","NewMgAdminEdgeInternetExplorerModeSiteListSharedCookie.g.cs","v1.0","New-MgAdminEdgeInternetExplorerModeSiteListSharedCookie","POST","/admin/edge/internetExplorerMode/siteLists/{param}/sharedCookies","matched","New-MgAdminEdgeInternetExplorerModeSiteListSharedCookie" +"DeviceManagement","NewMgAdminEdgeInternetExplorerModeSiteListSite.g.cs","v1.0","New-MgAdminEdgeInternetExplorerModeSiteListSite","POST","/admin/edge/internetExplorerMode/siteLists/{param}/sites","matched","New-MgAdminEdgeInternetExplorerModeSiteListSite" +"DeviceManagement","NewMgDeviceManagementDetectedApp.g.cs","v1.0","New-MgDeviceManagementDetectedApp","POST","/deviceManagement/detectedApps","matched","New-MgDeviceManagementDetectedApp" +"DeviceManagement","NewMgDeviceManagementDeviceCategory.g.cs","v1.0","New-MgDeviceManagementDeviceCategory","POST","/deviceManagement/deviceCategories","matched","New-MgDeviceManagementDeviceCategory" +"DeviceManagement","NewMgDeviceManagementDeviceCompliancePolicy.g.cs","v1.0","New-MgDeviceManagementDeviceCompliancePolicy","POST","/deviceManagement/deviceCompliancePolicies","matched","New-MgDeviceManagementDeviceCompliancePolicy" +"DeviceManagement","NewMgDeviceManagementDeviceCompliancePolicyAssignment.g.cs","v1.0","New-MgDeviceManagementDeviceCompliancePolicyAssignment","POST","/deviceManagement/deviceCompliancePolicies/{param}/assignments","matched","New-MgDeviceManagementDeviceCompliancePolicyAssignment" +"DeviceManagement","NewMgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary.g.cs","v1.0","New-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary","POST","/deviceManagement/deviceCompliancePolicies/{param}/deviceSettingStateSummaries","matched","New-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary" +"DeviceManagement","NewMgDeviceManagementDeviceCompliancePolicyDeviceStatus.g.cs","v1.0","New-MgDeviceManagementDeviceCompliancePolicyDeviceStatus","POST","/deviceManagement/deviceCompliancePolicies/{param}/deviceStatuses","matched","New-MgDeviceManagementDeviceCompliancePolicyDeviceStatus" +"DeviceManagement","NewMgDeviceManagementDeviceCompliancePolicyScheduledActionForRule.g.cs","v1.0","New-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule","POST","/deviceManagement/deviceCompliancePolicies/{param}/scheduledActionsForRule","matched","New-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule" +"DeviceManagement","NewMgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration.g.cs","v1.0","New-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration","POST","/deviceManagement/deviceCompliancePolicies/{param}/scheduledActionsForRule/{param}/scheduledActionConfigurations","matched","New-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration" +"DeviceManagement","NewMgDeviceManagementDeviceCompliancePolicySettingStateSummary.g.cs","v1.0","New-MgDeviceManagementDeviceCompliancePolicySettingStateSummary","POST","/deviceManagement/deviceCompliancePolicySettingStateSummaries","matched","New-MgDeviceManagementDeviceCompliancePolicySettingStateSummary" +"DeviceManagement","NewMgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState.g.cs","v1.0","New-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState","POST","/deviceManagement/deviceCompliancePolicySettingStateSummaries/{param}/deviceComplianceSettingStates","matched","New-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState" +"DeviceManagement","NewMgDeviceManagementDeviceCompliancePolicyUserStatus.g.cs","v1.0","New-MgDeviceManagementDeviceCompliancePolicyUserStatus","POST","/deviceManagement/deviceCompliancePolicies/{param}/userStatuses","matched","New-MgDeviceManagementDeviceCompliancePolicyUserStatus" +"DeviceManagement","NewMgDeviceManagementDeviceConfiguration.g.cs","v1.0","New-MgDeviceManagementDeviceConfiguration","POST","/deviceManagement/deviceConfigurations","matched","New-MgDeviceManagementDeviceConfiguration" +"DeviceManagement","NewMgDeviceManagementDeviceConfigurationAssignment.g.cs","v1.0","New-MgDeviceManagementDeviceConfigurationAssignment","POST","/deviceManagement/deviceConfigurations/{param}/assignments","matched","New-MgDeviceManagementDeviceConfigurationAssignment" +"DeviceManagement","NewMgDeviceManagementDeviceConfigurationDeviceSettingStateSummary.g.cs","v1.0","New-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary","POST","/deviceManagement/deviceConfigurations/{param}/deviceSettingStateSummaries","matched","New-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary" +"DeviceManagement","NewMgDeviceManagementDeviceConfigurationDeviceStatus.g.cs","v1.0","New-MgDeviceManagementDeviceConfigurationDeviceStatus","POST","/deviceManagement/deviceConfigurations/{param}/deviceStatuses","matched","New-MgDeviceManagementDeviceConfigurationDeviceStatus" +"DeviceManagement","NewMgDeviceManagementDeviceConfigurationUserStatus.g.cs","v1.0","New-MgDeviceManagementDeviceConfigurationUserStatus","POST","/deviceManagement/deviceConfigurations/{param}/userStatuses","matched","New-MgDeviceManagementDeviceConfigurationUserStatus" +"DeviceManagement","NewMgDeviceManagementManagedDevice.g.cs","v1.0","New-MgDeviceManagementManagedDevice","POST","/deviceManagement/managedDevices","matched","New-MgDeviceManagementManagedDevice" +"DeviceManagement","NewMgDeviceManagementManagedDeviceCompliancePolicyState.g.cs","v1.0","New-MgDeviceManagementManagedDeviceCompliancePolicyState","POST","/deviceManagement/managedDevices/{param}/deviceCompliancePolicyStates","matched","New-MgDeviceManagementManagedDeviceCompliancePolicyState" +"DeviceManagement","NewMgDeviceManagementManagedDeviceConfigurationState.g.cs","v1.0","New-MgDeviceManagementManagedDeviceConfigurationState","POST","/deviceManagement/managedDevices/{param}/deviceConfigurationStates","matched","New-MgDeviceManagementManagedDeviceConfigurationState" +"DeviceManagement","NewMgDeviceManagementManagedDeviceLogCollectionRequest.g.cs","v1.0","New-MgDeviceManagementManagedDeviceLogCollectionRequest","POST","/deviceManagement/managedDevices/{param}/logCollectionRequests","no-oracle","" +"DeviceManagement","NewMgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState.g.cs","v1.0","New-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState","POST","/deviceManagement/managedDevices/{param}/windowsProtectionState/detectedMalwareState","matched","New-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState" +"DeviceManagement","NewMgDeviceManagementMobileAppTroubleshootingEvent.g.cs","v1.0","New-MgDeviceManagementMobileAppTroubleshootingEvent","POST","/deviceManagement/mobileAppTroubleshootingEvents","matched","New-MgDeviceManagementMobileAppTroubleshootingEvent" +"DeviceManagement","NewMgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest.g.cs","v1.0","New-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest","POST","/deviceManagement/mobileAppTroubleshootingEvents/{param}/appLogCollectionRequests","matched","New-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest" +"DeviceManagement","NewMgDeviceManagementNotificationMessageTemplate.g.cs","v1.0","New-MgDeviceManagementNotificationMessageTemplate","POST","/deviceManagement/notificationMessageTemplates","matched","New-MgDeviceManagementNotificationMessageTemplate" +"DeviceManagement","NewMgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage.g.cs","v1.0","New-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage","POST","/deviceManagement/notificationMessageTemplates/{param}/localizedNotificationMessages","matched","New-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage" +"DeviceManagement","NewMgDeviceManagementTroubleshootingEvent.g.cs","v1.0","New-MgDeviceManagementTroubleshootingEvent","POST","/deviceManagement/troubleshootingEvents","matched","New-MgDeviceManagementTroubleshootingEvent" +"DeviceManagement","NewMgDeviceManagementWindowsInformationProtectionAppLearningSummary.g.cs","v1.0","New-MgDeviceManagementWindowsInformationProtectionAppLearningSummary","POST","/deviceManagement/windowsInformationProtectionAppLearningSummaries","matched","New-MgDeviceManagementWindowsInformationProtectionAppLearningSummary" +"DeviceManagement","NewMgDeviceManagementWindowsInformationProtectionNetworkLearningSummary.g.cs","v1.0","New-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary","POST","/deviceManagement/windowsInformationProtectionNetworkLearningSummaries","matched","New-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary" +"DeviceManagement","NewMgDeviceManagementWindowsMalwareInformation.g.cs","v1.0","New-MgDeviceManagementWindowsMalwareInformation","POST","/deviceManagement/windowsMalwareInformation","matched","New-MgDeviceManagementWindowsMalwareInformation" +"DeviceManagement","NewMgDeviceManagementWindowsMalwareInformationDeviceMalwareState.g.cs","v1.0","New-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState","POST","/deviceManagement/windowsMalwareInformation/{param}/deviceMalwareStates","matched","New-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState" +"DeviceManagement","RemoveMgAdminEdge.g.cs","v1.0","Remove-MgAdminEdge","DELETE","/admin/edge","matched","Remove-MgAdminEdge" +"DeviceManagement","RemoveMgAdminEdgeInternetExplorerMode.g.cs","v1.0","Remove-MgAdminEdgeInternetExplorerMode","DELETE","/admin/edge/internetExplorerMode","matched","Remove-MgAdminEdgeInternetExplorerMode" +"DeviceManagement","RemoveMgAdminEdgeInternetExplorerModeSiteList.g.cs","v1.0","Remove-MgAdminEdgeInternetExplorerModeSiteList","DELETE","/admin/edge/internetExplorerMode/siteLists/{param}","matched","Remove-MgAdminEdgeInternetExplorerModeSiteList" +"DeviceManagement","RemoveMgAdminEdgeInternetExplorerModeSiteListSharedCookie.g.cs","v1.0","Remove-MgAdminEdgeInternetExplorerModeSiteListSharedCookie","DELETE","/admin/edge/internetExplorerMode/siteLists/{param}/sharedCookies/{param}","matched","Remove-MgAdminEdgeInternetExplorerModeSiteListSharedCookie" +"DeviceManagement","RemoveMgAdminEdgeInternetExplorerModeSiteListSite.g.cs","v1.0","Remove-MgAdminEdgeInternetExplorerModeSiteListSite","DELETE","/admin/edge/internetExplorerMode/siteLists/{param}/sites/{param}","matched","Remove-MgAdminEdgeInternetExplorerModeSiteListSite" +"DeviceManagement","RemoveMgDeviceManagementDetectedApp.g.cs","v1.0","Remove-MgDeviceManagementDetectedApp","DELETE","/deviceManagement/detectedApps/{param}","matched","Remove-MgDeviceManagementDetectedApp" +"DeviceManagement","RemoveMgDeviceManagementDeviceCategory.g.cs","v1.0","Remove-MgDeviceManagementDeviceCategory","DELETE","/deviceManagement/deviceCategories/{param}","matched","Remove-MgDeviceManagementDeviceCategory" +"DeviceManagement","RemoveMgDeviceManagementDeviceCompliancePolicy.g.cs","v1.0","Remove-MgDeviceManagementDeviceCompliancePolicy","DELETE","/deviceManagement/deviceCompliancePolicies/{param}","matched","Remove-MgDeviceManagementDeviceCompliancePolicy" +"DeviceManagement","RemoveMgDeviceManagementDeviceCompliancePolicyAssignment.g.cs","v1.0","Remove-MgDeviceManagementDeviceCompliancePolicyAssignment","DELETE","/deviceManagement/deviceCompliancePolicies/{param}/assignments/{param}","matched","Remove-MgDeviceManagementDeviceCompliancePolicyAssignment" +"DeviceManagement","RemoveMgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary.g.cs","v1.0","Remove-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary","DELETE","/deviceManagement/deviceCompliancePolicies/{param}/deviceSettingStateSummaries/{param}","matched","Remove-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary" +"DeviceManagement","RemoveMgDeviceManagementDeviceCompliancePolicyDeviceStateSummary.g.cs","v1.0","Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary","DELETE","/deviceManagement/deviceCompliancePolicyDeviceStateSummary","matched","Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary" +"DeviceManagement","RemoveMgDeviceManagementDeviceCompliancePolicyDeviceStatus.g.cs","v1.0","Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStatus","DELETE","/deviceManagement/deviceCompliancePolicies/{param}/deviceStatuses/{param}","matched","Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStatus" +"DeviceManagement","RemoveMgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview.g.cs","v1.0","Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview","DELETE","/deviceManagement/deviceCompliancePolicies/{param}/deviceStatusOverview","matched","Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview" +"DeviceManagement","RemoveMgDeviceManagementDeviceCompliancePolicyScheduledActionForRule.g.cs","v1.0","Remove-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule","DELETE","/deviceManagement/deviceCompliancePolicies/{param}/scheduledActionsForRule/{param}","matched","Remove-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule" +"DeviceManagement","RemoveMgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration.g.cs","v1.0","Remove-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration","DELETE","/deviceManagement/deviceCompliancePolicies/{param}/scheduledActionsForRule/{param}/scheduledActionConfigurations/{param}","matched","Remove-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration" +"DeviceManagement","RemoveMgDeviceManagementDeviceCompliancePolicySettingStateSummary.g.cs","v1.0","Remove-MgDeviceManagementDeviceCompliancePolicySettingStateSummary","DELETE","/deviceManagement/deviceCompliancePolicySettingStateSummaries/{param}","matched","Remove-MgDeviceManagementDeviceCompliancePolicySettingStateSummary" +"DeviceManagement","RemoveMgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState.g.cs","v1.0","Remove-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState","DELETE","/deviceManagement/deviceCompliancePolicySettingStateSummaries/{param}/deviceComplianceSettingStates/{param}","matched","Remove-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState" +"DeviceManagement","RemoveMgDeviceManagementDeviceCompliancePolicyUserStatus.g.cs","v1.0","Remove-MgDeviceManagementDeviceCompliancePolicyUserStatus","DELETE","/deviceManagement/deviceCompliancePolicies/{param}/userStatuses/{param}","matched","Remove-MgDeviceManagementDeviceCompliancePolicyUserStatus" +"DeviceManagement","RemoveMgDeviceManagementDeviceCompliancePolicyUserStatusOverview.g.cs","v1.0","Remove-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview","DELETE","/deviceManagement/deviceCompliancePolicies/{param}/userStatusOverview","matched","Remove-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview" +"DeviceManagement","RemoveMgDeviceManagementDeviceConfiguration.g.cs","v1.0","Remove-MgDeviceManagementDeviceConfiguration","DELETE","/deviceManagement/deviceConfigurations/{param}","matched","Remove-MgDeviceManagementDeviceConfiguration" +"DeviceManagement","RemoveMgDeviceManagementDeviceConfigurationAssignment.g.cs","v1.0","Remove-MgDeviceManagementDeviceConfigurationAssignment","DELETE","/deviceManagement/deviceConfigurations/{param}/assignments/{param}","matched","Remove-MgDeviceManagementDeviceConfigurationAssignment" +"DeviceManagement","RemoveMgDeviceManagementDeviceConfigurationDeviceSettingStateSummary.g.cs","v1.0","Remove-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary","DELETE","/deviceManagement/deviceConfigurations/{param}/deviceSettingStateSummaries/{param}","matched","Remove-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary" +"DeviceManagement","RemoveMgDeviceManagementDeviceConfigurationDeviceStateSummary.g.cs","v1.0","Remove-MgDeviceManagementDeviceConfigurationDeviceStateSummary","DELETE","/deviceManagement/deviceConfigurationDeviceStateSummaries","matched","Remove-MgDeviceManagementDeviceConfigurationDeviceStateSummary" +"DeviceManagement","RemoveMgDeviceManagementDeviceConfigurationDeviceStatus.g.cs","v1.0","Remove-MgDeviceManagementDeviceConfigurationDeviceStatus","DELETE","/deviceManagement/deviceConfigurations/{param}/deviceStatuses/{param}","matched","Remove-MgDeviceManagementDeviceConfigurationDeviceStatus" +"DeviceManagement","RemoveMgDeviceManagementDeviceConfigurationDeviceStatusOverview.g.cs","v1.0","Remove-MgDeviceManagementDeviceConfigurationDeviceStatusOverview","DELETE","/deviceManagement/deviceConfigurations/{param}/deviceStatusOverview","matched","Remove-MgDeviceManagementDeviceConfigurationDeviceStatusOverview" +"DeviceManagement","RemoveMgDeviceManagementDeviceConfigurationUserStatus.g.cs","v1.0","Remove-MgDeviceManagementDeviceConfigurationUserStatus","DELETE","/deviceManagement/deviceConfigurations/{param}/userStatuses/{param}","matched","Remove-MgDeviceManagementDeviceConfigurationUserStatus" +"DeviceManagement","RemoveMgDeviceManagementDeviceConfigurationUserStatusOverview.g.cs","v1.0","Remove-MgDeviceManagementDeviceConfigurationUserStatusOverview","DELETE","/deviceManagement/deviceConfigurations/{param}/userStatusOverview","matched","Remove-MgDeviceManagementDeviceConfigurationUserStatusOverview" +"DeviceManagement","RemoveMgDeviceManagementManagedDevice.g.cs","v1.0","Remove-MgDeviceManagementManagedDevice","DELETE","/deviceManagement/managedDevices/{param}","matched","Remove-MgDeviceManagementManagedDevice" +"DeviceManagement","RemoveMgDeviceManagementManagedDeviceCategory.g.cs","v1.0","Remove-MgDeviceManagementManagedDeviceCategory","DELETE","/deviceManagement/managedDevices/{param}/deviceCategory","matched","Remove-MgDeviceManagementManagedDeviceCategory" +"DeviceManagement","RemoveMgDeviceManagementManagedDeviceCategoryByRef.g.cs","v1.0","Remove-MgDeviceManagementManagedDeviceCategoryByRef","DELETE","/deviceManagement/managedDevices/{param}/deviceCategory/$ref","matched","Remove-MgDeviceManagementManagedDeviceCategoryByRef" +"DeviceManagement","RemoveMgDeviceManagementManagedDeviceCompliancePolicyState.g.cs","v1.0","Remove-MgDeviceManagementManagedDeviceCompliancePolicyState","DELETE","/deviceManagement/managedDevices/{param}/deviceCompliancePolicyStates/{param}","matched","Remove-MgDeviceManagementManagedDeviceCompliancePolicyState" +"DeviceManagement","RemoveMgDeviceManagementManagedDeviceConfigurationState.g.cs","v1.0","Remove-MgDeviceManagementManagedDeviceConfigurationState","DELETE","/deviceManagement/managedDevices/{param}/deviceConfigurationStates/{param}","matched","Remove-MgDeviceManagementManagedDeviceConfigurationState" +"DeviceManagement","RemoveMgDeviceManagementManagedDeviceLogCollectionRequest.g.cs","v1.0","Remove-MgDeviceManagementManagedDeviceLogCollectionRequest","DELETE","/deviceManagement/managedDevices/{param}/logCollectionRequests/{param}","matched","Remove-MgDeviceManagementManagedDeviceLogCollectionRequest" +"DeviceManagement","RemoveMgDeviceManagementManagedDeviceWindowsProtectionState.g.cs","v1.0","Remove-MgDeviceManagementManagedDeviceWindowsProtectionState","DELETE","/deviceManagement/managedDevices/{param}/windowsProtectionState","matched","Remove-MgDeviceManagementManagedDeviceWindowsProtectionState" +"DeviceManagement","RemoveMgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState.g.cs","v1.0","Remove-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState","DELETE","/deviceManagement/managedDevices/{param}/windowsProtectionState/detectedMalwareState/{param}","matched","Remove-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState" +"DeviceManagement","RemoveMgDeviceManagementMobileAppTroubleshootingEvent.g.cs","v1.0","Remove-MgDeviceManagementMobileAppTroubleshootingEvent","DELETE","/deviceManagement/mobileAppTroubleshootingEvents/{param}","matched","Remove-MgDeviceManagementMobileAppTroubleshootingEvent" +"DeviceManagement","RemoveMgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest.g.cs","v1.0","Remove-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest","DELETE","/deviceManagement/mobileAppTroubleshootingEvents/{param}/appLogCollectionRequests/{param}","matched","Remove-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest" +"DeviceManagement","RemoveMgDeviceManagementNotificationMessageTemplate.g.cs","v1.0","Remove-MgDeviceManagementNotificationMessageTemplate","DELETE","/deviceManagement/notificationMessageTemplates/{param}","matched","Remove-MgDeviceManagementNotificationMessageTemplate" +"DeviceManagement","RemoveMgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage.g.cs","v1.0","Remove-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage","DELETE","/deviceManagement/notificationMessageTemplates/{param}/localizedNotificationMessages/{param}","matched","Remove-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage" +"DeviceManagement","RemoveMgDeviceManagementTroubleshootingEvent.g.cs","v1.0","Remove-MgDeviceManagementTroubleshootingEvent","DELETE","/deviceManagement/troubleshootingEvents/{param}","matched","Remove-MgDeviceManagementTroubleshootingEvent" +"DeviceManagement","RemoveMgDeviceManagementWindowsInformationProtectionAppLearningSummary.g.cs","v1.0","Remove-MgDeviceManagementWindowsInformationProtectionAppLearningSummary","DELETE","/deviceManagement/windowsInformationProtectionAppLearningSummaries/{param}","matched","Remove-MgDeviceManagementWindowsInformationProtectionAppLearningSummary" +"DeviceManagement","RemoveMgDeviceManagementWindowsInformationProtectionNetworkLearningSummary.g.cs","v1.0","Remove-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary","DELETE","/deviceManagement/windowsInformationProtectionNetworkLearningSummaries/{param}","matched","Remove-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary" +"DeviceManagement","RemoveMgDeviceManagementWindowsMalwareInformation.g.cs","v1.0","Remove-MgDeviceManagementWindowsMalwareInformation","DELETE","/deviceManagement/windowsMalwareInformation/{param}","matched","Remove-MgDeviceManagementWindowsMalwareInformation" +"DeviceManagement","RemoveMgDeviceManagementWindowsMalwareInformationDeviceMalwareState.g.cs","v1.0","Remove-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState","DELETE","/deviceManagement/windowsMalwareInformation/{param}/deviceMalwareStates/{param}","matched","Remove-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState" +"DeviceManagement","SetMgDeviceManagementManagedDeviceCategoryByRef.g.cs","v1.0","Set-MgDeviceManagementManagedDeviceCategoryByRef","PUT","/deviceManagement/managedDevices/{param}/deviceCategory/$ref","matched","Set-MgDeviceManagementManagedDeviceCategoryByRef" +"DeviceManagement","UpdateMgAdminEdge.g.cs","v1.0","Update-MgAdminEdge","PATCH","/admin/edge","matched","Update-MgAdminEdge" +"DeviceManagement","UpdateMgAdminEdgeInternetExplorerMode.g.cs","v1.0","Update-MgAdminEdgeInternetExplorerMode","PATCH","/admin/edge/internetExplorerMode","matched","Update-MgAdminEdgeInternetExplorerMode" +"DeviceManagement","UpdateMgAdminEdgeInternetExplorerModeSiteList.g.cs","v1.0","Update-MgAdminEdgeInternetExplorerModeSiteList","PATCH","/admin/edge/internetExplorerMode/siteLists/{param}","matched","Update-MgAdminEdgeInternetExplorerModeSiteList" +"DeviceManagement","UpdateMgAdminEdgeInternetExplorerModeSiteListSharedCookie.g.cs","v1.0","Update-MgAdminEdgeInternetExplorerModeSiteListSharedCookie","PATCH","/admin/edge/internetExplorerMode/siteLists/{param}/sharedCookies/{param}","matched","Update-MgAdminEdgeInternetExplorerModeSiteListSharedCookie" +"DeviceManagement","UpdateMgAdminEdgeInternetExplorerModeSiteListSite.g.cs","v1.0","Update-MgAdminEdgeInternetExplorerModeSiteListSite","PATCH","/admin/edge/internetExplorerMode/siteLists/{param}/sites/{param}","matched","Update-MgAdminEdgeInternetExplorerModeSiteListSite" +"DeviceManagement","UpdateMgDeviceManagement.g.cs","v1.0","Update-MgDeviceManagement","PATCH","/deviceManagement","matched","Update-MgDeviceManagement" +"DeviceManagement","UpdateMgDeviceManagementDetectedApp.g.cs","v1.0","Update-MgDeviceManagementDetectedApp","PATCH","/deviceManagement/detectedApps/{param}","matched","Update-MgDeviceManagementDetectedApp" +"DeviceManagement","UpdateMgDeviceManagementDeviceCategory.g.cs","v1.0","Update-MgDeviceManagementDeviceCategory","PATCH","/deviceManagement/deviceCategories/{param}","matched","Update-MgDeviceManagementDeviceCategory" +"DeviceManagement","UpdateMgDeviceManagementDeviceCompliancePolicy.g.cs","v1.0","Update-MgDeviceManagementDeviceCompliancePolicy","PATCH","/deviceManagement/deviceCompliancePolicies/{param}","matched","Update-MgDeviceManagementDeviceCompliancePolicy" +"DeviceManagement","UpdateMgDeviceManagementDeviceCompliancePolicyAssignment.g.cs","v1.0","Update-MgDeviceManagementDeviceCompliancePolicyAssignment","PATCH","/deviceManagement/deviceCompliancePolicies/{param}/assignments/{param}","matched","Update-MgDeviceManagementDeviceCompliancePolicyAssignment" +"DeviceManagement","UpdateMgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary.g.cs","v1.0","Update-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary","PATCH","/deviceManagement/deviceCompliancePolicies/{param}/deviceSettingStateSummaries/{param}","matched","Update-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary" +"DeviceManagement","UpdateMgDeviceManagementDeviceCompliancePolicyDeviceStateSummary.g.cs","v1.0","Update-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary","PATCH","/deviceManagement/deviceCompliancePolicyDeviceStateSummary","matched","Update-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary" +"DeviceManagement","UpdateMgDeviceManagementDeviceCompliancePolicyDeviceStatus.g.cs","v1.0","Update-MgDeviceManagementDeviceCompliancePolicyDeviceStatus","PATCH","/deviceManagement/deviceCompliancePolicies/{param}/deviceStatuses/{param}","matched","Update-MgDeviceManagementDeviceCompliancePolicyDeviceStatus" +"DeviceManagement","UpdateMgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview.g.cs","v1.0","Update-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview","PATCH","/deviceManagement/deviceCompliancePolicies/{param}/deviceStatusOverview","matched","Update-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview" +"DeviceManagement","UpdateMgDeviceManagementDeviceCompliancePolicyScheduledActionForRule.g.cs","v1.0","Update-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule","PATCH","/deviceManagement/deviceCompliancePolicies/{param}/scheduledActionsForRule/{param}","matched","Update-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule" +"DeviceManagement","UpdateMgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration.g.cs","v1.0","Update-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration","PATCH","/deviceManagement/deviceCompliancePolicies/{param}/scheduledActionsForRule/{param}/scheduledActionConfigurations/{param}","matched","Update-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration" +"DeviceManagement","UpdateMgDeviceManagementDeviceCompliancePolicySettingStateSummary.g.cs","v1.0","Update-MgDeviceManagementDeviceCompliancePolicySettingStateSummary","PATCH","/deviceManagement/deviceCompliancePolicySettingStateSummaries/{param}","matched","Update-MgDeviceManagementDeviceCompliancePolicySettingStateSummary" +"DeviceManagement","UpdateMgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState.g.cs","v1.0","Update-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState","PATCH","/deviceManagement/deviceCompliancePolicySettingStateSummaries/{param}/deviceComplianceSettingStates/{param}","matched","Update-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState" +"DeviceManagement","UpdateMgDeviceManagementDeviceCompliancePolicyUserStatus.g.cs","v1.0","Update-MgDeviceManagementDeviceCompliancePolicyUserStatus","PATCH","/deviceManagement/deviceCompliancePolicies/{param}/userStatuses/{param}","matched","Update-MgDeviceManagementDeviceCompliancePolicyUserStatus" +"DeviceManagement","UpdateMgDeviceManagementDeviceCompliancePolicyUserStatusOverview.g.cs","v1.0","Update-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview","PATCH","/deviceManagement/deviceCompliancePolicies/{param}/userStatusOverview","matched","Update-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview" +"DeviceManagement","UpdateMgDeviceManagementDeviceConfiguration.g.cs","v1.0","Update-MgDeviceManagementDeviceConfiguration","PATCH","/deviceManagement/deviceConfigurations/{param}","matched","Update-MgDeviceManagementDeviceConfiguration" +"DeviceManagement","UpdateMgDeviceManagementDeviceConfigurationAssignment.g.cs","v1.0","Update-MgDeviceManagementDeviceConfigurationAssignment","PATCH","/deviceManagement/deviceConfigurations/{param}/assignments/{param}","matched","Update-MgDeviceManagementDeviceConfigurationAssignment" +"DeviceManagement","UpdateMgDeviceManagementDeviceConfigurationDeviceSettingStateSummary.g.cs","v1.0","Update-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary","PATCH","/deviceManagement/deviceConfigurations/{param}/deviceSettingStateSummaries/{param}","matched","Update-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary" +"DeviceManagement","UpdateMgDeviceManagementDeviceConfigurationDeviceStateSummary.g.cs","v1.0","Update-MgDeviceManagementDeviceConfigurationDeviceStateSummary","PATCH","/deviceManagement/deviceConfigurationDeviceStateSummaries","matched","Update-MgDeviceManagementDeviceConfigurationDeviceStateSummary" +"DeviceManagement","UpdateMgDeviceManagementDeviceConfigurationDeviceStatus.g.cs","v1.0","Update-MgDeviceManagementDeviceConfigurationDeviceStatus","PATCH","/deviceManagement/deviceConfigurations/{param}/deviceStatuses/{param}","matched","Update-MgDeviceManagementDeviceConfigurationDeviceStatus" +"DeviceManagement","UpdateMgDeviceManagementDeviceConfigurationDeviceStatusOverview.g.cs","v1.0","Update-MgDeviceManagementDeviceConfigurationDeviceStatusOverview","PATCH","/deviceManagement/deviceConfigurations/{param}/deviceStatusOverview","matched","Update-MgDeviceManagementDeviceConfigurationDeviceStatusOverview" +"DeviceManagement","UpdateMgDeviceManagementDeviceConfigurationUserStatus.g.cs","v1.0","Update-MgDeviceManagementDeviceConfigurationUserStatus","PATCH","/deviceManagement/deviceConfigurations/{param}/userStatuses/{param}","matched","Update-MgDeviceManagementDeviceConfigurationUserStatus" +"DeviceManagement","UpdateMgDeviceManagementDeviceConfigurationUserStatusOverview.g.cs","v1.0","Update-MgDeviceManagementDeviceConfigurationUserStatusOverview","PATCH","/deviceManagement/deviceConfigurations/{param}/userStatusOverview","matched","Update-MgDeviceManagementDeviceConfigurationUserStatusOverview" +"DeviceManagement","UpdateMgDeviceManagementManagedDevice.g.cs","v1.0","Update-MgDeviceManagementManagedDevice","PATCH","/deviceManagement/managedDevices/{param}","matched","Update-MgDeviceManagementManagedDevice" +"DeviceManagement","UpdateMgDeviceManagementManagedDeviceCategory.g.cs","v1.0","Update-MgDeviceManagementManagedDeviceCategory","PATCH","/deviceManagement/managedDevices/{param}/deviceCategory","matched","Update-MgDeviceManagementManagedDeviceCategory" +"DeviceManagement","UpdateMgDeviceManagementManagedDeviceCompliancePolicyState.g.cs","v1.0","Update-MgDeviceManagementManagedDeviceCompliancePolicyState","PATCH","/deviceManagement/managedDevices/{param}/deviceCompliancePolicyStates/{param}","matched","Update-MgDeviceManagementManagedDeviceCompliancePolicyState" +"DeviceManagement","UpdateMgDeviceManagementManagedDeviceConfigurationState.g.cs","v1.0","Update-MgDeviceManagementManagedDeviceConfigurationState","PATCH","/deviceManagement/managedDevices/{param}/deviceConfigurationStates/{param}","matched","Update-MgDeviceManagementManagedDeviceConfigurationState" +"DeviceManagement","UpdateMgDeviceManagementManagedDeviceLogCollectionRequest.g.cs","v1.0","Update-MgDeviceManagementManagedDeviceLogCollectionRequest","PATCH","/deviceManagement/managedDevices/{param}/logCollectionRequests/{param}","matched","Update-MgDeviceManagementManagedDeviceLogCollectionRequest" +"DeviceManagement","UpdateMgDeviceManagementManagedDeviceWindowsProtectionState.g.cs","v1.0","Update-MgDeviceManagementManagedDeviceWindowsProtectionState","PATCH","/deviceManagement/managedDevices/{param}/windowsProtectionState","matched","Update-MgDeviceManagementManagedDeviceWindowsProtectionState" +"DeviceManagement","UpdateMgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState.g.cs","v1.0","Update-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState","PATCH","/deviceManagement/managedDevices/{param}/windowsProtectionState/detectedMalwareState/{param}","matched","Update-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState" +"DeviceManagement","UpdateMgDeviceManagementMobileAppTroubleshootingEvent.g.cs","v1.0","Update-MgDeviceManagementMobileAppTroubleshootingEvent","PATCH","/deviceManagement/mobileAppTroubleshootingEvents/{param}","matched","Update-MgDeviceManagementMobileAppTroubleshootingEvent" +"DeviceManagement","UpdateMgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest.g.cs","v1.0","Update-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest","PATCH","/deviceManagement/mobileAppTroubleshootingEvents/{param}/appLogCollectionRequests/{param}","matched","Update-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest" +"DeviceManagement","UpdateMgDeviceManagementNotificationMessageTemplate.g.cs","v1.0","Update-MgDeviceManagementNotificationMessageTemplate","PATCH","/deviceManagement/notificationMessageTemplates/{param}","matched","Update-MgDeviceManagementNotificationMessageTemplate" +"DeviceManagement","UpdateMgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage.g.cs","v1.0","Update-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage","PATCH","/deviceManagement/notificationMessageTemplates/{param}/localizedNotificationMessages/{param}","matched","Update-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage" +"DeviceManagement","UpdateMgDeviceManagementTroubleshootingEvent.g.cs","v1.0","Update-MgDeviceManagementTroubleshootingEvent","PATCH","/deviceManagement/troubleshootingEvents/{param}","matched","Update-MgDeviceManagementTroubleshootingEvent" +"DeviceManagement","UpdateMgDeviceManagementWindowsInformationProtectionAppLearningSummary.g.cs","v1.0","Update-MgDeviceManagementWindowsInformationProtectionAppLearningSummary","PATCH","/deviceManagement/windowsInformationProtectionAppLearningSummaries/{param}","matched","Update-MgDeviceManagementWindowsInformationProtectionAppLearningSummary" +"DeviceManagement","UpdateMgDeviceManagementWindowsInformationProtectionNetworkLearningSummary.g.cs","v1.0","Update-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary","PATCH","/deviceManagement/windowsInformationProtectionNetworkLearningSummaries/{param}","matched","Update-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary" +"DeviceManagement","UpdateMgDeviceManagementWindowsMalwareInformation.g.cs","v1.0","Update-MgDeviceManagementWindowsMalwareInformation","PATCH","/deviceManagement/windowsMalwareInformation/{param}","matched","Update-MgDeviceManagementWindowsMalwareInformation" +"DeviceManagement","UpdateMgDeviceManagementWindowsMalwareInformationDeviceMalwareState.g.cs","v1.0","Update-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState","PATCH","/deviceManagement/windowsMalwareInformation/{param}/deviceMalwareStates/{param}","matched","Update-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState" +"DeviceManagement.Administration","GetMgDeviceManagementApplePushNotificationCertificate.g.cs","v1.0","Get-MgDeviceManagementApplePushNotificationCertificate","GET","/deviceManagement/applePushNotificationCertificate","matched","Get-MgDeviceManagementApplePushNotificationCertificate" +"DeviceManagement.Administration","GetMgDeviceManagementApplePushNotificationCertificateDownloadApplePushNotificationCertificateSigningRequest.g.cs","v1.0","Get-MgDeviceManagementApplePushNotificationCertificateDownloadApplePushNotificationCertificateSigningRequest","GET","/deviceManagement/applePushNotificationCertificate/downloadApplePushNotificationCertificateSigningRequest","mismatch","Invoke-MgDownloadDeviceManagementApplePushNotificationCertificateApplePushNotificationCertificateSigningRequest" +"DeviceManagement.Administration","GetMgDeviceManagementAuditEvent_Get.g.cs","v1.0","Get-MgDeviceManagementAuditEvent","GET","/deviceManagement/auditEvents/{param}","matched","Get-MgDeviceManagementAuditEvent" +"DeviceManagement.Administration","GetMgDeviceManagementAuditEvent_List.g.cs","v1.0","Get-MgDeviceManagementAuditEvent","GET","/deviceManagement/auditEvents","matched","Get-MgDeviceManagementAuditEvent" +"DeviceManagement.Administration","GetMgDeviceManagementAuditEvent.g.cs","v1.0","Get-MgDeviceManagementAuditEvent","","","dispatcher","" +"DeviceManagement.Administration","GetMgDeviceManagementAuditEventCount.g.cs","v1.0","Get-MgDeviceManagementAuditEventCount","GET","/deviceManagement/auditEvents/$count","matched","Get-MgDeviceManagementAuditEventCount" +"DeviceManagement.Administration","GetMgDeviceManagementAuditEventGetAuditActivityTypesWithCategory.g.cs","v1.0","Get-MgDeviceManagementAuditEventGetAuditActivityTypesWithCategory","","","parameterized-function","" +"DeviceManagement.Administration","GetMgDeviceManagementAuditEventGetAuditCategories.g.cs","v1.0","Get-MgDeviceManagementAuditEventGetAuditCategories","GET","/deviceManagement/auditEvents/getAuditCategories","mismatch","Get-MgDeviceManagementAuditEventAuditCategory" +"DeviceManagement.Administration","GetMgDeviceManagementComplianceManagementPartner_Get.g.cs","v1.0","Get-MgDeviceManagementComplianceManagementPartner","GET","/deviceManagement/complianceManagementPartners/{param}","matched","Get-MgDeviceManagementComplianceManagementPartner" +"DeviceManagement.Administration","GetMgDeviceManagementComplianceManagementPartner_List.g.cs","v1.0","Get-MgDeviceManagementComplianceManagementPartner","GET","/deviceManagement/complianceManagementPartners","matched","Get-MgDeviceManagementComplianceManagementPartner" +"DeviceManagement.Administration","GetMgDeviceManagementComplianceManagementPartner.g.cs","v1.0","Get-MgDeviceManagementComplianceManagementPartner","","","dispatcher","" +"DeviceManagement.Administration","GetMgDeviceManagementComplianceManagementPartnerCount.g.cs","v1.0","Get-MgDeviceManagementComplianceManagementPartnerCount","GET","/deviceManagement/complianceManagementPartners/$count","matched","Get-MgDeviceManagementComplianceManagementPartnerCount" +"DeviceManagement.Administration","GetMgDeviceManagementDeviceManagementPartnerCount.g.cs","v1.0","Get-MgDeviceManagementDeviceManagementPartnerCount","GET","/deviceManagement/deviceManagementPartners/$count","mismatch","Get-MgDeviceManagementPartnerCount" +"DeviceManagement.Administration","GetMgDeviceManagementExchangeConnector_Get.g.cs","v1.0","Get-MgDeviceManagementExchangeConnector","GET","/deviceManagement/exchangeConnectors/{param}","matched","Get-MgDeviceManagementExchangeConnector" +"DeviceManagement.Administration","GetMgDeviceManagementExchangeConnector_List.g.cs","v1.0","Get-MgDeviceManagementExchangeConnector","GET","/deviceManagement/exchangeConnectors","matched","Get-MgDeviceManagementExchangeConnector" +"DeviceManagement.Administration","GetMgDeviceManagementExchangeConnector.g.cs","v1.0","Get-MgDeviceManagementExchangeConnector","","","dispatcher","" +"DeviceManagement.Administration","GetMgDeviceManagementExchangeConnectorCount.g.cs","v1.0","Get-MgDeviceManagementExchangeConnectorCount","GET","/deviceManagement/exchangeConnectors/$count","matched","Get-MgDeviceManagementExchangeConnectorCount" +"DeviceManagement.Administration","GetMgDeviceManagementIosUpdateStatus_Get.g.cs","v1.0","Get-MgDeviceManagementIosUpdateStatus","GET","/deviceManagement/iosUpdateStatuses/{param}","mismatch","Get-MgDeviceManagementIoUpdateStatus" +"DeviceManagement.Administration","GetMgDeviceManagementIosUpdateStatus_List.g.cs","v1.0","Get-MgDeviceManagementIosUpdateStatus","GET","/deviceManagement/iosUpdateStatuses","mismatch","Get-MgDeviceManagementIoUpdateStatus" +"DeviceManagement.Administration","GetMgDeviceManagementIosUpdateStatus.g.cs","v1.0","Get-MgDeviceManagementIosUpdateStatus","","","dispatcher","" +"DeviceManagement.Administration","GetMgDeviceManagementIosUpdateStatusCount.g.cs","v1.0","Get-MgDeviceManagementIosUpdateStatusCount","GET","/deviceManagement/iosUpdateStatuses/$count","mismatch","Get-MgDeviceManagementIoUpdateStatusCount" +"DeviceManagement.Administration","GetMgDeviceManagementMobileThreatDefenseConnector_Get.g.cs","v1.0","Get-MgDeviceManagementMobileThreatDefenseConnector","GET","/deviceManagement/mobileThreatDefenseConnectors/{param}","matched","Get-MgDeviceManagementMobileThreatDefenseConnector" +"DeviceManagement.Administration","GetMgDeviceManagementMobileThreatDefenseConnector_List.g.cs","v1.0","Get-MgDeviceManagementMobileThreatDefenseConnector","GET","/deviceManagement/mobileThreatDefenseConnectors","matched","Get-MgDeviceManagementMobileThreatDefenseConnector" +"DeviceManagement.Administration","GetMgDeviceManagementMobileThreatDefenseConnector.g.cs","v1.0","Get-MgDeviceManagementMobileThreatDefenseConnector","","","dispatcher","" +"DeviceManagement.Administration","GetMgDeviceManagementMobileThreatDefenseConnectorCount.g.cs","v1.0","Get-MgDeviceManagementMobileThreatDefenseConnectorCount","GET","/deviceManagement/mobileThreatDefenseConnectors/$count","matched","Get-MgDeviceManagementMobileThreatDefenseConnectorCount" +"DeviceManagement.Administration","GetMgDeviceManagementPartner_Get.g.cs","v1.0","Get-MgDeviceManagementPartner","GET","/deviceManagement/deviceManagementPartners/{param}","matched","Get-MgDeviceManagementPartner" +"DeviceManagement.Administration","GetMgDeviceManagementPartner_List.g.cs","v1.0","Get-MgDeviceManagementPartner","GET","/deviceManagement/deviceManagementPartners","matched","Get-MgDeviceManagementPartner" +"DeviceManagement.Administration","GetMgDeviceManagementPartner.g.cs","v1.0","Get-MgDeviceManagementPartner","","","dispatcher","" +"DeviceManagement.Administration","GetMgDeviceManagementRemoteAssistancePartner_Get.g.cs","v1.0","Get-MgDeviceManagementRemoteAssistancePartner","GET","/deviceManagement/remoteAssistancePartners/{param}","matched","Get-MgDeviceManagementRemoteAssistancePartner" +"DeviceManagement.Administration","GetMgDeviceManagementRemoteAssistancePartner_List.g.cs","v1.0","Get-MgDeviceManagementRemoteAssistancePartner","GET","/deviceManagement/remoteAssistancePartners","matched","Get-MgDeviceManagementRemoteAssistancePartner" +"DeviceManagement.Administration","GetMgDeviceManagementRemoteAssistancePartner.g.cs","v1.0","Get-MgDeviceManagementRemoteAssistancePartner","","","dispatcher","" +"DeviceManagement.Administration","GetMgDeviceManagementRemoteAssistancePartnerCount.g.cs","v1.0","Get-MgDeviceManagementRemoteAssistancePartnerCount","GET","/deviceManagement/remoteAssistancePartners/$count","matched","Get-MgDeviceManagementRemoteAssistancePartnerCount" +"DeviceManagement.Administration","GetMgDeviceManagementResourceOperation_Get.g.cs","v1.0","Get-MgDeviceManagementResourceOperation","GET","/deviceManagement/resourceOperations/{param}","matched","Get-MgDeviceManagementResourceOperation" +"DeviceManagement.Administration","GetMgDeviceManagementResourceOperation_List.g.cs","v1.0","Get-MgDeviceManagementResourceOperation","GET","/deviceManagement/resourceOperations","matched","Get-MgDeviceManagementResourceOperation" +"DeviceManagement.Administration","GetMgDeviceManagementResourceOperation.g.cs","v1.0","Get-MgDeviceManagementResourceOperation","","","dispatcher","" +"DeviceManagement.Administration","GetMgDeviceManagementResourceOperationCount.g.cs","v1.0","Get-MgDeviceManagementResourceOperationCount","GET","/deviceManagement/resourceOperations/$count","matched","Get-MgDeviceManagementResourceOperationCount" +"DeviceManagement.Administration","GetMgDeviceManagementRoleAssignment_Get.g.cs","v1.0","Get-MgDeviceManagementRoleAssignment","GET","/deviceManagement/roleAssignments/{param}","matched","Get-MgDeviceManagementRoleAssignment" +"DeviceManagement.Administration","GetMgDeviceManagementRoleAssignment_List.g.cs","v1.0","Get-MgDeviceManagementRoleAssignment","GET","/deviceManagement/roleAssignments","matched","Get-MgDeviceManagementRoleAssignment" +"DeviceManagement.Administration","GetMgDeviceManagementRoleAssignment.g.cs","v1.0","Get-MgDeviceManagementRoleAssignment","","","dispatcher","" +"DeviceManagement.Administration","GetMgDeviceManagementRoleAssignmentCount.g.cs","v1.0","Get-MgDeviceManagementRoleAssignmentCount","GET","/deviceManagement/roleAssignments/$count","matched","Get-MgDeviceManagementRoleAssignmentCount" +"DeviceManagement.Administration","GetMgDeviceManagementRoleAssignmentRoleDefinition.g.cs","v1.0","Get-MgDeviceManagementRoleAssignmentRoleDefinition","GET","/deviceManagement/roleAssignments/{param}/roleDefinition","matched","Get-MgDeviceManagementRoleAssignmentRoleDefinition" +"DeviceManagement.Administration","GetMgDeviceManagementRoleDefinition_Get.g.cs","v1.0","Get-MgDeviceManagementRoleDefinition","GET","/deviceManagement/roleDefinitions/{param}","matched","Get-MgDeviceManagementRoleDefinition" +"DeviceManagement.Administration","GetMgDeviceManagementRoleDefinition_List.g.cs","v1.0","Get-MgDeviceManagementRoleDefinition","GET","/deviceManagement/roleDefinitions","matched","Get-MgDeviceManagementRoleDefinition" +"DeviceManagement.Administration","GetMgDeviceManagementRoleDefinition.g.cs","v1.0","Get-MgDeviceManagementRoleDefinition","","","dispatcher","" +"DeviceManagement.Administration","GetMgDeviceManagementRoleDefinitionCount.g.cs","v1.0","Get-MgDeviceManagementRoleDefinitionCount","GET","/deviceManagement/roleDefinitions/$count","matched","Get-MgDeviceManagementRoleDefinitionCount" +"DeviceManagement.Administration","GetMgDeviceManagementRoleDefinitionRoleAssignment_Get.g.cs","v1.0","Get-MgDeviceManagementRoleDefinitionRoleAssignment","GET","/deviceManagement/roleDefinitions/{param}/roleAssignments/{param}","matched","Get-MgDeviceManagementRoleDefinitionRoleAssignment" +"DeviceManagement.Administration","GetMgDeviceManagementRoleDefinitionRoleAssignment_List.g.cs","v1.0","Get-MgDeviceManagementRoleDefinitionRoleAssignment","GET","/deviceManagement/roleDefinitions/{param}/roleAssignments","matched","Get-MgDeviceManagementRoleDefinitionRoleAssignment" +"DeviceManagement.Administration","GetMgDeviceManagementRoleDefinitionRoleAssignment.g.cs","v1.0","Get-MgDeviceManagementRoleDefinitionRoleAssignment","","","dispatcher","" +"DeviceManagement.Administration","GetMgDeviceManagementRoleDefinitionRoleAssignmentCount.g.cs","v1.0","Get-MgDeviceManagementRoleDefinitionRoleAssignmentCount","GET","/deviceManagement/roleDefinitions/{param}/roleAssignments/$count","matched","Get-MgDeviceManagementRoleDefinitionRoleAssignmentCount" +"DeviceManagement.Administration","GetMgDeviceManagementRoleDefinitionRoleAssignmentRoleDefinition.g.cs","v1.0","Get-MgDeviceManagementRoleDefinitionRoleAssignmentRoleDefinition","GET","/deviceManagement/roleDefinitions/{param}/roleAssignments/{param}/roleDefinition","matched","Get-MgDeviceManagementRoleDefinitionRoleAssignmentRoleDefinition" +"DeviceManagement.Administration","GetMgDeviceManagementTermAndCondition_Get.g.cs","v1.0","Get-MgDeviceManagementTermAndCondition","GET","/deviceManagement/termsAndConditions/{param}","matched","Get-MgDeviceManagementTermAndCondition" +"DeviceManagement.Administration","GetMgDeviceManagementTermAndCondition_List.g.cs","v1.0","Get-MgDeviceManagementTermAndCondition","GET","/deviceManagement/termsAndConditions","matched","Get-MgDeviceManagementTermAndCondition" +"DeviceManagement.Administration","GetMgDeviceManagementTermAndCondition.g.cs","v1.0","Get-MgDeviceManagementTermAndCondition","","","dispatcher","" +"DeviceManagement.Administration","GetMgDeviceManagementTermAndConditionAcceptanceStatus_Get.g.cs","v1.0","Get-MgDeviceManagementTermAndConditionAcceptanceStatus","GET","/deviceManagement/termsAndConditions/{param}/acceptanceStatuses/{param}","matched","Get-MgDeviceManagementTermAndConditionAcceptanceStatus" +"DeviceManagement.Administration","GetMgDeviceManagementTermAndConditionAcceptanceStatus_List.g.cs","v1.0","Get-MgDeviceManagementTermAndConditionAcceptanceStatus","GET","/deviceManagement/termsAndConditions/{param}/acceptanceStatuses","matched","Get-MgDeviceManagementTermAndConditionAcceptanceStatus" +"DeviceManagement.Administration","GetMgDeviceManagementTermAndConditionAcceptanceStatus.g.cs","v1.0","Get-MgDeviceManagementTermAndConditionAcceptanceStatus","","","dispatcher","" +"DeviceManagement.Administration","GetMgDeviceManagementTermAndConditionAcceptanceStatusCount.g.cs","v1.0","Get-MgDeviceManagementTermAndConditionAcceptanceStatusCount","GET","/deviceManagement/termsAndConditions/{param}/acceptanceStatuses/$count","matched","Get-MgDeviceManagementTermAndConditionAcceptanceStatusCount" +"DeviceManagement.Administration","GetMgDeviceManagementTermAndConditionAcceptanceStatusTermAndCondition.g.cs","v1.0","Get-MgDeviceManagementTermAndConditionAcceptanceStatusTermAndCondition","GET","/deviceManagement/termsAndConditions/{param}/acceptanceStatuses/{param}/termsAndConditions","matched","Get-MgDeviceManagementTermAndConditionAcceptanceStatusTermAndCondition" +"DeviceManagement.Administration","GetMgDeviceManagementTermAndConditionAssignment_Get.g.cs","v1.0","Get-MgDeviceManagementTermAndConditionAssignment","GET","/deviceManagement/termsAndConditions/{param}/assignments/{param}","matched","Get-MgDeviceManagementTermAndConditionAssignment" +"DeviceManagement.Administration","GetMgDeviceManagementTermAndConditionAssignment_List.g.cs","v1.0","Get-MgDeviceManagementTermAndConditionAssignment","GET","/deviceManagement/termsAndConditions/{param}/assignments","matched","Get-MgDeviceManagementTermAndConditionAssignment" +"DeviceManagement.Administration","GetMgDeviceManagementTermAndConditionAssignment.g.cs","v1.0","Get-MgDeviceManagementTermAndConditionAssignment","","","dispatcher","" +"DeviceManagement.Administration","GetMgDeviceManagementTermAndConditionAssignmentCount.g.cs","v1.0","Get-MgDeviceManagementTermAndConditionAssignmentCount","GET","/deviceManagement/termsAndConditions/{param}/assignments/$count","matched","Get-MgDeviceManagementTermAndConditionAssignmentCount" +"DeviceManagement.Administration","GetMgDeviceManagementTermAndConditionCount.g.cs","v1.0","Get-MgDeviceManagementTermAndConditionCount","GET","/deviceManagement/termsAndConditions/$count","matched","Get-MgDeviceManagementTermAndConditionCount" +"DeviceManagement.Administration","GetMgDeviceManagementVirtualEndpoint.g.cs","v1.0","Get-MgDeviceManagementVirtualEndpoint","GET","/deviceManagement/virtualEndpoint","matched","Get-MgDeviceManagementVirtualEndpoint" +"DeviceManagement.Administration","GetMgDeviceManagementVirtualEndpointAuditEvent_Get.g.cs","v1.0","Get-MgDeviceManagementVirtualEndpointAuditEvent","GET","/deviceManagement/virtualEndpoint/auditEvents/{param}","matched","Get-MgDeviceManagementVirtualEndpointAuditEvent" +"DeviceManagement.Administration","GetMgDeviceManagementVirtualEndpointAuditEvent_List.g.cs","v1.0","Get-MgDeviceManagementVirtualEndpointAuditEvent","GET","/deviceManagement/virtualEndpoint/auditEvents","matched","Get-MgDeviceManagementVirtualEndpointAuditEvent" +"DeviceManagement.Administration","GetMgDeviceManagementVirtualEndpointAuditEvent.g.cs","v1.0","Get-MgDeviceManagementVirtualEndpointAuditEvent","","","dispatcher","" +"DeviceManagement.Administration","GetMgDeviceManagementVirtualEndpointAuditEventCount.g.cs","v1.0","Get-MgDeviceManagementVirtualEndpointAuditEventCount","GET","/deviceManagement/virtualEndpoint/auditEvents/$count","matched","Get-MgDeviceManagementVirtualEndpointAuditEventCount" +"DeviceManagement.Administration","GetMgDeviceManagementVirtualEndpointAuditEventGetAuditActivityTypes.g.cs","v1.0","Get-MgDeviceManagementVirtualEndpointAuditEventGetAuditActivityTypes","GET","/deviceManagement/virtualEndpoint/auditEvents/getAuditActivityTypes","mismatch","Get-MgDeviceManagementVirtualEndpointAuditEventAuditActivityType" +"DeviceManagement.Administration","GetMgDeviceManagementVirtualEndpointCloudPCs_Get.g.cs","v1.0","Get-MgDeviceManagementVirtualEndpointCloudPCs","GET","/deviceManagement/virtualEndpoint/cloudPCs/{param}","mismatch","Get-MgDeviceManagementVirtualEndpointCloudPc" +"DeviceManagement.Administration","GetMgDeviceManagementVirtualEndpointCloudPCs_List.g.cs","v1.0","Get-MgDeviceManagementVirtualEndpointCloudPCs","GET","/deviceManagement/virtualEndpoint/cloudPCs","mismatch","Get-MgDeviceManagementVirtualEndpointCloudPc" +"DeviceManagement.Administration","GetMgDeviceManagementVirtualEndpointCloudPCs.g.cs","v1.0","Get-MgDeviceManagementVirtualEndpointCloudPCs","","","dispatcher","" +"DeviceManagement.Administration","GetMgDeviceManagementVirtualEndpointCloudPCsCount.g.cs","v1.0","Get-MgDeviceManagementVirtualEndpointCloudPCsCount","GET","/deviceManagement/virtualEndpoint/cloudPCs/$count","mismatch","Get-MgDeviceManagementVirtualEndpointCloudPcCount" +"DeviceManagement.Administration","GetMgDeviceManagementVirtualEndpointCloudPCsRetrieveCloudPcLaunchDetail.g.cs","v1.0","Get-MgDeviceManagementVirtualEndpointCloudPCsRetrieveCloudPcLaunchDetail","GET","/deviceManagement/virtualEndpoint/cloudPCs/{param}/retrieveCloudPcLaunchDetail","mismatch","Get-MgDeviceManagementVirtualEndpointCloudPcLaunchDetail" +"DeviceManagement.Administration","GetMgDeviceManagementVirtualEndpointDeviceImage_Get.g.cs","v1.0","Get-MgDeviceManagementVirtualEndpointDeviceImage","GET","/deviceManagement/virtualEndpoint/deviceImages/{param}","matched","Get-MgDeviceManagementVirtualEndpointDeviceImage" +"DeviceManagement.Administration","GetMgDeviceManagementVirtualEndpointDeviceImage_List.g.cs","v1.0","Get-MgDeviceManagementVirtualEndpointDeviceImage","GET","/deviceManagement/virtualEndpoint/deviceImages","matched","Get-MgDeviceManagementVirtualEndpointDeviceImage" +"DeviceManagement.Administration","GetMgDeviceManagementVirtualEndpointDeviceImage.g.cs","v1.0","Get-MgDeviceManagementVirtualEndpointDeviceImage","","","dispatcher","" +"DeviceManagement.Administration","GetMgDeviceManagementVirtualEndpointDeviceImageCount.g.cs","v1.0","Get-MgDeviceManagementVirtualEndpointDeviceImageCount","GET","/deviceManagement/virtualEndpoint/deviceImages/$count","matched","Get-MgDeviceManagementVirtualEndpointDeviceImageCount" +"DeviceManagement.Administration","GetMgDeviceManagementVirtualEndpointDeviceImageGetSourceImages.g.cs","v1.0","Get-MgDeviceManagementVirtualEndpointDeviceImageGetSourceImages","GET","/deviceManagement/virtualEndpoint/deviceImages/getSourceImages","mismatch","Get-MgDeviceManagementVirtualEndpointDeviceImageSourceImage" +"DeviceManagement.Administration","GetMgDeviceManagementVirtualEndpointGalleryImage_Get.g.cs","v1.0","Get-MgDeviceManagementVirtualEndpointGalleryImage","GET","/deviceManagement/virtualEndpoint/galleryImages/{param}","matched","Get-MgDeviceManagementVirtualEndpointGalleryImage" +"DeviceManagement.Administration","GetMgDeviceManagementVirtualEndpointGalleryImage_List.g.cs","v1.0","Get-MgDeviceManagementVirtualEndpointGalleryImage","GET","/deviceManagement/virtualEndpoint/galleryImages","matched","Get-MgDeviceManagementVirtualEndpointGalleryImage" +"DeviceManagement.Administration","GetMgDeviceManagementVirtualEndpointGalleryImage.g.cs","v1.0","Get-MgDeviceManagementVirtualEndpointGalleryImage","","","dispatcher","" +"DeviceManagement.Administration","GetMgDeviceManagementVirtualEndpointGalleryImageCount.g.cs","v1.0","Get-MgDeviceManagementVirtualEndpointGalleryImageCount","GET","/deviceManagement/virtualEndpoint/galleryImages/$count","matched","Get-MgDeviceManagementVirtualEndpointGalleryImageCount" +"DeviceManagement.Administration","GetMgDeviceManagementVirtualEndpointOnPremiseConnection_Get.g.cs","v1.0","Get-MgDeviceManagementVirtualEndpointOnPremiseConnection","GET","/deviceManagement/virtualEndpoint/onPremisesConnections/{param}","matched","Get-MgDeviceManagementVirtualEndpointOnPremiseConnection" +"DeviceManagement.Administration","GetMgDeviceManagementVirtualEndpointOnPremiseConnection_List.g.cs","v1.0","Get-MgDeviceManagementVirtualEndpointOnPremiseConnection","GET","/deviceManagement/virtualEndpoint/onPremisesConnections","matched","Get-MgDeviceManagementVirtualEndpointOnPremiseConnection" +"DeviceManagement.Administration","GetMgDeviceManagementVirtualEndpointOnPremiseConnection.g.cs","v1.0","Get-MgDeviceManagementVirtualEndpointOnPremiseConnection","","","dispatcher","" +"DeviceManagement.Administration","GetMgDeviceManagementVirtualEndpointOnPremiseConnectionCount.g.cs","v1.0","Get-MgDeviceManagementVirtualEndpointOnPremiseConnectionCount","GET","/deviceManagement/virtualEndpoint/onPremisesConnections/$count","matched","Get-MgDeviceManagementVirtualEndpointOnPremiseConnectionCount" +"DeviceManagement.Administration","GetMgDeviceManagementVirtualEndpointProvisioningPolicy_Get.g.cs","v1.0","Get-MgDeviceManagementVirtualEndpointProvisioningPolicy","GET","/deviceManagement/virtualEndpoint/provisioningPolicies/{param}","matched","Get-MgDeviceManagementVirtualEndpointProvisioningPolicy" +"DeviceManagement.Administration","GetMgDeviceManagementVirtualEndpointProvisioningPolicy_List.g.cs","v1.0","Get-MgDeviceManagementVirtualEndpointProvisioningPolicy","GET","/deviceManagement/virtualEndpoint/provisioningPolicies","matched","Get-MgDeviceManagementVirtualEndpointProvisioningPolicy" +"DeviceManagement.Administration","GetMgDeviceManagementVirtualEndpointProvisioningPolicy.g.cs","v1.0","Get-MgDeviceManagementVirtualEndpointProvisioningPolicy","","","dispatcher","" +"DeviceManagement.Administration","GetMgDeviceManagementVirtualEndpointProvisioningPolicyAssignment_Get.g.cs","v1.0","Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment","GET","/deviceManagement/virtualEndpoint/provisioningPolicies/{param}/assignments/{param}","matched","Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment" +"DeviceManagement.Administration","GetMgDeviceManagementVirtualEndpointProvisioningPolicyAssignment_List.g.cs","v1.0","Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment","GET","/deviceManagement/virtualEndpoint/provisioningPolicies/{param}/assignments","matched","Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment" +"DeviceManagement.Administration","GetMgDeviceManagementVirtualEndpointProvisioningPolicyAssignment.g.cs","v1.0","Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment","","","dispatcher","" +"DeviceManagement.Administration","GetMgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUser_Get.g.cs","v1.0","Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUser","GET","/deviceManagement/virtualEndpoint/provisioningPolicies/{param}/assignments/{param}/assignedUsers/{param}","matched","Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUser" +"DeviceManagement.Administration","GetMgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUser_List.g.cs","v1.0","Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUser","GET","/deviceManagement/virtualEndpoint/provisioningPolicies/{param}/assignments/{param}/assignedUsers","matched","Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUser" +"DeviceManagement.Administration","GetMgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUser.g.cs","v1.0","Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUser","","","dispatcher","" +"DeviceManagement.Administration","GetMgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserCount.g.cs","v1.0","Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserCount","GET","/deviceManagement/virtualEndpoint/provisioningPolicies/{param}/assignments/{param}/assignedUsers/$count","matched","Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserCount" +"DeviceManagement.Administration","GetMgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserMailboxSetting.g.cs","v1.0","Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserMailboxSetting","GET","/deviceManagement/virtualEndpoint/provisioningPolicies/{param}/assignments/{param}/assignedUsers/{param}/mailboxSettings","matched","Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserMailboxSetting" +"DeviceManagement.Administration","GetMgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserServiceProvisioningError.g.cs","v1.0","Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserServiceProvisioningError","GET","/deviceManagement/virtualEndpoint/provisioningPolicies/{param}/assignments/{param}/assignedUsers/{param}/serviceProvisioningErrors","matched","Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserServiceProvisioningError" +"DeviceManagement.Administration","GetMgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserServiceProvisioningErrorCount.g.cs","v1.0","Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserServiceProvisioningErrorCount","GET","/deviceManagement/virtualEndpoint/provisioningPolicies/{param}/assignments/{param}/assignedUsers/{param}/serviceProvisioningErrors/$count","matched","Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserServiceProvisioningErrorCount" +"DeviceManagement.Administration","GetMgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentCount.g.cs","v1.0","Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentCount","GET","/deviceManagement/virtualEndpoint/provisioningPolicies/{param}/assignments/$count","matched","Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentCount" +"DeviceManagement.Administration","GetMgDeviceManagementVirtualEndpointProvisioningPolicyCount.g.cs","v1.0","Get-MgDeviceManagementVirtualEndpointProvisioningPolicyCount","GET","/deviceManagement/virtualEndpoint/provisioningPolicies/$count","matched","Get-MgDeviceManagementVirtualEndpointProvisioningPolicyCount" +"DeviceManagement.Administration","GetMgDeviceManagementVirtualEndpointReport.g.cs","v1.0","Get-MgDeviceManagementVirtualEndpointReport","GET","/deviceManagement/virtualEndpoint/report","matched","Get-MgDeviceManagementVirtualEndpointReport" +"DeviceManagement.Administration","GetMgDeviceManagementVirtualEndpointServicePlan_Get.g.cs","v1.0","Get-MgDeviceManagementVirtualEndpointServicePlan","GET","/deviceManagement/virtualEndpoint/servicePlans/{param}","matched","Get-MgDeviceManagementVirtualEndpointServicePlan" +"DeviceManagement.Administration","GetMgDeviceManagementVirtualEndpointServicePlan_List.g.cs","v1.0","Get-MgDeviceManagementVirtualEndpointServicePlan","GET","/deviceManagement/virtualEndpoint/servicePlans","matched","Get-MgDeviceManagementVirtualEndpointServicePlan" +"DeviceManagement.Administration","GetMgDeviceManagementVirtualEndpointServicePlan.g.cs","v1.0","Get-MgDeviceManagementVirtualEndpointServicePlan","","","dispatcher","" +"DeviceManagement.Administration","GetMgDeviceManagementVirtualEndpointServicePlanCount.g.cs","v1.0","Get-MgDeviceManagementVirtualEndpointServicePlanCount","GET","/deviceManagement/virtualEndpoint/servicePlans/$count","matched","Get-MgDeviceManagementVirtualEndpointServicePlanCount" +"DeviceManagement.Administration","GetMgDeviceManagementVirtualEndpointUserSetting_Get.g.cs","v1.0","Get-MgDeviceManagementVirtualEndpointUserSetting","GET","/deviceManagement/virtualEndpoint/userSettings/{param}","matched","Get-MgDeviceManagementVirtualEndpointUserSetting" +"DeviceManagement.Administration","GetMgDeviceManagementVirtualEndpointUserSetting_List.g.cs","v1.0","Get-MgDeviceManagementVirtualEndpointUserSetting","GET","/deviceManagement/virtualEndpoint/userSettings","matched","Get-MgDeviceManagementVirtualEndpointUserSetting" +"DeviceManagement.Administration","GetMgDeviceManagementVirtualEndpointUserSetting.g.cs","v1.0","Get-MgDeviceManagementVirtualEndpointUserSetting","","","dispatcher","" +"DeviceManagement.Administration","GetMgDeviceManagementVirtualEndpointUserSettingAssignment_Get.g.cs","v1.0","Get-MgDeviceManagementVirtualEndpointUserSettingAssignment","GET","/deviceManagement/virtualEndpoint/userSettings/{param}/assignments/{param}","matched","Get-MgDeviceManagementVirtualEndpointUserSettingAssignment" +"DeviceManagement.Administration","GetMgDeviceManagementVirtualEndpointUserSettingAssignment_List.g.cs","v1.0","Get-MgDeviceManagementVirtualEndpointUserSettingAssignment","GET","/deviceManagement/virtualEndpoint/userSettings/{param}/assignments","matched","Get-MgDeviceManagementVirtualEndpointUserSettingAssignment" +"DeviceManagement.Administration","GetMgDeviceManagementVirtualEndpointUserSettingAssignment.g.cs","v1.0","Get-MgDeviceManagementVirtualEndpointUserSettingAssignment","","","dispatcher","" +"DeviceManagement.Administration","GetMgDeviceManagementVirtualEndpointUserSettingAssignmentCount.g.cs","v1.0","Get-MgDeviceManagementVirtualEndpointUserSettingAssignmentCount","GET","/deviceManagement/virtualEndpoint/userSettings/{param}/assignments/$count","matched","Get-MgDeviceManagementVirtualEndpointUserSettingAssignmentCount" +"DeviceManagement.Administration","GetMgDeviceManagementVirtualEndpointUserSettingCount.g.cs","v1.0","Get-MgDeviceManagementVirtualEndpointUserSettingCount","GET","/deviceManagement/virtualEndpoint/userSettings/$count","matched","Get-MgDeviceManagementVirtualEndpointUserSettingCount" +"DeviceManagement.Administration","InvokeMgDeviceManagementDeviceManagementPartnerTerminate.g.cs","v1.0","Invoke-MgDeviceManagementDeviceManagementPartnerTerminate","POST","/deviceManagement/deviceManagementPartners/{param}/terminate","mismatch","Invoke-MgTerminateDeviceManagementPartner" +"DeviceManagement.Administration","InvokeMgDeviceManagementExchangeConnectorSync.g.cs","v1.0","Invoke-MgDeviceManagementExchangeConnectorSync","POST","/deviceManagement/exchangeConnectors/{param}/sync","mismatch","Sync-MgDeviceManagementExchangeConnector" +"DeviceManagement.Administration","InvokeMgDeviceManagementRemoteAssistancePartnerBeginOnboarding.g.cs","v1.0","Invoke-MgDeviceManagementRemoteAssistancePartnerBeginOnboarding","POST","/deviceManagement/remoteAssistancePartners/{param}/beginOnboarding","mismatch","Invoke-MgBeginDeviceManagementRemoteAssistancePartnerOnboarding" +"DeviceManagement.Administration","InvokeMgDeviceManagementRemoteAssistancePartnerDisconnect.g.cs","v1.0","Invoke-MgDeviceManagementRemoteAssistancePartnerDisconnect","POST","/deviceManagement/remoteAssistancePartners/{param}/disconnect","mismatch","Disconnect-MgDeviceManagementRemoteAssistancePartner" +"DeviceManagement.Administration","InvokeMgDeviceManagementVirtualEndpointCloudPCsEndGracePeriod.g.cs","v1.0","Invoke-MgDeviceManagementVirtualEndpointCloudPCsEndGracePeriod","POST","/deviceManagement/virtualEndpoint/cloudPCs/{param}/endGracePeriod","mismatch","Stop-MgDeviceManagementVirtualEndpointCloudPcGracePeriod" +"DeviceManagement.Administration","InvokeMgDeviceManagementVirtualEndpointCloudPCsReboot.g.cs","v1.0","Invoke-MgDeviceManagementVirtualEndpointCloudPCsReboot","POST","/deviceManagement/virtualEndpoint/cloudPCs/{param}/reboot","mismatch","Restart-MgDeviceManagementVirtualEndpointCloudPc" +"DeviceManagement.Administration","InvokeMgDeviceManagementVirtualEndpointCloudPCsRename.g.cs","v1.0","Invoke-MgDeviceManagementVirtualEndpointCloudPCsRename","POST","/deviceManagement/virtualEndpoint/cloudPCs/{param}/rename","mismatch","Rename-MgDeviceManagementVirtualEndpointCloudPc" +"DeviceManagement.Administration","InvokeMgDeviceManagementVirtualEndpointCloudPCsReprovision.g.cs","v1.0","Invoke-MgDeviceManagementVirtualEndpointCloudPCsReprovision","POST","/deviceManagement/virtualEndpoint/cloudPCs/{param}/reprovision","mismatch","Invoke-MgReprovisionDeviceManagementVirtualEndpointCloudPc" +"DeviceManagement.Administration","InvokeMgDeviceManagementVirtualEndpointCloudPCsResize.g.cs","v1.0","Invoke-MgDeviceManagementVirtualEndpointCloudPCsResize","POST","/deviceManagement/virtualEndpoint/cloudPCs/{param}/resize","mismatch","Resize-MgDeviceManagementVirtualEndpointCloudPc" +"DeviceManagement.Administration","InvokeMgDeviceManagementVirtualEndpointCloudPCsRestore.g.cs","v1.0","Invoke-MgDeviceManagementVirtualEndpointCloudPCsRestore","POST","/deviceManagement/virtualEndpoint/cloudPCs/{param}/restore","mismatch","Restore-MgDeviceManagementVirtualEndpointCloudPc" +"DeviceManagement.Administration","InvokeMgDeviceManagementVirtualEndpointCloudPCsTroubleshoot.g.cs","v1.0","Invoke-MgDeviceManagementVirtualEndpointCloudPCsTroubleshoot","POST","/deviceManagement/virtualEndpoint/cloudPCs/{param}/troubleshoot","mismatch","Invoke-MgTroubleshootDeviceManagementVirtualEndpointCloudPc" +"DeviceManagement.Administration","InvokeMgDeviceManagementVirtualEndpointOnPremiseConnectionRunHealthChecks.g.cs","v1.0","Invoke-MgDeviceManagementVirtualEndpointOnPremiseConnectionRunHealthChecks","POST","/deviceManagement/virtualEndpoint/onPremisesConnections/{param}/runHealthChecks","mismatch","Start-MgDeviceManagementVirtualEndpointOnPremiseConnectionHealthCheck" +"DeviceManagement.Administration","InvokeMgDeviceManagementVirtualEndpointOnPremiseConnectionUpdateAdDomainPassword.g.cs","v1.0","Invoke-MgDeviceManagementVirtualEndpointOnPremiseConnectionUpdateAdDomainPassword","POST","/deviceManagement/virtualEndpoint/onPremisesConnections/{param}/updateAdDomainPassword","mismatch","Update-MgDeviceManagementVirtualEndpointOnPremiseConnectionAdDomainPassword" +"DeviceManagement.Administration","InvokeMgDeviceManagementVirtualEndpointProvisioningPolicyAssign.g.cs","v1.0","Invoke-MgDeviceManagementVirtualEndpointProvisioningPolicyAssign","POST","/deviceManagement/virtualEndpoint/provisioningPolicies/{param}/assign","mismatch","Set-MgDeviceManagementVirtualEndpointProvisioningPolicy" +"DeviceManagement.Administration","InvokeMgDeviceManagementVirtualEndpointReportRetrieveCloudPcRecommendationReports.g.cs","v1.0","Invoke-MgDeviceManagementVirtualEndpointReportRetrieveCloudPcRecommendationReports","POST","/deviceManagement/virtualEndpoint/report/retrieveCloudPcRecommendationReports","mismatch","Get-MgDeviceManagementVirtualEndpointReportCloudPcRecommendationReport" +"DeviceManagement.Administration","InvokeMgDeviceManagementVirtualEndpointUserSettingAssign.g.cs","v1.0","Invoke-MgDeviceManagementVirtualEndpointUserSettingAssign","POST","/deviceManagement/virtualEndpoint/userSettings/{param}/assign","mismatch","Set-MgDeviceManagementVirtualEndpointUserSetting" +"DeviceManagement.Administration","NewMgDeviceManagementAuditEvent.g.cs","v1.0","New-MgDeviceManagementAuditEvent","POST","/deviceManagement/auditEvents","matched","New-MgDeviceManagementAuditEvent" +"DeviceManagement.Administration","NewMgDeviceManagementComplianceManagementPartner.g.cs","v1.0","New-MgDeviceManagementComplianceManagementPartner","POST","/deviceManagement/complianceManagementPartners","matched","New-MgDeviceManagementComplianceManagementPartner" +"DeviceManagement.Administration","NewMgDeviceManagementExchangeConnector.g.cs","v1.0","New-MgDeviceManagementExchangeConnector","POST","/deviceManagement/exchangeConnectors","matched","New-MgDeviceManagementExchangeConnector" +"DeviceManagement.Administration","NewMgDeviceManagementIosUpdateStatus.g.cs","v1.0","New-MgDeviceManagementIosUpdateStatus","POST","/deviceManagement/iosUpdateStatuses","mismatch","New-MgDeviceManagementIoUpdateStatus" +"DeviceManagement.Administration","NewMgDeviceManagementMobileThreatDefenseConnector.g.cs","v1.0","New-MgDeviceManagementMobileThreatDefenseConnector","POST","/deviceManagement/mobileThreatDefenseConnectors","matched","New-MgDeviceManagementMobileThreatDefenseConnector" +"DeviceManagement.Administration","NewMgDeviceManagementPartner.g.cs","v1.0","New-MgDeviceManagementPartner","POST","/deviceManagement/deviceManagementPartners","matched","New-MgDeviceManagementPartner" +"DeviceManagement.Administration","NewMgDeviceManagementRemoteAssistancePartner.g.cs","v1.0","New-MgDeviceManagementRemoteAssistancePartner","POST","/deviceManagement/remoteAssistancePartners","matched","New-MgDeviceManagementRemoteAssistancePartner" +"DeviceManagement.Administration","NewMgDeviceManagementResourceOperation.g.cs","v1.0","New-MgDeviceManagementResourceOperation","POST","/deviceManagement/resourceOperations","matched","New-MgDeviceManagementResourceOperation" +"DeviceManagement.Administration","NewMgDeviceManagementRoleAssignment.g.cs","v1.0","New-MgDeviceManagementRoleAssignment","POST","/deviceManagement/roleAssignments","matched","New-MgDeviceManagementRoleAssignment" +"DeviceManagement.Administration","NewMgDeviceManagementRoleDefinition.g.cs","v1.0","New-MgDeviceManagementRoleDefinition","POST","/deviceManagement/roleDefinitions","matched","New-MgDeviceManagementRoleDefinition" +"DeviceManagement.Administration","NewMgDeviceManagementRoleDefinitionRoleAssignment.g.cs","v1.0","New-MgDeviceManagementRoleDefinitionRoleAssignment","POST","/deviceManagement/roleDefinitions/{param}/roleAssignments","matched","New-MgDeviceManagementRoleDefinitionRoleAssignment" +"DeviceManagement.Administration","NewMgDeviceManagementTermAndCondition.g.cs","v1.0","New-MgDeviceManagementTermAndCondition","POST","/deviceManagement/termsAndConditions","matched","New-MgDeviceManagementTermAndCondition" +"DeviceManagement.Administration","NewMgDeviceManagementTermAndConditionAcceptanceStatus.g.cs","v1.0","New-MgDeviceManagementTermAndConditionAcceptanceStatus","POST","/deviceManagement/termsAndConditions/{param}/acceptanceStatuses","matched","New-MgDeviceManagementTermAndConditionAcceptanceStatus" +"DeviceManagement.Administration","NewMgDeviceManagementTermAndConditionAssignment.g.cs","v1.0","New-MgDeviceManagementTermAndConditionAssignment","POST","/deviceManagement/termsAndConditions/{param}/assignments","matched","New-MgDeviceManagementTermAndConditionAssignment" +"DeviceManagement.Administration","NewMgDeviceManagementVirtualEndpointAuditEvent.g.cs","v1.0","New-MgDeviceManagementVirtualEndpointAuditEvent","POST","/deviceManagement/virtualEndpoint/auditEvents","no-oracle","" +"DeviceManagement.Administration","NewMgDeviceManagementVirtualEndpointCloudPCs.g.cs","v1.0","New-MgDeviceManagementVirtualEndpointCloudPCs","POST","/deviceManagement/virtualEndpoint/cloudPCs","no-oracle","" +"DeviceManagement.Administration","NewMgDeviceManagementVirtualEndpointDeviceImage.g.cs","v1.0","New-MgDeviceManagementVirtualEndpointDeviceImage","POST","/deviceManagement/virtualEndpoint/deviceImages","matched","New-MgDeviceManagementVirtualEndpointDeviceImage" +"DeviceManagement.Administration","NewMgDeviceManagementVirtualEndpointGalleryImage.g.cs","v1.0","New-MgDeviceManagementVirtualEndpointGalleryImage","POST","/deviceManagement/virtualEndpoint/galleryImages","matched","New-MgDeviceManagementVirtualEndpointGalleryImage" +"DeviceManagement.Administration","NewMgDeviceManagementVirtualEndpointOnPremiseConnection.g.cs","v1.0","New-MgDeviceManagementVirtualEndpointOnPremiseConnection","POST","/deviceManagement/virtualEndpoint/onPremisesConnections","matched","New-MgDeviceManagementVirtualEndpointOnPremiseConnection" +"DeviceManagement.Administration","NewMgDeviceManagementVirtualEndpointProvisioningPolicy.g.cs","v1.0","New-MgDeviceManagementVirtualEndpointProvisioningPolicy","POST","/deviceManagement/virtualEndpoint/provisioningPolicies","matched","New-MgDeviceManagementVirtualEndpointProvisioningPolicy" +"DeviceManagement.Administration","NewMgDeviceManagementVirtualEndpointProvisioningPolicyAssignment.g.cs","v1.0","New-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment","POST","/deviceManagement/virtualEndpoint/provisioningPolicies/{param}/assignments","matched","New-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment" +"DeviceManagement.Administration","NewMgDeviceManagementVirtualEndpointUserSetting.g.cs","v1.0","New-MgDeviceManagementVirtualEndpointUserSetting","POST","/deviceManagement/virtualEndpoint/userSettings","matched","New-MgDeviceManagementVirtualEndpointUserSetting" +"DeviceManagement.Administration","NewMgDeviceManagementVirtualEndpointUserSettingAssignment.g.cs","v1.0","New-MgDeviceManagementVirtualEndpointUserSettingAssignment","POST","/deviceManagement/virtualEndpoint/userSettings/{param}/assignments","matched","New-MgDeviceManagementVirtualEndpointUserSettingAssignment" +"DeviceManagement.Administration","RemoveMgDeviceManagementApplePushNotificationCertificate.g.cs","v1.0","Remove-MgDeviceManagementApplePushNotificationCertificate","DELETE","/deviceManagement/applePushNotificationCertificate","matched","Remove-MgDeviceManagementApplePushNotificationCertificate" +"DeviceManagement.Administration","RemoveMgDeviceManagementAuditEvent.g.cs","v1.0","Remove-MgDeviceManagementAuditEvent","DELETE","/deviceManagement/auditEvents/{param}","matched","Remove-MgDeviceManagementAuditEvent" +"DeviceManagement.Administration","RemoveMgDeviceManagementComplianceManagementPartner.g.cs","v1.0","Remove-MgDeviceManagementComplianceManagementPartner","DELETE","/deviceManagement/complianceManagementPartners/{param}","matched","Remove-MgDeviceManagementComplianceManagementPartner" +"DeviceManagement.Administration","RemoveMgDeviceManagementExchangeConnector.g.cs","v1.0","Remove-MgDeviceManagementExchangeConnector","DELETE","/deviceManagement/exchangeConnectors/{param}","matched","Remove-MgDeviceManagementExchangeConnector" +"DeviceManagement.Administration","RemoveMgDeviceManagementIosUpdateStatus.g.cs","v1.0","Remove-MgDeviceManagementIosUpdateStatus","DELETE","/deviceManagement/iosUpdateStatuses/{param}","mismatch","Remove-MgDeviceManagementIoUpdateStatus" +"DeviceManagement.Administration","RemoveMgDeviceManagementMobileThreatDefenseConnector.g.cs","v1.0","Remove-MgDeviceManagementMobileThreatDefenseConnector","DELETE","/deviceManagement/mobileThreatDefenseConnectors/{param}","matched","Remove-MgDeviceManagementMobileThreatDefenseConnector" +"DeviceManagement.Administration","RemoveMgDeviceManagementPartner.g.cs","v1.0","Remove-MgDeviceManagementPartner","DELETE","/deviceManagement/deviceManagementPartners/{param}","matched","Remove-MgDeviceManagementPartner" +"DeviceManagement.Administration","RemoveMgDeviceManagementRemoteAssistancePartner.g.cs","v1.0","Remove-MgDeviceManagementRemoteAssistancePartner","DELETE","/deviceManagement/remoteAssistancePartners/{param}","matched","Remove-MgDeviceManagementRemoteAssistancePartner" +"DeviceManagement.Administration","RemoveMgDeviceManagementResourceOperation.g.cs","v1.0","Remove-MgDeviceManagementResourceOperation","DELETE","/deviceManagement/resourceOperations/{param}","matched","Remove-MgDeviceManagementResourceOperation" +"DeviceManagement.Administration","RemoveMgDeviceManagementRoleAssignment.g.cs","v1.0","Remove-MgDeviceManagementRoleAssignment","DELETE","/deviceManagement/roleAssignments/{param}","matched","Remove-MgDeviceManagementRoleAssignment" +"DeviceManagement.Administration","RemoveMgDeviceManagementRoleDefinition.g.cs","v1.0","Remove-MgDeviceManagementRoleDefinition","DELETE","/deviceManagement/roleDefinitions/{param}","matched","Remove-MgDeviceManagementRoleDefinition" +"DeviceManagement.Administration","RemoveMgDeviceManagementRoleDefinitionRoleAssignment.g.cs","v1.0","Remove-MgDeviceManagementRoleDefinitionRoleAssignment","DELETE","/deviceManagement/roleDefinitions/{param}/roleAssignments/{param}","matched","Remove-MgDeviceManagementRoleDefinitionRoleAssignment" +"DeviceManagement.Administration","RemoveMgDeviceManagementTermAndCondition.g.cs","v1.0","Remove-MgDeviceManagementTermAndCondition","DELETE","/deviceManagement/termsAndConditions/{param}","matched","Remove-MgDeviceManagementTermAndCondition" +"DeviceManagement.Administration","RemoveMgDeviceManagementTermAndConditionAcceptanceStatus.g.cs","v1.0","Remove-MgDeviceManagementTermAndConditionAcceptanceStatus","DELETE","/deviceManagement/termsAndConditions/{param}/acceptanceStatuses/{param}","matched","Remove-MgDeviceManagementTermAndConditionAcceptanceStatus" +"DeviceManagement.Administration","RemoveMgDeviceManagementTermAndConditionAssignment.g.cs","v1.0","Remove-MgDeviceManagementTermAndConditionAssignment","DELETE","/deviceManagement/termsAndConditions/{param}/assignments/{param}","matched","Remove-MgDeviceManagementTermAndConditionAssignment" +"DeviceManagement.Administration","RemoveMgDeviceManagementVirtualEndpoint.g.cs","v1.0","Remove-MgDeviceManagementVirtualEndpoint","DELETE","/deviceManagement/virtualEndpoint","no-oracle","" +"DeviceManagement.Administration","RemoveMgDeviceManagementVirtualEndpointAuditEvent.g.cs","v1.0","Remove-MgDeviceManagementVirtualEndpointAuditEvent","DELETE","/deviceManagement/virtualEndpoint/auditEvents/{param}","no-oracle","" +"DeviceManagement.Administration","RemoveMgDeviceManagementVirtualEndpointCloudPCs.g.cs","v1.0","Remove-MgDeviceManagementVirtualEndpointCloudPCs","DELETE","/deviceManagement/virtualEndpoint/cloudPCs/{param}","no-oracle","" +"DeviceManagement.Administration","RemoveMgDeviceManagementVirtualEndpointDeviceImage.g.cs","v1.0","Remove-MgDeviceManagementVirtualEndpointDeviceImage","DELETE","/deviceManagement/virtualEndpoint/deviceImages/{param}","matched","Remove-MgDeviceManagementVirtualEndpointDeviceImage" +"DeviceManagement.Administration","RemoveMgDeviceManagementVirtualEndpointGalleryImage.g.cs","v1.0","Remove-MgDeviceManagementVirtualEndpointGalleryImage","DELETE","/deviceManagement/virtualEndpoint/galleryImages/{param}","matched","Remove-MgDeviceManagementVirtualEndpointGalleryImage" +"DeviceManagement.Administration","RemoveMgDeviceManagementVirtualEndpointOnPremiseConnection.g.cs","v1.0","Remove-MgDeviceManagementVirtualEndpointOnPremiseConnection","DELETE","/deviceManagement/virtualEndpoint/onPremisesConnections/{param}","matched","Remove-MgDeviceManagementVirtualEndpointOnPremiseConnection" +"DeviceManagement.Administration","RemoveMgDeviceManagementVirtualEndpointProvisioningPolicy.g.cs","v1.0","Remove-MgDeviceManagementVirtualEndpointProvisioningPolicy","DELETE","/deviceManagement/virtualEndpoint/provisioningPolicies/{param}","matched","Remove-MgDeviceManagementVirtualEndpointProvisioningPolicy" +"DeviceManagement.Administration","RemoveMgDeviceManagementVirtualEndpointProvisioningPolicyAssignment.g.cs","v1.0","Remove-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment","DELETE","/deviceManagement/virtualEndpoint/provisioningPolicies/{param}/assignments/{param}","matched","Remove-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment" +"DeviceManagement.Administration","RemoveMgDeviceManagementVirtualEndpointReport.g.cs","v1.0","Remove-MgDeviceManagementVirtualEndpointReport","DELETE","/deviceManagement/virtualEndpoint/report","matched","Remove-MgDeviceManagementVirtualEndpointReport" +"DeviceManagement.Administration","RemoveMgDeviceManagementVirtualEndpointUserSetting.g.cs","v1.0","Remove-MgDeviceManagementVirtualEndpointUserSetting","DELETE","/deviceManagement/virtualEndpoint/userSettings/{param}","matched","Remove-MgDeviceManagementVirtualEndpointUserSetting" +"DeviceManagement.Administration","RemoveMgDeviceManagementVirtualEndpointUserSettingAssignment.g.cs","v1.0","Remove-MgDeviceManagementVirtualEndpointUserSettingAssignment","DELETE","/deviceManagement/virtualEndpoint/userSettings/{param}/assignments/{param}","matched","Remove-MgDeviceManagementVirtualEndpointUserSettingAssignment" +"DeviceManagement.Administration","UpdateMgDeviceManagementApplePushNotificationCertificate.g.cs","v1.0","Update-MgDeviceManagementApplePushNotificationCertificate","PATCH","/deviceManagement/applePushNotificationCertificate","matched","Update-MgDeviceManagementApplePushNotificationCertificate" +"DeviceManagement.Administration","UpdateMgDeviceManagementAuditEvent.g.cs","v1.0","Update-MgDeviceManagementAuditEvent","PATCH","/deviceManagement/auditEvents/{param}","matched","Update-MgDeviceManagementAuditEvent" +"DeviceManagement.Administration","UpdateMgDeviceManagementComplianceManagementPartner.g.cs","v1.0","Update-MgDeviceManagementComplianceManagementPartner","PATCH","/deviceManagement/complianceManagementPartners/{param}","matched","Update-MgDeviceManagementComplianceManagementPartner" +"DeviceManagement.Administration","UpdateMgDeviceManagementExchangeConnector.g.cs","v1.0","Update-MgDeviceManagementExchangeConnector","PATCH","/deviceManagement/exchangeConnectors/{param}","matched","Update-MgDeviceManagementExchangeConnector" +"DeviceManagement.Administration","UpdateMgDeviceManagementIosUpdateStatus.g.cs","v1.0","Update-MgDeviceManagementIosUpdateStatus","PATCH","/deviceManagement/iosUpdateStatuses/{param}","mismatch","Update-MgDeviceManagementIoUpdateStatus" +"DeviceManagement.Administration","UpdateMgDeviceManagementMobileThreatDefenseConnector.g.cs","v1.0","Update-MgDeviceManagementMobileThreatDefenseConnector","PATCH","/deviceManagement/mobileThreatDefenseConnectors/{param}","matched","Update-MgDeviceManagementMobileThreatDefenseConnector" +"DeviceManagement.Administration","UpdateMgDeviceManagementPartner.g.cs","v1.0","Update-MgDeviceManagementPartner","PATCH","/deviceManagement/deviceManagementPartners/{param}","matched","Update-MgDeviceManagementPartner" +"DeviceManagement.Administration","UpdateMgDeviceManagementRemoteAssistancePartner.g.cs","v1.0","Update-MgDeviceManagementRemoteAssistancePartner","PATCH","/deviceManagement/remoteAssistancePartners/{param}","matched","Update-MgDeviceManagementRemoteAssistancePartner" +"DeviceManagement.Administration","UpdateMgDeviceManagementResourceOperation.g.cs","v1.0","Update-MgDeviceManagementResourceOperation","PATCH","/deviceManagement/resourceOperations/{param}","matched","Update-MgDeviceManagementResourceOperation" +"DeviceManagement.Administration","UpdateMgDeviceManagementRoleAssignment.g.cs","v1.0","Update-MgDeviceManagementRoleAssignment","PATCH","/deviceManagement/roleAssignments/{param}","matched","Update-MgDeviceManagementRoleAssignment" +"DeviceManagement.Administration","UpdateMgDeviceManagementRoleDefinition.g.cs","v1.0","Update-MgDeviceManagementRoleDefinition","PATCH","/deviceManagement/roleDefinitions/{param}","matched","Update-MgDeviceManagementRoleDefinition" +"DeviceManagement.Administration","UpdateMgDeviceManagementRoleDefinitionRoleAssignment.g.cs","v1.0","Update-MgDeviceManagementRoleDefinitionRoleAssignment","PATCH","/deviceManagement/roleDefinitions/{param}/roleAssignments/{param}","matched","Update-MgDeviceManagementRoleDefinitionRoleAssignment" +"DeviceManagement.Administration","UpdateMgDeviceManagementTermAndCondition.g.cs","v1.0","Update-MgDeviceManagementTermAndCondition","PATCH","/deviceManagement/termsAndConditions/{param}","matched","Update-MgDeviceManagementTermAndCondition" +"DeviceManagement.Administration","UpdateMgDeviceManagementTermAndConditionAcceptanceStatus.g.cs","v1.0","Update-MgDeviceManagementTermAndConditionAcceptanceStatus","PATCH","/deviceManagement/termsAndConditions/{param}/acceptanceStatuses/{param}","matched","Update-MgDeviceManagementTermAndConditionAcceptanceStatus" +"DeviceManagement.Administration","UpdateMgDeviceManagementTermAndConditionAssignment.g.cs","v1.0","Update-MgDeviceManagementTermAndConditionAssignment","PATCH","/deviceManagement/termsAndConditions/{param}/assignments/{param}","matched","Update-MgDeviceManagementTermAndConditionAssignment" +"DeviceManagement.Administration","UpdateMgDeviceManagementVirtualEndpoint.g.cs","v1.0","Update-MgDeviceManagementVirtualEndpoint","PATCH","/deviceManagement/virtualEndpoint","no-oracle","" +"DeviceManagement.Administration","UpdateMgDeviceManagementVirtualEndpointAuditEvent.g.cs","v1.0","Update-MgDeviceManagementVirtualEndpointAuditEvent","PATCH","/deviceManagement/virtualEndpoint/auditEvents/{param}","no-oracle","" +"DeviceManagement.Administration","UpdateMgDeviceManagementVirtualEndpointCloudPCs.g.cs","v1.0","Update-MgDeviceManagementVirtualEndpointCloudPCs","PATCH","/deviceManagement/virtualEndpoint/cloudPCs/{param}","no-oracle","" +"DeviceManagement.Administration","UpdateMgDeviceManagementVirtualEndpointDeviceImage.g.cs","v1.0","Update-MgDeviceManagementVirtualEndpointDeviceImage","PATCH","/deviceManagement/virtualEndpoint/deviceImages/{param}","matched","Update-MgDeviceManagementVirtualEndpointDeviceImage" +"DeviceManagement.Administration","UpdateMgDeviceManagementVirtualEndpointGalleryImage.g.cs","v1.0","Update-MgDeviceManagementVirtualEndpointGalleryImage","PATCH","/deviceManagement/virtualEndpoint/galleryImages/{param}","matched","Update-MgDeviceManagementVirtualEndpointGalleryImage" +"DeviceManagement.Administration","UpdateMgDeviceManagementVirtualEndpointOnPremiseConnection.g.cs","v1.0","Update-MgDeviceManagementVirtualEndpointOnPremiseConnection","PATCH","/deviceManagement/virtualEndpoint/onPremisesConnections/{param}","matched","Update-MgDeviceManagementVirtualEndpointOnPremiseConnection" +"DeviceManagement.Administration","UpdateMgDeviceManagementVirtualEndpointProvisioningPolicy.g.cs","v1.0","Update-MgDeviceManagementVirtualEndpointProvisioningPolicy","PATCH","/deviceManagement/virtualEndpoint/provisioningPolicies/{param}","matched","Update-MgDeviceManagementVirtualEndpointProvisioningPolicy" +"DeviceManagement.Administration","UpdateMgDeviceManagementVirtualEndpointProvisioningPolicyAssignment.g.cs","v1.0","Update-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment","PATCH","/deviceManagement/virtualEndpoint/provisioningPolicies/{param}/assignments/{param}","matched","Update-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment" +"DeviceManagement.Administration","UpdateMgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserMailboxSetting.g.cs","v1.0","Update-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserMailboxSetting","PATCH","/deviceManagement/virtualEndpoint/provisioningPolicies/{param}/assignments/{param}/assignedUsers/{param}/mailboxSettings","matched","Update-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserMailboxSetting" +"DeviceManagement.Administration","UpdateMgDeviceManagementVirtualEndpointReport.g.cs","v1.0","Update-MgDeviceManagementVirtualEndpointReport","PATCH","/deviceManagement/virtualEndpoint/report","matched","Update-MgDeviceManagementVirtualEndpointReport" +"DeviceManagement.Administration","UpdateMgDeviceManagementVirtualEndpointUserSetting.g.cs","v1.0","Update-MgDeviceManagementVirtualEndpointUserSetting","PATCH","/deviceManagement/virtualEndpoint/userSettings/{param}","matched","Update-MgDeviceManagementVirtualEndpointUserSetting" +"DeviceManagement.Administration","UpdateMgDeviceManagementVirtualEndpointUserSettingAssignment.g.cs","v1.0","Update-MgDeviceManagementVirtualEndpointUserSettingAssignment","PATCH","/deviceManagement/virtualEndpoint/userSettings/{param}/assignments/{param}","matched","Update-MgDeviceManagementVirtualEndpointUserSettingAssignment" +"DeviceManagement.Enrollment","GetMgDeviceManagementConditionalAccessSetting.g.cs","v1.0","Get-MgDeviceManagementConditionalAccessSetting","GET","/deviceManagement/conditionalAccessSettings","matched","Get-MgDeviceManagementConditionalAccessSetting" +"DeviceManagement.Enrollment","GetMgDeviceManagementDeviceEnrollmentConfiguration_Get.g.cs","v1.0","Get-MgDeviceManagementDeviceEnrollmentConfiguration","GET","/deviceManagement/deviceEnrollmentConfigurations/{param}","matched","Get-MgDeviceManagementDeviceEnrollmentConfiguration" +"DeviceManagement.Enrollment","GetMgDeviceManagementDeviceEnrollmentConfiguration_List.g.cs","v1.0","Get-MgDeviceManagementDeviceEnrollmentConfiguration","GET","/deviceManagement/deviceEnrollmentConfigurations","matched","Get-MgDeviceManagementDeviceEnrollmentConfiguration" +"DeviceManagement.Enrollment","GetMgDeviceManagementDeviceEnrollmentConfiguration.g.cs","v1.0","Get-MgDeviceManagementDeviceEnrollmentConfiguration","","","dispatcher","" +"DeviceManagement.Enrollment","GetMgDeviceManagementDeviceEnrollmentConfigurationAssignment_Get.g.cs","v1.0","Get-MgDeviceManagementDeviceEnrollmentConfigurationAssignment","GET","/deviceManagement/deviceEnrollmentConfigurations/{param}/assignments/{param}","matched","Get-MgDeviceManagementDeviceEnrollmentConfigurationAssignment" +"DeviceManagement.Enrollment","GetMgDeviceManagementDeviceEnrollmentConfigurationAssignment_List.g.cs","v1.0","Get-MgDeviceManagementDeviceEnrollmentConfigurationAssignment","GET","/deviceManagement/deviceEnrollmentConfigurations/{param}/assignments","matched","Get-MgDeviceManagementDeviceEnrollmentConfigurationAssignment" +"DeviceManagement.Enrollment","GetMgDeviceManagementDeviceEnrollmentConfigurationAssignment.g.cs","v1.0","Get-MgDeviceManagementDeviceEnrollmentConfigurationAssignment","","","dispatcher","" +"DeviceManagement.Enrollment","GetMgDeviceManagementDeviceEnrollmentConfigurationAssignmentCount.g.cs","v1.0","Get-MgDeviceManagementDeviceEnrollmentConfigurationAssignmentCount","GET","/deviceManagement/deviceEnrollmentConfigurations/{param}/assignments/$count","matched","Get-MgDeviceManagementDeviceEnrollmentConfigurationAssignmentCount" +"DeviceManagement.Enrollment","GetMgDeviceManagementDeviceEnrollmentConfigurationCount.g.cs","v1.0","Get-MgDeviceManagementDeviceEnrollmentConfigurationCount","GET","/deviceManagement/deviceEnrollmentConfigurations/$count","matched","Get-MgDeviceManagementDeviceEnrollmentConfigurationCount" +"DeviceManagement.Enrollment","GetMgDeviceManagementImportedWindowsAutopilotDeviceIdentity_Get.g.cs","v1.0","Get-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity","GET","/deviceManagement/importedWindowsAutopilotDeviceIdentities/{param}","matched","Get-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity" +"DeviceManagement.Enrollment","GetMgDeviceManagementImportedWindowsAutopilotDeviceIdentity_List.g.cs","v1.0","Get-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity","GET","/deviceManagement/importedWindowsAutopilotDeviceIdentities","matched","Get-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity" +"DeviceManagement.Enrollment","GetMgDeviceManagementImportedWindowsAutopilotDeviceIdentity.g.cs","v1.0","Get-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity","","","dispatcher","" +"DeviceManagement.Enrollment","GetMgDeviceManagementImportedWindowsAutopilotDeviceIdentityCount.g.cs","v1.0","Get-MgDeviceManagementImportedWindowsAutopilotDeviceIdentityCount","GET","/deviceManagement/importedWindowsAutopilotDeviceIdentities/$count","matched","Get-MgDeviceManagementImportedWindowsAutopilotDeviceIdentityCount" +"DeviceManagement.Enrollment","GetMgDeviceManagementWindowsAutopilotDeviceIdentity_Get.g.cs","v1.0","Get-MgDeviceManagementWindowsAutopilotDeviceIdentity","GET","/deviceManagement/windowsAutopilotDeviceIdentities/{param}","matched","Get-MgDeviceManagementWindowsAutopilotDeviceIdentity" +"DeviceManagement.Enrollment","GetMgDeviceManagementWindowsAutopilotDeviceIdentity_List.g.cs","v1.0","Get-MgDeviceManagementWindowsAutopilotDeviceIdentity","GET","/deviceManagement/windowsAutopilotDeviceIdentities","matched","Get-MgDeviceManagementWindowsAutopilotDeviceIdentity" +"DeviceManagement.Enrollment","GetMgDeviceManagementWindowsAutopilotDeviceIdentity.g.cs","v1.0","Get-MgDeviceManagementWindowsAutopilotDeviceIdentity","","","dispatcher","" +"DeviceManagement.Enrollment","GetMgDeviceManagementWindowsAutopilotDeviceIdentityCount.g.cs","v1.0","Get-MgDeviceManagementWindowsAutopilotDeviceIdentityCount","GET","/deviceManagement/windowsAutopilotDeviceIdentities/$count","matched","Get-MgDeviceManagementWindowsAutopilotDeviceIdentityCount" +"DeviceManagement.Enrollment","GetMgRoleManagement.g.cs","v1.0","Get-MgRoleManagement","GET","/roleManagement","matched","Get-MgRoleManagement" +"DeviceManagement.Enrollment","InvokeMgDeviceManagementDeviceEnrollmentConfigurationAssign.g.cs","v1.0","Invoke-MgDeviceManagementDeviceEnrollmentConfigurationAssign","POST","/deviceManagement/deviceEnrollmentConfigurations/{param}/assign","mismatch","Set-MgDeviceManagementDeviceEnrollmentConfiguration" +"DeviceManagement.Enrollment","InvokeMgDeviceManagementDeviceEnrollmentConfigurationSetPriority.g.cs","v1.0","Invoke-MgDeviceManagementDeviceEnrollmentConfigurationSetPriority","POST","/deviceManagement/deviceEnrollmentConfigurations/{param}/setPriority","mismatch","Set-MgDeviceManagementDeviceEnrollmentConfigurationPriority" +"DeviceManagement.Enrollment","InvokeMgDeviceManagementImportedWindowsAutopilotDeviceIdentityImport.g.cs","v1.0","Invoke-MgDeviceManagementImportedWindowsAutopilotDeviceIdentityImport","POST","/deviceManagement/importedWindowsAutopilotDeviceIdentities/import","mismatch","Import-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity" +"DeviceManagement.Enrollment","InvokeMgDeviceManagementWindowsAutopilotDeviceIdentityAssignUserToDevice.g.cs","v1.0","Invoke-MgDeviceManagementWindowsAutopilotDeviceIdentityAssignUserToDevice","POST","/deviceManagement/windowsAutopilotDeviceIdentities/{param}/assignUserToDevice","mismatch","Set-MgDeviceManagementWindowsAutopilotDeviceIdentityUserToDevice" +"DeviceManagement.Enrollment","InvokeMgDeviceManagementWindowsAutopilotDeviceIdentityUnassignUserFromDevice.g.cs","v1.0","Invoke-MgDeviceManagementWindowsAutopilotDeviceIdentityUnassignUserFromDevice","POST","/deviceManagement/windowsAutopilotDeviceIdentities/{param}/unassignUserFromDevice","mismatch","Invoke-MgUnassignDeviceManagementWindowsAutopilotDeviceIdentityUserFromDevice" +"DeviceManagement.Enrollment","InvokeMgDeviceManagementWindowsAutopilotDeviceIdentityUpdateDeviceProperties.g.cs","v1.0","Invoke-MgDeviceManagementWindowsAutopilotDeviceIdentityUpdateDeviceProperties","POST","/deviceManagement/windowsAutopilotDeviceIdentities/{param}/updateDeviceProperties","mismatch","Update-MgDeviceManagementWindowsAutopilotDeviceIdentityDeviceProperty" +"DeviceManagement.Enrollment","NewMgDeviceManagementDeviceEnrollmentConfiguration.g.cs","v1.0","New-MgDeviceManagementDeviceEnrollmentConfiguration","POST","/deviceManagement/deviceEnrollmentConfigurations","matched","New-MgDeviceManagementDeviceEnrollmentConfiguration" +"DeviceManagement.Enrollment","NewMgDeviceManagementDeviceEnrollmentConfigurationAssignment.g.cs","v1.0","New-MgDeviceManagementDeviceEnrollmentConfigurationAssignment","POST","/deviceManagement/deviceEnrollmentConfigurations/{param}/assignments","matched","New-MgDeviceManagementDeviceEnrollmentConfigurationAssignment" +"DeviceManagement.Enrollment","NewMgDeviceManagementImportedWindowsAutopilotDeviceIdentity.g.cs","v1.0","New-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity","POST","/deviceManagement/importedWindowsAutopilotDeviceIdentities","matched","New-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity" +"DeviceManagement.Enrollment","NewMgDeviceManagementWindowsAutopilotDeviceIdentity.g.cs","v1.0","New-MgDeviceManagementWindowsAutopilotDeviceIdentity","POST","/deviceManagement/windowsAutopilotDeviceIdentities","matched","New-MgDeviceManagementWindowsAutopilotDeviceIdentity" +"DeviceManagement.Enrollment","RemoveMgDeviceManagementConditionalAccessSetting.g.cs","v1.0","Remove-MgDeviceManagementConditionalAccessSetting","DELETE","/deviceManagement/conditionalAccessSettings","matched","Remove-MgDeviceManagementConditionalAccessSetting" +"DeviceManagement.Enrollment","RemoveMgDeviceManagementDeviceEnrollmentConfiguration.g.cs","v1.0","Remove-MgDeviceManagementDeviceEnrollmentConfiguration","DELETE","/deviceManagement/deviceEnrollmentConfigurations/{param}","matched","Remove-MgDeviceManagementDeviceEnrollmentConfiguration" +"DeviceManagement.Enrollment","RemoveMgDeviceManagementDeviceEnrollmentConfigurationAssignment.g.cs","v1.0","Remove-MgDeviceManagementDeviceEnrollmentConfigurationAssignment","DELETE","/deviceManagement/deviceEnrollmentConfigurations/{param}/assignments/{param}","matched","Remove-MgDeviceManagementDeviceEnrollmentConfigurationAssignment" +"DeviceManagement.Enrollment","RemoveMgDeviceManagementImportedWindowsAutopilotDeviceIdentity.g.cs","v1.0","Remove-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity","DELETE","/deviceManagement/importedWindowsAutopilotDeviceIdentities/{param}","matched","Remove-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity" +"DeviceManagement.Enrollment","RemoveMgDeviceManagementWindowsAutopilotDeviceIdentity.g.cs","v1.0","Remove-MgDeviceManagementWindowsAutopilotDeviceIdentity","DELETE","/deviceManagement/windowsAutopilotDeviceIdentities/{param}","matched","Remove-MgDeviceManagementWindowsAutopilotDeviceIdentity" +"DeviceManagement.Enrollment","UpdateMgDeviceManagementConditionalAccessSetting.g.cs","v1.0","Update-MgDeviceManagementConditionalAccessSetting","PATCH","/deviceManagement/conditionalAccessSettings","matched","Update-MgDeviceManagementConditionalAccessSetting" +"DeviceManagement.Enrollment","UpdateMgDeviceManagementDeviceEnrollmentConfiguration.g.cs","v1.0","Update-MgDeviceManagementDeviceEnrollmentConfiguration","PATCH","/deviceManagement/deviceEnrollmentConfigurations/{param}","matched","Update-MgDeviceManagementDeviceEnrollmentConfiguration" +"DeviceManagement.Enrollment","UpdateMgDeviceManagementDeviceEnrollmentConfigurationAssignment.g.cs","v1.0","Update-MgDeviceManagementDeviceEnrollmentConfigurationAssignment","PATCH","/deviceManagement/deviceEnrollmentConfigurations/{param}/assignments/{param}","matched","Update-MgDeviceManagementDeviceEnrollmentConfigurationAssignment" +"DeviceManagement.Enrollment","UpdateMgDeviceManagementImportedWindowsAutopilotDeviceIdentity.g.cs","v1.0","Update-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity","PATCH","/deviceManagement/importedWindowsAutopilotDeviceIdentities/{param}","matched","Update-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity" +"DeviceManagement.Enrollment","UpdateMgDeviceManagementWindowsAutopilotDeviceIdentity.g.cs","v1.0","Update-MgDeviceManagementWindowsAutopilotDeviceIdentity","PATCH","/deviceManagement/windowsAutopilotDeviceIdentities/{param}","no-oracle","" +"DeviceManagement.Enrollment","UpdateMgRoleManagement.g.cs","v1.0","Update-MgRoleManagement","PATCH","/roleManagement","matched","Update-MgRoleManagement" +"DeviceManagement.Functions","GetMgDeviceManagementGetEffectivePermissionsWithScope.g.cs","v1.0","Get-MgDeviceManagementGetEffectivePermissionsWithScope","","","parameterized-function","" +"DeviceManagement.Functions","GetMgDeviceManagementUserExperienceAnalyticsSummarizeWorkFromAnywhereDevices.g.cs","v1.0","Get-MgDeviceManagementUserExperienceAnalyticsSummarizeWorkFromAnywhereDevices","GET","/deviceManagement/userExperienceAnalyticsSummarizeWorkFromAnywhereDevices","mismatch","Invoke-MgExperienceDeviceManagement" +"DeviceManagement.Functions","GetMgDeviceManagementVerifyWindowsEnrollmentAutoDiscoveryWithDomainName.g.cs","v1.0","Get-MgDeviceManagementVerifyWindowsEnrollmentAutoDiscoveryWithDomainName","","","parameterized-function","" +"Devices.CloudPrint","GetMgPrint.g.cs","v1.0","Get-MgPrint","GET","/print","matched","Get-MgPrint" +"Devices.CloudPrint","GetMgPrintConnector_Get.g.cs","v1.0","Get-MgPrintConnector","GET","/print/connectors/{param}","matched","Get-MgPrintConnector" +"Devices.CloudPrint","GetMgPrintConnector_List.g.cs","v1.0","Get-MgPrintConnector","GET","/print/connectors","matched","Get-MgPrintConnector" +"Devices.CloudPrint","GetMgPrintConnector.g.cs","v1.0","Get-MgPrintConnector","","","dispatcher","" +"Devices.CloudPrint","GetMgPrintConnectorCount.g.cs","v1.0","Get-MgPrintConnectorCount","GET","/print/connectors/$count","matched","Get-MgPrintConnectorCount" +"Devices.CloudPrint","GetMgPrinter_Get.g.cs","v1.0","Get-MgPrinter","GET","/print/printers/{param}","mismatch","Get-MgPrintPrinter" +"Devices.CloudPrint","GetMgPrinter_List.g.cs","v1.0","Get-MgPrinter","GET","/print/printers","mismatch","Get-MgPrintPrinter" +"Devices.CloudPrint","GetMgPrinter.g.cs","v1.0","Get-MgPrinter","","","dispatcher","" +"Devices.CloudPrint","GetMgPrinterConnector_Get.g.cs","v1.0","Get-MgPrinterConnector","GET","/print/printers/{param}/connectors/{param}","mismatch","Get-MgPrintPrinterConnector" +"Devices.CloudPrint","GetMgPrinterConnector_List.g.cs","v1.0","Get-MgPrinterConnector","GET","/print/printers/{param}/connectors","mismatch","Get-MgPrintPrinterConnector" +"Devices.CloudPrint","GetMgPrinterConnector.g.cs","v1.0","Get-MgPrinterConnector","","","dispatcher","" +"Devices.CloudPrint","GetMgPrinterConnectorCount.g.cs","v1.0","Get-MgPrinterConnectorCount","GET","/print/printers/{param}/connectors/$count","mismatch","Get-MgPrintPrinterConnectorCount" +"Devices.CloudPrint","GetMgPrinterCount.g.cs","v1.0","Get-MgPrinterCount","GET","/print/printers/$count","mismatch","Get-MgPrintPrinterCount" +"Devices.CloudPrint","GetMgPrinterJob_Get.g.cs","v1.0","Get-MgPrinterJob","GET","/print/printers/{param}/jobs/{param}","mismatch","Get-MgPrintPrinterJob" +"Devices.CloudPrint","GetMgPrinterJob_List.g.cs","v1.0","Get-MgPrinterJob","GET","/print/printers/{param}/jobs","mismatch","Get-MgPrintPrinterJob" +"Devices.CloudPrint","GetMgPrinterJob.g.cs","v1.0","Get-MgPrinterJob","","","dispatcher","" +"Devices.CloudPrint","GetMgPrinterJobCount.g.cs","v1.0","Get-MgPrinterJobCount","GET","/print/printers/{param}/jobs/$count","mismatch","Get-MgPrintPrinterJobCount" +"Devices.CloudPrint","GetMgPrinterJobDocument_Get.g.cs","v1.0","Get-MgPrinterJobDocument","GET","/print/printers/{param}/jobs/{param}/documents/{param}","mismatch","Get-MgPrintPrinterJobDocument" +"Devices.CloudPrint","GetMgPrinterJobDocument_List.g.cs","v1.0","Get-MgPrinterJobDocument","GET","/print/printers/{param}/jobs/{param}/documents","mismatch","Get-MgPrintPrinterJobDocument" +"Devices.CloudPrint","GetMgPrinterJobDocument.g.cs","v1.0","Get-MgPrinterJobDocument","","","dispatcher","" +"Devices.CloudPrint","GetMgPrinterJobDocumentContent.g.cs","v1.0","Get-MgPrinterJobDocumentContent","GET","/print/printers/{param}/jobs/{param}/documents/{param}/$value","mismatch","Get-MgPrintPrinterJobDocumentContent" +"Devices.CloudPrint","GetMgPrinterJobDocumentCount.g.cs","v1.0","Get-MgPrinterJobDocumentCount","GET","/print/printers/{param}/jobs/{param}/documents/$count","mismatch","Get-MgPrintPrinterJobDocumentCount" +"Devices.CloudPrint","GetMgPrinterJobTask_Get.g.cs","v1.0","Get-MgPrinterJobTask","GET","/print/printers/{param}/jobs/{param}/tasks/{param}","mismatch","Get-MgPrintPrinterJobTask" +"Devices.CloudPrint","GetMgPrinterJobTask_List.g.cs","v1.0","Get-MgPrinterJobTask","GET","/print/printers/{param}/jobs/{param}/tasks","mismatch","Get-MgPrintPrinterJobTask" +"Devices.CloudPrint","GetMgPrinterJobTask.g.cs","v1.0","Get-MgPrinterJobTask","","","dispatcher","" +"Devices.CloudPrint","GetMgPrinterJobTaskCount.g.cs","v1.0","Get-MgPrinterJobTaskCount","GET","/print/printers/{param}/jobs/{param}/tasks/$count","mismatch","Get-MgPrintPrinterJobTaskCount" +"Devices.CloudPrint","GetMgPrinterJobTaskDefinition.g.cs","v1.0","Get-MgPrinterJobTaskDefinition","GET","/print/printers/{param}/jobs/{param}/tasks/{param}/definition","mismatch","Get-MgPrintPrinterJobTaskDefinition" +"Devices.CloudPrint","GetMgPrinterJobTaskTrigger.g.cs","v1.0","Get-MgPrinterJobTaskTrigger","GET","/print/printers/{param}/jobs/{param}/tasks/{param}/trigger","mismatch","Get-MgPrintPrinterJobTaskTrigger" +"Devices.CloudPrint","GetMgPrinterShare_Get.g.cs","v1.0","Get-MgPrinterShare","GET","/print/printers/{param}/shares/{param}","mismatch","Get-MgPrintPrinterShare" +"Devices.CloudPrint","GetMgPrinterShare_List.g.cs","v1.0","Get-MgPrinterShare","GET","/print/printers/{param}/shares","mismatch","Get-MgPrintPrinterShare" +"Devices.CloudPrint","GetMgPrinterShare.g.cs","v1.0","Get-MgPrinterShare","","","dispatcher","" +"Devices.CloudPrint","GetMgPrinterShareCount.g.cs","v1.0","Get-MgPrinterShareCount","GET","/print/printers/{param}/shares/$count","mismatch","Get-MgPrintPrinterShareCount" +"Devices.CloudPrint","GetMgPrinterTaskTrigger_Get.g.cs","v1.0","Get-MgPrinterTaskTrigger","GET","/print/printers/{param}/taskTriggers/{param}","mismatch","Get-MgPrintPrinterTaskTrigger" +"Devices.CloudPrint","GetMgPrinterTaskTrigger_List.g.cs","v1.0","Get-MgPrinterTaskTrigger","GET","/print/printers/{param}/taskTriggers","mismatch","Get-MgPrintPrinterTaskTrigger" +"Devices.CloudPrint","GetMgPrinterTaskTrigger.g.cs","v1.0","Get-MgPrinterTaskTrigger","","","dispatcher","" +"Devices.CloudPrint","GetMgPrinterTaskTriggerCount.g.cs","v1.0","Get-MgPrinterTaskTriggerCount","GET","/print/printers/{param}/taskTriggers/$count","mismatch","Get-MgPrintPrinterTaskTriggerCount" +"Devices.CloudPrint","GetMgPrinterTaskTriggerDefinition.g.cs","v1.0","Get-MgPrinterTaskTriggerDefinition","GET","/print/printers/{param}/taskTriggers/{param}/definition","mismatch","Get-MgPrintPrinterTaskTriggerDefinition" +"Devices.CloudPrint","GetMgPrintOperation_Get.g.cs","v1.0","Get-MgPrintOperation","GET","/print/operations/{param}","matched","Get-MgPrintOperation" +"Devices.CloudPrint","GetMgPrintOperation_List.g.cs","v1.0","Get-MgPrintOperation","GET","/print/operations","matched","Get-MgPrintOperation" +"Devices.CloudPrint","GetMgPrintOperation.g.cs","v1.0","Get-MgPrintOperation","","","dispatcher","" +"Devices.CloudPrint","GetMgPrintOperationCount.g.cs","v1.0","Get-MgPrintOperationCount","GET","/print/operations/$count","matched","Get-MgPrintOperationCount" +"Devices.CloudPrint","GetMgPrintService_Get.g.cs","v1.0","Get-MgPrintService","GET","/print/services/{param}","matched","Get-MgPrintService" +"Devices.CloudPrint","GetMgPrintService_List.g.cs","v1.0","Get-MgPrintService","GET","/print/services","matched","Get-MgPrintService" +"Devices.CloudPrint","GetMgPrintService.g.cs","v1.0","Get-MgPrintService","","","dispatcher","" +"Devices.CloudPrint","GetMgPrintServiceCount.g.cs","v1.0","Get-MgPrintServiceCount","GET","/print/services/$count","matched","Get-MgPrintServiceCount" +"Devices.CloudPrint","GetMgPrintServiceEndpoint_Get.g.cs","v1.0","Get-MgPrintServiceEndpoint","GET","/print/services/{param}/endpoints/{param}","matched","Get-MgPrintServiceEndpoint" +"Devices.CloudPrint","GetMgPrintServiceEndpoint_List.g.cs","v1.0","Get-MgPrintServiceEndpoint","GET","/print/services/{param}/endpoints","matched","Get-MgPrintServiceEndpoint" +"Devices.CloudPrint","GetMgPrintServiceEndpoint.g.cs","v1.0","Get-MgPrintServiceEndpoint","","","dispatcher","" +"Devices.CloudPrint","GetMgPrintServiceEndpointCount.g.cs","v1.0","Get-MgPrintServiceEndpointCount","GET","/print/services/{param}/endpoints/$count","matched","Get-MgPrintServiceEndpointCount" +"Devices.CloudPrint","GetMgPrintShare_Get.g.cs","v1.0","Get-MgPrintShare","GET","/print/shares/{param}","matched","Get-MgPrintShare" +"Devices.CloudPrint","GetMgPrintShare_List.g.cs","v1.0","Get-MgPrintShare","GET","/print/shares","matched","Get-MgPrintShare" +"Devices.CloudPrint","GetMgPrintShare.g.cs","v1.0","Get-MgPrintShare","","","dispatcher","" +"Devices.CloudPrint","GetMgPrintShareAllowedGroup.g.cs","v1.0","Get-MgPrintShareAllowedGroup","GET","/print/shares/{param}/allowedGroups","matched","Get-MgPrintShareAllowedGroup" +"Devices.CloudPrint","GetMgPrintShareAllowedGroupByRef.g.cs","v1.0","Get-MgPrintShareAllowedGroupByRef","GET","/print/shares/{param}/allowedGroups/$ref","matched","Get-MgPrintShareAllowedGroupByRef" +"Devices.CloudPrint","GetMgPrintShareAllowedGroupCount.g.cs","v1.0","Get-MgPrintShareAllowedGroupCount","GET","/print/shares/{param}/allowedGroups/$count","matched","Get-MgPrintShareAllowedGroupCount" +"Devices.CloudPrint","GetMgPrintShareAllowedGroupServiceProvisioningError.g.cs","v1.0","Get-MgPrintShareAllowedGroupServiceProvisioningError","GET","/print/shares/{param}/allowedGroups/{param}/serviceProvisioningErrors","matched","Get-MgPrintShareAllowedGroupServiceProvisioningError" +"Devices.CloudPrint","GetMgPrintShareAllowedGroupServiceProvisioningErrorCount.g.cs","v1.0","Get-MgPrintShareAllowedGroupServiceProvisioningErrorCount","GET","/print/shares/{param}/allowedGroups/{param}/serviceProvisioningErrors/$count","matched","Get-MgPrintShareAllowedGroupServiceProvisioningErrorCount" +"Devices.CloudPrint","GetMgPrintShareAllowedUser.g.cs","v1.0","Get-MgPrintShareAllowedUser","GET","/print/shares/{param}/allowedUsers","matched","Get-MgPrintShareAllowedUser" +"Devices.CloudPrint","GetMgPrintShareAllowedUserByRef.g.cs","v1.0","Get-MgPrintShareAllowedUserByRef","GET","/print/shares/{param}/allowedUsers/$ref","matched","Get-MgPrintShareAllowedUserByRef" +"Devices.CloudPrint","GetMgPrintShareAllowedUserCount.g.cs","v1.0","Get-MgPrintShareAllowedUserCount","GET","/print/shares/{param}/allowedUsers/$count","matched","Get-MgPrintShareAllowedUserCount" +"Devices.CloudPrint","GetMgPrintShareAllowedUserMailboxSetting.g.cs","v1.0","Get-MgPrintShareAllowedUserMailboxSetting","GET","/print/shares/{param}/allowedUsers/{param}/mailboxSettings","matched","Get-MgPrintShareAllowedUserMailboxSetting" +"Devices.CloudPrint","GetMgPrintShareAllowedUserServiceProvisioningError.g.cs","v1.0","Get-MgPrintShareAllowedUserServiceProvisioningError","GET","/print/shares/{param}/allowedUsers/{param}/serviceProvisioningErrors","matched","Get-MgPrintShareAllowedUserServiceProvisioningError" +"Devices.CloudPrint","GetMgPrintShareAllowedUserServiceProvisioningErrorCount.g.cs","v1.0","Get-MgPrintShareAllowedUserServiceProvisioningErrorCount","GET","/print/shares/{param}/allowedUsers/{param}/serviceProvisioningErrors/$count","matched","Get-MgPrintShareAllowedUserServiceProvisioningErrorCount" +"Devices.CloudPrint","GetMgPrintShareCount.g.cs","v1.0","Get-MgPrintShareCount","GET","/print/shares/$count","matched","Get-MgPrintShareCount" +"Devices.CloudPrint","GetMgPrintShareJob_Get.g.cs","v1.0","Get-MgPrintShareJob","GET","/print/shares/{param}/jobs/{param}","matched","Get-MgPrintShareJob" +"Devices.CloudPrint","GetMgPrintShareJob_List.g.cs","v1.0","Get-MgPrintShareJob","GET","/print/shares/{param}/jobs","matched","Get-MgPrintShareJob" +"Devices.CloudPrint","GetMgPrintShareJob.g.cs","v1.0","Get-MgPrintShareJob","","","dispatcher","" +"Devices.CloudPrint","GetMgPrintShareJobCount.g.cs","v1.0","Get-MgPrintShareJobCount","GET","/print/shares/{param}/jobs/$count","matched","Get-MgPrintShareJobCount" +"Devices.CloudPrint","GetMgPrintShareJobDocument_Get.g.cs","v1.0","Get-MgPrintShareJobDocument","GET","/print/shares/{param}/jobs/{param}/documents/{param}","matched","Get-MgPrintShareJobDocument" +"Devices.CloudPrint","GetMgPrintShareJobDocument_List.g.cs","v1.0","Get-MgPrintShareJobDocument","GET","/print/shares/{param}/jobs/{param}/documents","matched","Get-MgPrintShareJobDocument" +"Devices.CloudPrint","GetMgPrintShareJobDocument.g.cs","v1.0","Get-MgPrintShareJobDocument","","","dispatcher","" +"Devices.CloudPrint","GetMgPrintShareJobDocumentContent.g.cs","v1.0","Get-MgPrintShareJobDocumentContent","GET","/print/shares/{param}/jobs/{param}/documents/{param}/$value","matched","Get-MgPrintShareJobDocumentContent" +"Devices.CloudPrint","GetMgPrintShareJobDocumentCount.g.cs","v1.0","Get-MgPrintShareJobDocumentCount","GET","/print/shares/{param}/jobs/{param}/documents/$count","matched","Get-MgPrintShareJobDocumentCount" +"Devices.CloudPrint","GetMgPrintShareJobTask_Get.g.cs","v1.0","Get-MgPrintShareJobTask","GET","/print/shares/{param}/jobs/{param}/tasks/{param}","matched","Get-MgPrintShareJobTask" +"Devices.CloudPrint","GetMgPrintShareJobTask_List.g.cs","v1.0","Get-MgPrintShareJobTask","GET","/print/shares/{param}/jobs/{param}/tasks","matched","Get-MgPrintShareJobTask" +"Devices.CloudPrint","GetMgPrintShareJobTask.g.cs","v1.0","Get-MgPrintShareJobTask","","","dispatcher","" +"Devices.CloudPrint","GetMgPrintShareJobTaskCount.g.cs","v1.0","Get-MgPrintShareJobTaskCount","GET","/print/shares/{param}/jobs/{param}/tasks/$count","matched","Get-MgPrintShareJobTaskCount" +"Devices.CloudPrint","GetMgPrintShareJobTaskDefinition.g.cs","v1.0","Get-MgPrintShareJobTaskDefinition","GET","/print/shares/{param}/jobs/{param}/tasks/{param}/definition","matched","Get-MgPrintShareJobTaskDefinition" +"Devices.CloudPrint","GetMgPrintShareJobTaskTrigger.g.cs","v1.0","Get-MgPrintShareJobTaskTrigger","GET","/print/shares/{param}/jobs/{param}/tasks/{param}/trigger","matched","Get-MgPrintShareJobTaskTrigger" +"Devices.CloudPrint","GetMgPrintSharePrinter.g.cs","v1.0","Get-MgPrintSharePrinter","GET","/print/shares/{param}/printer","matched","Get-MgPrintSharePrinter" +"Devices.CloudPrint","GetMgPrintTaskDefinition_Get.g.cs","v1.0","Get-MgPrintTaskDefinition","GET","/print/taskDefinitions/{param}","matched","Get-MgPrintTaskDefinition" +"Devices.CloudPrint","GetMgPrintTaskDefinition_List.g.cs","v1.0","Get-MgPrintTaskDefinition","GET","/print/taskDefinitions","matched","Get-MgPrintTaskDefinition" +"Devices.CloudPrint","GetMgPrintTaskDefinition.g.cs","v1.0","Get-MgPrintTaskDefinition","","","dispatcher","" +"Devices.CloudPrint","GetMgPrintTaskDefinitionCount.g.cs","v1.0","Get-MgPrintTaskDefinitionCount","GET","/print/taskDefinitions/$count","matched","Get-MgPrintTaskDefinitionCount" +"Devices.CloudPrint","GetMgPrintTaskDefinitionTask_Get.g.cs","v1.0","Get-MgPrintTaskDefinitionTask","GET","/print/taskDefinitions/{param}/tasks/{param}","matched","Get-MgPrintTaskDefinitionTask" +"Devices.CloudPrint","GetMgPrintTaskDefinitionTask_List.g.cs","v1.0","Get-MgPrintTaskDefinitionTask","GET","/print/taskDefinitions/{param}/tasks","matched","Get-MgPrintTaskDefinitionTask" +"Devices.CloudPrint","GetMgPrintTaskDefinitionTask.g.cs","v1.0","Get-MgPrintTaskDefinitionTask","","","dispatcher","" +"Devices.CloudPrint","GetMgPrintTaskDefinitionTaskCount.g.cs","v1.0","Get-MgPrintTaskDefinitionTaskCount","GET","/print/taskDefinitions/{param}/tasks/$count","matched","Get-MgPrintTaskDefinitionTaskCount" +"Devices.CloudPrint","GetMgPrintTaskDefinitionTaskDefinition.g.cs","v1.0","Get-MgPrintTaskDefinitionTaskDefinition","GET","/print/taskDefinitions/{param}/tasks/{param}/definition","no-oracle","" +"Devices.CloudPrint","GetMgPrintTaskDefinitionTaskTrigger.g.cs","v1.0","Get-MgPrintTaskDefinitionTaskTrigger","GET","/print/taskDefinitions/{param}/tasks/{param}/trigger","matched","Get-MgPrintTaskDefinitionTaskTrigger" +"Devices.CloudPrint","InvokeMgPrinterCreate.g.cs","v1.0","Invoke-MgPrinterCreate","POST","/print/printers/create","mismatch","New-MgPrintPrinter" +"Devices.CloudPrint","InvokeMgPrinterJobAbort.g.cs","v1.0","Invoke-MgPrinterJobAbort","POST","/print/printers/{param}/jobs/{param}/abort","mismatch","Invoke-MgAbortPrintPrinterJob" +"Devices.CloudPrint","InvokeMgPrinterJobCancel.g.cs","v1.0","Invoke-MgPrinterJobCancel","POST","/print/printers/{param}/jobs/{param}/cancel","mismatch","Stop-MgPrintPrinterJob" +"Devices.CloudPrint","InvokeMgPrinterJobDocumentCreateUploadSession.g.cs","v1.0","Invoke-MgPrinterJobDocumentCreateUploadSession","POST","/print/printers/{param}/jobs/{param}/documents/{param}/createUploadSession","mismatch","New-MgPrintPrinterJobDocumentUploadSession" +"Devices.CloudPrint","InvokeMgPrinterJobRedirect.g.cs","v1.0","Invoke-MgPrinterJobRedirect","POST","/print/printers/{param}/jobs/{param}/redirect","mismatch","Invoke-MgRedirectPrintPrinterJob" +"Devices.CloudPrint","InvokeMgPrinterJobStart.g.cs","v1.0","Invoke-MgPrinterJobStart","POST","/print/printers/{param}/jobs/{param}/start","mismatch","Start-MgPrintPrinterJob" +"Devices.CloudPrint","InvokeMgPrinterRestoreFactoryDefaults.g.cs","v1.0","Invoke-MgPrinterRestoreFactoryDefaults","POST","/print/printers/{param}/restoreFactoryDefaults","mismatch","Restore-MgPrintPrinterFactoryDefault" +"Devices.CloudPrint","InvokeMgPrintShareJobAbort.g.cs","v1.0","Invoke-MgPrintShareJobAbort","POST","/print/shares/{param}/jobs/{param}/abort","mismatch","Invoke-MgAbortPrintShareJob" +"Devices.CloudPrint","InvokeMgPrintShareJobCancel.g.cs","v1.0","Invoke-MgPrintShareJobCancel","POST","/print/shares/{param}/jobs/{param}/cancel","mismatch","Stop-MgPrintShareJob" +"Devices.CloudPrint","InvokeMgPrintShareJobDocumentCreateUploadSession.g.cs","v1.0","Invoke-MgPrintShareJobDocumentCreateUploadSession","POST","/print/shares/{param}/jobs/{param}/documents/{param}/createUploadSession","mismatch","New-MgPrintShareJobDocumentUploadSession" +"Devices.CloudPrint","InvokeMgPrintShareJobRedirect.g.cs","v1.0","Invoke-MgPrintShareJobRedirect","POST","/print/shares/{param}/jobs/{param}/redirect","mismatch","Invoke-MgRedirectPrintShareJob" +"Devices.CloudPrint","InvokeMgPrintShareJobStart.g.cs","v1.0","Invoke-MgPrintShareJobStart","POST","/print/shares/{param}/jobs/{param}/start","mismatch","Start-MgPrintShareJob" +"Devices.CloudPrint","NewMgPrintConnector.g.cs","v1.0","New-MgPrintConnector","POST","/print/connectors","matched","New-MgPrintConnector" +"Devices.CloudPrint","NewMgPrinter.g.cs","v1.0","New-MgPrinter","POST","/print/printers","no-oracle","" +"Devices.CloudPrint","NewMgPrinterJob.g.cs","v1.0","New-MgPrinterJob","POST","/print/printers/{param}/jobs","mismatch","New-MgPrintPrinterJob" +"Devices.CloudPrint","NewMgPrinterJobDocument.g.cs","v1.0","New-MgPrinterJobDocument","POST","/print/printers/{param}/jobs/{param}/documents","mismatch","New-MgPrintPrinterJobDocument" +"Devices.CloudPrint","NewMgPrinterJobTask.g.cs","v1.0","New-MgPrinterJobTask","POST","/print/printers/{param}/jobs/{param}/tasks","mismatch","New-MgPrintPrinterJobTask" +"Devices.CloudPrint","NewMgPrinterTaskTrigger.g.cs","v1.0","New-MgPrinterTaskTrigger","POST","/print/printers/{param}/taskTriggers","mismatch","New-MgPrintPrinterTaskTrigger" +"Devices.CloudPrint","NewMgPrintOperation.g.cs","v1.0","New-MgPrintOperation","POST","/print/operations","matched","New-MgPrintOperation" +"Devices.CloudPrint","NewMgPrintService.g.cs","v1.0","New-MgPrintService","POST","/print/services","matched","New-MgPrintService" +"Devices.CloudPrint","NewMgPrintServiceEndpoint.g.cs","v1.0","New-MgPrintServiceEndpoint","POST","/print/services/{param}/endpoints","matched","New-MgPrintServiceEndpoint" +"Devices.CloudPrint","NewMgPrintShare.g.cs","v1.0","New-MgPrintShare","POST","/print/shares","matched","New-MgPrintShare" +"Devices.CloudPrint","NewMgPrintShareAllowedGroupByRef.g.cs","v1.0","New-MgPrintShareAllowedGroupByRef","POST","/print/shares/{param}/allowedGroups/$ref","matched","New-MgPrintShareAllowedGroupByRef" +"Devices.CloudPrint","NewMgPrintShareAllowedUserByRef.g.cs","v1.0","New-MgPrintShareAllowedUserByRef","POST","/print/shares/{param}/allowedUsers/$ref","matched","New-MgPrintShareAllowedUserByRef" +"Devices.CloudPrint","NewMgPrintShareJob.g.cs","v1.0","New-MgPrintShareJob","POST","/print/shares/{param}/jobs","matched","New-MgPrintShareJob" +"Devices.CloudPrint","NewMgPrintShareJobDocument.g.cs","v1.0","New-MgPrintShareJobDocument","POST","/print/shares/{param}/jobs/{param}/documents","matched","New-MgPrintShareJobDocument" +"Devices.CloudPrint","NewMgPrintShareJobTask.g.cs","v1.0","New-MgPrintShareJobTask","POST","/print/shares/{param}/jobs/{param}/tasks","matched","New-MgPrintShareJobTask" +"Devices.CloudPrint","NewMgPrintTaskDefinition.g.cs","v1.0","New-MgPrintTaskDefinition","POST","/print/taskDefinitions","matched","New-MgPrintTaskDefinition" +"Devices.CloudPrint","NewMgPrintTaskDefinitionTask.g.cs","v1.0","New-MgPrintTaskDefinitionTask","POST","/print/taskDefinitions/{param}/tasks","matched","New-MgPrintTaskDefinitionTask" +"Devices.CloudPrint","RemoveMgPrintConnector.g.cs","v1.0","Remove-MgPrintConnector","DELETE","/print/connectors/{param}","matched","Remove-MgPrintConnector" +"Devices.CloudPrint","RemoveMgPrinter.g.cs","v1.0","Remove-MgPrinter","DELETE","/print/printers/{param}","mismatch","Remove-MgPrintPrinter" +"Devices.CloudPrint","RemoveMgPrinterJob.g.cs","v1.0","Remove-MgPrinterJob","DELETE","/print/printers/{param}/jobs/{param}","mismatch","Remove-MgPrintPrinterJob" +"Devices.CloudPrint","RemoveMgPrinterJobDocument.g.cs","v1.0","Remove-MgPrinterJobDocument","DELETE","/print/printers/{param}/jobs/{param}/documents/{param}","mismatch","Remove-MgPrintPrinterJobDocument" +"Devices.CloudPrint","RemoveMgPrinterJobDocumentContent.g.cs","v1.0","Remove-MgPrinterJobDocumentContent","DELETE","/print/printers/{param}/jobs/{param}/documents/{param}/$value","mismatch","Remove-MgPrintPrinterJobDocumentContent" +"Devices.CloudPrint","RemoveMgPrinterJobTask.g.cs","v1.0","Remove-MgPrinterJobTask","DELETE","/print/printers/{param}/jobs/{param}/tasks/{param}","mismatch","Remove-MgPrintPrinterJobTask" +"Devices.CloudPrint","RemoveMgPrinterTaskTrigger.g.cs","v1.0","Remove-MgPrinterTaskTrigger","DELETE","/print/printers/{param}/taskTriggers/{param}","mismatch","Remove-MgPrintPrinterTaskTrigger" +"Devices.CloudPrint","RemoveMgPrintOperation.g.cs","v1.0","Remove-MgPrintOperation","DELETE","/print/operations/{param}","matched","Remove-MgPrintOperation" +"Devices.CloudPrint","RemoveMgPrintService.g.cs","v1.0","Remove-MgPrintService","DELETE","/print/services/{param}","matched","Remove-MgPrintService" +"Devices.CloudPrint","RemoveMgPrintServiceEndpoint.g.cs","v1.0","Remove-MgPrintServiceEndpoint","DELETE","/print/services/{param}/endpoints/{param}","matched","Remove-MgPrintServiceEndpoint" +"Devices.CloudPrint","RemoveMgPrintShare.g.cs","v1.0","Remove-MgPrintShare","DELETE","/print/shares/{param}","matched","Remove-MgPrintShare" +"Devices.CloudPrint","RemoveMgPrintShareAllowedGroupByRef.g.cs","v1.0","Remove-MgPrintShareAllowedGroupByRef","DELETE","/print/shares/{param}/allowedGroups/{param}/$ref","no-oracle","" +"Devices.CloudPrint","RemoveMgPrintShareAllowedUserByRef.g.cs","v1.0","Remove-MgPrintShareAllowedUserByRef","DELETE","/print/shares/{param}/allowedUsers/{param}/$ref","no-oracle","" +"Devices.CloudPrint","RemoveMgPrintShareJob.g.cs","v1.0","Remove-MgPrintShareJob","DELETE","/print/shares/{param}/jobs/{param}","matched","Remove-MgPrintShareJob" +"Devices.CloudPrint","RemoveMgPrintShareJobDocument.g.cs","v1.0","Remove-MgPrintShareJobDocument","DELETE","/print/shares/{param}/jobs/{param}/documents/{param}","matched","Remove-MgPrintShareJobDocument" +"Devices.CloudPrint","RemoveMgPrintShareJobDocumentContent.g.cs","v1.0","Remove-MgPrintShareJobDocumentContent","DELETE","/print/shares/{param}/jobs/{param}/documents/{param}/$value","matched","Remove-MgPrintShareJobDocumentContent" +"Devices.CloudPrint","RemoveMgPrintShareJobTask.g.cs","v1.0","Remove-MgPrintShareJobTask","DELETE","/print/shares/{param}/jobs/{param}/tasks/{param}","matched","Remove-MgPrintShareJobTask" +"Devices.CloudPrint","RemoveMgPrintTaskDefinition.g.cs","v1.0","Remove-MgPrintTaskDefinition","DELETE","/print/taskDefinitions/{param}","matched","Remove-MgPrintTaskDefinition" +"Devices.CloudPrint","RemoveMgPrintTaskDefinitionTask.g.cs","v1.0","Remove-MgPrintTaskDefinitionTask","DELETE","/print/taskDefinitions/{param}/tasks/{param}","matched","Remove-MgPrintTaskDefinitionTask" +"Devices.CloudPrint","UpdateMgPrint.g.cs","v1.0","Update-MgPrint","PATCH","/print","matched","Update-MgPrint" +"Devices.CloudPrint","UpdateMgPrintConnector.g.cs","v1.0","Update-MgPrintConnector","PATCH","/print/connectors/{param}","matched","Update-MgPrintConnector" +"Devices.CloudPrint","UpdateMgPrinter.g.cs","v1.0","Update-MgPrinter","PATCH","/print/printers/{param}","mismatch","Update-MgPrintPrinter" +"Devices.CloudPrint","UpdateMgPrinterJob.g.cs","v1.0","Update-MgPrinterJob","PATCH","/print/printers/{param}/jobs/{param}","mismatch","Update-MgPrintPrinterJob" +"Devices.CloudPrint","UpdateMgPrinterJobDocument.g.cs","v1.0","Update-MgPrinterJobDocument","PATCH","/print/printers/{param}/jobs/{param}/documents/{param}","mismatch","Update-MgPrintPrinterJobDocument" +"Devices.CloudPrint","UpdateMgPrinterJobTask.g.cs","v1.0","Update-MgPrinterJobTask","PATCH","/print/printers/{param}/jobs/{param}/tasks/{param}","mismatch","Update-MgPrintPrinterJobTask" +"Devices.CloudPrint","UpdateMgPrinterTaskTrigger.g.cs","v1.0","Update-MgPrinterTaskTrigger","PATCH","/print/printers/{param}/taskTriggers/{param}","mismatch","Update-MgPrintPrinterTaskTrigger" +"Devices.CloudPrint","UpdateMgPrintOperation.g.cs","v1.0","Update-MgPrintOperation","PATCH","/print/operations/{param}","matched","Update-MgPrintOperation" +"Devices.CloudPrint","UpdateMgPrintService.g.cs","v1.0","Update-MgPrintService","PATCH","/print/services/{param}","matched","Update-MgPrintService" +"Devices.CloudPrint","UpdateMgPrintServiceEndpoint.g.cs","v1.0","Update-MgPrintServiceEndpoint","PATCH","/print/services/{param}/endpoints/{param}","matched","Update-MgPrintServiceEndpoint" +"Devices.CloudPrint","UpdateMgPrintShare.g.cs","v1.0","Update-MgPrintShare","PATCH","/print/shares/{param}","matched","Update-MgPrintShare" +"Devices.CloudPrint","UpdateMgPrintShareAllowedUserMailboxSetting.g.cs","v1.0","Update-MgPrintShareAllowedUserMailboxSetting","PATCH","/print/shares/{param}/allowedUsers/{param}/mailboxSettings","matched","Update-MgPrintShareAllowedUserMailboxSetting" +"Devices.CloudPrint","UpdateMgPrintShareJob.g.cs","v1.0","Update-MgPrintShareJob","PATCH","/print/shares/{param}/jobs/{param}","matched","Update-MgPrintShareJob" +"Devices.CloudPrint","UpdateMgPrintShareJobDocument.g.cs","v1.0","Update-MgPrintShareJobDocument","PATCH","/print/shares/{param}/jobs/{param}/documents/{param}","matched","Update-MgPrintShareJobDocument" +"Devices.CloudPrint","UpdateMgPrintShareJobTask.g.cs","v1.0","Update-MgPrintShareJobTask","PATCH","/print/shares/{param}/jobs/{param}/tasks/{param}","matched","Update-MgPrintShareJobTask" +"Devices.CloudPrint","UpdateMgPrintTaskDefinition.g.cs","v1.0","Update-MgPrintTaskDefinition","PATCH","/print/taskDefinitions/{param}","matched","Update-MgPrintTaskDefinition" +"Devices.CloudPrint","UpdateMgPrintTaskDefinitionTask.g.cs","v1.0","Update-MgPrintTaskDefinitionTask","PATCH","/print/taskDefinitions/{param}/tasks/{param}","matched","Update-MgPrintTaskDefinitionTask" +"Devices.CorporateManagement","GetMgDeviceAppManagement.g.cs","v1.0","Get-MgDeviceAppManagement","GET","/deviceAppManagement","matched","Get-MgDeviceAppManagement" +"Devices.CorporateManagement","GetMgDeviceAppManagementAndroidManagedAppProtection_Get.g.cs","v1.0","Get-MgDeviceAppManagementAndroidManagedAppProtection","GET","/deviceAppManagement/androidManagedAppProtections/{param}","matched","Get-MgDeviceAppManagementAndroidManagedAppProtection" +"Devices.CorporateManagement","GetMgDeviceAppManagementAndroidManagedAppProtection_List.g.cs","v1.0","Get-MgDeviceAppManagementAndroidManagedAppProtection","GET","/deviceAppManagement/androidManagedAppProtections","matched","Get-MgDeviceAppManagementAndroidManagedAppProtection" +"Devices.CorporateManagement","GetMgDeviceAppManagementAndroidManagedAppProtection.g.cs","v1.0","Get-MgDeviceAppManagementAndroidManagedAppProtection","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementAndroidManagedAppProtectionApp_Get.g.cs","v1.0","Get-MgDeviceAppManagementAndroidManagedAppProtectionApp","GET","/deviceAppManagement/androidManagedAppProtections/{param}/apps/{param}","matched","Get-MgDeviceAppManagementAndroidManagedAppProtectionApp" +"Devices.CorporateManagement","GetMgDeviceAppManagementAndroidManagedAppProtectionApp_List.g.cs","v1.0","Get-MgDeviceAppManagementAndroidManagedAppProtectionApp","GET","/deviceAppManagement/androidManagedAppProtections/{param}/apps","matched","Get-MgDeviceAppManagementAndroidManagedAppProtectionApp" +"Devices.CorporateManagement","GetMgDeviceAppManagementAndroidManagedAppProtectionApp.g.cs","v1.0","Get-MgDeviceAppManagementAndroidManagedAppProtectionApp","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementAndroidManagedAppProtectionAppCount.g.cs","v1.0","Get-MgDeviceAppManagementAndroidManagedAppProtectionAppCount","GET","/deviceAppManagement/androidManagedAppProtections/{param}/apps/$count","matched","Get-MgDeviceAppManagementAndroidManagedAppProtectionAppCount" +"Devices.CorporateManagement","GetMgDeviceAppManagementAndroidManagedAppProtectionAssignment_Get.g.cs","v1.0","Get-MgDeviceAppManagementAndroidManagedAppProtectionAssignment","GET","/deviceAppManagement/androidManagedAppProtections/{param}/assignments/{param}","matched","Get-MgDeviceAppManagementAndroidManagedAppProtectionAssignment" +"Devices.CorporateManagement","GetMgDeviceAppManagementAndroidManagedAppProtectionAssignment_List.g.cs","v1.0","Get-MgDeviceAppManagementAndroidManagedAppProtectionAssignment","GET","/deviceAppManagement/androidManagedAppProtections/{param}/assignments","matched","Get-MgDeviceAppManagementAndroidManagedAppProtectionAssignment" +"Devices.CorporateManagement","GetMgDeviceAppManagementAndroidManagedAppProtectionAssignment.g.cs","v1.0","Get-MgDeviceAppManagementAndroidManagedAppProtectionAssignment","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementAndroidManagedAppProtectionAssignmentCount.g.cs","v1.0","Get-MgDeviceAppManagementAndroidManagedAppProtectionAssignmentCount","GET","/deviceAppManagement/androidManagedAppProtections/{param}/assignments/$count","matched","Get-MgDeviceAppManagementAndroidManagedAppProtectionAssignmentCount" +"Devices.CorporateManagement","GetMgDeviceAppManagementAndroidManagedAppProtectionCount.g.cs","v1.0","Get-MgDeviceAppManagementAndroidManagedAppProtectionCount","GET","/deviceAppManagement/androidManagedAppProtections/$count","matched","Get-MgDeviceAppManagementAndroidManagedAppProtectionCount" +"Devices.CorporateManagement","GetMgDeviceAppManagementAndroidManagedAppProtectionDeploymentSummary.g.cs","v1.0","Get-MgDeviceAppManagementAndroidManagedAppProtectionDeploymentSummary","GET","/deviceAppManagement/androidManagedAppProtections/{param}/deploymentSummary","matched","Get-MgDeviceAppManagementAndroidManagedAppProtectionDeploymentSummary" +"Devices.CorporateManagement","GetMgDeviceAppManagementDefaultManagedAppProtection_Get.g.cs","v1.0","Get-MgDeviceAppManagementDefaultManagedAppProtection","GET","/deviceAppManagement/defaultManagedAppProtections/{param}","matched","Get-MgDeviceAppManagementDefaultManagedAppProtection" +"Devices.CorporateManagement","GetMgDeviceAppManagementDefaultManagedAppProtection_List.g.cs","v1.0","Get-MgDeviceAppManagementDefaultManagedAppProtection","GET","/deviceAppManagement/defaultManagedAppProtections","matched","Get-MgDeviceAppManagementDefaultManagedAppProtection" +"Devices.CorporateManagement","GetMgDeviceAppManagementDefaultManagedAppProtection.g.cs","v1.0","Get-MgDeviceAppManagementDefaultManagedAppProtection","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementDefaultManagedAppProtectionApp_Get.g.cs","v1.0","Get-MgDeviceAppManagementDefaultManagedAppProtectionApp","GET","/deviceAppManagement/defaultManagedAppProtections/{param}/apps/{param}","matched","Get-MgDeviceAppManagementDefaultManagedAppProtectionApp" +"Devices.CorporateManagement","GetMgDeviceAppManagementDefaultManagedAppProtectionApp_List.g.cs","v1.0","Get-MgDeviceAppManagementDefaultManagedAppProtectionApp","GET","/deviceAppManagement/defaultManagedAppProtections/{param}/apps","matched","Get-MgDeviceAppManagementDefaultManagedAppProtectionApp" +"Devices.CorporateManagement","GetMgDeviceAppManagementDefaultManagedAppProtectionApp.g.cs","v1.0","Get-MgDeviceAppManagementDefaultManagedAppProtectionApp","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementDefaultManagedAppProtectionAppCount.g.cs","v1.0","Get-MgDeviceAppManagementDefaultManagedAppProtectionAppCount","GET","/deviceAppManagement/defaultManagedAppProtections/{param}/apps/$count","matched","Get-MgDeviceAppManagementDefaultManagedAppProtectionAppCount" +"Devices.CorporateManagement","GetMgDeviceAppManagementDefaultManagedAppProtectionCount.g.cs","v1.0","Get-MgDeviceAppManagementDefaultManagedAppProtectionCount","GET","/deviceAppManagement/defaultManagedAppProtections/$count","matched","Get-MgDeviceAppManagementDefaultManagedAppProtectionCount" +"Devices.CorporateManagement","GetMgDeviceAppManagementDefaultManagedAppProtectionDeploymentSummary.g.cs","v1.0","Get-MgDeviceAppManagementDefaultManagedAppProtectionDeploymentSummary","GET","/deviceAppManagement/defaultManagedAppProtections/{param}/deploymentSummary","matched","Get-MgDeviceAppManagementDefaultManagedAppProtectionDeploymentSummary" +"Devices.CorporateManagement","GetMgDeviceAppManagementIosManagedAppProtection_Get.g.cs","v1.0","Get-MgDeviceAppManagementIosManagedAppProtection","GET","/deviceAppManagement/iosManagedAppProtections/{param}","mismatch","Get-MgDeviceAppManagementiOSManagedAppProtection" +"Devices.CorporateManagement","GetMgDeviceAppManagementIosManagedAppProtection_List.g.cs","v1.0","Get-MgDeviceAppManagementIosManagedAppProtection","GET","/deviceAppManagement/iosManagedAppProtections","mismatch","Get-MgDeviceAppManagementiOSManagedAppProtection" +"Devices.CorporateManagement","GetMgDeviceAppManagementIosManagedAppProtection.g.cs","v1.0","Get-MgDeviceAppManagementIosManagedAppProtection","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementIosManagedAppProtectionApp_Get.g.cs","v1.0","Get-MgDeviceAppManagementIosManagedAppProtectionApp","GET","/deviceAppManagement/iosManagedAppProtections/{param}/apps/{param}","mismatch","Get-MgDeviceAppManagementiOSManagedAppProtectionApp" +"Devices.CorporateManagement","GetMgDeviceAppManagementIosManagedAppProtectionApp_List.g.cs","v1.0","Get-MgDeviceAppManagementIosManagedAppProtectionApp","GET","/deviceAppManagement/iosManagedAppProtections/{param}/apps","mismatch","Get-MgDeviceAppManagementiOSManagedAppProtectionApp" +"Devices.CorporateManagement","GetMgDeviceAppManagementIosManagedAppProtectionApp.g.cs","v1.0","Get-MgDeviceAppManagementIosManagedAppProtectionApp","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementIosManagedAppProtectionAppCount.g.cs","v1.0","Get-MgDeviceAppManagementIosManagedAppProtectionAppCount","GET","/deviceAppManagement/iosManagedAppProtections/{param}/apps/$count","mismatch","Get-MgDeviceAppManagementiOSManagedAppProtectionAppCount" +"Devices.CorporateManagement","GetMgDeviceAppManagementIosManagedAppProtectionAssignment_Get.g.cs","v1.0","Get-MgDeviceAppManagementIosManagedAppProtectionAssignment","GET","/deviceAppManagement/iosManagedAppProtections/{param}/assignments/{param}","mismatch","Get-MgDeviceAppManagementiOSManagedAppProtectionAssignment" +"Devices.CorporateManagement","GetMgDeviceAppManagementIosManagedAppProtectionAssignment_List.g.cs","v1.0","Get-MgDeviceAppManagementIosManagedAppProtectionAssignment","GET","/deviceAppManagement/iosManagedAppProtections/{param}/assignments","mismatch","Get-MgDeviceAppManagementiOSManagedAppProtectionAssignment" +"Devices.CorporateManagement","GetMgDeviceAppManagementIosManagedAppProtectionAssignment.g.cs","v1.0","Get-MgDeviceAppManagementIosManagedAppProtectionAssignment","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementIosManagedAppProtectionAssignmentCount.g.cs","v1.0","Get-MgDeviceAppManagementIosManagedAppProtectionAssignmentCount","GET","/deviceAppManagement/iosManagedAppProtections/{param}/assignments/$count","mismatch","Get-MgDeviceAppManagementiOSManagedAppProtectionAssignmentCount" +"Devices.CorporateManagement","GetMgDeviceAppManagementIosManagedAppProtectionCount.g.cs","v1.0","Get-MgDeviceAppManagementIosManagedAppProtectionCount","GET","/deviceAppManagement/iosManagedAppProtections/$count","mismatch","Get-MgDeviceAppManagementiOSManagedAppProtectionCount" +"Devices.CorporateManagement","GetMgDeviceAppManagementIosManagedAppProtectionDeploymentSummary.g.cs","v1.0","Get-MgDeviceAppManagementIosManagedAppProtectionDeploymentSummary","GET","/deviceAppManagement/iosManagedAppProtections/{param}/deploymentSummary","mismatch","Get-MgDeviceAppManagementiOSManagedAppProtectionDeploymentSummary" +"Devices.CorporateManagement","GetMgDeviceAppManagementManagedAppPolicy_Get.g.cs","v1.0","Get-MgDeviceAppManagementManagedAppPolicy","GET","/deviceAppManagement/managedAppPolicies/{param}","matched","Get-MgDeviceAppManagementManagedAppPolicy" +"Devices.CorporateManagement","GetMgDeviceAppManagementManagedAppPolicy_List.g.cs","v1.0","Get-MgDeviceAppManagementManagedAppPolicy","GET","/deviceAppManagement/managedAppPolicies","matched","Get-MgDeviceAppManagementManagedAppPolicy" +"Devices.CorporateManagement","GetMgDeviceAppManagementManagedAppPolicy.g.cs","v1.0","Get-MgDeviceAppManagementManagedAppPolicy","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementManagedAppPolicyCount.g.cs","v1.0","Get-MgDeviceAppManagementManagedAppPolicyCount","GET","/deviceAppManagement/managedAppPolicies/$count","matched","Get-MgDeviceAppManagementManagedAppPolicyCount" +"Devices.CorporateManagement","GetMgDeviceAppManagementManagedAppRegistration_Get.g.cs","v1.0","Get-MgDeviceAppManagementManagedAppRegistration","GET","/deviceAppManagement/managedAppRegistrations/{param}","matched","Get-MgDeviceAppManagementManagedAppRegistration" +"Devices.CorporateManagement","GetMgDeviceAppManagementManagedAppRegistration_List.g.cs","v1.0","Get-MgDeviceAppManagementManagedAppRegistration","GET","/deviceAppManagement/managedAppRegistrations","matched","Get-MgDeviceAppManagementManagedAppRegistration" +"Devices.CorporateManagement","GetMgDeviceAppManagementManagedAppRegistration.g.cs","v1.0","Get-MgDeviceAppManagementManagedAppRegistration","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementManagedAppRegistrationAppliedPolicy_Get.g.cs","v1.0","Get-MgDeviceAppManagementManagedAppRegistrationAppliedPolicy","GET","/deviceAppManagement/managedAppRegistrations/{param}/appliedPolicies/{param}","matched","Get-MgDeviceAppManagementManagedAppRegistrationAppliedPolicy" +"Devices.CorporateManagement","GetMgDeviceAppManagementManagedAppRegistrationAppliedPolicy_List.g.cs","v1.0","Get-MgDeviceAppManagementManagedAppRegistrationAppliedPolicy","GET","/deviceAppManagement/managedAppRegistrations/{param}/appliedPolicies","matched","Get-MgDeviceAppManagementManagedAppRegistrationAppliedPolicy" +"Devices.CorporateManagement","GetMgDeviceAppManagementManagedAppRegistrationAppliedPolicy.g.cs","v1.0","Get-MgDeviceAppManagementManagedAppRegistrationAppliedPolicy","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementManagedAppRegistrationAppliedPolicyCount.g.cs","v1.0","Get-MgDeviceAppManagementManagedAppRegistrationAppliedPolicyCount","GET","/deviceAppManagement/managedAppRegistrations/{param}/appliedPolicies/$count","matched","Get-MgDeviceAppManagementManagedAppRegistrationAppliedPolicyCount" +"Devices.CorporateManagement","GetMgDeviceAppManagementManagedAppRegistrationCount.g.cs","v1.0","Get-MgDeviceAppManagementManagedAppRegistrationCount","GET","/deviceAppManagement/managedAppRegistrations/$count","matched","Get-MgDeviceAppManagementManagedAppRegistrationCount" +"Devices.CorporateManagement","GetMgDeviceAppManagementManagedAppRegistrationGetUserIdsWithFlaggedAppRegistration.g.cs","v1.0","Get-MgDeviceAppManagementManagedAppRegistrationGetUserIdsWithFlaggedAppRegistration","GET","/deviceAppManagement/managedAppRegistrations/getUserIdsWithFlaggedAppRegistration","mismatch","Get-MgDeviceAppManagementManagedAppRegistrationUserIdWithFlaggedAppRegistration" +"Devices.CorporateManagement","GetMgDeviceAppManagementManagedAppRegistrationIntendedPolicy_Get.g.cs","v1.0","Get-MgDeviceAppManagementManagedAppRegistrationIntendedPolicy","GET","/deviceAppManagement/managedAppRegistrations/{param}/intendedPolicies/{param}","matched","Get-MgDeviceAppManagementManagedAppRegistrationIntendedPolicy" +"Devices.CorporateManagement","GetMgDeviceAppManagementManagedAppRegistrationIntendedPolicy_List.g.cs","v1.0","Get-MgDeviceAppManagementManagedAppRegistrationIntendedPolicy","GET","/deviceAppManagement/managedAppRegistrations/{param}/intendedPolicies","matched","Get-MgDeviceAppManagementManagedAppRegistrationIntendedPolicy" +"Devices.CorporateManagement","GetMgDeviceAppManagementManagedAppRegistrationIntendedPolicy.g.cs","v1.0","Get-MgDeviceAppManagementManagedAppRegistrationIntendedPolicy","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementManagedAppRegistrationIntendedPolicyCount.g.cs","v1.0","Get-MgDeviceAppManagementManagedAppRegistrationIntendedPolicyCount","GET","/deviceAppManagement/managedAppRegistrations/{param}/intendedPolicies/$count","matched","Get-MgDeviceAppManagementManagedAppRegistrationIntendedPolicyCount" +"Devices.CorporateManagement","GetMgDeviceAppManagementManagedAppRegistrationOperation_Get.g.cs","v1.0","Get-MgDeviceAppManagementManagedAppRegistrationOperation","GET","/deviceAppManagement/managedAppRegistrations/{param}/operations/{param}","matched","Get-MgDeviceAppManagementManagedAppRegistrationOperation" +"Devices.CorporateManagement","GetMgDeviceAppManagementManagedAppRegistrationOperation_List.g.cs","v1.0","Get-MgDeviceAppManagementManagedAppRegistrationOperation","GET","/deviceAppManagement/managedAppRegistrations/{param}/operations","matched","Get-MgDeviceAppManagementManagedAppRegistrationOperation" +"Devices.CorporateManagement","GetMgDeviceAppManagementManagedAppRegistrationOperation.g.cs","v1.0","Get-MgDeviceAppManagementManagedAppRegistrationOperation","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementManagedAppRegistrationOperationCount.g.cs","v1.0","Get-MgDeviceAppManagementManagedAppRegistrationOperationCount","GET","/deviceAppManagement/managedAppRegistrations/{param}/operations/$count","matched","Get-MgDeviceAppManagementManagedAppRegistrationOperationCount" +"Devices.CorporateManagement","GetMgDeviceAppManagementManagedAppStatus_Get.g.cs","v1.0","Get-MgDeviceAppManagementManagedAppStatus","GET","/deviceAppManagement/managedAppStatuses/{param}","matched","Get-MgDeviceAppManagementManagedAppStatus" +"Devices.CorporateManagement","GetMgDeviceAppManagementManagedAppStatus_List.g.cs","v1.0","Get-MgDeviceAppManagementManagedAppStatus","GET","/deviceAppManagement/managedAppStatuses","matched","Get-MgDeviceAppManagementManagedAppStatus" +"Devices.CorporateManagement","GetMgDeviceAppManagementManagedAppStatus.g.cs","v1.0","Get-MgDeviceAppManagementManagedAppStatus","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementManagedAppStatusCount.g.cs","v1.0","Get-MgDeviceAppManagementManagedAppStatusCount","GET","/deviceAppManagement/managedAppStatuses/$count","matched","Get-MgDeviceAppManagementManagedAppStatusCount" +"Devices.CorporateManagement","GetMgDeviceAppManagementManagedEBook_Get.g.cs","v1.0","Get-MgDeviceAppManagementManagedEBook","GET","/deviceAppManagement/managedEBooks/{param}","matched","Get-MgDeviceAppManagementManagedEBook" +"Devices.CorporateManagement","GetMgDeviceAppManagementManagedEBook_List.g.cs","v1.0","Get-MgDeviceAppManagementManagedEBook","GET","/deviceAppManagement/managedEBooks","matched","Get-MgDeviceAppManagementManagedEBook" +"Devices.CorporateManagement","GetMgDeviceAppManagementManagedEBook.g.cs","v1.0","Get-MgDeviceAppManagementManagedEBook","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementManagedEBookAssignment_Get.g.cs","v1.0","Get-MgDeviceAppManagementManagedEBookAssignment","GET","/deviceAppManagement/managedEBooks/{param}/assignments/{param}","matched","Get-MgDeviceAppManagementManagedEBookAssignment" +"Devices.CorporateManagement","GetMgDeviceAppManagementManagedEBookAssignment_List.g.cs","v1.0","Get-MgDeviceAppManagementManagedEBookAssignment","GET","/deviceAppManagement/managedEBooks/{param}/assignments","matched","Get-MgDeviceAppManagementManagedEBookAssignment" +"Devices.CorporateManagement","GetMgDeviceAppManagementManagedEBookAssignment.g.cs","v1.0","Get-MgDeviceAppManagementManagedEBookAssignment","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementManagedEBookAssignmentCount.g.cs","v1.0","Get-MgDeviceAppManagementManagedEBookAssignmentCount","GET","/deviceAppManagement/managedEBooks/{param}/assignments/$count","matched","Get-MgDeviceAppManagementManagedEBookAssignmentCount" +"Devices.CorporateManagement","GetMgDeviceAppManagementManagedEBookCount.g.cs","v1.0","Get-MgDeviceAppManagementManagedEBookCount","GET","/deviceAppManagement/managedEBooks/$count","matched","Get-MgDeviceAppManagementManagedEBookCount" +"Devices.CorporateManagement","GetMgDeviceAppManagementManagedEBookDeviceState_Get.g.cs","v1.0","Get-MgDeviceAppManagementManagedEBookDeviceState","GET","/deviceAppManagement/managedEBooks/{param}/deviceStates/{param}","matched","Get-MgDeviceAppManagementManagedEBookDeviceState" +"Devices.CorporateManagement","GetMgDeviceAppManagementManagedEBookDeviceState_List.g.cs","v1.0","Get-MgDeviceAppManagementManagedEBookDeviceState","GET","/deviceAppManagement/managedEBooks/{param}/deviceStates","matched","Get-MgDeviceAppManagementManagedEBookDeviceState" +"Devices.CorporateManagement","GetMgDeviceAppManagementManagedEBookDeviceState.g.cs","v1.0","Get-MgDeviceAppManagementManagedEBookDeviceState","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementManagedEBookDeviceStateCount.g.cs","v1.0","Get-MgDeviceAppManagementManagedEBookDeviceStateCount","GET","/deviceAppManagement/managedEBooks/{param}/deviceStates/$count","matched","Get-MgDeviceAppManagementManagedEBookDeviceStateCount" +"Devices.CorporateManagement","GetMgDeviceAppManagementManagedEBookInstallSummary.g.cs","v1.0","Get-MgDeviceAppManagementManagedEBookInstallSummary","GET","/deviceAppManagement/managedEBooks/{param}/installSummary","matched","Get-MgDeviceAppManagementManagedEBookInstallSummary" +"Devices.CorporateManagement","GetMgDeviceAppManagementManagedEBookUserStateSummary_Get.g.cs","v1.0","Get-MgDeviceAppManagementManagedEBookUserStateSummary","GET","/deviceAppManagement/managedEBooks/{param}/userStateSummary/{param}","matched","Get-MgDeviceAppManagementManagedEBookUserStateSummary" +"Devices.CorporateManagement","GetMgDeviceAppManagementManagedEBookUserStateSummary_List.g.cs","v1.0","Get-MgDeviceAppManagementManagedEBookUserStateSummary","GET","/deviceAppManagement/managedEBooks/{param}/userStateSummary","matched","Get-MgDeviceAppManagementManagedEBookUserStateSummary" +"Devices.CorporateManagement","GetMgDeviceAppManagementManagedEBookUserStateSummary.g.cs","v1.0","Get-MgDeviceAppManagementManagedEBookUserStateSummary","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementManagedEBookUserStateSummaryCount.g.cs","v1.0","Get-MgDeviceAppManagementManagedEBookUserStateSummaryCount","GET","/deviceAppManagement/managedEBooks/{param}/userStateSummary/$count","matched","Get-MgDeviceAppManagementManagedEBookUserStateSummaryCount" +"Devices.CorporateManagement","GetMgDeviceAppManagementManagedEBookUserStateSummaryDeviceState_Get.g.cs","v1.0","Get-MgDeviceAppManagementManagedEBookUserStateSummaryDeviceState","GET","/deviceAppManagement/managedEBooks/{param}/userStateSummary/{param}/deviceStates/{param}","matched","Get-MgDeviceAppManagementManagedEBookUserStateSummaryDeviceState" +"Devices.CorporateManagement","GetMgDeviceAppManagementManagedEBookUserStateSummaryDeviceState_List.g.cs","v1.0","Get-MgDeviceAppManagementManagedEBookUserStateSummaryDeviceState","GET","/deviceAppManagement/managedEBooks/{param}/userStateSummary/{param}/deviceStates","matched","Get-MgDeviceAppManagementManagedEBookUserStateSummaryDeviceState" +"Devices.CorporateManagement","GetMgDeviceAppManagementManagedEBookUserStateSummaryDeviceState.g.cs","v1.0","Get-MgDeviceAppManagementManagedEBookUserStateSummaryDeviceState","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementManagedEBookUserStateSummaryDeviceStateCount.g.cs","v1.0","Get-MgDeviceAppManagementManagedEBookUserStateSummaryDeviceStateCount","GET","/deviceAppManagement/managedEBooks/{param}/userStateSummary/{param}/deviceStates/$count","matched","Get-MgDeviceAppManagementManagedEBookUserStateSummaryDeviceStateCount" +"Devices.CorporateManagement","GetMgDeviceAppManagementMdmWindowsInformationProtectionPolicy_Get.g.cs","v1.0","Get-MgDeviceAppManagementMdmWindowsInformationProtectionPolicy","GET","/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{param}","matched","Get-MgDeviceAppManagementMdmWindowsInformationProtectionPolicy" +"Devices.CorporateManagement","GetMgDeviceAppManagementMdmWindowsInformationProtectionPolicy_List.g.cs","v1.0","Get-MgDeviceAppManagementMdmWindowsInformationProtectionPolicy","GET","/deviceAppManagement/mdmWindowsInformationProtectionPolicies","matched","Get-MgDeviceAppManagementMdmWindowsInformationProtectionPolicy" +"Devices.CorporateManagement","GetMgDeviceAppManagementMdmWindowsInformationProtectionPolicy.g.cs","v1.0","Get-MgDeviceAppManagementMdmWindowsInformationProtectionPolicy","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMdmWindowsInformationProtectionPolicyAssignment_Get.g.cs","v1.0","Get-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyAssignment","GET","/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{param}/assignments/{param}","matched","Get-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyAssignment" +"Devices.CorporateManagement","GetMgDeviceAppManagementMdmWindowsInformationProtectionPolicyAssignment_List.g.cs","v1.0","Get-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyAssignment","GET","/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{param}/assignments","matched","Get-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyAssignment" +"Devices.CorporateManagement","GetMgDeviceAppManagementMdmWindowsInformationProtectionPolicyAssignment.g.cs","v1.0","Get-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyAssignment","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMdmWindowsInformationProtectionPolicyAssignmentCount.g.cs","v1.0","Get-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyAssignmentCount","GET","/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{param}/assignments/$count","matched","Get-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyAssignmentCount" +"Devices.CorporateManagement","GetMgDeviceAppManagementMdmWindowsInformationProtectionPolicyCount.g.cs","v1.0","Get-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyCount","GET","/deviceAppManagement/mdmWindowsInformationProtectionPolicies/$count","matched","Get-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyCount" +"Devices.CorporateManagement","GetMgDeviceAppManagementMdmWindowsInformationProtectionPolicyExemptAppLockerFile_Get.g.cs","v1.0","Get-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyExemptAppLockerFile","GET","/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{param}/exemptAppLockerFiles/{param}","matched","Get-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyExemptAppLockerFile" +"Devices.CorporateManagement","GetMgDeviceAppManagementMdmWindowsInformationProtectionPolicyExemptAppLockerFile_List.g.cs","v1.0","Get-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyExemptAppLockerFile","GET","/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{param}/exemptAppLockerFiles","matched","Get-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyExemptAppLockerFile" +"Devices.CorporateManagement","GetMgDeviceAppManagementMdmWindowsInformationProtectionPolicyExemptAppLockerFile.g.cs","v1.0","Get-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyExemptAppLockerFile","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMdmWindowsInformationProtectionPolicyExemptAppLockerFileCount.g.cs","v1.0","Get-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyExemptAppLockerFileCount","GET","/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{param}/exemptAppLockerFiles/$count","matched","Get-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyExemptAppLockerFileCount" +"Devices.CorporateManagement","GetMgDeviceAppManagementMdmWindowsInformationProtectionPolicyProtectedAppLockerFile_Get.g.cs","v1.0","Get-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyProtectedAppLockerFile","GET","/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{param}/protectedAppLockerFiles/{param}","matched","Get-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyProtectedAppLockerFile" +"Devices.CorporateManagement","GetMgDeviceAppManagementMdmWindowsInformationProtectionPolicyProtectedAppLockerFile_List.g.cs","v1.0","Get-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyProtectedAppLockerFile","GET","/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{param}/protectedAppLockerFiles","matched","Get-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyProtectedAppLockerFile" +"Devices.CorporateManagement","GetMgDeviceAppManagementMdmWindowsInformationProtectionPolicyProtectedAppLockerFile.g.cs","v1.0","Get-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyProtectedAppLockerFile","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMdmWindowsInformationProtectionPolicyProtectedAppLockerFileCount.g.cs","v1.0","Get-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyProtectedAppLockerFileCount","GET","/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{param}/protectedAppLockerFiles/$count","matched","Get-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyProtectedAppLockerFileCount" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileApp_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileApp","GET","/deviceAppManagement/mobileApps/{param}","matched","Get-MgDeviceAppManagementMobileApp" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileApp_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileApp","GET","/deviceAppManagement/mobileApps","matched","Get-MgDeviceAppManagementMobileApp" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileApp.g.cs","v1.0","Get-MgDeviceAppManagementMobileApp","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsAndroidLobApp_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsAndroidLobApp","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsAndroidLobApp_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsAndroidLobApp","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsAndroidLobApp.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsAndroidLobApp","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsAndroidLobAppAssignment_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsAndroidLobAppAssignment","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsAndroidLobAppAssignment_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsAndroidLobAppAssignment","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsAndroidLobAppAssignment.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsAndroidLobAppAssignment","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsAndroidLobAppAssignmentCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsAndroidLobAppAssignmentCount","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsAndroidLobAppCategory_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsAndroidLobAppCategory","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsAndroidLobAppCategory_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsAndroidLobAppCategory","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsAndroidLobAppCategory.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsAndroidLobAppCategory","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsAndroidLobAppCategoryCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsAndroidLobAppCategoryCount","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsAndroidLobAppContentVersion_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersion","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsAndroidLobAppContentVersion_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersion","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsAndroidLobAppContentVersion.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersion","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionContainedApp_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionContainedApp","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionContainedApp_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionContainedApp","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionContainedApp.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionContainedApp","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionContainedAppCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionContainedAppCount","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionCount","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionFile_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionFile","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionFile_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionFile","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionFile.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionFile","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionFileCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionFileCount","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsAndroidLobAppCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsAndroidLobAppCount","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsAndroidStoreApp_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsAndroidStoreApp","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsAndroidStoreApp_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsAndroidStoreApp","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsAndroidStoreApp.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsAndroidStoreApp","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsAndroidStoreAppAssignment_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsAndroidStoreAppAssignment","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsAndroidStoreAppAssignment_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsAndroidStoreAppAssignment","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsAndroidStoreAppAssignment.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsAndroidStoreAppAssignment","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsAndroidStoreAppAssignmentCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsAndroidStoreAppAssignmentCount","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsAndroidStoreAppCategory_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsAndroidStoreAppCategory","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsAndroidStoreAppCategory_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsAndroidStoreAppCategory","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsAndroidStoreAppCategory.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsAndroidStoreAppCategory","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsAndroidStoreAppCategoryCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsAndroidStoreAppCategoryCount","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsAndroidStoreAppCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsAndroidStoreAppCount","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsIosLobApp_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsIosLobApp","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsIosLobApp_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsIosLobApp","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsIosLobApp.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsIosLobApp","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsIosLobAppAssignment_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsIosLobAppAssignment","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsIosLobAppAssignment_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsIosLobAppAssignment","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsIosLobAppAssignment.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsIosLobAppAssignment","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsIosLobAppAssignmentCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsIosLobAppAssignmentCount","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsIosLobAppCategory_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsIosLobAppCategory","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsIosLobAppCategory_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsIosLobAppCategory","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsIosLobAppCategory.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsIosLobAppCategory","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsIosLobAppCategoryCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsIosLobAppCategoryCount","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsIosLobAppContentVersion_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsIosLobAppContentVersion","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsIosLobAppContentVersion_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsIosLobAppContentVersion","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsIosLobAppContentVersion.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsIosLobAppContentVersion","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsIosLobAppContentVersionContainedApp_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsIosLobAppContentVersionContainedApp","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsIosLobAppContentVersionContainedApp_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsIosLobAppContentVersionContainedApp","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsIosLobAppContentVersionContainedApp.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsIosLobAppContentVersionContainedApp","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsIosLobAppContentVersionContainedAppCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsIosLobAppContentVersionContainedAppCount","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsIosLobAppContentVersionCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsIosLobAppContentVersionCount","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsIosLobAppContentVersionFile_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsIosLobAppContentVersionFile","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsIosLobAppContentVersionFile_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsIosLobAppContentVersionFile","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsIosLobAppContentVersionFile.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsIosLobAppContentVersionFile","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsIosLobAppContentVersionFileCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsIosLobAppContentVersionFileCount","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsIosLobAppCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsIosLobAppCount","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsIosStoreApp_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsIosStoreApp","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsIosStoreApp_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsIosStoreApp","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsIosStoreApp.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsIosStoreApp","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsIosStoreAppAssignment_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsIosStoreAppAssignment","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsIosStoreAppAssignment_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsIosStoreAppAssignment","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsIosStoreAppAssignment.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsIosStoreAppAssignment","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsIosStoreAppAssignmentCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsIosStoreAppAssignmentCount","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsIosStoreAppCategory_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsIosStoreAppCategory","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsIosStoreAppCategory_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsIosStoreAppCategory","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsIosStoreAppCategory.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsIosStoreAppCategory","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsIosStoreAppCategoryCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsIosStoreAppCategoryCount","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsIosStoreAppCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsIosStoreAppCount","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsIosVppApp_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsIosVppApp","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsIosVppApp_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsIosVppApp","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsIosVppApp.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsIosVppApp","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsIosVppAppAssignment_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsIosVppAppAssignment","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsIosVppAppAssignment_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsIosVppAppAssignment","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsIosVppAppAssignment.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsIosVppAppAssignment","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsIosVppAppAssignmentCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsIosVppAppAssignmentCount","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsIosVppAppCategory_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsIosVppAppCategory","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsIosVppAppCategory_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsIosVppAppCategory","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsIosVppAppCategory.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsIosVppAppCategory","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsIosVppAppCategoryCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsIosVppAppCategoryCount","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsIosVppAppCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsIosVppAppCount","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsMacOSDmgApp_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMacOSDmgApp","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsMacOSDmgApp_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMacOSDmgApp","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsMacOSDmgApp.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMacOSDmgApp","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsMacOSDmgAppAssignment_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMacOSDmgAppAssignment","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsMacOSDmgAppAssignment_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMacOSDmgAppAssignment","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsMacOSDmgAppAssignment.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMacOSDmgAppAssignment","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsMacOSDmgAppAssignmentCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMacOSDmgAppAssignmentCount","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsMacOSDmgAppCategory_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMacOSDmgAppCategory","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsMacOSDmgAppCategory_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMacOSDmgAppCategory","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsMacOSDmgAppCategory.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMacOSDmgAppCategory","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsMacOSDmgAppCategoryCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMacOSDmgAppCategoryCount","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersion_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersion","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersion_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersion","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersion.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersion","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionContainedApp_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionContainedApp","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionContainedApp_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionContainedApp","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionContainedApp.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionContainedApp","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionContainedAppCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionContainedAppCount","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionCount","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionFile_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionFile","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionFile_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionFile","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionFile.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionFile","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionFileCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionFileCount","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsMacOSDmgAppCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMacOSDmgAppCount","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsMacOSLobApp_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMacOSLobApp","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsMacOSLobApp_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMacOSLobApp","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsMacOSLobApp.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMacOSLobApp","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsMacOSLobAppAssignment_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMacOSLobAppAssignment","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsMacOSLobAppAssignment_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMacOSLobAppAssignment","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsMacOSLobAppAssignment.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMacOSLobAppAssignment","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsMacOSLobAppAssignmentCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMacOSLobAppAssignmentCount","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsMacOSLobAppCategory_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMacOSLobAppCategory","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsMacOSLobAppCategory_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMacOSLobAppCategory","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsMacOSLobAppCategory.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMacOSLobAppCategory","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsMacOSLobAppCategoryCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMacOSLobAppCategoryCount","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsMacOSLobAppContentVersion_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersion","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsMacOSLobAppContentVersion_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersion","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsMacOSLobAppContentVersion.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersion","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionContainedApp_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionContainedApp","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionContainedApp_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionContainedApp","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionContainedApp.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionContainedApp","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionContainedAppCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionContainedAppCount","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionCount","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionFile_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionFile","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionFile_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionFile","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionFile.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionFile","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionFileCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionFileCount","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsMacOSLobAppCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMacOSLobAppCount","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsManagedAndroidLobApp_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobApp","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsManagedAndroidLobApp_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobApp","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsManagedAndroidLobApp.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobApp","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsManagedAndroidLobAppAssignment_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppAssignment","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsManagedAndroidLobAppAssignment_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppAssignment","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsManagedAndroidLobAppAssignment.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppAssignment","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsManagedAndroidLobAppAssignmentCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppAssignmentCount","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsManagedAndroidLobAppCategory_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppCategory","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsManagedAndroidLobAppCategory_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppCategory","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsManagedAndroidLobAppCategory.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppCategory","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsManagedAndroidLobAppCategoryCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppCategoryCount","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersion_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersion","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersion_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersion","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersion.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersion","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionContainedApp_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionContainedApp","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionContainedApp_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionContainedApp","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionContainedApp.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionContainedApp","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionContainedAppCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionContainedAppCount","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionCount","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionFile_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionFile","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionFile_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionFile","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionFile.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionFile","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionFileCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionFileCount","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsManagedAndroidLobAppCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppCount","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsManagedIOSLobApp_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedIOSLobApp","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsManagedIOSLobApp_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedIOSLobApp","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsManagedIOSLobApp.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedIOSLobApp","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsManagedIOSLobAppAssignment_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedIOSLobAppAssignment","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsManagedIOSLobAppAssignment_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedIOSLobAppAssignment","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsManagedIOSLobAppAssignment.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedIOSLobAppAssignment","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsManagedIOSLobAppAssignmentCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedIOSLobAppAssignmentCount","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsManagedIOSLobAppCategory_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedIOSLobAppCategory","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsManagedIOSLobAppCategory_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedIOSLobAppCategory","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsManagedIOSLobAppCategory.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedIOSLobAppCategory","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsManagedIOSLobAppCategoryCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedIOSLobAppCategoryCount","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersion_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersion","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersion_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersion","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersion.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersion","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersionContainedApp_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersionContainedApp","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersionContainedApp_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersionContainedApp","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersionContainedApp.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersionContainedApp","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersionContainedAppCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersionContainedAppCount","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersionCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersionCount","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersionFile_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersionFile","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersionFile_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersionFile","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersionFile.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersionFile","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersionFileCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersionFileCount","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsManagedIOSLobAppCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedIOSLobAppCount","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsManagedMobileLobApp_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedMobileLobApp","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsManagedMobileLobApp_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedMobileLobApp","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsManagedMobileLobApp.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedMobileLobApp","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsManagedMobileLobAppAssignment_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedMobileLobAppAssignment","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsManagedMobileLobAppAssignment_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedMobileLobAppAssignment","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsManagedMobileLobAppAssignment.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedMobileLobAppAssignment","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsManagedMobileLobAppAssignmentCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedMobileLobAppAssignmentCount","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsManagedMobileLobAppCategory_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedMobileLobAppCategory","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsManagedMobileLobAppCategory_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedMobileLobAppCategory","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsManagedMobileLobAppCategory.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedMobileLobAppCategory","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsManagedMobileLobAppCategoryCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedMobileLobAppCategoryCount","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersion_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersion","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersion_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersion","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersion.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersion","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionContainedApp_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionContainedApp","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionContainedApp_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionContainedApp","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionContainedApp.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionContainedApp","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionContainedAppCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionContainedAppCount","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionCount","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionFile_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionFile","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionFile_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionFile","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionFile.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionFile","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionFileCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionFileCount","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsManagedMobileLobAppCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsManagedMobileLobAppCount","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessApp_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessApp","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessApp_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessApp","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessApp.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessApp","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppAssignment_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppAssignment","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppAssignment_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppAssignment","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppAssignment.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppAssignment","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppAssignmentCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppAssignmentCount","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppCategory_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppCategory","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppCategory_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppCategory","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppCategory.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppCategory","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppCategoryCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppCategoryCount","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppCount","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAssignment_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAssignment","GET","/deviceAppManagement/mobileApps/{param}/assignments/{param}","matched","Get-MgDeviceAppManagementMobileAppAssignment" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAssignment_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAssignment","GET","/deviceAppManagement/mobileApps/{param}/assignments","matched","Get-MgDeviceAppManagementMobileAppAssignment" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAssignment.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAssignment","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAssignmentCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAssignmentCount","GET","/deviceAppManagement/mobileApps/{param}/assignments/$count","matched","Get-MgDeviceAppManagementMobileAppAssignmentCount" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsWin32LobApp_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWin32LobApp","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsWin32LobApp_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWin32LobApp","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsWin32LobApp.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWin32LobApp","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsWin32LobAppAssignment_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWin32LobAppAssignment","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsWin32LobAppAssignment_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWin32LobAppAssignment","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsWin32LobAppAssignment.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWin32LobAppAssignment","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsWin32LobAppAssignmentCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWin32LobAppAssignmentCount","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsWin32LobAppCategory_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWin32LobAppCategory","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsWin32LobAppCategory_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWin32LobAppCategory","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsWin32LobAppCategory.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWin32LobAppCategory","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsWin32LobAppCategoryCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWin32LobAppCategoryCount","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsWin32LobAppContentVersion_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersion","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsWin32LobAppContentVersion_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersion","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsWin32LobAppContentVersion.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersion","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsWin32LobAppContentVersionContainedApp_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersionContainedApp","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsWin32LobAppContentVersionContainedApp_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersionContainedApp","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsWin32LobAppContentVersionContainedApp.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersionContainedApp","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsWin32LobAppContentVersionContainedAppCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersionContainedAppCount","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsWin32LobAppContentVersionCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersionCount","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsWin32LobAppContentVersionFile_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersionFile","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsWin32LobAppContentVersionFile_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersionFile","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsWin32LobAppContentVersionFile.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersionFile","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsWin32LobAppContentVersionFileCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersionFileCount","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsWin32LobAppCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWin32LobAppCount","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsWindowsAppX_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsAppX","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsWindowsAppX_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsAppX","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsWindowsAppX.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsAppX","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsWindowsAppXAssignment_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsAppXAssignment","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsWindowsAppXAssignment_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsAppXAssignment","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsWindowsAppXAssignment.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsAppXAssignment","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsWindowsAppXAssignmentCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsAppXAssignmentCount","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsWindowsAppXCategory_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsAppXCategory","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsWindowsAppXCategory_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsAppXCategory","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsWindowsAppXCategory.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsAppXCategory","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsWindowsAppXCategoryCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsAppXCategoryCount","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsWindowsAppXContentVersion_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersion","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsWindowsAppXContentVersion_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersion","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsWindowsAppXContentVersion.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersion","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsWindowsAppXContentVersionContainedApp_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersionContainedApp","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsWindowsAppXContentVersionContainedApp_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersionContainedApp","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsWindowsAppXContentVersionContainedApp.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersionContainedApp","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsWindowsAppXContentVersionContainedAppCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersionContainedAppCount","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsWindowsAppXContentVersionCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersionCount","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsWindowsAppXContentVersionFile_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersionFile","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsWindowsAppXContentVersionFile_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersionFile","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsWindowsAppXContentVersionFile.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersionFile","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsWindowsAppXContentVersionFileCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersionFileCount","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsWindowsAppXCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsAppXCount","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsWindowsMobileMSI_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsMobileMSI","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsWindowsMobileMSI_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsMobileMSI","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsWindowsMobileMSI.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsMobileMSI","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsWindowsMobileMSIAssignment_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsMobileMSIAssignment","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsWindowsMobileMSIAssignment_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsMobileMSIAssignment","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsWindowsMobileMSIAssignment.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsMobileMSIAssignment","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsWindowsMobileMSIAssignmentCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsMobileMSIAssignmentCount","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsWindowsMobileMSICategory_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsMobileMSICategory","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsWindowsMobileMSICategory_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsMobileMSICategory","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsWindowsMobileMSICategory.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsMobileMSICategory","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsWindowsMobileMSICategoryCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsMobileMSICategoryCount","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersion_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersion","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersion_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersion","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersion.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersion","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersionContainedApp_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersionContainedApp","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersionContainedApp_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersionContainedApp","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersionContainedApp.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersionContainedApp","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersionContainedAppCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersionContainedAppCount","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersionCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersionCount","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersionFile_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersionFile","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersionFile_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersionFile","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersionFile.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersionFile","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersionFileCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersionFileCount","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsWindowsMobileMSICount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsMobileMSICount","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsWindowsUniversalAppX_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppX","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsWindowsUniversalAppX_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppX","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsWindowsUniversalAppX.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppX","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsWindowsUniversalAppXAssignment_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXAssignment","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsWindowsUniversalAppXAssignment_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXAssignment","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsWindowsUniversalAppXAssignment.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXAssignment","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsWindowsUniversalAppXAssignmentCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXAssignmentCount","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsWindowsUniversalAppXCategory_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXCategory","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsWindowsUniversalAppXCategory_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXCategory","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsWindowsUniversalAppXCategory.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXCategory","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsWindowsUniversalAppXCategoryCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXCategoryCount","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsWindowsUniversalAppXCommittedContainedApp_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXCommittedContainedApp","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsWindowsUniversalAppXCommittedContainedApp_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXCommittedContainedApp","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsWindowsUniversalAppXCommittedContainedApp.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXCommittedContainedApp","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsWindowsUniversalAppXCommittedContainedAppCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXCommittedContainedAppCount","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersion_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersion","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersion_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersion","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersion.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersion","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionContainedApp_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionContainedApp","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionContainedApp_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionContainedApp","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionContainedApp.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionContainedApp","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionContainedAppCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionContainedAppCount","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionCount","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionFile_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionFile","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionFile_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionFile","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionFile.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionFile","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionFileCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionFileCount","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsWindowsUniversalAppXCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXCount","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsWindowsWebApp_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsWebApp","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsWindowsWebApp_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsWebApp","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsWindowsWebApp.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsWebApp","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsWindowsWebAppAssignment_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsWebAppAssignment","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsWindowsWebAppAssignment_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsWebAppAssignment","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsWindowsWebAppAssignment.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsWebAppAssignment","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsWindowsWebAppAssignmentCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsWebAppAssignmentCount","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsWindowsWebAppCategory_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsWebAppCategory","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsWindowsWebAppCategory_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsWebAppCategory","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsWindowsWebAppCategory.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsWebAppCategory","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsWindowsWebAppCategoryCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsWebAppCategoryCount","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppAsWindowsWebAppCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppAsWindowsWebAppCount","GET","","cast","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppCategory_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppCategory","GET","/deviceAppManagement/mobileAppCategories/{param}","matched","Get-MgDeviceAppManagementMobileAppCategory" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppCategory_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppCategory","GET","/deviceAppManagement/mobileAppCategories","matched","Get-MgDeviceAppManagementMobileAppCategory" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppCategory.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppCategory","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppCategoryCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppCategoryCount","GET","/deviceAppManagement/mobileAppCategories/$count","matched","Get-MgDeviceAppManagementMobileAppCategoryCount" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppConfiguration_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppConfiguration","GET","/deviceAppManagement/mobileAppConfigurations/{param}","matched","Get-MgDeviceAppManagementMobileAppConfiguration" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppConfiguration_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppConfiguration","GET","/deviceAppManagement/mobileAppConfigurations","matched","Get-MgDeviceAppManagementMobileAppConfiguration" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppConfiguration.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppConfiguration","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppConfigurationAssignment_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppConfigurationAssignment","GET","/deviceAppManagement/mobileAppConfigurations/{param}/assignments/{param}","matched","Get-MgDeviceAppManagementMobileAppConfigurationAssignment" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppConfigurationAssignment_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppConfigurationAssignment","GET","/deviceAppManagement/mobileAppConfigurations/{param}/assignments","matched","Get-MgDeviceAppManagementMobileAppConfigurationAssignment" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppConfigurationAssignment.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppConfigurationAssignment","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppConfigurationAssignmentCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppConfigurationAssignmentCount","GET","/deviceAppManagement/mobileAppConfigurations/{param}/assignments/$count","matched","Get-MgDeviceAppManagementMobileAppConfigurationAssignmentCount" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppConfigurationCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppConfigurationCount","GET","/deviceAppManagement/mobileAppConfigurations/$count","matched","Get-MgDeviceAppManagementMobileAppConfigurationCount" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppConfigurationDeviceStatus_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppConfigurationDeviceStatus","GET","/deviceAppManagement/mobileAppConfigurations/{param}/deviceStatuses/{param}","matched","Get-MgDeviceAppManagementMobileAppConfigurationDeviceStatus" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppConfigurationDeviceStatus_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppConfigurationDeviceStatus","GET","/deviceAppManagement/mobileAppConfigurations/{param}/deviceStatuses","matched","Get-MgDeviceAppManagementMobileAppConfigurationDeviceStatus" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppConfigurationDeviceStatus.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppConfigurationDeviceStatus","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppConfigurationDeviceStatusCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppConfigurationDeviceStatusCount","GET","/deviceAppManagement/mobileAppConfigurations/{param}/deviceStatuses/$count","matched","Get-MgDeviceAppManagementMobileAppConfigurationDeviceStatusCount" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppConfigurationDeviceStatusSummary.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppConfigurationDeviceStatusSummary","GET","/deviceAppManagement/mobileAppConfigurations/{param}/deviceStatusSummary","matched","Get-MgDeviceAppManagementMobileAppConfigurationDeviceStatusSummary" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppConfigurationUserStatus_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppConfigurationUserStatus","GET","/deviceAppManagement/mobileAppConfigurations/{param}/userStatuses/{param}","matched","Get-MgDeviceAppManagementMobileAppConfigurationUserStatus" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppConfigurationUserStatus_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppConfigurationUserStatus","GET","/deviceAppManagement/mobileAppConfigurations/{param}/userStatuses","matched","Get-MgDeviceAppManagementMobileAppConfigurationUserStatus" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppConfigurationUserStatus.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppConfigurationUserStatus","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppConfigurationUserStatusCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppConfigurationUserStatusCount","GET","/deviceAppManagement/mobileAppConfigurations/{param}/userStatuses/$count","matched","Get-MgDeviceAppManagementMobileAppConfigurationUserStatusCount" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppConfigurationUserStatusSummary.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppConfigurationUserStatusSummary","GET","/deviceAppManagement/mobileAppConfigurations/{param}/userStatusSummary","matched","Get-MgDeviceAppManagementMobileAppConfigurationUserStatusSummary" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppCount","GET","/deviceAppManagement/mobileApps/$count","matched","Get-MgDeviceAppManagementMobileAppCount" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppRelationship_Get.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppRelationship","GET","/deviceAppManagement/mobileAppRelationships/{param}","matched","Get-MgDeviceAppManagementMobileAppRelationship" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppRelationship_List.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppRelationship","GET","/deviceAppManagement/mobileAppRelationships","matched","Get-MgDeviceAppManagementMobileAppRelationship" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppRelationship.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppRelationship","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementMobileAppRelationshipCount.g.cs","v1.0","Get-MgDeviceAppManagementMobileAppRelationshipCount","GET","/deviceAppManagement/mobileAppRelationships/$count","matched","Get-MgDeviceAppManagementMobileAppRelationshipCount" +"Devices.CorporateManagement","GetMgDeviceAppManagementTargetedManagedAppConfiguration_Get.g.cs","v1.0","Get-MgDeviceAppManagementTargetedManagedAppConfiguration","GET","/deviceAppManagement/targetedManagedAppConfigurations/{param}","matched","Get-MgDeviceAppManagementTargetedManagedAppConfiguration" +"Devices.CorporateManagement","GetMgDeviceAppManagementTargetedManagedAppConfiguration_List.g.cs","v1.0","Get-MgDeviceAppManagementTargetedManagedAppConfiguration","GET","/deviceAppManagement/targetedManagedAppConfigurations","matched","Get-MgDeviceAppManagementTargetedManagedAppConfiguration" +"Devices.CorporateManagement","GetMgDeviceAppManagementTargetedManagedAppConfiguration.g.cs","v1.0","Get-MgDeviceAppManagementTargetedManagedAppConfiguration","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementTargetedManagedAppConfigurationApp_Get.g.cs","v1.0","Get-MgDeviceAppManagementTargetedManagedAppConfigurationApp","GET","/deviceAppManagement/targetedManagedAppConfigurations/{param}/apps/{param}","matched","Get-MgDeviceAppManagementTargetedManagedAppConfigurationApp" +"Devices.CorporateManagement","GetMgDeviceAppManagementTargetedManagedAppConfigurationApp_List.g.cs","v1.0","Get-MgDeviceAppManagementTargetedManagedAppConfigurationApp","GET","/deviceAppManagement/targetedManagedAppConfigurations/{param}/apps","matched","Get-MgDeviceAppManagementTargetedManagedAppConfigurationApp" +"Devices.CorporateManagement","GetMgDeviceAppManagementTargetedManagedAppConfigurationApp.g.cs","v1.0","Get-MgDeviceAppManagementTargetedManagedAppConfigurationApp","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementTargetedManagedAppConfigurationAppCount.g.cs","v1.0","Get-MgDeviceAppManagementTargetedManagedAppConfigurationAppCount","GET","/deviceAppManagement/targetedManagedAppConfigurations/{param}/apps/$count","matched","Get-MgDeviceAppManagementTargetedManagedAppConfigurationAppCount" +"Devices.CorporateManagement","GetMgDeviceAppManagementTargetedManagedAppConfigurationAssignment_Get.g.cs","v1.0","Get-MgDeviceAppManagementTargetedManagedAppConfigurationAssignment","GET","/deviceAppManagement/targetedManagedAppConfigurations/{param}/assignments/{param}","matched","Get-MgDeviceAppManagementTargetedManagedAppConfigurationAssignment" +"Devices.CorporateManagement","GetMgDeviceAppManagementTargetedManagedAppConfigurationAssignment_List.g.cs","v1.0","Get-MgDeviceAppManagementTargetedManagedAppConfigurationAssignment","GET","/deviceAppManagement/targetedManagedAppConfigurations/{param}/assignments","matched","Get-MgDeviceAppManagementTargetedManagedAppConfigurationAssignment" +"Devices.CorporateManagement","GetMgDeviceAppManagementTargetedManagedAppConfigurationAssignment.g.cs","v1.0","Get-MgDeviceAppManagementTargetedManagedAppConfigurationAssignment","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementTargetedManagedAppConfigurationAssignmentCount.g.cs","v1.0","Get-MgDeviceAppManagementTargetedManagedAppConfigurationAssignmentCount","GET","/deviceAppManagement/targetedManagedAppConfigurations/{param}/assignments/$count","matched","Get-MgDeviceAppManagementTargetedManagedAppConfigurationAssignmentCount" +"Devices.CorporateManagement","GetMgDeviceAppManagementTargetedManagedAppConfigurationCount.g.cs","v1.0","Get-MgDeviceAppManagementTargetedManagedAppConfigurationCount","GET","/deviceAppManagement/targetedManagedAppConfigurations/$count","matched","Get-MgDeviceAppManagementTargetedManagedAppConfigurationCount" +"Devices.CorporateManagement","GetMgDeviceAppManagementTargetedManagedAppConfigurationDeploymentSummary.g.cs","v1.0","Get-MgDeviceAppManagementTargetedManagedAppConfigurationDeploymentSummary","GET","/deviceAppManagement/targetedManagedAppConfigurations/{param}/deploymentSummary","matched","Get-MgDeviceAppManagementTargetedManagedAppConfigurationDeploymentSummary" +"Devices.CorporateManagement","GetMgDeviceAppManagementVppToken_Get.g.cs","v1.0","Get-MgDeviceAppManagementVppToken","GET","/deviceAppManagement/vppTokens/{param}","matched","Get-MgDeviceAppManagementVppToken" +"Devices.CorporateManagement","GetMgDeviceAppManagementVppToken_List.g.cs","v1.0","Get-MgDeviceAppManagementVppToken","GET","/deviceAppManagement/vppTokens","matched","Get-MgDeviceAppManagementVppToken" +"Devices.CorporateManagement","GetMgDeviceAppManagementVppToken.g.cs","v1.0","Get-MgDeviceAppManagementVppToken","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementVppTokenCount.g.cs","v1.0","Get-MgDeviceAppManagementVppTokenCount","GET","/deviceAppManagement/vppTokens/$count","matched","Get-MgDeviceAppManagementVppTokenCount" +"Devices.CorporateManagement","GetMgDeviceAppManagementWindowsInformationProtectionPolicy_Get.g.cs","v1.0","Get-MgDeviceAppManagementWindowsInformationProtectionPolicy","GET","/deviceAppManagement/windowsInformationProtectionPolicies/{param}","matched","Get-MgDeviceAppManagementWindowsInformationProtectionPolicy" +"Devices.CorporateManagement","GetMgDeviceAppManagementWindowsInformationProtectionPolicy_List.g.cs","v1.0","Get-MgDeviceAppManagementWindowsInformationProtectionPolicy","GET","/deviceAppManagement/windowsInformationProtectionPolicies","matched","Get-MgDeviceAppManagementWindowsInformationProtectionPolicy" +"Devices.CorporateManagement","GetMgDeviceAppManagementWindowsInformationProtectionPolicy.g.cs","v1.0","Get-MgDeviceAppManagementWindowsInformationProtectionPolicy","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementWindowsInformationProtectionPolicyAssignment_Get.g.cs","v1.0","Get-MgDeviceAppManagementWindowsInformationProtectionPolicyAssignment","GET","/deviceAppManagement/windowsInformationProtectionPolicies/{param}/assignments/{param}","matched","Get-MgDeviceAppManagementWindowsInformationProtectionPolicyAssignment" +"Devices.CorporateManagement","GetMgDeviceAppManagementWindowsInformationProtectionPolicyAssignment_List.g.cs","v1.0","Get-MgDeviceAppManagementWindowsInformationProtectionPolicyAssignment","GET","/deviceAppManagement/windowsInformationProtectionPolicies/{param}/assignments","matched","Get-MgDeviceAppManagementWindowsInformationProtectionPolicyAssignment" +"Devices.CorporateManagement","GetMgDeviceAppManagementWindowsInformationProtectionPolicyAssignment.g.cs","v1.0","Get-MgDeviceAppManagementWindowsInformationProtectionPolicyAssignment","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementWindowsInformationProtectionPolicyAssignmentCount.g.cs","v1.0","Get-MgDeviceAppManagementWindowsInformationProtectionPolicyAssignmentCount","GET","/deviceAppManagement/windowsInformationProtectionPolicies/{param}/assignments/$count","matched","Get-MgDeviceAppManagementWindowsInformationProtectionPolicyAssignmentCount" +"Devices.CorporateManagement","GetMgDeviceAppManagementWindowsInformationProtectionPolicyCount.g.cs","v1.0","Get-MgDeviceAppManagementWindowsInformationProtectionPolicyCount","GET","/deviceAppManagement/windowsInformationProtectionPolicies/$count","matched","Get-MgDeviceAppManagementWindowsInformationProtectionPolicyCount" +"Devices.CorporateManagement","GetMgDeviceAppManagementWindowsInformationProtectionPolicyExemptAppLockerFile_Get.g.cs","v1.0","Get-MgDeviceAppManagementWindowsInformationProtectionPolicyExemptAppLockerFile","GET","/deviceAppManagement/windowsInformationProtectionPolicies/{param}/exemptAppLockerFiles/{param}","matched","Get-MgDeviceAppManagementWindowsInformationProtectionPolicyExemptAppLockerFile" +"Devices.CorporateManagement","GetMgDeviceAppManagementWindowsInformationProtectionPolicyExemptAppLockerFile_List.g.cs","v1.0","Get-MgDeviceAppManagementWindowsInformationProtectionPolicyExemptAppLockerFile","GET","/deviceAppManagement/windowsInformationProtectionPolicies/{param}/exemptAppLockerFiles","matched","Get-MgDeviceAppManagementWindowsInformationProtectionPolicyExemptAppLockerFile" +"Devices.CorporateManagement","GetMgDeviceAppManagementWindowsInformationProtectionPolicyExemptAppLockerFile.g.cs","v1.0","Get-MgDeviceAppManagementWindowsInformationProtectionPolicyExemptAppLockerFile","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementWindowsInformationProtectionPolicyExemptAppLockerFileCount.g.cs","v1.0","Get-MgDeviceAppManagementWindowsInformationProtectionPolicyExemptAppLockerFileCount","GET","/deviceAppManagement/windowsInformationProtectionPolicies/{param}/exemptAppLockerFiles/$count","matched","Get-MgDeviceAppManagementWindowsInformationProtectionPolicyExemptAppLockerFileCount" +"Devices.CorporateManagement","GetMgDeviceAppManagementWindowsInformationProtectionPolicyProtectedAppLockerFile_Get.g.cs","v1.0","Get-MgDeviceAppManagementWindowsInformationProtectionPolicyProtectedAppLockerFile","GET","/deviceAppManagement/windowsInformationProtectionPolicies/{param}/protectedAppLockerFiles/{param}","matched","Get-MgDeviceAppManagementWindowsInformationProtectionPolicyProtectedAppLockerFile" +"Devices.CorporateManagement","GetMgDeviceAppManagementWindowsInformationProtectionPolicyProtectedAppLockerFile_List.g.cs","v1.0","Get-MgDeviceAppManagementWindowsInformationProtectionPolicyProtectedAppLockerFile","GET","/deviceAppManagement/windowsInformationProtectionPolicies/{param}/protectedAppLockerFiles","matched","Get-MgDeviceAppManagementWindowsInformationProtectionPolicyProtectedAppLockerFile" +"Devices.CorporateManagement","GetMgDeviceAppManagementWindowsInformationProtectionPolicyProtectedAppLockerFile.g.cs","v1.0","Get-MgDeviceAppManagementWindowsInformationProtectionPolicyProtectedAppLockerFile","","","dispatcher","" +"Devices.CorporateManagement","GetMgDeviceAppManagementWindowsInformationProtectionPolicyProtectedAppLockerFileCount.g.cs","v1.0","Get-MgDeviceAppManagementWindowsInformationProtectionPolicyProtectedAppLockerFileCount","GET","/deviceAppManagement/windowsInformationProtectionPolicies/{param}/protectedAppLockerFiles/$count","matched","Get-MgDeviceAppManagementWindowsInformationProtectionPolicyProtectedAppLockerFileCount" +"Devices.CorporateManagement","GetMgUserDeviceManagementTroubleshootingEvent_Get.g.cs","v1.0","Get-MgUserDeviceManagementTroubleshootingEvent","GET","/users/{param}/deviceManagementTroubleshootingEvents/{param}","matched","Get-MgUserDeviceManagementTroubleshootingEvent" +"Devices.CorporateManagement","GetMgUserDeviceManagementTroubleshootingEvent_List.g.cs","v1.0","Get-MgUserDeviceManagementTroubleshootingEvent","GET","/users/{param}/deviceManagementTroubleshootingEvents","matched","Get-MgUserDeviceManagementTroubleshootingEvent" +"Devices.CorporateManagement","GetMgUserDeviceManagementTroubleshootingEvent.g.cs","v1.0","Get-MgUserDeviceManagementTroubleshootingEvent","","","dispatcher","" +"Devices.CorporateManagement","GetMgUserDeviceManagementTroubleshootingEventCount.g.cs","v1.0","Get-MgUserDeviceManagementTroubleshootingEventCount","GET","/users/{param}/deviceManagementTroubleshootingEvents/$count","matched","Get-MgUserDeviceManagementTroubleshootingEventCount" +"Devices.CorporateManagement","GetMgUserManagedAppRegistration_Get.g.cs","v1.0","Get-MgUserManagedAppRegistration","GET","/users/{param}/managedAppRegistrations/{param}","matched","Get-MgUserManagedAppRegistration" +"Devices.CorporateManagement","GetMgUserManagedAppRegistration_List.g.cs","v1.0","Get-MgUserManagedAppRegistration","GET","/users/{param}/managedAppRegistrations","matched","Get-MgUserManagedAppRegistration" +"Devices.CorporateManagement","GetMgUserManagedAppRegistration.g.cs","v1.0","Get-MgUserManagedAppRegistration","","","dispatcher","" +"Devices.CorporateManagement","GetMgUserManagedAppRegistrationCount.g.cs","v1.0","Get-MgUserManagedAppRegistrationCount","GET","/users/{param}/managedAppRegistrations/$count","matched","Get-MgUserManagedAppRegistrationCount" +"Devices.CorporateManagement","GetMgUserManagedDevice_Get.g.cs","v1.0","Get-MgUserManagedDevice","GET","/users/{param}/managedDevices/{param}","matched","Get-MgUserManagedDevice" +"Devices.CorporateManagement","GetMgUserManagedDevice_List.g.cs","v1.0","Get-MgUserManagedDevice","GET","/users/{param}/managedDevices","matched","Get-MgUserManagedDevice" +"Devices.CorporateManagement","GetMgUserManagedDevice.g.cs","v1.0","Get-MgUserManagedDevice","","","dispatcher","" +"Devices.CorporateManagement","GetMgUserManagedDeviceCategory.g.cs","v1.0","Get-MgUserManagedDeviceCategory","GET","/users/{param}/managedDevices/{param}/deviceCategory","matched","Get-MgUserManagedDeviceCategory" +"Devices.CorporateManagement","GetMgUserManagedDeviceCategoryByRef.g.cs","v1.0","Get-MgUserManagedDeviceCategoryByRef","GET","/users/{param}/managedDevices/{param}/deviceCategory/$ref","matched","Get-MgUserManagedDeviceCategoryByRef" +"Devices.CorporateManagement","GetMgUserManagedDeviceCompliancePolicyState_Get.g.cs","v1.0","Get-MgUserManagedDeviceCompliancePolicyState","GET","/users/{param}/managedDevices/{param}/deviceCompliancePolicyStates/{param}","matched","Get-MgUserManagedDeviceCompliancePolicyState" +"Devices.CorporateManagement","GetMgUserManagedDeviceCompliancePolicyState_List.g.cs","v1.0","Get-MgUserManagedDeviceCompliancePolicyState","GET","/users/{param}/managedDevices/{param}/deviceCompliancePolicyStates","matched","Get-MgUserManagedDeviceCompliancePolicyState" +"Devices.CorporateManagement","GetMgUserManagedDeviceCompliancePolicyState.g.cs","v1.0","Get-MgUserManagedDeviceCompliancePolicyState","","","dispatcher","" +"Devices.CorporateManagement","GetMgUserManagedDeviceCompliancePolicyStateCount.g.cs","v1.0","Get-MgUserManagedDeviceCompliancePolicyStateCount","GET","/users/{param}/managedDevices/{param}/deviceCompliancePolicyStates/$count","matched","Get-MgUserManagedDeviceCompliancePolicyStateCount" +"Devices.CorporateManagement","GetMgUserManagedDeviceConfigurationState_Get.g.cs","v1.0","Get-MgUserManagedDeviceConfigurationState","GET","/users/{param}/managedDevices/{param}/deviceConfigurationStates/{param}","matched","Get-MgUserManagedDeviceConfigurationState" +"Devices.CorporateManagement","GetMgUserManagedDeviceConfigurationState_List.g.cs","v1.0","Get-MgUserManagedDeviceConfigurationState","GET","/users/{param}/managedDevices/{param}/deviceConfigurationStates","matched","Get-MgUserManagedDeviceConfigurationState" +"Devices.CorporateManagement","GetMgUserManagedDeviceConfigurationState.g.cs","v1.0","Get-MgUserManagedDeviceConfigurationState","","","dispatcher","" +"Devices.CorporateManagement","GetMgUserManagedDeviceConfigurationStateCount.g.cs","v1.0","Get-MgUserManagedDeviceConfigurationStateCount","GET","/users/{param}/managedDevices/{param}/deviceConfigurationStates/$count","matched","Get-MgUserManagedDeviceConfigurationStateCount" +"Devices.CorporateManagement","GetMgUserManagedDeviceCount.g.cs","v1.0","Get-MgUserManagedDeviceCount","GET","/users/{param}/managedDevices/$count","matched","Get-MgUserManagedDeviceCount" +"Devices.CorporateManagement","GetMgUserManagedDeviceLogCollectionRequest_Get.g.cs","v1.0","Get-MgUserManagedDeviceLogCollectionRequest","GET","/users/{param}/managedDevices/{param}/logCollectionRequests/{param}","mismatch","Get-MgUserManagedDeviceLogCollectionResponse" +"Devices.CorporateManagement","GetMgUserManagedDeviceLogCollectionRequest_List.g.cs","v1.0","Get-MgUserManagedDeviceLogCollectionRequest","GET","/users/{param}/managedDevices/{param}/logCollectionRequests","mismatch","Get-MgUserManagedDeviceLogCollectionResponse" +"Devices.CorporateManagement","GetMgUserManagedDeviceLogCollectionRequest.g.cs","v1.0","Get-MgUserManagedDeviceLogCollectionRequest","","","dispatcher","" +"Devices.CorporateManagement","GetMgUserManagedDeviceLogCollectionRequestCount.g.cs","v1.0","Get-MgUserManagedDeviceLogCollectionRequestCount","GET","/users/{param}/managedDevices/{param}/logCollectionRequests/$count","matched","Get-MgUserManagedDeviceLogCollectionRequestCount" +"Devices.CorporateManagement","GetMgUserManagedDeviceUser.g.cs","v1.0","Get-MgUserManagedDeviceUser","GET","/users/{param}/managedDevices/{param}/users","matched","Get-MgUserManagedDeviceUser" +"Devices.CorporateManagement","GetMgUserManagedDeviceWindowsProtectionState.g.cs","v1.0","Get-MgUserManagedDeviceWindowsProtectionState","GET","/users/{param}/managedDevices/{param}/windowsProtectionState","matched","Get-MgUserManagedDeviceWindowsProtectionState" +"Devices.CorporateManagement","GetMgUserManagedDeviceWindowsProtectionStateDetectedMalwareState_Get.g.cs","v1.0","Get-MgUserManagedDeviceWindowsProtectionStateDetectedMalwareState","GET","/users/{param}/managedDevices/{param}/windowsProtectionState/detectedMalwareState/{param}","matched","Get-MgUserManagedDeviceWindowsProtectionStateDetectedMalwareState" +"Devices.CorporateManagement","GetMgUserManagedDeviceWindowsProtectionStateDetectedMalwareState_List.g.cs","v1.0","Get-MgUserManagedDeviceWindowsProtectionStateDetectedMalwareState","GET","/users/{param}/managedDevices/{param}/windowsProtectionState/detectedMalwareState","matched","Get-MgUserManagedDeviceWindowsProtectionStateDetectedMalwareState" +"Devices.CorporateManagement","GetMgUserManagedDeviceWindowsProtectionStateDetectedMalwareState.g.cs","v1.0","Get-MgUserManagedDeviceWindowsProtectionStateDetectedMalwareState","","","dispatcher","" +"Devices.CorporateManagement","GetMgUserManagedDeviceWindowsProtectionStateDetectedMalwareStateCount.g.cs","v1.0","Get-MgUserManagedDeviceWindowsProtectionStateDetectedMalwareStateCount","GET","/users/{param}/managedDevices/{param}/windowsProtectionState/detectedMalwareState/$count","matched","Get-MgUserManagedDeviceWindowsProtectionStateDetectedMalwareStateCount" +"Devices.CorporateManagement","InvokeMgDeviceAppManagementManagedAppPolicyTargetApps.g.cs","v1.0","Invoke-MgDeviceAppManagementManagedAppPolicyTargetApps","POST","/deviceAppManagement/managedAppPolicies/{param}/targetApps","mismatch","Invoke-MgTargetDeviceAppManagementManagedAppPolicyApp" +"Devices.CorporateManagement","InvokeMgDeviceAppManagementManagedAppRegistrationAppliedPolicyTargetApps.g.cs","v1.0","Invoke-MgDeviceAppManagementManagedAppRegistrationAppliedPolicyTargetApps","POST","/deviceAppManagement/managedAppRegistrations/{param}/appliedPolicies/{param}/targetApps","mismatch","Invoke-MgTargetDeviceAppManagementManagedAppRegistrationAppliedPolicyApp" +"Devices.CorporateManagement","InvokeMgDeviceAppManagementManagedAppRegistrationIntendedPolicyTargetApps.g.cs","v1.0","Invoke-MgDeviceAppManagementManagedAppRegistrationIntendedPolicyTargetApps","POST","/deviceAppManagement/managedAppRegistrations/{param}/intendedPolicies/{param}/targetApps","mismatch","Invoke-MgTargetDeviceAppManagementManagedAppRegistrationIntendedPolicyApp" +"Devices.CorporateManagement","InvokeMgDeviceAppManagementManagedEBookAssign.g.cs","v1.0","Invoke-MgDeviceAppManagementManagedEBookAssign","POST","/deviceAppManagement/managedEBooks/{param}/assign","mismatch","Set-MgDeviceAppManagementManagedEBook" +"Devices.CorporateManagement","InvokeMgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionFileCommit.g.cs","v1.0","Invoke-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionFileCommit","POST","","cast","" +"Devices.CorporateManagement","InvokeMgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionFileRenewUpload.g.cs","v1.0","Invoke-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionFileRenewUpload","POST","","cast","" +"Devices.CorporateManagement","InvokeMgDeviceAppManagementMobileAppAsIosLobAppContentVersionFileCommit.g.cs","v1.0","Invoke-MgDeviceAppManagementMobileAppAsIosLobAppContentVersionFileCommit","POST","","cast","" +"Devices.CorporateManagement","InvokeMgDeviceAppManagementMobileAppAsIosLobAppContentVersionFileRenewUpload.g.cs","v1.0","Invoke-MgDeviceAppManagementMobileAppAsIosLobAppContentVersionFileRenewUpload","POST","","cast","" +"Devices.CorporateManagement","InvokeMgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionFileCommit.g.cs","v1.0","Invoke-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionFileCommit","POST","","cast","" +"Devices.CorporateManagement","InvokeMgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionFileRenewUpload.g.cs","v1.0","Invoke-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionFileRenewUpload","POST","","cast","" +"Devices.CorporateManagement","InvokeMgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionFileCommit.g.cs","v1.0","Invoke-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionFileCommit","POST","","cast","" +"Devices.CorporateManagement","InvokeMgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionFileRenewUpload.g.cs","v1.0","Invoke-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionFileRenewUpload","POST","","cast","" +"Devices.CorporateManagement","InvokeMgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionFileCommit.g.cs","v1.0","Invoke-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionFileCommit","POST","","cast","" +"Devices.CorporateManagement","InvokeMgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionFileRenewUpload.g.cs","v1.0","Invoke-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionFileRenewUpload","POST","","cast","" +"Devices.CorporateManagement","InvokeMgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersionFileCommit.g.cs","v1.0","Invoke-MgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersionFileCommit","POST","","cast","" +"Devices.CorporateManagement","InvokeMgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersionFileRenewUpload.g.cs","v1.0","Invoke-MgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersionFileRenewUpload","POST","","cast","" +"Devices.CorporateManagement","InvokeMgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionFileCommit.g.cs","v1.0","Invoke-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionFileCommit","POST","","cast","" +"Devices.CorporateManagement","InvokeMgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionFileRenewUpload.g.cs","v1.0","Invoke-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionFileRenewUpload","POST","","cast","" +"Devices.CorporateManagement","InvokeMgDeviceAppManagementMobileAppAssign.g.cs","v1.0","Invoke-MgDeviceAppManagementMobileAppAssign","POST","/deviceAppManagement/mobileApps/{param}/assign","mismatch","Set-MgDeviceAppManagementMobileApp" +"Devices.CorporateManagement","InvokeMgDeviceAppManagementMobileAppAsWin32LobAppContentVersionFileCommit.g.cs","v1.0","Invoke-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersionFileCommit","POST","","cast","" +"Devices.CorporateManagement","InvokeMgDeviceAppManagementMobileAppAsWin32LobAppContentVersionFileRenewUpload.g.cs","v1.0","Invoke-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersionFileRenewUpload","POST","","cast","" +"Devices.CorporateManagement","InvokeMgDeviceAppManagementMobileAppAsWindowsAppXContentVersionFileCommit.g.cs","v1.0","Invoke-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersionFileCommit","POST","","cast","" +"Devices.CorporateManagement","InvokeMgDeviceAppManagementMobileAppAsWindowsAppXContentVersionFileRenewUpload.g.cs","v1.0","Invoke-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersionFileRenewUpload","POST","","cast","" +"Devices.CorporateManagement","InvokeMgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersionFileCommit.g.cs","v1.0","Invoke-MgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersionFileCommit","POST","","cast","" +"Devices.CorporateManagement","InvokeMgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersionFileRenewUpload.g.cs","v1.0","Invoke-MgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersionFileRenewUpload","POST","","cast","" +"Devices.CorporateManagement","InvokeMgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionFileCommit.g.cs","v1.0","Invoke-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionFileCommit","POST","","cast","" +"Devices.CorporateManagement","InvokeMgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionFileRenewUpload.g.cs","v1.0","Invoke-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionFileRenewUpload","POST","","cast","" +"Devices.CorporateManagement","InvokeMgDeviceAppManagementMobileAppConfigurationAssign.g.cs","v1.0","Invoke-MgDeviceAppManagementMobileAppConfigurationAssign","POST","/deviceAppManagement/mobileAppConfigurations/{param}/assign","mismatch","Set-MgDeviceAppManagementMobileAppConfiguration" +"Devices.CorporateManagement","InvokeMgDeviceAppManagementSyncMicrosoftStoreForBusinessApps.g.cs","v1.0","Invoke-MgDeviceAppManagementSyncMicrosoftStoreForBusinessApps","POST","/deviceAppManagement/syncMicrosoftStoreForBusinessApps","mismatch","Sync-MgDeviceAppManagementMicrosoftStoreForBusinessApp" +"Devices.CorporateManagement","InvokeMgDeviceAppManagementTargetedManagedAppConfigurationAssign.g.cs","v1.0","Invoke-MgDeviceAppManagementTargetedManagedAppConfigurationAssign","POST","/deviceAppManagement/targetedManagedAppConfigurations/{param}/assign","mismatch","Set-MgDeviceAppManagementTargetedManagedAppConfiguration" +"Devices.CorporateManagement","InvokeMgDeviceAppManagementTargetedManagedAppConfigurationTargetApps.g.cs","v1.0","Invoke-MgDeviceAppManagementTargetedManagedAppConfigurationTargetApps","POST","/deviceAppManagement/targetedManagedAppConfigurations/{param}/targetApps","mismatch","Invoke-MgTargetDeviceAppManagementTargetedManagedAppConfigurationApp" +"Devices.CorporateManagement","InvokeMgDeviceAppManagementVppTokenSyncLicenses.g.cs","v1.0","Invoke-MgDeviceAppManagementVppTokenSyncLicenses","POST","/deviceAppManagement/vppTokens/{param}/syncLicenses","mismatch","Sync-MgDeviceAppManagementVppTokenLicense" +"Devices.CorporateManagement","InvokeMgUserManagedDeviceBypassActivationLock.g.cs","v1.0","Invoke-MgUserManagedDeviceBypassActivationLock","POST","/users/{param}/managedDevices/{param}/bypassActivationLock","mismatch","Skip-MgUserManagedDeviceActivationLock" +"Devices.CorporateManagement","InvokeMgUserManagedDeviceCleanWindowsDevice.g.cs","v1.0","Invoke-MgUserManagedDeviceCleanWindowsDevice","POST","/users/{param}/managedDevices/{param}/cleanWindowsDevice","mismatch","Invoke-MgCleanUserManagedDeviceWindowsDevice" +"Devices.CorporateManagement","InvokeMgUserManagedDeviceDeleteUserFromSharedAppleDevice.g.cs","v1.0","Invoke-MgUserManagedDeviceDeleteUserFromSharedAppleDevice","POST","/users/{param}/managedDevices/{param}/deleteUserFromSharedAppleDevice","mismatch","Remove-MgUserManagedDeviceUserFromSharedAppleDevice" +"Devices.CorporateManagement","InvokeMgUserManagedDeviceDisableLostMode.g.cs","v1.0","Invoke-MgUserManagedDeviceDisableLostMode","POST","/users/{param}/managedDevices/{param}/disableLostMode","mismatch","Disable-MgUserManagedDeviceLostMode" +"Devices.CorporateManagement","InvokeMgUserManagedDeviceLocateDevice.g.cs","v1.0","Invoke-MgUserManagedDeviceLocateDevice","POST","/users/{param}/managedDevices/{param}/locateDevice","mismatch","Find-MgUserManagedDevice" +"Devices.CorporateManagement","InvokeMgUserManagedDeviceLogCollectionRequestCreateDownloadUrl.g.cs","v1.0","Invoke-MgUserManagedDeviceLogCollectionRequestCreateDownloadUrl","POST","/users/{param}/managedDevices/{param}/logCollectionRequests/{param}/createDownloadUrl","mismatch","New-MgUserManagedDeviceLogCollectionRequestDownloadUrl" +"Devices.CorporateManagement","InvokeMgUserManagedDeviceLogoutSharedAppleDeviceActiveUser.g.cs","v1.0","Invoke-MgUserManagedDeviceLogoutSharedAppleDeviceActiveUser","POST","/users/{param}/managedDevices/{param}/logoutSharedAppleDeviceActiveUser","mismatch","Invoke-MgLogoutUserManagedDeviceSharedAppleDeviceActiveUser" +"Devices.CorporateManagement","InvokeMgUserManagedDeviceRebootNow.g.cs","v1.0","Invoke-MgUserManagedDeviceRebootNow","POST","/users/{param}/managedDevices/{param}/rebootNow","mismatch","Restart-MgUserManagedDeviceNow" +"Devices.CorporateManagement","InvokeMgUserManagedDeviceRecoverPasscode.g.cs","v1.0","Invoke-MgUserManagedDeviceRecoverPasscode","POST","/users/{param}/managedDevices/{param}/recoverPasscode","mismatch","Restore-MgUserManagedDevicePasscode" +"Devices.CorporateManagement","InvokeMgUserManagedDeviceRemoteLock.g.cs","v1.0","Invoke-MgUserManagedDeviceRemoteLock","POST","/users/{param}/managedDevices/{param}/remoteLock","mismatch","Lock-MgUserManagedDeviceRemote" +"Devices.CorporateManagement","InvokeMgUserManagedDeviceRequestRemoteAssistance.g.cs","v1.0","Invoke-MgUserManagedDeviceRequestRemoteAssistance","POST","/users/{param}/managedDevices/{param}/requestRemoteAssistance","mismatch","Request-MgUserManagedDeviceRemoteAssistance" +"Devices.CorporateManagement","InvokeMgUserManagedDeviceResetPasscode.g.cs","v1.0","Invoke-MgUserManagedDeviceResetPasscode","POST","/users/{param}/managedDevices/{param}/resetPasscode","mismatch","Reset-MgUserManagedDevicePasscode" +"Devices.CorporateManagement","InvokeMgUserManagedDeviceRetire.g.cs","v1.0","Invoke-MgUserManagedDeviceRetire","POST","/users/{param}/managedDevices/{param}/retire","mismatch","Invoke-MgRetireUserManagedDevice" +"Devices.CorporateManagement","InvokeMgUserManagedDeviceShutDown.g.cs","v1.0","Invoke-MgUserManagedDeviceShutDown","POST","/users/{param}/managedDevices/{param}/shutDown","mismatch","Invoke-MgDownUserManagedDeviceShut" +"Devices.CorporateManagement","InvokeMgUserManagedDeviceSyncDevice.g.cs","v1.0","Invoke-MgUserManagedDeviceSyncDevice","POST","/users/{param}/managedDevices/{param}/syncDevice","mismatch","Sync-MgUserManagedDevice" +"Devices.CorporateManagement","InvokeMgUserManagedDeviceUpdateWindowsDeviceAccount.g.cs","v1.0","Invoke-MgUserManagedDeviceUpdateWindowsDeviceAccount","POST","/users/{param}/managedDevices/{param}/updateWindowsDeviceAccount","mismatch","Update-MgUserManagedDeviceWindowsDeviceAccount" +"Devices.CorporateManagement","InvokeMgUserManagedDeviceWindowsDefenderScan.g.cs","v1.0","Invoke-MgUserManagedDeviceWindowsDefenderScan","POST","/users/{param}/managedDevices/{param}/windowsDefenderScan","mismatch","Invoke-MgScanUserManagedDeviceWindowsDefender" +"Devices.CorporateManagement","InvokeMgUserManagedDeviceWindowsDefenderUpdateSignatures.g.cs","v1.0","Invoke-MgUserManagedDeviceWindowsDefenderUpdateSignatures","POST","/users/{param}/managedDevices/{param}/windowsDefenderUpdateSignatures","no-oracle","" +"Devices.CorporateManagement","InvokeMgUserManagedDeviceWipe.g.cs","v1.0","Invoke-MgUserManagedDeviceWipe","POST","/users/{param}/managedDevices/{param}/wipe","mismatch","Clear-MgUserManagedDevice" +"Devices.CorporateManagement","NewMgDeviceAppManagementAndroidManagedAppProtection.g.cs","v1.0","New-MgDeviceAppManagementAndroidManagedAppProtection","POST","/deviceAppManagement/androidManagedAppProtections","matched","New-MgDeviceAppManagementAndroidManagedAppProtection" +"Devices.CorporateManagement","NewMgDeviceAppManagementAndroidManagedAppProtectionApp.g.cs","v1.0","New-MgDeviceAppManagementAndroidManagedAppProtectionApp","POST","/deviceAppManagement/androidManagedAppProtections/{param}/apps","matched","New-MgDeviceAppManagementAndroidManagedAppProtectionApp" +"Devices.CorporateManagement","NewMgDeviceAppManagementAndroidManagedAppProtectionAssignment.g.cs","v1.0","New-MgDeviceAppManagementAndroidManagedAppProtectionAssignment","POST","/deviceAppManagement/androidManagedAppProtections/{param}/assignments","matched","New-MgDeviceAppManagementAndroidManagedAppProtectionAssignment" +"Devices.CorporateManagement","NewMgDeviceAppManagementDefaultManagedAppProtection.g.cs","v1.0","New-MgDeviceAppManagementDefaultManagedAppProtection","POST","/deviceAppManagement/defaultManagedAppProtections","matched","New-MgDeviceAppManagementDefaultManagedAppProtection" +"Devices.CorporateManagement","NewMgDeviceAppManagementDefaultManagedAppProtectionApp.g.cs","v1.0","New-MgDeviceAppManagementDefaultManagedAppProtectionApp","POST","/deviceAppManagement/defaultManagedAppProtections/{param}/apps","matched","New-MgDeviceAppManagementDefaultManagedAppProtectionApp" +"Devices.CorporateManagement","NewMgDeviceAppManagementIosManagedAppProtection.g.cs","v1.0","New-MgDeviceAppManagementIosManagedAppProtection","POST","/deviceAppManagement/iosManagedAppProtections","mismatch","New-MgDeviceAppManagementiOSManagedAppProtection" +"Devices.CorporateManagement","NewMgDeviceAppManagementIosManagedAppProtectionApp.g.cs","v1.0","New-MgDeviceAppManagementIosManagedAppProtectionApp","POST","/deviceAppManagement/iosManagedAppProtections/{param}/apps","mismatch","New-MgDeviceAppManagementiOSManagedAppProtectionApp" +"Devices.CorporateManagement","NewMgDeviceAppManagementIosManagedAppProtectionAssignment.g.cs","v1.0","New-MgDeviceAppManagementIosManagedAppProtectionAssignment","POST","/deviceAppManagement/iosManagedAppProtections/{param}/assignments","mismatch","New-MgDeviceAppManagementiOSManagedAppProtectionAssignment" +"Devices.CorporateManagement","NewMgDeviceAppManagementManagedAppPolicy.g.cs","v1.0","New-MgDeviceAppManagementManagedAppPolicy","POST","/deviceAppManagement/managedAppPolicies","matched","New-MgDeviceAppManagementManagedAppPolicy" +"Devices.CorporateManagement","NewMgDeviceAppManagementManagedAppRegistration.g.cs","v1.0","New-MgDeviceAppManagementManagedAppRegistration","POST","/deviceAppManagement/managedAppRegistrations","matched","New-MgDeviceAppManagementManagedAppRegistration" +"Devices.CorporateManagement","NewMgDeviceAppManagementManagedAppRegistrationAppliedPolicy.g.cs","v1.0","New-MgDeviceAppManagementManagedAppRegistrationAppliedPolicy","POST","/deviceAppManagement/managedAppRegistrations/{param}/appliedPolicies","matched","New-MgDeviceAppManagementManagedAppRegistrationAppliedPolicy" +"Devices.CorporateManagement","NewMgDeviceAppManagementManagedAppRegistrationIntendedPolicy.g.cs","v1.0","New-MgDeviceAppManagementManagedAppRegistrationIntendedPolicy","POST","/deviceAppManagement/managedAppRegistrations/{param}/intendedPolicies","matched","New-MgDeviceAppManagementManagedAppRegistrationIntendedPolicy" +"Devices.CorporateManagement","NewMgDeviceAppManagementManagedAppRegistrationOperation.g.cs","v1.0","New-MgDeviceAppManagementManagedAppRegistrationOperation","POST","/deviceAppManagement/managedAppRegistrations/{param}/operations","matched","New-MgDeviceAppManagementManagedAppRegistrationOperation" +"Devices.CorporateManagement","NewMgDeviceAppManagementManagedAppStatus.g.cs","v1.0","New-MgDeviceAppManagementManagedAppStatus","POST","/deviceAppManagement/managedAppStatuses","matched","New-MgDeviceAppManagementManagedAppStatus" +"Devices.CorporateManagement","NewMgDeviceAppManagementManagedEBook.g.cs","v1.0","New-MgDeviceAppManagementManagedEBook","POST","/deviceAppManagement/managedEBooks","matched","New-MgDeviceAppManagementManagedEBook" +"Devices.CorporateManagement","NewMgDeviceAppManagementManagedEBookAssignment.g.cs","v1.0","New-MgDeviceAppManagementManagedEBookAssignment","POST","/deviceAppManagement/managedEBooks/{param}/assignments","matched","New-MgDeviceAppManagementManagedEBookAssignment" +"Devices.CorporateManagement","NewMgDeviceAppManagementManagedEBookDeviceState.g.cs","v1.0","New-MgDeviceAppManagementManagedEBookDeviceState","POST","/deviceAppManagement/managedEBooks/{param}/deviceStates","matched","New-MgDeviceAppManagementManagedEBookDeviceState" +"Devices.CorporateManagement","NewMgDeviceAppManagementManagedEBookUserStateSummary.g.cs","v1.0","New-MgDeviceAppManagementManagedEBookUserStateSummary","POST","/deviceAppManagement/managedEBooks/{param}/userStateSummary","matched","New-MgDeviceAppManagementManagedEBookUserStateSummary" +"Devices.CorporateManagement","NewMgDeviceAppManagementManagedEBookUserStateSummaryDeviceState.g.cs","v1.0","New-MgDeviceAppManagementManagedEBookUserStateSummaryDeviceState","POST","/deviceAppManagement/managedEBooks/{param}/userStateSummary/{param}/deviceStates","matched","New-MgDeviceAppManagementManagedEBookUserStateSummaryDeviceState" +"Devices.CorporateManagement","NewMgDeviceAppManagementMdmWindowsInformationProtectionPolicy.g.cs","v1.0","New-MgDeviceAppManagementMdmWindowsInformationProtectionPolicy","POST","/deviceAppManagement/mdmWindowsInformationProtectionPolicies","matched","New-MgDeviceAppManagementMdmWindowsInformationProtectionPolicy" +"Devices.CorporateManagement","NewMgDeviceAppManagementMdmWindowsInformationProtectionPolicyAssignment.g.cs","v1.0","New-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyAssignment","POST","/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{param}/assignments","matched","New-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyAssignment" +"Devices.CorporateManagement","NewMgDeviceAppManagementMdmWindowsInformationProtectionPolicyExemptAppLockerFile.g.cs","v1.0","New-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyExemptAppLockerFile","POST","/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{param}/exemptAppLockerFiles","matched","New-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyExemptAppLockerFile" +"Devices.CorporateManagement","NewMgDeviceAppManagementMdmWindowsInformationProtectionPolicyProtectedAppLockerFile.g.cs","v1.0","New-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyProtectedAppLockerFile","POST","/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{param}/protectedAppLockerFiles","matched","New-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyProtectedAppLockerFile" +"Devices.CorporateManagement","NewMgDeviceAppManagementMobileApp.g.cs","v1.0","New-MgDeviceAppManagementMobileApp","POST","/deviceAppManagement/mobileApps","matched","New-MgDeviceAppManagementMobileApp" +"Devices.CorporateManagement","NewMgDeviceAppManagementMobileAppAsAndroidLobAppAssignment.g.cs","v1.0","New-MgDeviceAppManagementMobileAppAsAndroidLobAppAssignment","POST","","cast","" +"Devices.CorporateManagement","NewMgDeviceAppManagementMobileAppAsAndroidLobAppContentVersion.g.cs","v1.0","New-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersion","POST","","cast","" +"Devices.CorporateManagement","NewMgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionContainedApp.g.cs","v1.0","New-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionContainedApp","POST","","cast","" +"Devices.CorporateManagement","NewMgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionFile.g.cs","v1.0","New-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionFile","POST","","cast","" +"Devices.CorporateManagement","NewMgDeviceAppManagementMobileAppAsAndroidStoreAppAssignment.g.cs","v1.0","New-MgDeviceAppManagementMobileAppAsAndroidStoreAppAssignment","POST","","cast","" +"Devices.CorporateManagement","NewMgDeviceAppManagementMobileAppAsIosLobAppAssignment.g.cs","v1.0","New-MgDeviceAppManagementMobileAppAsIosLobAppAssignment","POST","","cast","" +"Devices.CorporateManagement","NewMgDeviceAppManagementMobileAppAsIosLobAppContentVersion.g.cs","v1.0","New-MgDeviceAppManagementMobileAppAsIosLobAppContentVersion","POST","","cast","" +"Devices.CorporateManagement","NewMgDeviceAppManagementMobileAppAsIosLobAppContentVersionContainedApp.g.cs","v1.0","New-MgDeviceAppManagementMobileAppAsIosLobAppContentVersionContainedApp","POST","","cast","" +"Devices.CorporateManagement","NewMgDeviceAppManagementMobileAppAsIosLobAppContentVersionFile.g.cs","v1.0","New-MgDeviceAppManagementMobileAppAsIosLobAppContentVersionFile","POST","","cast","" +"Devices.CorporateManagement","NewMgDeviceAppManagementMobileAppAsIosStoreAppAssignment.g.cs","v1.0","New-MgDeviceAppManagementMobileAppAsIosStoreAppAssignment","POST","","cast","" +"Devices.CorporateManagement","NewMgDeviceAppManagementMobileAppAsIosVppAppAssignment.g.cs","v1.0","New-MgDeviceAppManagementMobileAppAsIosVppAppAssignment","POST","","cast","" +"Devices.CorporateManagement","NewMgDeviceAppManagementMobileAppAsMacOSDmgAppAssignment.g.cs","v1.0","New-MgDeviceAppManagementMobileAppAsMacOSDmgAppAssignment","POST","","cast","" +"Devices.CorporateManagement","NewMgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersion.g.cs","v1.0","New-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersion","POST","","cast","" +"Devices.CorporateManagement","NewMgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionContainedApp.g.cs","v1.0","New-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionContainedApp","POST","","cast","" +"Devices.CorporateManagement","NewMgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionFile.g.cs","v1.0","New-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionFile","POST","","cast","" +"Devices.CorporateManagement","NewMgDeviceAppManagementMobileAppAsMacOSLobAppAssignment.g.cs","v1.0","New-MgDeviceAppManagementMobileAppAsMacOSLobAppAssignment","POST","","cast","" +"Devices.CorporateManagement","NewMgDeviceAppManagementMobileAppAsMacOSLobAppContentVersion.g.cs","v1.0","New-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersion","POST","","cast","" +"Devices.CorporateManagement","NewMgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionContainedApp.g.cs","v1.0","New-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionContainedApp","POST","","cast","" +"Devices.CorporateManagement","NewMgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionFile.g.cs","v1.0","New-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionFile","POST","","cast","" +"Devices.CorporateManagement","NewMgDeviceAppManagementMobileAppAsManagedAndroidLobAppAssignment.g.cs","v1.0","New-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppAssignment","POST","","cast","" +"Devices.CorporateManagement","NewMgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersion.g.cs","v1.0","New-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersion","POST","","cast","" +"Devices.CorporateManagement","NewMgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionContainedApp.g.cs","v1.0","New-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionContainedApp","POST","","cast","" +"Devices.CorporateManagement","NewMgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionFile.g.cs","v1.0","New-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionFile","POST","","cast","" +"Devices.CorporateManagement","NewMgDeviceAppManagementMobileAppAsManagedIOSLobAppAssignment.g.cs","v1.0","New-MgDeviceAppManagementMobileAppAsManagedIOSLobAppAssignment","POST","","cast","" +"Devices.CorporateManagement","NewMgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersion.g.cs","v1.0","New-MgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersion","POST","","cast","" +"Devices.CorporateManagement","NewMgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersionContainedApp.g.cs","v1.0","New-MgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersionContainedApp","POST","","cast","" +"Devices.CorporateManagement","NewMgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersionFile.g.cs","v1.0","New-MgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersionFile","POST","","cast","" +"Devices.CorporateManagement","NewMgDeviceAppManagementMobileAppAsManagedMobileLobAppAssignment.g.cs","v1.0","New-MgDeviceAppManagementMobileAppAsManagedMobileLobAppAssignment","POST","","cast","" +"Devices.CorporateManagement","NewMgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersion.g.cs","v1.0","New-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersion","POST","","cast","" +"Devices.CorporateManagement","NewMgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionContainedApp.g.cs","v1.0","New-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionContainedApp","POST","","cast","" +"Devices.CorporateManagement","NewMgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionFile.g.cs","v1.0","New-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionFile","POST","","cast","" +"Devices.CorporateManagement","NewMgDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppAssignment.g.cs","v1.0","New-MgDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppAssignment","POST","","cast","" +"Devices.CorporateManagement","NewMgDeviceAppManagementMobileAppAssignment.g.cs","v1.0","New-MgDeviceAppManagementMobileAppAssignment","POST","/deviceAppManagement/mobileApps/{param}/assignments","matched","New-MgDeviceAppManagementMobileAppAssignment" +"Devices.CorporateManagement","NewMgDeviceAppManagementMobileAppAsWin32LobAppAssignment.g.cs","v1.0","New-MgDeviceAppManagementMobileAppAsWin32LobAppAssignment","POST","","cast","" +"Devices.CorporateManagement","NewMgDeviceAppManagementMobileAppAsWin32LobAppContentVersion.g.cs","v1.0","New-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersion","POST","","cast","" +"Devices.CorporateManagement","NewMgDeviceAppManagementMobileAppAsWin32LobAppContentVersionContainedApp.g.cs","v1.0","New-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersionContainedApp","POST","","cast","" +"Devices.CorporateManagement","NewMgDeviceAppManagementMobileAppAsWin32LobAppContentVersionFile.g.cs","v1.0","New-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersionFile","POST","","cast","" +"Devices.CorporateManagement","NewMgDeviceAppManagementMobileAppAsWindowsAppXAssignment.g.cs","v1.0","New-MgDeviceAppManagementMobileAppAsWindowsAppXAssignment","POST","","cast","" +"Devices.CorporateManagement","NewMgDeviceAppManagementMobileAppAsWindowsAppXContentVersion.g.cs","v1.0","New-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersion","POST","","cast","" +"Devices.CorporateManagement","NewMgDeviceAppManagementMobileAppAsWindowsAppXContentVersionContainedApp.g.cs","v1.0","New-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersionContainedApp","POST","","cast","" +"Devices.CorporateManagement","NewMgDeviceAppManagementMobileAppAsWindowsAppXContentVersionFile.g.cs","v1.0","New-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersionFile","POST","","cast","" +"Devices.CorporateManagement","NewMgDeviceAppManagementMobileAppAsWindowsMobileMSIAssignment.g.cs","v1.0","New-MgDeviceAppManagementMobileAppAsWindowsMobileMSIAssignment","POST","","cast","" +"Devices.CorporateManagement","NewMgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersion.g.cs","v1.0","New-MgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersion","POST","","cast","" +"Devices.CorporateManagement","NewMgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersionContainedApp.g.cs","v1.0","New-MgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersionContainedApp","POST","","cast","" +"Devices.CorporateManagement","NewMgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersionFile.g.cs","v1.0","New-MgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersionFile","POST","","cast","" +"Devices.CorporateManagement","NewMgDeviceAppManagementMobileAppAsWindowsUniversalAppXAssignment.g.cs","v1.0","New-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXAssignment","POST","","cast","" +"Devices.CorporateManagement","NewMgDeviceAppManagementMobileAppAsWindowsUniversalAppXCommittedContainedApp.g.cs","v1.0","New-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXCommittedContainedApp","POST","","cast","" +"Devices.CorporateManagement","NewMgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersion.g.cs","v1.0","New-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersion","POST","","cast","" +"Devices.CorporateManagement","NewMgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionContainedApp.g.cs","v1.0","New-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionContainedApp","POST","","cast","" +"Devices.CorporateManagement","NewMgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionFile.g.cs","v1.0","New-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionFile","POST","","cast","" +"Devices.CorporateManagement","NewMgDeviceAppManagementMobileAppAsWindowsWebAppAssignment.g.cs","v1.0","New-MgDeviceAppManagementMobileAppAsWindowsWebAppAssignment","POST","","cast","" +"Devices.CorporateManagement","NewMgDeviceAppManagementMobileAppCategory.g.cs","v1.0","New-MgDeviceAppManagementMobileAppCategory","POST","/deviceAppManagement/mobileAppCategories","matched","New-MgDeviceAppManagementMobileAppCategory" +"Devices.CorporateManagement","NewMgDeviceAppManagementMobileAppConfiguration.g.cs","v1.0","New-MgDeviceAppManagementMobileAppConfiguration","POST","/deviceAppManagement/mobileAppConfigurations","matched","New-MgDeviceAppManagementMobileAppConfiguration" +"Devices.CorporateManagement","NewMgDeviceAppManagementMobileAppConfigurationAssignment.g.cs","v1.0","New-MgDeviceAppManagementMobileAppConfigurationAssignment","POST","/deviceAppManagement/mobileAppConfigurations/{param}/assignments","matched","New-MgDeviceAppManagementMobileAppConfigurationAssignment" +"Devices.CorporateManagement","NewMgDeviceAppManagementMobileAppConfigurationDeviceStatus.g.cs","v1.0","New-MgDeviceAppManagementMobileAppConfigurationDeviceStatus","POST","/deviceAppManagement/mobileAppConfigurations/{param}/deviceStatuses","matched","New-MgDeviceAppManagementMobileAppConfigurationDeviceStatus" +"Devices.CorporateManagement","NewMgDeviceAppManagementMobileAppConfigurationUserStatus.g.cs","v1.0","New-MgDeviceAppManagementMobileAppConfigurationUserStatus","POST","/deviceAppManagement/mobileAppConfigurations/{param}/userStatuses","matched","New-MgDeviceAppManagementMobileAppConfigurationUserStatus" +"Devices.CorporateManagement","NewMgDeviceAppManagementMobileAppRelationship.g.cs","v1.0","New-MgDeviceAppManagementMobileAppRelationship","POST","/deviceAppManagement/mobileAppRelationships","matched","New-MgDeviceAppManagementMobileAppRelationship" +"Devices.CorporateManagement","NewMgDeviceAppManagementTargetedManagedAppConfiguration.g.cs","v1.0","New-MgDeviceAppManagementTargetedManagedAppConfiguration","POST","/deviceAppManagement/targetedManagedAppConfigurations","matched","New-MgDeviceAppManagementTargetedManagedAppConfiguration" +"Devices.CorporateManagement","NewMgDeviceAppManagementTargetedManagedAppConfigurationApp.g.cs","v1.0","New-MgDeviceAppManagementTargetedManagedAppConfigurationApp","POST","/deviceAppManagement/targetedManagedAppConfigurations/{param}/apps","matched","New-MgDeviceAppManagementTargetedManagedAppConfigurationApp" +"Devices.CorporateManagement","NewMgDeviceAppManagementTargetedManagedAppConfigurationAssignment.g.cs","v1.0","New-MgDeviceAppManagementTargetedManagedAppConfigurationAssignment","POST","/deviceAppManagement/targetedManagedAppConfigurations/{param}/assignments","matched","New-MgDeviceAppManagementTargetedManagedAppConfigurationAssignment" +"Devices.CorporateManagement","NewMgDeviceAppManagementVppToken.g.cs","v1.0","New-MgDeviceAppManagementVppToken","POST","/deviceAppManagement/vppTokens","matched","New-MgDeviceAppManagementVppToken" +"Devices.CorporateManagement","NewMgDeviceAppManagementWindowsInformationProtectionPolicy.g.cs","v1.0","New-MgDeviceAppManagementWindowsInformationProtectionPolicy","POST","/deviceAppManagement/windowsInformationProtectionPolicies","matched","New-MgDeviceAppManagementWindowsInformationProtectionPolicy" +"Devices.CorporateManagement","NewMgDeviceAppManagementWindowsInformationProtectionPolicyAssignment.g.cs","v1.0","New-MgDeviceAppManagementWindowsInformationProtectionPolicyAssignment","POST","/deviceAppManagement/windowsInformationProtectionPolicies/{param}/assignments","matched","New-MgDeviceAppManagementWindowsInformationProtectionPolicyAssignment" +"Devices.CorporateManagement","NewMgDeviceAppManagementWindowsInformationProtectionPolicyExemptAppLockerFile.g.cs","v1.0","New-MgDeviceAppManagementWindowsInformationProtectionPolicyExemptAppLockerFile","POST","/deviceAppManagement/windowsInformationProtectionPolicies/{param}/exemptAppLockerFiles","matched","New-MgDeviceAppManagementWindowsInformationProtectionPolicyExemptAppLockerFile" +"Devices.CorporateManagement","NewMgDeviceAppManagementWindowsInformationProtectionPolicyProtectedAppLockerFile.g.cs","v1.0","New-MgDeviceAppManagementWindowsInformationProtectionPolicyProtectedAppLockerFile","POST","/deviceAppManagement/windowsInformationProtectionPolicies/{param}/protectedAppLockerFiles","matched","New-MgDeviceAppManagementWindowsInformationProtectionPolicyProtectedAppLockerFile" +"Devices.CorporateManagement","NewMgUserDeviceManagementTroubleshootingEvent.g.cs","v1.0","New-MgUserDeviceManagementTroubleshootingEvent","POST","/users/{param}/deviceManagementTroubleshootingEvents","matched","New-MgUserDeviceManagementTroubleshootingEvent" +"Devices.CorporateManagement","NewMgUserManagedDevice.g.cs","v1.0","New-MgUserManagedDevice","POST","/users/{param}/managedDevices","matched","New-MgUserManagedDevice" +"Devices.CorporateManagement","NewMgUserManagedDeviceCompliancePolicyState.g.cs","v1.0","New-MgUserManagedDeviceCompliancePolicyState","POST","/users/{param}/managedDevices/{param}/deviceCompliancePolicyStates","matched","New-MgUserManagedDeviceCompliancePolicyState" +"Devices.CorporateManagement","NewMgUserManagedDeviceConfigurationState.g.cs","v1.0","New-MgUserManagedDeviceConfigurationState","POST","/users/{param}/managedDevices/{param}/deviceConfigurationStates","matched","New-MgUserManagedDeviceConfigurationState" +"Devices.CorporateManagement","NewMgUserManagedDeviceLogCollectionRequest.g.cs","v1.0","New-MgUserManagedDeviceLogCollectionRequest","POST","/users/{param}/managedDevices/{param}/logCollectionRequests","mismatch","New-MgUserManagedDeviceLogCollectionResponse" +"Devices.CorporateManagement","NewMgUserManagedDeviceWindowsProtectionStateDetectedMalwareState.g.cs","v1.0","New-MgUserManagedDeviceWindowsProtectionStateDetectedMalwareState","POST","/users/{param}/managedDevices/{param}/windowsProtectionState/detectedMalwareState","matched","New-MgUserManagedDeviceWindowsProtectionStateDetectedMalwareState" +"Devices.CorporateManagement","RemoveMgDeviceAppManagementAndroidManagedAppProtection.g.cs","v1.0","Remove-MgDeviceAppManagementAndroidManagedAppProtection","DELETE","/deviceAppManagement/androidManagedAppProtections/{param}","matched","Remove-MgDeviceAppManagementAndroidManagedAppProtection" +"Devices.CorporateManagement","RemoveMgDeviceAppManagementAndroidManagedAppProtectionApp.g.cs","v1.0","Remove-MgDeviceAppManagementAndroidManagedAppProtectionApp","DELETE","/deviceAppManagement/androidManagedAppProtections/{param}/apps/{param}","matched","Remove-MgDeviceAppManagementAndroidManagedAppProtectionApp" +"Devices.CorporateManagement","RemoveMgDeviceAppManagementAndroidManagedAppProtectionAssignment.g.cs","v1.0","Remove-MgDeviceAppManagementAndroidManagedAppProtectionAssignment","DELETE","/deviceAppManagement/androidManagedAppProtections/{param}/assignments/{param}","matched","Remove-MgDeviceAppManagementAndroidManagedAppProtectionAssignment" +"Devices.CorporateManagement","RemoveMgDeviceAppManagementAndroidManagedAppProtectionDeploymentSummary.g.cs","v1.0","Remove-MgDeviceAppManagementAndroidManagedAppProtectionDeploymentSummary","DELETE","/deviceAppManagement/androidManagedAppProtections/{param}/deploymentSummary","matched","Remove-MgDeviceAppManagementAndroidManagedAppProtectionDeploymentSummary" +"Devices.CorporateManagement","RemoveMgDeviceAppManagementDefaultManagedAppProtection.g.cs","v1.0","Remove-MgDeviceAppManagementDefaultManagedAppProtection","DELETE","/deviceAppManagement/defaultManagedAppProtections/{param}","matched","Remove-MgDeviceAppManagementDefaultManagedAppProtection" +"Devices.CorporateManagement","RemoveMgDeviceAppManagementDefaultManagedAppProtectionApp.g.cs","v1.0","Remove-MgDeviceAppManagementDefaultManagedAppProtectionApp","DELETE","/deviceAppManagement/defaultManagedAppProtections/{param}/apps/{param}","matched","Remove-MgDeviceAppManagementDefaultManagedAppProtectionApp" +"Devices.CorporateManagement","RemoveMgDeviceAppManagementDefaultManagedAppProtectionDeploymentSummary.g.cs","v1.0","Remove-MgDeviceAppManagementDefaultManagedAppProtectionDeploymentSummary","DELETE","/deviceAppManagement/defaultManagedAppProtections/{param}/deploymentSummary","matched","Remove-MgDeviceAppManagementDefaultManagedAppProtectionDeploymentSummary" +"Devices.CorporateManagement","RemoveMgDeviceAppManagementIosManagedAppProtection.g.cs","v1.0","Remove-MgDeviceAppManagementIosManagedAppProtection","DELETE","/deviceAppManagement/iosManagedAppProtections/{param}","mismatch","Remove-MgDeviceAppManagementiOSManagedAppProtection" +"Devices.CorporateManagement","RemoveMgDeviceAppManagementIosManagedAppProtectionApp.g.cs","v1.0","Remove-MgDeviceAppManagementIosManagedAppProtectionApp","DELETE","/deviceAppManagement/iosManagedAppProtections/{param}/apps/{param}","mismatch","Remove-MgDeviceAppManagementiOSManagedAppProtectionApp" +"Devices.CorporateManagement","RemoveMgDeviceAppManagementIosManagedAppProtectionAssignment.g.cs","v1.0","Remove-MgDeviceAppManagementIosManagedAppProtectionAssignment","DELETE","/deviceAppManagement/iosManagedAppProtections/{param}/assignments/{param}","mismatch","Remove-MgDeviceAppManagementiOSManagedAppProtectionAssignment" +"Devices.CorporateManagement","RemoveMgDeviceAppManagementIosManagedAppProtectionDeploymentSummary.g.cs","v1.0","Remove-MgDeviceAppManagementIosManagedAppProtectionDeploymentSummary","DELETE","/deviceAppManagement/iosManagedAppProtections/{param}/deploymentSummary","mismatch","Remove-MgDeviceAppManagementiOSManagedAppProtectionDeploymentSummary" +"Devices.CorporateManagement","RemoveMgDeviceAppManagementManagedAppPolicy.g.cs","v1.0","Remove-MgDeviceAppManagementManagedAppPolicy","DELETE","/deviceAppManagement/managedAppPolicies/{param}","matched","Remove-MgDeviceAppManagementManagedAppPolicy" +"Devices.CorporateManagement","RemoveMgDeviceAppManagementManagedAppRegistration.g.cs","v1.0","Remove-MgDeviceAppManagementManagedAppRegistration","DELETE","/deviceAppManagement/managedAppRegistrations/{param}","matched","Remove-MgDeviceAppManagementManagedAppRegistration" +"Devices.CorporateManagement","RemoveMgDeviceAppManagementManagedAppRegistrationAppliedPolicy.g.cs","v1.0","Remove-MgDeviceAppManagementManagedAppRegistrationAppliedPolicy","DELETE","/deviceAppManagement/managedAppRegistrations/{param}/appliedPolicies/{param}","matched","Remove-MgDeviceAppManagementManagedAppRegistrationAppliedPolicy" +"Devices.CorporateManagement","RemoveMgDeviceAppManagementManagedAppRegistrationIntendedPolicy.g.cs","v1.0","Remove-MgDeviceAppManagementManagedAppRegistrationIntendedPolicy","DELETE","/deviceAppManagement/managedAppRegistrations/{param}/intendedPolicies/{param}","matched","Remove-MgDeviceAppManagementManagedAppRegistrationIntendedPolicy" +"Devices.CorporateManagement","RemoveMgDeviceAppManagementManagedAppRegistrationOperation.g.cs","v1.0","Remove-MgDeviceAppManagementManagedAppRegistrationOperation","DELETE","/deviceAppManagement/managedAppRegistrations/{param}/operations/{param}","matched","Remove-MgDeviceAppManagementManagedAppRegistrationOperation" +"Devices.CorporateManagement","RemoveMgDeviceAppManagementManagedAppStatus.g.cs","v1.0","Remove-MgDeviceAppManagementManagedAppStatus","DELETE","/deviceAppManagement/managedAppStatuses/{param}","matched","Remove-MgDeviceAppManagementManagedAppStatus" +"Devices.CorporateManagement","RemoveMgDeviceAppManagementManagedEBook.g.cs","v1.0","Remove-MgDeviceAppManagementManagedEBook","DELETE","/deviceAppManagement/managedEBooks/{param}","matched","Remove-MgDeviceAppManagementManagedEBook" +"Devices.CorporateManagement","RemoveMgDeviceAppManagementManagedEBookAssignment.g.cs","v1.0","Remove-MgDeviceAppManagementManagedEBookAssignment","DELETE","/deviceAppManagement/managedEBooks/{param}/assignments/{param}","matched","Remove-MgDeviceAppManagementManagedEBookAssignment" +"Devices.CorporateManagement","RemoveMgDeviceAppManagementManagedEBookDeviceState.g.cs","v1.0","Remove-MgDeviceAppManagementManagedEBookDeviceState","DELETE","/deviceAppManagement/managedEBooks/{param}/deviceStates/{param}","matched","Remove-MgDeviceAppManagementManagedEBookDeviceState" +"Devices.CorporateManagement","RemoveMgDeviceAppManagementManagedEBookInstallSummary.g.cs","v1.0","Remove-MgDeviceAppManagementManagedEBookInstallSummary","DELETE","/deviceAppManagement/managedEBooks/{param}/installSummary","matched","Remove-MgDeviceAppManagementManagedEBookInstallSummary" +"Devices.CorporateManagement","RemoveMgDeviceAppManagementManagedEBookUserStateSummary.g.cs","v1.0","Remove-MgDeviceAppManagementManagedEBookUserStateSummary","DELETE","/deviceAppManagement/managedEBooks/{param}/userStateSummary/{param}","matched","Remove-MgDeviceAppManagementManagedEBookUserStateSummary" +"Devices.CorporateManagement","RemoveMgDeviceAppManagementManagedEBookUserStateSummaryDeviceState.g.cs","v1.0","Remove-MgDeviceAppManagementManagedEBookUserStateSummaryDeviceState","DELETE","/deviceAppManagement/managedEBooks/{param}/userStateSummary/{param}/deviceStates/{param}","matched","Remove-MgDeviceAppManagementManagedEBookUserStateSummaryDeviceState" +"Devices.CorporateManagement","RemoveMgDeviceAppManagementMdmWindowsInformationProtectionPolicy.g.cs","v1.0","Remove-MgDeviceAppManagementMdmWindowsInformationProtectionPolicy","DELETE","/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{param}","matched","Remove-MgDeviceAppManagementMdmWindowsInformationProtectionPolicy" +"Devices.CorporateManagement","RemoveMgDeviceAppManagementMdmWindowsInformationProtectionPolicyAssignment.g.cs","v1.0","Remove-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyAssignment","DELETE","/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{param}/assignments/{param}","matched","Remove-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyAssignment" +"Devices.CorporateManagement","RemoveMgDeviceAppManagementMdmWindowsInformationProtectionPolicyExemptAppLockerFile.g.cs","v1.0","Remove-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyExemptAppLockerFile","DELETE","/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{param}/exemptAppLockerFiles/{param}","matched","Remove-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyExemptAppLockerFile" +"Devices.CorporateManagement","RemoveMgDeviceAppManagementMdmWindowsInformationProtectionPolicyProtectedAppLockerFile.g.cs","v1.0","Remove-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyProtectedAppLockerFile","DELETE","/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{param}/protectedAppLockerFiles/{param}","matched","Remove-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyProtectedAppLockerFile" +"Devices.CorporateManagement","RemoveMgDeviceAppManagementMobileApp.g.cs","v1.0","Remove-MgDeviceAppManagementMobileApp","DELETE","/deviceAppManagement/mobileApps/{param}","matched","Remove-MgDeviceAppManagementMobileApp" +"Devices.CorporateManagement","RemoveMgDeviceAppManagementMobileAppAsAndroidLobAppAssignment.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppAsAndroidLobAppAssignment","DELETE","","cast","" +"Devices.CorporateManagement","RemoveMgDeviceAppManagementMobileAppAsAndroidLobAppContentVersion.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersion","DELETE","","cast","" +"Devices.CorporateManagement","RemoveMgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionContainedApp.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionContainedApp","DELETE","","cast","" +"Devices.CorporateManagement","RemoveMgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionFile.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionFile","DELETE","","cast","" +"Devices.CorporateManagement","RemoveMgDeviceAppManagementMobileAppAsAndroidStoreAppAssignment.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppAsAndroidStoreAppAssignment","DELETE","","cast","" +"Devices.CorporateManagement","RemoveMgDeviceAppManagementMobileAppAsIosLobAppAssignment.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppAsIosLobAppAssignment","DELETE","","cast","" +"Devices.CorporateManagement","RemoveMgDeviceAppManagementMobileAppAsIosLobAppContentVersion.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppAsIosLobAppContentVersion","DELETE","","cast","" +"Devices.CorporateManagement","RemoveMgDeviceAppManagementMobileAppAsIosLobAppContentVersionContainedApp.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppAsIosLobAppContentVersionContainedApp","DELETE","","cast","" +"Devices.CorporateManagement","RemoveMgDeviceAppManagementMobileAppAsIosLobAppContentVersionFile.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppAsIosLobAppContentVersionFile","DELETE","","cast","" +"Devices.CorporateManagement","RemoveMgDeviceAppManagementMobileAppAsIosStoreAppAssignment.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppAsIosStoreAppAssignment","DELETE","","cast","" +"Devices.CorporateManagement","RemoveMgDeviceAppManagementMobileAppAsIosVppAppAssignment.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppAsIosVppAppAssignment","DELETE","","cast","" +"Devices.CorporateManagement","RemoveMgDeviceAppManagementMobileAppAsMacOSDmgAppAssignment.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppAsMacOSDmgAppAssignment","DELETE","","cast","" +"Devices.CorporateManagement","RemoveMgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersion.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersion","DELETE","","cast","" +"Devices.CorporateManagement","RemoveMgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionContainedApp.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionContainedApp","DELETE","","cast","" +"Devices.CorporateManagement","RemoveMgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionFile.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionFile","DELETE","","cast","" +"Devices.CorporateManagement","RemoveMgDeviceAppManagementMobileAppAsMacOSLobAppAssignment.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppAsMacOSLobAppAssignment","DELETE","","cast","" +"Devices.CorporateManagement","RemoveMgDeviceAppManagementMobileAppAsMacOSLobAppContentVersion.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersion","DELETE","","cast","" +"Devices.CorporateManagement","RemoveMgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionContainedApp.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionContainedApp","DELETE","","cast","" +"Devices.CorporateManagement","RemoveMgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionFile.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionFile","DELETE","","cast","" +"Devices.CorporateManagement","RemoveMgDeviceAppManagementMobileAppAsManagedAndroidLobAppAssignment.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppAssignment","DELETE","","cast","" +"Devices.CorporateManagement","RemoveMgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersion.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersion","DELETE","","cast","" +"Devices.CorporateManagement","RemoveMgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionContainedApp.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionContainedApp","DELETE","","cast","" +"Devices.CorporateManagement","RemoveMgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionFile.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionFile","DELETE","","cast","" +"Devices.CorporateManagement","RemoveMgDeviceAppManagementMobileAppAsManagedIOSLobAppAssignment.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppAsManagedIOSLobAppAssignment","DELETE","","cast","" +"Devices.CorporateManagement","RemoveMgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersion.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersion","DELETE","","cast","" +"Devices.CorporateManagement","RemoveMgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersionContainedApp.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersionContainedApp","DELETE","","cast","" +"Devices.CorporateManagement","RemoveMgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersionFile.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersionFile","DELETE","","cast","" +"Devices.CorporateManagement","RemoveMgDeviceAppManagementMobileAppAsManagedMobileLobAppAssignment.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppAsManagedMobileLobAppAssignment","DELETE","","cast","" +"Devices.CorporateManagement","RemoveMgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersion.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersion","DELETE","","cast","" +"Devices.CorporateManagement","RemoveMgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionContainedApp.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionContainedApp","DELETE","","cast","" +"Devices.CorporateManagement","RemoveMgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionFile.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionFile","DELETE","","cast","" +"Devices.CorporateManagement","RemoveMgDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppAssignment.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppAssignment","DELETE","","cast","" +"Devices.CorporateManagement","RemoveMgDeviceAppManagementMobileAppAssignment.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppAssignment","DELETE","/deviceAppManagement/mobileApps/{param}/assignments/{param}","matched","Remove-MgDeviceAppManagementMobileAppAssignment" +"Devices.CorporateManagement","RemoveMgDeviceAppManagementMobileAppAsWin32LobAppAssignment.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppAsWin32LobAppAssignment","DELETE","","cast","" +"Devices.CorporateManagement","RemoveMgDeviceAppManagementMobileAppAsWin32LobAppContentVersion.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersion","DELETE","","cast","" +"Devices.CorporateManagement","RemoveMgDeviceAppManagementMobileAppAsWin32LobAppContentVersionContainedApp.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersionContainedApp","DELETE","","cast","" +"Devices.CorporateManagement","RemoveMgDeviceAppManagementMobileAppAsWin32LobAppContentVersionFile.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersionFile","DELETE","","cast","" +"Devices.CorporateManagement","RemoveMgDeviceAppManagementMobileAppAsWindowsAppXAssignment.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppAsWindowsAppXAssignment","DELETE","","cast","" +"Devices.CorporateManagement","RemoveMgDeviceAppManagementMobileAppAsWindowsAppXContentVersion.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersion","DELETE","","cast","" +"Devices.CorporateManagement","RemoveMgDeviceAppManagementMobileAppAsWindowsAppXContentVersionContainedApp.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersionContainedApp","DELETE","","cast","" +"Devices.CorporateManagement","RemoveMgDeviceAppManagementMobileAppAsWindowsAppXContentVersionFile.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersionFile","DELETE","","cast","" +"Devices.CorporateManagement","RemoveMgDeviceAppManagementMobileAppAsWindowsMobileMSIAssignment.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppAsWindowsMobileMSIAssignment","DELETE","","cast","" +"Devices.CorporateManagement","RemoveMgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersion.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersion","DELETE","","cast","" +"Devices.CorporateManagement","RemoveMgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersionContainedApp.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersionContainedApp","DELETE","","cast","" +"Devices.CorporateManagement","RemoveMgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersionFile.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersionFile","DELETE","","cast","" +"Devices.CorporateManagement","RemoveMgDeviceAppManagementMobileAppAsWindowsUniversalAppXAssignment.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXAssignment","DELETE","","cast","" +"Devices.CorporateManagement","RemoveMgDeviceAppManagementMobileAppAsWindowsUniversalAppXCommittedContainedApp.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXCommittedContainedApp","DELETE","","cast","" +"Devices.CorporateManagement","RemoveMgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersion.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersion","DELETE","","cast","" +"Devices.CorporateManagement","RemoveMgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionContainedApp.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionContainedApp","DELETE","","cast","" +"Devices.CorporateManagement","RemoveMgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionFile.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionFile","DELETE","","cast","" +"Devices.CorporateManagement","RemoveMgDeviceAppManagementMobileAppAsWindowsWebAppAssignment.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppAsWindowsWebAppAssignment","DELETE","","cast","" +"Devices.CorporateManagement","RemoveMgDeviceAppManagementMobileAppCategory.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppCategory","DELETE","/deviceAppManagement/mobileAppCategories/{param}","matched","Remove-MgDeviceAppManagementMobileAppCategory" +"Devices.CorporateManagement","RemoveMgDeviceAppManagementMobileAppConfiguration.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppConfiguration","DELETE","/deviceAppManagement/mobileAppConfigurations/{param}","matched","Remove-MgDeviceAppManagementMobileAppConfiguration" +"Devices.CorporateManagement","RemoveMgDeviceAppManagementMobileAppConfigurationAssignment.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppConfigurationAssignment","DELETE","/deviceAppManagement/mobileAppConfigurations/{param}/assignments/{param}","matched","Remove-MgDeviceAppManagementMobileAppConfigurationAssignment" +"Devices.CorporateManagement","RemoveMgDeviceAppManagementMobileAppConfigurationDeviceStatus.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppConfigurationDeviceStatus","DELETE","/deviceAppManagement/mobileAppConfigurations/{param}/deviceStatuses/{param}","matched","Remove-MgDeviceAppManagementMobileAppConfigurationDeviceStatus" +"Devices.CorporateManagement","RemoveMgDeviceAppManagementMobileAppConfigurationDeviceStatusSummary.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppConfigurationDeviceStatusSummary","DELETE","/deviceAppManagement/mobileAppConfigurations/{param}/deviceStatusSummary","matched","Remove-MgDeviceAppManagementMobileAppConfigurationDeviceStatusSummary" +"Devices.CorporateManagement","RemoveMgDeviceAppManagementMobileAppConfigurationUserStatus.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppConfigurationUserStatus","DELETE","/deviceAppManagement/mobileAppConfigurations/{param}/userStatuses/{param}","matched","Remove-MgDeviceAppManagementMobileAppConfigurationUserStatus" +"Devices.CorporateManagement","RemoveMgDeviceAppManagementMobileAppConfigurationUserStatusSummary.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppConfigurationUserStatusSummary","DELETE","/deviceAppManagement/mobileAppConfigurations/{param}/userStatusSummary","matched","Remove-MgDeviceAppManagementMobileAppConfigurationUserStatusSummary" +"Devices.CorporateManagement","RemoveMgDeviceAppManagementMobileAppRelationship.g.cs","v1.0","Remove-MgDeviceAppManagementMobileAppRelationship","DELETE","/deviceAppManagement/mobileAppRelationships/{param}","matched","Remove-MgDeviceAppManagementMobileAppRelationship" +"Devices.CorporateManagement","RemoveMgDeviceAppManagementTargetedManagedAppConfiguration.g.cs","v1.0","Remove-MgDeviceAppManagementTargetedManagedAppConfiguration","DELETE","/deviceAppManagement/targetedManagedAppConfigurations/{param}","matched","Remove-MgDeviceAppManagementTargetedManagedAppConfiguration" +"Devices.CorporateManagement","RemoveMgDeviceAppManagementTargetedManagedAppConfigurationApp.g.cs","v1.0","Remove-MgDeviceAppManagementTargetedManagedAppConfigurationApp","DELETE","/deviceAppManagement/targetedManagedAppConfigurations/{param}/apps/{param}","matched","Remove-MgDeviceAppManagementTargetedManagedAppConfigurationApp" +"Devices.CorporateManagement","RemoveMgDeviceAppManagementTargetedManagedAppConfigurationAssignment.g.cs","v1.0","Remove-MgDeviceAppManagementTargetedManagedAppConfigurationAssignment","DELETE","/deviceAppManagement/targetedManagedAppConfigurations/{param}/assignments/{param}","matched","Remove-MgDeviceAppManagementTargetedManagedAppConfigurationAssignment" +"Devices.CorporateManagement","RemoveMgDeviceAppManagementTargetedManagedAppConfigurationDeploymentSummary.g.cs","v1.0","Remove-MgDeviceAppManagementTargetedManagedAppConfigurationDeploymentSummary","DELETE","/deviceAppManagement/targetedManagedAppConfigurations/{param}/deploymentSummary","matched","Remove-MgDeviceAppManagementTargetedManagedAppConfigurationDeploymentSummary" +"Devices.CorporateManagement","RemoveMgDeviceAppManagementVppToken.g.cs","v1.0","Remove-MgDeviceAppManagementVppToken","DELETE","/deviceAppManagement/vppTokens/{param}","matched","Remove-MgDeviceAppManagementVppToken" +"Devices.CorporateManagement","RemoveMgDeviceAppManagementWindowsInformationProtectionPolicy.g.cs","v1.0","Remove-MgDeviceAppManagementWindowsInformationProtectionPolicy","DELETE","/deviceAppManagement/windowsInformationProtectionPolicies/{param}","matched","Remove-MgDeviceAppManagementWindowsInformationProtectionPolicy" +"Devices.CorporateManagement","RemoveMgDeviceAppManagementWindowsInformationProtectionPolicyAssignment.g.cs","v1.0","Remove-MgDeviceAppManagementWindowsInformationProtectionPolicyAssignment","DELETE","/deviceAppManagement/windowsInformationProtectionPolicies/{param}/assignments/{param}","matched","Remove-MgDeviceAppManagementWindowsInformationProtectionPolicyAssignment" +"Devices.CorporateManagement","RemoveMgDeviceAppManagementWindowsInformationProtectionPolicyExemptAppLockerFile.g.cs","v1.0","Remove-MgDeviceAppManagementWindowsInformationProtectionPolicyExemptAppLockerFile","DELETE","/deviceAppManagement/windowsInformationProtectionPolicies/{param}/exemptAppLockerFiles/{param}","matched","Remove-MgDeviceAppManagementWindowsInformationProtectionPolicyExemptAppLockerFile" +"Devices.CorporateManagement","RemoveMgDeviceAppManagementWindowsInformationProtectionPolicyProtectedAppLockerFile.g.cs","v1.0","Remove-MgDeviceAppManagementWindowsInformationProtectionPolicyProtectedAppLockerFile","DELETE","/deviceAppManagement/windowsInformationProtectionPolicies/{param}/protectedAppLockerFiles/{param}","matched","Remove-MgDeviceAppManagementWindowsInformationProtectionPolicyProtectedAppLockerFile" +"Devices.CorporateManagement","RemoveMgUserDeviceManagementTroubleshootingEvent.g.cs","v1.0","Remove-MgUserDeviceManagementTroubleshootingEvent","DELETE","/users/{param}/deviceManagementTroubleshootingEvents/{param}","matched","Remove-MgUserDeviceManagementTroubleshootingEvent" +"Devices.CorporateManagement","RemoveMgUserManagedDevice.g.cs","v1.0","Remove-MgUserManagedDevice","DELETE","/users/{param}/managedDevices/{param}","matched","Remove-MgUserManagedDevice" +"Devices.CorporateManagement","RemoveMgUserManagedDeviceCategory.g.cs","v1.0","Remove-MgUserManagedDeviceCategory","DELETE","/users/{param}/managedDevices/{param}/deviceCategory","matched","Remove-MgUserManagedDeviceCategory" +"Devices.CorporateManagement","RemoveMgUserManagedDeviceCategoryByRef.g.cs","v1.0","Remove-MgUserManagedDeviceCategoryByRef","DELETE","/users/{param}/managedDevices/{param}/deviceCategory/$ref","matched","Remove-MgUserManagedDeviceCategoryByRef" +"Devices.CorporateManagement","RemoveMgUserManagedDeviceCompliancePolicyState.g.cs","v1.0","Remove-MgUserManagedDeviceCompliancePolicyState","DELETE","/users/{param}/managedDevices/{param}/deviceCompliancePolicyStates/{param}","matched","Remove-MgUserManagedDeviceCompliancePolicyState" +"Devices.CorporateManagement","RemoveMgUserManagedDeviceConfigurationState.g.cs","v1.0","Remove-MgUserManagedDeviceConfigurationState","DELETE","/users/{param}/managedDevices/{param}/deviceConfigurationStates/{param}","matched","Remove-MgUserManagedDeviceConfigurationState" +"Devices.CorporateManagement","RemoveMgUserManagedDeviceLogCollectionRequest.g.cs","v1.0","Remove-MgUserManagedDeviceLogCollectionRequest","DELETE","/users/{param}/managedDevices/{param}/logCollectionRequests/{param}","mismatch","Remove-MgUserManagedDeviceLogCollectionResponse" +"Devices.CorporateManagement","RemoveMgUserManagedDeviceWindowsProtectionState.g.cs","v1.0","Remove-MgUserManagedDeviceWindowsProtectionState","DELETE","/users/{param}/managedDevices/{param}/windowsProtectionState","matched","Remove-MgUserManagedDeviceWindowsProtectionState" +"Devices.CorporateManagement","RemoveMgUserManagedDeviceWindowsProtectionStateDetectedMalwareState.g.cs","v1.0","Remove-MgUserManagedDeviceWindowsProtectionStateDetectedMalwareState","DELETE","/users/{param}/managedDevices/{param}/windowsProtectionState/detectedMalwareState/{param}","matched","Remove-MgUserManagedDeviceWindowsProtectionStateDetectedMalwareState" +"Devices.CorporateManagement","SetMgUserManagedDeviceCategoryByRef.g.cs","v1.0","Set-MgUserManagedDeviceCategoryByRef","PUT","/users/{param}/managedDevices/{param}/deviceCategory/$ref","matched","Set-MgUserManagedDeviceCategoryByRef" +"Devices.CorporateManagement","UpdateMgDeviceAppManagement.g.cs","v1.0","Update-MgDeviceAppManagement","PATCH","/deviceAppManagement","matched","Update-MgDeviceAppManagement" +"Devices.CorporateManagement","UpdateMgDeviceAppManagementAndroidManagedAppProtection.g.cs","v1.0","Update-MgDeviceAppManagementAndroidManagedAppProtection","PATCH","/deviceAppManagement/androidManagedAppProtections/{param}","matched","Update-MgDeviceAppManagementAndroidManagedAppProtection" +"Devices.CorporateManagement","UpdateMgDeviceAppManagementAndroidManagedAppProtectionApp.g.cs","v1.0","Update-MgDeviceAppManagementAndroidManagedAppProtectionApp","PATCH","/deviceAppManagement/androidManagedAppProtections/{param}/apps/{param}","matched","Update-MgDeviceAppManagementAndroidManagedAppProtectionApp" +"Devices.CorporateManagement","UpdateMgDeviceAppManagementAndroidManagedAppProtectionAssignment.g.cs","v1.0","Update-MgDeviceAppManagementAndroidManagedAppProtectionAssignment","PATCH","/deviceAppManagement/androidManagedAppProtections/{param}/assignments/{param}","matched","Update-MgDeviceAppManagementAndroidManagedAppProtectionAssignment" +"Devices.CorporateManagement","UpdateMgDeviceAppManagementAndroidManagedAppProtectionDeploymentSummary.g.cs","v1.0","Update-MgDeviceAppManagementAndroidManagedAppProtectionDeploymentSummary","PATCH","/deviceAppManagement/androidManagedAppProtections/{param}/deploymentSummary","matched","Update-MgDeviceAppManagementAndroidManagedAppProtectionDeploymentSummary" +"Devices.CorporateManagement","UpdateMgDeviceAppManagementDefaultManagedAppProtection.g.cs","v1.0","Update-MgDeviceAppManagementDefaultManagedAppProtection","PATCH","/deviceAppManagement/defaultManagedAppProtections/{param}","matched","Update-MgDeviceAppManagementDefaultManagedAppProtection" +"Devices.CorporateManagement","UpdateMgDeviceAppManagementDefaultManagedAppProtectionApp.g.cs","v1.0","Update-MgDeviceAppManagementDefaultManagedAppProtectionApp","PATCH","/deviceAppManagement/defaultManagedAppProtections/{param}/apps/{param}","matched","Update-MgDeviceAppManagementDefaultManagedAppProtectionApp" +"Devices.CorporateManagement","UpdateMgDeviceAppManagementDefaultManagedAppProtectionDeploymentSummary.g.cs","v1.0","Update-MgDeviceAppManagementDefaultManagedAppProtectionDeploymentSummary","PATCH","/deviceAppManagement/defaultManagedAppProtections/{param}/deploymentSummary","matched","Update-MgDeviceAppManagementDefaultManagedAppProtectionDeploymentSummary" +"Devices.CorporateManagement","UpdateMgDeviceAppManagementIosManagedAppProtection.g.cs","v1.0","Update-MgDeviceAppManagementIosManagedAppProtection","PATCH","/deviceAppManagement/iosManagedAppProtections/{param}","mismatch","Update-MgDeviceAppManagementiOSManagedAppProtection" +"Devices.CorporateManagement","UpdateMgDeviceAppManagementIosManagedAppProtectionApp.g.cs","v1.0","Update-MgDeviceAppManagementIosManagedAppProtectionApp","PATCH","/deviceAppManagement/iosManagedAppProtections/{param}/apps/{param}","mismatch","Update-MgDeviceAppManagementiOSManagedAppProtectionApp" +"Devices.CorporateManagement","UpdateMgDeviceAppManagementIosManagedAppProtectionAssignment.g.cs","v1.0","Update-MgDeviceAppManagementIosManagedAppProtectionAssignment","PATCH","/deviceAppManagement/iosManagedAppProtections/{param}/assignments/{param}","mismatch","Update-MgDeviceAppManagementiOSManagedAppProtectionAssignment" +"Devices.CorporateManagement","UpdateMgDeviceAppManagementIosManagedAppProtectionDeploymentSummary.g.cs","v1.0","Update-MgDeviceAppManagementIosManagedAppProtectionDeploymentSummary","PATCH","/deviceAppManagement/iosManagedAppProtections/{param}/deploymentSummary","mismatch","Update-MgDeviceAppManagementiOSManagedAppProtectionDeploymentSummary" +"Devices.CorporateManagement","UpdateMgDeviceAppManagementManagedAppPolicy.g.cs","v1.0","Update-MgDeviceAppManagementManagedAppPolicy","PATCH","/deviceAppManagement/managedAppPolicies/{param}","matched","Update-MgDeviceAppManagementManagedAppPolicy" +"Devices.CorporateManagement","UpdateMgDeviceAppManagementManagedAppRegistration.g.cs","v1.0","Update-MgDeviceAppManagementManagedAppRegistration","PATCH","/deviceAppManagement/managedAppRegistrations/{param}","matched","Update-MgDeviceAppManagementManagedAppRegistration" +"Devices.CorporateManagement","UpdateMgDeviceAppManagementManagedAppRegistrationAppliedPolicy.g.cs","v1.0","Update-MgDeviceAppManagementManagedAppRegistrationAppliedPolicy","PATCH","/deviceAppManagement/managedAppRegistrations/{param}/appliedPolicies/{param}","matched","Update-MgDeviceAppManagementManagedAppRegistrationAppliedPolicy" +"Devices.CorporateManagement","UpdateMgDeviceAppManagementManagedAppRegistrationIntendedPolicy.g.cs","v1.0","Update-MgDeviceAppManagementManagedAppRegistrationIntendedPolicy","PATCH","/deviceAppManagement/managedAppRegistrations/{param}/intendedPolicies/{param}","matched","Update-MgDeviceAppManagementManagedAppRegistrationIntendedPolicy" +"Devices.CorporateManagement","UpdateMgDeviceAppManagementManagedAppRegistrationOperation.g.cs","v1.0","Update-MgDeviceAppManagementManagedAppRegistrationOperation","PATCH","/deviceAppManagement/managedAppRegistrations/{param}/operations/{param}","matched","Update-MgDeviceAppManagementManagedAppRegistrationOperation" +"Devices.CorporateManagement","UpdateMgDeviceAppManagementManagedAppStatus.g.cs","v1.0","Update-MgDeviceAppManagementManagedAppStatus","PATCH","/deviceAppManagement/managedAppStatuses/{param}","matched","Update-MgDeviceAppManagementManagedAppStatus" +"Devices.CorporateManagement","UpdateMgDeviceAppManagementManagedEBook.g.cs","v1.0","Update-MgDeviceAppManagementManagedEBook","PATCH","/deviceAppManagement/managedEBooks/{param}","matched","Update-MgDeviceAppManagementManagedEBook" +"Devices.CorporateManagement","UpdateMgDeviceAppManagementManagedEBookAssignment.g.cs","v1.0","Update-MgDeviceAppManagementManagedEBookAssignment","PATCH","/deviceAppManagement/managedEBooks/{param}/assignments/{param}","matched","Update-MgDeviceAppManagementManagedEBookAssignment" +"Devices.CorporateManagement","UpdateMgDeviceAppManagementManagedEBookDeviceState.g.cs","v1.0","Update-MgDeviceAppManagementManagedEBookDeviceState","PATCH","/deviceAppManagement/managedEBooks/{param}/deviceStates/{param}","matched","Update-MgDeviceAppManagementManagedEBookDeviceState" +"Devices.CorporateManagement","UpdateMgDeviceAppManagementManagedEBookInstallSummary.g.cs","v1.0","Update-MgDeviceAppManagementManagedEBookInstallSummary","PATCH","/deviceAppManagement/managedEBooks/{param}/installSummary","matched","Update-MgDeviceAppManagementManagedEBookInstallSummary" +"Devices.CorporateManagement","UpdateMgDeviceAppManagementManagedEBookUserStateSummary.g.cs","v1.0","Update-MgDeviceAppManagementManagedEBookUserStateSummary","PATCH","/deviceAppManagement/managedEBooks/{param}/userStateSummary/{param}","matched","Update-MgDeviceAppManagementManagedEBookUserStateSummary" +"Devices.CorporateManagement","UpdateMgDeviceAppManagementManagedEBookUserStateSummaryDeviceState.g.cs","v1.0","Update-MgDeviceAppManagementManagedEBookUserStateSummaryDeviceState","PATCH","/deviceAppManagement/managedEBooks/{param}/userStateSummary/{param}/deviceStates/{param}","matched","Update-MgDeviceAppManagementManagedEBookUserStateSummaryDeviceState" +"Devices.CorporateManagement","UpdateMgDeviceAppManagementMdmWindowsInformationProtectionPolicy.g.cs","v1.0","Update-MgDeviceAppManagementMdmWindowsInformationProtectionPolicy","PATCH","/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{param}","matched","Update-MgDeviceAppManagementMdmWindowsInformationProtectionPolicy" +"Devices.CorporateManagement","UpdateMgDeviceAppManagementMdmWindowsInformationProtectionPolicyAssignment.g.cs","v1.0","Update-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyAssignment","PATCH","/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{param}/assignments/{param}","matched","Update-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyAssignment" +"Devices.CorporateManagement","UpdateMgDeviceAppManagementMdmWindowsInformationProtectionPolicyExemptAppLockerFile.g.cs","v1.0","Update-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyExemptAppLockerFile","PATCH","/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{param}/exemptAppLockerFiles/{param}","matched","Update-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyExemptAppLockerFile" +"Devices.CorporateManagement","UpdateMgDeviceAppManagementMdmWindowsInformationProtectionPolicyProtectedAppLockerFile.g.cs","v1.0","Update-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyProtectedAppLockerFile","PATCH","/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{param}/protectedAppLockerFiles/{param}","matched","Update-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyProtectedAppLockerFile" +"Devices.CorporateManagement","UpdateMgDeviceAppManagementMobileApp.g.cs","v1.0","Update-MgDeviceAppManagementMobileApp","PATCH","/deviceAppManagement/mobileApps/{param}","matched","Update-MgDeviceAppManagementMobileApp" +"Devices.CorporateManagement","UpdateMgDeviceAppManagementMobileAppAsAndroidLobAppAssignment.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppAsAndroidLobAppAssignment","PATCH","","cast","" +"Devices.CorporateManagement","UpdateMgDeviceAppManagementMobileAppAsAndroidLobAppContentVersion.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersion","PATCH","","cast","" +"Devices.CorporateManagement","UpdateMgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionContainedApp.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionContainedApp","PATCH","","cast","" +"Devices.CorporateManagement","UpdateMgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionFile.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionFile","PATCH","","cast","" +"Devices.CorporateManagement","UpdateMgDeviceAppManagementMobileAppAsAndroidStoreAppAssignment.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppAsAndroidStoreAppAssignment","PATCH","","cast","" +"Devices.CorporateManagement","UpdateMgDeviceAppManagementMobileAppAsIosLobAppAssignment.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppAsIosLobAppAssignment","PATCH","","cast","" +"Devices.CorporateManagement","UpdateMgDeviceAppManagementMobileAppAsIosLobAppContentVersion.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppAsIosLobAppContentVersion","PATCH","","cast","" +"Devices.CorporateManagement","UpdateMgDeviceAppManagementMobileAppAsIosLobAppContentVersionContainedApp.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppAsIosLobAppContentVersionContainedApp","PATCH","","cast","" +"Devices.CorporateManagement","UpdateMgDeviceAppManagementMobileAppAsIosLobAppContentVersionFile.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppAsIosLobAppContentVersionFile","PATCH","","cast","" +"Devices.CorporateManagement","UpdateMgDeviceAppManagementMobileAppAsIosStoreAppAssignment.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppAsIosStoreAppAssignment","PATCH","","cast","" +"Devices.CorporateManagement","UpdateMgDeviceAppManagementMobileAppAsIosVppAppAssignment.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppAsIosVppAppAssignment","PATCH","","cast","" +"Devices.CorporateManagement","UpdateMgDeviceAppManagementMobileAppAsMacOSDmgAppAssignment.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppAsMacOSDmgAppAssignment","PATCH","","cast","" +"Devices.CorporateManagement","UpdateMgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersion.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersion","PATCH","","cast","" +"Devices.CorporateManagement","UpdateMgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionContainedApp.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionContainedApp","PATCH","","cast","" +"Devices.CorporateManagement","UpdateMgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionFile.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionFile","PATCH","","cast","" +"Devices.CorporateManagement","UpdateMgDeviceAppManagementMobileAppAsMacOSLobAppAssignment.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppAsMacOSLobAppAssignment","PATCH","","cast","" +"Devices.CorporateManagement","UpdateMgDeviceAppManagementMobileAppAsMacOSLobAppContentVersion.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersion","PATCH","","cast","" +"Devices.CorporateManagement","UpdateMgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionContainedApp.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionContainedApp","PATCH","","cast","" +"Devices.CorporateManagement","UpdateMgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionFile.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionFile","PATCH","","cast","" +"Devices.CorporateManagement","UpdateMgDeviceAppManagementMobileAppAsManagedAndroidLobAppAssignment.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppAssignment","PATCH","","cast","" +"Devices.CorporateManagement","UpdateMgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersion.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersion","PATCH","","cast","" +"Devices.CorporateManagement","UpdateMgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionContainedApp.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionContainedApp","PATCH","","cast","" +"Devices.CorporateManagement","UpdateMgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionFile.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionFile","PATCH","","cast","" +"Devices.CorporateManagement","UpdateMgDeviceAppManagementMobileAppAsManagedIOSLobAppAssignment.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppAsManagedIOSLobAppAssignment","PATCH","","cast","" +"Devices.CorporateManagement","UpdateMgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersion.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersion","PATCH","","cast","" +"Devices.CorporateManagement","UpdateMgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersionContainedApp.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersionContainedApp","PATCH","","cast","" +"Devices.CorporateManagement","UpdateMgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersionFile.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppAsManagedIOSLobAppContentVersionFile","PATCH","","cast","" +"Devices.CorporateManagement","UpdateMgDeviceAppManagementMobileAppAsManagedMobileLobAppAssignment.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppAsManagedMobileLobAppAssignment","PATCH","","cast","" +"Devices.CorporateManagement","UpdateMgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersion.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersion","PATCH","","cast","" +"Devices.CorporateManagement","UpdateMgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionContainedApp.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionContainedApp","PATCH","","cast","" +"Devices.CorporateManagement","UpdateMgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionFile.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionFile","PATCH","","cast","" +"Devices.CorporateManagement","UpdateMgDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppAssignment.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppAssignment","PATCH","","cast","" +"Devices.CorporateManagement","UpdateMgDeviceAppManagementMobileAppAssignment.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppAssignment","PATCH","/deviceAppManagement/mobileApps/{param}/assignments/{param}","matched","Update-MgDeviceAppManagementMobileAppAssignment" +"Devices.CorporateManagement","UpdateMgDeviceAppManagementMobileAppAsWin32LobAppAssignment.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppAsWin32LobAppAssignment","PATCH","","cast","" +"Devices.CorporateManagement","UpdateMgDeviceAppManagementMobileAppAsWin32LobAppContentVersion.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersion","PATCH","","cast","" +"Devices.CorporateManagement","UpdateMgDeviceAppManagementMobileAppAsWin32LobAppContentVersionContainedApp.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersionContainedApp","PATCH","","cast","" +"Devices.CorporateManagement","UpdateMgDeviceAppManagementMobileAppAsWin32LobAppContentVersionFile.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersionFile","PATCH","","cast","" +"Devices.CorporateManagement","UpdateMgDeviceAppManagementMobileAppAsWindowsAppXAssignment.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppAsWindowsAppXAssignment","PATCH","","cast","" +"Devices.CorporateManagement","UpdateMgDeviceAppManagementMobileAppAsWindowsAppXContentVersion.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersion","PATCH","","cast","" +"Devices.CorporateManagement","UpdateMgDeviceAppManagementMobileAppAsWindowsAppXContentVersionContainedApp.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersionContainedApp","PATCH","","cast","" +"Devices.CorporateManagement","UpdateMgDeviceAppManagementMobileAppAsWindowsAppXContentVersionFile.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersionFile","PATCH","","cast","" +"Devices.CorporateManagement","UpdateMgDeviceAppManagementMobileAppAsWindowsMobileMSIAssignment.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppAsWindowsMobileMSIAssignment","PATCH","","cast","" +"Devices.CorporateManagement","UpdateMgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersion.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersion","PATCH","","cast","" +"Devices.CorporateManagement","UpdateMgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersionContainedApp.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersionContainedApp","PATCH","","cast","" +"Devices.CorporateManagement","UpdateMgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersionFile.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppAsWindowsMobileMSIContentVersionFile","PATCH","","cast","" +"Devices.CorporateManagement","UpdateMgDeviceAppManagementMobileAppAsWindowsUniversalAppXAssignment.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXAssignment","PATCH","","cast","" +"Devices.CorporateManagement","UpdateMgDeviceAppManagementMobileAppAsWindowsUniversalAppXCommittedContainedApp.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXCommittedContainedApp","PATCH","","cast","" +"Devices.CorporateManagement","UpdateMgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersion.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersion","PATCH","","cast","" +"Devices.CorporateManagement","UpdateMgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionContainedApp.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionContainedApp","PATCH","","cast","" +"Devices.CorporateManagement","UpdateMgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionFile.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionFile","PATCH","","cast","" +"Devices.CorporateManagement","UpdateMgDeviceAppManagementMobileAppAsWindowsWebAppAssignment.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppAsWindowsWebAppAssignment","PATCH","","cast","" +"Devices.CorporateManagement","UpdateMgDeviceAppManagementMobileAppCategory.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppCategory","PATCH","/deviceAppManagement/mobileAppCategories/{param}","matched","Update-MgDeviceAppManagementMobileAppCategory" +"Devices.CorporateManagement","UpdateMgDeviceAppManagementMobileAppConfiguration.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppConfiguration","PATCH","/deviceAppManagement/mobileAppConfigurations/{param}","matched","Update-MgDeviceAppManagementMobileAppConfiguration" +"Devices.CorporateManagement","UpdateMgDeviceAppManagementMobileAppConfigurationAssignment.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppConfigurationAssignment","PATCH","/deviceAppManagement/mobileAppConfigurations/{param}/assignments/{param}","matched","Update-MgDeviceAppManagementMobileAppConfigurationAssignment" +"Devices.CorporateManagement","UpdateMgDeviceAppManagementMobileAppConfigurationDeviceStatus.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppConfigurationDeviceStatus","PATCH","/deviceAppManagement/mobileAppConfigurations/{param}/deviceStatuses/{param}","matched","Update-MgDeviceAppManagementMobileAppConfigurationDeviceStatus" +"Devices.CorporateManagement","UpdateMgDeviceAppManagementMobileAppConfigurationDeviceStatusSummary.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppConfigurationDeviceStatusSummary","PATCH","/deviceAppManagement/mobileAppConfigurations/{param}/deviceStatusSummary","matched","Update-MgDeviceAppManagementMobileAppConfigurationDeviceStatusSummary" +"Devices.CorporateManagement","UpdateMgDeviceAppManagementMobileAppConfigurationUserStatus.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppConfigurationUserStatus","PATCH","/deviceAppManagement/mobileAppConfigurations/{param}/userStatuses/{param}","matched","Update-MgDeviceAppManagementMobileAppConfigurationUserStatus" +"Devices.CorporateManagement","UpdateMgDeviceAppManagementMobileAppConfigurationUserStatusSummary.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppConfigurationUserStatusSummary","PATCH","/deviceAppManagement/mobileAppConfigurations/{param}/userStatusSummary","matched","Update-MgDeviceAppManagementMobileAppConfigurationUserStatusSummary" +"Devices.CorporateManagement","UpdateMgDeviceAppManagementMobileAppRelationship.g.cs","v1.0","Update-MgDeviceAppManagementMobileAppRelationship","PATCH","/deviceAppManagement/mobileAppRelationships/{param}","mismatch","Update-MgDeviceAppManagementMultipleMobileAppRelationship" +"Devices.CorporateManagement","UpdateMgDeviceAppManagementTargetedManagedAppConfiguration.g.cs","v1.0","Update-MgDeviceAppManagementTargetedManagedAppConfiguration","PATCH","/deviceAppManagement/targetedManagedAppConfigurations/{param}","matched","Update-MgDeviceAppManagementTargetedManagedAppConfiguration" +"Devices.CorporateManagement","UpdateMgDeviceAppManagementTargetedManagedAppConfigurationApp.g.cs","v1.0","Update-MgDeviceAppManagementTargetedManagedAppConfigurationApp","PATCH","/deviceAppManagement/targetedManagedAppConfigurations/{param}/apps/{param}","matched","Update-MgDeviceAppManagementTargetedManagedAppConfigurationApp" +"Devices.CorporateManagement","UpdateMgDeviceAppManagementTargetedManagedAppConfigurationAssignment.g.cs","v1.0","Update-MgDeviceAppManagementTargetedManagedAppConfigurationAssignment","PATCH","/deviceAppManagement/targetedManagedAppConfigurations/{param}/assignments/{param}","matched","Update-MgDeviceAppManagementTargetedManagedAppConfigurationAssignment" +"Devices.CorporateManagement","UpdateMgDeviceAppManagementTargetedManagedAppConfigurationDeploymentSummary.g.cs","v1.0","Update-MgDeviceAppManagementTargetedManagedAppConfigurationDeploymentSummary","PATCH","/deviceAppManagement/targetedManagedAppConfigurations/{param}/deploymentSummary","matched","Update-MgDeviceAppManagementTargetedManagedAppConfigurationDeploymentSummary" +"Devices.CorporateManagement","UpdateMgDeviceAppManagementVppToken.g.cs","v1.0","Update-MgDeviceAppManagementVppToken","PATCH","/deviceAppManagement/vppTokens/{param}","matched","Update-MgDeviceAppManagementVppToken" +"Devices.CorporateManagement","UpdateMgDeviceAppManagementWindowsInformationProtectionPolicy.g.cs","v1.0","Update-MgDeviceAppManagementWindowsInformationProtectionPolicy","PATCH","/deviceAppManagement/windowsInformationProtectionPolicies/{param}","matched","Update-MgDeviceAppManagementWindowsInformationProtectionPolicy" +"Devices.CorporateManagement","UpdateMgDeviceAppManagementWindowsInformationProtectionPolicyAssignment.g.cs","v1.0","Update-MgDeviceAppManagementWindowsInformationProtectionPolicyAssignment","PATCH","/deviceAppManagement/windowsInformationProtectionPolicies/{param}/assignments/{param}","matched","Update-MgDeviceAppManagementWindowsInformationProtectionPolicyAssignment" +"Devices.CorporateManagement","UpdateMgDeviceAppManagementWindowsInformationProtectionPolicyExemptAppLockerFile.g.cs","v1.0","Update-MgDeviceAppManagementWindowsInformationProtectionPolicyExemptAppLockerFile","PATCH","/deviceAppManagement/windowsInformationProtectionPolicies/{param}/exemptAppLockerFiles/{param}","matched","Update-MgDeviceAppManagementWindowsInformationProtectionPolicyExemptAppLockerFile" +"Devices.CorporateManagement","UpdateMgDeviceAppManagementWindowsInformationProtectionPolicyProtectedAppLockerFile.g.cs","v1.0","Update-MgDeviceAppManagementWindowsInformationProtectionPolicyProtectedAppLockerFile","PATCH","/deviceAppManagement/windowsInformationProtectionPolicies/{param}/protectedAppLockerFiles/{param}","matched","Update-MgDeviceAppManagementWindowsInformationProtectionPolicyProtectedAppLockerFile" +"Devices.CorporateManagement","UpdateMgUserDeviceManagementTroubleshootingEvent.g.cs","v1.0","Update-MgUserDeviceManagementTroubleshootingEvent","PATCH","/users/{param}/deviceManagementTroubleshootingEvents/{param}","matched","Update-MgUserDeviceManagementTroubleshootingEvent" +"Devices.CorporateManagement","UpdateMgUserManagedDevice.g.cs","v1.0","Update-MgUserManagedDevice","PATCH","/users/{param}/managedDevices/{param}","matched","Update-MgUserManagedDevice" +"Devices.CorporateManagement","UpdateMgUserManagedDeviceCategory.g.cs","v1.0","Update-MgUserManagedDeviceCategory","PATCH","/users/{param}/managedDevices/{param}/deviceCategory","matched","Update-MgUserManagedDeviceCategory" +"Devices.CorporateManagement","UpdateMgUserManagedDeviceCompliancePolicyState.g.cs","v1.0","Update-MgUserManagedDeviceCompliancePolicyState","PATCH","/users/{param}/managedDevices/{param}/deviceCompliancePolicyStates/{param}","matched","Update-MgUserManagedDeviceCompliancePolicyState" +"Devices.CorporateManagement","UpdateMgUserManagedDeviceConfigurationState.g.cs","v1.0","Update-MgUserManagedDeviceConfigurationState","PATCH","/users/{param}/managedDevices/{param}/deviceConfigurationStates/{param}","matched","Update-MgUserManagedDeviceConfigurationState" +"Devices.CorporateManagement","UpdateMgUserManagedDeviceLogCollectionRequest.g.cs","v1.0","Update-MgUserManagedDeviceLogCollectionRequest","PATCH","/users/{param}/managedDevices/{param}/logCollectionRequests/{param}","mismatch","Update-MgUserManagedDeviceLogCollectionResponse" +"Devices.CorporateManagement","UpdateMgUserManagedDeviceWindowsProtectionState.g.cs","v1.0","Update-MgUserManagedDeviceWindowsProtectionState","PATCH","/users/{param}/managedDevices/{param}/windowsProtectionState","matched","Update-MgUserManagedDeviceWindowsProtectionState" +"Devices.CorporateManagement","UpdateMgUserManagedDeviceWindowsProtectionStateDetectedMalwareState.g.cs","v1.0","Update-MgUserManagedDeviceWindowsProtectionStateDetectedMalwareState","PATCH","/users/{param}/managedDevices/{param}/windowsProtectionState/detectedMalwareState/{param}","matched","Update-MgUserManagedDeviceWindowsProtectionStateDetectedMalwareState" +"Devices.ServiceAnnouncement","GetMgAdminServiceAnnouncement.g.cs","v1.0","Get-MgAdminServiceAnnouncement","GET","/admin/serviceAnnouncement","no-oracle","" +"Devices.ServiceAnnouncement","GetMgAdminServiceAnnouncementHealthOverview_Get.g.cs","v1.0","Get-MgAdminServiceAnnouncementHealthOverview","GET","/admin/serviceAnnouncement/healthOverviews/{param}","mismatch","Get-MgServiceAnnouncementHealthOverview" +"Devices.ServiceAnnouncement","GetMgAdminServiceAnnouncementHealthOverview_List.g.cs","v1.0","Get-MgAdminServiceAnnouncementHealthOverview","GET","/admin/serviceAnnouncement/healthOverviews","mismatch","Get-MgServiceAnnouncementHealthOverview" +"Devices.ServiceAnnouncement","GetMgAdminServiceAnnouncementHealthOverview.g.cs","v1.0","Get-MgAdminServiceAnnouncementHealthOverview","","","dispatcher","" +"Devices.ServiceAnnouncement","GetMgAdminServiceAnnouncementHealthOverviewCount.g.cs","v1.0","Get-MgAdminServiceAnnouncementHealthOverviewCount","GET","/admin/serviceAnnouncement/healthOverviews/$count","mismatch","Get-MgServiceAnnouncementHealthOverviewCount" +"Devices.ServiceAnnouncement","GetMgAdminServiceAnnouncementHealthOverviewIssue_Get.g.cs","v1.0","Get-MgAdminServiceAnnouncementHealthOverviewIssue","GET","/admin/serviceAnnouncement/healthOverviews/{param}/issues/{param}","mismatch","Get-MgServiceAnnouncementHealthOverviewIssue" +"Devices.ServiceAnnouncement","GetMgAdminServiceAnnouncementHealthOverviewIssue_List.g.cs","v1.0","Get-MgAdminServiceAnnouncementHealthOverviewIssue","GET","/admin/serviceAnnouncement/healthOverviews/{param}/issues","mismatch","Get-MgServiceAnnouncementHealthOverviewIssue" +"Devices.ServiceAnnouncement","GetMgAdminServiceAnnouncementHealthOverviewIssue.g.cs","v1.0","Get-MgAdminServiceAnnouncementHealthOverviewIssue","","","dispatcher","" +"Devices.ServiceAnnouncement","GetMgAdminServiceAnnouncementHealthOverviewIssueCount.g.cs","v1.0","Get-MgAdminServiceAnnouncementHealthOverviewIssueCount","GET","/admin/serviceAnnouncement/healthOverviews/{param}/issues/$count","mismatch","Get-MgServiceAnnouncementHealthOverviewIssueCount" +"Devices.ServiceAnnouncement","GetMgAdminServiceAnnouncementHealthOverviewIssueIncidentReport.g.cs","v1.0","Get-MgAdminServiceAnnouncementHealthOverviewIssueIncidentReport","GET","/admin/serviceAnnouncement/healthOverviews/{param}/issues/{param}/incidentReport","mismatch","Invoke-MgReportServiceAnnouncementHealthOverviewIssueIncident" +"Devices.ServiceAnnouncement","GetMgAdminServiceAnnouncementIssue_Get.g.cs","v1.0","Get-MgAdminServiceAnnouncementIssue","GET","/admin/serviceAnnouncement/issues/{param}","mismatch","Get-MgServiceAnnouncementIssue" +"Devices.ServiceAnnouncement","GetMgAdminServiceAnnouncementIssue_List.g.cs","v1.0","Get-MgAdminServiceAnnouncementIssue","GET","/admin/serviceAnnouncement/issues","mismatch","Get-MgServiceAnnouncementIssue" +"Devices.ServiceAnnouncement","GetMgAdminServiceAnnouncementIssue.g.cs","v1.0","Get-MgAdminServiceAnnouncementIssue","","","dispatcher","" +"Devices.ServiceAnnouncement","GetMgAdminServiceAnnouncementIssueCount.g.cs","v1.0","Get-MgAdminServiceAnnouncementIssueCount","GET","/admin/serviceAnnouncement/issues/$count","mismatch","Get-MgServiceAnnouncementIssueCount" +"Devices.ServiceAnnouncement","GetMgAdminServiceAnnouncementIssueIncidentReport.g.cs","v1.0","Get-MgAdminServiceAnnouncementIssueIncidentReport","GET","/admin/serviceAnnouncement/issues/{param}/incidentReport","mismatch","Invoke-MgReportServiceAnnouncementIssueIncident" +"Devices.ServiceAnnouncement","GetMgAdminServiceAnnouncementMessage_Get.g.cs","v1.0","Get-MgAdminServiceAnnouncementMessage","GET","/admin/serviceAnnouncement/messages/{param}","mismatch","Get-MgServiceAnnouncementMessage" +"Devices.ServiceAnnouncement","GetMgAdminServiceAnnouncementMessage_List.g.cs","v1.0","Get-MgAdminServiceAnnouncementMessage","GET","/admin/serviceAnnouncement/messages","mismatch","Get-MgServiceAnnouncementMessage" +"Devices.ServiceAnnouncement","GetMgAdminServiceAnnouncementMessage.g.cs","v1.0","Get-MgAdminServiceAnnouncementMessage","","","dispatcher","" +"Devices.ServiceAnnouncement","GetMgAdminServiceAnnouncementMessageAttachment_Get.g.cs","v1.0","Get-MgAdminServiceAnnouncementMessageAttachment","GET","/admin/serviceAnnouncement/messages/{param}/attachments/{param}","mismatch","Get-MgServiceAnnouncementMessageAttachment" +"Devices.ServiceAnnouncement","GetMgAdminServiceAnnouncementMessageAttachment_List.g.cs","v1.0","Get-MgAdminServiceAnnouncementMessageAttachment","GET","/admin/serviceAnnouncement/messages/{param}/attachments","mismatch","Get-MgServiceAnnouncementMessageAttachment" +"Devices.ServiceAnnouncement","GetMgAdminServiceAnnouncementMessageAttachment.g.cs","v1.0","Get-MgAdminServiceAnnouncementMessageAttachment","","","dispatcher","" +"Devices.ServiceAnnouncement","GetMgAdminServiceAnnouncementMessageAttachmentCount.g.cs","v1.0","Get-MgAdminServiceAnnouncementMessageAttachmentCount","GET","/admin/serviceAnnouncement/messages/{param}/attachments/$count","mismatch","Get-MgServiceAnnouncementMessageAttachmentCount" +"Devices.ServiceAnnouncement","GetMgAdminServiceAnnouncementMessageCount.g.cs","v1.0","Get-MgAdminServiceAnnouncementMessageCount","GET","/admin/serviceAnnouncement/messages/$count","mismatch","Get-MgServiceAnnouncementMessageCount" +"Devices.ServiceAnnouncement","InvokeMgAdminServiceAnnouncementMessageArchive.g.cs","v1.0","Invoke-MgAdminServiceAnnouncementMessageArchive","POST","/admin/serviceAnnouncement/messages/archive","mismatch","Invoke-MgArchiveServiceAnnouncementMessage" +"Devices.ServiceAnnouncement","InvokeMgAdminServiceAnnouncementMessageFavorite.g.cs","v1.0","Invoke-MgAdminServiceAnnouncementMessageFavorite","POST","/admin/serviceAnnouncement/messages/favorite","mismatch","Invoke-MgFavoriteServiceAnnouncementMessage" +"Devices.ServiceAnnouncement","InvokeMgAdminServiceAnnouncementMessageMarkRead.g.cs","v1.0","Invoke-MgAdminServiceAnnouncementMessageMarkRead","POST","/admin/serviceAnnouncement/messages/markRead","mismatch","Invoke-MgMarkServiceAnnouncementMessageRead" +"Devices.ServiceAnnouncement","InvokeMgAdminServiceAnnouncementMessageMarkUnread.g.cs","v1.0","Invoke-MgAdminServiceAnnouncementMessageMarkUnread","POST","/admin/serviceAnnouncement/messages/markUnread","mismatch","Invoke-MgMarkServiceAnnouncementMessageUnread" +"Devices.ServiceAnnouncement","InvokeMgAdminServiceAnnouncementMessageUnarchive.g.cs","v1.0","Invoke-MgAdminServiceAnnouncementMessageUnarchive","POST","/admin/serviceAnnouncement/messages/unarchive","mismatch","Invoke-MgUnarchiveServiceAnnouncementMessage" +"Devices.ServiceAnnouncement","InvokeMgAdminServiceAnnouncementMessageUnfavorite.g.cs","v1.0","Invoke-MgAdminServiceAnnouncementMessageUnfavorite","POST","/admin/serviceAnnouncement/messages/unfavorite","mismatch","Invoke-MgUnfavoriteServiceAnnouncementMessage" +"Devices.ServiceAnnouncement","NewMgAdminServiceAnnouncementHealthOverview.g.cs","v1.0","New-MgAdminServiceAnnouncementHealthOverview","POST","/admin/serviceAnnouncement/healthOverviews","no-oracle","" +"Devices.ServiceAnnouncement","NewMgAdminServiceAnnouncementHealthOverviewIssue.g.cs","v1.0","New-MgAdminServiceAnnouncementHealthOverviewIssue","POST","/admin/serviceAnnouncement/healthOverviews/{param}/issues","no-oracle","" +"Devices.ServiceAnnouncement","NewMgAdminServiceAnnouncementIssue.g.cs","v1.0","New-MgAdminServiceAnnouncementIssue","POST","/admin/serviceAnnouncement/issues","no-oracle","" +"Devices.ServiceAnnouncement","NewMgAdminServiceAnnouncementMessage.g.cs","v1.0","New-MgAdminServiceAnnouncementMessage","POST","/admin/serviceAnnouncement/messages","no-oracle","" +"Devices.ServiceAnnouncement","NewMgAdminServiceAnnouncementMessageAttachment.g.cs","v1.0","New-MgAdminServiceAnnouncementMessageAttachment","POST","/admin/serviceAnnouncement/messages/{param}/attachments","no-oracle","" +"Devices.ServiceAnnouncement","RemoveMgAdminServiceAnnouncement.g.cs","v1.0","Remove-MgAdminServiceAnnouncement","DELETE","/admin/serviceAnnouncement","no-oracle","" +"Devices.ServiceAnnouncement","RemoveMgAdminServiceAnnouncementHealthOverview.g.cs","v1.0","Remove-MgAdminServiceAnnouncementHealthOverview","DELETE","/admin/serviceAnnouncement/healthOverviews/{param}","no-oracle","" +"Devices.ServiceAnnouncement","RemoveMgAdminServiceAnnouncementHealthOverviewIssue.g.cs","v1.0","Remove-MgAdminServiceAnnouncementHealthOverviewIssue","DELETE","/admin/serviceAnnouncement/healthOverviews/{param}/issues/{param}","no-oracle","" +"Devices.ServiceAnnouncement","RemoveMgAdminServiceAnnouncementIssue.g.cs","v1.0","Remove-MgAdminServiceAnnouncementIssue","DELETE","/admin/serviceAnnouncement/issues/{param}","no-oracle","" +"Devices.ServiceAnnouncement","RemoveMgAdminServiceAnnouncementMessage.g.cs","v1.0","Remove-MgAdminServiceAnnouncementMessage","DELETE","/admin/serviceAnnouncement/messages/{param}","no-oracle","" +"Devices.ServiceAnnouncement","RemoveMgAdminServiceAnnouncementMessageAttachment.g.cs","v1.0","Remove-MgAdminServiceAnnouncementMessageAttachment","DELETE","/admin/serviceAnnouncement/messages/{param}/attachments/{param}","no-oracle","" +"Devices.ServiceAnnouncement","RemoveMgAdminServiceAnnouncementMessageAttachmentArchive.g.cs","v1.0","Remove-MgAdminServiceAnnouncementMessageAttachmentArchive","DELETE","/admin/serviceAnnouncement/messages/{param}/attachmentsArchive","no-oracle","" +"Devices.ServiceAnnouncement","RemoveMgAdminServiceAnnouncementMessageAttachmentContent.g.cs","v1.0","Remove-MgAdminServiceAnnouncementMessageAttachmentContent","DELETE","/admin/serviceAnnouncement/messages/{param}/attachments/{param}/$value","no-oracle","" +"Devices.ServiceAnnouncement","SetMgAdminServiceAnnouncementMessageAttachmentContent.g.cs","v1.0","Set-MgAdminServiceAnnouncementMessageAttachmentContent","PUT","/admin/serviceAnnouncement/messages/{param}/attachments/{param}/$value","no-oracle","" +"Devices.ServiceAnnouncement","UpdateMgAdminServiceAnnouncement.g.cs","v1.0","Update-MgAdminServiceAnnouncement","PATCH","/admin/serviceAnnouncement","no-oracle","" +"Devices.ServiceAnnouncement","UpdateMgAdminServiceAnnouncementHealthOverview.g.cs","v1.0","Update-MgAdminServiceAnnouncementHealthOverview","PATCH","/admin/serviceAnnouncement/healthOverviews/{param}","no-oracle","" +"Devices.ServiceAnnouncement","UpdateMgAdminServiceAnnouncementHealthOverviewIssue.g.cs","v1.0","Update-MgAdminServiceAnnouncementHealthOverviewIssue","PATCH","/admin/serviceAnnouncement/healthOverviews/{param}/issues/{param}","no-oracle","" +"Devices.ServiceAnnouncement","UpdateMgAdminServiceAnnouncementIssue.g.cs","v1.0","Update-MgAdminServiceAnnouncementIssue","PATCH","/admin/serviceAnnouncement/issues/{param}","no-oracle","" +"Devices.ServiceAnnouncement","UpdateMgAdminServiceAnnouncementMessage.g.cs","v1.0","Update-MgAdminServiceAnnouncementMessage","PATCH","/admin/serviceAnnouncement/messages/{param}","no-oracle","" +"Devices.ServiceAnnouncement","UpdateMgAdminServiceAnnouncementMessageAttachment.g.cs","v1.0","Update-MgAdminServiceAnnouncementMessageAttachment","PATCH","/admin/serviceAnnouncement/messages/{param}/attachments/{param}","no-oracle","" +"DirectoryObjects","GetMgDirectoryObject_Get.g.cs","v1.0","Get-MgDirectoryObject","GET","/directoryObjects/{param}","matched","Get-MgDirectoryObject" +"DirectoryObjects","GetMgDirectoryObject_List.g.cs","v1.0","Get-MgDirectoryObject","GET","/directoryObjects","matched","Get-MgDirectoryObject" +"DirectoryObjects","GetMgDirectoryObject.g.cs","v1.0","Get-MgDirectoryObject","","","dispatcher","" +"DirectoryObjects","GetMgDirectoryObjectCount.g.cs","v1.0","Get-MgDirectoryObjectCount","GET","/directoryObjects/$count","matched","Get-MgDirectoryObjectCount" +"DirectoryObjects","GetMgDirectoryObjectDelta.g.cs","v1.0","Get-MgDirectoryObjectDelta","GET","/directoryObjects/delta","matched","Get-MgDirectoryObjectDelta" +"DirectoryObjects","GetMgDirectoryPublicKeyInfrastructure.g.cs","v1.0","Get-MgDirectoryPublicKeyInfrastructure","GET","/directory/publicKeyInfrastructure","matched","Get-MgDirectoryPublicKeyInfrastructure" +"DirectoryObjects","GetMgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfiguration_Get.g.cs","v1.0","Get-MgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfiguration","GET","/directory/publicKeyInfrastructure/certificateBasedAuthConfigurations/{param}","matched","Get-MgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfiguration" +"DirectoryObjects","GetMgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfiguration_List.g.cs","v1.0","Get-MgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfiguration","GET","/directory/publicKeyInfrastructure/certificateBasedAuthConfigurations","matched","Get-MgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfiguration" +"DirectoryObjects","GetMgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfiguration.g.cs","v1.0","Get-MgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfiguration","","","dispatcher","" +"DirectoryObjects","GetMgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfigurationCertificateAuthority_Get.g.cs","v1.0","Get-MgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfigurationCertificateAuthority","GET","/directory/publicKeyInfrastructure/certificateBasedAuthConfigurations/{param}/certificateAuthorities/{param}","matched","Get-MgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfigurationCertificateAuthority" +"DirectoryObjects","GetMgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfigurationCertificateAuthority_List.g.cs","v1.0","Get-MgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfigurationCertificateAuthority","GET","/directory/publicKeyInfrastructure/certificateBasedAuthConfigurations/{param}/certificateAuthorities","matched","Get-MgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfigurationCertificateAuthority" +"DirectoryObjects","GetMgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfigurationCertificateAuthority.g.cs","v1.0","Get-MgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfigurationCertificateAuthority","","","dispatcher","" +"DirectoryObjects","GetMgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfigurationCertificateAuthorityCount.g.cs","v1.0","Get-MgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfigurationCertificateAuthorityCount","GET","/directory/publicKeyInfrastructure/certificateBasedAuthConfigurations/{param}/certificateAuthorities/$count","matched","Get-MgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfigurationCertificateAuthorityCount" +"DirectoryObjects","GetMgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfigurationCount.g.cs","v1.0","Get-MgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfigurationCount","GET","/directory/publicKeyInfrastructure/certificateBasedAuthConfigurations/$count","matched","Get-MgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfigurationCount" +"DirectoryObjects","InvokeMgDirectoryObjectCheckMemberGroups.g.cs","v1.0","Invoke-MgDirectoryObjectCheckMemberGroups","POST","/directoryObjects/{param}/checkMemberGroups","mismatch","Confirm-MgDirectoryObjectMemberGroup" +"DirectoryObjects","InvokeMgDirectoryObjectCheckMemberObjects.g.cs","v1.0","Invoke-MgDirectoryObjectCheckMemberObjects","POST","/directoryObjects/{param}/checkMemberObjects","mismatch","Confirm-MgDirectoryObjectMemberObject" +"DirectoryObjects","InvokeMgDirectoryObjectGetAvailableExtensionProperties.g.cs","v1.0","Invoke-MgDirectoryObjectGetAvailableExtensionProperties","POST","/directoryObjects/getAvailableExtensionProperties","mismatch","Get-MgDirectoryObjectAvailableExtensionProperty" +"DirectoryObjects","InvokeMgDirectoryObjectGetByIds.g.cs","v1.0","Invoke-MgDirectoryObjectGetByIds","POST","/directoryObjects/getByIds","mismatch","Get-MgDirectoryObjectById" +"DirectoryObjects","InvokeMgDirectoryObjectGetMemberGroups.g.cs","v1.0","Invoke-MgDirectoryObjectGetMemberGroups","POST","/directoryObjects/{param}/getMemberGroups","mismatch","Get-MgDirectoryObjectMemberGroup" +"DirectoryObjects","InvokeMgDirectoryObjectGetMemberObjects.g.cs","v1.0","Invoke-MgDirectoryObjectGetMemberObjects","POST","/directoryObjects/{param}/getMemberObjects","mismatch","Get-MgDirectoryObjectMemberObject" +"DirectoryObjects","InvokeMgDirectoryObjectRestore.g.cs","v1.0","Invoke-MgDirectoryObjectRestore","POST","/directoryObjects/{param}/restore","no-oracle","" +"DirectoryObjects","InvokeMgDirectoryObjectValidateProperties.g.cs","v1.0","Invoke-MgDirectoryObjectValidateProperties","POST","/directoryObjects/validateProperties","mismatch","Test-MgDirectoryObjectProperty" +"DirectoryObjects","InvokeMgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfigurationUpload.g.cs","v1.0","Invoke-MgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfigurationUpload","POST","/directory/publicKeyInfrastructure/certificateBasedAuthConfigurations/{param}/upload","mismatch","Invoke-MgUploadDirectoryPublicKeyInfrastructureCertificateBasedAuthConfiguration" +"DirectoryObjects","NewMgDirectoryObject.g.cs","v1.0","New-MgDirectoryObject","POST","/directoryObjects","matched","New-MgDirectoryObject" +"DirectoryObjects","NewMgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfiguration.g.cs","v1.0","New-MgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfiguration","POST","/directory/publicKeyInfrastructure/certificateBasedAuthConfigurations","matched","New-MgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfiguration" +"DirectoryObjects","NewMgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfigurationCertificateAuthority.g.cs","v1.0","New-MgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfigurationCertificateAuthority","POST","/directory/publicKeyInfrastructure/certificateBasedAuthConfigurations/{param}/certificateAuthorities","matched","New-MgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfigurationCertificateAuthority" +"DirectoryObjects","RemoveMgDirectoryObject.g.cs","v1.0","Remove-MgDirectoryObject","DELETE","/directoryObjects/{param}","matched","Remove-MgDirectoryObject" +"DirectoryObjects","RemoveMgDirectoryPublicKeyInfrastructure.g.cs","v1.0","Remove-MgDirectoryPublicKeyInfrastructure","DELETE","/directory/publicKeyInfrastructure","matched","Remove-MgDirectoryPublicKeyInfrastructure" +"DirectoryObjects","RemoveMgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfiguration.g.cs","v1.0","Remove-MgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfiguration","DELETE","/directory/publicKeyInfrastructure/certificateBasedAuthConfigurations/{param}","matched","Remove-MgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfiguration" +"DirectoryObjects","RemoveMgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfigurationCertificateAuthority.g.cs","v1.0","Remove-MgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfigurationCertificateAuthority","DELETE","/directory/publicKeyInfrastructure/certificateBasedAuthConfigurations/{param}/certificateAuthorities/{param}","matched","Remove-MgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfigurationCertificateAuthority" +"DirectoryObjects","UpdateMgDirectoryObject.g.cs","v1.0","Update-MgDirectoryObject","PATCH","/directoryObjects/{param}","matched","Update-MgDirectoryObject" +"DirectoryObjects","UpdateMgDirectoryPublicKeyInfrastructure.g.cs","v1.0","Update-MgDirectoryPublicKeyInfrastructure","PATCH","/directory/publicKeyInfrastructure","matched","Update-MgDirectoryPublicKeyInfrastructure" +"DirectoryObjects","UpdateMgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfiguration.g.cs","v1.0","Update-MgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfiguration","PATCH","/directory/publicKeyInfrastructure/certificateBasedAuthConfigurations/{param}","matched","Update-MgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfiguration" +"DirectoryObjects","UpdateMgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfigurationCertificateAuthority.g.cs","v1.0","Update-MgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfigurationCertificateAuthority","PATCH","/directory/publicKeyInfrastructure/certificateBasedAuthConfigurations/{param}/certificateAuthorities/{param}","matched","Update-MgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfigurationCertificateAuthority" +"Education","GetMgEducation.g.cs","v1.0","Get-MgEducation","GET","/education","matched","Get-MgEducationRoot" +"Education","GetMgEducationClass_Get.g.cs","v1.0","Get-MgEducationClass","GET","/education/classes/{param}","matched","Get-MgEducationClass" +"Education","GetMgEducationClass_List.g.cs","v1.0","Get-MgEducationClass","GET","/education/classes","matched","Get-MgEducationClass" +"Education","GetMgEducationClass.g.cs","v1.0","Get-MgEducationClass","","","dispatcher","" +"Education","GetMgEducationClassAssignment_Get.g.cs","v1.0","Get-MgEducationClassAssignment","GET","/education/classes/{param}/assignments/{param}","matched","Get-MgEducationClassAssignment" +"Education","GetMgEducationClassAssignment_List.g.cs","v1.0","Get-MgEducationClassAssignment","GET","/education/classes/{param}/assignments","matched","Get-MgEducationClassAssignment" +"Education","GetMgEducationClassAssignment.g.cs","v1.0","Get-MgEducationClassAssignment","","","dispatcher","" +"Education","GetMgEducationClassAssignmentCategory_Get.g.cs","v1.0","Get-MgEducationClassAssignmentCategory","GET","/education/classes/{param}/assignmentCategories/{param}","matched","Get-MgEducationClassAssignmentCategory" +"Education","GetMgEducationClassAssignmentCategory_List.g.cs","v1.0","Get-MgEducationClassAssignmentCategory","GET","/education/classes/{param}/assignmentCategories","matched","Get-MgEducationClassAssignmentCategory" +"Education","GetMgEducationClassAssignmentCategory.g.cs","v1.0","Get-MgEducationClassAssignmentCategory","","","dispatcher","" +"Education","GetMgEducationClassAssignmentCategoryByRef.g.cs","v1.0","Get-MgEducationClassAssignmentCategoryByRef","GET","/education/classes/{param}/assignments/{param}/categories/$ref","matched","Get-MgEducationClassAssignmentCategoryByRef" +"Education","GetMgEducationClassAssignmentCategoryCount.g.cs","v1.0","Get-MgEducationClassAssignmentCategoryCount","GET","/education/classes/{param}/assignmentCategories/$count","matched","Get-MgEducationClassAssignmentCategoryCount" +"Education","GetMgEducationClassAssignmentCategoryDelta.g.cs","v1.0","Get-MgEducationClassAssignmentCategoryDelta","GET","/education/classes/{param}/assignmentCategories/delta","matched","Get-MgEducationClassAssignmentCategoryDelta" +"Education","GetMgEducationClassAssignmentCount.g.cs","v1.0","Get-MgEducationClassAssignmentCount","GET","/education/classes/{param}/assignments/$count","matched","Get-MgEducationClassAssignmentCount" +"Education","GetMgEducationClassAssignmentDefault.g.cs","v1.0","Get-MgEducationClassAssignmentDefault","GET","/education/classes/{param}/assignmentDefaults","matched","Get-MgEducationClassAssignmentDefault" +"Education","GetMgEducationClassAssignmentDelta.g.cs","v1.0","Get-MgEducationClassAssignmentDelta","GET","/education/classes/{param}/assignments/delta","matched","Get-MgEducationClassAssignmentDelta" +"Education","GetMgEducationClassAssignmentGradingCategory.g.cs","v1.0","Get-MgEducationClassAssignmentGradingCategory","GET","/education/classes/{param}/assignments/{param}/gradingCategory","matched","Get-MgEducationClassAssignmentGradingCategory" +"Education","GetMgEducationClassAssignmentGradingScheme.g.cs","v1.0","Get-MgEducationClassAssignmentGradingScheme","GET","/education/classes/{param}/assignments/{param}/gradingScheme","matched","Get-MgEducationClassAssignmentGradingScheme" +"Education","GetMgEducationClassAssignmentResource_Get.g.cs","v1.0","Get-MgEducationClassAssignmentResource","GET","/education/classes/{param}/assignments/{param}/resources/{param}","matched","Get-MgEducationClassAssignmentResource" +"Education","GetMgEducationClassAssignmentResource_List.g.cs","v1.0","Get-MgEducationClassAssignmentResource","GET","/education/classes/{param}/assignments/{param}/resources","matched","Get-MgEducationClassAssignmentResource" +"Education","GetMgEducationClassAssignmentResource.g.cs","v1.0","Get-MgEducationClassAssignmentResource","","","dispatcher","" +"Education","GetMgEducationClassAssignmentResourceCount.g.cs","v1.0","Get-MgEducationClassAssignmentResourceCount","GET","/education/classes/{param}/assignments/{param}/resources/$count","matched","Get-MgEducationClassAssignmentResourceCount" +"Education","GetMgEducationClassAssignmentResourceDependentResource_Get.g.cs","v1.0","Get-MgEducationClassAssignmentResourceDependentResource","GET","/education/classes/{param}/assignments/{param}/resources/{param}/dependentResources/{param}","matched","Get-MgEducationClassAssignmentResourceDependentResource" +"Education","GetMgEducationClassAssignmentResourceDependentResource_List.g.cs","v1.0","Get-MgEducationClassAssignmentResourceDependentResource","GET","/education/classes/{param}/assignments/{param}/resources/{param}/dependentResources","matched","Get-MgEducationClassAssignmentResourceDependentResource" +"Education","GetMgEducationClassAssignmentResourceDependentResource.g.cs","v1.0","Get-MgEducationClassAssignmentResourceDependentResource","","","dispatcher","" +"Education","GetMgEducationClassAssignmentResourceDependentResourceCount.g.cs","v1.0","Get-MgEducationClassAssignmentResourceDependentResourceCount","GET","/education/classes/{param}/assignments/{param}/resources/{param}/dependentResources/$count","matched","Get-MgEducationClassAssignmentResourceDependentResourceCount" +"Education","GetMgEducationClassAssignmentRubric.g.cs","v1.0","Get-MgEducationClassAssignmentRubric","GET","/education/classes/{param}/assignments/{param}/rubric","matched","Get-MgEducationClassAssignmentRubric" +"Education","GetMgEducationClassAssignmentRubricByRef.g.cs","v1.0","Get-MgEducationClassAssignmentRubricByRef","GET","/education/classes/{param}/assignments/{param}/rubric/$ref","matched","Get-MgEducationClassAssignmentRubricByRef" +"Education","GetMgEducationClassAssignmentSetting.g.cs","v1.0","Get-MgEducationClassAssignmentSetting","GET","/education/classes/{param}/assignmentSettings","matched","Get-MgEducationClassAssignmentSetting" +"Education","GetMgEducationClassAssignmentSettingDefaultGradingScheme.g.cs","v1.0","Get-MgEducationClassAssignmentSettingDefaultGradingScheme","GET","/education/classes/{param}/assignmentSettings/defaultGradingScheme","matched","Get-MgEducationClassAssignmentSettingDefaultGradingScheme" +"Education","GetMgEducationClassAssignmentSettingGradingCategory_Get.g.cs","v1.0","Get-MgEducationClassAssignmentSettingGradingCategory","GET","/education/classes/{param}/assignmentSettings/gradingCategories/{param}","matched","Get-MgEducationClassAssignmentSettingGradingCategory" +"Education","GetMgEducationClassAssignmentSettingGradingCategory_List.g.cs","v1.0","Get-MgEducationClassAssignmentSettingGradingCategory","GET","/education/classes/{param}/assignmentSettings/gradingCategories","matched","Get-MgEducationClassAssignmentSettingGradingCategory" +"Education","GetMgEducationClassAssignmentSettingGradingCategory.g.cs","v1.0","Get-MgEducationClassAssignmentSettingGradingCategory","","","dispatcher","" +"Education","GetMgEducationClassAssignmentSettingGradingCategoryCount.g.cs","v1.0","Get-MgEducationClassAssignmentSettingGradingCategoryCount","GET","/education/classes/{param}/assignmentSettings/gradingCategories/$count","matched","Get-MgEducationClassAssignmentSettingGradingCategoryCount" +"Education","GetMgEducationClassAssignmentSettingGradingScheme_Get.g.cs","v1.0","Get-MgEducationClassAssignmentSettingGradingScheme","GET","/education/classes/{param}/assignmentSettings/gradingSchemes/{param}","matched","Get-MgEducationClassAssignmentSettingGradingScheme" +"Education","GetMgEducationClassAssignmentSettingGradingScheme_List.g.cs","v1.0","Get-MgEducationClassAssignmentSettingGradingScheme","GET","/education/classes/{param}/assignmentSettings/gradingSchemes","matched","Get-MgEducationClassAssignmentSettingGradingScheme" +"Education","GetMgEducationClassAssignmentSettingGradingScheme.g.cs","v1.0","Get-MgEducationClassAssignmentSettingGradingScheme","","","dispatcher","" +"Education","GetMgEducationClassAssignmentSettingGradingSchemeCount.g.cs","v1.0","Get-MgEducationClassAssignmentSettingGradingSchemeCount","GET","/education/classes/{param}/assignmentSettings/gradingSchemes/$count","matched","Get-MgEducationClassAssignmentSettingGradingSchemeCount" +"Education","GetMgEducationClassAssignmentSubmission_Get.g.cs","v1.0","Get-MgEducationClassAssignmentSubmission","GET","/education/classes/{param}/assignments/{param}/submissions/{param}","matched","Get-MgEducationClassAssignmentSubmission" +"Education","GetMgEducationClassAssignmentSubmission_List.g.cs","v1.0","Get-MgEducationClassAssignmentSubmission","GET","/education/classes/{param}/assignments/{param}/submissions","matched","Get-MgEducationClassAssignmentSubmission" +"Education","GetMgEducationClassAssignmentSubmission.g.cs","v1.0","Get-MgEducationClassAssignmentSubmission","","","dispatcher","" +"Education","GetMgEducationClassAssignmentSubmissionCount.g.cs","v1.0","Get-MgEducationClassAssignmentSubmissionCount","GET","/education/classes/{param}/assignments/{param}/submissions/$count","matched","Get-MgEducationClassAssignmentSubmissionCount" +"Education","GetMgEducationClassAssignmentSubmissionOutcome_Get.g.cs","v1.0","Get-MgEducationClassAssignmentSubmissionOutcome","GET","/education/classes/{param}/assignments/{param}/submissions/{param}/outcomes/{param}","matched","Get-MgEducationClassAssignmentSubmissionOutcome" +"Education","GetMgEducationClassAssignmentSubmissionOutcome_List.g.cs","v1.0","Get-MgEducationClassAssignmentSubmissionOutcome","GET","/education/classes/{param}/assignments/{param}/submissions/{param}/outcomes","matched","Get-MgEducationClassAssignmentSubmissionOutcome" +"Education","GetMgEducationClassAssignmentSubmissionOutcome.g.cs","v1.0","Get-MgEducationClassAssignmentSubmissionOutcome","","","dispatcher","" +"Education","GetMgEducationClassAssignmentSubmissionOutcomeCount.g.cs","v1.0","Get-MgEducationClassAssignmentSubmissionOutcomeCount","GET","/education/classes/{param}/assignments/{param}/submissions/{param}/outcomes/$count","matched","Get-MgEducationClassAssignmentSubmissionOutcomeCount" +"Education","GetMgEducationClassAssignmentSubmissionResource_Get.g.cs","v1.0","Get-MgEducationClassAssignmentSubmissionResource","GET","/education/classes/{param}/assignments/{param}/submissions/{param}/resources/{param}","matched","Get-MgEducationClassAssignmentSubmissionResource" +"Education","GetMgEducationClassAssignmentSubmissionResource_List.g.cs","v1.0","Get-MgEducationClassAssignmentSubmissionResource","GET","/education/classes/{param}/assignments/{param}/submissions/{param}/resources","matched","Get-MgEducationClassAssignmentSubmissionResource" +"Education","GetMgEducationClassAssignmentSubmissionResource.g.cs","v1.0","Get-MgEducationClassAssignmentSubmissionResource","","","dispatcher","" +"Education","GetMgEducationClassAssignmentSubmissionResourceCount.g.cs","v1.0","Get-MgEducationClassAssignmentSubmissionResourceCount","GET","/education/classes/{param}/assignments/{param}/submissions/{param}/resources/$count","matched","Get-MgEducationClassAssignmentSubmissionResourceCount" +"Education","GetMgEducationClassAssignmentSubmissionResourceDependentResource_Get.g.cs","v1.0","Get-MgEducationClassAssignmentSubmissionResourceDependentResource","GET","/education/classes/{param}/assignments/{param}/submissions/{param}/resources/{param}/dependentResources/{param}","matched","Get-MgEducationClassAssignmentSubmissionResourceDependentResource" +"Education","GetMgEducationClassAssignmentSubmissionResourceDependentResource_List.g.cs","v1.0","Get-MgEducationClassAssignmentSubmissionResourceDependentResource","GET","/education/classes/{param}/assignments/{param}/submissions/{param}/resources/{param}/dependentResources","matched","Get-MgEducationClassAssignmentSubmissionResourceDependentResource" +"Education","GetMgEducationClassAssignmentSubmissionResourceDependentResource.g.cs","v1.0","Get-MgEducationClassAssignmentSubmissionResourceDependentResource","","","dispatcher","" +"Education","GetMgEducationClassAssignmentSubmissionResourceDependentResourceCount.g.cs","v1.0","Get-MgEducationClassAssignmentSubmissionResourceDependentResourceCount","GET","/education/classes/{param}/assignments/{param}/submissions/{param}/resources/{param}/dependentResources/$count","matched","Get-MgEducationClassAssignmentSubmissionResourceDependentResourceCount" +"Education","GetMgEducationClassAssignmentSubmissionSubmittedResource_Get.g.cs","v1.0","Get-MgEducationClassAssignmentSubmissionSubmittedResource","GET","/education/classes/{param}/assignments/{param}/submissions/{param}/submittedResources/{param}","matched","Get-MgEducationClassAssignmentSubmissionSubmittedResource" +"Education","GetMgEducationClassAssignmentSubmissionSubmittedResource_List.g.cs","v1.0","Get-MgEducationClassAssignmentSubmissionSubmittedResource","GET","/education/classes/{param}/assignments/{param}/submissions/{param}/submittedResources","matched","Get-MgEducationClassAssignmentSubmissionSubmittedResource" +"Education","GetMgEducationClassAssignmentSubmissionSubmittedResource.g.cs","v1.0","Get-MgEducationClassAssignmentSubmissionSubmittedResource","","","dispatcher","" +"Education","GetMgEducationClassAssignmentSubmissionSubmittedResourceCount.g.cs","v1.0","Get-MgEducationClassAssignmentSubmissionSubmittedResourceCount","GET","/education/classes/{param}/assignments/{param}/submissions/{param}/submittedResources/$count","matched","Get-MgEducationClassAssignmentSubmissionSubmittedResourceCount" +"Education","GetMgEducationClassAssignmentSubmissionSubmittedResourceDependentResource_Get.g.cs","v1.0","Get-MgEducationClassAssignmentSubmissionSubmittedResourceDependentResource","GET","/education/classes/{param}/assignments/{param}/submissions/{param}/submittedResources/{param}/dependentResources/{param}","matched","Get-MgEducationClassAssignmentSubmissionSubmittedResourceDependentResource" +"Education","GetMgEducationClassAssignmentSubmissionSubmittedResourceDependentResource_List.g.cs","v1.0","Get-MgEducationClassAssignmentSubmissionSubmittedResourceDependentResource","GET","/education/classes/{param}/assignments/{param}/submissions/{param}/submittedResources/{param}/dependentResources","matched","Get-MgEducationClassAssignmentSubmissionSubmittedResourceDependentResource" +"Education","GetMgEducationClassAssignmentSubmissionSubmittedResourceDependentResource.g.cs","v1.0","Get-MgEducationClassAssignmentSubmissionSubmittedResourceDependentResource","","","dispatcher","" +"Education","GetMgEducationClassAssignmentSubmissionSubmittedResourceDependentResourceCount.g.cs","v1.0","Get-MgEducationClassAssignmentSubmissionSubmittedResourceDependentResourceCount","GET","/education/classes/{param}/assignments/{param}/submissions/{param}/submittedResources/{param}/dependentResources/$count","matched","Get-MgEducationClassAssignmentSubmissionSubmittedResourceDependentResourceCount" +"Education","GetMgEducationClassCount.g.cs","v1.0","Get-MgEducationClassCount","GET","/education/classes/$count","matched","Get-MgEducationClassCount" +"Education","GetMgEducationClassDelta.g.cs","v1.0","Get-MgEducationClassDelta","GET","/education/classes/delta","matched","Get-MgEducationClassDelta" +"Education","GetMgEducationClassGetRecentlyModifiedSubmissions.g.cs","v1.0","Get-MgEducationClassGetRecentlyModifiedSubmissions","GET","/education/classes/{param}/getRecentlyModifiedSubmissions","mismatch","Get-MgEducationClassRecentlyModifiedSubmission" +"Education","GetMgEducationClassGroup.g.cs","v1.0","Get-MgEducationClassGroup","GET","/education/classes/{param}/group","matched","Get-MgEducationClassGroup" +"Education","GetMgEducationClassGroupServiceProvisioningError.g.cs","v1.0","Get-MgEducationClassGroupServiceProvisioningError","GET","/education/classes/{param}/group/serviceProvisioningErrors","matched","Get-MgEducationClassGroupServiceProvisioningError" +"Education","GetMgEducationClassGroupServiceProvisioningErrorCount.g.cs","v1.0","Get-MgEducationClassGroupServiceProvisioningErrorCount","GET","/education/classes/{param}/group/serviceProvisioningErrors/$count","matched","Get-MgEducationClassGroupServiceProvisioningErrorCount" +"Education","GetMgEducationClassMember.g.cs","v1.0","Get-MgEducationClassMember","GET","/education/classes/{param}/members","matched","Get-MgEducationClassMember" +"Education","GetMgEducationClassMemberByRef.g.cs","v1.0","Get-MgEducationClassMemberByRef","GET","/education/classes/{param}/members/$ref","matched","Get-MgEducationClassMemberByRef" +"Education","GetMgEducationClassMemberCount.g.cs","v1.0","Get-MgEducationClassMemberCount","GET","/education/classes/{param}/members/$count","matched","Get-MgEducationClassMemberCount" +"Education","GetMgEducationClassModule_Get.g.cs","v1.0","Get-MgEducationClassModule","GET","/education/classes/{param}/modules/{param}","matched","Get-MgEducationClassModule" +"Education","GetMgEducationClassModule_List.g.cs","v1.0","Get-MgEducationClassModule","GET","/education/classes/{param}/modules","matched","Get-MgEducationClassModule" +"Education","GetMgEducationClassModule.g.cs","v1.0","Get-MgEducationClassModule","","","dispatcher","" +"Education","GetMgEducationClassModuleCount.g.cs","v1.0","Get-MgEducationClassModuleCount","GET","/education/classes/{param}/modules/$count","matched","Get-MgEducationClassModuleCount" +"Education","GetMgEducationClassModuleResource_Get.g.cs","v1.0","Get-MgEducationClassModuleResource","GET","/education/classes/{param}/modules/{param}/resources/{param}","matched","Get-MgEducationClassModuleResource" +"Education","GetMgEducationClassModuleResource_List.g.cs","v1.0","Get-MgEducationClassModuleResource","GET","/education/classes/{param}/modules/{param}/resources","matched","Get-MgEducationClassModuleResource" +"Education","GetMgEducationClassModuleResource.g.cs","v1.0","Get-MgEducationClassModuleResource","","","dispatcher","" +"Education","GetMgEducationClassModuleResourceCount.g.cs","v1.0","Get-MgEducationClassModuleResourceCount","GET","/education/classes/{param}/modules/{param}/resources/$count","matched","Get-MgEducationClassModuleResourceCount" +"Education","GetMgEducationClassSchool_Get.g.cs","v1.0","Get-MgEducationClassSchool","GET","/education/classes/{param}/schools/{param}","matched","Get-MgEducationClassSchool" +"Education","GetMgEducationClassSchool_List.g.cs","v1.0","Get-MgEducationClassSchool","GET","/education/classes/{param}/schools","matched","Get-MgEducationClassSchool" +"Education","GetMgEducationClassSchool.g.cs","v1.0","Get-MgEducationClassSchool","","","dispatcher","" +"Education","GetMgEducationClassSchoolCount.g.cs","v1.0","Get-MgEducationClassSchoolCount","GET","/education/classes/{param}/schools/$count","matched","Get-MgEducationClassSchoolCount" +"Education","GetMgEducationClassTeacher.g.cs","v1.0","Get-MgEducationClassTeacher","GET","/education/classes/{param}/teachers","matched","Get-MgEducationClassTeacher" +"Education","GetMgEducationClassTeacherByRef.g.cs","v1.0","Get-MgEducationClassTeacherByRef","GET","/education/classes/{param}/teachers/$ref","matched","Get-MgEducationClassTeacherByRef" +"Education","GetMgEducationClassTeacherCount.g.cs","v1.0","Get-MgEducationClassTeacherCount","GET","/education/classes/{param}/teachers/$count","matched","Get-MgEducationClassTeacherCount" +"Education","GetMgEducationMe.g.cs","v1.0","Get-MgEducationMe","GET","/education/me","matched","Get-MgEducationMe" +"Education","GetMgEducationMeAssignment_Get.g.cs","v1.0","Get-MgEducationMeAssignment","GET","/education/me/assignments/{param}","matched","Get-MgEducationMeAssignment" +"Education","GetMgEducationMeAssignment_List.g.cs","v1.0","Get-MgEducationMeAssignment","GET","/education/me/assignments","matched","Get-MgEducationMeAssignment" +"Education","GetMgEducationMeAssignment.g.cs","v1.0","Get-MgEducationMeAssignment","","","dispatcher","" +"Education","GetMgEducationMeAssignmentCategory.g.cs","v1.0","Get-MgEducationMeAssignmentCategory","GET","/education/me/assignments/{param}/categories","matched","Get-MgEducationMeAssignmentCategory" +"Education","GetMgEducationMeAssignmentCategoryByRef.g.cs","v1.0","Get-MgEducationMeAssignmentCategoryByRef","GET","/education/me/assignments/{param}/categories/$ref","matched","Get-MgEducationMeAssignmentCategoryByRef" +"Education","GetMgEducationMeAssignmentCategoryCount.g.cs","v1.0","Get-MgEducationMeAssignmentCategoryCount","GET","/education/me/assignments/{param}/categories/$count","matched","Get-MgEducationMeAssignmentCategoryCount" +"Education","GetMgEducationMeAssignmentCategoryDelta.g.cs","v1.0","Get-MgEducationMeAssignmentCategoryDelta","GET","/education/me/assignments/{param}/categories/delta","matched","Get-MgEducationMeAssignmentCategoryDelta" +"Education","GetMgEducationMeAssignmentCount.g.cs","v1.0","Get-MgEducationMeAssignmentCount","GET","/education/me/assignments/$count","matched","Get-MgEducationMeAssignmentCount" +"Education","GetMgEducationMeAssignmentDelta.g.cs","v1.0","Get-MgEducationMeAssignmentDelta","GET","/education/me/assignments/delta","matched","Get-MgEducationMeAssignmentDelta" +"Education","GetMgEducationMeAssignmentGradingCategory.g.cs","v1.0","Get-MgEducationMeAssignmentGradingCategory","GET","/education/me/assignments/{param}/gradingCategory","matched","Get-MgEducationMeAssignmentGradingCategory" +"Education","GetMgEducationMeAssignmentGradingScheme.g.cs","v1.0","Get-MgEducationMeAssignmentGradingScheme","GET","/education/me/assignments/{param}/gradingScheme","matched","Get-MgEducationMeAssignmentGradingScheme" +"Education","GetMgEducationMeAssignmentResource_Get.g.cs","v1.0","Get-MgEducationMeAssignmentResource","GET","/education/me/assignments/{param}/resources/{param}","matched","Get-MgEducationMeAssignmentResource" +"Education","GetMgEducationMeAssignmentResource_List.g.cs","v1.0","Get-MgEducationMeAssignmentResource","GET","/education/me/assignments/{param}/resources","matched","Get-MgEducationMeAssignmentResource" +"Education","GetMgEducationMeAssignmentResource.g.cs","v1.0","Get-MgEducationMeAssignmentResource","","","dispatcher","" +"Education","GetMgEducationMeAssignmentResourceCount.g.cs","v1.0","Get-MgEducationMeAssignmentResourceCount","GET","/education/me/assignments/{param}/resources/$count","matched","Get-MgEducationMeAssignmentResourceCount" +"Education","GetMgEducationMeAssignmentResourceDependentResource_Get.g.cs","v1.0","Get-MgEducationMeAssignmentResourceDependentResource","GET","/education/me/assignments/{param}/resources/{param}/dependentResources/{param}","matched","Get-MgEducationMeAssignmentResourceDependentResource" +"Education","GetMgEducationMeAssignmentResourceDependentResource_List.g.cs","v1.0","Get-MgEducationMeAssignmentResourceDependentResource","GET","/education/me/assignments/{param}/resources/{param}/dependentResources","matched","Get-MgEducationMeAssignmentResourceDependentResource" +"Education","GetMgEducationMeAssignmentResourceDependentResource.g.cs","v1.0","Get-MgEducationMeAssignmentResourceDependentResource","","","dispatcher","" +"Education","GetMgEducationMeAssignmentResourceDependentResourceCount.g.cs","v1.0","Get-MgEducationMeAssignmentResourceDependentResourceCount","GET","/education/me/assignments/{param}/resources/{param}/dependentResources/$count","matched","Get-MgEducationMeAssignmentResourceDependentResourceCount" +"Education","GetMgEducationMeAssignmentRubric.g.cs","v1.0","Get-MgEducationMeAssignmentRubric","GET","/education/me/assignments/{param}/rubric","matched","Get-MgEducationMeAssignmentRubric" +"Education","GetMgEducationMeAssignmentRubricByRef.g.cs","v1.0","Get-MgEducationMeAssignmentRubricByRef","GET","/education/me/assignments/{param}/rubric/$ref","matched","Get-MgEducationMeAssignmentRubricByRef" +"Education","GetMgEducationMeAssignmentSubmission_Get.g.cs","v1.0","Get-MgEducationMeAssignmentSubmission","GET","/education/me/assignments/{param}/submissions/{param}","matched","Get-MgEducationMeAssignmentSubmission" +"Education","GetMgEducationMeAssignmentSubmission_List.g.cs","v1.0","Get-MgEducationMeAssignmentSubmission","GET","/education/me/assignments/{param}/submissions","matched","Get-MgEducationMeAssignmentSubmission" +"Education","GetMgEducationMeAssignmentSubmission.g.cs","v1.0","Get-MgEducationMeAssignmentSubmission","","","dispatcher","" +"Education","GetMgEducationMeAssignmentSubmissionCount.g.cs","v1.0","Get-MgEducationMeAssignmentSubmissionCount","GET","/education/me/assignments/{param}/submissions/$count","matched","Get-MgEducationMeAssignmentSubmissionCount" +"Education","GetMgEducationMeAssignmentSubmissionOutcome_Get.g.cs","v1.0","Get-MgEducationMeAssignmentSubmissionOutcome","GET","/education/me/assignments/{param}/submissions/{param}/outcomes/{param}","matched","Get-MgEducationMeAssignmentSubmissionOutcome" +"Education","GetMgEducationMeAssignmentSubmissionOutcome_List.g.cs","v1.0","Get-MgEducationMeAssignmentSubmissionOutcome","GET","/education/me/assignments/{param}/submissions/{param}/outcomes","matched","Get-MgEducationMeAssignmentSubmissionOutcome" +"Education","GetMgEducationMeAssignmentSubmissionOutcome.g.cs","v1.0","Get-MgEducationMeAssignmentSubmissionOutcome","","","dispatcher","" +"Education","GetMgEducationMeAssignmentSubmissionOutcomeCount.g.cs","v1.0","Get-MgEducationMeAssignmentSubmissionOutcomeCount","GET","/education/me/assignments/{param}/submissions/{param}/outcomes/$count","matched","Get-MgEducationMeAssignmentSubmissionOutcomeCount" +"Education","GetMgEducationMeAssignmentSubmissionResource_Get.g.cs","v1.0","Get-MgEducationMeAssignmentSubmissionResource","GET","/education/me/assignments/{param}/submissions/{param}/resources/{param}","matched","Get-MgEducationMeAssignmentSubmissionResource" +"Education","GetMgEducationMeAssignmentSubmissionResource_List.g.cs","v1.0","Get-MgEducationMeAssignmentSubmissionResource","GET","/education/me/assignments/{param}/submissions/{param}/resources","matched","Get-MgEducationMeAssignmentSubmissionResource" +"Education","GetMgEducationMeAssignmentSubmissionResource.g.cs","v1.0","Get-MgEducationMeAssignmentSubmissionResource","","","dispatcher","" +"Education","GetMgEducationMeAssignmentSubmissionResourceCount.g.cs","v1.0","Get-MgEducationMeAssignmentSubmissionResourceCount","GET","/education/me/assignments/{param}/submissions/{param}/resources/$count","matched","Get-MgEducationMeAssignmentSubmissionResourceCount" +"Education","GetMgEducationMeAssignmentSubmissionResourceDependentResource_Get.g.cs","v1.0","Get-MgEducationMeAssignmentSubmissionResourceDependentResource","GET","/education/me/assignments/{param}/submissions/{param}/resources/{param}/dependentResources/{param}","matched","Get-MgEducationMeAssignmentSubmissionResourceDependentResource" +"Education","GetMgEducationMeAssignmentSubmissionResourceDependentResource_List.g.cs","v1.0","Get-MgEducationMeAssignmentSubmissionResourceDependentResource","GET","/education/me/assignments/{param}/submissions/{param}/resources/{param}/dependentResources","matched","Get-MgEducationMeAssignmentSubmissionResourceDependentResource" +"Education","GetMgEducationMeAssignmentSubmissionResourceDependentResource.g.cs","v1.0","Get-MgEducationMeAssignmentSubmissionResourceDependentResource","","","dispatcher","" +"Education","GetMgEducationMeAssignmentSubmissionResourceDependentResourceCount.g.cs","v1.0","Get-MgEducationMeAssignmentSubmissionResourceDependentResourceCount","GET","/education/me/assignments/{param}/submissions/{param}/resources/{param}/dependentResources/$count","matched","Get-MgEducationMeAssignmentSubmissionResourceDependentResourceCount" +"Education","GetMgEducationMeAssignmentSubmissionSubmittedResource_Get.g.cs","v1.0","Get-MgEducationMeAssignmentSubmissionSubmittedResource","GET","/education/me/assignments/{param}/submissions/{param}/submittedResources/{param}","matched","Get-MgEducationMeAssignmentSubmissionSubmittedResource" +"Education","GetMgEducationMeAssignmentSubmissionSubmittedResource_List.g.cs","v1.0","Get-MgEducationMeAssignmentSubmissionSubmittedResource","GET","/education/me/assignments/{param}/submissions/{param}/submittedResources","matched","Get-MgEducationMeAssignmentSubmissionSubmittedResource" +"Education","GetMgEducationMeAssignmentSubmissionSubmittedResource.g.cs","v1.0","Get-MgEducationMeAssignmentSubmissionSubmittedResource","","","dispatcher","" +"Education","GetMgEducationMeAssignmentSubmissionSubmittedResourceCount.g.cs","v1.0","Get-MgEducationMeAssignmentSubmissionSubmittedResourceCount","GET","/education/me/assignments/{param}/submissions/{param}/submittedResources/$count","matched","Get-MgEducationMeAssignmentSubmissionSubmittedResourceCount" +"Education","GetMgEducationMeAssignmentSubmissionSubmittedResourceDependentResource_Get.g.cs","v1.0","Get-MgEducationMeAssignmentSubmissionSubmittedResourceDependentResource","GET","/education/me/assignments/{param}/submissions/{param}/submittedResources/{param}/dependentResources/{param}","matched","Get-MgEducationMeAssignmentSubmissionSubmittedResourceDependentResource" +"Education","GetMgEducationMeAssignmentSubmissionSubmittedResourceDependentResource_List.g.cs","v1.0","Get-MgEducationMeAssignmentSubmissionSubmittedResourceDependentResource","GET","/education/me/assignments/{param}/submissions/{param}/submittedResources/{param}/dependentResources","matched","Get-MgEducationMeAssignmentSubmissionSubmittedResourceDependentResource" +"Education","GetMgEducationMeAssignmentSubmissionSubmittedResourceDependentResource.g.cs","v1.0","Get-MgEducationMeAssignmentSubmissionSubmittedResourceDependentResource","","","dispatcher","" +"Education","GetMgEducationMeAssignmentSubmissionSubmittedResourceDependentResourceCount.g.cs","v1.0","Get-MgEducationMeAssignmentSubmissionSubmittedResourceDependentResourceCount","GET","/education/me/assignments/{param}/submissions/{param}/submittedResources/{param}/dependentResources/$count","matched","Get-MgEducationMeAssignmentSubmissionSubmittedResourceDependentResourceCount" +"Education","GetMgEducationMeClass_Get.g.cs","v1.0","Get-MgEducationMeClass","GET","/education/me/classes/{param}","matched","Get-MgEducationMeClass" +"Education","GetMgEducationMeClass_List.g.cs","v1.0","Get-MgEducationMeClass","GET","/education/me/classes","matched","Get-MgEducationMeClass" +"Education","GetMgEducationMeClass.g.cs","v1.0","Get-MgEducationMeClass","","","dispatcher","" +"Education","GetMgEducationMeClassCount.g.cs","v1.0","Get-MgEducationMeClassCount","GET","/education/me/classes/$count","matched","Get-MgEducationMeClassCount" +"Education","GetMgEducationMeRubric_Get.g.cs","v1.0","Get-MgEducationMeRubric","GET","/education/me/rubrics/{param}","matched","Get-MgEducationMeRubric" +"Education","GetMgEducationMeRubric_List.g.cs","v1.0","Get-MgEducationMeRubric","GET","/education/me/rubrics","matched","Get-MgEducationMeRubric" +"Education","GetMgEducationMeRubric.g.cs","v1.0","Get-MgEducationMeRubric","","","dispatcher","" +"Education","GetMgEducationMeRubricCount.g.cs","v1.0","Get-MgEducationMeRubricCount","GET","/education/me/rubrics/$count","matched","Get-MgEducationMeRubricCount" +"Education","GetMgEducationMeSchool_Get.g.cs","v1.0","Get-MgEducationMeSchool","GET","/education/me/schools/{param}","matched","Get-MgEducationMeSchool" +"Education","GetMgEducationMeSchool_List.g.cs","v1.0","Get-MgEducationMeSchool","GET","/education/me/schools","matched","Get-MgEducationMeSchool" +"Education","GetMgEducationMeSchool.g.cs","v1.0","Get-MgEducationMeSchool","","","dispatcher","" +"Education","GetMgEducationMeSchoolCount.g.cs","v1.0","Get-MgEducationMeSchoolCount","GET","/education/me/schools/$count","matched","Get-MgEducationMeSchoolCount" +"Education","GetMgEducationMeTaughtClass_Get.g.cs","v1.0","Get-MgEducationMeTaughtClass","GET","/education/me/taughtClasses/{param}","matched","Get-MgEducationMeTaughtClass" +"Education","GetMgEducationMeTaughtClass_List.g.cs","v1.0","Get-MgEducationMeTaughtClass","GET","/education/me/taughtClasses","matched","Get-MgEducationMeTaughtClass" +"Education","GetMgEducationMeTaughtClass.g.cs","v1.0","Get-MgEducationMeTaughtClass","","","dispatcher","" +"Education","GetMgEducationMeTaughtClassCount.g.cs","v1.0","Get-MgEducationMeTaughtClassCount","GET","/education/me/taughtClasses/$count","matched","Get-MgEducationMeTaughtClassCount" +"Education","GetMgEducationMeUser.g.cs","v1.0","Get-MgEducationMeUser","GET","/education/me/user","matched","Get-MgEducationMeUser" +"Education","GetMgEducationMeUserMailboxSetting.g.cs","v1.0","Get-MgEducationMeUserMailboxSetting","GET","/education/me/user/mailboxSettings","matched","Get-MgEducationMeUserMailboxSetting" +"Education","GetMgEducationMeUserServiceProvisioningError.g.cs","v1.0","Get-MgEducationMeUserServiceProvisioningError","GET","/education/me/user/serviceProvisioningErrors","matched","Get-MgEducationMeUserServiceProvisioningError" +"Education","GetMgEducationMeUserServiceProvisioningErrorCount.g.cs","v1.0","Get-MgEducationMeUserServiceProvisioningErrorCount","GET","/education/me/user/serviceProvisioningErrors/$count","matched","Get-MgEducationMeUserServiceProvisioningErrorCount" +"Education","GetMgEducationReport.g.cs","v1.0","Get-MgEducationReport","GET","/education/reports","matched","Get-MgEducationReport" +"Education","GetMgEducationReportReadingAssignmentSubmission_Get.g.cs","v1.0","Get-MgEducationReportReadingAssignmentSubmission","GET","/education/reports/readingAssignmentSubmissions/{param}","matched","Get-MgEducationReportReadingAssignmentSubmission" +"Education","GetMgEducationReportReadingAssignmentSubmission_List.g.cs","v1.0","Get-MgEducationReportReadingAssignmentSubmission","GET","/education/reports/readingAssignmentSubmissions","matched","Get-MgEducationReportReadingAssignmentSubmission" +"Education","GetMgEducationReportReadingAssignmentSubmission.g.cs","v1.0","Get-MgEducationReportReadingAssignmentSubmission","","","dispatcher","" +"Education","GetMgEducationReportReadingAssignmentSubmissionCount.g.cs","v1.0","Get-MgEducationReportReadingAssignmentSubmissionCount","GET","/education/reports/readingAssignmentSubmissions/$count","matched","Get-MgEducationReportReadingAssignmentSubmissionCount" +"Education","GetMgEducationReportReadingCoachPassage_Get.g.cs","v1.0","Get-MgEducationReportReadingCoachPassage","GET","/education/reports/readingCoachPassages/{param}","matched","Get-MgEducationReportReadingCoachPassage" +"Education","GetMgEducationReportReadingCoachPassage_List.g.cs","v1.0","Get-MgEducationReportReadingCoachPassage","GET","/education/reports/readingCoachPassages","matched","Get-MgEducationReportReadingCoachPassage" +"Education","GetMgEducationReportReadingCoachPassage.g.cs","v1.0","Get-MgEducationReportReadingCoachPassage","","","dispatcher","" +"Education","GetMgEducationReportReadingCoachPassageCount.g.cs","v1.0","Get-MgEducationReportReadingCoachPassageCount","GET","/education/reports/readingCoachPassages/$count","matched","Get-MgEducationReportReadingCoachPassageCount" +"Education","GetMgEducationReportReflectCheckInResponse_Get.g.cs","v1.0","Get-MgEducationReportReflectCheckInResponse","GET","/education/reports/reflectCheckInResponses/{param}","mismatch","Get-MgEducationReportReflectCheck" +"Education","GetMgEducationReportReflectCheckInResponse_List.g.cs","v1.0","Get-MgEducationReportReflectCheckInResponse","GET","/education/reports/reflectCheckInResponses","mismatch","Get-MgEducationReportReflectCheck" +"Education","GetMgEducationReportReflectCheckInResponse.g.cs","v1.0","Get-MgEducationReportReflectCheckInResponse","","","dispatcher","" +"Education","GetMgEducationReportReflectCheckInResponseCount.g.cs","v1.0","Get-MgEducationReportReflectCheckInResponseCount","GET","/education/reports/reflectCheckInResponses/$count","matched","Get-MgEducationReportReflectCheckInResponseCount" +"Education","GetMgEducationReportSpeakerAssignmentSubmission_Get.g.cs","v1.0","Get-MgEducationReportSpeakerAssignmentSubmission","GET","/education/reports/speakerAssignmentSubmissions/{param}","matched","Get-MgEducationReportSpeakerAssignmentSubmission" +"Education","GetMgEducationReportSpeakerAssignmentSubmission_List.g.cs","v1.0","Get-MgEducationReportSpeakerAssignmentSubmission","GET","/education/reports/speakerAssignmentSubmissions","matched","Get-MgEducationReportSpeakerAssignmentSubmission" +"Education","GetMgEducationReportSpeakerAssignmentSubmission.g.cs","v1.0","Get-MgEducationReportSpeakerAssignmentSubmission","","","dispatcher","" +"Education","GetMgEducationReportSpeakerAssignmentSubmissionCount.g.cs","v1.0","Get-MgEducationReportSpeakerAssignmentSubmissionCount","GET","/education/reports/speakerAssignmentSubmissions/$count","matched","Get-MgEducationReportSpeakerAssignmentSubmissionCount" +"Education","GetMgEducationSchool_Get.g.cs","v1.0","Get-MgEducationSchool","GET","/education/schools/{param}","matched","Get-MgEducationSchool" +"Education","GetMgEducationSchool_List.g.cs","v1.0","Get-MgEducationSchool","GET","/education/schools","matched","Get-MgEducationSchool" +"Education","GetMgEducationSchool.g.cs","v1.0","Get-MgEducationSchool","","","dispatcher","" +"Education","GetMgEducationSchoolAdministrativeUnit.g.cs","v1.0","Get-MgEducationSchoolAdministrativeUnit","GET","/education/schools/{param}/administrativeUnit","matched","Get-MgEducationSchoolAdministrativeUnit" +"Education","GetMgEducationSchoolClass.g.cs","v1.0","Get-MgEducationSchoolClass","GET","/education/schools/{param}/classes","matched","Get-MgEducationSchoolClass" +"Education","GetMgEducationSchoolClassByRef.g.cs","v1.0","Get-MgEducationSchoolClassByRef","GET","/education/schools/{param}/classes/$ref","matched","Get-MgEducationSchoolClassByRef" +"Education","GetMgEducationSchoolClassCount.g.cs","v1.0","Get-MgEducationSchoolClassCount","GET","/education/schools/{param}/classes/$count","matched","Get-MgEducationSchoolClassCount" +"Education","GetMgEducationSchoolCount.g.cs","v1.0","Get-MgEducationSchoolCount","GET","/education/schools/$count","matched","Get-MgEducationSchoolCount" +"Education","GetMgEducationSchoolDelta.g.cs","v1.0","Get-MgEducationSchoolDelta","GET","/education/schools/delta","matched","Get-MgEducationSchoolDelta" +"Education","GetMgEducationSchoolUser.g.cs","v1.0","Get-MgEducationSchoolUser","GET","/education/schools/{param}/users","matched","Get-MgEducationSchoolUser" +"Education","GetMgEducationSchoolUserByRef.g.cs","v1.0","Get-MgEducationSchoolUserByRef","GET","/education/schools/{param}/users/$ref","matched","Get-MgEducationSchoolUserByRef" +"Education","GetMgEducationSchoolUserCount.g.cs","v1.0","Get-MgEducationSchoolUserCount","GET","/education/schools/{param}/users/$count","matched","Get-MgEducationSchoolUserCount" +"Education","GetMgEducationUser_Get.g.cs","v1.0","Get-MgEducationUser","GET","/education/users/{param}","matched","Get-MgEducationUser" +"Education","GetMgEducationUser_List.g.cs","v1.0","Get-MgEducationUser","GET","/education/users","matched","Get-MgEducationUser" +"Education","GetMgEducationUser.g.cs","v1.0","Get-MgEducationUser","","","dispatcher","" +"Education","GetMgEducationUserAssignment_Get.g.cs","v1.0","Get-MgEducationUserAssignment","GET","/education/users/{param}/assignments/{param}","matched","Get-MgEducationUserAssignment" +"Education","GetMgEducationUserAssignment_List.g.cs","v1.0","Get-MgEducationUserAssignment","GET","/education/users/{param}/assignments","matched","Get-MgEducationUserAssignment" +"Education","GetMgEducationUserAssignment.g.cs","v1.0","Get-MgEducationUserAssignment","","","dispatcher","" +"Education","GetMgEducationUserAssignmentCategory.g.cs","v1.0","Get-MgEducationUserAssignmentCategory","GET","/education/users/{param}/assignments/{param}/categories","matched","Get-MgEducationUserAssignmentCategory" +"Education","GetMgEducationUserAssignmentCategoryByRef.g.cs","v1.0","Get-MgEducationUserAssignmentCategoryByRef","GET","/education/users/{param}/assignments/{param}/categories/$ref","matched","Get-MgEducationUserAssignmentCategoryByRef" +"Education","GetMgEducationUserAssignmentCategoryCount.g.cs","v1.0","Get-MgEducationUserAssignmentCategoryCount","GET","/education/users/{param}/assignments/{param}/categories/$count","matched","Get-MgEducationUserAssignmentCategoryCount" +"Education","GetMgEducationUserAssignmentCategoryDelta.g.cs","v1.0","Get-MgEducationUserAssignmentCategoryDelta","GET","/education/users/{param}/assignments/{param}/categories/delta","matched","Get-MgEducationUserAssignmentCategoryDelta" +"Education","GetMgEducationUserAssignmentCount.g.cs","v1.0","Get-MgEducationUserAssignmentCount","GET","/education/users/{param}/assignments/$count","matched","Get-MgEducationUserAssignmentCount" +"Education","GetMgEducationUserAssignmentDelta.g.cs","v1.0","Get-MgEducationUserAssignmentDelta","GET","/education/users/{param}/assignments/delta","matched","Get-MgEducationUserAssignmentDelta" +"Education","GetMgEducationUserAssignmentGradingCategory.g.cs","v1.0","Get-MgEducationUserAssignmentGradingCategory","GET","/education/users/{param}/assignments/{param}/gradingCategory","matched","Get-MgEducationUserAssignmentGradingCategory" +"Education","GetMgEducationUserAssignmentGradingScheme.g.cs","v1.0","Get-MgEducationUserAssignmentGradingScheme","GET","/education/users/{param}/assignments/{param}/gradingScheme","matched","Get-MgEducationUserAssignmentGradingScheme" +"Education","GetMgEducationUserAssignmentResource_Get.g.cs","v1.0","Get-MgEducationUserAssignmentResource","GET","/education/users/{param}/assignments/{param}/resources/{param}","matched","Get-MgEducationUserAssignmentResource" +"Education","GetMgEducationUserAssignmentResource_List.g.cs","v1.0","Get-MgEducationUserAssignmentResource","GET","/education/users/{param}/assignments/{param}/resources","matched","Get-MgEducationUserAssignmentResource" +"Education","GetMgEducationUserAssignmentResource.g.cs","v1.0","Get-MgEducationUserAssignmentResource","","","dispatcher","" +"Education","GetMgEducationUserAssignmentResourceCount.g.cs","v1.0","Get-MgEducationUserAssignmentResourceCount","GET","/education/users/{param}/assignments/{param}/resources/$count","matched","Get-MgEducationUserAssignmentResourceCount" +"Education","GetMgEducationUserAssignmentResourceDependentResource_Get.g.cs","v1.0","Get-MgEducationUserAssignmentResourceDependentResource","GET","/education/users/{param}/assignments/{param}/resources/{param}/dependentResources/{param}","matched","Get-MgEducationUserAssignmentResourceDependentResource" +"Education","GetMgEducationUserAssignmentResourceDependentResource_List.g.cs","v1.0","Get-MgEducationUserAssignmentResourceDependentResource","GET","/education/users/{param}/assignments/{param}/resources/{param}/dependentResources","matched","Get-MgEducationUserAssignmentResourceDependentResource" +"Education","GetMgEducationUserAssignmentResourceDependentResource.g.cs","v1.0","Get-MgEducationUserAssignmentResourceDependentResource","","","dispatcher","" +"Education","GetMgEducationUserAssignmentResourceDependentResourceCount.g.cs","v1.0","Get-MgEducationUserAssignmentResourceDependentResourceCount","GET","/education/users/{param}/assignments/{param}/resources/{param}/dependentResources/$count","matched","Get-MgEducationUserAssignmentResourceDependentResourceCount" +"Education","GetMgEducationUserAssignmentRubric.g.cs","v1.0","Get-MgEducationUserAssignmentRubric","GET","/education/users/{param}/assignments/{param}/rubric","matched","Get-MgEducationUserAssignmentRubric" +"Education","GetMgEducationUserAssignmentRubricByRef.g.cs","v1.0","Get-MgEducationUserAssignmentRubricByRef","GET","/education/users/{param}/assignments/{param}/rubric/$ref","matched","Get-MgEducationUserAssignmentRubricByRef" +"Education","GetMgEducationUserAssignmentSubmission_Get.g.cs","v1.0","Get-MgEducationUserAssignmentSubmission","GET","/education/users/{param}/assignments/{param}/submissions/{param}","matched","Get-MgEducationUserAssignmentSubmission" +"Education","GetMgEducationUserAssignmentSubmission_List.g.cs","v1.0","Get-MgEducationUserAssignmentSubmission","GET","/education/users/{param}/assignments/{param}/submissions","matched","Get-MgEducationUserAssignmentSubmission" +"Education","GetMgEducationUserAssignmentSubmission.g.cs","v1.0","Get-MgEducationUserAssignmentSubmission","","","dispatcher","" +"Education","GetMgEducationUserAssignmentSubmissionCount.g.cs","v1.0","Get-MgEducationUserAssignmentSubmissionCount","GET","/education/users/{param}/assignments/{param}/submissions/$count","matched","Get-MgEducationUserAssignmentSubmissionCount" +"Education","GetMgEducationUserAssignmentSubmissionOutcome_Get.g.cs","v1.0","Get-MgEducationUserAssignmentSubmissionOutcome","GET","/education/users/{param}/assignments/{param}/submissions/{param}/outcomes/{param}","matched","Get-MgEducationUserAssignmentSubmissionOutcome" +"Education","GetMgEducationUserAssignmentSubmissionOutcome_List.g.cs","v1.0","Get-MgEducationUserAssignmentSubmissionOutcome","GET","/education/users/{param}/assignments/{param}/submissions/{param}/outcomes","matched","Get-MgEducationUserAssignmentSubmissionOutcome" +"Education","GetMgEducationUserAssignmentSubmissionOutcome.g.cs","v1.0","Get-MgEducationUserAssignmentSubmissionOutcome","","","dispatcher","" +"Education","GetMgEducationUserAssignmentSubmissionOutcomeCount.g.cs","v1.0","Get-MgEducationUserAssignmentSubmissionOutcomeCount","GET","/education/users/{param}/assignments/{param}/submissions/{param}/outcomes/$count","matched","Get-MgEducationUserAssignmentSubmissionOutcomeCount" +"Education","GetMgEducationUserAssignmentSubmissionResource_Get.g.cs","v1.0","Get-MgEducationUserAssignmentSubmissionResource","GET","/education/users/{param}/assignments/{param}/submissions/{param}/resources/{param}","matched","Get-MgEducationUserAssignmentSubmissionResource" +"Education","GetMgEducationUserAssignmentSubmissionResource_List.g.cs","v1.0","Get-MgEducationUserAssignmentSubmissionResource","GET","/education/users/{param}/assignments/{param}/submissions/{param}/resources","matched","Get-MgEducationUserAssignmentSubmissionResource" +"Education","GetMgEducationUserAssignmentSubmissionResource.g.cs","v1.0","Get-MgEducationUserAssignmentSubmissionResource","","","dispatcher","" +"Education","GetMgEducationUserAssignmentSubmissionResourceCount.g.cs","v1.0","Get-MgEducationUserAssignmentSubmissionResourceCount","GET","/education/users/{param}/assignments/{param}/submissions/{param}/resources/$count","matched","Get-MgEducationUserAssignmentSubmissionResourceCount" +"Education","GetMgEducationUserAssignmentSubmissionResourceDependentResource_Get.g.cs","v1.0","Get-MgEducationUserAssignmentSubmissionResourceDependentResource","GET","/education/users/{param}/assignments/{param}/submissions/{param}/resources/{param}/dependentResources/{param}","matched","Get-MgEducationUserAssignmentSubmissionResourceDependentResource" +"Education","GetMgEducationUserAssignmentSubmissionResourceDependentResource_List.g.cs","v1.0","Get-MgEducationUserAssignmentSubmissionResourceDependentResource","GET","/education/users/{param}/assignments/{param}/submissions/{param}/resources/{param}/dependentResources","matched","Get-MgEducationUserAssignmentSubmissionResourceDependentResource" +"Education","GetMgEducationUserAssignmentSubmissionResourceDependentResource.g.cs","v1.0","Get-MgEducationUserAssignmentSubmissionResourceDependentResource","","","dispatcher","" +"Education","GetMgEducationUserAssignmentSubmissionResourceDependentResourceCount.g.cs","v1.0","Get-MgEducationUserAssignmentSubmissionResourceDependentResourceCount","GET","/education/users/{param}/assignments/{param}/submissions/{param}/resources/{param}/dependentResources/$count","matched","Get-MgEducationUserAssignmentSubmissionResourceDependentResourceCount" +"Education","GetMgEducationUserAssignmentSubmissionSubmittedResource_Get.g.cs","v1.0","Get-MgEducationUserAssignmentSubmissionSubmittedResource","GET","/education/users/{param}/assignments/{param}/submissions/{param}/submittedResources/{param}","matched","Get-MgEducationUserAssignmentSubmissionSubmittedResource" +"Education","GetMgEducationUserAssignmentSubmissionSubmittedResource_List.g.cs","v1.0","Get-MgEducationUserAssignmentSubmissionSubmittedResource","GET","/education/users/{param}/assignments/{param}/submissions/{param}/submittedResources","matched","Get-MgEducationUserAssignmentSubmissionSubmittedResource" +"Education","GetMgEducationUserAssignmentSubmissionSubmittedResource.g.cs","v1.0","Get-MgEducationUserAssignmentSubmissionSubmittedResource","","","dispatcher","" +"Education","GetMgEducationUserAssignmentSubmissionSubmittedResourceCount.g.cs","v1.0","Get-MgEducationUserAssignmentSubmissionSubmittedResourceCount","GET","/education/users/{param}/assignments/{param}/submissions/{param}/submittedResources/$count","matched","Get-MgEducationUserAssignmentSubmissionSubmittedResourceCount" +"Education","GetMgEducationUserAssignmentSubmissionSubmittedResourceDependentResource_Get.g.cs","v1.0","Get-MgEducationUserAssignmentSubmissionSubmittedResourceDependentResource","GET","/education/users/{param}/assignments/{param}/submissions/{param}/submittedResources/{param}/dependentResources/{param}","matched","Get-MgEducationUserAssignmentSubmissionSubmittedResourceDependentResource" +"Education","GetMgEducationUserAssignmentSubmissionSubmittedResourceDependentResource_List.g.cs","v1.0","Get-MgEducationUserAssignmentSubmissionSubmittedResourceDependentResource","GET","/education/users/{param}/assignments/{param}/submissions/{param}/submittedResources/{param}/dependentResources","matched","Get-MgEducationUserAssignmentSubmissionSubmittedResourceDependentResource" +"Education","GetMgEducationUserAssignmentSubmissionSubmittedResourceDependentResource.g.cs","v1.0","Get-MgEducationUserAssignmentSubmissionSubmittedResourceDependentResource","","","dispatcher","" +"Education","GetMgEducationUserAssignmentSubmissionSubmittedResourceDependentResourceCount.g.cs","v1.0","Get-MgEducationUserAssignmentSubmissionSubmittedResourceDependentResourceCount","GET","/education/users/{param}/assignments/{param}/submissions/{param}/submittedResources/{param}/dependentResources/$count","matched","Get-MgEducationUserAssignmentSubmissionSubmittedResourceDependentResourceCount" +"Education","GetMgEducationUserClass_Get.g.cs","v1.0","Get-MgEducationUserClass","GET","/education/users/{param}/classes/{param}","matched","Get-MgEducationUserClass" +"Education","GetMgEducationUserClass_List.g.cs","v1.0","Get-MgEducationUserClass","GET","/education/users/{param}/classes","matched","Get-MgEducationUserClass" +"Education","GetMgEducationUserClass.g.cs","v1.0","Get-MgEducationUserClass","","","dispatcher","" +"Education","GetMgEducationUserClassCount.g.cs","v1.0","Get-MgEducationUserClassCount","GET","/education/users/{param}/classes/$count","matched","Get-MgEducationUserClassCount" +"Education","GetMgEducationUserCount.g.cs","v1.0","Get-MgEducationUserCount","GET","/education/users/$count","matched","Get-MgEducationUserCount" +"Education","GetMgEducationUserDelta.g.cs","v1.0","Get-MgEducationUserDelta","GET","/education/users/delta","matched","Get-MgEducationUserDelta" +"Education","GetMgEducationUserMailboxSetting.g.cs","v1.0","Get-MgEducationUserMailboxSetting","GET","/education/users/{param}/user/mailboxSettings","matched","Get-MgEducationUserMailboxSetting" +"Education","GetMgEducationUserRubric_Get.g.cs","v1.0","Get-MgEducationUserRubric","GET","/education/users/{param}/rubrics/{param}","matched","Get-MgEducationUserRubric" +"Education","GetMgEducationUserRubric_List.g.cs","v1.0","Get-MgEducationUserRubric","GET","/education/users/{param}/rubrics","matched","Get-MgEducationUserRubric" +"Education","GetMgEducationUserRubric.g.cs","v1.0","Get-MgEducationUserRubric","","","dispatcher","" +"Education","GetMgEducationUserRubricCount.g.cs","v1.0","Get-MgEducationUserRubricCount","GET","/education/users/{param}/rubrics/$count","matched","Get-MgEducationUserRubricCount" +"Education","GetMgEducationUserSchool_Get.g.cs","v1.0","Get-MgEducationUserSchool","GET","/education/users/{param}/schools/{param}","matched","Get-MgEducationUserSchool" +"Education","GetMgEducationUserSchool_List.g.cs","v1.0","Get-MgEducationUserSchool","GET","/education/users/{param}/schools","matched","Get-MgEducationUserSchool" +"Education","GetMgEducationUserSchool.g.cs","v1.0","Get-MgEducationUserSchool","","","dispatcher","" +"Education","GetMgEducationUserSchoolCount.g.cs","v1.0","Get-MgEducationUserSchoolCount","GET","/education/users/{param}/schools/$count","matched","Get-MgEducationUserSchoolCount" +"Education","GetMgEducationUserServiceProvisioningError.g.cs","v1.0","Get-MgEducationUserServiceProvisioningError","GET","/education/users/{param}/user/serviceProvisioningErrors","matched","Get-MgEducationUserServiceProvisioningError" +"Education","GetMgEducationUserServiceProvisioningErrorCount.g.cs","v1.0","Get-MgEducationUserServiceProvisioningErrorCount","GET","/education/users/{param}/user/serviceProvisioningErrors/$count","matched","Get-MgEducationUserServiceProvisioningErrorCount" +"Education","GetMgEducationUserTaughtClass_Get.g.cs","v1.0","Get-MgEducationUserTaughtClass","GET","/education/users/{param}/taughtClasses/{param}","matched","Get-MgEducationUserTaughtClass" +"Education","GetMgEducationUserTaughtClass_List.g.cs","v1.0","Get-MgEducationUserTaughtClass","GET","/education/users/{param}/taughtClasses","matched","Get-MgEducationUserTaughtClass" +"Education","GetMgEducationUserTaughtClass.g.cs","v1.0","Get-MgEducationUserTaughtClass","","","dispatcher","" +"Education","GetMgEducationUserTaughtClassCount.g.cs","v1.0","Get-MgEducationUserTaughtClassCount","GET","/education/users/{param}/taughtClasses/$count","matched","Get-MgEducationUserTaughtClassCount" +"Education","InvokeMgEducationClassAssignmentActivate.g.cs","v1.0","Invoke-MgEducationClassAssignmentActivate","POST","/education/classes/{param}/assignments/{param}/activate","mismatch","Initialize-MgEducationClassAssignment" +"Education","InvokeMgEducationClassAssignmentDeactivate.g.cs","v1.0","Invoke-MgEducationClassAssignmentDeactivate","POST","/education/classes/{param}/assignments/{param}/deactivate","mismatch","Invoke-MgDeactivateEducationClassAssignment" +"Education","InvokeMgEducationClassAssignmentPublish.g.cs","v1.0","Invoke-MgEducationClassAssignmentPublish","POST","/education/classes/{param}/assignments/{param}/publish","mismatch","Publish-MgEducationClassAssignment" +"Education","InvokeMgEducationClassAssignmentSetUpFeedbackResourcesFolder.g.cs","v1.0","Invoke-MgEducationClassAssignmentSetUpFeedbackResourcesFolder","POST","/education/classes/{param}/assignments/{param}/setUpFeedbackResourcesFolder","mismatch","Set-MgEducationClassAssignmentUpFeedbackResourceFolder" +"Education","InvokeMgEducationClassAssignmentSetUpResourcesFolder.g.cs","v1.0","Invoke-MgEducationClassAssignmentSetUpResourcesFolder","POST","/education/classes/{param}/assignments/{param}/setUpResourcesFolder","mismatch","Set-MgEducationClassAssignmentUpResourceFolder" +"Education","InvokeMgEducationClassAssignmentSubmissionExcuse.g.cs","v1.0","Invoke-MgEducationClassAssignmentSubmissionExcuse","POST","/education/classes/{param}/assignments/{param}/submissions/{param}/excuse","mismatch","Invoke-MgExcuseEducationClassAssignmentSubmission" +"Education","InvokeMgEducationClassAssignmentSubmissionReassign.g.cs","v1.0","Invoke-MgEducationClassAssignmentSubmissionReassign","POST","/education/classes/{param}/assignments/{param}/submissions/{param}/reassign","mismatch","Invoke-MgReassignEducationClassAssignmentSubmission" +"Education","InvokeMgEducationClassAssignmentSubmissionReturn.g.cs","v1.0","Invoke-MgEducationClassAssignmentSubmissionReturn","POST","/education/classes/{param}/assignments/{param}/submissions/{param}/return","mismatch","Invoke-MgReturnEducationClassAssignmentSubmission" +"Education","InvokeMgEducationClassAssignmentSubmissionSetUpResourcesFolder.g.cs","v1.0","Invoke-MgEducationClassAssignmentSubmissionSetUpResourcesFolder","POST","/education/classes/{param}/assignments/{param}/submissions/{param}/setUpResourcesFolder","mismatch","Set-MgEducationClassAssignmentSubmissionUpResourceFolder" +"Education","InvokeMgEducationClassAssignmentSubmissionSubmit.g.cs","v1.0","Invoke-MgEducationClassAssignmentSubmissionSubmit","POST","/education/classes/{param}/assignments/{param}/submissions/{param}/submit","mismatch","Submit-MgEducationClassAssignmentSubmission" +"Education","InvokeMgEducationClassAssignmentSubmissionUnsubmit.g.cs","v1.0","Invoke-MgEducationClassAssignmentSubmissionUnsubmit","POST","/education/classes/{param}/assignments/{param}/submissions/{param}/unsubmit","mismatch","Invoke-MgUnsubmitEducationClassAssignmentSubmission" +"Education","InvokeMgEducationClassModulePin.g.cs","v1.0","Invoke-MgEducationClassModulePin","POST","/education/classes/{param}/modules/{param}/pin","mismatch","Invoke-MgPinEducationClassModule" +"Education","InvokeMgEducationClassModulePublish.g.cs","v1.0","Invoke-MgEducationClassModulePublish","POST","/education/classes/{param}/modules/{param}/publish","mismatch","Publish-MgEducationClassModule" +"Education","InvokeMgEducationClassModuleSetUpResourcesFolder.g.cs","v1.0","Invoke-MgEducationClassModuleSetUpResourcesFolder","POST","/education/classes/{param}/modules/{param}/setUpResourcesFolder","mismatch","Set-MgEducationClassModuleUpResourceFolder" +"Education","InvokeMgEducationClassModuleUnpin.g.cs","v1.0","Invoke-MgEducationClassModuleUnpin","POST","/education/classes/{param}/modules/{param}/unpin","mismatch","Invoke-MgUnpinEducationClassModule" +"Education","InvokeMgEducationMeAssignmentActivate.g.cs","v1.0","Invoke-MgEducationMeAssignmentActivate","POST","/education/me/assignments/{param}/activate","mismatch","Initialize-MgEducationMeAssignment" +"Education","InvokeMgEducationMeAssignmentDeactivate.g.cs","v1.0","Invoke-MgEducationMeAssignmentDeactivate","POST","/education/me/assignments/{param}/deactivate","mismatch","Invoke-MgDeactivateEducationMeAssignment" +"Education","InvokeMgEducationMeAssignmentPublish.g.cs","v1.0","Invoke-MgEducationMeAssignmentPublish","POST","/education/me/assignments/{param}/publish","mismatch","Publish-MgEducationMeAssignment" +"Education","InvokeMgEducationMeAssignmentSetUpFeedbackResourcesFolder.g.cs","v1.0","Invoke-MgEducationMeAssignmentSetUpFeedbackResourcesFolder","POST","/education/me/assignments/{param}/setUpFeedbackResourcesFolder","mismatch","Set-MgEducationMeAssignmentUpFeedbackResourceFolder" +"Education","InvokeMgEducationMeAssignmentSetUpResourcesFolder.g.cs","v1.0","Invoke-MgEducationMeAssignmentSetUpResourcesFolder","POST","/education/me/assignments/{param}/setUpResourcesFolder","mismatch","Set-MgEducationMeAssignmentUpResourceFolder" +"Education","InvokeMgEducationMeAssignmentSubmissionExcuse.g.cs","v1.0","Invoke-MgEducationMeAssignmentSubmissionExcuse","POST","/education/me/assignments/{param}/submissions/{param}/excuse","mismatch","Invoke-MgExcuseEducationMeAssignmentSubmission" +"Education","InvokeMgEducationMeAssignmentSubmissionReassign.g.cs","v1.0","Invoke-MgEducationMeAssignmentSubmissionReassign","POST","/education/me/assignments/{param}/submissions/{param}/reassign","mismatch","Invoke-MgReassignEducationMeAssignmentSubmission" +"Education","InvokeMgEducationMeAssignmentSubmissionReturn.g.cs","v1.0","Invoke-MgEducationMeAssignmentSubmissionReturn","POST","/education/me/assignments/{param}/submissions/{param}/return","mismatch","Invoke-MgReturnEducationMeAssignmentSubmission" +"Education","InvokeMgEducationMeAssignmentSubmissionSetUpResourcesFolder.g.cs","v1.0","Invoke-MgEducationMeAssignmentSubmissionSetUpResourcesFolder","POST","/education/me/assignments/{param}/submissions/{param}/setUpResourcesFolder","mismatch","Set-MgEducationMeAssignmentSubmissionUpResourceFolder" +"Education","InvokeMgEducationMeAssignmentSubmissionSubmit.g.cs","v1.0","Invoke-MgEducationMeAssignmentSubmissionSubmit","POST","/education/me/assignments/{param}/submissions/{param}/submit","mismatch","Submit-MgEducationMeAssignmentSubmission" +"Education","InvokeMgEducationMeAssignmentSubmissionUnsubmit.g.cs","v1.0","Invoke-MgEducationMeAssignmentSubmissionUnsubmit","POST","/education/me/assignments/{param}/submissions/{param}/unsubmit","mismatch","Invoke-MgUnsubmitEducationMeAssignmentSubmission" +"Education","InvokeMgEducationUserAssignmentActivate.g.cs","v1.0","Invoke-MgEducationUserAssignmentActivate","POST","/education/users/{param}/assignments/{param}/activate","mismatch","Initialize-MgEducationUserAssignment" +"Education","InvokeMgEducationUserAssignmentDeactivate.g.cs","v1.0","Invoke-MgEducationUserAssignmentDeactivate","POST","/education/users/{param}/assignments/{param}/deactivate","mismatch","Invoke-MgDeactivateEducationUserAssignment" +"Education","InvokeMgEducationUserAssignmentPublish.g.cs","v1.0","Invoke-MgEducationUserAssignmentPublish","POST","/education/users/{param}/assignments/{param}/publish","mismatch","Publish-MgEducationUserAssignment" +"Education","InvokeMgEducationUserAssignmentSetUpFeedbackResourcesFolder.g.cs","v1.0","Invoke-MgEducationUserAssignmentSetUpFeedbackResourcesFolder","POST","/education/users/{param}/assignments/{param}/setUpFeedbackResourcesFolder","mismatch","Set-MgEducationUserAssignmentUpFeedbackResourceFolder" +"Education","InvokeMgEducationUserAssignmentSetUpResourcesFolder.g.cs","v1.0","Invoke-MgEducationUserAssignmentSetUpResourcesFolder","POST","/education/users/{param}/assignments/{param}/setUpResourcesFolder","mismatch","Set-MgEducationUserAssignmentUpResourceFolder" +"Education","InvokeMgEducationUserAssignmentSubmissionExcuse.g.cs","v1.0","Invoke-MgEducationUserAssignmentSubmissionExcuse","POST","/education/users/{param}/assignments/{param}/submissions/{param}/excuse","mismatch","Invoke-MgExcuseEducationUserAssignmentSubmission" +"Education","InvokeMgEducationUserAssignmentSubmissionReassign.g.cs","v1.0","Invoke-MgEducationUserAssignmentSubmissionReassign","POST","/education/users/{param}/assignments/{param}/submissions/{param}/reassign","mismatch","Invoke-MgReassignEducationUserAssignmentSubmission" +"Education","InvokeMgEducationUserAssignmentSubmissionReturn.g.cs","v1.0","Invoke-MgEducationUserAssignmentSubmissionReturn","POST","/education/users/{param}/assignments/{param}/submissions/{param}/return","mismatch","Invoke-MgReturnEducationUserAssignmentSubmission" +"Education","InvokeMgEducationUserAssignmentSubmissionSetUpResourcesFolder.g.cs","v1.0","Invoke-MgEducationUserAssignmentSubmissionSetUpResourcesFolder","POST","/education/users/{param}/assignments/{param}/submissions/{param}/setUpResourcesFolder","mismatch","Set-MgEducationUserAssignmentSubmissionUpResourceFolder" +"Education","InvokeMgEducationUserAssignmentSubmissionSubmit.g.cs","v1.0","Invoke-MgEducationUserAssignmentSubmissionSubmit","POST","/education/users/{param}/assignments/{param}/submissions/{param}/submit","mismatch","Submit-MgEducationUserAssignmentSubmission" +"Education","InvokeMgEducationUserAssignmentSubmissionUnsubmit.g.cs","v1.0","Invoke-MgEducationUserAssignmentSubmissionUnsubmit","POST","/education/users/{param}/assignments/{param}/submissions/{param}/unsubmit","mismatch","Invoke-MgUnsubmitEducationUserAssignmentSubmission" +"Education","NewMgEducationClass.g.cs","v1.0","New-MgEducationClass","POST","/education/classes","matched","New-MgEducationClass" +"Education","NewMgEducationClassAssignment.g.cs","v1.0","New-MgEducationClassAssignment","POST","/education/classes/{param}/assignments","matched","New-MgEducationClassAssignment" +"Education","NewMgEducationClassAssignmentCategory.g.cs","v1.0","New-MgEducationClassAssignmentCategory","POST","/education/classes/{param}/assignmentCategories","matched","New-MgEducationClassAssignmentCategory" +"Education","NewMgEducationClassAssignmentCategoryByRef.g.cs","v1.0","New-MgEducationClassAssignmentCategoryByRef","POST","/education/classes/{param}/assignments/{param}/categories/$ref","matched","New-MgEducationClassAssignmentCategoryByRef" +"Education","NewMgEducationClassAssignmentResource.g.cs","v1.0","New-MgEducationClassAssignmentResource","POST","/education/classes/{param}/assignments/{param}/resources","matched","New-MgEducationClassAssignmentResource" +"Education","NewMgEducationClassAssignmentResourceDependentResource.g.cs","v1.0","New-MgEducationClassAssignmentResourceDependentResource","POST","/education/classes/{param}/assignments/{param}/resources/{param}/dependentResources","matched","New-MgEducationClassAssignmentResourceDependentResource" +"Education","NewMgEducationClassAssignmentSettingGradingCategory.g.cs","v1.0","New-MgEducationClassAssignmentSettingGradingCategory","POST","/education/classes/{param}/assignmentSettings/gradingCategories","matched","New-MgEducationClassAssignmentSettingGradingCategory" +"Education","NewMgEducationClassAssignmentSettingGradingScheme.g.cs","v1.0","New-MgEducationClassAssignmentSettingGradingScheme","POST","/education/classes/{param}/assignmentSettings/gradingSchemes","matched","New-MgEducationClassAssignmentSettingGradingScheme" +"Education","NewMgEducationClassAssignmentSubmission.g.cs","v1.0","New-MgEducationClassAssignmentSubmission","POST","/education/classes/{param}/assignments/{param}/submissions","matched","New-MgEducationClassAssignmentSubmission" +"Education","NewMgEducationClassAssignmentSubmissionOutcome.g.cs","v1.0","New-MgEducationClassAssignmentSubmissionOutcome","POST","/education/classes/{param}/assignments/{param}/submissions/{param}/outcomes","matched","New-MgEducationClassAssignmentSubmissionOutcome" +"Education","NewMgEducationClassAssignmentSubmissionResource.g.cs","v1.0","New-MgEducationClassAssignmentSubmissionResource","POST","/education/classes/{param}/assignments/{param}/submissions/{param}/resources","matched","New-MgEducationClassAssignmentSubmissionResource" +"Education","NewMgEducationClassAssignmentSubmissionResourceDependentResource.g.cs","v1.0","New-MgEducationClassAssignmentSubmissionResourceDependentResource","POST","/education/classes/{param}/assignments/{param}/submissions/{param}/resources/{param}/dependentResources","matched","New-MgEducationClassAssignmentSubmissionResourceDependentResource" +"Education","NewMgEducationClassAssignmentSubmissionSubmittedResource.g.cs","v1.0","New-MgEducationClassAssignmentSubmissionSubmittedResource","POST","/education/classes/{param}/assignments/{param}/submissions/{param}/submittedResources","matched","New-MgEducationClassAssignmentSubmissionSubmittedResource" +"Education","NewMgEducationClassAssignmentSubmissionSubmittedResourceDependentResource.g.cs","v1.0","New-MgEducationClassAssignmentSubmissionSubmittedResourceDependentResource","POST","/education/classes/{param}/assignments/{param}/submissions/{param}/submittedResources/{param}/dependentResources","matched","New-MgEducationClassAssignmentSubmissionSubmittedResourceDependentResource" +"Education","NewMgEducationClassMemberByRef.g.cs","v1.0","New-MgEducationClassMemberByRef","POST","/education/classes/{param}/members/$ref","matched","New-MgEducationClassMemberByRef" +"Education","NewMgEducationClassModule.g.cs","v1.0","New-MgEducationClassModule","POST","/education/classes/{param}/modules","matched","New-MgEducationClassModule" +"Education","NewMgEducationClassModuleResource.g.cs","v1.0","New-MgEducationClassModuleResource","POST","/education/classes/{param}/modules/{param}/resources","matched","New-MgEducationClassModuleResource" +"Education","NewMgEducationClassTeacherByRef.g.cs","v1.0","New-MgEducationClassTeacherByRef","POST","/education/classes/{param}/teachers/$ref","matched","New-MgEducationClassTeacherByRef" +"Education","NewMgEducationMeAssignment.g.cs","v1.0","New-MgEducationMeAssignment","POST","/education/me/assignments","matched","New-MgEducationMeAssignment" +"Education","NewMgEducationMeAssignmentCategory.g.cs","v1.0","New-MgEducationMeAssignmentCategory","POST","/education/me/assignments/{param}/categories","matched","New-MgEducationMeAssignmentCategory" +"Education","NewMgEducationMeAssignmentCategoryByRef.g.cs","v1.0","New-MgEducationMeAssignmentCategoryByRef","POST","/education/me/assignments/{param}/categories/$ref","matched","New-MgEducationMeAssignmentCategoryByRef" +"Education","NewMgEducationMeAssignmentResource.g.cs","v1.0","New-MgEducationMeAssignmentResource","POST","/education/me/assignments/{param}/resources","matched","New-MgEducationMeAssignmentResource" +"Education","NewMgEducationMeAssignmentResourceDependentResource.g.cs","v1.0","New-MgEducationMeAssignmentResourceDependentResource","POST","/education/me/assignments/{param}/resources/{param}/dependentResources","matched","New-MgEducationMeAssignmentResourceDependentResource" +"Education","NewMgEducationMeAssignmentSubmission.g.cs","v1.0","New-MgEducationMeAssignmentSubmission","POST","/education/me/assignments/{param}/submissions","matched","New-MgEducationMeAssignmentSubmission" +"Education","NewMgEducationMeAssignmentSubmissionOutcome.g.cs","v1.0","New-MgEducationMeAssignmentSubmissionOutcome","POST","/education/me/assignments/{param}/submissions/{param}/outcomes","matched","New-MgEducationMeAssignmentSubmissionOutcome" +"Education","NewMgEducationMeAssignmentSubmissionResource.g.cs","v1.0","New-MgEducationMeAssignmentSubmissionResource","POST","/education/me/assignments/{param}/submissions/{param}/resources","matched","New-MgEducationMeAssignmentSubmissionResource" +"Education","NewMgEducationMeAssignmentSubmissionResourceDependentResource.g.cs","v1.0","New-MgEducationMeAssignmentSubmissionResourceDependentResource","POST","/education/me/assignments/{param}/submissions/{param}/resources/{param}/dependentResources","matched","New-MgEducationMeAssignmentSubmissionResourceDependentResource" +"Education","NewMgEducationMeAssignmentSubmissionSubmittedResource.g.cs","v1.0","New-MgEducationMeAssignmentSubmissionSubmittedResource","POST","/education/me/assignments/{param}/submissions/{param}/submittedResources","matched","New-MgEducationMeAssignmentSubmissionSubmittedResource" +"Education","NewMgEducationMeAssignmentSubmissionSubmittedResourceDependentResource.g.cs","v1.0","New-MgEducationMeAssignmentSubmissionSubmittedResourceDependentResource","POST","/education/me/assignments/{param}/submissions/{param}/submittedResources/{param}/dependentResources","matched","New-MgEducationMeAssignmentSubmissionSubmittedResourceDependentResource" +"Education","NewMgEducationMeRubric.g.cs","v1.0","New-MgEducationMeRubric","POST","/education/me/rubrics","matched","New-MgEducationMeRubric" +"Education","NewMgEducationReportReadingAssignmentSubmission.g.cs","v1.0","New-MgEducationReportReadingAssignmentSubmission","POST","/education/reports/readingAssignmentSubmissions","matched","New-MgEducationReportReadingAssignmentSubmission" +"Education","NewMgEducationReportReadingCoachPassage.g.cs","v1.0","New-MgEducationReportReadingCoachPassage","POST","/education/reports/readingCoachPassages","matched","New-MgEducationReportReadingCoachPassage" +"Education","NewMgEducationReportReflectCheckInResponse.g.cs","v1.0","New-MgEducationReportReflectCheckInResponse","POST","/education/reports/reflectCheckInResponses","mismatch","New-MgEducationReportReflectCheck" +"Education","NewMgEducationReportSpeakerAssignmentSubmission.g.cs","v1.0","New-MgEducationReportSpeakerAssignmentSubmission","POST","/education/reports/speakerAssignmentSubmissions","matched","New-MgEducationReportSpeakerAssignmentSubmission" +"Education","NewMgEducationSchool.g.cs","v1.0","New-MgEducationSchool","POST","/education/schools","matched","New-MgEducationSchool" +"Education","NewMgEducationSchoolClassByRef.g.cs","v1.0","New-MgEducationSchoolClassByRef","POST","/education/schools/{param}/classes/$ref","matched","New-MgEducationSchoolClassByRef" +"Education","NewMgEducationSchoolUserByRef.g.cs","v1.0","New-MgEducationSchoolUserByRef","POST","/education/schools/{param}/users/$ref","matched","New-MgEducationSchoolUserByRef" +"Education","NewMgEducationUser.g.cs","v1.0","New-MgEducationUser","POST","/education/users","matched","New-MgEducationUser" +"Education","NewMgEducationUserAssignment.g.cs","v1.0","New-MgEducationUserAssignment","POST","/education/users/{param}/assignments","matched","New-MgEducationUserAssignment" +"Education","NewMgEducationUserAssignmentCategory.g.cs","v1.0","New-MgEducationUserAssignmentCategory","POST","/education/users/{param}/assignments/{param}/categories","matched","New-MgEducationUserAssignmentCategory" +"Education","NewMgEducationUserAssignmentCategoryByRef.g.cs","v1.0","New-MgEducationUserAssignmentCategoryByRef","POST","/education/users/{param}/assignments/{param}/categories/$ref","matched","New-MgEducationUserAssignmentCategoryByRef" +"Education","NewMgEducationUserAssignmentResource.g.cs","v1.0","New-MgEducationUserAssignmentResource","POST","/education/users/{param}/assignments/{param}/resources","matched","New-MgEducationUserAssignmentResource" +"Education","NewMgEducationUserAssignmentResourceDependentResource.g.cs","v1.0","New-MgEducationUserAssignmentResourceDependentResource","POST","/education/users/{param}/assignments/{param}/resources/{param}/dependentResources","matched","New-MgEducationUserAssignmentResourceDependentResource" +"Education","NewMgEducationUserAssignmentSubmission.g.cs","v1.0","New-MgEducationUserAssignmentSubmission","POST","/education/users/{param}/assignments/{param}/submissions","matched","New-MgEducationUserAssignmentSubmission" +"Education","NewMgEducationUserAssignmentSubmissionOutcome.g.cs","v1.0","New-MgEducationUserAssignmentSubmissionOutcome","POST","/education/users/{param}/assignments/{param}/submissions/{param}/outcomes","matched","New-MgEducationUserAssignmentSubmissionOutcome" +"Education","NewMgEducationUserAssignmentSubmissionResource.g.cs","v1.0","New-MgEducationUserAssignmentSubmissionResource","POST","/education/users/{param}/assignments/{param}/submissions/{param}/resources","matched","New-MgEducationUserAssignmentSubmissionResource" +"Education","NewMgEducationUserAssignmentSubmissionResourceDependentResource.g.cs","v1.0","New-MgEducationUserAssignmentSubmissionResourceDependentResource","POST","/education/users/{param}/assignments/{param}/submissions/{param}/resources/{param}/dependentResources","matched","New-MgEducationUserAssignmentSubmissionResourceDependentResource" +"Education","NewMgEducationUserAssignmentSubmissionSubmittedResource.g.cs","v1.0","New-MgEducationUserAssignmentSubmissionSubmittedResource","POST","/education/users/{param}/assignments/{param}/submissions/{param}/submittedResources","matched","New-MgEducationUserAssignmentSubmissionSubmittedResource" +"Education","NewMgEducationUserAssignmentSubmissionSubmittedResourceDependentResource.g.cs","v1.0","New-MgEducationUserAssignmentSubmissionSubmittedResourceDependentResource","POST","/education/users/{param}/assignments/{param}/submissions/{param}/submittedResources/{param}/dependentResources","matched","New-MgEducationUserAssignmentSubmissionSubmittedResourceDependentResource" +"Education","NewMgEducationUserRubric.g.cs","v1.0","New-MgEducationUserRubric","POST","/education/users/{param}/rubrics","matched","New-MgEducationUserRubric" +"Education","RemoveMgEducationClass.g.cs","v1.0","Remove-MgEducationClass","DELETE","/education/classes/{param}","matched","Remove-MgEducationClass" +"Education","RemoveMgEducationClassAssignment.g.cs","v1.0","Remove-MgEducationClassAssignment","DELETE","/education/classes/{param}/assignments/{param}","matched","Remove-MgEducationClassAssignment" +"Education","RemoveMgEducationClassAssignmentCategory.g.cs","v1.0","Remove-MgEducationClassAssignmentCategory","DELETE","/education/classes/{param}/assignmentCategories/{param}","matched","Remove-MgEducationClassAssignmentCategory" +"Education","RemoveMgEducationClassAssignmentCategoryByRef.g.cs","v1.0","Remove-MgEducationClassAssignmentCategoryByRef","DELETE","/education/classes/{param}/assignments/{param}/categories/{param}/$ref","mismatch","Remove-MgEducationClassAssignmentCategoryEducationCategoryByRef" +"Education","RemoveMgEducationClassAssignmentDefault.g.cs","v1.0","Remove-MgEducationClassAssignmentDefault","DELETE","/education/classes/{param}/assignmentDefaults","matched","Remove-MgEducationClassAssignmentDefault" +"Education","RemoveMgEducationClassAssignmentResource.g.cs","v1.0","Remove-MgEducationClassAssignmentResource","DELETE","/education/classes/{param}/assignments/{param}/resources/{param}","matched","Remove-MgEducationClassAssignmentResource" +"Education","RemoveMgEducationClassAssignmentResourceDependentResource.g.cs","v1.0","Remove-MgEducationClassAssignmentResourceDependentResource","DELETE","/education/classes/{param}/assignments/{param}/resources/{param}/dependentResources/{param}","matched","Remove-MgEducationClassAssignmentResourceDependentResource" +"Education","RemoveMgEducationClassAssignmentRubric.g.cs","v1.0","Remove-MgEducationClassAssignmentRubric","DELETE","/education/classes/{param}/assignments/{param}/rubric","matched","Remove-MgEducationClassAssignmentRubric" +"Education","RemoveMgEducationClassAssignmentRubricByRef.g.cs","v1.0","Remove-MgEducationClassAssignmentRubricByRef","DELETE","/education/classes/{param}/assignments/{param}/rubric/$ref","matched","Remove-MgEducationClassAssignmentRubricByRef" +"Education","RemoveMgEducationClassAssignmentSetting.g.cs","v1.0","Remove-MgEducationClassAssignmentSetting","DELETE","/education/classes/{param}/assignmentSettings","matched","Remove-MgEducationClassAssignmentSetting" +"Education","RemoveMgEducationClassAssignmentSettingGradingCategory.g.cs","v1.0","Remove-MgEducationClassAssignmentSettingGradingCategory","DELETE","/education/classes/{param}/assignmentSettings/gradingCategories/{param}","matched","Remove-MgEducationClassAssignmentSettingGradingCategory" +"Education","RemoveMgEducationClassAssignmentSettingGradingScheme.g.cs","v1.0","Remove-MgEducationClassAssignmentSettingGradingScheme","DELETE","/education/classes/{param}/assignmentSettings/gradingSchemes/{param}","matched","Remove-MgEducationClassAssignmentSettingGradingScheme" +"Education","RemoveMgEducationClassAssignmentSubmission.g.cs","v1.0","Remove-MgEducationClassAssignmentSubmission","DELETE","/education/classes/{param}/assignments/{param}/submissions/{param}","matched","Remove-MgEducationClassAssignmentSubmission" +"Education","RemoveMgEducationClassAssignmentSubmissionOutcome.g.cs","v1.0","Remove-MgEducationClassAssignmentSubmissionOutcome","DELETE","/education/classes/{param}/assignments/{param}/submissions/{param}/outcomes/{param}","matched","Remove-MgEducationClassAssignmentSubmissionOutcome" +"Education","RemoveMgEducationClassAssignmentSubmissionResource.g.cs","v1.0","Remove-MgEducationClassAssignmentSubmissionResource","DELETE","/education/classes/{param}/assignments/{param}/submissions/{param}/resources/{param}","matched","Remove-MgEducationClassAssignmentSubmissionResource" +"Education","RemoveMgEducationClassAssignmentSubmissionResourceDependentResource.g.cs","v1.0","Remove-MgEducationClassAssignmentSubmissionResourceDependentResource","DELETE","/education/classes/{param}/assignments/{param}/submissions/{param}/resources/{param}/dependentResources/{param}","matched","Remove-MgEducationClassAssignmentSubmissionResourceDependentResource" +"Education","RemoveMgEducationClassAssignmentSubmissionSubmittedResource.g.cs","v1.0","Remove-MgEducationClassAssignmentSubmissionSubmittedResource","DELETE","/education/classes/{param}/assignments/{param}/submissions/{param}/submittedResources/{param}","matched","Remove-MgEducationClassAssignmentSubmissionSubmittedResource" +"Education","RemoveMgEducationClassAssignmentSubmissionSubmittedResourceDependentResource.g.cs","v1.0","Remove-MgEducationClassAssignmentSubmissionSubmittedResourceDependentResource","DELETE","/education/classes/{param}/assignments/{param}/submissions/{param}/submittedResources/{param}/dependentResources/{param}","matched","Remove-MgEducationClassAssignmentSubmissionSubmittedResourceDependentResource" +"Education","RemoveMgEducationClassMemberByRef.g.cs","v1.0","Remove-MgEducationClassMemberByRef","DELETE","/education/classes/{param}/members/{param}/$ref","mismatch","Remove-MgEducationClassMemberEducationUserByRef" +"Education","RemoveMgEducationClassModule.g.cs","v1.0","Remove-MgEducationClassModule","DELETE","/education/classes/{param}/modules/{param}","matched","Remove-MgEducationClassModule" +"Education","RemoveMgEducationClassModuleResource.g.cs","v1.0","Remove-MgEducationClassModuleResource","DELETE","/education/classes/{param}/modules/{param}/resources/{param}","matched","Remove-MgEducationClassModuleResource" +"Education","RemoveMgEducationClassTeacherByRef.g.cs","v1.0","Remove-MgEducationClassTeacherByRef","DELETE","/education/classes/{param}/teachers/{param}/$ref","mismatch","Remove-MgEducationClassTeacherEducationUserByRef" +"Education","RemoveMgEducationMe.g.cs","v1.0","Remove-MgEducationMe","DELETE","/education/me","matched","Remove-MgEducationMe" +"Education","RemoveMgEducationMeAssignment.g.cs","v1.0","Remove-MgEducationMeAssignment","DELETE","/education/me/assignments/{param}","matched","Remove-MgEducationMeAssignment" +"Education","RemoveMgEducationMeAssignmentCategoryByRef.g.cs","v1.0","Remove-MgEducationMeAssignmentCategoryByRef","DELETE","/education/me/assignments/{param}/categories/{param}/$ref","mismatch","Remove-MgEducationMeAssignmentCategoryEducationCategoryByRef" +"Education","RemoveMgEducationMeAssignmentResource.g.cs","v1.0","Remove-MgEducationMeAssignmentResource","DELETE","/education/me/assignments/{param}/resources/{param}","matched","Remove-MgEducationMeAssignmentResource" +"Education","RemoveMgEducationMeAssignmentResourceDependentResource.g.cs","v1.0","Remove-MgEducationMeAssignmentResourceDependentResource","DELETE","/education/me/assignments/{param}/resources/{param}/dependentResources/{param}","matched","Remove-MgEducationMeAssignmentResourceDependentResource" +"Education","RemoveMgEducationMeAssignmentRubric.g.cs","v1.0","Remove-MgEducationMeAssignmentRubric","DELETE","/education/me/assignments/{param}/rubric","matched","Remove-MgEducationMeAssignmentRubric" +"Education","RemoveMgEducationMeAssignmentRubricByRef.g.cs","v1.0","Remove-MgEducationMeAssignmentRubricByRef","DELETE","/education/me/assignments/{param}/rubric/$ref","matched","Remove-MgEducationMeAssignmentRubricByRef" +"Education","RemoveMgEducationMeAssignmentSubmission.g.cs","v1.0","Remove-MgEducationMeAssignmentSubmission","DELETE","/education/me/assignments/{param}/submissions/{param}","matched","Remove-MgEducationMeAssignmentSubmission" +"Education","RemoveMgEducationMeAssignmentSubmissionOutcome.g.cs","v1.0","Remove-MgEducationMeAssignmentSubmissionOutcome","DELETE","/education/me/assignments/{param}/submissions/{param}/outcomes/{param}","matched","Remove-MgEducationMeAssignmentSubmissionOutcome" +"Education","RemoveMgEducationMeAssignmentSubmissionResource.g.cs","v1.0","Remove-MgEducationMeAssignmentSubmissionResource","DELETE","/education/me/assignments/{param}/submissions/{param}/resources/{param}","matched","Remove-MgEducationMeAssignmentSubmissionResource" +"Education","RemoveMgEducationMeAssignmentSubmissionResourceDependentResource.g.cs","v1.0","Remove-MgEducationMeAssignmentSubmissionResourceDependentResource","DELETE","/education/me/assignments/{param}/submissions/{param}/resources/{param}/dependentResources/{param}","matched","Remove-MgEducationMeAssignmentSubmissionResourceDependentResource" +"Education","RemoveMgEducationMeAssignmentSubmissionSubmittedResource.g.cs","v1.0","Remove-MgEducationMeAssignmentSubmissionSubmittedResource","DELETE","/education/me/assignments/{param}/submissions/{param}/submittedResources/{param}","matched","Remove-MgEducationMeAssignmentSubmissionSubmittedResource" +"Education","RemoveMgEducationMeAssignmentSubmissionSubmittedResourceDependentResource.g.cs","v1.0","Remove-MgEducationMeAssignmentSubmissionSubmittedResourceDependentResource","DELETE","/education/me/assignments/{param}/submissions/{param}/submittedResources/{param}/dependentResources/{param}","matched","Remove-MgEducationMeAssignmentSubmissionSubmittedResourceDependentResource" +"Education","RemoveMgEducationMeRubric.g.cs","v1.0","Remove-MgEducationMeRubric","DELETE","/education/me/rubrics/{param}","matched","Remove-MgEducationMeRubric" +"Education","RemoveMgEducationReport.g.cs","v1.0","Remove-MgEducationReport","DELETE","/education/reports","matched","Remove-MgEducationReport" +"Education","RemoveMgEducationReportReadingAssignmentSubmission.g.cs","v1.0","Remove-MgEducationReportReadingAssignmentSubmission","DELETE","/education/reports/readingAssignmentSubmissions/{param}","matched","Remove-MgEducationReportReadingAssignmentSubmission" +"Education","RemoveMgEducationReportReadingCoachPassage.g.cs","v1.0","Remove-MgEducationReportReadingCoachPassage","DELETE","/education/reports/readingCoachPassages/{param}","matched","Remove-MgEducationReportReadingCoachPassage" +"Education","RemoveMgEducationReportReflectCheckInResponse.g.cs","v1.0","Remove-MgEducationReportReflectCheckInResponse","DELETE","/education/reports/reflectCheckInResponses/{param}","mismatch","Remove-MgEducationReportReflectCheck" +"Education","RemoveMgEducationReportSpeakerAssignmentSubmission.g.cs","v1.0","Remove-MgEducationReportSpeakerAssignmentSubmission","DELETE","/education/reports/speakerAssignmentSubmissions/{param}","matched","Remove-MgEducationReportSpeakerAssignmentSubmission" +"Education","RemoveMgEducationSchool.g.cs","v1.0","Remove-MgEducationSchool","DELETE","/education/schools/{param}","matched","Remove-MgEducationSchool" +"Education","RemoveMgEducationSchoolClassByRef.g.cs","v1.0","Remove-MgEducationSchoolClassByRef","DELETE","/education/schools/{param}/classes/{param}/$ref","mismatch","Remove-MgEducationSchoolClassEducationClassByRef" +"Education","RemoveMgEducationSchoolUserByRef.g.cs","v1.0","Remove-MgEducationSchoolUserByRef","DELETE","/education/schools/{param}/users/{param}/$ref","mismatch","Remove-MgEducationSchoolUserEducationUserByRef" +"Education","RemoveMgEducationUser.g.cs","v1.0","Remove-MgEducationUser","DELETE","/education/users/{param}","matched","Remove-MgEducationUser" +"Education","RemoveMgEducationUserAssignment.g.cs","v1.0","Remove-MgEducationUserAssignment","DELETE","/education/users/{param}/assignments/{param}","matched","Remove-MgEducationUserAssignment" +"Education","RemoveMgEducationUserAssignmentCategoryByRef.g.cs","v1.0","Remove-MgEducationUserAssignmentCategoryByRef","DELETE","/education/users/{param}/assignments/{param}/categories/{param}/$ref","mismatch","Remove-MgEducationUserAssignmentCategoryEducationCategoryByRef" +"Education","RemoveMgEducationUserAssignmentResource.g.cs","v1.0","Remove-MgEducationUserAssignmentResource","DELETE","/education/users/{param}/assignments/{param}/resources/{param}","matched","Remove-MgEducationUserAssignmentResource" +"Education","RemoveMgEducationUserAssignmentResourceDependentResource.g.cs","v1.0","Remove-MgEducationUserAssignmentResourceDependentResource","DELETE","/education/users/{param}/assignments/{param}/resources/{param}/dependentResources/{param}","matched","Remove-MgEducationUserAssignmentResourceDependentResource" +"Education","RemoveMgEducationUserAssignmentRubric.g.cs","v1.0","Remove-MgEducationUserAssignmentRubric","DELETE","/education/users/{param}/assignments/{param}/rubric","matched","Remove-MgEducationUserAssignmentRubric" +"Education","RemoveMgEducationUserAssignmentRubricByRef.g.cs","v1.0","Remove-MgEducationUserAssignmentRubricByRef","DELETE","/education/users/{param}/assignments/{param}/rubric/$ref","matched","Remove-MgEducationUserAssignmentRubricByRef" +"Education","RemoveMgEducationUserAssignmentSubmission.g.cs","v1.0","Remove-MgEducationUserAssignmentSubmission","DELETE","/education/users/{param}/assignments/{param}/submissions/{param}","matched","Remove-MgEducationUserAssignmentSubmission" +"Education","RemoveMgEducationUserAssignmentSubmissionOutcome.g.cs","v1.0","Remove-MgEducationUserAssignmentSubmissionOutcome","DELETE","/education/users/{param}/assignments/{param}/submissions/{param}/outcomes/{param}","matched","Remove-MgEducationUserAssignmentSubmissionOutcome" +"Education","RemoveMgEducationUserAssignmentSubmissionResource.g.cs","v1.0","Remove-MgEducationUserAssignmentSubmissionResource","DELETE","/education/users/{param}/assignments/{param}/submissions/{param}/resources/{param}","matched","Remove-MgEducationUserAssignmentSubmissionResource" +"Education","RemoveMgEducationUserAssignmentSubmissionResourceDependentResource.g.cs","v1.0","Remove-MgEducationUserAssignmentSubmissionResourceDependentResource","DELETE","/education/users/{param}/assignments/{param}/submissions/{param}/resources/{param}/dependentResources/{param}","matched","Remove-MgEducationUserAssignmentSubmissionResourceDependentResource" +"Education","RemoveMgEducationUserAssignmentSubmissionSubmittedResource.g.cs","v1.0","Remove-MgEducationUserAssignmentSubmissionSubmittedResource","DELETE","/education/users/{param}/assignments/{param}/submissions/{param}/submittedResources/{param}","matched","Remove-MgEducationUserAssignmentSubmissionSubmittedResource" +"Education","RemoveMgEducationUserAssignmentSubmissionSubmittedResourceDependentResource.g.cs","v1.0","Remove-MgEducationUserAssignmentSubmissionSubmittedResourceDependentResource","DELETE","/education/users/{param}/assignments/{param}/submissions/{param}/submittedResources/{param}/dependentResources/{param}","matched","Remove-MgEducationUserAssignmentSubmissionSubmittedResourceDependentResource" +"Education","RemoveMgEducationUserRubric.g.cs","v1.0","Remove-MgEducationUserRubric","DELETE","/education/users/{param}/rubrics/{param}","matched","Remove-MgEducationUserRubric" +"Education","SetMgEducationClassAssignmentRubricByRef.g.cs","v1.0","Set-MgEducationClassAssignmentRubricByRef","PUT","/education/classes/{param}/assignments/{param}/rubric/$ref","matched","Set-MgEducationClassAssignmentRubricByRef" +"Education","SetMgEducationMeAssignmentRubricByRef.g.cs","v1.0","Set-MgEducationMeAssignmentRubricByRef","PUT","/education/me/assignments/{param}/rubric/$ref","matched","Set-MgEducationMeAssignmentRubricByRef" +"Education","SetMgEducationUserAssignmentRubricByRef.g.cs","v1.0","Set-MgEducationUserAssignmentRubricByRef","PUT","/education/users/{param}/assignments/{param}/rubric/$ref","matched","Set-MgEducationUserAssignmentRubricByRef" +"Education","UpdateMgEducation.g.cs","v1.0","Update-MgEducation","PATCH","/education","matched","Update-MgEducationRoot" +"Education","UpdateMgEducationClass.g.cs","v1.0","Update-MgEducationClass","PATCH","/education/classes/{param}","matched","Update-MgEducationClass" +"Education","UpdateMgEducationClassAssignment.g.cs","v1.0","Update-MgEducationClassAssignment","PATCH","/education/classes/{param}/assignments/{param}","matched","Update-MgEducationClassAssignment" +"Education","UpdateMgEducationClassAssignmentCategory.g.cs","v1.0","Update-MgEducationClassAssignmentCategory","PATCH","/education/classes/{param}/assignmentCategories/{param}","matched","Update-MgEducationClassAssignmentCategory" +"Education","UpdateMgEducationClassAssignmentDefault.g.cs","v1.0","Update-MgEducationClassAssignmentDefault","PATCH","/education/classes/{param}/assignmentDefaults","matched","Update-MgEducationClassAssignmentDefault" +"Education","UpdateMgEducationClassAssignmentResource.g.cs","v1.0","Update-MgEducationClassAssignmentResource","PATCH","/education/classes/{param}/assignments/{param}/resources/{param}","matched","Update-MgEducationClassAssignmentResource" +"Education","UpdateMgEducationClassAssignmentResourceDependentResource.g.cs","v1.0","Update-MgEducationClassAssignmentResourceDependentResource","PATCH","/education/classes/{param}/assignments/{param}/resources/{param}/dependentResources/{param}","matched","Update-MgEducationClassAssignmentResourceDependentResource" +"Education","UpdateMgEducationClassAssignmentRubric.g.cs","v1.0","Update-MgEducationClassAssignmentRubric","PATCH","/education/classes/{param}/assignments/{param}/rubric","matched","Update-MgEducationClassAssignmentRubric" +"Education","UpdateMgEducationClassAssignmentSetting.g.cs","v1.0","Update-MgEducationClassAssignmentSetting","PATCH","/education/classes/{param}/assignmentSettings","matched","Update-MgEducationClassAssignmentSetting" +"Education","UpdateMgEducationClassAssignmentSettingGradingCategory.g.cs","v1.0","Update-MgEducationClassAssignmentSettingGradingCategory","PATCH","/education/classes/{param}/assignmentSettings/gradingCategories/{param}","matched","Update-MgEducationClassAssignmentSettingGradingCategory" +"Education","UpdateMgEducationClassAssignmentSettingGradingScheme.g.cs","v1.0","Update-MgEducationClassAssignmentSettingGradingScheme","PATCH","/education/classes/{param}/assignmentSettings/gradingSchemes/{param}","matched","Update-MgEducationClassAssignmentSettingGradingScheme" +"Education","UpdateMgEducationClassAssignmentSubmission.g.cs","v1.0","Update-MgEducationClassAssignmentSubmission","PATCH","/education/classes/{param}/assignments/{param}/submissions/{param}","matched","Update-MgEducationClassAssignmentSubmission" +"Education","UpdateMgEducationClassAssignmentSubmissionOutcome.g.cs","v1.0","Update-MgEducationClassAssignmentSubmissionOutcome","PATCH","/education/classes/{param}/assignments/{param}/submissions/{param}/outcomes/{param}","matched","Update-MgEducationClassAssignmentSubmissionOutcome" +"Education","UpdateMgEducationClassAssignmentSubmissionResource.g.cs","v1.0","Update-MgEducationClassAssignmentSubmissionResource","PATCH","/education/classes/{param}/assignments/{param}/submissions/{param}/resources/{param}","matched","Update-MgEducationClassAssignmentSubmissionResource" +"Education","UpdateMgEducationClassAssignmentSubmissionResourceDependentResource.g.cs","v1.0","Update-MgEducationClassAssignmentSubmissionResourceDependentResource","PATCH","/education/classes/{param}/assignments/{param}/submissions/{param}/resources/{param}/dependentResources/{param}","matched","Update-MgEducationClassAssignmentSubmissionResourceDependentResource" +"Education","UpdateMgEducationClassAssignmentSubmissionSubmittedResource.g.cs","v1.0","Update-MgEducationClassAssignmentSubmissionSubmittedResource","PATCH","/education/classes/{param}/assignments/{param}/submissions/{param}/submittedResources/{param}","matched","Update-MgEducationClassAssignmentSubmissionSubmittedResource" +"Education","UpdateMgEducationClassAssignmentSubmissionSubmittedResourceDependentResource.g.cs","v1.0","Update-MgEducationClassAssignmentSubmissionSubmittedResourceDependentResource","PATCH","/education/classes/{param}/assignments/{param}/submissions/{param}/submittedResources/{param}/dependentResources/{param}","matched","Update-MgEducationClassAssignmentSubmissionSubmittedResourceDependentResource" +"Education","UpdateMgEducationClassModule.g.cs","v1.0","Update-MgEducationClassModule","PATCH","/education/classes/{param}/modules/{param}","matched","Update-MgEducationClassModule" +"Education","UpdateMgEducationClassModuleResource.g.cs","v1.0","Update-MgEducationClassModuleResource","PATCH","/education/classes/{param}/modules/{param}/resources/{param}","matched","Update-MgEducationClassModuleResource" +"Education","UpdateMgEducationMe.g.cs","v1.0","Update-MgEducationMe","PATCH","/education/me","matched","Update-MgEducationMe" +"Education","UpdateMgEducationMeAssignment.g.cs","v1.0","Update-MgEducationMeAssignment","PATCH","/education/me/assignments/{param}","matched","Update-MgEducationMeAssignment" +"Education","UpdateMgEducationMeAssignmentResource.g.cs","v1.0","Update-MgEducationMeAssignmentResource","PATCH","/education/me/assignments/{param}/resources/{param}","matched","Update-MgEducationMeAssignmentResource" +"Education","UpdateMgEducationMeAssignmentResourceDependentResource.g.cs","v1.0","Update-MgEducationMeAssignmentResourceDependentResource","PATCH","/education/me/assignments/{param}/resources/{param}/dependentResources/{param}","matched","Update-MgEducationMeAssignmentResourceDependentResource" +"Education","UpdateMgEducationMeAssignmentRubric.g.cs","v1.0","Update-MgEducationMeAssignmentRubric","PATCH","/education/me/assignments/{param}/rubric","matched","Update-MgEducationMeAssignmentRubric" +"Education","UpdateMgEducationMeAssignmentSubmission.g.cs","v1.0","Update-MgEducationMeAssignmentSubmission","PATCH","/education/me/assignments/{param}/submissions/{param}","matched","Update-MgEducationMeAssignmentSubmission" +"Education","UpdateMgEducationMeAssignmentSubmissionOutcome.g.cs","v1.0","Update-MgEducationMeAssignmentSubmissionOutcome","PATCH","/education/me/assignments/{param}/submissions/{param}/outcomes/{param}","matched","Update-MgEducationMeAssignmentSubmissionOutcome" +"Education","UpdateMgEducationMeAssignmentSubmissionResource.g.cs","v1.0","Update-MgEducationMeAssignmentSubmissionResource","PATCH","/education/me/assignments/{param}/submissions/{param}/resources/{param}","matched","Update-MgEducationMeAssignmentSubmissionResource" +"Education","UpdateMgEducationMeAssignmentSubmissionResourceDependentResource.g.cs","v1.0","Update-MgEducationMeAssignmentSubmissionResourceDependentResource","PATCH","/education/me/assignments/{param}/submissions/{param}/resources/{param}/dependentResources/{param}","matched","Update-MgEducationMeAssignmentSubmissionResourceDependentResource" +"Education","UpdateMgEducationMeAssignmentSubmissionSubmittedResource.g.cs","v1.0","Update-MgEducationMeAssignmentSubmissionSubmittedResource","PATCH","/education/me/assignments/{param}/submissions/{param}/submittedResources/{param}","matched","Update-MgEducationMeAssignmentSubmissionSubmittedResource" +"Education","UpdateMgEducationMeAssignmentSubmissionSubmittedResourceDependentResource.g.cs","v1.0","Update-MgEducationMeAssignmentSubmissionSubmittedResourceDependentResource","PATCH","/education/me/assignments/{param}/submissions/{param}/submittedResources/{param}/dependentResources/{param}","matched","Update-MgEducationMeAssignmentSubmissionSubmittedResourceDependentResource" +"Education","UpdateMgEducationMeRubric.g.cs","v1.0","Update-MgEducationMeRubric","PATCH","/education/me/rubrics/{param}","matched","Update-MgEducationMeRubric" +"Education","UpdateMgEducationMeUserMailboxSetting.g.cs","v1.0","Update-MgEducationMeUserMailboxSetting","PATCH","/education/me/user/mailboxSettings","matched","Update-MgEducationMeUserMailboxSetting" +"Education","UpdateMgEducationReport.g.cs","v1.0","Update-MgEducationReport","PATCH","/education/reports","matched","Update-MgEducationReport" +"Education","UpdateMgEducationReportReadingAssignmentSubmission.g.cs","v1.0","Update-MgEducationReportReadingAssignmentSubmission","PATCH","/education/reports/readingAssignmentSubmissions/{param}","matched","Update-MgEducationReportReadingAssignmentSubmission" +"Education","UpdateMgEducationReportReadingCoachPassage.g.cs","v1.0","Update-MgEducationReportReadingCoachPassage","PATCH","/education/reports/readingCoachPassages/{param}","matched","Update-MgEducationReportReadingCoachPassage" +"Education","UpdateMgEducationReportReflectCheckInResponse.g.cs","v1.0","Update-MgEducationReportReflectCheckInResponse","PATCH","/education/reports/reflectCheckInResponses/{param}","mismatch","Update-MgEducationReportReflectCheck" +"Education","UpdateMgEducationReportSpeakerAssignmentSubmission.g.cs","v1.0","Update-MgEducationReportSpeakerAssignmentSubmission","PATCH","/education/reports/speakerAssignmentSubmissions/{param}","matched","Update-MgEducationReportSpeakerAssignmentSubmission" +"Education","UpdateMgEducationSchool.g.cs","v1.0","Update-MgEducationSchool","PATCH","/education/schools/{param}","matched","Update-MgEducationSchool" +"Education","UpdateMgEducationSchoolAdministrativeUnit.g.cs","v1.0","Update-MgEducationSchoolAdministrativeUnit","PATCH","/education/schools/{param}/administrativeUnit","matched","Update-MgEducationSchoolAdministrativeUnit" +"Education","UpdateMgEducationUser.g.cs","v1.0","Update-MgEducationUser","PATCH","/education/users/{param}","matched","Update-MgEducationUser" +"Education","UpdateMgEducationUserAssignment.g.cs","v1.0","Update-MgEducationUserAssignment","PATCH","/education/users/{param}/assignments/{param}","matched","Update-MgEducationUserAssignment" +"Education","UpdateMgEducationUserAssignmentResource.g.cs","v1.0","Update-MgEducationUserAssignmentResource","PATCH","/education/users/{param}/assignments/{param}/resources/{param}","matched","Update-MgEducationUserAssignmentResource" +"Education","UpdateMgEducationUserAssignmentResourceDependentResource.g.cs","v1.0","Update-MgEducationUserAssignmentResourceDependentResource","PATCH","/education/users/{param}/assignments/{param}/resources/{param}/dependentResources/{param}","matched","Update-MgEducationUserAssignmentResourceDependentResource" +"Education","UpdateMgEducationUserAssignmentRubric.g.cs","v1.0","Update-MgEducationUserAssignmentRubric","PATCH","/education/users/{param}/assignments/{param}/rubric","matched","Update-MgEducationUserAssignmentRubric" +"Education","UpdateMgEducationUserAssignmentSubmission.g.cs","v1.0","Update-MgEducationUserAssignmentSubmission","PATCH","/education/users/{param}/assignments/{param}/submissions/{param}","matched","Update-MgEducationUserAssignmentSubmission" +"Education","UpdateMgEducationUserAssignmentSubmissionOutcome.g.cs","v1.0","Update-MgEducationUserAssignmentSubmissionOutcome","PATCH","/education/users/{param}/assignments/{param}/submissions/{param}/outcomes/{param}","matched","Update-MgEducationUserAssignmentSubmissionOutcome" +"Education","UpdateMgEducationUserAssignmentSubmissionResource.g.cs","v1.0","Update-MgEducationUserAssignmentSubmissionResource","PATCH","/education/users/{param}/assignments/{param}/submissions/{param}/resources/{param}","matched","Update-MgEducationUserAssignmentSubmissionResource" +"Education","UpdateMgEducationUserAssignmentSubmissionResourceDependentResource.g.cs","v1.0","Update-MgEducationUserAssignmentSubmissionResourceDependentResource","PATCH","/education/users/{param}/assignments/{param}/submissions/{param}/resources/{param}/dependentResources/{param}","matched","Update-MgEducationUserAssignmentSubmissionResourceDependentResource" +"Education","UpdateMgEducationUserAssignmentSubmissionSubmittedResource.g.cs","v1.0","Update-MgEducationUserAssignmentSubmissionSubmittedResource","PATCH","/education/users/{param}/assignments/{param}/submissions/{param}/submittedResources/{param}","matched","Update-MgEducationUserAssignmentSubmissionSubmittedResource" +"Education","UpdateMgEducationUserAssignmentSubmissionSubmittedResourceDependentResource.g.cs","v1.0","Update-MgEducationUserAssignmentSubmissionSubmittedResourceDependentResource","PATCH","/education/users/{param}/assignments/{param}/submissions/{param}/submittedResources/{param}/dependentResources/{param}","matched","Update-MgEducationUserAssignmentSubmissionSubmittedResourceDependentResource" +"Education","UpdateMgEducationUserMailboxSetting.g.cs","v1.0","Update-MgEducationUserMailboxSetting","PATCH","/education/users/{param}/user/mailboxSettings","matched","Update-MgEducationUserMailboxSetting" +"Education","UpdateMgEducationUserRubric.g.cs","v1.0","Update-MgEducationUserRubric","PATCH","/education/users/{param}/rubrics/{param}","matched","Update-MgEducationUserRubric" +"Files","GetMgDrive_Get.g.cs","v1.0","Get-MgDrive","GET","/drives/{param}","matched","Get-MgDrive" +"Files","GetMgDrive_List.g.cs","v1.0","Get-MgDrive","GET","/drives","matched","Get-MgDrive" +"Files","GetMgDrive.g.cs","v1.0","Get-MgDrive","","","dispatcher","" +"Files","GetMgDriveBundle_Get.g.cs","v1.0","Get-MgDriveBundle","GET","/drives/{param}/bundles/{param}","matched","Get-MgDriveBundle" +"Files","GetMgDriveBundle_List.g.cs","v1.0","Get-MgDriveBundle","GET","/drives/{param}/bundles","matched","Get-MgDriveBundle" +"Files","GetMgDriveBundle.g.cs","v1.0","Get-MgDriveBundle","","","dispatcher","" +"Files","GetMgDriveBundleCount.g.cs","v1.0","Get-MgDriveBundleCount","GET","/drives/{param}/bundles/$count","matched","Get-MgDriveBundleCount" +"Files","GetMgDriveCreatedByUser.g.cs","v1.0","Get-MgDriveCreatedByUser","GET","/drives/{param}/createdByUser","matched","Get-MgDriveCreatedByUser" +"Files","GetMgDriveCreatedByUserMailboxSetting.g.cs","v1.0","Get-MgDriveCreatedByUserMailboxSetting","GET","/drives/{param}/createdByUser/mailboxSettings","matched","Get-MgDriveCreatedByUserMailboxSetting" +"Files","GetMgDriveCreatedByUserServiceProvisioningError.g.cs","v1.0","Get-MgDriveCreatedByUserServiceProvisioningError","GET","/drives/{param}/createdByUser/serviceProvisioningErrors","matched","Get-MgDriveCreatedByUserServiceProvisioningError" +"Files","GetMgDriveCreatedByUserServiceProvisioningErrorCount.g.cs","v1.0","Get-MgDriveCreatedByUserServiceProvisioningErrorCount","GET","/drives/{param}/createdByUser/serviceProvisioningErrors/$count","matched","Get-MgDriveCreatedByUserServiceProvisioningErrorCount" +"Files","GetMgDriveFollowing_Get.g.cs","v1.0","Get-MgDriveFollowing","GET","/drives/{param}/following/{param}","matched","Get-MgDriveFollowing" +"Files","GetMgDriveFollowing_List.g.cs","v1.0","Get-MgDriveFollowing","GET","/drives/{param}/following","matched","Get-MgDriveFollowing" +"Files","GetMgDriveFollowing.g.cs","v1.0","Get-MgDriveFollowing","","","dispatcher","" +"Files","GetMgDriveFollowingCount.g.cs","v1.0","Get-MgDriveFollowingCount","GET","/drives/{param}/following/$count","matched","Get-MgDriveFollowingCount" +"Files","GetMgDriveItem_Get.g.cs","v1.0","Get-MgDriveItem","GET","/drives/{param}/items/{param}","matched","Get-MgDriveItem" +"Files","GetMgDriveItem_List.g.cs","v1.0","Get-MgDriveItem","GET","/drives/{param}/items","matched","Get-MgDriveItem" +"Files","GetMgDriveItem.g.cs","v1.0","Get-MgDriveItem","","","dispatcher","" +"Files","GetMgDriveItemAnalytic.g.cs","v1.0","Get-MgDriveItemAnalytic","GET","/drives/{param}/items/{param}/analytics","matched","Get-MgDriveItemAnalytic" +"Files","GetMgDriveItemAnalyticAllTime.g.cs","v1.0","Get-MgDriveItemAnalyticAllTime","GET","/drives/{param}/items/{param}/analytics/allTime","mismatch","Get-MgDriveItemAnalyticTime" +"Files","GetMgDriveItemAnalyticItemActivityStat_Get.g.cs","v1.0","Get-MgDriveItemAnalyticItemActivityStat","GET","/drives/{param}/items/{param}/analytics/itemActivityStats/{param}","matched","Get-MgDriveItemAnalyticItemActivityStat" +"Files","GetMgDriveItemAnalyticItemActivityStat_List.g.cs","v1.0","Get-MgDriveItemAnalyticItemActivityStat","GET","/drives/{param}/items/{param}/analytics/itemActivityStats","matched","Get-MgDriveItemAnalyticItemActivityStat" +"Files","GetMgDriveItemAnalyticItemActivityStat.g.cs","v1.0","Get-MgDriveItemAnalyticItemActivityStat","","","dispatcher","" +"Files","GetMgDriveItemAnalyticItemActivityStatActivity_Get.g.cs","v1.0","Get-MgDriveItemAnalyticItemActivityStatActivity","GET","/drives/{param}/items/{param}/analytics/itemActivityStats/{param}/activities/{param}","no-oracle","" +"Files","GetMgDriveItemAnalyticItemActivityStatActivity_List.g.cs","v1.0","Get-MgDriveItemAnalyticItemActivityStatActivity","GET","/drives/{param}/items/{param}/analytics/itemActivityStats/{param}/activities","matched","Get-MgDriveItemAnalyticItemActivityStatActivity" +"Files","GetMgDriveItemAnalyticItemActivityStatActivity.g.cs","v1.0","Get-MgDriveItemAnalyticItemActivityStatActivity","","","dispatcher","" +"Files","GetMgDriveItemAnalyticItemActivityStatActivityCount.g.cs","v1.0","Get-MgDriveItemAnalyticItemActivityStatActivityCount","GET","/drives/{param}/items/{param}/analytics/itemActivityStats/{param}/activities/$count","no-oracle","" +"Files","GetMgDriveItemAnalyticItemActivityStatActivityDriveItem.g.cs","v1.0","Get-MgDriveItemAnalyticItemActivityStatActivityDriveItem","GET","/drives/{param}/items/{param}/analytics/itemActivityStats/{param}/activities/{param}/driveItem","no-oracle","" +"Files","GetMgDriveItemAnalyticItemActivityStatCount.g.cs","v1.0","Get-MgDriveItemAnalyticItemActivityStatCount","GET","/drives/{param}/items/{param}/analytics/itemActivityStats/$count","matched","Get-MgDriveItemAnalyticItemActivityStatCount" +"Files","GetMgDriveItemAnalyticLastSevenDay.g.cs","v1.0","Get-MgDriveItemAnalyticLastSevenDay","GET","/drives/{param}/items/{param}/analytics/lastSevenDays","matched","Get-MgDriveItemAnalyticLastSevenDay" +"Files","GetMgDriveItemChild_Get.g.cs","v1.0","Get-MgDriveItemChild","GET","/drives/{param}/items/{param}/children/{param}","matched","Get-MgDriveItemChild" +"Files","GetMgDriveItemChild_List.g.cs","v1.0","Get-MgDriveItemChild","GET","/drives/{param}/items/{param}/children","matched","Get-MgDriveItemChild" +"Files","GetMgDriveItemChild.g.cs","v1.0","Get-MgDriveItemChild","","","dispatcher","" +"Files","GetMgDriveItemChildCount.g.cs","v1.0","Get-MgDriveItemChildCount","GET","/drives/{param}/items/{param}/children/$count","matched","Get-MgDriveItemChildCount" +"Files","GetMgDriveItemCount.g.cs","v1.0","Get-MgDriveItemCount","GET","/drives/{param}/items/$count","matched","Get-MgDriveItemCount" +"Files","GetMgDriveItemCreatedByUser.g.cs","v1.0","Get-MgDriveItemCreatedByUser","GET","/drives/{param}/items/{param}/createdByUser","matched","Get-MgDriveItemCreatedByUser" +"Files","GetMgDriveItemCreatedByUserMailboxSetting.g.cs","v1.0","Get-MgDriveItemCreatedByUserMailboxSetting","GET","/drives/{param}/items/{param}/createdByUser/mailboxSettings","matched","Get-MgDriveItemCreatedByUserMailboxSetting" +"Files","GetMgDriveItemCreatedByUserServiceProvisioningError.g.cs","v1.0","Get-MgDriveItemCreatedByUserServiceProvisioningError","GET","/drives/{param}/items/{param}/createdByUser/serviceProvisioningErrors","matched","Get-MgDriveItemCreatedByUserServiceProvisioningError" +"Files","GetMgDriveItemCreatedByUserServiceProvisioningErrorCount.g.cs","v1.0","Get-MgDriveItemCreatedByUserServiceProvisioningErrorCount","GET","/drives/{param}/items/{param}/createdByUser/serviceProvisioningErrors/$count","matched","Get-MgDriveItemCreatedByUserServiceProvisioningErrorCount" +"Files","GetMgDriveItemDelta.g.cs","v1.0","Get-MgDriveItemDelta","GET","/drives/{param}/items/{param}/delta","matched","Get-MgDriveItemDelta" +"Files","GetMgDriveItemDeltaWithToken.g.cs","v1.0","Get-MgDriveItemDeltaWithToken","","","parameterized-function","" +"Files","GetMgDriveItemGetActivitiesByInterval.g.cs","v1.0","Get-MgDriveItemGetActivitiesByInterval","GET","/drives/{param}/items/{param}/getActivitiesByInterval","mismatch","Get-MgDriveItemActivityByInterval" +"Files","GetMgDriveItemGetActivitiesByIntervalWithStartDateTimeWithEndDateTimeWithInterval.g.cs","v1.0","Get-MgDriveItemGetActivitiesByIntervalWithStartDateTimeWithEndDateTimeWithInterval","","","parameterized-function","" +"Files","GetMgDriveItemLastModifiedByUser.g.cs","v1.0","Get-MgDriveItemLastModifiedByUser","GET","/drives/{param}/items/{param}/lastModifiedByUser","matched","Get-MgDriveItemLastModifiedByUser" +"Files","GetMgDriveItemLastModifiedByUserMailboxSetting.g.cs","v1.0","Get-MgDriveItemLastModifiedByUserMailboxSetting","GET","/drives/{param}/items/{param}/lastModifiedByUser/mailboxSettings","matched","Get-MgDriveItemLastModifiedByUserMailboxSetting" +"Files","GetMgDriveItemLastModifiedByUserServiceProvisioningError.g.cs","v1.0","Get-MgDriveItemLastModifiedByUserServiceProvisioningError","GET","/drives/{param}/items/{param}/lastModifiedByUser/serviceProvisioningErrors","matched","Get-MgDriveItemLastModifiedByUserServiceProvisioningError" +"Files","GetMgDriveItemLastModifiedByUserServiceProvisioningErrorCount.g.cs","v1.0","Get-MgDriveItemLastModifiedByUserServiceProvisioningErrorCount","GET","/drives/{param}/items/{param}/lastModifiedByUser/serviceProvisioningErrors/$count","matched","Get-MgDriveItemLastModifiedByUserServiceProvisioningErrorCount" +"Files","GetMgDriveItemListItem.g.cs","v1.0","Get-MgDriveItemListItem","GET","/drives/{param}/items/{param}/listItem","matched","Get-MgDriveItemListItem" +"Files","GetMgDriveItemPermission_Get.g.cs","v1.0","Get-MgDriveItemPermission","GET","/drives/{param}/items/{param}/permissions/{param}","matched","Get-MgDriveItemPermission" +"Files","GetMgDriveItemPermission_List.g.cs","v1.0","Get-MgDriveItemPermission","GET","/drives/{param}/items/{param}/permissions","matched","Get-MgDriveItemPermission" +"Files","GetMgDriveItemPermission.g.cs","v1.0","Get-MgDriveItemPermission","","","dispatcher","" +"Files","GetMgDriveItemPermissionCount.g.cs","v1.0","Get-MgDriveItemPermissionCount","GET","/drives/{param}/items/{param}/permissions/$count","matched","Get-MgDriveItemPermissionCount" +"Files","GetMgDriveItemRetentionLabel.g.cs","v1.0","Get-MgDriveItemRetentionLabel","GET","/drives/{param}/items/{param}/retentionLabel","matched","Get-MgDriveItemRetentionLabel" +"Files","GetMgDriveItemSearchWithQ.g.cs","v1.0","Get-MgDriveItemSearchWithQ","","","parameterized-function","" +"Files","GetMgDriveItemSubscription_Get.g.cs","v1.0","Get-MgDriveItemSubscription","GET","/drives/{param}/items/{param}/subscriptions/{param}","matched","Get-MgDriveItemSubscription" +"Files","GetMgDriveItemSubscription_List.g.cs","v1.0","Get-MgDriveItemSubscription","GET","/drives/{param}/items/{param}/subscriptions","matched","Get-MgDriveItemSubscription" +"Files","GetMgDriveItemSubscription.g.cs","v1.0","Get-MgDriveItemSubscription","","","dispatcher","" +"Files","GetMgDriveItemSubscriptionCount.g.cs","v1.0","Get-MgDriveItemSubscriptionCount","GET","/drives/{param}/items/{param}/subscriptions/$count","matched","Get-MgDriveItemSubscriptionCount" +"Files","GetMgDriveItemThumbnail_Get.g.cs","v1.0","Get-MgDriveItemThumbnail","GET","/drives/{param}/items/{param}/thumbnails/{param}","matched","Get-MgDriveItemThumbnail" +"Files","GetMgDriveItemThumbnail_List.g.cs","v1.0","Get-MgDriveItemThumbnail","GET","/drives/{param}/items/{param}/thumbnails","matched","Get-MgDriveItemThumbnail" +"Files","GetMgDriveItemThumbnail.g.cs","v1.0","Get-MgDriveItemThumbnail","","","dispatcher","" +"Files","GetMgDriveItemThumbnailCount.g.cs","v1.0","Get-MgDriveItemThumbnailCount","GET","/drives/{param}/items/{param}/thumbnails/$count","matched","Get-MgDriveItemThumbnailCount" +"Files","GetMgDriveItemVersion_Get.g.cs","v1.0","Get-MgDriveItemVersion","GET","/drives/{param}/items/{param}/versions/{param}","matched","Get-MgDriveItemVersion" +"Files","GetMgDriveItemVersion_List.g.cs","v1.0","Get-MgDriveItemVersion","GET","/drives/{param}/items/{param}/versions","matched","Get-MgDriveItemVersion" +"Files","GetMgDriveItemVersion.g.cs","v1.0","Get-MgDriveItemVersion","","","dispatcher","" +"Files","GetMgDriveItemVersionCount.g.cs","v1.0","Get-MgDriveItemVersionCount","GET","/drives/{param}/items/{param}/versions/$count","matched","Get-MgDriveItemVersionCount" +"Files","GetMgDriveItemWorkbook.g.cs","v1.0","Get-MgDriveItemWorkbook","GET","/drives/{param}/items/{param}/workbook","no-oracle","" +"Files","GetMgDriveItemWorkbookApplication.g.cs","v1.0","Get-MgDriveItemWorkbookApplication","GET","/drives/{param}/items/{param}/workbook/application","no-oracle","" +"Files","GetMgDriveItemWorkbookComment_Get.g.cs","v1.0","Get-MgDriveItemWorkbookComment","GET","/drives/{param}/items/{param}/workbook/comments/{param}","no-oracle","" +"Files","GetMgDriveItemWorkbookComment_List.g.cs","v1.0","Get-MgDriveItemWorkbookComment","GET","/drives/{param}/items/{param}/workbook/comments","no-oracle","" +"Files","GetMgDriveItemWorkbookComment.g.cs","v1.0","Get-MgDriveItemWorkbookComment","","","dispatcher","" +"Files","GetMgDriveItemWorkbookCommentCount.g.cs","v1.0","Get-MgDriveItemWorkbookCommentCount","GET","/drives/{param}/items/{param}/workbook/comments/$count","no-oracle","" +"Files","GetMgDriveItemWorkbookCommentReply_Get.g.cs","v1.0","Get-MgDriveItemWorkbookCommentReply","GET","/drives/{param}/items/{param}/workbook/comments/{param}/replies/{param}","no-oracle","" +"Files","GetMgDriveItemWorkbookCommentReply_List.g.cs","v1.0","Get-MgDriveItemWorkbookCommentReply","GET","/drives/{param}/items/{param}/workbook/comments/{param}/replies","no-oracle","" +"Files","GetMgDriveItemWorkbookCommentReply.g.cs","v1.0","Get-MgDriveItemWorkbookCommentReply","","","dispatcher","" +"Files","GetMgDriveItemWorkbookCommentReplyCount.g.cs","v1.0","Get-MgDriveItemWorkbookCommentReplyCount","GET","/drives/{param}/items/{param}/workbook/comments/{param}/replies/$count","no-oracle","" +"Files","GetMgDriveItemWorkbookFunction.g.cs","v1.0","Get-MgDriveItemWorkbookFunction","GET","/drives/{param}/items/{param}/workbook/functions","no-oracle","" +"Files","GetMgDriveItemWorkbookName.g.cs","v1.0","Get-MgDriveItemWorkbookName","GET","/drives/{param}/items/{param}/workbook/names","no-oracle","" +"Files","GetMgDriveItemWorkbookNameCount.g.cs","v1.0","Get-MgDriveItemWorkbookNameCount","GET","/drives/{param}/items/{param}/workbook/names/$count","no-oracle","" +"Files","GetMgDriveItemWorkbookNameRange.g.cs","v1.0","Get-MgDriveItemWorkbookNameRange","GET","/drives/{param}/items/{param}/workbook/names/{param}/range","no-oracle","" +"Files","GetMgDriveItemWorkbookNameRangeBoundingRectWithAnotherRange.g.cs","v1.0","Get-MgDriveItemWorkbookNameRangeBoundingRectWithAnotherRange","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookNameRangeCellWithRowWithColumn.g.cs","v1.0","Get-MgDriveItemWorkbookNameRangeCellWithRowWithColumn","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookNameRangeColumnsAfter.g.cs","v1.0","Get-MgDriveItemWorkbookNameRangeColumnsAfter","GET","/drives/{param}/items/{param}/workbook/names/{param}/range/columnsAfter","no-oracle","" +"Files","GetMgDriveItemWorkbookNameRangeColumnsAfterWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookNameRangeColumnsAfterWithCount","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookNameRangeColumnsBefore.g.cs","v1.0","Get-MgDriveItemWorkbookNameRangeColumnsBefore","GET","/drives/{param}/items/{param}/workbook/names/{param}/range/columnsBefore","no-oracle","" +"Files","GetMgDriveItemWorkbookNameRangeColumnsBeforeWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookNameRangeColumnsBeforeWithCount","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookNameRangeColumnWithColumn.g.cs","v1.0","Get-MgDriveItemWorkbookNameRangeColumnWithColumn","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookNameRangeEntireColumn.g.cs","v1.0","Get-MgDriveItemWorkbookNameRangeEntireColumn","GET","/drives/{param}/items/{param}/workbook/names/{param}/range/entireColumn","no-oracle","" +"Files","GetMgDriveItemWorkbookNameRangeEntireRow.g.cs","v1.0","Get-MgDriveItemWorkbookNameRangeEntireRow","GET","/drives/{param}/items/{param}/workbook/names/{param}/range/entireRow","no-oracle","" +"Files","GetMgDriveItemWorkbookNameRangeIntersectionWithAnotherRange.g.cs","v1.0","Get-MgDriveItemWorkbookNameRangeIntersectionWithAnotherRange","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookNameRangeLastCell.g.cs","v1.0","Get-MgDriveItemWorkbookNameRangeLastCell","GET","/drives/{param}/items/{param}/workbook/names/{param}/range/lastCell","no-oracle","" +"Files","GetMgDriveItemWorkbookNameRangeLastColumn.g.cs","v1.0","Get-MgDriveItemWorkbookNameRangeLastColumn","GET","/drives/{param}/items/{param}/workbook/names/{param}/range/lastColumn","no-oracle","" +"Files","GetMgDriveItemWorkbookNameRangeLastRow.g.cs","v1.0","Get-MgDriveItemWorkbookNameRangeLastRow","GET","/drives/{param}/items/{param}/workbook/names/{param}/range/lastRow","no-oracle","" +"Files","GetMgDriveItemWorkbookNameRangeOffsetRangeWithRowOffsetWithColumnOffset.g.cs","v1.0","Get-MgDriveItemWorkbookNameRangeOffsetRangeWithRowOffsetWithColumnOffset","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookNameRangeResizedRangeWithDeltaRowsWithDeltaColumns.g.cs","v1.0","Get-MgDriveItemWorkbookNameRangeResizedRangeWithDeltaRowsWithDeltaColumns","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookNameRangeRowsAbove.g.cs","v1.0","Get-MgDriveItemWorkbookNameRangeRowsAbove","GET","/drives/{param}/items/{param}/workbook/names/{param}/range/rowsAbove","no-oracle","" +"Files","GetMgDriveItemWorkbookNameRangeRowsAboveWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookNameRangeRowsAboveWithCount","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookNameRangeRowsBelow.g.cs","v1.0","Get-MgDriveItemWorkbookNameRangeRowsBelow","GET","/drives/{param}/items/{param}/workbook/names/{param}/range/rowsBelow","no-oracle","" +"Files","GetMgDriveItemWorkbookNameRangeRowsBelowWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookNameRangeRowsBelowWithCount","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookNameRangeRowWithRow.g.cs","v1.0","Get-MgDriveItemWorkbookNameRangeRowWithRow","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookNameRangeUsedRange.g.cs","v1.0","Get-MgDriveItemWorkbookNameRangeUsedRange","GET","/drives/{param}/items/{param}/workbook/names/{param}/range/usedRange","no-oracle","" +"Files","GetMgDriveItemWorkbookNameRangeUsedRangeWithValuesOnly.g.cs","v1.0","Get-MgDriveItemWorkbookNameRangeUsedRangeWithValuesOnly","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookNameRangeVisibleView.g.cs","v1.0","Get-MgDriveItemWorkbookNameRangeVisibleView","GET","/drives/{param}/items/{param}/workbook/names/{param}/range/visibleView","no-oracle","" +"Files","GetMgDriveItemWorkbookNameWorksheet.g.cs","v1.0","Get-MgDriveItemWorkbookNameWorksheet","GET","/drives/{param}/items/{param}/workbook/names/{param}/worksheet","no-oracle","" +"Files","GetMgDriveItemWorkbookOperation_Get.g.cs","v1.0","Get-MgDriveItemWorkbookOperation","GET","/drives/{param}/items/{param}/workbook/operations/{param}","no-oracle","" +"Files","GetMgDriveItemWorkbookOperation_List.g.cs","v1.0","Get-MgDriveItemWorkbookOperation","GET","/drives/{param}/items/{param}/workbook/operations","no-oracle","" +"Files","GetMgDriveItemWorkbookOperation.g.cs","v1.0","Get-MgDriveItemWorkbookOperation","","","dispatcher","" +"Files","GetMgDriveItemWorkbookOperationCount.g.cs","v1.0","Get-MgDriveItemWorkbookOperationCount","GET","/drives/{param}/items/{param}/workbook/operations/$count","no-oracle","" +"Files","GetMgDriveItemWorkbookSessionInfoResourceWithKey.g.cs","v1.0","Get-MgDriveItemWorkbookSessionInfoResourceWithKey","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookTable_Get.g.cs","v1.0","Get-MgDriveItemWorkbookTable","GET","/drives/{param}/items/{param}/workbook/tables/{param}","no-oracle","" +"Files","GetMgDriveItemWorkbookTable_List.g.cs","v1.0","Get-MgDriveItemWorkbookTable","GET","/drives/{param}/items/{param}/workbook/tables","no-oracle","" +"Files","GetMgDriveItemWorkbookTable.g.cs","v1.0","Get-MgDriveItemWorkbookTable","","","dispatcher","" +"Files","GetMgDriveItemWorkbookTableColumn_Get.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumn","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}","no-oracle","" +"Files","GetMgDriveItemWorkbookTableColumn_List.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumn","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns","no-oracle","" +"Files","GetMgDriveItemWorkbookTableColumn.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumn","","","dispatcher","" +"Files","GetMgDriveItemWorkbookTableColumnCount.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnCount","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/$count","no-oracle","" +"Files","GetMgDriveItemWorkbookTableColumnDataBodyRange.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnDataBodyRange","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange","no-oracle","" +"Files","GetMgDriveItemWorkbookTableColumnDataBodyRangeBoundingRectWithAnotherRange.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnDataBodyRangeBoundingRectWithAnotherRange","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookTableColumnDataBodyRangeCellWithRowWithColumn.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnDataBodyRangeCellWithRowWithColumn","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookTableColumnDataBodyRangeColumnsAfter.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnDataBodyRangeColumnsAfter","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/columnsAfter","no-oracle","" +"Files","GetMgDriveItemWorkbookTableColumnDataBodyRangeColumnsAfterWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnDataBodyRangeColumnsAfterWithCount","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookTableColumnDataBodyRangeColumnsBefore.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnDataBodyRangeColumnsBefore","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/columnsBefore","no-oracle","" +"Files","GetMgDriveItemWorkbookTableColumnDataBodyRangeColumnsBeforeWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnDataBodyRangeColumnsBeforeWithCount","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookTableColumnDataBodyRangeColumnWithColumn.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnDataBodyRangeColumnWithColumn","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookTableColumnDataBodyRangeEntireColumn.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnDataBodyRangeEntireColumn","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/entireColumn","no-oracle","" +"Files","GetMgDriveItemWorkbookTableColumnDataBodyRangeEntireRow.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnDataBodyRangeEntireRow","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/entireRow","no-oracle","" +"Files","GetMgDriveItemWorkbookTableColumnDataBodyRangeIntersectionWithAnotherRange.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnDataBodyRangeIntersectionWithAnotherRange","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookTableColumnDataBodyRangeLastCell.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnDataBodyRangeLastCell","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/lastCell","no-oracle","" +"Files","GetMgDriveItemWorkbookTableColumnDataBodyRangeLastColumn.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnDataBodyRangeLastColumn","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/lastColumn","no-oracle","" +"Files","GetMgDriveItemWorkbookTableColumnDataBodyRangeLastRow.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnDataBodyRangeLastRow","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/lastRow","no-oracle","" +"Files","GetMgDriveItemWorkbookTableColumnDataBodyRangeOffsetRangeWithRowOffsetWithColumnOffset.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnDataBodyRangeOffsetRangeWithRowOffsetWithColumnOffset","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookTableColumnDataBodyRangeResizedRangeWithDeltaRowsWithDeltaColumns.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnDataBodyRangeResizedRangeWithDeltaRowsWithDeltaColumns","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookTableColumnDataBodyRangeRowsAbove.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnDataBodyRangeRowsAbove","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/rowsAbove","no-oracle","" +"Files","GetMgDriveItemWorkbookTableColumnDataBodyRangeRowsAboveWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnDataBodyRangeRowsAboveWithCount","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookTableColumnDataBodyRangeRowsBelow.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnDataBodyRangeRowsBelow","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/rowsBelow","no-oracle","" +"Files","GetMgDriveItemWorkbookTableColumnDataBodyRangeRowsBelowWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnDataBodyRangeRowsBelowWithCount","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookTableColumnDataBodyRangeRowWithRow.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnDataBodyRangeRowWithRow","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookTableColumnDataBodyRangeUsedRange.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnDataBodyRangeUsedRange","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/usedRange","no-oracle","" +"Files","GetMgDriveItemWorkbookTableColumnDataBodyRangeUsedRangeWithValuesOnly.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnDataBodyRangeUsedRangeWithValuesOnly","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookTableColumnDataBodyRangeVisibleView.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnDataBodyRangeVisibleView","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/visibleView","no-oracle","" +"Files","GetMgDriveItemWorkbookTableColumnFilter.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnFilter","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/filter","no-oracle","" +"Files","GetMgDriveItemWorkbookTableColumnHeaderRowRange.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnHeaderRowRange","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange","no-oracle","" +"Files","GetMgDriveItemWorkbookTableColumnHeaderRowRangeBoundingRectWithAnotherRange.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnHeaderRowRangeBoundingRectWithAnotherRange","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookTableColumnHeaderRowRangeCellWithRowWithColumn.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnHeaderRowRangeCellWithRowWithColumn","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookTableColumnHeaderRowRangeColumnsAfter.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnHeaderRowRangeColumnsAfter","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/columnsAfter","no-oracle","" +"Files","GetMgDriveItemWorkbookTableColumnHeaderRowRangeColumnsAfterWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnHeaderRowRangeColumnsAfterWithCount","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookTableColumnHeaderRowRangeColumnsBefore.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnHeaderRowRangeColumnsBefore","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/columnsBefore","no-oracle","" +"Files","GetMgDriveItemWorkbookTableColumnHeaderRowRangeColumnsBeforeWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnHeaderRowRangeColumnsBeforeWithCount","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookTableColumnHeaderRowRangeColumnWithColumn.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnHeaderRowRangeColumnWithColumn","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookTableColumnHeaderRowRangeEntireColumn.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnHeaderRowRangeEntireColumn","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/entireColumn","no-oracle","" +"Files","GetMgDriveItemWorkbookTableColumnHeaderRowRangeEntireRow.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnHeaderRowRangeEntireRow","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/entireRow","no-oracle","" +"Files","GetMgDriveItemWorkbookTableColumnHeaderRowRangeIntersectionWithAnotherRange.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnHeaderRowRangeIntersectionWithAnotherRange","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookTableColumnHeaderRowRangeLastCell.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnHeaderRowRangeLastCell","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/lastCell","no-oracle","" +"Files","GetMgDriveItemWorkbookTableColumnHeaderRowRangeLastColumn.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnHeaderRowRangeLastColumn","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/lastColumn","no-oracle","" +"Files","GetMgDriveItemWorkbookTableColumnHeaderRowRangeLastRow.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnHeaderRowRangeLastRow","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/lastRow","no-oracle","" +"Files","GetMgDriveItemWorkbookTableColumnHeaderRowRangeOffsetRangeWithRowOffsetWithColumnOffset.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnHeaderRowRangeOffsetRangeWithRowOffsetWithColumnOffset","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookTableColumnHeaderRowRangeResizedRangeWithDeltaRowsWithDeltaColumns.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnHeaderRowRangeResizedRangeWithDeltaRowsWithDeltaColumns","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookTableColumnHeaderRowRangeRowsAbove.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnHeaderRowRangeRowsAbove","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/rowsAbove","no-oracle","" +"Files","GetMgDriveItemWorkbookTableColumnHeaderRowRangeRowsAboveWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnHeaderRowRangeRowsAboveWithCount","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookTableColumnHeaderRowRangeRowsBelow.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnHeaderRowRangeRowsBelow","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/rowsBelow","no-oracle","" +"Files","GetMgDriveItemWorkbookTableColumnHeaderRowRangeRowsBelowWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnHeaderRowRangeRowsBelowWithCount","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookTableColumnHeaderRowRangeRowWithRow.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnHeaderRowRangeRowWithRow","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookTableColumnHeaderRowRangeUsedRange.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnHeaderRowRangeUsedRange","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/usedRange","no-oracle","" +"Files","GetMgDriveItemWorkbookTableColumnHeaderRowRangeUsedRangeWithValuesOnly.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnHeaderRowRangeUsedRangeWithValuesOnly","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookTableColumnHeaderRowRangeVisibleView.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnHeaderRowRangeVisibleView","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/visibleView","no-oracle","" +"Files","GetMgDriveItemWorkbookTableColumnItemAtWithIndex.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnItemAtWithIndex","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookTableColumnRange.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnRange","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range","no-oracle","" +"Files","GetMgDriveItemWorkbookTableColumnRangeBoundingRectWithAnotherRange.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnRangeBoundingRectWithAnotherRange","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookTableColumnRangeCellWithRowWithColumn.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnRangeCellWithRowWithColumn","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookTableColumnRangeColumnsAfter.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnRangeColumnsAfter","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/columnsAfter","no-oracle","" +"Files","GetMgDriveItemWorkbookTableColumnRangeColumnsAfterWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnRangeColumnsAfterWithCount","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookTableColumnRangeColumnsBefore.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnRangeColumnsBefore","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/columnsBefore","no-oracle","" +"Files","GetMgDriveItemWorkbookTableColumnRangeColumnsBeforeWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnRangeColumnsBeforeWithCount","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookTableColumnRangeColumnWithColumn.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnRangeColumnWithColumn","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookTableColumnRangeEntireColumn.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnRangeEntireColumn","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/entireColumn","no-oracle","" +"Files","GetMgDriveItemWorkbookTableColumnRangeEntireRow.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnRangeEntireRow","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/entireRow","no-oracle","" +"Files","GetMgDriveItemWorkbookTableColumnRangeIntersectionWithAnotherRange.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnRangeIntersectionWithAnotherRange","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookTableColumnRangeLastCell.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnRangeLastCell","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/lastCell","no-oracle","" +"Files","GetMgDriveItemWorkbookTableColumnRangeLastColumn.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnRangeLastColumn","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/lastColumn","no-oracle","" +"Files","GetMgDriveItemWorkbookTableColumnRangeLastRow.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnRangeLastRow","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/lastRow","no-oracle","" +"Files","GetMgDriveItemWorkbookTableColumnRangeOffsetRangeWithRowOffsetWithColumnOffset.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnRangeOffsetRangeWithRowOffsetWithColumnOffset","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookTableColumnRangeResizedRangeWithDeltaRowsWithDeltaColumns.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnRangeResizedRangeWithDeltaRowsWithDeltaColumns","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookTableColumnRangeRowsAbove.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnRangeRowsAbove","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/rowsAbove","no-oracle","" +"Files","GetMgDriveItemWorkbookTableColumnRangeRowsAboveWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnRangeRowsAboveWithCount","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookTableColumnRangeRowsBelow.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnRangeRowsBelow","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/rowsBelow","no-oracle","" +"Files","GetMgDriveItemWorkbookTableColumnRangeRowsBelowWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnRangeRowsBelowWithCount","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookTableColumnRangeRowWithRow.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnRangeRowWithRow","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookTableColumnRangeUsedRange.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnRangeUsedRange","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/usedRange","no-oracle","" +"Files","GetMgDriveItemWorkbookTableColumnRangeUsedRangeWithValuesOnly.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnRangeUsedRangeWithValuesOnly","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookTableColumnRangeVisibleView.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnRangeVisibleView","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/visibleView","no-oracle","" +"Files","GetMgDriveItemWorkbookTableColumnTotalRowRange.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnTotalRowRange","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange","no-oracle","" +"Files","GetMgDriveItemWorkbookTableColumnTotalRowRangeBoundingRectWithAnotherRange.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnTotalRowRangeBoundingRectWithAnotherRange","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookTableColumnTotalRowRangeCellWithRowWithColumn.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnTotalRowRangeCellWithRowWithColumn","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookTableColumnTotalRowRangeColumnsAfter.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnTotalRowRangeColumnsAfter","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/columnsAfter","no-oracle","" +"Files","GetMgDriveItemWorkbookTableColumnTotalRowRangeColumnsAfterWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnTotalRowRangeColumnsAfterWithCount","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookTableColumnTotalRowRangeColumnsBefore.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnTotalRowRangeColumnsBefore","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/columnsBefore","no-oracle","" +"Files","GetMgDriveItemWorkbookTableColumnTotalRowRangeColumnsBeforeWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnTotalRowRangeColumnsBeforeWithCount","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookTableColumnTotalRowRangeColumnWithColumn.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnTotalRowRangeColumnWithColumn","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookTableColumnTotalRowRangeEntireColumn.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnTotalRowRangeEntireColumn","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/entireColumn","no-oracle","" +"Files","GetMgDriveItemWorkbookTableColumnTotalRowRangeEntireRow.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnTotalRowRangeEntireRow","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/entireRow","no-oracle","" +"Files","GetMgDriveItemWorkbookTableColumnTotalRowRangeIntersectionWithAnotherRange.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnTotalRowRangeIntersectionWithAnotherRange","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookTableColumnTotalRowRangeLastCell.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnTotalRowRangeLastCell","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/lastCell","no-oracle","" +"Files","GetMgDriveItemWorkbookTableColumnTotalRowRangeLastColumn.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnTotalRowRangeLastColumn","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/lastColumn","no-oracle","" +"Files","GetMgDriveItemWorkbookTableColumnTotalRowRangeLastRow.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnTotalRowRangeLastRow","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/lastRow","no-oracle","" +"Files","GetMgDriveItemWorkbookTableColumnTotalRowRangeOffsetRangeWithRowOffsetWithColumnOffset.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnTotalRowRangeOffsetRangeWithRowOffsetWithColumnOffset","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookTableColumnTotalRowRangeResizedRangeWithDeltaRowsWithDeltaColumns.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnTotalRowRangeResizedRangeWithDeltaRowsWithDeltaColumns","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookTableColumnTotalRowRangeRowsAbove.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnTotalRowRangeRowsAbove","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/rowsAbove","no-oracle","" +"Files","GetMgDriveItemWorkbookTableColumnTotalRowRangeRowsAboveWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnTotalRowRangeRowsAboveWithCount","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookTableColumnTotalRowRangeRowsBelow.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnTotalRowRangeRowsBelow","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/rowsBelow","no-oracle","" +"Files","GetMgDriveItemWorkbookTableColumnTotalRowRangeRowsBelowWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnTotalRowRangeRowsBelowWithCount","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookTableColumnTotalRowRangeRowWithRow.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnTotalRowRangeRowWithRow","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookTableColumnTotalRowRangeUsedRange.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnTotalRowRangeUsedRange","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/usedRange","no-oracle","" +"Files","GetMgDriveItemWorkbookTableColumnTotalRowRangeUsedRangeWithValuesOnly.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnTotalRowRangeUsedRangeWithValuesOnly","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookTableColumnTotalRowRangeVisibleView.g.cs","v1.0","Get-MgDriveItemWorkbookTableColumnTotalRowRangeVisibleView","GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/visibleView","no-oracle","" +"Files","GetMgDriveItemWorkbookTableCount.g.cs","v1.0","Get-MgDriveItemWorkbookTableCount","GET","/drives/{param}/items/{param}/workbook/tables/$count","no-oracle","" +"Files","GetMgDriveItemWorkbookTableDataBodyRange.g.cs","v1.0","Get-MgDriveItemWorkbookTableDataBodyRange","GET","/drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange","no-oracle","" +"Files","GetMgDriveItemWorkbookTableDataBodyRangeBoundingRectWithAnotherRange.g.cs","v1.0","Get-MgDriveItemWorkbookTableDataBodyRangeBoundingRectWithAnotherRange","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookTableDataBodyRangeCellWithRowWithColumn.g.cs","v1.0","Get-MgDriveItemWorkbookTableDataBodyRangeCellWithRowWithColumn","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookTableDataBodyRangeColumnsAfter.g.cs","v1.0","Get-MgDriveItemWorkbookTableDataBodyRangeColumnsAfter","GET","/drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/columnsAfter","no-oracle","" +"Files","GetMgDriveItemWorkbookTableDataBodyRangeColumnsAfterWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookTableDataBodyRangeColumnsAfterWithCount","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookTableDataBodyRangeColumnsBefore.g.cs","v1.0","Get-MgDriveItemWorkbookTableDataBodyRangeColumnsBefore","GET","/drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/columnsBefore","no-oracle","" +"Files","GetMgDriveItemWorkbookTableDataBodyRangeColumnsBeforeWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookTableDataBodyRangeColumnsBeforeWithCount","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookTableDataBodyRangeColumnWithColumn.g.cs","v1.0","Get-MgDriveItemWorkbookTableDataBodyRangeColumnWithColumn","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookTableDataBodyRangeEntireColumn.g.cs","v1.0","Get-MgDriveItemWorkbookTableDataBodyRangeEntireColumn","GET","/drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/entireColumn","no-oracle","" +"Files","GetMgDriveItemWorkbookTableDataBodyRangeEntireRow.g.cs","v1.0","Get-MgDriveItemWorkbookTableDataBodyRangeEntireRow","GET","/drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/entireRow","no-oracle","" +"Files","GetMgDriveItemWorkbookTableDataBodyRangeIntersectionWithAnotherRange.g.cs","v1.0","Get-MgDriveItemWorkbookTableDataBodyRangeIntersectionWithAnotherRange","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookTableDataBodyRangeLastCell.g.cs","v1.0","Get-MgDriveItemWorkbookTableDataBodyRangeLastCell","GET","/drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/lastCell","no-oracle","" +"Files","GetMgDriveItemWorkbookTableDataBodyRangeLastColumn.g.cs","v1.0","Get-MgDriveItemWorkbookTableDataBodyRangeLastColumn","GET","/drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/lastColumn","no-oracle","" +"Files","GetMgDriveItemWorkbookTableDataBodyRangeLastRow.g.cs","v1.0","Get-MgDriveItemWorkbookTableDataBodyRangeLastRow","GET","/drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/lastRow","no-oracle","" +"Files","GetMgDriveItemWorkbookTableDataBodyRangeOffsetRangeWithRowOffsetWithColumnOffset.g.cs","v1.0","Get-MgDriveItemWorkbookTableDataBodyRangeOffsetRangeWithRowOffsetWithColumnOffset","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookTableDataBodyRangeResizedRangeWithDeltaRowsWithDeltaColumns.g.cs","v1.0","Get-MgDriveItemWorkbookTableDataBodyRangeResizedRangeWithDeltaRowsWithDeltaColumns","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookTableDataBodyRangeRowsAbove.g.cs","v1.0","Get-MgDriveItemWorkbookTableDataBodyRangeRowsAbove","GET","/drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/rowsAbove","no-oracle","" +"Files","GetMgDriveItemWorkbookTableDataBodyRangeRowsAboveWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookTableDataBodyRangeRowsAboveWithCount","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookTableDataBodyRangeRowsBelow.g.cs","v1.0","Get-MgDriveItemWorkbookTableDataBodyRangeRowsBelow","GET","/drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/rowsBelow","no-oracle","" +"Files","GetMgDriveItemWorkbookTableDataBodyRangeRowsBelowWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookTableDataBodyRangeRowsBelowWithCount","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookTableDataBodyRangeRowWithRow.g.cs","v1.0","Get-MgDriveItemWorkbookTableDataBodyRangeRowWithRow","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookTableDataBodyRangeUsedRange.g.cs","v1.0","Get-MgDriveItemWorkbookTableDataBodyRangeUsedRange","GET","/drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/usedRange","no-oracle","" +"Files","GetMgDriveItemWorkbookTableDataBodyRangeUsedRangeWithValuesOnly.g.cs","v1.0","Get-MgDriveItemWorkbookTableDataBodyRangeUsedRangeWithValuesOnly","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookTableDataBodyRangeVisibleView.g.cs","v1.0","Get-MgDriveItemWorkbookTableDataBodyRangeVisibleView","GET","/drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/visibleView","no-oracle","" +"Files","GetMgDriveItemWorkbookTableHeaderRowRange.g.cs","v1.0","Get-MgDriveItemWorkbookTableHeaderRowRange","GET","/drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange","no-oracle","" +"Files","GetMgDriveItemWorkbookTableHeaderRowRangeBoundingRectWithAnotherRange.g.cs","v1.0","Get-MgDriveItemWorkbookTableHeaderRowRangeBoundingRectWithAnotherRange","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookTableHeaderRowRangeCellWithRowWithColumn.g.cs","v1.0","Get-MgDriveItemWorkbookTableHeaderRowRangeCellWithRowWithColumn","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookTableHeaderRowRangeColumnsAfter.g.cs","v1.0","Get-MgDriveItemWorkbookTableHeaderRowRangeColumnsAfter","GET","/drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/columnsAfter","no-oracle","" +"Files","GetMgDriveItemWorkbookTableHeaderRowRangeColumnsAfterWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookTableHeaderRowRangeColumnsAfterWithCount","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookTableHeaderRowRangeColumnsBefore.g.cs","v1.0","Get-MgDriveItemWorkbookTableHeaderRowRangeColumnsBefore","GET","/drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/columnsBefore","no-oracle","" +"Files","GetMgDriveItemWorkbookTableHeaderRowRangeColumnsBeforeWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookTableHeaderRowRangeColumnsBeforeWithCount","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookTableHeaderRowRangeColumnWithColumn.g.cs","v1.0","Get-MgDriveItemWorkbookTableHeaderRowRangeColumnWithColumn","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookTableHeaderRowRangeEntireColumn.g.cs","v1.0","Get-MgDriveItemWorkbookTableHeaderRowRangeEntireColumn","GET","/drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/entireColumn","no-oracle","" +"Files","GetMgDriveItemWorkbookTableHeaderRowRangeEntireRow.g.cs","v1.0","Get-MgDriveItemWorkbookTableHeaderRowRangeEntireRow","GET","/drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/entireRow","no-oracle","" +"Files","GetMgDriveItemWorkbookTableHeaderRowRangeIntersectionWithAnotherRange.g.cs","v1.0","Get-MgDriveItemWorkbookTableHeaderRowRangeIntersectionWithAnotherRange","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookTableHeaderRowRangeLastCell.g.cs","v1.0","Get-MgDriveItemWorkbookTableHeaderRowRangeLastCell","GET","/drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/lastCell","no-oracle","" +"Files","GetMgDriveItemWorkbookTableHeaderRowRangeLastColumn.g.cs","v1.0","Get-MgDriveItemWorkbookTableHeaderRowRangeLastColumn","GET","/drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/lastColumn","no-oracle","" +"Files","GetMgDriveItemWorkbookTableHeaderRowRangeLastRow.g.cs","v1.0","Get-MgDriveItemWorkbookTableHeaderRowRangeLastRow","GET","/drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/lastRow","no-oracle","" +"Files","GetMgDriveItemWorkbookTableHeaderRowRangeOffsetRangeWithRowOffsetWithColumnOffset.g.cs","v1.0","Get-MgDriveItemWorkbookTableHeaderRowRangeOffsetRangeWithRowOffsetWithColumnOffset","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookTableHeaderRowRangeResizedRangeWithDeltaRowsWithDeltaColumns.g.cs","v1.0","Get-MgDriveItemWorkbookTableHeaderRowRangeResizedRangeWithDeltaRowsWithDeltaColumns","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookTableHeaderRowRangeRowsAbove.g.cs","v1.0","Get-MgDriveItemWorkbookTableHeaderRowRangeRowsAbove","GET","/drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/rowsAbove","no-oracle","" +"Files","GetMgDriveItemWorkbookTableHeaderRowRangeRowsAboveWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookTableHeaderRowRangeRowsAboveWithCount","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookTableHeaderRowRangeRowsBelow.g.cs","v1.0","Get-MgDriveItemWorkbookTableHeaderRowRangeRowsBelow","GET","/drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/rowsBelow","no-oracle","" +"Files","GetMgDriveItemWorkbookTableHeaderRowRangeRowsBelowWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookTableHeaderRowRangeRowsBelowWithCount","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookTableHeaderRowRangeRowWithRow.g.cs","v1.0","Get-MgDriveItemWorkbookTableHeaderRowRangeRowWithRow","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookTableHeaderRowRangeUsedRange.g.cs","v1.0","Get-MgDriveItemWorkbookTableHeaderRowRangeUsedRange","GET","/drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/usedRange","no-oracle","" +"Files","GetMgDriveItemWorkbookTableHeaderRowRangeUsedRangeWithValuesOnly.g.cs","v1.0","Get-MgDriveItemWorkbookTableHeaderRowRangeUsedRangeWithValuesOnly","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookTableHeaderRowRangeVisibleView.g.cs","v1.0","Get-MgDriveItemWorkbookTableHeaderRowRangeVisibleView","GET","/drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/visibleView","no-oracle","" +"Files","GetMgDriveItemWorkbookTableItemAtWithIndex.g.cs","v1.0","Get-MgDriveItemWorkbookTableItemAtWithIndex","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookTableRange.g.cs","v1.0","Get-MgDriveItemWorkbookTableRange","GET","/drives/{param}/items/{param}/workbook/tables/{param}/range","no-oracle","" +"Files","GetMgDriveItemWorkbookTableRangeBoundingRectWithAnotherRange.g.cs","v1.0","Get-MgDriveItemWorkbookTableRangeBoundingRectWithAnotherRange","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookTableRangeCellWithRowWithColumn.g.cs","v1.0","Get-MgDriveItemWorkbookTableRangeCellWithRowWithColumn","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookTableRangeColumnsAfter.g.cs","v1.0","Get-MgDriveItemWorkbookTableRangeColumnsAfter","GET","/drives/{param}/items/{param}/workbook/tables/{param}/range/columnsAfter","no-oracle","" +"Files","GetMgDriveItemWorkbookTableRangeColumnsAfterWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookTableRangeColumnsAfterWithCount","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookTableRangeColumnsBefore.g.cs","v1.0","Get-MgDriveItemWorkbookTableRangeColumnsBefore","GET","/drives/{param}/items/{param}/workbook/tables/{param}/range/columnsBefore","no-oracle","" +"Files","GetMgDriveItemWorkbookTableRangeColumnsBeforeWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookTableRangeColumnsBeforeWithCount","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookTableRangeColumnWithColumn.g.cs","v1.0","Get-MgDriveItemWorkbookTableRangeColumnWithColumn","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookTableRangeEntireColumn.g.cs","v1.0","Get-MgDriveItemWorkbookTableRangeEntireColumn","GET","/drives/{param}/items/{param}/workbook/tables/{param}/range/entireColumn","no-oracle","" +"Files","GetMgDriveItemWorkbookTableRangeEntireRow.g.cs","v1.0","Get-MgDriveItemWorkbookTableRangeEntireRow","GET","/drives/{param}/items/{param}/workbook/tables/{param}/range/entireRow","no-oracle","" +"Files","GetMgDriveItemWorkbookTableRangeIntersectionWithAnotherRange.g.cs","v1.0","Get-MgDriveItemWorkbookTableRangeIntersectionWithAnotherRange","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookTableRangeLastCell.g.cs","v1.0","Get-MgDriveItemWorkbookTableRangeLastCell","GET","/drives/{param}/items/{param}/workbook/tables/{param}/range/lastCell","no-oracle","" +"Files","GetMgDriveItemWorkbookTableRangeLastColumn.g.cs","v1.0","Get-MgDriveItemWorkbookTableRangeLastColumn","GET","/drives/{param}/items/{param}/workbook/tables/{param}/range/lastColumn","no-oracle","" +"Files","GetMgDriveItemWorkbookTableRangeLastRow.g.cs","v1.0","Get-MgDriveItemWorkbookTableRangeLastRow","GET","/drives/{param}/items/{param}/workbook/tables/{param}/range/lastRow","no-oracle","" +"Files","GetMgDriveItemWorkbookTableRangeOffsetRangeWithRowOffsetWithColumnOffset.g.cs","v1.0","Get-MgDriveItemWorkbookTableRangeOffsetRangeWithRowOffsetWithColumnOffset","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookTableRangeResizedRangeWithDeltaRowsWithDeltaColumns.g.cs","v1.0","Get-MgDriveItemWorkbookTableRangeResizedRangeWithDeltaRowsWithDeltaColumns","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookTableRangeRowsAbove.g.cs","v1.0","Get-MgDriveItemWorkbookTableRangeRowsAbove","GET","/drives/{param}/items/{param}/workbook/tables/{param}/range/rowsAbove","no-oracle","" +"Files","GetMgDriveItemWorkbookTableRangeRowsAboveWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookTableRangeRowsAboveWithCount","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookTableRangeRowsBelow.g.cs","v1.0","Get-MgDriveItemWorkbookTableRangeRowsBelow","GET","/drives/{param}/items/{param}/workbook/tables/{param}/range/rowsBelow","no-oracle","" +"Files","GetMgDriveItemWorkbookTableRangeRowsBelowWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookTableRangeRowsBelowWithCount","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookTableRangeRowWithRow.g.cs","v1.0","Get-MgDriveItemWorkbookTableRangeRowWithRow","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookTableRangeUsedRange.g.cs","v1.0","Get-MgDriveItemWorkbookTableRangeUsedRange","GET","/drives/{param}/items/{param}/workbook/tables/{param}/range/usedRange","no-oracle","" +"Files","GetMgDriveItemWorkbookTableRangeUsedRangeWithValuesOnly.g.cs","v1.0","Get-MgDriveItemWorkbookTableRangeUsedRangeWithValuesOnly","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookTableRangeVisibleView.g.cs","v1.0","Get-MgDriveItemWorkbookTableRangeVisibleView","GET","/drives/{param}/items/{param}/workbook/tables/{param}/range/visibleView","no-oracle","" +"Files","GetMgDriveItemWorkbookTableRow_Get.g.cs","v1.0","Get-MgDriveItemWorkbookTableRow","GET","/drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}","no-oracle","" +"Files","GetMgDriveItemWorkbookTableRow_List.g.cs","v1.0","Get-MgDriveItemWorkbookTableRow","GET","/drives/{param}/items/{param}/workbook/tables/{param}/rows","no-oracle","" +"Files","GetMgDriveItemWorkbookTableRow.g.cs","v1.0","Get-MgDriveItemWorkbookTableRow","","","dispatcher","" +"Files","GetMgDriveItemWorkbookTableRowCount.g.cs","v1.0","Get-MgDriveItemWorkbookTableRowCount","GET","/drives/{param}/items/{param}/workbook/tables/{param}/rows/$count","no-oracle","" +"Files","GetMgDriveItemWorkbookTableRowItemAtWithIndex.g.cs","v1.0","Get-MgDriveItemWorkbookTableRowItemAtWithIndex","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookTableRowOperationResultWithKey.g.cs","v1.0","Get-MgDriveItemWorkbookTableRowOperationResultWithKey","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookTableRowRange.g.cs","v1.0","Get-MgDriveItemWorkbookTableRowRange","GET","/drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range","no-oracle","" +"Files","GetMgDriveItemWorkbookTableRowRangeBoundingRectWithAnotherRange.g.cs","v1.0","Get-MgDriveItemWorkbookTableRowRangeBoundingRectWithAnotherRange","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookTableRowRangeCellWithRowWithColumn.g.cs","v1.0","Get-MgDriveItemWorkbookTableRowRangeCellWithRowWithColumn","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookTableRowRangeColumnsAfter.g.cs","v1.0","Get-MgDriveItemWorkbookTableRowRangeColumnsAfter","GET","/drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/columnsAfter","no-oracle","" +"Files","GetMgDriveItemWorkbookTableRowRangeColumnsAfterWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookTableRowRangeColumnsAfterWithCount","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookTableRowRangeColumnsBefore.g.cs","v1.0","Get-MgDriveItemWorkbookTableRowRangeColumnsBefore","GET","/drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/columnsBefore","no-oracle","" +"Files","GetMgDriveItemWorkbookTableRowRangeColumnsBeforeWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookTableRowRangeColumnsBeforeWithCount","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookTableRowRangeColumnWithColumn.g.cs","v1.0","Get-MgDriveItemWorkbookTableRowRangeColumnWithColumn","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookTableRowRangeEntireColumn.g.cs","v1.0","Get-MgDriveItemWorkbookTableRowRangeEntireColumn","GET","/drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/entireColumn","no-oracle","" +"Files","GetMgDriveItemWorkbookTableRowRangeEntireRow.g.cs","v1.0","Get-MgDriveItemWorkbookTableRowRangeEntireRow","GET","/drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/entireRow","no-oracle","" +"Files","GetMgDriveItemWorkbookTableRowRangeIntersectionWithAnotherRange.g.cs","v1.0","Get-MgDriveItemWorkbookTableRowRangeIntersectionWithAnotherRange","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookTableRowRangeLastCell.g.cs","v1.0","Get-MgDriveItemWorkbookTableRowRangeLastCell","GET","/drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/lastCell","no-oracle","" +"Files","GetMgDriveItemWorkbookTableRowRangeLastColumn.g.cs","v1.0","Get-MgDriveItemWorkbookTableRowRangeLastColumn","GET","/drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/lastColumn","no-oracle","" +"Files","GetMgDriveItemWorkbookTableRowRangeLastRow.g.cs","v1.0","Get-MgDriveItemWorkbookTableRowRangeLastRow","GET","/drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/lastRow","no-oracle","" +"Files","GetMgDriveItemWorkbookTableRowRangeOffsetRangeWithRowOffsetWithColumnOffset.g.cs","v1.0","Get-MgDriveItemWorkbookTableRowRangeOffsetRangeWithRowOffsetWithColumnOffset","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookTableRowRangeResizedRangeWithDeltaRowsWithDeltaColumns.g.cs","v1.0","Get-MgDriveItemWorkbookTableRowRangeResizedRangeWithDeltaRowsWithDeltaColumns","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookTableRowRangeRowsAbove.g.cs","v1.0","Get-MgDriveItemWorkbookTableRowRangeRowsAbove","GET","/drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/rowsAbove","no-oracle","" +"Files","GetMgDriveItemWorkbookTableRowRangeRowsAboveWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookTableRowRangeRowsAboveWithCount","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookTableRowRangeRowsBelow.g.cs","v1.0","Get-MgDriveItemWorkbookTableRowRangeRowsBelow","GET","/drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/rowsBelow","no-oracle","" +"Files","GetMgDriveItemWorkbookTableRowRangeRowsBelowWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookTableRowRangeRowsBelowWithCount","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookTableRowRangeRowWithRow.g.cs","v1.0","Get-MgDriveItemWorkbookTableRowRangeRowWithRow","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookTableRowRangeUsedRange.g.cs","v1.0","Get-MgDriveItemWorkbookTableRowRangeUsedRange","GET","/drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/usedRange","no-oracle","" +"Files","GetMgDriveItemWorkbookTableRowRangeUsedRangeWithValuesOnly.g.cs","v1.0","Get-MgDriveItemWorkbookTableRowRangeUsedRangeWithValuesOnly","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookTableRowRangeVisibleView.g.cs","v1.0","Get-MgDriveItemWorkbookTableRowRangeVisibleView","GET","/drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/visibleView","no-oracle","" +"Files","GetMgDriveItemWorkbookTableSort.g.cs","v1.0","Get-MgDriveItemWorkbookTableSort","GET","/drives/{param}/items/{param}/workbook/tables/{param}/sort","no-oracle","" +"Files","GetMgDriveItemWorkbookTableTotalRowRange.g.cs","v1.0","Get-MgDriveItemWorkbookTableTotalRowRange","GET","/drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange","no-oracle","" +"Files","GetMgDriveItemWorkbookTableTotalRowRangeBoundingRectWithAnotherRange.g.cs","v1.0","Get-MgDriveItemWorkbookTableTotalRowRangeBoundingRectWithAnotherRange","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookTableTotalRowRangeCellWithRowWithColumn.g.cs","v1.0","Get-MgDriveItemWorkbookTableTotalRowRangeCellWithRowWithColumn","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookTableTotalRowRangeColumnsAfter.g.cs","v1.0","Get-MgDriveItemWorkbookTableTotalRowRangeColumnsAfter","GET","/drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/columnsAfter","no-oracle","" +"Files","GetMgDriveItemWorkbookTableTotalRowRangeColumnsAfterWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookTableTotalRowRangeColumnsAfterWithCount","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookTableTotalRowRangeColumnsBefore.g.cs","v1.0","Get-MgDriveItemWorkbookTableTotalRowRangeColumnsBefore","GET","/drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/columnsBefore","no-oracle","" +"Files","GetMgDriveItemWorkbookTableTotalRowRangeColumnsBeforeWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookTableTotalRowRangeColumnsBeforeWithCount","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookTableTotalRowRangeColumnWithColumn.g.cs","v1.0","Get-MgDriveItemWorkbookTableTotalRowRangeColumnWithColumn","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookTableTotalRowRangeEntireColumn.g.cs","v1.0","Get-MgDriveItemWorkbookTableTotalRowRangeEntireColumn","GET","/drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/entireColumn","no-oracle","" +"Files","GetMgDriveItemWorkbookTableTotalRowRangeEntireRow.g.cs","v1.0","Get-MgDriveItemWorkbookTableTotalRowRangeEntireRow","GET","/drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/entireRow","no-oracle","" +"Files","GetMgDriveItemWorkbookTableTotalRowRangeIntersectionWithAnotherRange.g.cs","v1.0","Get-MgDriveItemWorkbookTableTotalRowRangeIntersectionWithAnotherRange","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookTableTotalRowRangeLastCell.g.cs","v1.0","Get-MgDriveItemWorkbookTableTotalRowRangeLastCell","GET","/drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/lastCell","no-oracle","" +"Files","GetMgDriveItemWorkbookTableTotalRowRangeLastColumn.g.cs","v1.0","Get-MgDriveItemWorkbookTableTotalRowRangeLastColumn","GET","/drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/lastColumn","no-oracle","" +"Files","GetMgDriveItemWorkbookTableTotalRowRangeLastRow.g.cs","v1.0","Get-MgDriveItemWorkbookTableTotalRowRangeLastRow","GET","/drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/lastRow","no-oracle","" +"Files","GetMgDriveItemWorkbookTableTotalRowRangeOffsetRangeWithRowOffsetWithColumnOffset.g.cs","v1.0","Get-MgDriveItemWorkbookTableTotalRowRangeOffsetRangeWithRowOffsetWithColumnOffset","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookTableTotalRowRangeResizedRangeWithDeltaRowsWithDeltaColumns.g.cs","v1.0","Get-MgDriveItemWorkbookTableTotalRowRangeResizedRangeWithDeltaRowsWithDeltaColumns","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookTableTotalRowRangeRowsAbove.g.cs","v1.0","Get-MgDriveItemWorkbookTableTotalRowRangeRowsAbove","GET","/drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/rowsAbove","no-oracle","" +"Files","GetMgDriveItemWorkbookTableTotalRowRangeRowsAboveWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookTableTotalRowRangeRowsAboveWithCount","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookTableTotalRowRangeRowsBelow.g.cs","v1.0","Get-MgDriveItemWorkbookTableTotalRowRangeRowsBelow","GET","/drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/rowsBelow","no-oracle","" +"Files","GetMgDriveItemWorkbookTableTotalRowRangeRowsBelowWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookTableTotalRowRangeRowsBelowWithCount","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookTableTotalRowRangeRowWithRow.g.cs","v1.0","Get-MgDriveItemWorkbookTableTotalRowRangeRowWithRow","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookTableTotalRowRangeUsedRange.g.cs","v1.0","Get-MgDriveItemWorkbookTableTotalRowRangeUsedRange","GET","/drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/usedRange","no-oracle","" +"Files","GetMgDriveItemWorkbookTableTotalRowRangeUsedRangeWithValuesOnly.g.cs","v1.0","Get-MgDriveItemWorkbookTableTotalRowRangeUsedRangeWithValuesOnly","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookTableTotalRowRangeVisibleView.g.cs","v1.0","Get-MgDriveItemWorkbookTableTotalRowRangeVisibleView","GET","/drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/visibleView","no-oracle","" +"Files","GetMgDriveItemWorkbookTableWorksheet.g.cs","v1.0","Get-MgDriveItemWorkbookTableWorksheet","GET","/drives/{param}/items/{param}/workbook/tables/{param}/worksheet","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheet_Get.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheet","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheet_List.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheet","GET","/drives/{param}/items/{param}/workbook/worksheets","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheet.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheet","","","dispatcher","" +"Files","GetMgDriveItemWorkbookWorksheetCellWithRowWithColumn.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetCellWithRowWithColumn","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetChart_Get.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChart","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetChart_List.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChart","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetChart.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChart","","","dispatcher","" +"Files","GetMgDriveItemWorkbookWorksheetChartAx.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartAx","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetChartAxCategoryAxis.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartAxCategoryAxis","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetChartAxCategoryAxisFormat.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartAxCategoryAxisFormat","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/format","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetChartAxCategoryAxisFormatFont.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartAxCategoryAxisFormatFont","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/format/font","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetChartAxCategoryAxisFormatLine.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartAxCategoryAxisFormatLine","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/format/line","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetChartAxCategoryAxisMajorGridline.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMajorGridline","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/majorGridlines","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetChartAxCategoryAxisMajorGridlineFormat.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMajorGridlineFormat","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/majorGridlines/format","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetChartAxCategoryAxisMajorGridlineFormatLine.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMajorGridlineFormatLine","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/majorGridlines/format/line","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetChartAxCategoryAxisMinorGridline.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMinorGridline","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/minorGridlines","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetChartAxCategoryAxisMinorGridlineFormat.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMinorGridlineFormat","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/minorGridlines/format","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetChartAxCategoryAxisMinorGridlineFormatLine.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMinorGridlineFormatLine","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/minorGridlines/format/line","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetChartAxCategoryAxisTitle.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartAxCategoryAxisTitle","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/title","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetChartAxCategoryAxisTitleFormat.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartAxCategoryAxisTitleFormat","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/title/format","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetChartAxCategoryAxisTitleFormatFont.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartAxCategoryAxisTitleFormatFont","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/title/format/font","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetChartAxSeryAxis.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartAxSeryAxis","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetChartAxSeryAxisFormat.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartAxSeryAxisFormat","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/format","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetChartAxSeryAxisFormatFont.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartAxSeryAxisFormatFont","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/format/font","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetChartAxSeryAxisFormatLine.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartAxSeryAxisFormatLine","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/format/line","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetChartAxSeryAxisMajorGridline.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartAxSeryAxisMajorGridline","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/majorGridlines","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetChartAxSeryAxisMajorGridlineFormat.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartAxSeryAxisMajorGridlineFormat","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/majorGridlines/format","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetChartAxSeryAxisMajorGridlineFormatLine.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartAxSeryAxisMajorGridlineFormatLine","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/majorGridlines/format/line","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetChartAxSeryAxisMinorGridline.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartAxSeryAxisMinorGridline","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/minorGridlines","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetChartAxSeryAxisMinorGridlineFormat.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartAxSeryAxisMinorGridlineFormat","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/minorGridlines/format","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetChartAxSeryAxisMinorGridlineFormatLine.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartAxSeryAxisMinorGridlineFormatLine","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/minorGridlines/format/line","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetChartAxSeryAxisTitle.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartAxSeryAxisTitle","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/title","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetChartAxSeryAxisTitleFormat.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartAxSeryAxisTitleFormat","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/title/format","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetChartAxSeryAxisTitleFormatFont.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartAxSeryAxisTitleFormatFont","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/title/format/font","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetChartAxValueAxis.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartAxValueAxis","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetChartAxValueAxisFormat.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartAxValueAxisFormat","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/format","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetChartAxValueAxisFormatFont.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartAxValueAxisFormatFont","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/format/font","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetChartAxValueAxisFormatLine.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartAxValueAxisFormatLine","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/format/line","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetChartAxValueAxisMajorGridline.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartAxValueAxisMajorGridline","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/majorGridlines","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetChartAxValueAxisMajorGridlineFormat.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartAxValueAxisMajorGridlineFormat","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/majorGridlines/format","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetChartAxValueAxisMajorGridlineFormatLine.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartAxValueAxisMajorGridlineFormatLine","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/majorGridlines/format/line","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetChartAxValueAxisMinorGridline.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartAxValueAxisMinorGridline","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/minorGridlines","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetChartAxValueAxisMinorGridlineFormat.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartAxValueAxisMinorGridlineFormat","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/minorGridlines/format","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetChartAxValueAxisMinorGridlineFormatLine.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartAxValueAxisMinorGridlineFormatLine","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/minorGridlines/format/line","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetChartAxValueAxisTitle.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartAxValueAxisTitle","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/title","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetChartAxValueAxisTitleFormat.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartAxValueAxisTitleFormat","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/title/format","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetChartAxValueAxisTitleFormatFont.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartAxValueAxisTitleFormatFont","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/title/format/font","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetChartCount.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartCount","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/$count","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetChartDataLabel.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartDataLabel","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/dataLabels","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetChartDataLabelFormat.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartDataLabelFormat","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/dataLabels/format","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetChartDataLabelFormatFill.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartDataLabelFormatFill","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/dataLabels/format/fill","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetChartDataLabelFormatFont.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartDataLabelFormatFont","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/dataLabels/format/font","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetChartFormat.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartFormat","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/format","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetChartFormatFill.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartFormatFill","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/format/fill","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetChartFormatFont.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartFormatFont","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/format/font","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetChartImage.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartImage","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/image","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetChartImageWithWidth.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartImageWithWidth","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetChartImageWithWidthWithHeight.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartImageWithWidthWithHeight","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetChartImageWithWidthWithHeightWithFittingMode.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartImageWithWidthWithHeightWithFittingMode","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetChartItemAtWithIndex.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartItemAtWithIndex","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetChartItemWithName.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartItemWithName","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetChartLegend.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartLegend","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/legend","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetChartLegendFormat.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartLegendFormat","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/legend/format","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetChartLegendFormatFill.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartLegendFormatFill","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/legend/format/fill","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetChartLegendFormatFont.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartLegendFormatFont","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/legend/format/font","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetChartSery_Get.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartSery","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetChartSery_List.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartSery","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetChartSery.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartSery","","","dispatcher","" +"Files","GetMgDriveItemWorkbookWorksheetChartSeryCount.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartSeryCount","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/$count","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetChartSeryFormat.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartSeryFormat","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/format","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetChartSeryFormatFill.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartSeryFormatFill","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/format/fill","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetChartSeryFormatLine.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartSeryFormatLine","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/format/line","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetChartSeryItemAtWithIndex.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartSeryItemAtWithIndex","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetChartSeryPoint.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartSeryPoint","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/points","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetChartSeryPointCount.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartSeryPointCount","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/points/$count","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetChartSeryPointFormat.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartSeryPointFormat","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/points/{param}/format","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetChartSeryPointFormatFill.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartSeryPointFormatFill","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/points/{param}/format/fill","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetChartSeryPointItemAtWithIndex.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartSeryPointItemAtWithIndex","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetChartTitle.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartTitle","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/title","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetChartTitleFormat.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartTitleFormat","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/title/format","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetChartTitleFormatFill.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartTitleFormatFill","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/title/format/fill","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetChartTitleFormatFont.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartTitleFormatFont","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/title/format/font","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetChartWorksheet.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetChartWorksheet","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/worksheet","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetCount.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetCount","GET","/drives/{param}/items/{param}/workbook/worksheets/$count","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetName.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetName","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/names","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetNameCount.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetNameCount","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/names/$count","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetNameRange.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetNameRange","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetNameRangeBoundingRectWithAnotherRange.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetNameRangeBoundingRectWithAnotherRange","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetNameRangeCellWithRowWithColumn.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetNameRangeCellWithRowWithColumn","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetNameRangeColumnsAfter.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetNameRangeColumnsAfter","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/columnsAfter","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetNameRangeColumnsAfterWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetNameRangeColumnsAfterWithCount","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetNameRangeColumnsBefore.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetNameRangeColumnsBefore","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/columnsBefore","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetNameRangeColumnsBeforeWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetNameRangeColumnsBeforeWithCount","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetNameRangeColumnWithColumn.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetNameRangeColumnWithColumn","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetNameRangeEntireColumn.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetNameRangeEntireColumn","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/entireColumn","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetNameRangeEntireRow.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetNameRangeEntireRow","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/entireRow","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetNameRangeIntersectionWithAnotherRange.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetNameRangeIntersectionWithAnotherRange","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetNameRangeLastCell.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetNameRangeLastCell","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/lastCell","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetNameRangeLastColumn.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetNameRangeLastColumn","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/lastColumn","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetNameRangeLastRow.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetNameRangeLastRow","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/lastRow","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetNameRangeOffsetRangeWithRowOffsetWithColumnOffset.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetNameRangeOffsetRangeWithRowOffsetWithColumnOffset","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetNameRangeResizedRangeWithDeltaRowsWithDeltaColumns.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetNameRangeResizedRangeWithDeltaRowsWithDeltaColumns","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetNameRangeRowsAbove.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetNameRangeRowsAbove","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/rowsAbove","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetNameRangeRowsAboveWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetNameRangeRowsAboveWithCount","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetNameRangeRowsBelow.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetNameRangeRowsBelow","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/rowsBelow","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetNameRangeRowsBelowWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetNameRangeRowsBelowWithCount","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetNameRangeRowWithRow.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetNameRangeRowWithRow","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetNameRangeUsedRange.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetNameRangeUsedRange","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/usedRange","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetNameRangeUsedRangeWithValuesOnly.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetNameRangeUsedRangeWithValuesOnly","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetNameRangeVisibleView.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetNameRangeVisibleView","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/visibleView","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetNameWorksheet.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetNameWorksheet","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/worksheet","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetPivotTable_Get.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetPivotTable","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/pivotTables/{param}","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetPivotTable_List.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetPivotTable","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/pivotTables","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetPivotTable.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetPivotTable","","","dispatcher","" +"Files","GetMgDriveItemWorkbookWorksheetPivotTableCount.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetPivotTableCount","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/pivotTables/$count","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetPivotTableWorksheet.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetPivotTableWorksheet","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/pivotTables/{param}/worksheet","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetProtection.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetProtection","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/protection","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetRange.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetRange","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/range","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetRangeBoundingRectWithAnotherRange.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetRangeBoundingRectWithAnotherRange","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetRangeCellWithRowWithColumn.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetRangeCellWithRowWithColumn","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetRangeColumnsAfter.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetRangeColumnsAfter","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/range/columnsAfter","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetRangeColumnsAfterWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetRangeColumnsAfterWithCount","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetRangeColumnsBefore.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetRangeColumnsBefore","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/range/columnsBefore","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetRangeColumnsBeforeWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetRangeColumnsBeforeWithCount","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetRangeColumnWithColumn.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetRangeColumnWithColumn","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetRangeEntireColumn.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetRangeEntireColumn","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/range/entireColumn","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetRangeEntireRow.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetRangeEntireRow","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/range/entireRow","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetRangeIntersectionWithAnotherRange.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetRangeIntersectionWithAnotherRange","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetRangeLastCell.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetRangeLastCell","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/range/lastCell","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetRangeLastColumn.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetRangeLastColumn","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/range/lastColumn","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetRangeLastRow.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetRangeLastRow","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/range/lastRow","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetRangeOffsetRangeWithRowOffsetWithColumnOffset.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetRangeOffsetRangeWithRowOffsetWithColumnOffset","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetRangeResizedRangeWithDeltaRowsWithDeltaColumns.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetRangeResizedRangeWithDeltaRowsWithDeltaColumns","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetRangeRowsAbove.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetRangeRowsAbove","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/range/rowsAbove","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetRangeRowsAboveWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetRangeRowsAboveWithCount","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetRangeRowsBelow.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetRangeRowsBelow","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/range/rowsBelow","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetRangeRowsBelowWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetRangeRowsBelowWithCount","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetRangeRowWithRow.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetRangeRowWithRow","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetRangeUsedRange.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetRangeUsedRange","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/range/usedRange","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetRangeUsedRangeWithValuesOnly.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetRangeUsedRangeWithValuesOnly","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetRangeVisibleView.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetRangeVisibleView","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/range/visibleView","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetRangeWithAddress.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetRangeWithAddress","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetTable_Get.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTable","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTable_List.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTable","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTable.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTable","","","dispatcher","" +"Files","GetMgDriveItemWorkbookWorksheetTableColumn_Get.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumn","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableColumn_List.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumn","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableColumn.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumn","","","dispatcher","" +"Files","GetMgDriveItemWorkbookWorksheetTableColumnCount.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnCount","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/$count","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableColumnDataBodyRange.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRange","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableColumnDataBodyRangeBoundingRectWithAnotherRange.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeBoundingRectWithAnotherRange","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetTableColumnDataBodyRangeCellWithRowWithColumn.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeCellWithRowWithColumn","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetTableColumnDataBodyRangeColumnsAfter.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeColumnsAfter","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/columnsAfter","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableColumnDataBodyRangeColumnsAfterWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeColumnsAfterWithCount","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetTableColumnDataBodyRangeColumnsBefore.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeColumnsBefore","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/columnsBefore","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableColumnDataBodyRangeColumnsBeforeWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeColumnsBeforeWithCount","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetTableColumnDataBodyRangeColumnWithColumn.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeColumnWithColumn","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetTableColumnDataBodyRangeEntireColumn.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeEntireColumn","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/entireColumn","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableColumnDataBodyRangeEntireRow.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeEntireRow","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/entireRow","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableColumnDataBodyRangeIntersectionWithAnotherRange.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeIntersectionWithAnotherRange","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetTableColumnDataBodyRangeLastCell.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeLastCell","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/lastCell","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableColumnDataBodyRangeLastColumn.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeLastColumn","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/lastColumn","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableColumnDataBodyRangeLastRow.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeLastRow","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/lastRow","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableColumnDataBodyRangeOffsetRangeWithRowOffsetWithColumnOffset.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeOffsetRangeWithRowOffsetWithColumnOffset","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetTableColumnDataBodyRangeResizedRangeWithDeltaRowsWithDeltaColumns.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeResizedRangeWithDeltaRowsWithDeltaColumns","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetTableColumnDataBodyRangeRowsAbove.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeRowsAbove","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/rowsAbove","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableColumnDataBodyRangeRowsAboveWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeRowsAboveWithCount","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetTableColumnDataBodyRangeRowsBelow.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeRowsBelow","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/rowsBelow","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableColumnDataBodyRangeRowsBelowWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeRowsBelowWithCount","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetTableColumnDataBodyRangeRowWithRow.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeRowWithRow","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetTableColumnDataBodyRangeUsedRange.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeUsedRange","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/usedRange","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableColumnDataBodyRangeUsedRangeWithValuesOnly.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeUsedRangeWithValuesOnly","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetTableColumnDataBodyRangeVisibleView.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeVisibleView","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/visibleView","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableColumnFilter.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnFilter","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/filter","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableColumnHeaderRowRange.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRange","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeBoundingRectWithAnotherRange.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeBoundingRectWithAnotherRange","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeCellWithRowWithColumn.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeCellWithRowWithColumn","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeColumnsAfter.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeColumnsAfter","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/columnsAfter","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeColumnsAfterWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeColumnsAfterWithCount","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeColumnsBefore.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeColumnsBefore","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/columnsBefore","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeColumnsBeforeWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeColumnsBeforeWithCount","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeColumnWithColumn.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeColumnWithColumn","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeEntireColumn.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeEntireColumn","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/entireColumn","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeEntireRow.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeEntireRow","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/entireRow","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeIntersectionWithAnotherRange.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeIntersectionWithAnotherRange","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeLastCell.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeLastCell","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/lastCell","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeLastColumn.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeLastColumn","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/lastColumn","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeLastRow.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeLastRow","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/lastRow","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeOffsetRangeWithRowOffsetWithColumnOffset.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeOffsetRangeWithRowOffsetWithColumnOffset","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeResizedRangeWithDeltaRowsWithDeltaColumns.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeResizedRangeWithDeltaRowsWithDeltaColumns","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeRowsAbove.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeRowsAbove","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/rowsAbove","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeRowsAboveWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeRowsAboveWithCount","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeRowsBelow.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeRowsBelow","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/rowsBelow","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeRowsBelowWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeRowsBelowWithCount","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeRowWithRow.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeRowWithRow","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeUsedRange.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeUsedRange","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/usedRange","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeUsedRangeWithValuesOnly.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeUsedRangeWithValuesOnly","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeVisibleView.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeVisibleView","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/visibleView","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableColumnItemAtWithIndex.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnItemAtWithIndex","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetTableColumnRange.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnRange","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableColumnRangeBoundingRectWithAnotherRange.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnRangeBoundingRectWithAnotherRange","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetTableColumnRangeCellWithRowWithColumn.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnRangeCellWithRowWithColumn","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetTableColumnRangeColumnsAfter.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnRangeColumnsAfter","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/columnsAfter","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableColumnRangeColumnsAfterWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnRangeColumnsAfterWithCount","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetTableColumnRangeColumnsBefore.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnRangeColumnsBefore","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/columnsBefore","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableColumnRangeColumnsBeforeWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnRangeColumnsBeforeWithCount","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetTableColumnRangeColumnWithColumn.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnRangeColumnWithColumn","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetTableColumnRangeEntireColumn.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnRangeEntireColumn","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/entireColumn","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableColumnRangeEntireRow.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnRangeEntireRow","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/entireRow","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableColumnRangeIntersectionWithAnotherRange.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnRangeIntersectionWithAnotherRange","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetTableColumnRangeLastCell.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnRangeLastCell","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/lastCell","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableColumnRangeLastColumn.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnRangeLastColumn","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/lastColumn","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableColumnRangeLastRow.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnRangeLastRow","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/lastRow","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableColumnRangeOffsetRangeWithRowOffsetWithColumnOffset.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnRangeOffsetRangeWithRowOffsetWithColumnOffset","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetTableColumnRangeResizedRangeWithDeltaRowsWithDeltaColumns.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnRangeResizedRangeWithDeltaRowsWithDeltaColumns","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetTableColumnRangeRowsAbove.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnRangeRowsAbove","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/rowsAbove","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableColumnRangeRowsAboveWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnRangeRowsAboveWithCount","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetTableColumnRangeRowsBelow.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnRangeRowsBelow","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/rowsBelow","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableColumnRangeRowsBelowWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnRangeRowsBelowWithCount","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetTableColumnRangeRowWithRow.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnRangeRowWithRow","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetTableColumnRangeUsedRange.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnRangeUsedRange","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/usedRange","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableColumnRangeUsedRangeWithValuesOnly.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnRangeUsedRangeWithValuesOnly","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetTableColumnRangeVisibleView.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnRangeVisibleView","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/visibleView","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableColumnTotalRowRange.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRange","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableColumnTotalRowRangeBoundingRectWithAnotherRange.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeBoundingRectWithAnotherRange","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetTableColumnTotalRowRangeCellWithRowWithColumn.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeCellWithRowWithColumn","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetTableColumnTotalRowRangeColumnsAfter.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeColumnsAfter","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/columnsAfter","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableColumnTotalRowRangeColumnsAfterWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeColumnsAfterWithCount","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetTableColumnTotalRowRangeColumnsBefore.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeColumnsBefore","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/columnsBefore","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableColumnTotalRowRangeColumnsBeforeWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeColumnsBeforeWithCount","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetTableColumnTotalRowRangeColumnWithColumn.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeColumnWithColumn","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetTableColumnTotalRowRangeEntireColumn.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeEntireColumn","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/entireColumn","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableColumnTotalRowRangeEntireRow.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeEntireRow","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/entireRow","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableColumnTotalRowRangeIntersectionWithAnotherRange.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeIntersectionWithAnotherRange","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetTableColumnTotalRowRangeLastCell.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeLastCell","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/lastCell","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableColumnTotalRowRangeLastColumn.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeLastColumn","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/lastColumn","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableColumnTotalRowRangeLastRow.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeLastRow","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/lastRow","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableColumnTotalRowRangeOffsetRangeWithRowOffsetWithColumnOffset.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeOffsetRangeWithRowOffsetWithColumnOffset","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetTableColumnTotalRowRangeResizedRangeWithDeltaRowsWithDeltaColumns.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeResizedRangeWithDeltaRowsWithDeltaColumns","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetTableColumnTotalRowRangeRowsAbove.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeRowsAbove","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/rowsAbove","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableColumnTotalRowRangeRowsAboveWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeRowsAboveWithCount","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetTableColumnTotalRowRangeRowsBelow.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeRowsBelow","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/rowsBelow","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableColumnTotalRowRangeRowsBelowWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeRowsBelowWithCount","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetTableColumnTotalRowRangeRowWithRow.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeRowWithRow","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetTableColumnTotalRowRangeUsedRange.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeUsedRange","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/usedRange","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableColumnTotalRowRangeUsedRangeWithValuesOnly.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeUsedRangeWithValuesOnly","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetTableColumnTotalRowRangeVisibleView.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeVisibleView","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/visibleView","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableCount.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableCount","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/$count","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableDataBodyRange.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableDataBodyRange","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableDataBodyRangeBoundingRectWithAnotherRange.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeBoundingRectWithAnotherRange","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetTableDataBodyRangeCellWithRowWithColumn.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeCellWithRowWithColumn","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetTableDataBodyRangeColumnsAfter.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeColumnsAfter","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/columnsAfter","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableDataBodyRangeColumnsAfterWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeColumnsAfterWithCount","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetTableDataBodyRangeColumnsBefore.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeColumnsBefore","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/columnsBefore","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableDataBodyRangeColumnsBeforeWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeColumnsBeforeWithCount","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetTableDataBodyRangeColumnWithColumn.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeColumnWithColumn","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetTableDataBodyRangeEntireColumn.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeEntireColumn","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/entireColumn","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableDataBodyRangeEntireRow.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeEntireRow","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/entireRow","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableDataBodyRangeIntersectionWithAnotherRange.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeIntersectionWithAnotherRange","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetTableDataBodyRangeLastCell.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeLastCell","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/lastCell","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableDataBodyRangeLastColumn.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeLastColumn","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/lastColumn","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableDataBodyRangeLastRow.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeLastRow","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/lastRow","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableDataBodyRangeOffsetRangeWithRowOffsetWithColumnOffset.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeOffsetRangeWithRowOffsetWithColumnOffset","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetTableDataBodyRangeResizedRangeWithDeltaRowsWithDeltaColumns.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeResizedRangeWithDeltaRowsWithDeltaColumns","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetTableDataBodyRangeRowsAbove.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeRowsAbove","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/rowsAbove","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableDataBodyRangeRowsAboveWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeRowsAboveWithCount","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetTableDataBodyRangeRowsBelow.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeRowsBelow","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/rowsBelow","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableDataBodyRangeRowsBelowWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeRowsBelowWithCount","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetTableDataBodyRangeRowWithRow.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeRowWithRow","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetTableDataBodyRangeUsedRange.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeUsedRange","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/usedRange","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableDataBodyRangeUsedRangeWithValuesOnly.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeUsedRangeWithValuesOnly","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetTableDataBodyRangeVisibleView.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeVisibleView","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/visibleView","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableHeaderRowRange.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableHeaderRowRange","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableHeaderRowRangeBoundingRectWithAnotherRange.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeBoundingRectWithAnotherRange","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetTableHeaderRowRangeCellWithRowWithColumn.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeCellWithRowWithColumn","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetTableHeaderRowRangeColumnsAfter.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeColumnsAfter","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/columnsAfter","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableHeaderRowRangeColumnsAfterWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeColumnsAfterWithCount","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetTableHeaderRowRangeColumnsBefore.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeColumnsBefore","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/columnsBefore","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableHeaderRowRangeColumnsBeforeWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeColumnsBeforeWithCount","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetTableHeaderRowRangeColumnWithColumn.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeColumnWithColumn","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetTableHeaderRowRangeEntireColumn.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeEntireColumn","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/entireColumn","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableHeaderRowRangeEntireRow.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeEntireRow","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/entireRow","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableHeaderRowRangeIntersectionWithAnotherRange.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeIntersectionWithAnotherRange","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetTableHeaderRowRangeLastCell.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeLastCell","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/lastCell","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableHeaderRowRangeLastColumn.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeLastColumn","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/lastColumn","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableHeaderRowRangeLastRow.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeLastRow","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/lastRow","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableHeaderRowRangeOffsetRangeWithRowOffsetWithColumnOffset.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeOffsetRangeWithRowOffsetWithColumnOffset","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetTableHeaderRowRangeResizedRangeWithDeltaRowsWithDeltaColumns.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeResizedRangeWithDeltaRowsWithDeltaColumns","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetTableHeaderRowRangeRowsAbove.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeRowsAbove","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/rowsAbove","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableHeaderRowRangeRowsAboveWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeRowsAboveWithCount","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetTableHeaderRowRangeRowsBelow.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeRowsBelow","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/rowsBelow","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableHeaderRowRangeRowsBelowWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeRowsBelowWithCount","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetTableHeaderRowRangeRowWithRow.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeRowWithRow","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetTableHeaderRowRangeUsedRange.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeUsedRange","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/usedRange","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableHeaderRowRangeUsedRangeWithValuesOnly.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeUsedRangeWithValuesOnly","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetTableHeaderRowRangeVisibleView.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeVisibleView","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/visibleView","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableItemAtWithIndex.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableItemAtWithIndex","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetTableRange.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableRange","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableRangeBoundingRectWithAnotherRange.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableRangeBoundingRectWithAnotherRange","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetTableRangeCellWithRowWithColumn.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableRangeCellWithRowWithColumn","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetTableRangeColumnsAfter.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableRangeColumnsAfter","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/columnsAfter","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableRangeColumnsAfterWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableRangeColumnsAfterWithCount","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetTableRangeColumnsBefore.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableRangeColumnsBefore","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/columnsBefore","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableRangeColumnsBeforeWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableRangeColumnsBeforeWithCount","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetTableRangeColumnWithColumn.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableRangeColumnWithColumn","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetTableRangeEntireColumn.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableRangeEntireColumn","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/entireColumn","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableRangeEntireRow.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableRangeEntireRow","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/entireRow","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableRangeIntersectionWithAnotherRange.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableRangeIntersectionWithAnotherRange","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetTableRangeLastCell.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableRangeLastCell","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/lastCell","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableRangeLastColumn.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableRangeLastColumn","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/lastColumn","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableRangeLastRow.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableRangeLastRow","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/lastRow","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableRangeOffsetRangeWithRowOffsetWithColumnOffset.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableRangeOffsetRangeWithRowOffsetWithColumnOffset","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetTableRangeResizedRangeWithDeltaRowsWithDeltaColumns.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableRangeResizedRangeWithDeltaRowsWithDeltaColumns","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetTableRangeRowsAbove.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableRangeRowsAbove","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/rowsAbove","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableRangeRowsAboveWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableRangeRowsAboveWithCount","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetTableRangeRowsBelow.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableRangeRowsBelow","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/rowsBelow","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableRangeRowsBelowWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableRangeRowsBelowWithCount","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetTableRangeRowWithRow.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableRangeRowWithRow","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetTableRangeUsedRange.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableRangeUsedRange","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/usedRange","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableRangeUsedRangeWithValuesOnly.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableRangeUsedRangeWithValuesOnly","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetTableRangeVisibleView.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableRangeVisibleView","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/visibleView","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableRow_Get.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableRow","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableRow_List.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableRow","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableRow.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableRow","","","dispatcher","" +"Files","GetMgDriveItemWorkbookWorksheetTableRowCount.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableRowCount","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/$count","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableRowItemAtWithIndex.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableRowItemAtWithIndex","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetTableRowRange.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableRowRange","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableRowRangeBoundingRectWithAnotherRange.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableRowRangeBoundingRectWithAnotherRange","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetTableRowRangeCellWithRowWithColumn.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableRowRangeCellWithRowWithColumn","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetTableRowRangeColumnsAfter.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableRowRangeColumnsAfter","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/columnsAfter","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableRowRangeColumnsAfterWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableRowRangeColumnsAfterWithCount","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetTableRowRangeColumnsBefore.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableRowRangeColumnsBefore","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/columnsBefore","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableRowRangeColumnsBeforeWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableRowRangeColumnsBeforeWithCount","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetTableRowRangeColumnWithColumn.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableRowRangeColumnWithColumn","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetTableRowRangeEntireColumn.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableRowRangeEntireColumn","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/entireColumn","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableRowRangeEntireRow.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableRowRangeEntireRow","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/entireRow","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableRowRangeIntersectionWithAnotherRange.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableRowRangeIntersectionWithAnotherRange","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetTableRowRangeLastCell.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableRowRangeLastCell","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/lastCell","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableRowRangeLastColumn.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableRowRangeLastColumn","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/lastColumn","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableRowRangeLastRow.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableRowRangeLastRow","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/lastRow","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableRowRangeOffsetRangeWithRowOffsetWithColumnOffset.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableRowRangeOffsetRangeWithRowOffsetWithColumnOffset","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetTableRowRangeResizedRangeWithDeltaRowsWithDeltaColumns.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableRowRangeResizedRangeWithDeltaRowsWithDeltaColumns","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetTableRowRangeRowsAbove.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableRowRangeRowsAbove","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/rowsAbove","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableRowRangeRowsAboveWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableRowRangeRowsAboveWithCount","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetTableRowRangeRowsBelow.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableRowRangeRowsBelow","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/rowsBelow","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableRowRangeRowsBelowWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableRowRangeRowsBelowWithCount","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetTableRowRangeRowWithRow.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableRowRangeRowWithRow","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetTableRowRangeUsedRange.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableRowRangeUsedRange","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/usedRange","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableRowRangeUsedRangeWithValuesOnly.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableRowRangeUsedRangeWithValuesOnly","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetTableRowRangeVisibleView.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableRowRangeVisibleView","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/visibleView","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableSort.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableSort","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/sort","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableTotalRowRange.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableTotalRowRange","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableTotalRowRangeBoundingRectWithAnotherRange.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeBoundingRectWithAnotherRange","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetTableTotalRowRangeCellWithRowWithColumn.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeCellWithRowWithColumn","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetTableTotalRowRangeColumnsAfter.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeColumnsAfter","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/columnsAfter","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableTotalRowRangeColumnsAfterWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeColumnsAfterWithCount","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetTableTotalRowRangeColumnsBefore.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeColumnsBefore","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/columnsBefore","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableTotalRowRangeColumnsBeforeWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeColumnsBeforeWithCount","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetTableTotalRowRangeColumnWithColumn.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeColumnWithColumn","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetTableTotalRowRangeEntireColumn.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeEntireColumn","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/entireColumn","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableTotalRowRangeEntireRow.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeEntireRow","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/entireRow","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableTotalRowRangeIntersectionWithAnotherRange.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeIntersectionWithAnotherRange","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetTableTotalRowRangeLastCell.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeLastCell","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/lastCell","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableTotalRowRangeLastColumn.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeLastColumn","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/lastColumn","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableTotalRowRangeLastRow.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeLastRow","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/lastRow","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableTotalRowRangeOffsetRangeWithRowOffsetWithColumnOffset.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeOffsetRangeWithRowOffsetWithColumnOffset","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetTableTotalRowRangeResizedRangeWithDeltaRowsWithDeltaColumns.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeResizedRangeWithDeltaRowsWithDeltaColumns","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetTableTotalRowRangeRowsAbove.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeRowsAbove","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/rowsAbove","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableTotalRowRangeRowsAboveWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeRowsAboveWithCount","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetTableTotalRowRangeRowsBelow.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeRowsBelow","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/rowsBelow","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableTotalRowRangeRowsBelowWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeRowsBelowWithCount","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetTableTotalRowRangeRowWithRow.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeRowWithRow","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetTableTotalRowRangeUsedRange.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeUsedRange","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/usedRange","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableTotalRowRangeUsedRangeWithValuesOnly.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeUsedRangeWithValuesOnly","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetTableTotalRowRangeVisibleView.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeVisibleView","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/visibleView","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetTableWorksheet.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetTableWorksheet","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/worksheet","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetUsedRange.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetUsedRange","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetUsedRangeBoundingRectWithAnotherRange.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetUsedRangeBoundingRectWithAnotherRange","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetUsedRangeCellWithRowWithColumn.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetUsedRangeCellWithRowWithColumn","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetUsedRangeColumnsAfter.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetUsedRangeColumnsAfter","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange/columnsAfter","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetUsedRangeColumnsAfterWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetUsedRangeColumnsAfterWithCount","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetUsedRangeColumnsBefore.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetUsedRangeColumnsBefore","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange/columnsBefore","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetUsedRangeColumnsBeforeWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetUsedRangeColumnsBeforeWithCount","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetUsedRangeColumnWithColumn.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetUsedRangeColumnWithColumn","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetUsedRangeEntireColumn.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetUsedRangeEntireColumn","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange/entireColumn","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetUsedRangeEntireRow.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetUsedRangeEntireRow","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange/entireRow","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetUsedRangeIntersectionWithAnotherRange.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetUsedRangeIntersectionWithAnotherRange","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetUsedRangeLastCell.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetUsedRangeLastCell","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange/lastCell","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetUsedRangeLastColumn.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetUsedRangeLastColumn","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange/lastColumn","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetUsedRangeLastRow.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetUsedRangeLastRow","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange/lastRow","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetUsedRangeOffsetRangeWithRowOffsetWithColumnOffset.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetUsedRangeOffsetRangeWithRowOffsetWithColumnOffset","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetUsedRangeResizedRangeWithDeltaRowsWithDeltaColumns.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetUsedRangeResizedRangeWithDeltaRowsWithDeltaColumns","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetUsedRangeRowsAbove.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetUsedRangeRowsAbove","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange/rowsAbove","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetUsedRangeRowsAboveWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetUsedRangeRowsAboveWithCount","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetUsedRangeRowsBelow.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetUsedRangeRowsBelow","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange/rowsBelow","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetUsedRangeRowsBelowWithCount.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetUsedRangeRowsBelowWithCount","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetUsedRangeRowWithRow.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetUsedRangeRowWithRow","","","parameterized-function","" +"Files","GetMgDriveItemWorkbookWorksheetUsedRangeVisibleView.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetUsedRangeVisibleView","GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange/visibleView","no-oracle","" +"Files","GetMgDriveItemWorkbookWorksheetUsedRangeWithValuesOnly.g.cs","v1.0","Get-MgDriveItemWorkbookWorksheetUsedRangeWithValuesOnly","","","parameterized-function","" +"Files","GetMgDriveLastModifiedByUser.g.cs","v1.0","Get-MgDriveLastModifiedByUser","GET","/drives/{param}/lastModifiedByUser","matched","Get-MgDriveLastModifiedByUser" +"Files","GetMgDriveLastModifiedByUserMailboxSetting.g.cs","v1.0","Get-MgDriveLastModifiedByUserMailboxSetting","GET","/drives/{param}/lastModifiedByUser/mailboxSettings","matched","Get-MgDriveLastModifiedByUserMailboxSetting" +"Files","GetMgDriveLastModifiedByUserServiceProvisioningError.g.cs","v1.0","Get-MgDriveLastModifiedByUserServiceProvisioningError","GET","/drives/{param}/lastModifiedByUser/serviceProvisioningErrors","matched","Get-MgDriveLastModifiedByUserServiceProvisioningError" +"Files","GetMgDriveLastModifiedByUserServiceProvisioningErrorCount.g.cs","v1.0","Get-MgDriveLastModifiedByUserServiceProvisioningErrorCount","GET","/drives/{param}/lastModifiedByUser/serviceProvisioningErrors/$count","matched","Get-MgDriveLastModifiedByUserServiceProvisioningErrorCount" +"Files","GetMgDriveList.g.cs","v1.0","Get-MgDriveList","GET","/drives/{param}/list","matched","Get-MgDriveList" +"Files","GetMgDriveListColumn_Get.g.cs","v1.0","Get-MgDriveListColumn","GET","/drives/{param}/list/columns/{param}","matched","Get-MgDriveListColumn" +"Files","GetMgDriveListColumn_List.g.cs","v1.0","Get-MgDriveListColumn","GET","/drives/{param}/list/columns","matched","Get-MgDriveListColumn" +"Files","GetMgDriveListColumn.g.cs","v1.0","Get-MgDriveListColumn","","","dispatcher","" +"Files","GetMgDriveListColumnCount.g.cs","v1.0","Get-MgDriveListColumnCount","GET","/drives/{param}/list/columns/$count","matched","Get-MgDriveListColumnCount" +"Files","GetMgDriveListColumnSourceColumn.g.cs","v1.0","Get-MgDriveListColumnSourceColumn","GET","/drives/{param}/list/columns/{param}/sourceColumn","matched","Get-MgDriveListColumnSourceColumn" +"Files","GetMgDriveListContentType_Get.g.cs","v1.0","Get-MgDriveListContentType","GET","/drives/{param}/list/contentTypes/{param}","matched","Get-MgDriveListContentType" +"Files","GetMgDriveListContentType_List.g.cs","v1.0","Get-MgDriveListContentType","GET","/drives/{param}/list/contentTypes","matched","Get-MgDriveListContentType" +"Files","GetMgDriveListContentType.g.cs","v1.0","Get-MgDriveListContentType","","","dispatcher","" +"Files","GetMgDriveListContentTypeBase.g.cs","v1.0","Get-MgDriveListContentTypeBase","GET","/drives/{param}/list/contentTypes/{param}/base","mismatch","Get-MgDriveContentTypeBase" +"Files","GetMgDriveListContentTypeBaseType_Get.g.cs","v1.0","Get-MgDriveListContentTypeBaseType","GET","/drives/{param}/list/contentTypes/{param}/baseTypes/{param}","mismatch","Get-MgDriveContentTypeBaseType" +"Files","GetMgDriveListContentTypeBaseType_List.g.cs","v1.0","Get-MgDriveListContentTypeBaseType","GET","/drives/{param}/list/contentTypes/{param}/baseTypes","mismatch","Get-MgDriveContentTypeBaseType" +"Files","GetMgDriveListContentTypeBaseType.g.cs","v1.0","Get-MgDriveListContentTypeBaseType","","","dispatcher","" +"Files","GetMgDriveListContentTypeBaseTypeCount.g.cs","v1.0","Get-MgDriveListContentTypeBaseTypeCount","GET","/drives/{param}/list/contentTypes/{param}/baseTypes/$count","mismatch","Get-MgDriveContentTypeBaseTypeCount" +"Files","GetMgDriveListContentTypeColumn_Get.g.cs","v1.0","Get-MgDriveListContentTypeColumn","GET","/drives/{param}/list/contentTypes/{param}/columns/{param}","matched","Get-MgDriveListContentTypeColumn" +"Files","GetMgDriveListContentTypeColumn_List.g.cs","v1.0","Get-MgDriveListContentTypeColumn","GET","/drives/{param}/list/contentTypes/{param}/columns","matched","Get-MgDriveListContentTypeColumn" +"Files","GetMgDriveListContentTypeColumn.g.cs","v1.0","Get-MgDriveListContentTypeColumn","","","dispatcher","" +"Files","GetMgDriveListContentTypeColumnCount.g.cs","v1.0","Get-MgDriveListContentTypeColumnCount","GET","/drives/{param}/list/contentTypes/{param}/columns/$count","matched","Get-MgDriveListContentTypeColumnCount" +"Files","GetMgDriveListContentTypeColumnLink_Get.g.cs","v1.0","Get-MgDriveListContentTypeColumnLink","GET","/drives/{param}/list/contentTypes/{param}/columnLinks/{param}","matched","Get-MgDriveListContentTypeColumnLink" +"Files","GetMgDriveListContentTypeColumnLink_List.g.cs","v1.0","Get-MgDriveListContentTypeColumnLink","GET","/drives/{param}/list/contentTypes/{param}/columnLinks","matched","Get-MgDriveListContentTypeColumnLink" +"Files","GetMgDriveListContentTypeColumnLink.g.cs","v1.0","Get-MgDriveListContentTypeColumnLink","","","dispatcher","" +"Files","GetMgDriveListContentTypeColumnLinkCount.g.cs","v1.0","Get-MgDriveListContentTypeColumnLinkCount","GET","/drives/{param}/list/contentTypes/{param}/columnLinks/$count","matched","Get-MgDriveListContentTypeColumnLinkCount" +"Files","GetMgDriveListContentTypeColumnPosition_Get.g.cs","v1.0","Get-MgDriveListContentTypeColumnPosition","GET","/drives/{param}/list/contentTypes/{param}/columnPositions/{param}","matched","Get-MgDriveListContentTypeColumnPosition" +"Files","GetMgDriveListContentTypeColumnPosition_List.g.cs","v1.0","Get-MgDriveListContentTypeColumnPosition","GET","/drives/{param}/list/contentTypes/{param}/columnPositions","matched","Get-MgDriveListContentTypeColumnPosition" +"Files","GetMgDriveListContentTypeColumnPosition.g.cs","v1.0","Get-MgDriveListContentTypeColumnPosition","","","dispatcher","" +"Files","GetMgDriveListContentTypeColumnPositionCount.g.cs","v1.0","Get-MgDriveListContentTypeColumnPositionCount","GET","/drives/{param}/list/contentTypes/{param}/columnPositions/$count","matched","Get-MgDriveListContentTypeColumnPositionCount" +"Files","GetMgDriveListContentTypeColumnSourceColumn.g.cs","v1.0","Get-MgDriveListContentTypeColumnSourceColumn","GET","/drives/{param}/list/contentTypes/{param}/columns/{param}/sourceColumn","matched","Get-MgDriveListContentTypeColumnSourceColumn" +"Files","GetMgDriveListContentTypeCount.g.cs","v1.0","Get-MgDriveListContentTypeCount","GET","/drives/{param}/list/contentTypes/$count","matched","Get-MgDriveListContentTypeCount" +"Files","GetMgDriveListContentTypeGetCompatibleHubContentTypes.g.cs","v1.0","Get-MgDriveListContentTypeGetCompatibleHubContentTypes","GET","/drives/{param}/list/contentTypes/getCompatibleHubContentTypes","mismatch","Get-MgDriveListContentTypeCompatibleHubContentType" +"Files","GetMgDriveListContentTypeIsPublished.g.cs","v1.0","Get-MgDriveListContentTypeIsPublished","GET","/drives/{param}/list/contentTypes/{param}/isPublished","mismatch","Test-MgDriveListContentTypePublished" +"Files","GetMgDriveListCreatedByUser.g.cs","v1.0","Get-MgDriveListCreatedByUser","GET","/drives/{param}/list/createdByUser","matched","Get-MgDriveListCreatedByUser" +"Files","GetMgDriveListCreatedByUserMailboxSetting.g.cs","v1.0","Get-MgDriveListCreatedByUserMailboxSetting","GET","/drives/{param}/list/createdByUser/mailboxSettings","matched","Get-MgDriveListCreatedByUserMailboxSetting" +"Files","GetMgDriveListCreatedByUserServiceProvisioningError.g.cs","v1.0","Get-MgDriveListCreatedByUserServiceProvisioningError","GET","/drives/{param}/list/createdByUser/serviceProvisioningErrors","matched","Get-MgDriveListCreatedByUserServiceProvisioningError" +"Files","GetMgDriveListCreatedByUserServiceProvisioningErrorCount.g.cs","v1.0","Get-MgDriveListCreatedByUserServiceProvisioningErrorCount","GET","/drives/{param}/list/createdByUser/serviceProvisioningErrors/$count","matched","Get-MgDriveListCreatedByUserServiceProvisioningErrorCount" +"Files","GetMgDriveListDrive.g.cs","v1.0","Get-MgDriveListDrive","GET","/drives/{param}/list/drive","matched","Get-MgDriveListDrive" +"Files","GetMgDriveListItem_Get.g.cs","v1.0","Get-MgDriveListItem","GET","/drives/{param}/list/items/{param}","matched","Get-MgDriveListItem" +"Files","GetMgDriveListItem_List.g.cs","v1.0","Get-MgDriveListItem","GET","/drives/{param}/list/items","matched","Get-MgDriveListItem" +"Files","GetMgDriveListItem.g.cs","v1.0","Get-MgDriveListItem","","","dispatcher","" +"Files","GetMgDriveListItemAnalytic.g.cs","v1.0","Get-MgDriveListItemAnalytic","GET","/drives/{param}/list/items/{param}/analytics","matched","Get-MgDriveListItemAnalytic" +"Files","GetMgDriveListItemCount.g.cs","v1.0","Get-MgDriveListItemCount","GET","/drives/{param}/list/items/$count","matched","Get-MgDriveListItemCount" +"Files","GetMgDriveListItemCreatedByUser.g.cs","v1.0","Get-MgDriveListItemCreatedByUser","GET","/drives/{param}/list/items/{param}/createdByUser","matched","Get-MgDriveListItemCreatedByUser" +"Files","GetMgDriveListItemCreatedByUserMailboxSetting.g.cs","v1.0","Get-MgDriveListItemCreatedByUserMailboxSetting","GET","/drives/{param}/list/items/{param}/createdByUser/mailboxSettings","matched","Get-MgDriveListItemCreatedByUserMailboxSetting" +"Files","GetMgDriveListItemCreatedByUserServiceProvisioningError.g.cs","v1.0","Get-MgDriveListItemCreatedByUserServiceProvisioningError","GET","/drives/{param}/list/items/{param}/createdByUser/serviceProvisioningErrors","matched","Get-MgDriveListItemCreatedByUserServiceProvisioningError" +"Files","GetMgDriveListItemCreatedByUserServiceProvisioningErrorCount.g.cs","v1.0","Get-MgDriveListItemCreatedByUserServiceProvisioningErrorCount","GET","/drives/{param}/list/items/{param}/createdByUser/serviceProvisioningErrors/$count","matched","Get-MgDriveListItemCreatedByUserServiceProvisioningErrorCount" +"Files","GetMgDriveListItemDelta.g.cs","v1.0","Get-MgDriveListItemDelta","GET","/drives/{param}/list/items/delta","matched","Get-MgDriveListItemDelta" +"Files","GetMgDriveListItemDeltaWithToken.g.cs","v1.0","Get-MgDriveListItemDeltaWithToken","","","parameterized-function","" +"Files","GetMgDriveListItemDocumentSetVersion_Get.g.cs","v1.0","Get-MgDriveListItemDocumentSetVersion","GET","/drives/{param}/list/items/{param}/documentSetVersions/{param}","matched","Get-MgDriveListItemDocumentSetVersion" +"Files","GetMgDriveListItemDocumentSetVersion_List.g.cs","v1.0","Get-MgDriveListItemDocumentSetVersion","GET","/drives/{param}/list/items/{param}/documentSetVersions","matched","Get-MgDriveListItemDocumentSetVersion" +"Files","GetMgDriveListItemDocumentSetVersion.g.cs","v1.0","Get-MgDriveListItemDocumentSetVersion","","","dispatcher","" +"Files","GetMgDriveListItemDocumentSetVersionCount.g.cs","v1.0","Get-MgDriveListItemDocumentSetVersionCount","GET","/drives/{param}/list/items/{param}/documentSetVersions/$count","matched","Get-MgDriveListItemDocumentSetVersionCount" +"Files","GetMgDriveListItemDocumentSetVersionField.g.cs","v1.0","Get-MgDriveListItemDocumentSetVersionField","GET","/drives/{param}/list/items/{param}/documentSetVersions/{param}/fields","matched","Get-MgDriveListItemDocumentSetVersionField" +"Files","GetMgDriveListItemDriveItem.g.cs","v1.0","Get-MgDriveListItemDriveItem","GET","/drives/{param}/list/items/{param}/driveItem","matched","Get-MgDriveListItemDriveItem" +"Files","GetMgDriveListItemField.g.cs","v1.0","Get-MgDriveListItemField","GET","/drives/{param}/list/items/{param}/fields","matched","Get-MgDriveListItemField" +"Files","GetMgDriveListItemGetActivitiesByInterval.g.cs","v1.0","Get-MgDriveListItemGetActivitiesByInterval","GET","/drives/{param}/list/items/{param}/getActivitiesByInterval","mismatch","Get-MgDriveListItemActivityByInterval" +"Files","GetMgDriveListItemGetActivitiesByIntervalWithStartDateTimeWithEndDateTimeWithInterval.g.cs","v1.0","Get-MgDriveListItemGetActivitiesByIntervalWithStartDateTimeWithEndDateTimeWithInterval","","","parameterized-function","" +"Files","GetMgDriveListItemLastModifiedByUser.g.cs","v1.0","Get-MgDriveListItemLastModifiedByUser","GET","/drives/{param}/list/items/{param}/lastModifiedByUser","no-oracle","" +"Files","GetMgDriveListItemLastModifiedByUserMailboxSetting.g.cs","v1.0","Get-MgDriveListItemLastModifiedByUserMailboxSetting","GET","/drives/{param}/list/items/{param}/lastModifiedByUser/mailboxSettings","no-oracle","" +"Files","GetMgDriveListItemLastModifiedByUserServiceProvisioningError.g.cs","v1.0","Get-MgDriveListItemLastModifiedByUserServiceProvisioningError","GET","/drives/{param}/list/items/{param}/lastModifiedByUser/serviceProvisioningErrors","no-oracle","" +"Files","GetMgDriveListItemLastModifiedByUserServiceProvisioningErrorCount.g.cs","v1.0","Get-MgDriveListItemLastModifiedByUserServiceProvisioningErrorCount","GET","/drives/{param}/list/items/{param}/lastModifiedByUser/serviceProvisioningErrors/$count","no-oracle","" +"Files","GetMgDriveListItemPermission_Get.g.cs","v1.0","Get-MgDriveListItemPermission","GET","/drives/{param}/list/items/{param}/permissions/{param}","no-oracle","" +"Files","GetMgDriveListItemPermission_List.g.cs","v1.0","Get-MgDriveListItemPermission","GET","/drives/{param}/list/items/{param}/permissions","no-oracle","" +"Files","GetMgDriveListItemPermission.g.cs","v1.0","Get-MgDriveListItemPermission","","","dispatcher","" +"Files","GetMgDriveListItemPermissionCount.g.cs","v1.0","Get-MgDriveListItemPermissionCount","GET","/drives/{param}/list/items/{param}/permissions/$count","no-oracle","" +"Files","GetMgDriveListItemVersion_Get.g.cs","v1.0","Get-MgDriveListItemVersion","GET","/drives/{param}/list/items/{param}/versions/{param}","matched","Get-MgDriveListItemVersion" +"Files","GetMgDriveListItemVersion_List.g.cs","v1.0","Get-MgDriveListItemVersion","GET","/drives/{param}/list/items/{param}/versions","matched","Get-MgDriveListItemVersion" +"Files","GetMgDriveListItemVersion.g.cs","v1.0","Get-MgDriveListItemVersion","","","dispatcher","" +"Files","GetMgDriveListItemVersionCount.g.cs","v1.0","Get-MgDriveListItemVersionCount","GET","/drives/{param}/list/items/{param}/versions/$count","matched","Get-MgDriveListItemVersionCount" +"Files","GetMgDriveListItemVersionField.g.cs","v1.0","Get-MgDriveListItemVersionField","GET","/drives/{param}/list/items/{param}/versions/{param}/fields","matched","Get-MgDriveListItemVersionField" +"Files","GetMgDriveListLastModifiedByUser.g.cs","v1.0","Get-MgDriveListLastModifiedByUser","GET","/drives/{param}/list/lastModifiedByUser","no-oracle","" +"Files","GetMgDriveListLastModifiedByUserMailboxSetting.g.cs","v1.0","Get-MgDriveListLastModifiedByUserMailboxSetting","GET","/drives/{param}/list/lastModifiedByUser/mailboxSettings","no-oracle","" +"Files","GetMgDriveListLastModifiedByUserServiceProvisioningError.g.cs","v1.0","Get-MgDriveListLastModifiedByUserServiceProvisioningError","GET","/drives/{param}/list/lastModifiedByUser/serviceProvisioningErrors","no-oracle","" +"Files","GetMgDriveListLastModifiedByUserServiceProvisioningErrorCount.g.cs","v1.0","Get-MgDriveListLastModifiedByUserServiceProvisioningErrorCount","GET","/drives/{param}/list/lastModifiedByUser/serviceProvisioningErrors/$count","no-oracle","" +"Files","GetMgDriveListOperation_Get.g.cs","v1.0","Get-MgDriveListOperation","GET","/drives/{param}/list/operations/{param}","matched","Get-MgDriveListOperation" +"Files","GetMgDriveListOperation_List.g.cs","v1.0","Get-MgDriveListOperation","GET","/drives/{param}/list/operations","matched","Get-MgDriveListOperation" +"Files","GetMgDriveListOperation.g.cs","v1.0","Get-MgDriveListOperation","","","dispatcher","" +"Files","GetMgDriveListOperationCount.g.cs","v1.0","Get-MgDriveListOperationCount","GET","/drives/{param}/list/operations/$count","matched","Get-MgDriveListOperationCount" +"Files","GetMgDriveListPermission_Get.g.cs","v1.0","Get-MgDriveListPermission","GET","/drives/{param}/list/permissions/{param}","no-oracle","" +"Files","GetMgDriveListPermission_List.g.cs","v1.0","Get-MgDriveListPermission","GET","/drives/{param}/list/permissions","no-oracle","" +"Files","GetMgDriveListPermission.g.cs","v1.0","Get-MgDriveListPermission","","","dispatcher","" +"Files","GetMgDriveListPermissionCount.g.cs","v1.0","Get-MgDriveListPermissionCount","GET","/drives/{param}/list/permissions/$count","no-oracle","" +"Files","GetMgDriveListSubscription_Get.g.cs","v1.0","Get-MgDriveListSubscription","GET","/drives/{param}/list/subscriptions/{param}","matched","Get-MgDriveListSubscription" +"Files","GetMgDriveListSubscription_List.g.cs","v1.0","Get-MgDriveListSubscription","GET","/drives/{param}/list/subscriptions","matched","Get-MgDriveListSubscription" +"Files","GetMgDriveListSubscription.g.cs","v1.0","Get-MgDriveListSubscription","","","dispatcher","" +"Files","GetMgDriveListSubscriptionCount.g.cs","v1.0","Get-MgDriveListSubscriptionCount","GET","/drives/{param}/list/subscriptions/$count","matched","Get-MgDriveListSubscriptionCount" +"Files","GetMgDriveRecent.g.cs","v1.0","Get-MgDriveRecent","GET","/drives/{param}/recent","mismatch","Invoke-MgRecentDrive" +"Files","GetMgDriveRoot.g.cs","v1.0","Get-MgDriveRoot","GET","/drives/{param}/root","matched","Get-MgDriveRoot" +"Files","GetMgDriveSearchWithQ.g.cs","v1.0","Get-MgDriveSearchWithQ","","","parameterized-function","" +"Files","GetMgDriveSharedWithMe.g.cs","v1.0","Get-MgDriveSharedWithMe","GET","/drives/{param}/sharedWithMe","mismatch","Invoke-MgGraphDrive" +"Files","GetMgDriveSpecial_Get.g.cs","v1.0","Get-MgDriveSpecial","GET","/drives/{param}/special/{param}","matched","Get-MgDriveSpecial" +"Files","GetMgDriveSpecial_List.g.cs","v1.0","Get-MgDriveSpecial","GET","/drives/{param}/special","matched","Get-MgDriveSpecial" +"Files","GetMgDriveSpecial.g.cs","v1.0","Get-MgDriveSpecial","","","dispatcher","" +"Files","GetMgDriveSpecialCount.g.cs","v1.0","Get-MgDriveSpecialCount","GET","/drives/{param}/special/$count","matched","Get-MgDriveSpecialCount" +"Files","GetMgGroupDefaultDrive.g.cs","v1.0","Get-MgGroupDefaultDrive","GET","/groups/{param}/drive","matched","Get-MgGroupDefaultDrive" +"Files","GetMgGroupDrive_Get.g.cs","v1.0","Get-MgGroupDrive","GET","/groups/{param}/drives/{param}","matched","Get-MgGroupDrive" +"Files","GetMgGroupDrive_List.g.cs","v1.0","Get-MgGroupDrive","GET","/groups/{param}/drives","matched","Get-MgGroupDrive" +"Files","GetMgGroupDrive.g.cs","v1.0","Get-MgGroupDrive","","","dispatcher","" +"Files","GetMgGroupDriveCount.g.cs","v1.0","Get-MgGroupDriveCount","GET","/groups/{param}/drives/$count","matched","Get-MgGroupDriveCount" +"Files","GetMgShare_Get.g.cs","v1.0","Get-MgShare","GET","/shares/{param}","matched","Get-MgShareSharedDriveItemSharedDriveItem" +"Files","GetMgShare_List.g.cs","v1.0","Get-MgShare","GET","/shares","matched","Get-MgShareSharedDriveItemSharedDriveItem" +"Files","GetMgShare.g.cs","v1.0","Get-MgShare","","","dispatcher","" +"Files","GetMgShareCount.g.cs","v1.0","Get-MgShareCount","GET","/shares/$count","matched","Get-MgShareCount" +"Files","GetMgShareCreatedByUser.g.cs","v1.0","Get-MgShareCreatedByUser","GET","/shares/{param}/createdByUser","matched","Get-MgShareCreatedByUser" +"Files","GetMgShareCreatedByUserMailboxSetting.g.cs","v1.0","Get-MgShareCreatedByUserMailboxSetting","GET","/shares/{param}/createdByUser/mailboxSettings","matched","Get-MgShareCreatedByUserMailboxSetting" +"Files","GetMgShareCreatedByUserServiceProvisioningError.g.cs","v1.0","Get-MgShareCreatedByUserServiceProvisioningError","GET","/shares/{param}/createdByUser/serviceProvisioningErrors","matched","Get-MgShareCreatedByUserServiceProvisioningError" +"Files","GetMgShareCreatedByUserServiceProvisioningErrorCount.g.cs","v1.0","Get-MgShareCreatedByUserServiceProvisioningErrorCount","GET","/shares/{param}/createdByUser/serviceProvisioningErrors/$count","matched","Get-MgShareCreatedByUserServiceProvisioningErrorCount" +"Files","GetMgShareDriveItem.g.cs","v1.0","Get-MgShareDriveItem","GET","/shares/{param}/driveItem","matched","Get-MgShareDriveItem" +"Files","GetMgShareItem_Get.g.cs","v1.0","Get-MgShareItem","GET","/shares/{param}/items/{param}","matched","Get-MgShareItem" +"Files","GetMgShareItem_List.g.cs","v1.0","Get-MgShareItem","GET","/shares/{param}/items","matched","Get-MgShareItem" +"Files","GetMgShareItem.g.cs","v1.0","Get-MgShareItem","","","dispatcher","" +"Files","GetMgShareItemCount.g.cs","v1.0","Get-MgShareItemCount","GET","/shares/{param}/items/$count","matched","Get-MgShareItemCount" +"Files","GetMgShareLastModifiedByUser.g.cs","v1.0","Get-MgShareLastModifiedByUser","GET","/shares/{param}/lastModifiedByUser","matched","Get-MgShareLastModifiedByUser" +"Files","GetMgShareLastModifiedByUserMailboxSetting.g.cs","v1.0","Get-MgShareLastModifiedByUserMailboxSetting","GET","/shares/{param}/lastModifiedByUser/mailboxSettings","matched","Get-MgShareLastModifiedByUserMailboxSetting" +"Files","GetMgShareLastModifiedByUserServiceProvisioningError.g.cs","v1.0","Get-MgShareLastModifiedByUserServiceProvisioningError","GET","/shares/{param}/lastModifiedByUser/serviceProvisioningErrors","matched","Get-MgShareLastModifiedByUserServiceProvisioningError" +"Files","GetMgShareLastModifiedByUserServiceProvisioningErrorCount.g.cs","v1.0","Get-MgShareLastModifiedByUserServiceProvisioningErrorCount","GET","/shares/{param}/lastModifiedByUser/serviceProvisioningErrors/$count","matched","Get-MgShareLastModifiedByUserServiceProvisioningErrorCount" +"Files","GetMgShareList.g.cs","v1.0","Get-MgShareList","GET","/shares/{param}/list","matched","Get-MgShareList" +"Files","GetMgShareListColumn_Get.g.cs","v1.0","Get-MgShareListColumn","GET","/shares/{param}/list/columns/{param}","matched","Get-MgShareListColumn" +"Files","GetMgShareListColumn_List.g.cs","v1.0","Get-MgShareListColumn","GET","/shares/{param}/list/columns","matched","Get-MgShareListColumn" +"Files","GetMgShareListColumn.g.cs","v1.0","Get-MgShareListColumn","","","dispatcher","" +"Files","GetMgShareListColumnCount.g.cs","v1.0","Get-MgShareListColumnCount","GET","/shares/{param}/list/columns/$count","matched","Get-MgShareListColumnCount" +"Files","GetMgShareListColumnSourceColumn.g.cs","v1.0","Get-MgShareListColumnSourceColumn","GET","/shares/{param}/list/columns/{param}/sourceColumn","matched","Get-MgShareListColumnSourceColumn" +"Files","GetMgShareListContentType_Get.g.cs","v1.0","Get-MgShareListContentType","GET","/shares/{param}/list/contentTypes/{param}","matched","Get-MgShareListContentType" +"Files","GetMgShareListContentType_List.g.cs","v1.0","Get-MgShareListContentType","GET","/shares/{param}/list/contentTypes","matched","Get-MgShareListContentType" +"Files","GetMgShareListContentType.g.cs","v1.0","Get-MgShareListContentType","","","dispatcher","" +"Files","GetMgShareListContentTypeBase.g.cs","v1.0","Get-MgShareListContentTypeBase","GET","/shares/{param}/list/contentTypes/{param}/base","mismatch","Get-MgShareContentTypeBase" +"Files","GetMgShareListContentTypeBaseType_Get.g.cs","v1.0","Get-MgShareListContentTypeBaseType","GET","/shares/{param}/list/contentTypes/{param}/baseTypes/{param}","mismatch","Get-MgShareContentTypeBaseType" +"Files","GetMgShareListContentTypeBaseType_List.g.cs","v1.0","Get-MgShareListContentTypeBaseType","GET","/shares/{param}/list/contentTypes/{param}/baseTypes","mismatch","Get-MgShareContentTypeBaseType" +"Files","GetMgShareListContentTypeBaseType.g.cs","v1.0","Get-MgShareListContentTypeBaseType","","","dispatcher","" +"Files","GetMgShareListContentTypeBaseTypeCount.g.cs","v1.0","Get-MgShareListContentTypeBaseTypeCount","GET","/shares/{param}/list/contentTypes/{param}/baseTypes/$count","mismatch","Get-MgShareContentTypeBaseTypeCount" +"Files","GetMgShareListContentTypeColumn_Get.g.cs","v1.0","Get-MgShareListContentTypeColumn","GET","/shares/{param}/list/contentTypes/{param}/columns/{param}","matched","Get-MgShareListContentTypeColumn" +"Files","GetMgShareListContentTypeColumn_List.g.cs","v1.0","Get-MgShareListContentTypeColumn","GET","/shares/{param}/list/contentTypes/{param}/columns","matched","Get-MgShareListContentTypeColumn" +"Files","GetMgShareListContentTypeColumn.g.cs","v1.0","Get-MgShareListContentTypeColumn","","","dispatcher","" +"Files","GetMgShareListContentTypeColumnCount.g.cs","v1.0","Get-MgShareListContentTypeColumnCount","GET","/shares/{param}/list/contentTypes/{param}/columns/$count","matched","Get-MgShareListContentTypeColumnCount" +"Files","GetMgShareListContentTypeColumnLink_Get.g.cs","v1.0","Get-MgShareListContentTypeColumnLink","GET","/shares/{param}/list/contentTypes/{param}/columnLinks/{param}","matched","Get-MgShareListContentTypeColumnLink" +"Files","GetMgShareListContentTypeColumnLink_List.g.cs","v1.0","Get-MgShareListContentTypeColumnLink","GET","/shares/{param}/list/contentTypes/{param}/columnLinks","matched","Get-MgShareListContentTypeColumnLink" +"Files","GetMgShareListContentTypeColumnLink.g.cs","v1.0","Get-MgShareListContentTypeColumnLink","","","dispatcher","" +"Files","GetMgShareListContentTypeColumnLinkCount.g.cs","v1.0","Get-MgShareListContentTypeColumnLinkCount","GET","/shares/{param}/list/contentTypes/{param}/columnLinks/$count","matched","Get-MgShareListContentTypeColumnLinkCount" +"Files","GetMgShareListContentTypeColumnPosition_Get.g.cs","v1.0","Get-MgShareListContentTypeColumnPosition","GET","/shares/{param}/list/contentTypes/{param}/columnPositions/{param}","matched","Get-MgShareListContentTypeColumnPosition" +"Files","GetMgShareListContentTypeColumnPosition_List.g.cs","v1.0","Get-MgShareListContentTypeColumnPosition","GET","/shares/{param}/list/contentTypes/{param}/columnPositions","matched","Get-MgShareListContentTypeColumnPosition" +"Files","GetMgShareListContentTypeColumnPosition.g.cs","v1.0","Get-MgShareListContentTypeColumnPosition","","","dispatcher","" +"Files","GetMgShareListContentTypeColumnPositionCount.g.cs","v1.0","Get-MgShareListContentTypeColumnPositionCount","GET","/shares/{param}/list/contentTypes/{param}/columnPositions/$count","matched","Get-MgShareListContentTypeColumnPositionCount" +"Files","GetMgShareListContentTypeColumnSourceColumn.g.cs","v1.0","Get-MgShareListContentTypeColumnSourceColumn","GET","/shares/{param}/list/contentTypes/{param}/columns/{param}/sourceColumn","matched","Get-MgShareListContentTypeColumnSourceColumn" +"Files","GetMgShareListContentTypeCount.g.cs","v1.0","Get-MgShareListContentTypeCount","GET","/shares/{param}/list/contentTypes/$count","matched","Get-MgShareListContentTypeCount" +"Files","GetMgShareListContentTypeGetCompatibleHubContentTypes.g.cs","v1.0","Get-MgShareListContentTypeGetCompatibleHubContentTypes","GET","/shares/{param}/list/contentTypes/getCompatibleHubContentTypes","mismatch","Get-MgShareListContentTypeCompatibleHubContentType" +"Files","GetMgShareListContentTypeIsPublished.g.cs","v1.0","Get-MgShareListContentTypeIsPublished","GET","/shares/{param}/list/contentTypes/{param}/isPublished","mismatch","Test-MgShareListContentTypePublished" +"Files","GetMgShareListCreatedByUser.g.cs","v1.0","Get-MgShareListCreatedByUser","GET","/shares/{param}/list/createdByUser","matched","Get-MgShareListCreatedByUser" +"Files","GetMgShareListCreatedByUserMailboxSetting.g.cs","v1.0","Get-MgShareListCreatedByUserMailboxSetting","GET","/shares/{param}/list/createdByUser/mailboxSettings","matched","Get-MgShareListCreatedByUserMailboxSetting" +"Files","GetMgShareListCreatedByUserServiceProvisioningError.g.cs","v1.0","Get-MgShareListCreatedByUserServiceProvisioningError","GET","/shares/{param}/list/createdByUser/serviceProvisioningErrors","matched","Get-MgShareListCreatedByUserServiceProvisioningError" +"Files","GetMgShareListCreatedByUserServiceProvisioningErrorCount.g.cs","v1.0","Get-MgShareListCreatedByUserServiceProvisioningErrorCount","GET","/shares/{param}/list/createdByUser/serviceProvisioningErrors/$count","matched","Get-MgShareListCreatedByUserServiceProvisioningErrorCount" +"Files","GetMgShareListDrive.g.cs","v1.0","Get-MgShareListDrive","GET","/shares/{param}/list/drive","matched","Get-MgShareListDrive" +"Files","GetMgShareListItem.g.cs","v1.0","Get-MgShareListItem","GET","/shares/{param}/list/items","matched","Get-MgShareListItem" +"Files","GetMgShareListItemAnalytic.g.cs","v1.0","Get-MgShareListItemAnalytic","GET","/shares/{param}/list/items/{param}/analytics","matched","Get-MgShareListItemAnalytic" +"Files","GetMgShareListItemCreatedByUser.g.cs","v1.0","Get-MgShareListItemCreatedByUser","GET","/shares/{param}/list/items/{param}/createdByUser","matched","Get-MgShareListItemCreatedByUser" +"Files","GetMgShareListItemCreatedByUserMailboxSetting.g.cs","v1.0","Get-MgShareListItemCreatedByUserMailboxSetting","GET","/shares/{param}/list/items/{param}/createdByUser/mailboxSettings","matched","Get-MgShareListItemCreatedByUserMailboxSetting" +"Files","GetMgShareListItemCreatedByUserServiceProvisioningError.g.cs","v1.0","Get-MgShareListItemCreatedByUserServiceProvisioningError","GET","/shares/{param}/list/items/{param}/createdByUser/serviceProvisioningErrors","matched","Get-MgShareListItemCreatedByUserServiceProvisioningError" +"Files","GetMgShareListItemCreatedByUserServiceProvisioningErrorCount.g.cs","v1.0","Get-MgShareListItemCreatedByUserServiceProvisioningErrorCount","GET","/shares/{param}/list/items/{param}/createdByUser/serviceProvisioningErrors/$count","matched","Get-MgShareListItemCreatedByUserServiceProvisioningErrorCount" +"Files","GetMgShareListItemDelta.g.cs","v1.0","Get-MgShareListItemDelta","GET","/shares/{param}/list/items/delta","matched","Get-MgShareListItemDelta" +"Files","GetMgShareListItemDeltaWithToken.g.cs","v1.0","Get-MgShareListItemDeltaWithToken","","","parameterized-function","" +"Files","GetMgShareListItemDocumentSetVersion_Get.g.cs","v1.0","Get-MgShareListItemDocumentSetVersion","GET","/shares/{param}/list/items/{param}/documentSetVersions/{param}","matched","Get-MgShareListItemDocumentSetVersion" +"Files","GetMgShareListItemDocumentSetVersion_List.g.cs","v1.0","Get-MgShareListItemDocumentSetVersion","GET","/shares/{param}/list/items/{param}/documentSetVersions","matched","Get-MgShareListItemDocumentSetVersion" +"Files","GetMgShareListItemDocumentSetVersion.g.cs","v1.0","Get-MgShareListItemDocumentSetVersion","","","dispatcher","" +"Files","GetMgShareListItemDocumentSetVersionCount.g.cs","v1.0","Get-MgShareListItemDocumentSetVersionCount","GET","/shares/{param}/list/items/{param}/documentSetVersions/$count","matched","Get-MgShareListItemDocumentSetVersionCount" +"Files","GetMgShareListItemDocumentSetVersionField.g.cs","v1.0","Get-MgShareListItemDocumentSetVersionField","GET","/shares/{param}/list/items/{param}/documentSetVersions/{param}/fields","matched","Get-MgShareListItemDocumentSetVersionField" +"Files","GetMgShareListItemDriveItem.g.cs","v1.0","Get-MgShareListItemDriveItem","GET","/shares/{param}/list/items/{param}/driveItem","matched","Get-MgShareListItemDriveItem" +"Files","GetMgShareListItemField.g.cs","v1.0","Get-MgShareListItemField","GET","/shares/{param}/list/items/{param}/fields","matched","Get-MgShareListItemField" +"Files","GetMgShareListItemGetActivitiesByInterval.g.cs","v1.0","Get-MgShareListItemGetActivitiesByInterval","GET","/shares/{param}/list/items/{param}/getActivitiesByInterval","mismatch","Get-MgShareListItemActivityByInterval" +"Files","GetMgShareListItemGetActivitiesByIntervalWithStartDateTimeWithEndDateTimeWithInterval.g.cs","v1.0","Get-MgShareListItemGetActivitiesByIntervalWithStartDateTimeWithEndDateTimeWithInterval","","","parameterized-function","" +"Files","GetMgShareListItemLastModifiedByUser.g.cs","v1.0","Get-MgShareListItemLastModifiedByUser","GET","/shares/{param}/list/items/{param}/lastModifiedByUser","mismatch","Get-MgShareItemLastModifiedByUser" +"Files","GetMgShareListItemLastModifiedByUserMailboxSetting.g.cs","v1.0","Get-MgShareListItemLastModifiedByUserMailboxSetting","GET","/shares/{param}/list/items/{param}/lastModifiedByUser/mailboxSettings","mismatch","Get-MgShareItemLastModifiedByUserMailboxSetting" +"Files","GetMgShareListItemLastModifiedByUserServiceProvisioningError.g.cs","v1.0","Get-MgShareListItemLastModifiedByUserServiceProvisioningError","GET","/shares/{param}/list/items/{param}/lastModifiedByUser/serviceProvisioningErrors","mismatch","Get-MgShareItemLastModifiedByUserServiceProvisioningError" +"Files","GetMgShareListItemLastModifiedByUserServiceProvisioningErrorCount.g.cs","v1.0","Get-MgShareListItemLastModifiedByUserServiceProvisioningErrorCount","GET","/shares/{param}/list/items/{param}/lastModifiedByUser/serviceProvisioningErrors/$count","mismatch","Get-MgShareItemLastModifiedByUserServiceProvisioningErrorCount" +"Files","GetMgShareListItemPermission_Get.g.cs","v1.0","Get-MgShareListItemPermission","GET","/shares/{param}/list/items/{param}/permissions/{param}","no-oracle","" +"Files","GetMgShareListItemPermission_List.g.cs","v1.0","Get-MgShareListItemPermission","GET","/shares/{param}/list/items/{param}/permissions","no-oracle","" +"Files","GetMgShareListItemPermission.g.cs","v1.0","Get-MgShareListItemPermission","","","dispatcher","" +"Files","GetMgShareListItemPermissionCount.g.cs","v1.0","Get-MgShareListItemPermissionCount","GET","/shares/{param}/list/items/{param}/permissions/$count","no-oracle","" +"Files","GetMgShareListItemVersion_Get.g.cs","v1.0","Get-MgShareListItemVersion","GET","/shares/{param}/list/items/{param}/versions/{param}","matched","Get-MgShareListItemVersion" +"Files","GetMgShareListItemVersion_List.g.cs","v1.0","Get-MgShareListItemVersion","GET","/shares/{param}/list/items/{param}/versions","matched","Get-MgShareListItemVersion" +"Files","GetMgShareListItemVersion.g.cs","v1.0","Get-MgShareListItemVersion","","","dispatcher","" +"Files","GetMgShareListItemVersionCount.g.cs","v1.0","Get-MgShareListItemVersionCount","GET","/shares/{param}/list/items/{param}/versions/$count","matched","Get-MgShareListItemVersionCount" +"Files","GetMgShareListItemVersionField.g.cs","v1.0","Get-MgShareListItemVersionField","GET","/shares/{param}/list/items/{param}/versions/{param}/fields","matched","Get-MgShareListItemVersionField" +"Files","GetMgShareListLastModifiedByUser.g.cs","v1.0","Get-MgShareListLastModifiedByUser","GET","/shares/{param}/list/lastModifiedByUser","no-oracle","" +"Files","GetMgShareListLastModifiedByUserMailboxSetting.g.cs","v1.0","Get-MgShareListLastModifiedByUserMailboxSetting","GET","/shares/{param}/list/lastModifiedByUser/mailboxSettings","no-oracle","" +"Files","GetMgShareListLastModifiedByUserServiceProvisioningError.g.cs","v1.0","Get-MgShareListLastModifiedByUserServiceProvisioningError","GET","/shares/{param}/list/lastModifiedByUser/serviceProvisioningErrors","no-oracle","" +"Files","GetMgShareListLastModifiedByUserServiceProvisioningErrorCount.g.cs","v1.0","Get-MgShareListLastModifiedByUserServiceProvisioningErrorCount","GET","/shares/{param}/list/lastModifiedByUser/serviceProvisioningErrors/$count","no-oracle","" +"Files","GetMgShareListOperation_Get.g.cs","v1.0","Get-MgShareListOperation","GET","/shares/{param}/list/operations/{param}","matched","Get-MgShareListOperation" +"Files","GetMgShareListOperation_List.g.cs","v1.0","Get-MgShareListOperation","GET","/shares/{param}/list/operations","matched","Get-MgShareListOperation" +"Files","GetMgShareListOperation.g.cs","v1.0","Get-MgShareListOperation","","","dispatcher","" +"Files","GetMgShareListOperationCount.g.cs","v1.0","Get-MgShareListOperationCount","GET","/shares/{param}/list/operations/$count","matched","Get-MgShareListOperationCount" +"Files","GetMgShareListPermission_Get.g.cs","v1.0","Get-MgShareListPermission","GET","/shares/{param}/list/permissions/{param}","no-oracle","" +"Files","GetMgShareListPermission_List.g.cs","v1.0","Get-MgShareListPermission","GET","/shares/{param}/list/permissions","no-oracle","" +"Files","GetMgShareListPermission.g.cs","v1.0","Get-MgShareListPermission","","","dispatcher","" +"Files","GetMgShareListPermissionCount.g.cs","v1.0","Get-MgShareListPermissionCount","GET","/shares/{param}/list/permissions/$count","no-oracle","" +"Files","GetMgShareListSubscription_Get.g.cs","v1.0","Get-MgShareListSubscription","GET","/shares/{param}/list/subscriptions/{param}","matched","Get-MgShareListSubscription" +"Files","GetMgShareListSubscription_List.g.cs","v1.0","Get-MgShareListSubscription","GET","/shares/{param}/list/subscriptions","matched","Get-MgShareListSubscription" +"Files","GetMgShareListSubscription.g.cs","v1.0","Get-MgShareListSubscription","","","dispatcher","" +"Files","GetMgShareListSubscriptionCount.g.cs","v1.0","Get-MgShareListSubscriptionCount","GET","/shares/{param}/list/subscriptions/$count","matched","Get-MgShareListSubscriptionCount" +"Files","GetMgSharePermission.g.cs","v1.0","Get-MgSharePermission","GET","/shares/{param}/permission","matched","Get-MgSharePermission" +"Files","GetMgShareRoot.g.cs","v1.0","Get-MgShareRoot","GET","/shares/{param}/root","matched","Get-MgShareRoot" +"Files","GetMgShareSite.g.cs","v1.0","Get-MgShareSite","GET","/shares/{param}/site","matched","Get-MgShareSite" +"Files","GetMgUserDefaultDrive.g.cs","v1.0","Get-MgUserDefaultDrive","GET","/users/{param}/drive","matched","Get-MgUserDefaultDrive" +"Files","GetMgUserDrive_Get.g.cs","v1.0","Get-MgUserDrive","GET","/users/{param}/drives/{param}","matched","Get-MgUserDrive" +"Files","GetMgUserDrive_List.g.cs","v1.0","Get-MgUserDrive","GET","/users/{param}/drives","matched","Get-MgUserDrive" +"Files","GetMgUserDrive.g.cs","v1.0","Get-MgUserDrive","","","dispatcher","" +"Files","GetMgUserDriveCount.g.cs","v1.0","Get-MgUserDriveCount","GET","/users/{param}/drives/$count","matched","Get-MgUserDriveCount" +"Files","InvokeMgDriveItemAssignSensitivityLabel.g.cs","v1.0","Invoke-MgDriveItemAssignSensitivityLabel","POST","/drives/{param}/items/{param}/assignSensitivityLabel","mismatch","Set-MgDriveItemSensitivityLabel" +"Files","InvokeMgDriveItemCheckin.g.cs","v1.0","Invoke-MgDriveItemCheckin","POST","/drives/{param}/items/{param}/checkin","mismatch","Invoke-MgCheckinDriveItem" +"Files","InvokeMgDriveItemCheckout.g.cs","v1.0","Invoke-MgDriveItemCheckout","POST","/drives/{param}/items/{param}/checkout","mismatch","Invoke-MgCheckoutDriveItem" +"Files","InvokeMgDriveItemCopy.g.cs","v1.0","Invoke-MgDriveItemCopy","POST","/drives/{param}/items/{param}/copy","mismatch","Copy-MgDriveItem" +"Files","InvokeMgDriveItemCreateLink.g.cs","v1.0","Invoke-MgDriveItemCreateLink","POST","/drives/{param}/items/{param}/createLink","mismatch","New-MgDriveItemLink" +"Files","InvokeMgDriveItemCreateUploadSession.g.cs","v1.0","Invoke-MgDriveItemCreateUploadSession","POST","/drives/{param}/items/{param}/createUploadSession","mismatch","New-MgDriveItemUploadSession" +"Files","InvokeMgDriveItemDiscardCheckout.g.cs","v1.0","Invoke-MgDriveItemDiscardCheckout","POST","/drives/{param}/items/{param}/discardCheckout","mismatch","Remove-MgDriveItemCheckout" +"Files","InvokeMgDriveItemExtractSensitivityLabels.g.cs","v1.0","Invoke-MgDriveItemExtractSensitivityLabels","POST","/drives/{param}/items/{param}/extractSensitivityLabels","mismatch","Invoke-MgExtractDriveItemSensitivityLabel" +"Files","InvokeMgDriveItemFollow.g.cs","v1.0","Invoke-MgDriveItemFollow","POST","/drives/{param}/items/{param}/follow","mismatch","Invoke-MgFollowDriveItem" +"Files","InvokeMgDriveItemInvite.g.cs","v1.0","Invoke-MgDriveItemInvite","POST","/drives/{param}/items/{param}/invite","mismatch","Invoke-MgInviteDriveItem" +"Files","InvokeMgDriveItemPermanentDelete.g.cs","v1.0","Invoke-MgDriveItemPermanentDelete","POST","/drives/{param}/items/{param}/permanentDelete","mismatch","Remove-MgDriveItemPermanent" +"Files","InvokeMgDriveItemPermissionGrant.g.cs","v1.0","Invoke-MgDriveItemPermissionGrant","POST","/drives/{param}/items/{param}/permissions/{param}/grant","mismatch","Grant-MgDriveItemPermission" +"Files","InvokeMgDriveItemPreview.g.cs","v1.0","Invoke-MgDriveItemPreview","POST","/drives/{param}/items/{param}/preview","mismatch","Invoke-MgPreviewDriveItem" +"Files","InvokeMgDriveItemRestore.g.cs","v1.0","Invoke-MgDriveItemRestore","POST","/drives/{param}/items/{param}/restore","mismatch","Restore-MgDriveItem" +"Files","InvokeMgDriveItemSubscriptionReauthorize.g.cs","v1.0","Invoke-MgDriveItemSubscriptionReauthorize","POST","/drives/{param}/items/{param}/subscriptions/{param}/reauthorize","mismatch","Invoke-MgReauthorizeDriveItemSubscription" +"Files","InvokeMgDriveItemUnfollow.g.cs","v1.0","Invoke-MgDriveItemUnfollow","POST","/drives/{param}/items/{param}/unfollow","mismatch","Invoke-MgUnfollowDriveItem" +"Files","InvokeMgDriveItemValidatePermission.g.cs","v1.0","Invoke-MgDriveItemValidatePermission","POST","/drives/{param}/items/{param}/validatePermission","mismatch","Test-MgDriveItemPermission" +"Files","InvokeMgDriveItemVersionRestoreVersion.g.cs","v1.0","Invoke-MgDriveItemVersionRestoreVersion","POST","/drives/{param}/items/{param}/versions/{param}/restoreVersion","mismatch","Restore-MgDriveItemVersion" +"Files","InvokeMgDriveItemWorkbookApplicationCalculate.g.cs","v1.0","Invoke-MgDriveItemWorkbookApplicationCalculate","POST","/drives/{param}/items/{param}/workbook/application/calculate","no-oracle","" +"Files","InvokeMgDriveItemWorkbookCloseSession.g.cs","v1.0","Invoke-MgDriveItemWorkbookCloseSession","POST","/drives/{param}/items/{param}/workbook/closeSession","no-oracle","" +"Files","InvokeMgDriveItemWorkbookCreateSession.g.cs","v1.0","Invoke-MgDriveItemWorkbookCreateSession","POST","/drives/{param}/items/{param}/workbook/createSession","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionAbs.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionAbs","POST","/drives/{param}/items/{param}/workbook/functions/abs","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionAccrInt.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionAccrInt","POST","/drives/{param}/items/{param}/workbook/functions/accrInt","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionAccrIntM.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionAccrIntM","POST","/drives/{param}/items/{param}/workbook/functions/accrIntM","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionAcos.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionAcos","POST","/drives/{param}/items/{param}/workbook/functions/acos","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionAcosh.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionAcosh","POST","/drives/{param}/items/{param}/workbook/functions/acosh","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionAcot.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionAcot","POST","/drives/{param}/items/{param}/workbook/functions/acot","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionAcoth.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionAcoth","POST","/drives/{param}/items/{param}/workbook/functions/acoth","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionAmorDegrc.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionAmorDegrc","POST","/drives/{param}/items/{param}/workbook/functions/amorDegrc","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionAmorLinc.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionAmorLinc","POST","/drives/{param}/items/{param}/workbook/functions/amorLinc","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionAnd.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionAnd","POST","/drives/{param}/items/{param}/workbook/functions/and","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionArabic.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionArabic","POST","/drives/{param}/items/{param}/workbook/functions/arabic","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionAreas.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionAreas","POST","/drives/{param}/items/{param}/workbook/functions/areas","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionAsc.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionAsc","POST","/drives/{param}/items/{param}/workbook/functions/asc","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionAsin.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionAsin","POST","/drives/{param}/items/{param}/workbook/functions/asin","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionAsinh.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionAsinh","POST","/drives/{param}/items/{param}/workbook/functions/asinh","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionAtan.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionAtan","POST","/drives/{param}/items/{param}/workbook/functions/atan","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionAtan2.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionAtan2","POST","/drives/{param}/items/{param}/workbook/functions/atan2","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionAtanh.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionAtanh","POST","/drives/{param}/items/{param}/workbook/functions/atanh","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionAveDev.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionAveDev","POST","/drives/{param}/items/{param}/workbook/functions/aveDev","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionAverage.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionAverage","POST","/drives/{param}/items/{param}/workbook/functions/average","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionAverageA.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionAverageA","POST","/drives/{param}/items/{param}/workbook/functions/averageA","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionAverageIf.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionAverageIf","POST","/drives/{param}/items/{param}/workbook/functions/averageIf","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionAverageIfs.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionAverageIfs","POST","/drives/{param}/items/{param}/workbook/functions/averageIfs","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionBahtText.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionBahtText","POST","/drives/{param}/items/{param}/workbook/functions/bahtText","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionBase.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionBase","POST","/drives/{param}/items/{param}/workbook/functions/base","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionBesselI.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionBesselI","POST","/drives/{param}/items/{param}/workbook/functions/besselI","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionBesselJ.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionBesselJ","POST","/drives/{param}/items/{param}/workbook/functions/besselJ","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionBesselK.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionBesselK","POST","/drives/{param}/items/{param}/workbook/functions/besselK","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionBesselY.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionBesselY","POST","/drives/{param}/items/{param}/workbook/functions/besselY","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionBeta_Dist.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionBeta_Dist","POST","","cast","" +"Files","InvokeMgDriveItemWorkbookFunctionBeta_Inv.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionBeta_Inv","POST","","cast","" +"Files","InvokeMgDriveItemWorkbookFunctionBin2Dec.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionBin2Dec","POST","/drives/{param}/items/{param}/workbook/functions/bin2Dec","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionBin2Hex.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionBin2Hex","POST","/drives/{param}/items/{param}/workbook/functions/bin2Hex","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionBin2Oct.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionBin2Oct","POST","/drives/{param}/items/{param}/workbook/functions/bin2Oct","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionBinom_Dist_Range.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionBinom_Dist_Range","POST","","cast","" +"Files","InvokeMgDriveItemWorkbookFunctionBinom_Dist.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionBinom_Dist","POST","","cast","" +"Files","InvokeMgDriveItemWorkbookFunctionBinom_Inv.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionBinom_Inv","POST","","cast","" +"Files","InvokeMgDriveItemWorkbookFunctionBitand.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionBitand","POST","/drives/{param}/items/{param}/workbook/functions/bitand","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionBitlshift.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionBitlshift","POST","/drives/{param}/items/{param}/workbook/functions/bitlshift","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionBitor.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionBitor","POST","/drives/{param}/items/{param}/workbook/functions/bitor","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionBitrshift.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionBitrshift","POST","/drives/{param}/items/{param}/workbook/functions/bitrshift","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionBitxor.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionBitxor","POST","/drives/{param}/items/{param}/workbook/functions/bitxor","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionCeiling_Math.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionCeiling_Math","POST","","cast","" +"Files","InvokeMgDriveItemWorkbookFunctionCeiling_Precise.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionCeiling_Precise","POST","","cast","" +"Files","InvokeMgDriveItemWorkbookFunctionChar.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionChar","POST","/drives/{param}/items/{param}/workbook/functions/char","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionChiSq_Dist_RT.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionChiSq_Dist_RT","POST","","cast","" +"Files","InvokeMgDriveItemWorkbookFunctionChiSq_Dist.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionChiSq_Dist","POST","","cast","" +"Files","InvokeMgDriveItemWorkbookFunctionChiSq_Inv_RT.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionChiSq_Inv_RT","POST","","cast","" +"Files","InvokeMgDriveItemWorkbookFunctionChiSq_Inv.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionChiSq_Inv","POST","","cast","" +"Files","InvokeMgDriveItemWorkbookFunctionChoose.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionChoose","POST","/drives/{param}/items/{param}/workbook/functions/choose","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionClean.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionClean","POST","/drives/{param}/items/{param}/workbook/functions/clean","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionCode.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionCode","POST","/drives/{param}/items/{param}/workbook/functions/code","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionColumns.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionColumns","POST","/drives/{param}/items/{param}/workbook/functions/columns","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionCombin.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionCombin","POST","/drives/{param}/items/{param}/workbook/functions/combin","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionCombina.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionCombina","POST","/drives/{param}/items/{param}/workbook/functions/combina","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionComplex.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionComplex","POST","/drives/{param}/items/{param}/workbook/functions/complex","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionConcatenate.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionConcatenate","POST","/drives/{param}/items/{param}/workbook/functions/concatenate","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionConfidence_Norm.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionConfidence_Norm","POST","","cast","" +"Files","InvokeMgDriveItemWorkbookFunctionConfidence_T.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionConfidence_T","POST","","cast","" +"Files","InvokeMgDriveItemWorkbookFunctionConvert.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionConvert","POST","/drives/{param}/items/{param}/workbook/functions/convert","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionCos.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionCos","POST","/drives/{param}/items/{param}/workbook/functions/cos","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionCosh.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionCosh","POST","/drives/{param}/items/{param}/workbook/functions/cosh","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionCot.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionCot","POST","/drives/{param}/items/{param}/workbook/functions/cot","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionCoth.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionCoth","POST","/drives/{param}/items/{param}/workbook/functions/coth","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionCount.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionCount","POST","/drives/{param}/items/{param}/workbook/functions/$count","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionCountA.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionCountA","POST","/drives/{param}/items/{param}/workbook/functions/countA","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionCountBlank.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionCountBlank","POST","/drives/{param}/items/{param}/workbook/functions/countBlank","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionCountIf.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionCountIf","POST","/drives/{param}/items/{param}/workbook/functions/countIf","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionCountIfs.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionCountIfs","POST","/drives/{param}/items/{param}/workbook/functions/countIfs","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionCoupDayBs.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionCoupDayBs","POST","/drives/{param}/items/{param}/workbook/functions/coupDayBs","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionCoupDays.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionCoupDays","POST","/drives/{param}/items/{param}/workbook/functions/coupDays","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionCoupDaysNc.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionCoupDaysNc","POST","/drives/{param}/items/{param}/workbook/functions/coupDaysNc","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionCoupNcd.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionCoupNcd","POST","/drives/{param}/items/{param}/workbook/functions/coupNcd","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionCoupNum.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionCoupNum","POST","/drives/{param}/items/{param}/workbook/functions/coupNum","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionCoupPcd.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionCoupPcd","POST","/drives/{param}/items/{param}/workbook/functions/coupPcd","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionCsc.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionCsc","POST","/drives/{param}/items/{param}/workbook/functions/csc","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionCsch.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionCsch","POST","/drives/{param}/items/{param}/workbook/functions/csch","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionCumIPmt.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionCumIPmt","POST","/drives/{param}/items/{param}/workbook/functions/cumIPmt","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionCumPrinc.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionCumPrinc","POST","/drives/{param}/items/{param}/workbook/functions/cumPrinc","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionDate.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionDate","POST","/drives/{param}/items/{param}/workbook/functions/date","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionDatevalue.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionDatevalue","POST","/drives/{param}/items/{param}/workbook/functions/datevalue","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionDaverage.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionDaverage","POST","/drives/{param}/items/{param}/workbook/functions/daverage","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionDay.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionDay","POST","/drives/{param}/items/{param}/workbook/functions/day","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionDays.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionDays","POST","/drives/{param}/items/{param}/workbook/functions/days","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionDays360.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionDays360","POST","/drives/{param}/items/{param}/workbook/functions/days360","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionDb.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionDb","POST","/drives/{param}/items/{param}/workbook/functions/db","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionDbcs.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionDbcs","POST","/drives/{param}/items/{param}/workbook/functions/dbcs","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionDcount.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionDcount","POST","/drives/{param}/items/{param}/workbook/functions/dcount","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionDcountA.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionDcountA","POST","/drives/{param}/items/{param}/workbook/functions/dcountA","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionDdb.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionDdb","POST","/drives/{param}/items/{param}/workbook/functions/ddb","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionDec2Bin.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionDec2Bin","POST","/drives/{param}/items/{param}/workbook/functions/dec2Bin","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionDec2Hex.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionDec2Hex","POST","/drives/{param}/items/{param}/workbook/functions/dec2Hex","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionDec2Oct.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionDec2Oct","POST","/drives/{param}/items/{param}/workbook/functions/dec2Oct","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionDecimal.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionDecimal","POST","/drives/{param}/items/{param}/workbook/functions/decimal","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionDegrees.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionDegrees","POST","/drives/{param}/items/{param}/workbook/functions/degrees","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionDelta.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionDelta","POST","/drives/{param}/items/{param}/workbook/functions/delta","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionDevSq.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionDevSq","POST","/drives/{param}/items/{param}/workbook/functions/devSq","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionDget.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionDget","POST","/drives/{param}/items/{param}/workbook/functions/dget","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionDisc.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionDisc","POST","/drives/{param}/items/{param}/workbook/functions/disc","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionDmax.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionDmax","POST","/drives/{param}/items/{param}/workbook/functions/dmax","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionDmin.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionDmin","POST","/drives/{param}/items/{param}/workbook/functions/dmin","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionDollar.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionDollar","POST","/drives/{param}/items/{param}/workbook/functions/dollar","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionDollarDe.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionDollarDe","POST","/drives/{param}/items/{param}/workbook/functions/dollarDe","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionDollarFr.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionDollarFr","POST","/drives/{param}/items/{param}/workbook/functions/dollarFr","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionDproduct.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionDproduct","POST","/drives/{param}/items/{param}/workbook/functions/dproduct","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionDstDev.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionDstDev","POST","/drives/{param}/items/{param}/workbook/functions/dstDev","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionDstDevP.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionDstDevP","POST","/drives/{param}/items/{param}/workbook/functions/dstDevP","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionDsum.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionDsum","POST","/drives/{param}/items/{param}/workbook/functions/dsum","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionDuration.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionDuration","POST","/drives/{param}/items/{param}/workbook/functions/duration","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionDvar.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionDvar","POST","/drives/{param}/items/{param}/workbook/functions/dvar","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionDvarP.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionDvarP","POST","/drives/{param}/items/{param}/workbook/functions/dvarP","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionEcma_Ceiling.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionEcma_Ceiling","POST","","cast","" +"Files","InvokeMgDriveItemWorkbookFunctionEdate.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionEdate","POST","/drives/{param}/items/{param}/workbook/functions/edate","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionEffect.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionEffect","POST","/drives/{param}/items/{param}/workbook/functions/effect","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionEoMonth.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionEoMonth","POST","/drives/{param}/items/{param}/workbook/functions/eoMonth","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionErf_Precise.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionErf_Precise","POST","","cast","" +"Files","InvokeMgDriveItemWorkbookFunctionErf.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionErf","POST","/drives/{param}/items/{param}/workbook/functions/erf","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionErfC_Precise.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionErfC_Precise","POST","","cast","" +"Files","InvokeMgDriveItemWorkbookFunctionErfC.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionErfC","POST","/drives/{param}/items/{param}/workbook/functions/erfC","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionError_Type.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionError_Type","POST","","cast","" +"Files","InvokeMgDriveItemWorkbookFunctionEven.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionEven","POST","/drives/{param}/items/{param}/workbook/functions/even","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionExact.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionExact","POST","/drives/{param}/items/{param}/workbook/functions/exact","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionExp.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionExp","POST","/drives/{param}/items/{param}/workbook/functions/exp","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionExpon_Dist.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionExpon_Dist","POST","","cast","" +"Files","InvokeMgDriveItemWorkbookFunctionF_Dist_RT.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionF_Dist_RT","POST","","cast","" +"Files","InvokeMgDriveItemWorkbookFunctionF_Dist.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionF_Dist","POST","","cast","" +"Files","InvokeMgDriveItemWorkbookFunctionF_Inv_RT.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionF_Inv_RT","POST","","cast","" +"Files","InvokeMgDriveItemWorkbookFunctionF_Inv.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionF_Inv","POST","","cast","" +"Files","InvokeMgDriveItemWorkbookFunctionFact.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionFact","POST","/drives/{param}/items/{param}/workbook/functions/fact","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionFactDouble.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionFactDouble","POST","/drives/{param}/items/{param}/workbook/functions/factDouble","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionFalse.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionFalse","POST","/drives/{param}/items/{param}/workbook/functions/false","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionFind.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionFind","POST","/drives/{param}/items/{param}/workbook/functions/find","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionFindB.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionFindB","POST","/drives/{param}/items/{param}/workbook/functions/findB","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionFisher.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionFisher","POST","/drives/{param}/items/{param}/workbook/functions/fisher","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionFisherInv.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionFisherInv","POST","/drives/{param}/items/{param}/workbook/functions/fisherInv","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionFixed.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionFixed","POST","/drives/{param}/items/{param}/workbook/functions/fixed","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionFloor_Math.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionFloor_Math","POST","","cast","" +"Files","InvokeMgDriveItemWorkbookFunctionFloor_Precise.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionFloor_Precise","POST","","cast","" +"Files","InvokeMgDriveItemWorkbookFunctionFv.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionFv","POST","/drives/{param}/items/{param}/workbook/functions/fv","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionFvschedule.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionFvschedule","POST","/drives/{param}/items/{param}/workbook/functions/fvschedule","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionGamma_Dist.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionGamma_Dist","POST","","cast","" +"Files","InvokeMgDriveItemWorkbookFunctionGamma_Inv.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionGamma_Inv","POST","","cast","" +"Files","InvokeMgDriveItemWorkbookFunctionGamma.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionGamma","POST","/drives/{param}/items/{param}/workbook/functions/gamma","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionGammaLn_Precise.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionGammaLn_Precise","POST","","cast","" +"Files","InvokeMgDriveItemWorkbookFunctionGammaLn.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionGammaLn","POST","/drives/{param}/items/{param}/workbook/functions/gammaLn","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionGauss.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionGauss","POST","/drives/{param}/items/{param}/workbook/functions/gauss","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionGcd.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionGcd","POST","/drives/{param}/items/{param}/workbook/functions/gcd","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionGeoMean.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionGeoMean","POST","/drives/{param}/items/{param}/workbook/functions/geoMean","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionGeStep.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionGeStep","POST","/drives/{param}/items/{param}/workbook/functions/geStep","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionHarMean.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionHarMean","POST","/drives/{param}/items/{param}/workbook/functions/harMean","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionHex2Bin.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionHex2Bin","POST","/drives/{param}/items/{param}/workbook/functions/hex2Bin","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionHex2Dec.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionHex2Dec","POST","/drives/{param}/items/{param}/workbook/functions/hex2Dec","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionHex2Oct.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionHex2Oct","POST","/drives/{param}/items/{param}/workbook/functions/hex2Oct","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionHlookup.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionHlookup","POST","/drives/{param}/items/{param}/workbook/functions/hlookup","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionHour.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionHour","POST","/drives/{param}/items/{param}/workbook/functions/hour","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionHyperlink.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionHyperlink","POST","/drives/{param}/items/{param}/workbook/functions/hyperlink","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionHypGeom_Dist.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionHypGeom_Dist","POST","","cast","" +"Files","InvokeMgDriveItemWorkbookFunctionIf.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionIf","POST","/drives/{param}/items/{param}/workbook/functions/if","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionImAbs.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionImAbs","POST","/drives/{param}/items/{param}/workbook/functions/imAbs","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionImaginary.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionImaginary","POST","/drives/{param}/items/{param}/workbook/functions/imaginary","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionImArgument.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionImArgument","POST","/drives/{param}/items/{param}/workbook/functions/imArgument","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionImConjugate.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionImConjugate","POST","/drives/{param}/items/{param}/workbook/functions/imConjugate","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionImCos.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionImCos","POST","/drives/{param}/items/{param}/workbook/functions/imCos","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionImCosh.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionImCosh","POST","/drives/{param}/items/{param}/workbook/functions/imCosh","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionImCot.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionImCot","POST","/drives/{param}/items/{param}/workbook/functions/imCot","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionImCsc.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionImCsc","POST","/drives/{param}/items/{param}/workbook/functions/imCsc","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionImCsch.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionImCsch","POST","/drives/{param}/items/{param}/workbook/functions/imCsch","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionImDiv.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionImDiv","POST","/drives/{param}/items/{param}/workbook/functions/imDiv","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionImExp.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionImExp","POST","/drives/{param}/items/{param}/workbook/functions/imExp","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionImLn.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionImLn","POST","/drives/{param}/items/{param}/workbook/functions/imLn","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionImLog10.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionImLog10","POST","/drives/{param}/items/{param}/workbook/functions/imLog10","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionImLog2.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionImLog2","POST","/drives/{param}/items/{param}/workbook/functions/imLog2","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionImPower.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionImPower","POST","/drives/{param}/items/{param}/workbook/functions/imPower","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionImProduct.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionImProduct","POST","/drives/{param}/items/{param}/workbook/functions/imProduct","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionImReal.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionImReal","POST","/drives/{param}/items/{param}/workbook/functions/imReal","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionImSec.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionImSec","POST","/drives/{param}/items/{param}/workbook/functions/imSec","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionImSech.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionImSech","POST","/drives/{param}/items/{param}/workbook/functions/imSech","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionImSin.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionImSin","POST","/drives/{param}/items/{param}/workbook/functions/imSin","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionImSinh.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionImSinh","POST","/drives/{param}/items/{param}/workbook/functions/imSinh","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionImSqrt.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionImSqrt","POST","/drives/{param}/items/{param}/workbook/functions/imSqrt","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionImSub.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionImSub","POST","/drives/{param}/items/{param}/workbook/functions/imSub","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionImSum.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionImSum","POST","/drives/{param}/items/{param}/workbook/functions/imSum","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionImTan.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionImTan","POST","/drives/{param}/items/{param}/workbook/functions/imTan","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionInt.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionInt","POST","/drives/{param}/items/{param}/workbook/functions/int","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionIntRate.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionIntRate","POST","/drives/{param}/items/{param}/workbook/functions/intRate","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionIpmt.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionIpmt","POST","/drives/{param}/items/{param}/workbook/functions/ipmt","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionIrr.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionIrr","POST","/drives/{param}/items/{param}/workbook/functions/irr","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionIsErr.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionIsErr","POST","/drives/{param}/items/{param}/workbook/functions/isErr","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionIsError.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionIsError","POST","/drives/{param}/items/{param}/workbook/functions/isError","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionIsEven.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionIsEven","POST","/drives/{param}/items/{param}/workbook/functions/isEven","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionIsFormula.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionIsFormula","POST","/drives/{param}/items/{param}/workbook/functions/isFormula","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionIsLogical.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionIsLogical","POST","/drives/{param}/items/{param}/workbook/functions/isLogical","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionIsNA.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionIsNA","POST","/drives/{param}/items/{param}/workbook/functions/isNA","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionIsNonText.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionIsNonText","POST","/drives/{param}/items/{param}/workbook/functions/isNonText","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionIsNumber.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionIsNumber","POST","/drives/{param}/items/{param}/workbook/functions/isNumber","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionIso_Ceiling.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionIso_Ceiling","POST","","cast","" +"Files","InvokeMgDriveItemWorkbookFunctionIsOdd.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionIsOdd","POST","/drives/{param}/items/{param}/workbook/functions/isOdd","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionIsoWeekNum.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionIsoWeekNum","POST","/drives/{param}/items/{param}/workbook/functions/isoWeekNum","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionIspmt.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionIspmt","POST","/drives/{param}/items/{param}/workbook/functions/ispmt","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionIsref.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionIsref","POST","/drives/{param}/items/{param}/workbook/functions/isref","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionIsText.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionIsText","POST","/drives/{param}/items/{param}/workbook/functions/isText","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionKurt.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionKurt","POST","/drives/{param}/items/{param}/workbook/functions/kurt","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionLarge.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionLarge","POST","/drives/{param}/items/{param}/workbook/functions/large","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionLcm.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionLcm","POST","/drives/{param}/items/{param}/workbook/functions/lcm","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionLeft.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionLeft","POST","/drives/{param}/items/{param}/workbook/functions/left","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionLeftb.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionLeftb","POST","/drives/{param}/items/{param}/workbook/functions/leftb","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionLen.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionLen","POST","/drives/{param}/items/{param}/workbook/functions/len","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionLenb.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionLenb","POST","/drives/{param}/items/{param}/workbook/functions/lenb","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionLn.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionLn","POST","/drives/{param}/items/{param}/workbook/functions/ln","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionLog.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionLog","POST","/drives/{param}/items/{param}/workbook/functions/log","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionLog10.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionLog10","POST","/drives/{param}/items/{param}/workbook/functions/log10","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionLogNorm_Dist.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionLogNorm_Dist","POST","","cast","" +"Files","InvokeMgDriveItemWorkbookFunctionLogNorm_Inv.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionLogNorm_Inv","POST","","cast","" +"Files","InvokeMgDriveItemWorkbookFunctionLookup.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionLookup","POST","/drives/{param}/items/{param}/workbook/functions/lookup","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionLower.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionLower","POST","/drives/{param}/items/{param}/workbook/functions/lower","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionMatch.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionMatch","POST","/drives/{param}/items/{param}/workbook/functions/match","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionMax.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionMax","POST","/drives/{param}/items/{param}/workbook/functions/max","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionMaxA.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionMaxA","POST","/drives/{param}/items/{param}/workbook/functions/maxA","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionMduration.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionMduration","POST","/drives/{param}/items/{param}/workbook/functions/mduration","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionMedian.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionMedian","POST","/drives/{param}/items/{param}/workbook/functions/median","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionMid.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionMid","POST","/drives/{param}/items/{param}/workbook/functions/mid","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionMidb.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionMidb","POST","/drives/{param}/items/{param}/workbook/functions/midb","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionMin.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionMin","POST","/drives/{param}/items/{param}/workbook/functions/min","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionMinA.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionMinA","POST","/drives/{param}/items/{param}/workbook/functions/minA","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionMinute.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionMinute","POST","/drives/{param}/items/{param}/workbook/functions/minute","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionMirr.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionMirr","POST","/drives/{param}/items/{param}/workbook/functions/mirr","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionMod.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionMod","POST","/drives/{param}/items/{param}/workbook/functions/mod","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionMonth.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionMonth","POST","/drives/{param}/items/{param}/workbook/functions/month","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionMround.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionMround","POST","/drives/{param}/items/{param}/workbook/functions/mround","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionMultiNomial.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionMultiNomial","POST","/drives/{param}/items/{param}/workbook/functions/multiNomial","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionN.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionN","POST","/drives/{param}/items/{param}/workbook/functions/n","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionNa.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionNa","POST","/drives/{param}/items/{param}/workbook/functions/na","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionNegBinom_Dist.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionNegBinom_Dist","POST","","cast","" +"Files","InvokeMgDriveItemWorkbookFunctionNetworkDays_Intl.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionNetworkDays_Intl","POST","","cast","" +"Files","InvokeMgDriveItemWorkbookFunctionNetworkDays.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionNetworkDays","POST","/drives/{param}/items/{param}/workbook/functions/networkDays","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionNominal.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionNominal","POST","/drives/{param}/items/{param}/workbook/functions/nominal","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionNorm_Dist.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionNorm_Dist","POST","","cast","" +"Files","InvokeMgDriveItemWorkbookFunctionNorm_Inv.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionNorm_Inv","POST","","cast","" +"Files","InvokeMgDriveItemWorkbookFunctionNorm_S_Dist.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionNorm_S_Dist","POST","","cast","" +"Files","InvokeMgDriveItemWorkbookFunctionNorm_S_Inv.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionNorm_S_Inv","POST","","cast","" +"Files","InvokeMgDriveItemWorkbookFunctionNot.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionNot","POST","/drives/{param}/items/{param}/workbook/functions/not","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionNow.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionNow","POST","/drives/{param}/items/{param}/workbook/functions/now","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionNper.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionNper","POST","/drives/{param}/items/{param}/workbook/functions/nper","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionNpv.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionNpv","POST","/drives/{param}/items/{param}/workbook/functions/npv","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionNumberValue.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionNumberValue","POST","/drives/{param}/items/{param}/workbook/functions/numberValue","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionOct2Bin.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionOct2Bin","POST","/drives/{param}/items/{param}/workbook/functions/oct2Bin","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionOct2Dec.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionOct2Dec","POST","/drives/{param}/items/{param}/workbook/functions/oct2Dec","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionOct2Hex.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionOct2Hex","POST","/drives/{param}/items/{param}/workbook/functions/oct2Hex","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionOdd.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionOdd","POST","/drives/{param}/items/{param}/workbook/functions/odd","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionOddFPrice.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionOddFPrice","POST","/drives/{param}/items/{param}/workbook/functions/oddFPrice","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionOddFYield.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionOddFYield","POST","/drives/{param}/items/{param}/workbook/functions/oddFYield","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionOddLPrice.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionOddLPrice","POST","/drives/{param}/items/{param}/workbook/functions/oddLPrice","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionOddLYield.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionOddLYield","POST","/drives/{param}/items/{param}/workbook/functions/oddLYield","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionOr.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionOr","POST","/drives/{param}/items/{param}/workbook/functions/or","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionPduration.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionPduration","POST","/drives/{param}/items/{param}/workbook/functions/pduration","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionPercentile_Exc.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionPercentile_Exc","POST","","cast","" +"Files","InvokeMgDriveItemWorkbookFunctionPercentile_Inc.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionPercentile_Inc","POST","","cast","" +"Files","InvokeMgDriveItemWorkbookFunctionPercentRank_Exc.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionPercentRank_Exc","POST","","cast","" +"Files","InvokeMgDriveItemWorkbookFunctionPercentRank_Inc.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionPercentRank_Inc","POST","","cast","" +"Files","InvokeMgDriveItemWorkbookFunctionPermut.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionPermut","POST","/drives/{param}/items/{param}/workbook/functions/permut","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionPermutationa.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionPermutationa","POST","/drives/{param}/items/{param}/workbook/functions/permutationa","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionPhi.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionPhi","POST","/drives/{param}/items/{param}/workbook/functions/phi","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionPi.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionPi","POST","/drives/{param}/items/{param}/workbook/functions/pi","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionPmt.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionPmt","POST","/drives/{param}/items/{param}/workbook/functions/pmt","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionPoisson_Dist.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionPoisson_Dist","POST","","cast","" +"Files","InvokeMgDriveItemWorkbookFunctionPower.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionPower","POST","/drives/{param}/items/{param}/workbook/functions/power","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionPpmt.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionPpmt","POST","/drives/{param}/items/{param}/workbook/functions/ppmt","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionPrice.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionPrice","POST","/drives/{param}/items/{param}/workbook/functions/price","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionPriceDisc.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionPriceDisc","POST","/drives/{param}/items/{param}/workbook/functions/priceDisc","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionPriceMat.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionPriceMat","POST","/drives/{param}/items/{param}/workbook/functions/priceMat","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionProduct.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionProduct","POST","/drives/{param}/items/{param}/workbook/functions/product","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionProper.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionProper","POST","/drives/{param}/items/{param}/workbook/functions/proper","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionPv.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionPv","POST","/drives/{param}/items/{param}/workbook/functions/pv","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionQuartile_Exc.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionQuartile_Exc","POST","","cast","" +"Files","InvokeMgDriveItemWorkbookFunctionQuartile_Inc.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionQuartile_Inc","POST","","cast","" +"Files","InvokeMgDriveItemWorkbookFunctionQuotient.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionQuotient","POST","/drives/{param}/items/{param}/workbook/functions/quotient","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionRadians.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionRadians","POST","/drives/{param}/items/{param}/workbook/functions/radians","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionRand.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionRand","POST","/drives/{param}/items/{param}/workbook/functions/rand","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionRandBetween.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionRandBetween","POST","/drives/{param}/items/{param}/workbook/functions/randBetween","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionRank_Avg.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionRank_Avg","POST","","cast","" +"Files","InvokeMgDriveItemWorkbookFunctionRank_Eq.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionRank_Eq","POST","","cast","" +"Files","InvokeMgDriveItemWorkbookFunctionRate.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionRate","POST","/drives/{param}/items/{param}/workbook/functions/rate","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionReceived.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionReceived","POST","/drives/{param}/items/{param}/workbook/functions/received","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionReplace.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionReplace","POST","/drives/{param}/items/{param}/workbook/functions/replace","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionReplaceB.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionReplaceB","POST","/drives/{param}/items/{param}/workbook/functions/replaceB","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionRept.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionRept","POST","/drives/{param}/items/{param}/workbook/functions/rept","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionRight.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionRight","POST","/drives/{param}/items/{param}/workbook/functions/right","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionRightb.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionRightb","POST","/drives/{param}/items/{param}/workbook/functions/rightb","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionRoman.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionRoman","POST","/drives/{param}/items/{param}/workbook/functions/roman","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionRound.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionRound","POST","/drives/{param}/items/{param}/workbook/functions/round","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionRoundDown.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionRoundDown","POST","/drives/{param}/items/{param}/workbook/functions/roundDown","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionRoundUp.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionRoundUp","POST","/drives/{param}/items/{param}/workbook/functions/roundUp","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionRows.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionRows","POST","/drives/{param}/items/{param}/workbook/functions/rows","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionRri.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionRri","POST","/drives/{param}/items/{param}/workbook/functions/rri","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionSec.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionSec","POST","/drives/{param}/items/{param}/workbook/functions/sec","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionSech.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionSech","POST","/drives/{param}/items/{param}/workbook/functions/sech","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionSecond.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionSecond","POST","/drives/{param}/items/{param}/workbook/functions/second","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionSeriesSum.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionSeriesSum","POST","/drives/{param}/items/{param}/workbook/functions/seriesSum","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionSheet.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionSheet","POST","/drives/{param}/items/{param}/workbook/functions/sheet","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionSheets.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionSheets","POST","/drives/{param}/items/{param}/workbook/functions/sheets","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionSign.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionSign","POST","/drives/{param}/items/{param}/workbook/functions/sign","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionSin.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionSin","POST","/drives/{param}/items/{param}/workbook/functions/sin","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionSinh.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionSinh","POST","/drives/{param}/items/{param}/workbook/functions/sinh","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionSkew_p.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionSkew_p","POST","","cast","" +"Files","InvokeMgDriveItemWorkbookFunctionSkew.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionSkew","POST","/drives/{param}/items/{param}/workbook/functions/skew","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionSln.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionSln","POST","/drives/{param}/items/{param}/workbook/functions/sln","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionSmall.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionSmall","POST","/drives/{param}/items/{param}/workbook/functions/small","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionSqrt.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionSqrt","POST","/drives/{param}/items/{param}/workbook/functions/sqrt","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionSqrtPi.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionSqrtPi","POST","/drives/{param}/items/{param}/workbook/functions/sqrtPi","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionStandardize.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionStandardize","POST","/drives/{param}/items/{param}/workbook/functions/standardize","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionStDev_P.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionStDev_P","POST","","cast","" +"Files","InvokeMgDriveItemWorkbookFunctionStDev_S.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionStDev_S","POST","","cast","" +"Files","InvokeMgDriveItemWorkbookFunctionStDevA.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionStDevA","POST","/drives/{param}/items/{param}/workbook/functions/stDevA","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionStDevPA.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionStDevPA","POST","/drives/{param}/items/{param}/workbook/functions/stDevPA","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionSubstitute.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionSubstitute","POST","/drives/{param}/items/{param}/workbook/functions/substitute","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionSubtotal.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionSubtotal","POST","/drives/{param}/items/{param}/workbook/functions/subtotal","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionSum.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionSum","POST","/drives/{param}/items/{param}/workbook/functions/sum","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionSumIf.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionSumIf","POST","/drives/{param}/items/{param}/workbook/functions/sumIf","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionSumIfs.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionSumIfs","POST","/drives/{param}/items/{param}/workbook/functions/sumIfs","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionSumSq.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionSumSq","POST","/drives/{param}/items/{param}/workbook/functions/sumSq","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionSyd.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionSyd","POST","/drives/{param}/items/{param}/workbook/functions/syd","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionT_Dist_2T.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionT_Dist_2T","POST","","cast","" +"Files","InvokeMgDriveItemWorkbookFunctionT_Dist_RT.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionT_Dist_RT","POST","","cast","" +"Files","InvokeMgDriveItemWorkbookFunctionT_Dist.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionT_Dist","POST","","cast","" +"Files","InvokeMgDriveItemWorkbookFunctionT_Inv_2T.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionT_Inv_2T","POST","","cast","" +"Files","InvokeMgDriveItemWorkbookFunctionT_Inv.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionT_Inv","POST","","cast","" +"Files","InvokeMgDriveItemWorkbookFunctionT.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionT","POST","/drives/{param}/items/{param}/workbook/functions/t","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionTan.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionTan","POST","/drives/{param}/items/{param}/workbook/functions/tan","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionTanh.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionTanh","POST","/drives/{param}/items/{param}/workbook/functions/tanh","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionTbillEq.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionTbillEq","POST","/drives/{param}/items/{param}/workbook/functions/tbillEq","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionTbillPrice.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionTbillPrice","POST","/drives/{param}/items/{param}/workbook/functions/tbillPrice","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionTbillYield.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionTbillYield","POST","/drives/{param}/items/{param}/workbook/functions/tbillYield","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionText.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionText","POST","/drives/{param}/items/{param}/workbook/functions/text","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionTime.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionTime","POST","/drives/{param}/items/{param}/workbook/functions/time","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionTimevalue.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionTimevalue","POST","/drives/{param}/items/{param}/workbook/functions/timevalue","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionToday.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionToday","POST","/drives/{param}/items/{param}/workbook/functions/today","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionTrim.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionTrim","POST","/drives/{param}/items/{param}/workbook/functions/trim","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionTrimMean.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionTrimMean","POST","/drives/{param}/items/{param}/workbook/functions/trimMean","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionTrue.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionTrue","POST","/drives/{param}/items/{param}/workbook/functions/true","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionTrunc.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionTrunc","POST","/drives/{param}/items/{param}/workbook/functions/trunc","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionType.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionType","POST","/drives/{param}/items/{param}/workbook/functions/type","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionUnichar.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionUnichar","POST","/drives/{param}/items/{param}/workbook/functions/unichar","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionUnicode.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionUnicode","POST","/drives/{param}/items/{param}/workbook/functions/unicode","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionUpper.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionUpper","POST","/drives/{param}/items/{param}/workbook/functions/upper","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionUsdollar.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionUsdollar","POST","/drives/{param}/items/{param}/workbook/functions/usdollar","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionValue.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionValue","POST","/drives/{param}/items/{param}/workbook/functions/value","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionVar_P.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionVar_P","POST","","cast","" +"Files","InvokeMgDriveItemWorkbookFunctionVar_S.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionVar_S","POST","","cast","" +"Files","InvokeMgDriveItemWorkbookFunctionVarA.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionVarA","POST","/drives/{param}/items/{param}/workbook/functions/varA","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionVarPA.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionVarPA","POST","/drives/{param}/items/{param}/workbook/functions/varPA","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionVdb.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionVdb","POST","/drives/{param}/items/{param}/workbook/functions/vdb","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionVlookup.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionVlookup","POST","/drives/{param}/items/{param}/workbook/functions/vlookup","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionWeekday.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionWeekday","POST","/drives/{param}/items/{param}/workbook/functions/weekday","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionWeekNum.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionWeekNum","POST","/drives/{param}/items/{param}/workbook/functions/weekNum","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionWeibull_Dist.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionWeibull_Dist","POST","","cast","" +"Files","InvokeMgDriveItemWorkbookFunctionWorkDay_Intl.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionWorkDay_Intl","POST","","cast","" +"Files","InvokeMgDriveItemWorkbookFunctionWorkDay.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionWorkDay","POST","/drives/{param}/items/{param}/workbook/functions/workDay","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionXirr.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionXirr","POST","/drives/{param}/items/{param}/workbook/functions/xirr","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionXnpv.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionXnpv","POST","/drives/{param}/items/{param}/workbook/functions/xnpv","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionXor.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionXor","POST","/drives/{param}/items/{param}/workbook/functions/xor","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionYear.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionYear","POST","/drives/{param}/items/{param}/workbook/functions/year","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionYearFrac.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionYearFrac","POST","/drives/{param}/items/{param}/workbook/functions/yearFrac","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionYield.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionYield","POST","/drives/{param}/items/{param}/workbook/functions/yield","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionYieldDisc.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionYieldDisc","POST","/drives/{param}/items/{param}/workbook/functions/yieldDisc","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionYieldMat.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionYieldMat","POST","/drives/{param}/items/{param}/workbook/functions/yieldMat","no-oracle","" +"Files","InvokeMgDriveItemWorkbookFunctionZ_Test.g.cs","v1.0","Invoke-MgDriveItemWorkbookFunctionZ_Test","POST","","cast","" +"Files","InvokeMgDriveItemWorkbookNameAdd.g.cs","v1.0","Invoke-MgDriveItemWorkbookNameAdd","POST","/drives/{param}/items/{param}/workbook/names/add","no-oracle","" +"Files","InvokeMgDriveItemWorkbookNameAddFormulaLocal.g.cs","v1.0","Invoke-MgDriveItemWorkbookNameAddFormulaLocal","POST","/drives/{param}/items/{param}/workbook/names/addFormulaLocal","no-oracle","" +"Files","InvokeMgDriveItemWorkbookNameRangeClear.g.cs","v1.0","Invoke-MgDriveItemWorkbookNameRangeClear","POST","/drives/{param}/items/{param}/workbook/names/{param}/range/clear","no-oracle","" +"Files","InvokeMgDriveItemWorkbookNameRangeDelete.g.cs","v1.0","Invoke-MgDriveItemWorkbookNameRangeDelete","POST","/drives/{param}/items/{param}/workbook/names/{param}/range/delete","no-oracle","" +"Files","InvokeMgDriveItemWorkbookNameRangeInsert.g.cs","v1.0","Invoke-MgDriveItemWorkbookNameRangeInsert","POST","/drives/{param}/items/{param}/workbook/names/{param}/range/insert","no-oracle","" +"Files","InvokeMgDriveItemWorkbookNameRangeMerge.g.cs","v1.0","Invoke-MgDriveItemWorkbookNameRangeMerge","POST","/drives/{param}/items/{param}/workbook/names/{param}/range/merge","no-oracle","" +"Files","InvokeMgDriveItemWorkbookNameRangeUnmerge.g.cs","v1.0","Invoke-MgDriveItemWorkbookNameRangeUnmerge","POST","/drives/{param}/items/{param}/workbook/names/{param}/range/unmerge","no-oracle","" +"Files","InvokeMgDriveItemWorkbookRefreshSession.g.cs","v1.0","Invoke-MgDriveItemWorkbookRefreshSession","POST","/drives/{param}/items/{param}/workbook/refreshSession","no-oracle","" +"Files","InvokeMgDriveItemWorkbookTableAdd.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableAdd","POST","/drives/{param}/items/{param}/workbook/tables/add","no-oracle","" +"Files","InvokeMgDriveItemWorkbookTableClearFilters.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableClearFilters","POST","/drives/{param}/items/{param}/workbook/tables/{param}/clearFilters","no-oracle","" +"Files","InvokeMgDriveItemWorkbookTableColumnAdd.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableColumnAdd","POST","/drives/{param}/items/{param}/workbook/tables/{param}/columns/add","no-oracle","" +"Files","InvokeMgDriveItemWorkbookTableColumnDataBodyRangeClear.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableColumnDataBodyRangeClear","POST","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/clear","no-oracle","" +"Files","InvokeMgDriveItemWorkbookTableColumnDataBodyRangeDelete.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableColumnDataBodyRangeDelete","POST","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/delete","no-oracle","" +"Files","InvokeMgDriveItemWorkbookTableColumnDataBodyRangeInsert.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableColumnDataBodyRangeInsert","POST","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/insert","no-oracle","" +"Files","InvokeMgDriveItemWorkbookTableColumnDataBodyRangeMerge.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableColumnDataBodyRangeMerge","POST","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/merge","no-oracle","" +"Files","InvokeMgDriveItemWorkbookTableColumnDataBodyRangeUnmerge.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableColumnDataBodyRangeUnmerge","POST","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/unmerge","no-oracle","" +"Files","InvokeMgDriveItemWorkbookTableColumnFilterApply.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableColumnFilterApply","POST","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/filter/apply","no-oracle","" +"Files","InvokeMgDriveItemWorkbookTableColumnFilterApplyBottomItemsFilter.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableColumnFilterApplyBottomItemsFilter","POST","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/filter/applyBottomItemsFilter","no-oracle","" +"Files","InvokeMgDriveItemWorkbookTableColumnFilterApplyBottomPercentFilter.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableColumnFilterApplyBottomPercentFilter","POST","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/filter/applyBottomPercentFilter","no-oracle","" +"Files","InvokeMgDriveItemWorkbookTableColumnFilterApplyCellColorFilter.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableColumnFilterApplyCellColorFilter","POST","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/filter/applyCellColorFilter","no-oracle","" +"Files","InvokeMgDriveItemWorkbookTableColumnFilterApplyCustomFilter.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableColumnFilterApplyCustomFilter","POST","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/filter/applyCustomFilter","no-oracle","" +"Files","InvokeMgDriveItemWorkbookTableColumnFilterApplyDynamicFilter.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableColumnFilterApplyDynamicFilter","POST","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/filter/applyDynamicFilter","no-oracle","" +"Files","InvokeMgDriveItemWorkbookTableColumnFilterApplyFontColorFilter.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableColumnFilterApplyFontColorFilter","POST","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/filter/applyFontColorFilter","no-oracle","" +"Files","InvokeMgDriveItemWorkbookTableColumnFilterApplyIconFilter.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableColumnFilterApplyIconFilter","POST","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/filter/applyIconFilter","no-oracle","" +"Files","InvokeMgDriveItemWorkbookTableColumnFilterApplyTopItemsFilter.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableColumnFilterApplyTopItemsFilter","POST","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/filter/applyTopItemsFilter","no-oracle","" +"Files","InvokeMgDriveItemWorkbookTableColumnFilterApplyTopPercentFilter.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableColumnFilterApplyTopPercentFilter","POST","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/filter/applyTopPercentFilter","no-oracle","" +"Files","InvokeMgDriveItemWorkbookTableColumnFilterApplyValuesFilter.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableColumnFilterApplyValuesFilter","POST","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/filter/applyValuesFilter","no-oracle","" +"Files","InvokeMgDriveItemWorkbookTableColumnFilterClear.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableColumnFilterClear","POST","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/filter/clear","no-oracle","" +"Files","InvokeMgDriveItemWorkbookTableColumnHeaderRowRangeClear.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableColumnHeaderRowRangeClear","POST","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/clear","no-oracle","" +"Files","InvokeMgDriveItemWorkbookTableColumnHeaderRowRangeDelete.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableColumnHeaderRowRangeDelete","POST","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/delete","no-oracle","" +"Files","InvokeMgDriveItemWorkbookTableColumnHeaderRowRangeInsert.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableColumnHeaderRowRangeInsert","POST","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/insert","no-oracle","" +"Files","InvokeMgDriveItemWorkbookTableColumnHeaderRowRangeMerge.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableColumnHeaderRowRangeMerge","POST","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/merge","no-oracle","" +"Files","InvokeMgDriveItemWorkbookTableColumnHeaderRowRangeUnmerge.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableColumnHeaderRowRangeUnmerge","POST","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/unmerge","no-oracle","" +"Files","InvokeMgDriveItemWorkbookTableColumnRangeClear.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableColumnRangeClear","POST","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/clear","no-oracle","" +"Files","InvokeMgDriveItemWorkbookTableColumnRangeDelete.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableColumnRangeDelete","POST","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/delete","no-oracle","" +"Files","InvokeMgDriveItemWorkbookTableColumnRangeInsert.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableColumnRangeInsert","POST","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/insert","no-oracle","" +"Files","InvokeMgDriveItemWorkbookTableColumnRangeMerge.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableColumnRangeMerge","POST","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/merge","no-oracle","" +"Files","InvokeMgDriveItemWorkbookTableColumnRangeUnmerge.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableColumnRangeUnmerge","POST","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/unmerge","no-oracle","" +"Files","InvokeMgDriveItemWorkbookTableColumnTotalRowRangeClear.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableColumnTotalRowRangeClear","POST","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/clear","no-oracle","" +"Files","InvokeMgDriveItemWorkbookTableColumnTotalRowRangeDelete.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableColumnTotalRowRangeDelete","POST","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/delete","no-oracle","" +"Files","InvokeMgDriveItemWorkbookTableColumnTotalRowRangeInsert.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableColumnTotalRowRangeInsert","POST","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/insert","no-oracle","" +"Files","InvokeMgDriveItemWorkbookTableColumnTotalRowRangeMerge.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableColumnTotalRowRangeMerge","POST","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/merge","no-oracle","" +"Files","InvokeMgDriveItemWorkbookTableColumnTotalRowRangeUnmerge.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableColumnTotalRowRangeUnmerge","POST","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/unmerge","no-oracle","" +"Files","InvokeMgDriveItemWorkbookTableConvertToRange.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableConvertToRange","POST","/drives/{param}/items/{param}/workbook/tables/{param}/convertToRange","no-oracle","" +"Files","InvokeMgDriveItemWorkbookTableDataBodyRangeClear.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableDataBodyRangeClear","POST","/drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/clear","no-oracle","" +"Files","InvokeMgDriveItemWorkbookTableDataBodyRangeDelete.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableDataBodyRangeDelete","POST","/drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/delete","no-oracle","" +"Files","InvokeMgDriveItemWorkbookTableDataBodyRangeInsert.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableDataBodyRangeInsert","POST","/drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/insert","no-oracle","" +"Files","InvokeMgDriveItemWorkbookTableDataBodyRangeMerge.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableDataBodyRangeMerge","POST","/drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/merge","no-oracle","" +"Files","InvokeMgDriveItemWorkbookTableDataBodyRangeUnmerge.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableDataBodyRangeUnmerge","POST","/drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/unmerge","no-oracle","" +"Files","InvokeMgDriveItemWorkbookTableHeaderRowRangeClear.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableHeaderRowRangeClear","POST","/drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/clear","no-oracle","" +"Files","InvokeMgDriveItemWorkbookTableHeaderRowRangeDelete.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableHeaderRowRangeDelete","POST","/drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/delete","no-oracle","" +"Files","InvokeMgDriveItemWorkbookTableHeaderRowRangeInsert.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableHeaderRowRangeInsert","POST","/drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/insert","no-oracle","" +"Files","InvokeMgDriveItemWorkbookTableHeaderRowRangeMerge.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableHeaderRowRangeMerge","POST","/drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/merge","no-oracle","" +"Files","InvokeMgDriveItemWorkbookTableHeaderRowRangeUnmerge.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableHeaderRowRangeUnmerge","POST","/drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/unmerge","no-oracle","" +"Files","InvokeMgDriveItemWorkbookTableRangeClear.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableRangeClear","POST","/drives/{param}/items/{param}/workbook/tables/{param}/range/clear","no-oracle","" +"Files","InvokeMgDriveItemWorkbookTableRangeDelete.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableRangeDelete","POST","/drives/{param}/items/{param}/workbook/tables/{param}/range/delete","no-oracle","" +"Files","InvokeMgDriveItemWorkbookTableRangeInsert.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableRangeInsert","POST","/drives/{param}/items/{param}/workbook/tables/{param}/range/insert","no-oracle","" +"Files","InvokeMgDriveItemWorkbookTableRangeMerge.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableRangeMerge","POST","/drives/{param}/items/{param}/workbook/tables/{param}/range/merge","no-oracle","" +"Files","InvokeMgDriveItemWorkbookTableRangeUnmerge.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableRangeUnmerge","POST","/drives/{param}/items/{param}/workbook/tables/{param}/range/unmerge","no-oracle","" +"Files","InvokeMgDriveItemWorkbookTableReapplyFilters.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableReapplyFilters","POST","/drives/{param}/items/{param}/workbook/tables/{param}/reapplyFilters","no-oracle","" +"Files","InvokeMgDriveItemWorkbookTableRowAdd.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableRowAdd","POST","/drives/{param}/items/{param}/workbook/tables/{param}/rows/add","no-oracle","" +"Files","InvokeMgDriveItemWorkbookTableRowRangeClear.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableRowRangeClear","POST","/drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/clear","no-oracle","" +"Files","InvokeMgDriveItemWorkbookTableRowRangeDelete.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableRowRangeDelete","POST","/drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/delete","no-oracle","" +"Files","InvokeMgDriveItemWorkbookTableRowRangeInsert.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableRowRangeInsert","POST","/drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/insert","no-oracle","" +"Files","InvokeMgDriveItemWorkbookTableRowRangeMerge.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableRowRangeMerge","POST","/drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/merge","no-oracle","" +"Files","InvokeMgDriveItemWorkbookTableRowRangeUnmerge.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableRowRangeUnmerge","POST","/drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/unmerge","no-oracle","" +"Files","InvokeMgDriveItemWorkbookTableSortApply.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableSortApply","POST","/drives/{param}/items/{param}/workbook/tables/{param}/sort/apply","no-oracle","" +"Files","InvokeMgDriveItemWorkbookTableSortClear.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableSortClear","POST","/drives/{param}/items/{param}/workbook/tables/{param}/sort/clear","no-oracle","" +"Files","InvokeMgDriveItemWorkbookTableSortReapply.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableSortReapply","POST","/drives/{param}/items/{param}/workbook/tables/{param}/sort/reapply","no-oracle","" +"Files","InvokeMgDriveItemWorkbookTableTotalRowRangeClear.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableTotalRowRangeClear","POST","/drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/clear","no-oracle","" +"Files","InvokeMgDriveItemWorkbookTableTotalRowRangeDelete.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableTotalRowRangeDelete","POST","/drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/delete","no-oracle","" +"Files","InvokeMgDriveItemWorkbookTableTotalRowRangeInsert.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableTotalRowRangeInsert","POST","/drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/insert","no-oracle","" +"Files","InvokeMgDriveItemWorkbookTableTotalRowRangeMerge.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableTotalRowRangeMerge","POST","/drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/merge","no-oracle","" +"Files","InvokeMgDriveItemWorkbookTableTotalRowRangeUnmerge.g.cs","v1.0","Invoke-MgDriveItemWorkbookTableTotalRowRangeUnmerge","POST","/drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/unmerge","no-oracle","" +"Files","InvokeMgDriveItemWorkbookWorksheetAdd.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetAdd","POST","/drives/{param}/items/{param}/workbook/worksheets/add","no-oracle","" +"Files","InvokeMgDriveItemWorkbookWorksheetChartAdd.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetChartAdd","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/add","no-oracle","" +"Files","InvokeMgDriveItemWorkbookWorksheetChartAxCategoryAxisFormatLineClear.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetChartAxCategoryAxisFormatLineClear","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/format/line/clear","no-oracle","" +"Files","InvokeMgDriveItemWorkbookWorksheetChartAxCategoryAxisMajorGridlineFormatLineClear.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMajorGridlineFormatLineClear","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/majorGridlines/format/line/clear","no-oracle","" +"Files","InvokeMgDriveItemWorkbookWorksheetChartAxCategoryAxisMinorGridlineFormatLineClear.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMinorGridlineFormatLineClear","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/minorGridlines/format/line/clear","no-oracle","" +"Files","InvokeMgDriveItemWorkbookWorksheetChartAxSeryAxisFormatLineClear.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetChartAxSeryAxisFormatLineClear","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/format/line/clear","no-oracle","" +"Files","InvokeMgDriveItemWorkbookWorksheetChartAxSeryAxisMajorGridlineFormatLineClear.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetChartAxSeryAxisMajorGridlineFormatLineClear","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/majorGridlines/format/line/clear","no-oracle","" +"Files","InvokeMgDriveItemWorkbookWorksheetChartAxSeryAxisMinorGridlineFormatLineClear.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetChartAxSeryAxisMinorGridlineFormatLineClear","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/minorGridlines/format/line/clear","no-oracle","" +"Files","InvokeMgDriveItemWorkbookWorksheetChartAxValueAxisFormatLineClear.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetChartAxValueAxisFormatLineClear","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/format/line/clear","no-oracle","" +"Files","InvokeMgDriveItemWorkbookWorksheetChartAxValueAxisMajorGridlineFormatLineClear.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetChartAxValueAxisMajorGridlineFormatLineClear","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/majorGridlines/format/line/clear","no-oracle","" +"Files","InvokeMgDriveItemWorkbookWorksheetChartAxValueAxisMinorGridlineFormatLineClear.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetChartAxValueAxisMinorGridlineFormatLineClear","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/minorGridlines/format/line/clear","no-oracle","" +"Files","InvokeMgDriveItemWorkbookWorksheetChartDataLabelFormatFillClear.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetChartDataLabelFormatFillClear","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/dataLabels/format/fill/clear","no-oracle","" +"Files","InvokeMgDriveItemWorkbookWorksheetChartDataLabelFormatFillSetSolidColor.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetChartDataLabelFormatFillSetSolidColor","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/dataLabels/format/fill/setSolidColor","no-oracle","" +"Files","InvokeMgDriveItemWorkbookWorksheetChartFormatFillClear.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetChartFormatFillClear","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/format/fill/clear","no-oracle","" +"Files","InvokeMgDriveItemWorkbookWorksheetChartFormatFillSetSolidColor.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetChartFormatFillSetSolidColor","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/format/fill/setSolidColor","no-oracle","" +"Files","InvokeMgDriveItemWorkbookWorksheetChartLegendFormatFillClear.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetChartLegendFormatFillClear","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/legend/format/fill/clear","no-oracle","" +"Files","InvokeMgDriveItemWorkbookWorksheetChartLegendFormatFillSetSolidColor.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetChartLegendFormatFillSetSolidColor","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/legend/format/fill/setSolidColor","no-oracle","" +"Files","InvokeMgDriveItemWorkbookWorksheetChartSeryFormatFillClear.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetChartSeryFormatFillClear","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/format/fill/clear","no-oracle","" +"Files","InvokeMgDriveItemWorkbookWorksheetChartSeryFormatFillSetSolidColor.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetChartSeryFormatFillSetSolidColor","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/format/fill/setSolidColor","no-oracle","" +"Files","InvokeMgDriveItemWorkbookWorksheetChartSeryFormatLineClear.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetChartSeryFormatLineClear","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/format/line/clear","no-oracle","" +"Files","InvokeMgDriveItemWorkbookWorksheetChartSeryPointFormatFillClear.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetChartSeryPointFormatFillClear","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/points/{param}/format/fill/clear","no-oracle","" +"Files","InvokeMgDriveItemWorkbookWorksheetChartSeryPointFormatFillSetSolidColor.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetChartSeryPointFormatFillSetSolidColor","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/points/{param}/format/fill/setSolidColor","no-oracle","" +"Files","InvokeMgDriveItemWorkbookWorksheetChartSetData.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetChartSetData","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/setData","no-oracle","" +"Files","InvokeMgDriveItemWorkbookWorksheetChartSetPosition.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetChartSetPosition","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/setPosition","no-oracle","" +"Files","InvokeMgDriveItemWorkbookWorksheetChartTitleFormatFillClear.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetChartTitleFormatFillClear","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/title/format/fill/clear","no-oracle","" +"Files","InvokeMgDriveItemWorkbookWorksheetChartTitleFormatFillSetSolidColor.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetChartTitleFormatFillSetSolidColor","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/title/format/fill/setSolidColor","no-oracle","" +"Files","InvokeMgDriveItemWorkbookWorksheetNameAdd.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetNameAdd","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/names/add","no-oracle","" +"Files","InvokeMgDriveItemWorkbookWorksheetNameAddFormulaLocal.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetNameAddFormulaLocal","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/names/addFormulaLocal","no-oracle","" +"Files","InvokeMgDriveItemWorkbookWorksheetNameRangeClear.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetNameRangeClear","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/clear","no-oracle","" +"Files","InvokeMgDriveItemWorkbookWorksheetNameRangeDelete.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetNameRangeDelete","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/delete","no-oracle","" +"Files","InvokeMgDriveItemWorkbookWorksheetNameRangeInsert.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetNameRangeInsert","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/insert","no-oracle","" +"Files","InvokeMgDriveItemWorkbookWorksheetNameRangeMerge.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetNameRangeMerge","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/merge","no-oracle","" +"Files","InvokeMgDriveItemWorkbookWorksheetNameRangeUnmerge.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetNameRangeUnmerge","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/unmerge","no-oracle","" +"Files","InvokeMgDriveItemWorkbookWorksheetPivotTableRefresh.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetPivotTableRefresh","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/pivotTables/{param}/refresh","no-oracle","" +"Files","InvokeMgDriveItemWorkbookWorksheetPivotTableRefreshAll.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetPivotTableRefreshAll","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/pivotTables/refreshAll","no-oracle","" +"Files","InvokeMgDriveItemWorkbookWorksheetProtectionProtect.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetProtectionProtect","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/protection/protect","no-oracle","" +"Files","InvokeMgDriveItemWorkbookWorksheetProtectionUnprotect.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetProtectionUnprotect","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/protection/unprotect","no-oracle","" +"Files","InvokeMgDriveItemWorkbookWorksheetRangeClear.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetRangeClear","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/range/clear","no-oracle","" +"Files","InvokeMgDriveItemWorkbookWorksheetRangeDelete.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetRangeDelete","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/range/delete","no-oracle","" +"Files","InvokeMgDriveItemWorkbookWorksheetRangeInsert.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetRangeInsert","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/range/insert","no-oracle","" +"Files","InvokeMgDriveItemWorkbookWorksheetRangeMerge.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetRangeMerge","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/range/merge","no-oracle","" +"Files","InvokeMgDriveItemWorkbookWorksheetRangeUnmerge.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetRangeUnmerge","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/range/unmerge","no-oracle","" +"Files","InvokeMgDriveItemWorkbookWorksheetTableAdd.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableAdd","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/add","no-oracle","" +"Files","InvokeMgDriveItemWorkbookWorksheetTableClearFilters.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableClearFilters","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/clearFilters","no-oracle","" +"Files","InvokeMgDriveItemWorkbookWorksheetTableColumnAdd.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableColumnAdd","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/add","no-oracle","" +"Files","InvokeMgDriveItemWorkbookWorksheetTableColumnDataBodyRangeClear.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeClear","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/clear","no-oracle","" +"Files","InvokeMgDriveItemWorkbookWorksheetTableColumnDataBodyRangeDelete.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeDelete","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/delete","no-oracle","" +"Files","InvokeMgDriveItemWorkbookWorksheetTableColumnDataBodyRangeInsert.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeInsert","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/insert","no-oracle","" +"Files","InvokeMgDriveItemWorkbookWorksheetTableColumnDataBodyRangeMerge.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeMerge","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/merge","no-oracle","" +"Files","InvokeMgDriveItemWorkbookWorksheetTableColumnDataBodyRangeUnmerge.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeUnmerge","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/unmerge","no-oracle","" +"Files","InvokeMgDriveItemWorkbookWorksheetTableColumnFilterApply.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableColumnFilterApply","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/filter/apply","no-oracle","" +"Files","InvokeMgDriveItemWorkbookWorksheetTableColumnFilterApplyBottomItemsFilter.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableColumnFilterApplyBottomItemsFilter","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/filter/applyBottomItemsFilter","no-oracle","" +"Files","InvokeMgDriveItemWorkbookWorksheetTableColumnFilterApplyBottomPercentFilter.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableColumnFilterApplyBottomPercentFilter","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/filter/applyBottomPercentFilter","no-oracle","" +"Files","InvokeMgDriveItemWorkbookWorksheetTableColumnFilterApplyCellColorFilter.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableColumnFilterApplyCellColorFilter","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/filter/applyCellColorFilter","no-oracle","" +"Files","InvokeMgDriveItemWorkbookWorksheetTableColumnFilterApplyCustomFilter.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableColumnFilterApplyCustomFilter","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/filter/applyCustomFilter","no-oracle","" +"Files","InvokeMgDriveItemWorkbookWorksheetTableColumnFilterApplyDynamicFilter.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableColumnFilterApplyDynamicFilter","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/filter/applyDynamicFilter","no-oracle","" +"Files","InvokeMgDriveItemWorkbookWorksheetTableColumnFilterApplyFontColorFilter.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableColumnFilterApplyFontColorFilter","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/filter/applyFontColorFilter","no-oracle","" +"Files","InvokeMgDriveItemWorkbookWorksheetTableColumnFilterApplyIconFilter.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableColumnFilterApplyIconFilter","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/filter/applyIconFilter","no-oracle","" +"Files","InvokeMgDriveItemWorkbookWorksheetTableColumnFilterApplyTopItemsFilter.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableColumnFilterApplyTopItemsFilter","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/filter/applyTopItemsFilter","no-oracle","" +"Files","InvokeMgDriveItemWorkbookWorksheetTableColumnFilterApplyTopPercentFilter.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableColumnFilterApplyTopPercentFilter","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/filter/applyTopPercentFilter","no-oracle","" +"Files","InvokeMgDriveItemWorkbookWorksheetTableColumnFilterApplyValuesFilter.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableColumnFilterApplyValuesFilter","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/filter/applyValuesFilter","no-oracle","" +"Files","InvokeMgDriveItemWorkbookWorksheetTableColumnFilterClear.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableColumnFilterClear","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/filter/clear","no-oracle","" +"Files","InvokeMgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeClear.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeClear","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/clear","no-oracle","" +"Files","InvokeMgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeDelete.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeDelete","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/delete","no-oracle","" +"Files","InvokeMgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeInsert.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeInsert","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/insert","no-oracle","" +"Files","InvokeMgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeMerge.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeMerge","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/merge","no-oracle","" +"Files","InvokeMgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeUnmerge.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeUnmerge","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/unmerge","no-oracle","" +"Files","InvokeMgDriveItemWorkbookWorksheetTableColumnRangeClear.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableColumnRangeClear","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/clear","no-oracle","" +"Files","InvokeMgDriveItemWorkbookWorksheetTableColumnRangeDelete.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableColumnRangeDelete","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/delete","no-oracle","" +"Files","InvokeMgDriveItemWorkbookWorksheetTableColumnRangeInsert.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableColumnRangeInsert","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/insert","no-oracle","" +"Files","InvokeMgDriveItemWorkbookWorksheetTableColumnRangeMerge.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableColumnRangeMerge","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/merge","no-oracle","" +"Files","InvokeMgDriveItemWorkbookWorksheetTableColumnRangeUnmerge.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableColumnRangeUnmerge","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/unmerge","no-oracle","" +"Files","InvokeMgDriveItemWorkbookWorksheetTableColumnTotalRowRangeClear.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeClear","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/clear","no-oracle","" +"Files","InvokeMgDriveItemWorkbookWorksheetTableColumnTotalRowRangeDelete.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeDelete","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/delete","no-oracle","" +"Files","InvokeMgDriveItemWorkbookWorksheetTableColumnTotalRowRangeInsert.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeInsert","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/insert","no-oracle","" +"Files","InvokeMgDriveItemWorkbookWorksheetTableColumnTotalRowRangeMerge.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeMerge","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/merge","no-oracle","" +"Files","InvokeMgDriveItemWorkbookWorksheetTableColumnTotalRowRangeUnmerge.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeUnmerge","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/unmerge","no-oracle","" +"Files","InvokeMgDriveItemWorkbookWorksheetTableConvertToRange.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableConvertToRange","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/convertToRange","no-oracle","" +"Files","InvokeMgDriveItemWorkbookWorksheetTableDataBodyRangeClear.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableDataBodyRangeClear","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/clear","no-oracle","" +"Files","InvokeMgDriveItemWorkbookWorksheetTableDataBodyRangeDelete.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableDataBodyRangeDelete","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/delete","no-oracle","" +"Files","InvokeMgDriveItemWorkbookWorksheetTableDataBodyRangeInsert.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableDataBodyRangeInsert","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/insert","no-oracle","" +"Files","InvokeMgDriveItemWorkbookWorksheetTableDataBodyRangeMerge.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableDataBodyRangeMerge","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/merge","no-oracle","" +"Files","InvokeMgDriveItemWorkbookWorksheetTableDataBodyRangeUnmerge.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableDataBodyRangeUnmerge","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/unmerge","no-oracle","" +"Files","InvokeMgDriveItemWorkbookWorksheetTableHeaderRowRangeClear.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableHeaderRowRangeClear","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/clear","no-oracle","" +"Files","InvokeMgDriveItemWorkbookWorksheetTableHeaderRowRangeDelete.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableHeaderRowRangeDelete","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/delete","no-oracle","" +"Files","InvokeMgDriveItemWorkbookWorksheetTableHeaderRowRangeInsert.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableHeaderRowRangeInsert","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/insert","no-oracle","" +"Files","InvokeMgDriveItemWorkbookWorksheetTableHeaderRowRangeMerge.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableHeaderRowRangeMerge","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/merge","no-oracle","" +"Files","InvokeMgDriveItemWorkbookWorksheetTableHeaderRowRangeUnmerge.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableHeaderRowRangeUnmerge","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/unmerge","no-oracle","" +"Files","InvokeMgDriveItemWorkbookWorksheetTableRangeClear.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableRangeClear","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/clear","no-oracle","" +"Files","InvokeMgDriveItemWorkbookWorksheetTableRangeDelete.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableRangeDelete","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/delete","no-oracle","" +"Files","InvokeMgDriveItemWorkbookWorksheetTableRangeInsert.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableRangeInsert","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/insert","no-oracle","" +"Files","InvokeMgDriveItemWorkbookWorksheetTableRangeMerge.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableRangeMerge","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/merge","no-oracle","" +"Files","InvokeMgDriveItemWorkbookWorksheetTableRangeUnmerge.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableRangeUnmerge","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/unmerge","no-oracle","" +"Files","InvokeMgDriveItemWorkbookWorksheetTableReapplyFilters.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableReapplyFilters","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/reapplyFilters","no-oracle","" +"Files","InvokeMgDriveItemWorkbookWorksheetTableRowAdd.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableRowAdd","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/add","no-oracle","" +"Files","InvokeMgDriveItemWorkbookWorksheetTableRowRangeClear.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableRowRangeClear","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/clear","no-oracle","" +"Files","InvokeMgDriveItemWorkbookWorksheetTableRowRangeDelete.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableRowRangeDelete","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/delete","no-oracle","" +"Files","InvokeMgDriveItemWorkbookWorksheetTableRowRangeInsert.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableRowRangeInsert","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/insert","no-oracle","" +"Files","InvokeMgDriveItemWorkbookWorksheetTableRowRangeMerge.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableRowRangeMerge","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/merge","no-oracle","" +"Files","InvokeMgDriveItemWorkbookWorksheetTableRowRangeUnmerge.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableRowRangeUnmerge","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/unmerge","no-oracle","" +"Files","InvokeMgDriveItemWorkbookWorksheetTableSortApply.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableSortApply","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/sort/apply","no-oracle","" +"Files","InvokeMgDriveItemWorkbookWorksheetTableSortClear.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableSortClear","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/sort/clear","no-oracle","" +"Files","InvokeMgDriveItemWorkbookWorksheetTableSortReapply.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableSortReapply","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/sort/reapply","no-oracle","" +"Files","InvokeMgDriveItemWorkbookWorksheetTableTotalRowRangeClear.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableTotalRowRangeClear","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/clear","no-oracle","" +"Files","InvokeMgDriveItemWorkbookWorksheetTableTotalRowRangeDelete.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableTotalRowRangeDelete","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/delete","no-oracle","" +"Files","InvokeMgDriveItemWorkbookWorksheetTableTotalRowRangeInsert.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableTotalRowRangeInsert","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/insert","no-oracle","" +"Files","InvokeMgDriveItemWorkbookWorksheetTableTotalRowRangeMerge.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableTotalRowRangeMerge","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/merge","no-oracle","" +"Files","InvokeMgDriveItemWorkbookWorksheetTableTotalRowRangeUnmerge.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetTableTotalRowRangeUnmerge","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/unmerge","no-oracle","" +"Files","InvokeMgDriveItemWorkbookWorksheetUsedRangeClear.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetUsedRangeClear","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange/clear","no-oracle","" +"Files","InvokeMgDriveItemWorkbookWorksheetUsedRangeDelete.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetUsedRangeDelete","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange/delete","no-oracle","" +"Files","InvokeMgDriveItemWorkbookWorksheetUsedRangeInsert.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetUsedRangeInsert","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange/insert","no-oracle","" +"Files","InvokeMgDriveItemWorkbookWorksheetUsedRangeMerge.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetUsedRangeMerge","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange/merge","no-oracle","" +"Files","InvokeMgDriveItemWorkbookWorksheetUsedRangeUnmerge.g.cs","v1.0","Invoke-MgDriveItemWorkbookWorksheetUsedRangeUnmerge","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange/unmerge","no-oracle","" +"Files","InvokeMgDriveListContentTypeAddCopy.g.cs","v1.0","Invoke-MgDriveListContentTypeAddCopy","POST","/drives/{param}/list/contentTypes/addCopy","mismatch","Add-MgDriveListContentTypeCopy" +"Files","InvokeMgDriveListContentTypeAddCopyFromContentTypeHub.g.cs","v1.0","Invoke-MgDriveListContentTypeAddCopyFromContentTypeHub","POST","/drives/{param}/list/contentTypes/addCopyFromContentTypeHub","mismatch","Add-MgDriveListContentTypeCopyFromContentTypeHub" +"Files","InvokeMgDriveListContentTypeAssociateWithHubSites.g.cs","v1.0","Invoke-MgDriveListContentTypeAssociateWithHubSites","POST","/drives/{param}/list/contentTypes/{param}/associateWithHubSites","mismatch","Join-MgDriveListContentTypeWithHubSite" +"Files","InvokeMgDriveListContentTypeCopyToDefaultContentLocation.g.cs","v1.0","Invoke-MgDriveListContentTypeCopyToDefaultContentLocation","POST","/drives/{param}/list/contentTypes/{param}/copyToDefaultContentLocation","mismatch","Copy-MgDriveListContentTypeToDefaultContentLocation" +"Files","InvokeMgDriveListContentTypePublish.g.cs","v1.0","Invoke-MgDriveListContentTypePublish","POST","/drives/{param}/list/contentTypes/{param}/publish","mismatch","Publish-MgDriveListContentType" +"Files","InvokeMgDriveListContentTypeUnpublish.g.cs","v1.0","Invoke-MgDriveListContentTypeUnpublish","POST","/drives/{param}/list/contentTypes/{param}/unpublish","mismatch","Unpublish-MgDriveListContentType" +"Files","InvokeMgDriveListItemCreateLink.g.cs","v1.0","Invoke-MgDriveListItemCreateLink","POST","/drives/{param}/list/items/{param}/createLink","mismatch","New-MgDriveListItemLink" +"Files","InvokeMgDriveListItemDocumentSetVersionRestore.g.cs","v1.0","Invoke-MgDriveListItemDocumentSetVersionRestore","POST","/drives/{param}/list/items/{param}/documentSetVersions/{param}/restore","mismatch","Restore-MgDriveListItemDocumentSetVersion" +"Files","InvokeMgDriveListItemPermissionGrant.g.cs","v1.0","Invoke-MgDriveListItemPermissionGrant","POST","/drives/{param}/list/items/{param}/permissions/{param}/grant","no-oracle","" +"Files","InvokeMgDriveListItemVersionRestoreVersion.g.cs","v1.0","Invoke-MgDriveListItemVersionRestoreVersion","POST","/drives/{param}/list/items/{param}/versions/{param}/restoreVersion","mismatch","Restore-MgDriveListItemVersion" +"Files","InvokeMgDriveListPermissionGrant.g.cs","v1.0","Invoke-MgDriveListPermissionGrant","POST","/drives/{param}/list/permissions/{param}/grant","no-oracle","" +"Files","InvokeMgDriveListSubscriptionReauthorize.g.cs","v1.0","Invoke-MgDriveListSubscriptionReauthorize","POST","/drives/{param}/list/subscriptions/{param}/reauthorize","mismatch","Invoke-MgReauthorizeDriveListSubscription" +"Files","InvokeMgShareListContentTypeAddCopy.g.cs","v1.0","Invoke-MgShareListContentTypeAddCopy","POST","/shares/{param}/list/contentTypes/addCopy","mismatch","Add-MgShareListContentTypeCopy" +"Files","InvokeMgShareListContentTypeAddCopyFromContentTypeHub.g.cs","v1.0","Invoke-MgShareListContentTypeAddCopyFromContentTypeHub","POST","/shares/{param}/list/contentTypes/addCopyFromContentTypeHub","mismatch","Add-MgShareListContentTypeCopyFromContentTypeHub" +"Files","InvokeMgShareListContentTypeAssociateWithHubSites.g.cs","v1.0","Invoke-MgShareListContentTypeAssociateWithHubSites","POST","/shares/{param}/list/contentTypes/{param}/associateWithHubSites","mismatch","Join-MgShareListContentTypeWithHubSite" +"Files","InvokeMgShareListContentTypeCopyToDefaultContentLocation.g.cs","v1.0","Invoke-MgShareListContentTypeCopyToDefaultContentLocation","POST","/shares/{param}/list/contentTypes/{param}/copyToDefaultContentLocation","mismatch","Copy-MgShareListContentTypeToDefaultContentLocation" +"Files","InvokeMgShareListContentTypePublish.g.cs","v1.0","Invoke-MgShareListContentTypePublish","POST","/shares/{param}/list/contentTypes/{param}/publish","mismatch","Publish-MgShareListContentType" +"Files","InvokeMgShareListContentTypeUnpublish.g.cs","v1.0","Invoke-MgShareListContentTypeUnpublish","POST","/shares/{param}/list/contentTypes/{param}/unpublish","mismatch","Unpublish-MgShareListContentType" +"Files","InvokeMgShareListItemCreateLink.g.cs","v1.0","Invoke-MgShareListItemCreateLink","POST","/shares/{param}/list/items/{param}/createLink","no-oracle","" +"Files","InvokeMgShareListItemDocumentSetVersionRestore.g.cs","v1.0","Invoke-MgShareListItemDocumentSetVersionRestore","POST","/shares/{param}/list/items/{param}/documentSetVersions/{param}/restore","mismatch","Restore-MgShareListItemDocumentSetVersion" +"Files","InvokeMgShareListItemPermissionGrant.g.cs","v1.0","Invoke-MgShareListItemPermissionGrant","POST","/shares/{param}/list/items/{param}/permissions/{param}/grant","no-oracle","" +"Files","InvokeMgShareListItemVersionRestoreVersion.g.cs","v1.0","Invoke-MgShareListItemVersionRestoreVersion","POST","/shares/{param}/list/items/{param}/versions/{param}/restoreVersion","mismatch","Restore-MgShareListItemVersion" +"Files","InvokeMgShareListPermissionGrant.g.cs","v1.0","Invoke-MgShareListPermissionGrant","POST","/shares/{param}/list/permissions/{param}/grant","no-oracle","" +"Files","InvokeMgShareListSubscriptionReauthorize.g.cs","v1.0","Invoke-MgShareListSubscriptionReauthorize","POST","/shares/{param}/list/subscriptions/{param}/reauthorize","mismatch","Invoke-MgReauthorizeShareListSubscription" +"Files","InvokeMgSharePermissionGrant.g.cs","v1.0","Invoke-MgSharePermissionGrant","POST","/shares/{param}/permission/grant","mismatch","Grant-MgSharePermission" +"Files","NewMgDrive.g.cs","v1.0","New-MgDrive","POST","/drives","matched","New-MgDrive" +"Files","NewMgDriveBundle.g.cs","v1.0","New-MgDriveBundle","POST","/drives/{param}/bundles","matched","New-MgDriveBundle" +"Files","NewMgDriveItem.g.cs","v1.0","New-MgDriveItem","POST","/drives/{param}/items","matched","New-MgDriveItem" +"Files","NewMgDriveItemAnalyticItemActivityStat.g.cs","v1.0","New-MgDriveItemAnalyticItemActivityStat","POST","/drives/{param}/items/{param}/analytics/itemActivityStats","matched","New-MgDriveItemAnalyticItemActivityStat" +"Files","NewMgDriveItemAnalyticItemActivityStatActivity.g.cs","v1.0","New-MgDriveItemAnalyticItemActivityStatActivity","POST","/drives/{param}/items/{param}/analytics/itemActivityStats/{param}/activities","no-oracle","" +"Files","NewMgDriveItemChild.g.cs","v1.0","New-MgDriveItemChild","POST","/drives/{param}/items/{param}/children","matched","New-MgDriveItemChild" +"Files","NewMgDriveItemPermission.g.cs","v1.0","New-MgDriveItemPermission","POST","/drives/{param}/items/{param}/permissions","matched","New-MgDriveItemPermission" +"Files","NewMgDriveItemSubscription.g.cs","v1.0","New-MgDriveItemSubscription","POST","/drives/{param}/items/{param}/subscriptions","matched","New-MgDriveItemSubscription" +"Files","NewMgDriveItemThumbnail.g.cs","v1.0","New-MgDriveItemThumbnail","POST","/drives/{param}/items/{param}/thumbnails","matched","New-MgDriveItemThumbnail" +"Files","NewMgDriveItemVersion.g.cs","v1.0","New-MgDriveItemVersion","POST","/drives/{param}/items/{param}/versions","matched","New-MgDriveItemVersion" +"Files","NewMgDriveItemWorkbookComment.g.cs","v1.0","New-MgDriveItemWorkbookComment","POST","/drives/{param}/items/{param}/workbook/comments","no-oracle","" +"Files","NewMgDriveItemWorkbookCommentReply.g.cs","v1.0","New-MgDriveItemWorkbookCommentReply","POST","/drives/{param}/items/{param}/workbook/comments/{param}/replies","no-oracle","" +"Files","NewMgDriveItemWorkbookName.g.cs","v1.0","New-MgDriveItemWorkbookName","POST","/drives/{param}/items/{param}/workbook/names","no-oracle","" +"Files","NewMgDriveItemWorkbookOperation.g.cs","v1.0","New-MgDriveItemWorkbookOperation","POST","/drives/{param}/items/{param}/workbook/operations","no-oracle","" +"Files","NewMgDriveItemWorkbookTable.g.cs","v1.0","New-MgDriveItemWorkbookTable","POST","/drives/{param}/items/{param}/workbook/tables","no-oracle","" +"Files","NewMgDriveItemWorkbookTableColumn.g.cs","v1.0","New-MgDriveItemWorkbookTableColumn","POST","/drives/{param}/items/{param}/workbook/tables/{param}/columns","no-oracle","" +"Files","NewMgDriveItemWorkbookTableRow.g.cs","v1.0","New-MgDriveItemWorkbookTableRow","POST","/drives/{param}/items/{param}/workbook/tables/{param}/rows","no-oracle","" +"Files","NewMgDriveItemWorkbookWorksheet.g.cs","v1.0","New-MgDriveItemWorkbookWorksheet","POST","/drives/{param}/items/{param}/workbook/worksheets","no-oracle","" +"Files","NewMgDriveItemWorkbookWorksheetChart.g.cs","v1.0","New-MgDriveItemWorkbookWorksheetChart","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts","no-oracle","" +"Files","NewMgDriveItemWorkbookWorksheetChartSery.g.cs","v1.0","New-MgDriveItemWorkbookWorksheetChartSery","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series","no-oracle","" +"Files","NewMgDriveItemWorkbookWorksheetChartSeryPoint.g.cs","v1.0","New-MgDriveItemWorkbookWorksheetChartSeryPoint","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/points","no-oracle","" +"Files","NewMgDriveItemWorkbookWorksheetName.g.cs","v1.0","New-MgDriveItemWorkbookWorksheetName","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/names","no-oracle","" +"Files","NewMgDriveItemWorkbookWorksheetPivotTable.g.cs","v1.0","New-MgDriveItemWorkbookWorksheetPivotTable","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/pivotTables","no-oracle","" +"Files","NewMgDriveItemWorkbookWorksheetTable.g.cs","v1.0","New-MgDriveItemWorkbookWorksheetTable","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables","no-oracle","" +"Files","NewMgDriveItemWorkbookWorksheetTableColumn.g.cs","v1.0","New-MgDriveItemWorkbookWorksheetTableColumn","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns","no-oracle","" +"Files","NewMgDriveItemWorkbookWorksheetTableRow.g.cs","v1.0","New-MgDriveItemWorkbookWorksheetTableRow","POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows","no-oracle","" +"Files","NewMgDriveListColumn.g.cs","v1.0","New-MgDriveListColumn","POST","/drives/{param}/list/columns","matched","New-MgDriveListColumn" +"Files","NewMgDriveListContentType.g.cs","v1.0","New-MgDriveListContentType","POST","/drives/{param}/list/contentTypes","matched","New-MgDriveListContentType" +"Files","NewMgDriveListContentTypeColumn.g.cs","v1.0","New-MgDriveListContentTypeColumn","POST","/drives/{param}/list/contentTypes/{param}/columns","matched","New-MgDriveListContentTypeColumn" +"Files","NewMgDriveListContentTypeColumnLink.g.cs","v1.0","New-MgDriveListContentTypeColumnLink","POST","/drives/{param}/list/contentTypes/{param}/columnLinks","matched","New-MgDriveListContentTypeColumnLink" +"Files","NewMgDriveListItem.g.cs","v1.0","New-MgDriveListItem","POST","/drives/{param}/list/items","matched","New-MgDriveListItem" +"Files","NewMgDriveListItemDocumentSetVersion.g.cs","v1.0","New-MgDriveListItemDocumentSetVersion","POST","/drives/{param}/list/items/{param}/documentSetVersions","matched","New-MgDriveListItemDocumentSetVersion" +"Files","NewMgDriveListItemPermission.g.cs","v1.0","New-MgDriveListItemPermission","POST","/drives/{param}/list/items/{param}/permissions","no-oracle","" +"Files","NewMgDriveListItemVersion.g.cs","v1.0","New-MgDriveListItemVersion","POST","/drives/{param}/list/items/{param}/versions","matched","New-MgDriveListItemVersion" +"Files","NewMgDriveListOperation.g.cs","v1.0","New-MgDriveListOperation","POST","/drives/{param}/list/operations","matched","New-MgDriveListOperation" +"Files","NewMgDriveListPermission.g.cs","v1.0","New-MgDriveListPermission","POST","/drives/{param}/list/permissions","no-oracle","" +"Files","NewMgDriveListSubscription.g.cs","v1.0","New-MgDriveListSubscription","POST","/drives/{param}/list/subscriptions","matched","New-MgDriveListSubscription" +"Files","NewMgShare.g.cs","v1.0","New-MgShare","POST","/shares","matched","New-MgShareSharedDriveItemSharedDriveItem" +"Files","NewMgShareListColumn.g.cs","v1.0","New-MgShareListColumn","POST","/shares/{param}/list/columns","matched","New-MgShareListColumn" +"Files","NewMgShareListContentType.g.cs","v1.0","New-MgShareListContentType","POST","/shares/{param}/list/contentTypes","matched","New-MgShareListContentType" +"Files","NewMgShareListContentTypeColumn.g.cs","v1.0","New-MgShareListContentTypeColumn","POST","/shares/{param}/list/contentTypes/{param}/columns","matched","New-MgShareListContentTypeColumn" +"Files","NewMgShareListContentTypeColumnLink.g.cs","v1.0","New-MgShareListContentTypeColumnLink","POST","/shares/{param}/list/contentTypes/{param}/columnLinks","matched","New-MgShareListContentTypeColumnLink" +"Files","NewMgShareListItem.g.cs","v1.0","New-MgShareListItem","POST","/shares/{param}/list/items","matched","New-MgShareListItem" +"Files","NewMgShareListItemDocumentSetVersion.g.cs","v1.0","New-MgShareListItemDocumentSetVersion","POST","/shares/{param}/list/items/{param}/documentSetVersions","matched","New-MgShareListItemDocumentSetVersion" +"Files","NewMgShareListItemPermission.g.cs","v1.0","New-MgShareListItemPermission","POST","/shares/{param}/list/items/{param}/permissions","no-oracle","" +"Files","NewMgShareListItemVersion.g.cs","v1.0","New-MgShareListItemVersion","POST","/shares/{param}/list/items/{param}/versions","matched","New-MgShareListItemVersion" +"Files","NewMgShareListOperation.g.cs","v1.0","New-MgShareListOperation","POST","/shares/{param}/list/operations","matched","New-MgShareListOperation" +"Files","NewMgShareListPermission.g.cs","v1.0","New-MgShareListPermission","POST","/shares/{param}/list/permissions","no-oracle","" +"Files","NewMgShareListSubscription.g.cs","v1.0","New-MgShareListSubscription","POST","/shares/{param}/list/subscriptions","matched","New-MgShareListSubscription" +"Files","RemoveMgDrive.g.cs","v1.0","Remove-MgDrive","DELETE","/drives/{param}","matched","Remove-MgDrive" +"Files","RemoveMgDriveBundleContent.g.cs","v1.0","Remove-MgDriveBundleContent","DELETE","/drives/{param}/bundles/{param}/$value","matched","Remove-MgDriveBundleContent" +"Files","RemoveMgDriveFollowingContent.g.cs","v1.0","Remove-MgDriveFollowingContent","DELETE","/drives/{param}/following/{param}/$value","matched","Remove-MgDriveFollowingContent" +"Files","RemoveMgDriveItem.g.cs","v1.0","Remove-MgDriveItem","DELETE","/drives/{param}/items/{param}","matched","Remove-MgDriveItem" +"Files","RemoveMgDriveItemAnalytic.g.cs","v1.0","Remove-MgDriveItemAnalytic","DELETE","/drives/{param}/items/{param}/analytics","matched","Remove-MgDriveItemAnalytic" +"Files","RemoveMgDriveItemAnalyticItemActivityStat.g.cs","v1.0","Remove-MgDriveItemAnalyticItemActivityStat","DELETE","/drives/{param}/items/{param}/analytics/itemActivityStats/{param}","matched","Remove-MgDriveItemAnalyticItemActivityStat" +"Files","RemoveMgDriveItemAnalyticItemActivityStatActivity.g.cs","v1.0","Remove-MgDriveItemAnalyticItemActivityStatActivity","DELETE","/drives/{param}/items/{param}/analytics/itemActivityStats/{param}/activities/{param}","no-oracle","" +"Files","RemoveMgDriveItemAnalyticItemActivityStatActivityDriveItemContent.g.cs","v1.0","Remove-MgDriveItemAnalyticItemActivityStatActivityDriveItemContent","DELETE","/drives/{param}/items/{param}/analytics/itemActivityStats/{param}/activities/{param}/driveItem/$value","no-oracle","" +"Files","RemoveMgDriveItemChildContent.g.cs","v1.0","Remove-MgDriveItemChildContent","DELETE","/drives/{param}/items/{param}/children/{param}/$value","matched","Remove-MgDriveItemChildContent" +"Files","RemoveMgDriveItemContent.g.cs","v1.0","Remove-MgDriveItemContent","DELETE","/drives/{param}/items/{param}/$value","matched","Remove-MgDriveItemContent" +"Files","RemoveMgDriveItemPermission.g.cs","v1.0","Remove-MgDriveItemPermission","DELETE","/drives/{param}/items/{param}/permissions/{param}","matched","Remove-MgDriveItemPermission" +"Files","RemoveMgDriveItemRetentionLabel.g.cs","v1.0","Remove-MgDriveItemRetentionLabel","DELETE","/drives/{param}/items/{param}/retentionLabel","matched","Remove-MgDriveItemRetentionLabel" +"Files","RemoveMgDriveItemSubscription.g.cs","v1.0","Remove-MgDriveItemSubscription","DELETE","/drives/{param}/items/{param}/subscriptions/{param}","matched","Remove-MgDriveItemSubscription" +"Files","RemoveMgDriveItemThumbnail.g.cs","v1.0","Remove-MgDriveItemThumbnail","DELETE","/drives/{param}/items/{param}/thumbnails/{param}","matched","Remove-MgDriveItemThumbnail" +"Files","RemoveMgDriveItemVersion.g.cs","v1.0","Remove-MgDriveItemVersion","DELETE","/drives/{param}/items/{param}/versions/{param}","matched","Remove-MgDriveItemVersion" +"Files","RemoveMgDriveItemVersionContent.g.cs","v1.0","Remove-MgDriveItemVersionContent","DELETE","/drives/{param}/items/{param}/versions/{param}/$value","matched","Remove-MgDriveItemVersionContent" +"Files","RemoveMgDriveItemWorkbook.g.cs","v1.0","Remove-MgDriveItemWorkbook","DELETE","/drives/{param}/items/{param}/workbook","no-oracle","" +"Files","RemoveMgDriveItemWorkbookApplication.g.cs","v1.0","Remove-MgDriveItemWorkbookApplication","DELETE","/drives/{param}/items/{param}/workbook/application","no-oracle","" +"Files","RemoveMgDriveItemWorkbookComment.g.cs","v1.0","Remove-MgDriveItemWorkbookComment","DELETE","/drives/{param}/items/{param}/workbook/comments/{param}","no-oracle","" +"Files","RemoveMgDriveItemWorkbookCommentReply.g.cs","v1.0","Remove-MgDriveItemWorkbookCommentReply","DELETE","/drives/{param}/items/{param}/workbook/comments/{param}/replies/{param}","no-oracle","" +"Files","RemoveMgDriveItemWorkbookFunction.g.cs","v1.0","Remove-MgDriveItemWorkbookFunction","DELETE","/drives/{param}/items/{param}/workbook/functions","no-oracle","" +"Files","RemoveMgDriveItemWorkbookName.g.cs","v1.0","Remove-MgDriveItemWorkbookName","DELETE","/drives/{param}/items/{param}/workbook/names/{param}","no-oracle","" +"Files","RemoveMgDriveItemWorkbookOperation.g.cs","v1.0","Remove-MgDriveItemWorkbookOperation","DELETE","/drives/{param}/items/{param}/workbook/operations/{param}","no-oracle","" +"Files","RemoveMgDriveItemWorkbookTable.g.cs","v1.0","Remove-MgDriveItemWorkbookTable","DELETE","/drives/{param}/items/{param}/workbook/tables/{param}","no-oracle","" +"Files","RemoveMgDriveItemWorkbookTableColumn.g.cs","v1.0","Remove-MgDriveItemWorkbookTableColumn","DELETE","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}","no-oracle","" +"Files","RemoveMgDriveItemWorkbookTableColumnFilter.g.cs","v1.0","Remove-MgDriveItemWorkbookTableColumnFilter","DELETE","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/filter","no-oracle","" +"Files","RemoveMgDriveItemWorkbookTableRow.g.cs","v1.0","Remove-MgDriveItemWorkbookTableRow","DELETE","/drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}","no-oracle","" +"Files","RemoveMgDriveItemWorkbookTableSort.g.cs","v1.0","Remove-MgDriveItemWorkbookTableSort","DELETE","/drives/{param}/items/{param}/workbook/tables/{param}/sort","no-oracle","" +"Files","RemoveMgDriveItemWorkbookWorksheet.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheet","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}","no-oracle","" +"Files","RemoveMgDriveItemWorkbookWorksheetChart.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChart","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}","no-oracle","" +"Files","RemoveMgDriveItemWorkbookWorksheetChartAx.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartAx","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes","no-oracle","" +"Files","RemoveMgDriveItemWorkbookWorksheetChartAxCategoryAxis.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartAxCategoryAxis","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis","no-oracle","" +"Files","RemoveMgDriveItemWorkbookWorksheetChartAxCategoryAxisFormat.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartAxCategoryAxisFormat","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/format","no-oracle","" +"Files","RemoveMgDriveItemWorkbookWorksheetChartAxCategoryAxisFormatFont.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartAxCategoryAxisFormatFont","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/format/font","no-oracle","" +"Files","RemoveMgDriveItemWorkbookWorksheetChartAxCategoryAxisFormatLine.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartAxCategoryAxisFormatLine","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/format/line","no-oracle","" +"Files","RemoveMgDriveItemWorkbookWorksheetChartAxCategoryAxisMajorGridline.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMajorGridline","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/majorGridlines","no-oracle","" +"Files","RemoveMgDriveItemWorkbookWorksheetChartAxCategoryAxisMajorGridlineFormat.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMajorGridlineFormat","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/majorGridlines/format","no-oracle","" +"Files","RemoveMgDriveItemWorkbookWorksheetChartAxCategoryAxisMajorGridlineFormatLine.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMajorGridlineFormatLine","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/majorGridlines/format/line","no-oracle","" +"Files","RemoveMgDriveItemWorkbookWorksheetChartAxCategoryAxisMinorGridline.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMinorGridline","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/minorGridlines","no-oracle","" +"Files","RemoveMgDriveItemWorkbookWorksheetChartAxCategoryAxisMinorGridlineFormat.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMinorGridlineFormat","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/minorGridlines/format","no-oracle","" +"Files","RemoveMgDriveItemWorkbookWorksheetChartAxCategoryAxisMinorGridlineFormatLine.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMinorGridlineFormatLine","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/minorGridlines/format/line","no-oracle","" +"Files","RemoveMgDriveItemWorkbookWorksheetChartAxCategoryAxisTitle.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartAxCategoryAxisTitle","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/title","no-oracle","" +"Files","RemoveMgDriveItemWorkbookWorksheetChartAxCategoryAxisTitleFormat.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartAxCategoryAxisTitleFormat","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/title/format","no-oracle","" +"Files","RemoveMgDriveItemWorkbookWorksheetChartAxCategoryAxisTitleFormatFont.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartAxCategoryAxisTitleFormatFont","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/title/format/font","no-oracle","" +"Files","RemoveMgDriveItemWorkbookWorksheetChartAxSeryAxis.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartAxSeryAxis","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis","no-oracle","" +"Files","RemoveMgDriveItemWorkbookWorksheetChartAxSeryAxisFormat.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartAxSeryAxisFormat","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/format","no-oracle","" +"Files","RemoveMgDriveItemWorkbookWorksheetChartAxSeryAxisFormatFont.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartAxSeryAxisFormatFont","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/format/font","no-oracle","" +"Files","RemoveMgDriveItemWorkbookWorksheetChartAxSeryAxisFormatLine.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartAxSeryAxisFormatLine","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/format/line","no-oracle","" +"Files","RemoveMgDriveItemWorkbookWorksheetChartAxSeryAxisMajorGridline.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartAxSeryAxisMajorGridline","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/majorGridlines","no-oracle","" +"Files","RemoveMgDriveItemWorkbookWorksheetChartAxSeryAxisMajorGridlineFormat.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartAxSeryAxisMajorGridlineFormat","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/majorGridlines/format","no-oracle","" +"Files","RemoveMgDriveItemWorkbookWorksheetChartAxSeryAxisMajorGridlineFormatLine.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartAxSeryAxisMajorGridlineFormatLine","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/majorGridlines/format/line","no-oracle","" +"Files","RemoveMgDriveItemWorkbookWorksheetChartAxSeryAxisMinorGridline.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartAxSeryAxisMinorGridline","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/minorGridlines","no-oracle","" +"Files","RemoveMgDriveItemWorkbookWorksheetChartAxSeryAxisMinorGridlineFormat.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartAxSeryAxisMinorGridlineFormat","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/minorGridlines/format","no-oracle","" +"Files","RemoveMgDriveItemWorkbookWorksheetChartAxSeryAxisMinorGridlineFormatLine.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartAxSeryAxisMinorGridlineFormatLine","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/minorGridlines/format/line","no-oracle","" +"Files","RemoveMgDriveItemWorkbookWorksheetChartAxSeryAxisTitle.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartAxSeryAxisTitle","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/title","no-oracle","" +"Files","RemoveMgDriveItemWorkbookWorksheetChartAxSeryAxisTitleFormat.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartAxSeryAxisTitleFormat","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/title/format","no-oracle","" +"Files","RemoveMgDriveItemWorkbookWorksheetChartAxSeryAxisTitleFormatFont.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartAxSeryAxisTitleFormatFont","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/title/format/font","no-oracle","" +"Files","RemoveMgDriveItemWorkbookWorksheetChartAxValueAxis.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartAxValueAxis","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis","no-oracle","" +"Files","RemoveMgDriveItemWorkbookWorksheetChartAxValueAxisFormat.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartAxValueAxisFormat","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/format","no-oracle","" +"Files","RemoveMgDriveItemWorkbookWorksheetChartAxValueAxisFormatFont.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartAxValueAxisFormatFont","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/format/font","no-oracle","" +"Files","RemoveMgDriveItemWorkbookWorksheetChartAxValueAxisFormatLine.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartAxValueAxisFormatLine","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/format/line","no-oracle","" +"Files","RemoveMgDriveItemWorkbookWorksheetChartAxValueAxisMajorGridline.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartAxValueAxisMajorGridline","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/majorGridlines","no-oracle","" +"Files","RemoveMgDriveItemWorkbookWorksheetChartAxValueAxisMajorGridlineFormat.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartAxValueAxisMajorGridlineFormat","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/majorGridlines/format","no-oracle","" +"Files","RemoveMgDriveItemWorkbookWorksheetChartAxValueAxisMajorGridlineFormatLine.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartAxValueAxisMajorGridlineFormatLine","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/majorGridlines/format/line","no-oracle","" +"Files","RemoveMgDriveItemWorkbookWorksheetChartAxValueAxisMinorGridline.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartAxValueAxisMinorGridline","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/minorGridlines","no-oracle","" +"Files","RemoveMgDriveItemWorkbookWorksheetChartAxValueAxisMinorGridlineFormat.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartAxValueAxisMinorGridlineFormat","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/minorGridlines/format","no-oracle","" +"Files","RemoveMgDriveItemWorkbookWorksheetChartAxValueAxisMinorGridlineFormatLine.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartAxValueAxisMinorGridlineFormatLine","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/minorGridlines/format/line","no-oracle","" +"Files","RemoveMgDriveItemWorkbookWorksheetChartAxValueAxisTitle.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartAxValueAxisTitle","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/title","no-oracle","" +"Files","RemoveMgDriveItemWorkbookWorksheetChartAxValueAxisTitleFormat.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartAxValueAxisTitleFormat","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/title/format","no-oracle","" +"Files","RemoveMgDriveItemWorkbookWorksheetChartAxValueAxisTitleFormatFont.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartAxValueAxisTitleFormatFont","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/title/format/font","no-oracle","" +"Files","RemoveMgDriveItemWorkbookWorksheetChartDataLabel.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartDataLabel","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/dataLabels","no-oracle","" +"Files","RemoveMgDriveItemWorkbookWorksheetChartDataLabelFormat.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartDataLabelFormat","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/dataLabels/format","no-oracle","" +"Files","RemoveMgDriveItemWorkbookWorksheetChartDataLabelFormatFill.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartDataLabelFormatFill","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/dataLabels/format/fill","no-oracle","" +"Files","RemoveMgDriveItemWorkbookWorksheetChartDataLabelFormatFont.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartDataLabelFormatFont","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/dataLabels/format/font","no-oracle","" +"Files","RemoveMgDriveItemWorkbookWorksheetChartFormat.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartFormat","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/format","no-oracle","" +"Files","RemoveMgDriveItemWorkbookWorksheetChartFormatFill.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartFormatFill","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/format/fill","no-oracle","" +"Files","RemoveMgDriveItemWorkbookWorksheetChartFormatFont.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartFormatFont","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/format/font","no-oracle","" +"Files","RemoveMgDriveItemWorkbookWorksheetChartLegend.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartLegend","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/legend","no-oracle","" +"Files","RemoveMgDriveItemWorkbookWorksheetChartLegendFormat.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartLegendFormat","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/legend/format","no-oracle","" +"Files","RemoveMgDriveItemWorkbookWorksheetChartLegendFormatFill.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartLegendFormatFill","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/legend/format/fill","no-oracle","" +"Files","RemoveMgDriveItemWorkbookWorksheetChartLegendFormatFont.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartLegendFormatFont","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/legend/format/font","no-oracle","" +"Files","RemoveMgDriveItemWorkbookWorksheetChartSery.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartSery","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}","no-oracle","" +"Files","RemoveMgDriveItemWorkbookWorksheetChartSeryFormat.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartSeryFormat","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/format","no-oracle","" +"Files","RemoveMgDriveItemWorkbookWorksheetChartSeryFormatFill.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartSeryFormatFill","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/format/fill","no-oracle","" +"Files","RemoveMgDriveItemWorkbookWorksheetChartSeryFormatLine.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartSeryFormatLine","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/format/line","no-oracle","" +"Files","RemoveMgDriveItemWorkbookWorksheetChartSeryPoint.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartSeryPoint","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/points/{param}","no-oracle","" +"Files","RemoveMgDriveItemWorkbookWorksheetChartSeryPointFormat.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartSeryPointFormat","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/points/{param}/format","no-oracle","" +"Files","RemoveMgDriveItemWorkbookWorksheetChartSeryPointFormatFill.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartSeryPointFormatFill","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/points/{param}/format/fill","no-oracle","" +"Files","RemoveMgDriveItemWorkbookWorksheetChartTitle.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartTitle","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/title","no-oracle","" +"Files","RemoveMgDriveItemWorkbookWorksheetChartTitleFormat.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartTitleFormat","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/title/format","no-oracle","" +"Files","RemoveMgDriveItemWorkbookWorksheetChartTitleFormatFill.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartTitleFormatFill","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/title/format/fill","no-oracle","" +"Files","RemoveMgDriveItemWorkbookWorksheetChartTitleFormatFont.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetChartTitleFormatFont","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/title/format/font","no-oracle","" +"Files","RemoveMgDriveItemWorkbookWorksheetName.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetName","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}","no-oracle","" +"Files","RemoveMgDriveItemWorkbookWorksheetPivotTable.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetPivotTable","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/pivotTables/{param}","no-oracle","" +"Files","RemoveMgDriveItemWorkbookWorksheetProtection.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetProtection","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/protection","no-oracle","" +"Files","RemoveMgDriveItemWorkbookWorksheetTable.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetTable","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}","no-oracle","" +"Files","RemoveMgDriveItemWorkbookWorksheetTableColumn.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetTableColumn","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}","no-oracle","" +"Files","RemoveMgDriveItemWorkbookWorksheetTableColumnFilter.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetTableColumnFilter","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/filter","no-oracle","" +"Files","RemoveMgDriveItemWorkbookWorksheetTableRow.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetTableRow","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}","no-oracle","" +"Files","RemoveMgDriveItemWorkbookWorksheetTableSort.g.cs","v1.0","Remove-MgDriveItemWorkbookWorksheetTableSort","DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/sort","no-oracle","" +"Files","RemoveMgDriveList.g.cs","v1.0","Remove-MgDriveList","DELETE","/drives/{param}/list","matched","Remove-MgDriveList" +"Files","RemoveMgDriveListColumn.g.cs","v1.0","Remove-MgDriveListColumn","DELETE","/drives/{param}/list/columns/{param}","matched","Remove-MgDriveListColumn" +"Files","RemoveMgDriveListContentType.g.cs","v1.0","Remove-MgDriveListContentType","DELETE","/drives/{param}/list/contentTypes/{param}","matched","Remove-MgDriveListContentType" +"Files","RemoveMgDriveListContentTypeColumn.g.cs","v1.0","Remove-MgDriveListContentTypeColumn","DELETE","/drives/{param}/list/contentTypes/{param}/columns/{param}","matched","Remove-MgDriveListContentTypeColumn" +"Files","RemoveMgDriveListContentTypeColumnLink.g.cs","v1.0","Remove-MgDriveListContentTypeColumnLink","DELETE","/drives/{param}/list/contentTypes/{param}/columnLinks/{param}","matched","Remove-MgDriveListContentTypeColumnLink" +"Files","RemoveMgDriveListItem.g.cs","v1.0","Remove-MgDriveListItem","DELETE","/drives/{param}/list/items/{param}","matched","Remove-MgDriveListItem" +"Files","RemoveMgDriveListItemDocumentSetVersion.g.cs","v1.0","Remove-MgDriveListItemDocumentSetVersion","DELETE","/drives/{param}/list/items/{param}/documentSetVersions/{param}","matched","Remove-MgDriveListItemDocumentSetVersion" +"Files","RemoveMgDriveListItemDocumentSetVersionField.g.cs","v1.0","Remove-MgDriveListItemDocumentSetVersionField","DELETE","/drives/{param}/list/items/{param}/documentSetVersions/{param}/fields","matched","Remove-MgDriveListItemDocumentSetVersionField" +"Files","RemoveMgDriveListItemDriveItemContent.g.cs","v1.0","Remove-MgDriveListItemDriveItemContent","DELETE","/drives/{param}/list/items/{param}/driveItem/$value","matched","Remove-MgDriveListItemDriveItemContent" +"Files","RemoveMgDriveListItemField.g.cs","v1.0","Remove-MgDriveListItemField","DELETE","/drives/{param}/list/items/{param}/fields","matched","Remove-MgDriveListItemField" +"Files","RemoveMgDriveListItemPermission.g.cs","v1.0","Remove-MgDriveListItemPermission","DELETE","/drives/{param}/list/items/{param}/permissions/{param}","no-oracle","" +"Files","RemoveMgDriveListItemVersion.g.cs","v1.0","Remove-MgDriveListItemVersion","DELETE","/drives/{param}/list/items/{param}/versions/{param}","matched","Remove-MgDriveListItemVersion" +"Files","RemoveMgDriveListItemVersionField.g.cs","v1.0","Remove-MgDriveListItemVersionField","DELETE","/drives/{param}/list/items/{param}/versions/{param}/fields","matched","Remove-MgDriveListItemVersionField" +"Files","RemoveMgDriveListOperation.g.cs","v1.0","Remove-MgDriveListOperation","DELETE","/drives/{param}/list/operations/{param}","matched","Remove-MgDriveListOperation" +"Files","RemoveMgDriveListPermission.g.cs","v1.0","Remove-MgDriveListPermission","DELETE","/drives/{param}/list/permissions/{param}","no-oracle","" +"Files","RemoveMgDriveListSubscription.g.cs","v1.0","Remove-MgDriveListSubscription","DELETE","/drives/{param}/list/subscriptions/{param}","matched","Remove-MgDriveListSubscription" +"Files","RemoveMgDriveRootContent.g.cs","v1.0","Remove-MgDriveRootContent","DELETE","/drives/{param}/root/$value","matched","Remove-MgDriveRootContent" +"Files","RemoveMgDriveSpecialContent.g.cs","v1.0","Remove-MgDriveSpecialContent","DELETE","/drives/{param}/special/{param}/$value","matched","Remove-MgDriveSpecialContent" +"Files","RemoveMgShare.g.cs","v1.0","Remove-MgShare","DELETE","/shares/{param}","matched","Remove-MgShareSharedDriveItemSharedDriveItem" +"Files","RemoveMgShareDriveItemContent.g.cs","v1.0","Remove-MgShareDriveItemContent","DELETE","/shares/{param}/driveItem/$value","matched","Remove-MgShareDriveItemContent" +"Files","RemoveMgShareItemContent.g.cs","v1.0","Remove-MgShareItemContent","DELETE","/shares/{param}/items/{param}/$value","matched","Remove-MgShareItemContent" +"Files","RemoveMgShareList.g.cs","v1.0","Remove-MgShareList","DELETE","/shares/{param}/list","matched","Remove-MgShareList" +"Files","RemoveMgShareListColumn.g.cs","v1.0","Remove-MgShareListColumn","DELETE","/shares/{param}/list/columns/{param}","matched","Remove-MgShareListColumn" +"Files","RemoveMgShareListContentType.g.cs","v1.0","Remove-MgShareListContentType","DELETE","/shares/{param}/list/contentTypes/{param}","matched","Remove-MgShareListContentType" +"Files","RemoveMgShareListContentTypeColumn.g.cs","v1.0","Remove-MgShareListContentTypeColumn","DELETE","/shares/{param}/list/contentTypes/{param}/columns/{param}","matched","Remove-MgShareListContentTypeColumn" +"Files","RemoveMgShareListContentTypeColumnLink.g.cs","v1.0","Remove-MgShareListContentTypeColumnLink","DELETE","/shares/{param}/list/contentTypes/{param}/columnLinks/{param}","matched","Remove-MgShareListContentTypeColumnLink" +"Files","RemoveMgShareListItem.g.cs","v1.0","Remove-MgShareListItem","DELETE","/shares/{param}/list/items/{param}","no-oracle","" +"Files","RemoveMgShareListItemDocumentSetVersion.g.cs","v1.0","Remove-MgShareListItemDocumentSetVersion","DELETE","/shares/{param}/list/items/{param}/documentSetVersions/{param}","matched","Remove-MgShareListItemDocumentSetVersion" +"Files","RemoveMgShareListItemDocumentSetVersionField.g.cs","v1.0","Remove-MgShareListItemDocumentSetVersionField","DELETE","/shares/{param}/list/items/{param}/documentSetVersions/{param}/fields","matched","Remove-MgShareListItemDocumentSetVersionField" +"Files","RemoveMgShareListItemDriveItemContent.g.cs","v1.0","Remove-MgShareListItemDriveItemContent","DELETE","/shares/{param}/list/items/{param}/driveItem/$value","matched","Remove-MgShareListItemDriveItemContent" +"Files","RemoveMgShareListItemField.g.cs","v1.0","Remove-MgShareListItemField","DELETE","/shares/{param}/list/items/{param}/fields","matched","Remove-MgShareListItemField" +"Files","RemoveMgShareListItemPermission.g.cs","v1.0","Remove-MgShareListItemPermission","DELETE","/shares/{param}/list/items/{param}/permissions/{param}","no-oracle","" +"Files","RemoveMgShareListItemVersion.g.cs","v1.0","Remove-MgShareListItemVersion","DELETE","/shares/{param}/list/items/{param}/versions/{param}","matched","Remove-MgShareListItemVersion" +"Files","RemoveMgShareListItemVersionField.g.cs","v1.0","Remove-MgShareListItemVersionField","DELETE","/shares/{param}/list/items/{param}/versions/{param}/fields","matched","Remove-MgShareListItemVersionField" +"Files","RemoveMgShareListOperation.g.cs","v1.0","Remove-MgShareListOperation","DELETE","/shares/{param}/list/operations/{param}","matched","Remove-MgShareListOperation" +"Files","RemoveMgShareListPermission.g.cs","v1.0","Remove-MgShareListPermission","DELETE","/shares/{param}/list/permissions/{param}","no-oracle","" +"Files","RemoveMgShareListSubscription.g.cs","v1.0","Remove-MgShareListSubscription","DELETE","/shares/{param}/list/subscriptions/{param}","matched","Remove-MgShareListSubscription" +"Files","RemoveMgSharePermission.g.cs","v1.0","Remove-MgSharePermission","DELETE","/shares/{param}/permission","matched","Remove-MgSharePermission" +"Files","RemoveMgShareRootContent.g.cs","v1.0","Remove-MgShareRootContent","DELETE","/shares/{param}/root/$value","matched","Remove-MgShareRootContent" +"Files","SetMgDriveBundleContent.g.cs","v1.0","Set-MgDriveBundleContent","PUT","/drives/{param}/bundles/{param}/$value","matched","Set-MgDriveBundleContent" +"Files","SetMgDriveFollowingContent.g.cs","v1.0","Set-MgDriveFollowingContent","PUT","/drives/{param}/following/{param}/$value","matched","Set-MgDriveFollowingContent" +"Files","SetMgDriveItemAnalyticItemActivityStatActivityDriveItemContent.g.cs","v1.0","Set-MgDriveItemAnalyticItemActivityStatActivityDriveItemContent","PUT","/drives/{param}/items/{param}/analytics/itemActivityStats/{param}/activities/{param}/driveItem/$value","no-oracle","" +"Files","SetMgDriveItemChildContent.g.cs","v1.0","Set-MgDriveItemChildContent","PUT","/drives/{param}/items/{param}/children/{param}/$value","matched","Set-MgDriveItemChildContent" +"Files","SetMgDriveItemContent.g.cs","v1.0","Set-MgDriveItemContent","PUT","/drives/{param}/items/{param}/$value","matched","Set-MgDriveItemContent" +"Files","SetMgDriveItemVersionContent.g.cs","v1.0","Set-MgDriveItemVersionContent","PUT","/drives/{param}/items/{param}/versions/{param}/$value","matched","Set-MgDriveItemVersionContent" +"Files","SetMgDriveListItemDriveItemContent.g.cs","v1.0","Set-MgDriveListItemDriveItemContent","PUT","/drives/{param}/list/items/{param}/driveItem/$value","matched","Set-MgDriveListItemDriveItemContent" +"Files","SetMgDriveRootContent.g.cs","v1.0","Set-MgDriveRootContent","PUT","/drives/{param}/root/$value","matched","Set-MgDriveRootContent" +"Files","SetMgDriveSpecialContent.g.cs","v1.0","Set-MgDriveSpecialContent","PUT","/drives/{param}/special/{param}/$value","matched","Set-MgDriveSpecialContent" +"Files","SetMgShareDriveItemContent.g.cs","v1.0","Set-MgShareDriveItemContent","PUT","/shares/{param}/driveItem/$value","matched","Set-MgShareDriveItemContent" +"Files","SetMgShareItemContent.g.cs","v1.0","Set-MgShareItemContent","PUT","/shares/{param}/items/{param}/$value","matched","Set-MgShareItemContent" +"Files","SetMgShareListItemDriveItemContent.g.cs","v1.0","Set-MgShareListItemDriveItemContent","PUT","/shares/{param}/list/items/{param}/driveItem/$value","matched","Set-MgShareListItemDriveItemContent" +"Files","SetMgShareRootContent.g.cs","v1.0","Set-MgShareRootContent","PUT","/shares/{param}/root/$value","matched","Set-MgShareRootContent" +"Files","UpdateMgDrive.g.cs","v1.0","Update-MgDrive","PATCH","/drives/{param}","matched","Update-MgDrive" +"Files","UpdateMgDriveCreatedByUserMailboxSetting.g.cs","v1.0","Update-MgDriveCreatedByUserMailboxSetting","PATCH","/drives/{param}/createdByUser/mailboxSettings","matched","Update-MgDriveCreatedByUserMailboxSetting" +"Files","UpdateMgDriveItem.g.cs","v1.0","Update-MgDriveItem","PATCH","/drives/{param}/items/{param}","matched","Update-MgDriveItem" +"Files","UpdateMgDriveItemAnalytic.g.cs","v1.0","Update-MgDriveItemAnalytic","PATCH","/drives/{param}/items/{param}/analytics","matched","Update-MgDriveItemAnalytic" +"Files","UpdateMgDriveItemAnalyticItemActivityStat.g.cs","v1.0","Update-MgDriveItemAnalyticItemActivityStat","PATCH","/drives/{param}/items/{param}/analytics/itemActivityStats/{param}","matched","Update-MgDriveItemAnalyticItemActivityStat" +"Files","UpdateMgDriveItemAnalyticItemActivityStatActivity.g.cs","v1.0","Update-MgDriveItemAnalyticItemActivityStatActivity","PATCH","/drives/{param}/items/{param}/analytics/itemActivityStats/{param}/activities/{param}","no-oracle","" +"Files","UpdateMgDriveItemCreatedByUserMailboxSetting.g.cs","v1.0","Update-MgDriveItemCreatedByUserMailboxSetting","PATCH","/drives/{param}/items/{param}/createdByUser/mailboxSettings","matched","Update-MgDriveItemCreatedByUserMailboxSetting" +"Files","UpdateMgDriveItemLastModifiedByUserMailboxSetting.g.cs","v1.0","Update-MgDriveItemLastModifiedByUserMailboxSetting","PATCH","/drives/{param}/items/{param}/lastModifiedByUser/mailboxSettings","matched","Update-MgDriveItemLastModifiedByUserMailboxSetting" +"Files","UpdateMgDriveItemPermission.g.cs","v1.0","Update-MgDriveItemPermission","PATCH","/drives/{param}/items/{param}/permissions/{param}","matched","Update-MgDriveItemPermission" +"Files","UpdateMgDriveItemRetentionLabel.g.cs","v1.0","Update-MgDriveItemRetentionLabel","PATCH","/drives/{param}/items/{param}/retentionLabel","matched","Update-MgDriveItemRetentionLabel" +"Files","UpdateMgDriveItemSubscription.g.cs","v1.0","Update-MgDriveItemSubscription","PATCH","/drives/{param}/items/{param}/subscriptions/{param}","matched","Update-MgDriveItemSubscription" +"Files","UpdateMgDriveItemThumbnail.g.cs","v1.0","Update-MgDriveItemThumbnail","PATCH","/drives/{param}/items/{param}/thumbnails/{param}","matched","Update-MgDriveItemThumbnail" +"Files","UpdateMgDriveItemVersion.g.cs","v1.0","Update-MgDriveItemVersion","PATCH","/drives/{param}/items/{param}/versions/{param}","matched","Update-MgDriveItemVersion" +"Files","UpdateMgDriveItemWorkbook.g.cs","v1.0","Update-MgDriveItemWorkbook","PATCH","/drives/{param}/items/{param}/workbook","no-oracle","" +"Files","UpdateMgDriveItemWorkbookApplication.g.cs","v1.0","Update-MgDriveItemWorkbookApplication","PATCH","/drives/{param}/items/{param}/workbook/application","no-oracle","" +"Files","UpdateMgDriveItemWorkbookComment.g.cs","v1.0","Update-MgDriveItemWorkbookComment","PATCH","/drives/{param}/items/{param}/workbook/comments/{param}","no-oracle","" +"Files","UpdateMgDriveItemWorkbookCommentReply.g.cs","v1.0","Update-MgDriveItemWorkbookCommentReply","PATCH","/drives/{param}/items/{param}/workbook/comments/{param}/replies/{param}","no-oracle","" +"Files","UpdateMgDriveItemWorkbookFunction.g.cs","v1.0","Update-MgDriveItemWorkbookFunction","PATCH","/drives/{param}/items/{param}/workbook/functions","no-oracle","" +"Files","UpdateMgDriveItemWorkbookName.g.cs","v1.0","Update-MgDriveItemWorkbookName","PATCH","/drives/{param}/items/{param}/workbook/names/{param}","no-oracle","" +"Files","UpdateMgDriveItemWorkbookOperation.g.cs","v1.0","Update-MgDriveItemWorkbookOperation","PATCH","/drives/{param}/items/{param}/workbook/operations/{param}","no-oracle","" +"Files","UpdateMgDriveItemWorkbookTable.g.cs","v1.0","Update-MgDriveItemWorkbookTable","PATCH","/drives/{param}/items/{param}/workbook/tables/{param}","no-oracle","" +"Files","UpdateMgDriveItemWorkbookTableColumn.g.cs","v1.0","Update-MgDriveItemWorkbookTableColumn","PATCH","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}","no-oracle","" +"Files","UpdateMgDriveItemWorkbookTableColumnFilter.g.cs","v1.0","Update-MgDriveItemWorkbookTableColumnFilter","PATCH","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/filter","no-oracle","" +"Files","UpdateMgDriveItemWorkbookTableRow.g.cs","v1.0","Update-MgDriveItemWorkbookTableRow","PATCH","/drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}","no-oracle","" +"Files","UpdateMgDriveItemWorkbookTableSort.g.cs","v1.0","Update-MgDriveItemWorkbookTableSort","PATCH","/drives/{param}/items/{param}/workbook/tables/{param}/sort","no-oracle","" +"Files","UpdateMgDriveItemWorkbookWorksheet.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheet","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}","no-oracle","" +"Files","UpdateMgDriveItemWorkbookWorksheetChart.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChart","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}","no-oracle","" +"Files","UpdateMgDriveItemWorkbookWorksheetChartAx.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartAx","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes","no-oracle","" +"Files","UpdateMgDriveItemWorkbookWorksheetChartAxCategoryAxis.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartAxCategoryAxis","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis","no-oracle","" +"Files","UpdateMgDriveItemWorkbookWorksheetChartAxCategoryAxisFormat.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartAxCategoryAxisFormat","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/format","no-oracle","" +"Files","UpdateMgDriveItemWorkbookWorksheetChartAxCategoryAxisFormatFont.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartAxCategoryAxisFormatFont","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/format/font","no-oracle","" +"Files","UpdateMgDriveItemWorkbookWorksheetChartAxCategoryAxisFormatLine.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartAxCategoryAxisFormatLine","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/format/line","no-oracle","" +"Files","UpdateMgDriveItemWorkbookWorksheetChartAxCategoryAxisMajorGridline.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMajorGridline","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/majorGridlines","no-oracle","" +"Files","UpdateMgDriveItemWorkbookWorksheetChartAxCategoryAxisMajorGridlineFormat.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMajorGridlineFormat","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/majorGridlines/format","no-oracle","" +"Files","UpdateMgDriveItemWorkbookWorksheetChartAxCategoryAxisMajorGridlineFormatLine.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMajorGridlineFormatLine","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/majorGridlines/format/line","no-oracle","" +"Files","UpdateMgDriveItemWorkbookWorksheetChartAxCategoryAxisMinorGridline.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMinorGridline","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/minorGridlines","no-oracle","" +"Files","UpdateMgDriveItemWorkbookWorksheetChartAxCategoryAxisMinorGridlineFormat.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMinorGridlineFormat","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/minorGridlines/format","no-oracle","" +"Files","UpdateMgDriveItemWorkbookWorksheetChartAxCategoryAxisMinorGridlineFormatLine.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMinorGridlineFormatLine","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/minorGridlines/format/line","no-oracle","" +"Files","UpdateMgDriveItemWorkbookWorksheetChartAxCategoryAxisTitle.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartAxCategoryAxisTitle","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/title","no-oracle","" +"Files","UpdateMgDriveItemWorkbookWorksheetChartAxCategoryAxisTitleFormat.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartAxCategoryAxisTitleFormat","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/title/format","no-oracle","" +"Files","UpdateMgDriveItemWorkbookWorksheetChartAxCategoryAxisTitleFormatFont.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartAxCategoryAxisTitleFormatFont","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/title/format/font","no-oracle","" +"Files","UpdateMgDriveItemWorkbookWorksheetChartAxSeryAxis.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartAxSeryAxis","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis","no-oracle","" +"Files","UpdateMgDriveItemWorkbookWorksheetChartAxSeryAxisFormat.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartAxSeryAxisFormat","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/format","no-oracle","" +"Files","UpdateMgDriveItemWorkbookWorksheetChartAxSeryAxisFormatFont.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartAxSeryAxisFormatFont","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/format/font","no-oracle","" +"Files","UpdateMgDriveItemWorkbookWorksheetChartAxSeryAxisFormatLine.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartAxSeryAxisFormatLine","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/format/line","no-oracle","" +"Files","UpdateMgDriveItemWorkbookWorksheetChartAxSeryAxisMajorGridline.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartAxSeryAxisMajorGridline","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/majorGridlines","no-oracle","" +"Files","UpdateMgDriveItemWorkbookWorksheetChartAxSeryAxisMajorGridlineFormat.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartAxSeryAxisMajorGridlineFormat","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/majorGridlines/format","no-oracle","" +"Files","UpdateMgDriveItemWorkbookWorksheetChartAxSeryAxisMajorGridlineFormatLine.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartAxSeryAxisMajorGridlineFormatLine","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/majorGridlines/format/line","no-oracle","" +"Files","UpdateMgDriveItemWorkbookWorksheetChartAxSeryAxisMinorGridline.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartAxSeryAxisMinorGridline","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/minorGridlines","no-oracle","" +"Files","UpdateMgDriveItemWorkbookWorksheetChartAxSeryAxisMinorGridlineFormat.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartAxSeryAxisMinorGridlineFormat","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/minorGridlines/format","no-oracle","" +"Files","UpdateMgDriveItemWorkbookWorksheetChartAxSeryAxisMinorGridlineFormatLine.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartAxSeryAxisMinorGridlineFormatLine","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/minorGridlines/format/line","no-oracle","" +"Files","UpdateMgDriveItemWorkbookWorksheetChartAxSeryAxisTitle.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartAxSeryAxisTitle","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/title","no-oracle","" +"Files","UpdateMgDriveItemWorkbookWorksheetChartAxSeryAxisTitleFormat.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartAxSeryAxisTitleFormat","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/title/format","no-oracle","" +"Files","UpdateMgDriveItemWorkbookWorksheetChartAxSeryAxisTitleFormatFont.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartAxSeryAxisTitleFormatFont","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/title/format/font","no-oracle","" +"Files","UpdateMgDriveItemWorkbookWorksheetChartAxValueAxis.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartAxValueAxis","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis","no-oracle","" +"Files","UpdateMgDriveItemWorkbookWorksheetChartAxValueAxisFormat.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartAxValueAxisFormat","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/format","no-oracle","" +"Files","UpdateMgDriveItemWorkbookWorksheetChartAxValueAxisFormatFont.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartAxValueAxisFormatFont","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/format/font","no-oracle","" +"Files","UpdateMgDriveItemWorkbookWorksheetChartAxValueAxisFormatLine.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartAxValueAxisFormatLine","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/format/line","no-oracle","" +"Files","UpdateMgDriveItemWorkbookWorksheetChartAxValueAxisMajorGridline.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartAxValueAxisMajorGridline","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/majorGridlines","no-oracle","" +"Files","UpdateMgDriveItemWorkbookWorksheetChartAxValueAxisMajorGridlineFormat.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartAxValueAxisMajorGridlineFormat","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/majorGridlines/format","no-oracle","" +"Files","UpdateMgDriveItemWorkbookWorksheetChartAxValueAxisMajorGridlineFormatLine.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartAxValueAxisMajorGridlineFormatLine","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/majorGridlines/format/line","no-oracle","" +"Files","UpdateMgDriveItemWorkbookWorksheetChartAxValueAxisMinorGridline.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartAxValueAxisMinorGridline","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/minorGridlines","no-oracle","" +"Files","UpdateMgDriveItemWorkbookWorksheetChartAxValueAxisMinorGridlineFormat.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartAxValueAxisMinorGridlineFormat","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/minorGridlines/format","no-oracle","" +"Files","UpdateMgDriveItemWorkbookWorksheetChartAxValueAxisMinorGridlineFormatLine.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartAxValueAxisMinorGridlineFormatLine","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/minorGridlines/format/line","no-oracle","" +"Files","UpdateMgDriveItemWorkbookWorksheetChartAxValueAxisTitle.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartAxValueAxisTitle","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/title","no-oracle","" +"Files","UpdateMgDriveItemWorkbookWorksheetChartAxValueAxisTitleFormat.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartAxValueAxisTitleFormat","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/title/format","no-oracle","" +"Files","UpdateMgDriveItemWorkbookWorksheetChartAxValueAxisTitleFormatFont.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartAxValueAxisTitleFormatFont","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/title/format/font","no-oracle","" +"Files","UpdateMgDriveItemWorkbookWorksheetChartDataLabel.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartDataLabel","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/dataLabels","no-oracle","" +"Files","UpdateMgDriveItemWorkbookWorksheetChartDataLabelFormat.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartDataLabelFormat","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/dataLabels/format","no-oracle","" +"Files","UpdateMgDriveItemWorkbookWorksheetChartDataLabelFormatFill.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartDataLabelFormatFill","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/dataLabels/format/fill","no-oracle","" +"Files","UpdateMgDriveItemWorkbookWorksheetChartDataLabelFormatFont.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartDataLabelFormatFont","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/dataLabels/format/font","no-oracle","" +"Files","UpdateMgDriveItemWorkbookWorksheetChartFormat.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartFormat","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/format","no-oracle","" +"Files","UpdateMgDriveItemWorkbookWorksheetChartFormatFill.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartFormatFill","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/format/fill","no-oracle","" +"Files","UpdateMgDriveItemWorkbookWorksheetChartFormatFont.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartFormatFont","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/format/font","no-oracle","" +"Files","UpdateMgDriveItemWorkbookWorksheetChartLegend.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartLegend","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/legend","no-oracle","" +"Files","UpdateMgDriveItemWorkbookWorksheetChartLegendFormat.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartLegendFormat","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/legend/format","no-oracle","" +"Files","UpdateMgDriveItemWorkbookWorksheetChartLegendFormatFill.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartLegendFormatFill","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/legend/format/fill","no-oracle","" +"Files","UpdateMgDriveItemWorkbookWorksheetChartLegendFormatFont.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartLegendFormatFont","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/legend/format/font","no-oracle","" +"Files","UpdateMgDriveItemWorkbookWorksheetChartSery.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartSery","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}","no-oracle","" +"Files","UpdateMgDriveItemWorkbookWorksheetChartSeryFormat.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartSeryFormat","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/format","no-oracle","" +"Files","UpdateMgDriveItemWorkbookWorksheetChartSeryFormatFill.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartSeryFormatFill","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/format/fill","no-oracle","" +"Files","UpdateMgDriveItemWorkbookWorksheetChartSeryFormatLine.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartSeryFormatLine","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/format/line","no-oracle","" +"Files","UpdateMgDriveItemWorkbookWorksheetChartSeryPoint.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartSeryPoint","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/points/{param}","no-oracle","" +"Files","UpdateMgDriveItemWorkbookWorksheetChartSeryPointFormat.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartSeryPointFormat","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/points/{param}/format","no-oracle","" +"Files","UpdateMgDriveItemWorkbookWorksheetChartSeryPointFormatFill.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartSeryPointFormatFill","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/points/{param}/format/fill","no-oracle","" +"Files","UpdateMgDriveItemWorkbookWorksheetChartTitle.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartTitle","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/title","no-oracle","" +"Files","UpdateMgDriveItemWorkbookWorksheetChartTitleFormat.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartTitleFormat","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/title/format","no-oracle","" +"Files","UpdateMgDriveItemWorkbookWorksheetChartTitleFormatFill.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartTitleFormatFill","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/title/format/fill","no-oracle","" +"Files","UpdateMgDriveItemWorkbookWorksheetChartTitleFormatFont.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetChartTitleFormatFont","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/title/format/font","no-oracle","" +"Files","UpdateMgDriveItemWorkbookWorksheetName.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetName","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}","no-oracle","" +"Files","UpdateMgDriveItemWorkbookWorksheetPivotTable.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetPivotTable","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/pivotTables/{param}","no-oracle","" +"Files","UpdateMgDriveItemWorkbookWorksheetProtection.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetProtection","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/protection","no-oracle","" +"Files","UpdateMgDriveItemWorkbookWorksheetTable.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetTable","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}","no-oracle","" +"Files","UpdateMgDriveItemWorkbookWorksheetTableColumn.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetTableColumn","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}","no-oracle","" +"Files","UpdateMgDriveItemWorkbookWorksheetTableColumnFilter.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetTableColumnFilter","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/filter","no-oracle","" +"Files","UpdateMgDriveItemWorkbookWorksheetTableRow.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetTableRow","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}","no-oracle","" +"Files","UpdateMgDriveItemWorkbookWorksheetTableSort.g.cs","v1.0","Update-MgDriveItemWorkbookWorksheetTableSort","PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/sort","no-oracle","" +"Files","UpdateMgDriveLastModifiedByUserMailboxSetting.g.cs","v1.0","Update-MgDriveLastModifiedByUserMailboxSetting","PATCH","/drives/{param}/lastModifiedByUser/mailboxSettings","matched","Update-MgDriveLastModifiedByUserMailboxSetting" +"Files","UpdateMgDriveList.g.cs","v1.0","Update-MgDriveList","PATCH","/drives/{param}/list","matched","Update-MgDriveList" +"Files","UpdateMgDriveListColumn.g.cs","v1.0","Update-MgDriveListColumn","PATCH","/drives/{param}/list/columns/{param}","matched","Update-MgDriveListColumn" +"Files","UpdateMgDriveListContentType.g.cs","v1.0","Update-MgDriveListContentType","PATCH","/drives/{param}/list/contentTypes/{param}","matched","Update-MgDriveListContentType" +"Files","UpdateMgDriveListContentTypeColumn.g.cs","v1.0","Update-MgDriveListContentTypeColumn","PATCH","/drives/{param}/list/contentTypes/{param}/columns/{param}","matched","Update-MgDriveListContentTypeColumn" +"Files","UpdateMgDriveListContentTypeColumnLink.g.cs","v1.0","Update-MgDriveListContentTypeColumnLink","PATCH","/drives/{param}/list/contentTypes/{param}/columnLinks/{param}","matched","Update-MgDriveListContentTypeColumnLink" +"Files","UpdateMgDriveListCreatedByUserMailboxSetting.g.cs","v1.0","Update-MgDriveListCreatedByUserMailboxSetting","PATCH","/drives/{param}/list/createdByUser/mailboxSettings","matched","Update-MgDriveListCreatedByUserMailboxSetting" +"Files","UpdateMgDriveListItem.g.cs","v1.0","Update-MgDriveListItem","PATCH","/drives/{param}/list/items/{param}","matched","Update-MgDriveListItem" +"Files","UpdateMgDriveListItemCreatedByUserMailboxSetting.g.cs","v1.0","Update-MgDriveListItemCreatedByUserMailboxSetting","PATCH","/drives/{param}/list/items/{param}/createdByUser/mailboxSettings","matched","Update-MgDriveListItemCreatedByUserMailboxSetting" +"Files","UpdateMgDriveListItemDocumentSetVersion.g.cs","v1.0","Update-MgDriveListItemDocumentSetVersion","PATCH","/drives/{param}/list/items/{param}/documentSetVersions/{param}","matched","Update-MgDriveListItemDocumentSetVersion" +"Files","UpdateMgDriveListItemDocumentSetVersionField.g.cs","v1.0","Update-MgDriveListItemDocumentSetVersionField","PATCH","/drives/{param}/list/items/{param}/documentSetVersions/{param}/fields","matched","Update-MgDriveListItemDocumentSetVersionField" +"Files","UpdateMgDriveListItemField.g.cs","v1.0","Update-MgDriveListItemField","PATCH","/drives/{param}/list/items/{param}/fields","matched","Update-MgDriveListItemField" +"Files","UpdateMgDriveListItemLastModifiedByUserMailboxSetting.g.cs","v1.0","Update-MgDriveListItemLastModifiedByUserMailboxSetting","PATCH","/drives/{param}/list/items/{param}/lastModifiedByUser/mailboxSettings","matched","Update-MgDriveListItemLastModifiedByUserMailboxSetting" +"Files","UpdateMgDriveListItemPermission.g.cs","v1.0","Update-MgDriveListItemPermission","PATCH","/drives/{param}/list/items/{param}/permissions/{param}","no-oracle","" +"Files","UpdateMgDriveListItemVersion.g.cs","v1.0","Update-MgDriveListItemVersion","PATCH","/drives/{param}/list/items/{param}/versions/{param}","matched","Update-MgDriveListItemVersion" +"Files","UpdateMgDriveListItemVersionField.g.cs","v1.0","Update-MgDriveListItemVersionField","PATCH","/drives/{param}/list/items/{param}/versions/{param}/fields","matched","Update-MgDriveListItemVersionField" +"Files","UpdateMgDriveListLastModifiedByUserMailboxSetting.g.cs","v1.0","Update-MgDriveListLastModifiedByUserMailboxSetting","PATCH","/drives/{param}/list/lastModifiedByUser/mailboxSettings","matched","Update-MgDriveListLastModifiedByUserMailboxSetting" +"Files","UpdateMgDriveListOperation.g.cs","v1.0","Update-MgDriveListOperation","PATCH","/drives/{param}/list/operations/{param}","matched","Update-MgDriveListOperation" +"Files","UpdateMgDriveListPermission.g.cs","v1.0","Update-MgDriveListPermission","PATCH","/drives/{param}/list/permissions/{param}","no-oracle","" +"Files","UpdateMgDriveListSubscription.g.cs","v1.0","Update-MgDriveListSubscription","PATCH","/drives/{param}/list/subscriptions/{param}","matched","Update-MgDriveListSubscription" +"Files","UpdateMgShare.g.cs","v1.0","Update-MgShare","PATCH","/shares/{param}","matched","Update-MgShareSharedDriveItemSharedDriveItem" +"Files","UpdateMgShareCreatedByUserMailboxSetting.g.cs","v1.0","Update-MgShareCreatedByUserMailboxSetting","PATCH","/shares/{param}/createdByUser/mailboxSettings","matched","Update-MgShareCreatedByUserMailboxSetting" +"Files","UpdateMgShareLastModifiedByUserMailboxSetting.g.cs","v1.0","Update-MgShareLastModifiedByUserMailboxSetting","PATCH","/shares/{param}/lastModifiedByUser/mailboxSettings","matched","Update-MgShareLastModifiedByUserMailboxSetting" +"Files","UpdateMgShareList.g.cs","v1.0","Update-MgShareList","PATCH","/shares/{param}/list","matched","Update-MgShareList" +"Files","UpdateMgShareListColumn.g.cs","v1.0","Update-MgShareListColumn","PATCH","/shares/{param}/list/columns/{param}","matched","Update-MgShareListColumn" +"Files","UpdateMgShareListContentType.g.cs","v1.0","Update-MgShareListContentType","PATCH","/shares/{param}/list/contentTypes/{param}","matched","Update-MgShareListContentType" +"Files","UpdateMgShareListContentTypeColumn.g.cs","v1.0","Update-MgShareListContentTypeColumn","PATCH","/shares/{param}/list/contentTypes/{param}/columns/{param}","matched","Update-MgShareListContentTypeColumn" +"Files","UpdateMgShareListContentTypeColumnLink.g.cs","v1.0","Update-MgShareListContentTypeColumnLink","PATCH","/shares/{param}/list/contentTypes/{param}/columnLinks/{param}","matched","Update-MgShareListContentTypeColumnLink" +"Files","UpdateMgShareListCreatedByUserMailboxSetting.g.cs","v1.0","Update-MgShareListCreatedByUserMailboxSetting","PATCH","/shares/{param}/list/createdByUser/mailboxSettings","matched","Update-MgShareListCreatedByUserMailboxSetting" +"Files","UpdateMgShareListItem.g.cs","v1.0","Update-MgShareListItem","PATCH","/shares/{param}/list/items/{param}","no-oracle","" +"Files","UpdateMgShareListItemCreatedByUserMailboxSetting.g.cs","v1.0","Update-MgShareListItemCreatedByUserMailboxSetting","PATCH","/shares/{param}/list/items/{param}/createdByUser/mailboxSettings","matched","Update-MgShareListItemCreatedByUserMailboxSetting" +"Files","UpdateMgShareListItemDocumentSetVersion.g.cs","v1.0","Update-MgShareListItemDocumentSetVersion","PATCH","/shares/{param}/list/items/{param}/documentSetVersions/{param}","matched","Update-MgShareListItemDocumentSetVersion" +"Files","UpdateMgShareListItemDocumentSetVersionField.g.cs","v1.0","Update-MgShareListItemDocumentSetVersionField","PATCH","/shares/{param}/list/items/{param}/documentSetVersions/{param}/fields","matched","Update-MgShareListItemDocumentSetVersionField" +"Files","UpdateMgShareListItemField.g.cs","v1.0","Update-MgShareListItemField","PATCH","/shares/{param}/list/items/{param}/fields","matched","Update-MgShareListItemField" +"Files","UpdateMgShareListItemLastModifiedByUserMailboxSetting.g.cs","v1.0","Update-MgShareListItemLastModifiedByUserMailboxSetting","PATCH","/shares/{param}/list/items/{param}/lastModifiedByUser/mailboxSettings","matched","Update-MgShareListItemLastModifiedByUserMailboxSetting" +"Files","UpdateMgShareListItemPermission.g.cs","v1.0","Update-MgShareListItemPermission","PATCH","/shares/{param}/list/items/{param}/permissions/{param}","no-oracle","" +"Files","UpdateMgShareListItemVersion.g.cs","v1.0","Update-MgShareListItemVersion","PATCH","/shares/{param}/list/items/{param}/versions/{param}","matched","Update-MgShareListItemVersion" +"Files","UpdateMgShareListItemVersionField.g.cs","v1.0","Update-MgShareListItemVersionField","PATCH","/shares/{param}/list/items/{param}/versions/{param}/fields","matched","Update-MgShareListItemVersionField" +"Files","UpdateMgShareListLastModifiedByUserMailboxSetting.g.cs","v1.0","Update-MgShareListLastModifiedByUserMailboxSetting","PATCH","/shares/{param}/list/lastModifiedByUser/mailboxSettings","matched","Update-MgShareListLastModifiedByUserMailboxSetting" +"Files","UpdateMgShareListOperation.g.cs","v1.0","Update-MgShareListOperation","PATCH","/shares/{param}/list/operations/{param}","matched","Update-MgShareListOperation" +"Files","UpdateMgShareListPermission.g.cs","v1.0","Update-MgShareListPermission","PATCH","/shares/{param}/list/permissions/{param}","no-oracle","" +"Files","UpdateMgShareListSubscription.g.cs","v1.0","Update-MgShareListSubscription","PATCH","/shares/{param}/list/subscriptions/{param}","matched","Update-MgShareListSubscription" +"Files","UpdateMgSharePermission.g.cs","v1.0","Update-MgSharePermission","PATCH","/shares/{param}/permission","matched","Update-MgSharePermission" +"Groups","GetMgGroup_Get.g.cs","v1.0","Get-MgGroup","GET","/groups/{param}","matched","Get-MgGroup" +"Groups","GetMgGroup_List.g.cs","v1.0","Get-MgGroup","GET","/groups","matched","Get-MgGroup" +"Groups","GetMgGroup.g.cs","v1.0","Get-MgGroup","","","dispatcher","" +"Groups","GetMgGroupAcceptedSender.g.cs","v1.0","Get-MgGroupAcceptedSender","GET","/groups/{param}/acceptedSenders","matched","Get-MgGroupAcceptedSender" +"Groups","GetMgGroupAcceptedSenderByRef.g.cs","v1.0","Get-MgGroupAcceptedSenderByRef","GET","/groups/{param}/acceptedSenders/$ref","matched","Get-MgGroupAcceptedSenderByRef" +"Groups","GetMgGroupAcceptedSenderCount.g.cs","v1.0","Get-MgGroupAcceptedSenderCount","GET","/groups/{param}/acceptedSenders/$count","matched","Get-MgGroupAcceptedSenderCount" +"Groups","GetMgGroupConversation_Get.g.cs","v1.0","Get-MgGroupConversation","GET","/groups/{param}/conversations/{param}","matched","Get-MgGroupConversation" +"Groups","GetMgGroupConversation_List.g.cs","v1.0","Get-MgGroupConversation","GET","/groups/{param}/conversations","matched","Get-MgGroupConversation" +"Groups","GetMgGroupConversation.g.cs","v1.0","Get-MgGroupConversation","","","dispatcher","" +"Groups","GetMgGroupConversationCount.g.cs","v1.0","Get-MgGroupConversationCount","GET","/groups/{param}/conversations/$count","matched","Get-MgGroupConversationCount" +"Groups","GetMgGroupConversationThread_Get.g.cs","v1.0","Get-MgGroupConversationThread","GET","/groups/{param}/conversations/{param}/threads/{param}","matched","Get-MgGroupConversationThread" +"Groups","GetMgGroupConversationThread_List.g.cs","v1.0","Get-MgGroupConversationThread","GET","/groups/{param}/conversations/{param}/threads","matched","Get-MgGroupConversationThread" +"Groups","GetMgGroupConversationThread.g.cs","v1.0","Get-MgGroupConversationThread","","","dispatcher","" +"Groups","GetMgGroupConversationThreadCount.g.cs","v1.0","Get-MgGroupConversationThreadCount","GET","/groups/{param}/conversations/{param}/threads/$count","matched","Get-MgGroupConversationThreadCount" +"Groups","GetMgGroupConversationThreadPost_Get.g.cs","v1.0","Get-MgGroupConversationThreadPost","GET","/groups/{param}/conversations/{param}/threads/{param}/posts/{param}","matched","Get-MgGroupConversationThreadPost" +"Groups","GetMgGroupConversationThreadPost_List.g.cs","v1.0","Get-MgGroupConversationThreadPost","GET","/groups/{param}/conversations/{param}/threads/{param}/posts","matched","Get-MgGroupConversationThreadPost" +"Groups","GetMgGroupConversationThreadPost.g.cs","v1.0","Get-MgGroupConversationThreadPost","","","dispatcher","" +"Groups","GetMgGroupConversationThreadPostAttachment_Get.g.cs","v1.0","Get-MgGroupConversationThreadPostAttachment","GET","/groups/{param}/conversations/{param}/threads/{param}/posts/{param}/attachments/{param}","matched","Get-MgGroupConversationThreadPostAttachment" +"Groups","GetMgGroupConversationThreadPostAttachment_List.g.cs","v1.0","Get-MgGroupConversationThreadPostAttachment","GET","/groups/{param}/conversations/{param}/threads/{param}/posts/{param}/attachments","matched","Get-MgGroupConversationThreadPostAttachment" +"Groups","GetMgGroupConversationThreadPostAttachment.g.cs","v1.0","Get-MgGroupConversationThreadPostAttachment","","","dispatcher","" +"Groups","GetMgGroupConversationThreadPostAttachmentCount.g.cs","v1.0","Get-MgGroupConversationThreadPostAttachmentCount","GET","/groups/{param}/conversations/{param}/threads/{param}/posts/{param}/attachments/$count","matched","Get-MgGroupConversationThreadPostAttachmentCount" +"Groups","GetMgGroupConversationThreadPostCount.g.cs","v1.0","Get-MgGroupConversationThreadPostCount","GET","/groups/{param}/conversations/{param}/threads/{param}/posts/$count","matched","Get-MgGroupConversationThreadPostCount" +"Groups","GetMgGroupConversationThreadPostExtension_Get.g.cs","v1.0","Get-MgGroupConversationThreadPostExtension","GET","/groups/{param}/conversations/{param}/threads/{param}/posts/{param}/extensions/{param}","matched","Get-MgGroupConversationThreadPostExtension" +"Groups","GetMgGroupConversationThreadPostExtension_List.g.cs","v1.0","Get-MgGroupConversationThreadPostExtension","GET","/groups/{param}/conversations/{param}/threads/{param}/posts/{param}/extensions","matched","Get-MgGroupConversationThreadPostExtension" +"Groups","GetMgGroupConversationThreadPostExtension.g.cs","v1.0","Get-MgGroupConversationThreadPostExtension","","","dispatcher","" +"Groups","GetMgGroupConversationThreadPostExtensionCount.g.cs","v1.0","Get-MgGroupConversationThreadPostExtensionCount","GET","/groups/{param}/conversations/{param}/threads/{param}/posts/{param}/extensions/$count","matched","Get-MgGroupConversationThreadPostExtensionCount" +"Groups","GetMgGroupConversationThreadPostInReplyTo.g.cs","v1.0","Get-MgGroupConversationThreadPostInReplyTo","GET","/groups/{param}/conversations/{param}/threads/{param}/posts/{param}/inReplyTo","no-oracle","" +"Groups","GetMgGroupConversationThreadPostInReplyToAttachment_Get.g.cs","v1.0","Get-MgGroupConversationThreadPostInReplyToAttachment","GET","/groups/{param}/conversations/{param}/threads/{param}/posts/{param}/inReplyTo/attachments/{param}","matched","Get-MgGroupConversationThreadPostInReplyToAttachment" +"Groups","GetMgGroupConversationThreadPostInReplyToAttachment_List.g.cs","v1.0","Get-MgGroupConversationThreadPostInReplyToAttachment","GET","/groups/{param}/conversations/{param}/threads/{param}/posts/{param}/inReplyTo/attachments","matched","Get-MgGroupConversationThreadPostInReplyToAttachment" +"Groups","GetMgGroupConversationThreadPostInReplyToAttachment.g.cs","v1.0","Get-MgGroupConversationThreadPostInReplyToAttachment","","","dispatcher","" +"Groups","GetMgGroupConversationThreadPostInReplyToAttachmentCount.g.cs","v1.0","Get-MgGroupConversationThreadPostInReplyToAttachmentCount","GET","/groups/{param}/conversations/{param}/threads/{param}/posts/{param}/inReplyTo/attachments/$count","matched","Get-MgGroupConversationThreadPostInReplyToAttachmentCount" +"Groups","GetMgGroupConversationThreadPostInReplyToExtension_Get.g.cs","v1.0","Get-MgGroupConversationThreadPostInReplyToExtension","GET","/groups/{param}/conversations/{param}/threads/{param}/posts/{param}/inReplyTo/extensions/{param}","matched","Get-MgGroupConversationThreadPostInReplyToExtension" +"Groups","GetMgGroupConversationThreadPostInReplyToExtension_List.g.cs","v1.0","Get-MgGroupConversationThreadPostInReplyToExtension","GET","/groups/{param}/conversations/{param}/threads/{param}/posts/{param}/inReplyTo/extensions","matched","Get-MgGroupConversationThreadPostInReplyToExtension" +"Groups","GetMgGroupConversationThreadPostInReplyToExtension.g.cs","v1.0","Get-MgGroupConversationThreadPostInReplyToExtension","","","dispatcher","" +"Groups","GetMgGroupConversationThreadPostInReplyToExtensionCount.g.cs","v1.0","Get-MgGroupConversationThreadPostInReplyToExtensionCount","GET","/groups/{param}/conversations/{param}/threads/{param}/posts/{param}/inReplyTo/extensions/$count","matched","Get-MgGroupConversationThreadPostInReplyToExtensionCount" +"Groups","GetMgGroupCount.g.cs","v1.0","Get-MgGroupCount","GET","/groups/$count","matched","Get-MgGroupCount" +"Groups","GetMgGroupCreatedOnBehalfOf.g.cs","v1.0","Get-MgGroupCreatedOnBehalfOf","GET","/groups/{param}/createdOnBehalfOf","matched","Get-MgGroupCreatedOnBehalfOf" +"Groups","GetMgGroupDelta.g.cs","v1.0","Get-MgGroupDelta","GET","/groups/delta","matched","Get-MgGroupDelta" +"Groups","GetMgGroupExtension_Get.g.cs","v1.0","Get-MgGroupExtension","GET","/groups/{param}/extensions/{param}","matched","Get-MgGroupExtension" +"Groups","GetMgGroupExtension_List.g.cs","v1.0","Get-MgGroupExtension","GET","/groups/{param}/extensions","matched","Get-MgGroupExtension" +"Groups","GetMgGroupExtension.g.cs","v1.0","Get-MgGroupExtension","","","dispatcher","" +"Groups","GetMgGroupExtensionCount.g.cs","v1.0","Get-MgGroupExtensionCount","GET","/groups/{param}/extensions/$count","matched","Get-MgGroupExtensionCount" +"Groups","GetMgGroupLifecyclePolicy_Get.g.cs","v1.0","Get-MgGroupLifecyclePolicy","GET","/groupLifecyclePolicies/{param}","matched","Get-MgGroupLifecyclePolicy" +"Groups","GetMgGroupLifecyclePolicy_List.g.cs","v1.0","Get-MgGroupLifecyclePolicy","GET","/groupLifecyclePolicies","matched","Get-MgGroupLifecyclePolicy" +"Groups","GetMgGroupLifecyclePolicy.g.cs","v1.0","Get-MgGroupLifecyclePolicy","","","dispatcher","" +"Groups","GetMgGroupLifecyclePolicyByGroup.g.cs","v1.0","Get-MgGroupLifecyclePolicyByGroup","GET","/groups/{param}/groupLifecyclePolicies","matched","Get-MgGroupLifecyclePolicyByGroup" +"Groups","GetMgGroupLifecyclePolicyCount.g.cs","v1.0","Get-MgGroupLifecyclePolicyCount","GET","/groupLifecyclePolicies/$count","matched","Get-MgGroupLifecyclePolicyCount" +"Groups","GetMgGroupMember.g.cs","v1.0","Get-MgGroupMember","GET","/groups/{param}/members","matched","Get-MgGroupMember" +"Groups","GetMgGroupMemberAsApplication_Get.g.cs","v1.0","Get-MgGroupMemberAsApplication","GET","","cast","" +"Groups","GetMgGroupMemberAsApplication_List.g.cs","v1.0","Get-MgGroupMemberAsApplication","GET","","cast","" +"Groups","GetMgGroupMemberAsApplication.g.cs","v1.0","Get-MgGroupMemberAsApplication","","","dispatcher","" +"Groups","GetMgGroupMemberAsApplicationCount.g.cs","v1.0","Get-MgGroupMemberAsApplicationCount","GET","","cast","" +"Groups","GetMgGroupMemberAsDevice_Get.g.cs","v1.0","Get-MgGroupMemberAsDevice","GET","","cast","" +"Groups","GetMgGroupMemberAsDevice_List.g.cs","v1.0","Get-MgGroupMemberAsDevice","GET","","cast","" +"Groups","GetMgGroupMemberAsDevice.g.cs","v1.0","Get-MgGroupMemberAsDevice","","","dispatcher","" +"Groups","GetMgGroupMemberAsDeviceCount.g.cs","v1.0","Get-MgGroupMemberAsDeviceCount","GET","","cast","" +"Groups","GetMgGroupMemberAsGroup_Get.g.cs","v1.0","Get-MgGroupMemberAsGroup","GET","","cast","" +"Groups","GetMgGroupMemberAsGroup_List.g.cs","v1.0","Get-MgGroupMemberAsGroup","GET","","cast","" +"Groups","GetMgGroupMemberAsGroup.g.cs","v1.0","Get-MgGroupMemberAsGroup","","","dispatcher","" +"Groups","GetMgGroupMemberAsGroupCount.g.cs","v1.0","Get-MgGroupMemberAsGroupCount","GET","","cast","" +"Groups","GetMgGroupMemberAsOrgContact_Get.g.cs","v1.0","Get-MgGroupMemberAsOrgContact","GET","","cast","" +"Groups","GetMgGroupMemberAsOrgContact_List.g.cs","v1.0","Get-MgGroupMemberAsOrgContact","GET","","cast","" +"Groups","GetMgGroupMemberAsOrgContact.g.cs","v1.0","Get-MgGroupMemberAsOrgContact","","","dispatcher","" +"Groups","GetMgGroupMemberAsOrgContactCount.g.cs","v1.0","Get-MgGroupMemberAsOrgContactCount","GET","","cast","" +"Groups","GetMgGroupMemberAsServicePrincipal_Get.g.cs","v1.0","Get-MgGroupMemberAsServicePrincipal","GET","","cast","" +"Groups","GetMgGroupMemberAsServicePrincipal_List.g.cs","v1.0","Get-MgGroupMemberAsServicePrincipal","GET","","cast","" +"Groups","GetMgGroupMemberAsServicePrincipal.g.cs","v1.0","Get-MgGroupMemberAsServicePrincipal","","","dispatcher","" +"Groups","GetMgGroupMemberAsServicePrincipalCount.g.cs","v1.0","Get-MgGroupMemberAsServicePrincipalCount","GET","","cast","" +"Groups","GetMgGroupMemberAsUser_Get.g.cs","v1.0","Get-MgGroupMemberAsUser","GET","","cast","" +"Groups","GetMgGroupMemberAsUser_List.g.cs","v1.0","Get-MgGroupMemberAsUser","GET","","cast","" +"Groups","GetMgGroupMemberAsUser.g.cs","v1.0","Get-MgGroupMemberAsUser","","","dispatcher","" +"Groups","GetMgGroupMemberAsUserCount.g.cs","v1.0","Get-MgGroupMemberAsUserCount","GET","","cast","" +"Groups","GetMgGroupMemberByRef.g.cs","v1.0","Get-MgGroupMemberByRef","GET","/groups/{param}/members/$ref","matched","Get-MgGroupMemberByRef" +"Groups","GetMgGroupMemberCount.g.cs","v1.0","Get-MgGroupMemberCount","GET","/groups/{param}/members/$count","matched","Get-MgGroupMemberCount" +"Groups","GetMgGroupMemberOf_Get.g.cs","v1.0","Get-MgGroupMemberOf","GET","/groups/{param}/memberOf/{param}","matched","Get-MgGroupMemberOf" +"Groups","GetMgGroupMemberOf_List.g.cs","v1.0","Get-MgGroupMemberOf","GET","/groups/{param}/memberOf","matched","Get-MgGroupMemberOf" +"Groups","GetMgGroupMemberOf.g.cs","v1.0","Get-MgGroupMemberOf","","","dispatcher","" +"Groups","GetMgGroupMemberOfAsAdministrativeUnit_Get.g.cs","v1.0","Get-MgGroupMemberOfAsAdministrativeUnit","GET","","cast","" +"Groups","GetMgGroupMemberOfAsAdministrativeUnit_List.g.cs","v1.0","Get-MgGroupMemberOfAsAdministrativeUnit","GET","","cast","" +"Groups","GetMgGroupMemberOfAsAdministrativeUnit.g.cs","v1.0","Get-MgGroupMemberOfAsAdministrativeUnit","","","dispatcher","" +"Groups","GetMgGroupMemberOfAsAdministrativeUnitCount.g.cs","v1.0","Get-MgGroupMemberOfAsAdministrativeUnitCount","GET","","cast","" +"Groups","GetMgGroupMemberOfAsGroup_Get.g.cs","v1.0","Get-MgGroupMemberOfAsGroup","GET","","cast","" +"Groups","GetMgGroupMemberOfAsGroup_List.g.cs","v1.0","Get-MgGroupMemberOfAsGroup","GET","","cast","" +"Groups","GetMgGroupMemberOfAsGroup.g.cs","v1.0","Get-MgGroupMemberOfAsGroup","","","dispatcher","" +"Groups","GetMgGroupMemberOfAsGroupCount.g.cs","v1.0","Get-MgGroupMemberOfAsGroupCount","GET","","cast","" +"Groups","GetMgGroupMemberOfCount.g.cs","v1.0","Get-MgGroupMemberOfCount","GET","/groups/{param}/memberOf/$count","matched","Get-MgGroupMemberOfCount" +"Groups","GetMgGroupMemberWithLicenseError_Get.g.cs","v1.0","Get-MgGroupMemberWithLicenseError","GET","/groups/{param}/membersWithLicenseErrors/{param}","matched","Get-MgGroupMemberWithLicenseError" +"Groups","GetMgGroupMemberWithLicenseError_List.g.cs","v1.0","Get-MgGroupMemberWithLicenseError","GET","/groups/{param}/membersWithLicenseErrors","matched","Get-MgGroupMemberWithLicenseError" +"Groups","GetMgGroupMemberWithLicenseError.g.cs","v1.0","Get-MgGroupMemberWithLicenseError","","","dispatcher","" +"Groups","GetMgGroupMemberWithLicenseErrorAsApplication_Get.g.cs","v1.0","Get-MgGroupMemberWithLicenseErrorAsApplication","GET","","cast","" +"Groups","GetMgGroupMemberWithLicenseErrorAsApplication_List.g.cs","v1.0","Get-MgGroupMemberWithLicenseErrorAsApplication","GET","","cast","" +"Groups","GetMgGroupMemberWithLicenseErrorAsApplication.g.cs","v1.0","Get-MgGroupMemberWithLicenseErrorAsApplication","","","dispatcher","" +"Groups","GetMgGroupMemberWithLicenseErrorAsApplicationCount.g.cs","v1.0","Get-MgGroupMemberWithLicenseErrorAsApplicationCount","GET","","cast","" +"Groups","GetMgGroupMemberWithLicenseErrorAsDevice_Get.g.cs","v1.0","Get-MgGroupMemberWithLicenseErrorAsDevice","GET","","cast","" +"Groups","GetMgGroupMemberWithLicenseErrorAsDevice_List.g.cs","v1.0","Get-MgGroupMemberWithLicenseErrorAsDevice","GET","","cast","" +"Groups","GetMgGroupMemberWithLicenseErrorAsDevice.g.cs","v1.0","Get-MgGroupMemberWithLicenseErrorAsDevice","","","dispatcher","" +"Groups","GetMgGroupMemberWithLicenseErrorAsDeviceCount.g.cs","v1.0","Get-MgGroupMemberWithLicenseErrorAsDeviceCount","GET","","cast","" +"Groups","GetMgGroupMemberWithLicenseErrorAsGroup_Get.g.cs","v1.0","Get-MgGroupMemberWithLicenseErrorAsGroup","GET","","cast","" +"Groups","GetMgGroupMemberWithLicenseErrorAsGroup_List.g.cs","v1.0","Get-MgGroupMemberWithLicenseErrorAsGroup","GET","","cast","" +"Groups","GetMgGroupMemberWithLicenseErrorAsGroup.g.cs","v1.0","Get-MgGroupMemberWithLicenseErrorAsGroup","","","dispatcher","" +"Groups","GetMgGroupMemberWithLicenseErrorAsGroupCount.g.cs","v1.0","Get-MgGroupMemberWithLicenseErrorAsGroupCount","GET","","cast","" +"Groups","GetMgGroupMemberWithLicenseErrorAsOrgContact_Get.g.cs","v1.0","Get-MgGroupMemberWithLicenseErrorAsOrgContact","GET","","cast","" +"Groups","GetMgGroupMemberWithLicenseErrorAsOrgContact_List.g.cs","v1.0","Get-MgGroupMemberWithLicenseErrorAsOrgContact","GET","","cast","" +"Groups","GetMgGroupMemberWithLicenseErrorAsOrgContact.g.cs","v1.0","Get-MgGroupMemberWithLicenseErrorAsOrgContact","","","dispatcher","" +"Groups","GetMgGroupMemberWithLicenseErrorAsOrgContactCount.g.cs","v1.0","Get-MgGroupMemberWithLicenseErrorAsOrgContactCount","GET","","cast","" +"Groups","GetMgGroupMemberWithLicenseErrorAsServicePrincipal_Get.g.cs","v1.0","Get-MgGroupMemberWithLicenseErrorAsServicePrincipal","GET","","cast","" +"Groups","GetMgGroupMemberWithLicenseErrorAsServicePrincipal_List.g.cs","v1.0","Get-MgGroupMemberWithLicenseErrorAsServicePrincipal","GET","","cast","" +"Groups","GetMgGroupMemberWithLicenseErrorAsServicePrincipal.g.cs","v1.0","Get-MgGroupMemberWithLicenseErrorAsServicePrincipal","","","dispatcher","" +"Groups","GetMgGroupMemberWithLicenseErrorAsServicePrincipalCount.g.cs","v1.0","Get-MgGroupMemberWithLicenseErrorAsServicePrincipalCount","GET","","cast","" +"Groups","GetMgGroupMemberWithLicenseErrorAsUser_Get.g.cs","v1.0","Get-MgGroupMemberWithLicenseErrorAsUser","GET","","cast","" +"Groups","GetMgGroupMemberWithLicenseErrorAsUser_List.g.cs","v1.0","Get-MgGroupMemberWithLicenseErrorAsUser","GET","","cast","" +"Groups","GetMgGroupMemberWithLicenseErrorAsUser.g.cs","v1.0","Get-MgGroupMemberWithLicenseErrorAsUser","","","dispatcher","" +"Groups","GetMgGroupMemberWithLicenseErrorAsUserCount.g.cs","v1.0","Get-MgGroupMemberWithLicenseErrorAsUserCount","GET","","cast","" +"Groups","GetMgGroupMemberWithLicenseErrorCount.g.cs","v1.0","Get-MgGroupMemberWithLicenseErrorCount","GET","/groups/{param}/membersWithLicenseErrors/$count","matched","Get-MgGroupMemberWithLicenseErrorCount" +"Groups","GetMgGroupOnPremiseSyncBehavior.g.cs","v1.0","Get-MgGroupOnPremiseSyncBehavior","GET","/groups/{param}/onPremisesSyncBehavior","matched","Get-MgGroupOnPremiseSyncBehavior" +"Groups","GetMgGroupOwner.g.cs","v1.0","Get-MgGroupOwner","GET","/groups/{param}/owners","matched","Get-MgGroupOwner" +"Groups","GetMgGroupOwnerAsApplication_Get.g.cs","v1.0","Get-MgGroupOwnerAsApplication","GET","","cast","" +"Groups","GetMgGroupOwnerAsApplication_List.g.cs","v1.0","Get-MgGroupOwnerAsApplication","GET","","cast","" +"Groups","GetMgGroupOwnerAsApplication.g.cs","v1.0","Get-MgGroupOwnerAsApplication","","","dispatcher","" +"Groups","GetMgGroupOwnerAsApplicationCount.g.cs","v1.0","Get-MgGroupOwnerAsApplicationCount","GET","","cast","" +"Groups","GetMgGroupOwnerAsDevice_Get.g.cs","v1.0","Get-MgGroupOwnerAsDevice","GET","","cast","" +"Groups","GetMgGroupOwnerAsDevice_List.g.cs","v1.0","Get-MgGroupOwnerAsDevice","GET","","cast","" +"Groups","GetMgGroupOwnerAsDevice.g.cs","v1.0","Get-MgGroupOwnerAsDevice","","","dispatcher","" +"Groups","GetMgGroupOwnerAsDeviceCount.g.cs","v1.0","Get-MgGroupOwnerAsDeviceCount","GET","","cast","" +"Groups","GetMgGroupOwnerAsGroup_Get.g.cs","v1.0","Get-MgGroupOwnerAsGroup","GET","","cast","" +"Groups","GetMgGroupOwnerAsGroup_List.g.cs","v1.0","Get-MgGroupOwnerAsGroup","GET","","cast","" +"Groups","GetMgGroupOwnerAsGroup.g.cs","v1.0","Get-MgGroupOwnerAsGroup","","","dispatcher","" +"Groups","GetMgGroupOwnerAsGroupCount.g.cs","v1.0","Get-MgGroupOwnerAsGroupCount","GET","","cast","" +"Groups","GetMgGroupOwnerAsOrgContact_Get.g.cs","v1.0","Get-MgGroupOwnerAsOrgContact","GET","","cast","" +"Groups","GetMgGroupOwnerAsOrgContact_List.g.cs","v1.0","Get-MgGroupOwnerAsOrgContact","GET","","cast","" +"Groups","GetMgGroupOwnerAsOrgContact.g.cs","v1.0","Get-MgGroupOwnerAsOrgContact","","","dispatcher","" +"Groups","GetMgGroupOwnerAsOrgContactCount.g.cs","v1.0","Get-MgGroupOwnerAsOrgContactCount","GET","","cast","" +"Groups","GetMgGroupOwnerAsServicePrincipal_Get.g.cs","v1.0","Get-MgGroupOwnerAsServicePrincipal","GET","","cast","" +"Groups","GetMgGroupOwnerAsServicePrincipal_List.g.cs","v1.0","Get-MgGroupOwnerAsServicePrincipal","GET","","cast","" +"Groups","GetMgGroupOwnerAsServicePrincipal.g.cs","v1.0","Get-MgGroupOwnerAsServicePrincipal","","","dispatcher","" +"Groups","GetMgGroupOwnerAsServicePrincipalCount.g.cs","v1.0","Get-MgGroupOwnerAsServicePrincipalCount","GET","","cast","" +"Groups","GetMgGroupOwnerAsUser_Get.g.cs","v1.0","Get-MgGroupOwnerAsUser","GET","","cast","" +"Groups","GetMgGroupOwnerAsUser_List.g.cs","v1.0","Get-MgGroupOwnerAsUser","GET","","cast","" +"Groups","GetMgGroupOwnerAsUser.g.cs","v1.0","Get-MgGroupOwnerAsUser","","","dispatcher","" +"Groups","GetMgGroupOwnerAsUserCount.g.cs","v1.0","Get-MgGroupOwnerAsUserCount","GET","","cast","" +"Groups","GetMgGroupOwnerByRef.g.cs","v1.0","Get-MgGroupOwnerByRef","GET","/groups/{param}/owners/$ref","matched","Get-MgGroupOwnerByRef" +"Groups","GetMgGroupOwnerCount.g.cs","v1.0","Get-MgGroupOwnerCount","GET","/groups/{param}/owners/$count","matched","Get-MgGroupOwnerCount" +"Groups","GetMgGroupPermissionGrant_Get.g.cs","v1.0","Get-MgGroupPermissionGrant","GET","/groups/{param}/permissionGrants/{param}","matched","Get-MgGroupPermissionGrant" +"Groups","GetMgGroupPermissionGrant_List.g.cs","v1.0","Get-MgGroupPermissionGrant","GET","/groups/{param}/permissionGrants","matched","Get-MgGroupPermissionGrant" +"Groups","GetMgGroupPermissionGrant.g.cs","v1.0","Get-MgGroupPermissionGrant","","","dispatcher","" +"Groups","GetMgGroupPermissionGrantCount.g.cs","v1.0","Get-MgGroupPermissionGrantCount","GET","/groups/{param}/permissionGrants/$count","matched","Get-MgGroupPermissionGrantCount" +"Groups","GetMgGroupPhoto.g.cs","v1.0","Get-MgGroupPhoto","GET","/groups/{param}/photo","matched","Get-MgGroupPhoto" +"Groups","GetMgGroupPhotoContent.g.cs","v1.0","Get-MgGroupPhotoContent","GET","/groups/{param}/photo/$value","matched","Get-MgGroupPhotoContent" +"Groups","GetMgGroupRejectedSender.g.cs","v1.0","Get-MgGroupRejectedSender","GET","/groups/{param}/rejectedSenders","matched","Get-MgGroupRejectedSender" +"Groups","GetMgGroupRejectedSenderByRef.g.cs","v1.0","Get-MgGroupRejectedSenderByRef","GET","/groups/{param}/rejectedSenders/$ref","matched","Get-MgGroupRejectedSenderByRef" +"Groups","GetMgGroupRejectedSenderCount.g.cs","v1.0","Get-MgGroupRejectedSenderCount","GET","/groups/{param}/rejectedSenders/$count","matched","Get-MgGroupRejectedSenderCount" +"Groups","GetMgGroupSetting.g.cs","v1.0","Get-MgGroupSetting","GET","/groups/{param}/settings","matched","Get-MgGroupSetting" +"Groups","GetMgGroupSettingCount.g.cs","v1.0","Get-MgGroupSettingCount","GET","/groups/{param}/settings/$count","matched","Get-MgGroupSettingCount" +"Groups","GetMgGroupSettingTemplate_Get.g.cs","v1.0","Get-MgGroupSettingTemplate","GET","/groupSettingTemplates/{param}","matched","Get-MgGroupSettingTemplateGroupSettingTemplate" +"Groups","GetMgGroupSettingTemplate_List.g.cs","v1.0","Get-MgGroupSettingTemplate","GET","/groupSettingTemplates","matched","Get-MgGroupSettingTemplateGroupSettingTemplate" +"Groups","GetMgGroupSettingTemplate.g.cs","v1.0","Get-MgGroupSettingTemplate","","","dispatcher","" +"Groups","GetMgGroupSettingTemplateCount.g.cs","v1.0","Get-MgGroupSettingTemplateCount","GET","/groupSettingTemplates/$count","matched","Get-MgGroupSettingTemplateCount" +"Groups","GetMgGroupSettingTemplateDelta.g.cs","v1.0","Get-MgGroupSettingTemplateDelta","GET","/groupSettingTemplates/delta","matched","Get-MgGroupSettingTemplateDelta" +"Groups","GetMgGroupThread_Get.g.cs","v1.0","Get-MgGroupThread","GET","/groups/{param}/threads/{param}","matched","Get-MgGroupThread" +"Groups","GetMgGroupThread_List.g.cs","v1.0","Get-MgGroupThread","GET","/groups/{param}/threads","matched","Get-MgGroupThread" +"Groups","GetMgGroupThread.g.cs","v1.0","Get-MgGroupThread","","","dispatcher","" +"Groups","GetMgGroupThreadCount.g.cs","v1.0","Get-MgGroupThreadCount","GET","/groups/{param}/threads/$count","matched","Get-MgGroupThreadCount" +"Groups","GetMgGroupThreadPost_Get.g.cs","v1.0","Get-MgGroupThreadPost","GET","/groups/{param}/threads/{param}/posts/{param}","matched","Get-MgGroupThreadPost" +"Groups","GetMgGroupThreadPost_List.g.cs","v1.0","Get-MgGroupThreadPost","GET","/groups/{param}/threads/{param}/posts","matched","Get-MgGroupThreadPost" +"Groups","GetMgGroupThreadPost.g.cs","v1.0","Get-MgGroupThreadPost","","","dispatcher","" +"Groups","GetMgGroupThreadPostAttachment_Get.g.cs","v1.0","Get-MgGroupThreadPostAttachment","GET","/groups/{param}/threads/{param}/posts/{param}/attachments/{param}","matched","Get-MgGroupThreadPostAttachment" +"Groups","GetMgGroupThreadPostAttachment_List.g.cs","v1.0","Get-MgGroupThreadPostAttachment","GET","/groups/{param}/threads/{param}/posts/{param}/attachments","matched","Get-MgGroupThreadPostAttachment" +"Groups","GetMgGroupThreadPostAttachment.g.cs","v1.0","Get-MgGroupThreadPostAttachment","","","dispatcher","" +"Groups","GetMgGroupThreadPostAttachmentCount.g.cs","v1.0","Get-MgGroupThreadPostAttachmentCount","GET","/groups/{param}/threads/{param}/posts/{param}/attachments/$count","matched","Get-MgGroupThreadPostAttachmentCount" +"Groups","GetMgGroupThreadPostCount.g.cs","v1.0","Get-MgGroupThreadPostCount","GET","/groups/{param}/threads/{param}/posts/$count","matched","Get-MgGroupThreadPostCount" +"Groups","GetMgGroupThreadPostExtension_Get.g.cs","v1.0","Get-MgGroupThreadPostExtension","GET","/groups/{param}/threads/{param}/posts/{param}/extensions/{param}","matched","Get-MgGroupThreadPostExtension" +"Groups","GetMgGroupThreadPostExtension_List.g.cs","v1.0","Get-MgGroupThreadPostExtension","GET","/groups/{param}/threads/{param}/posts/{param}/extensions","matched","Get-MgGroupThreadPostExtension" +"Groups","GetMgGroupThreadPostExtension.g.cs","v1.0","Get-MgGroupThreadPostExtension","","","dispatcher","" +"Groups","GetMgGroupThreadPostExtensionCount.g.cs","v1.0","Get-MgGroupThreadPostExtensionCount","GET","/groups/{param}/threads/{param}/posts/{param}/extensions/$count","matched","Get-MgGroupThreadPostExtensionCount" +"Groups","GetMgGroupThreadPostInReplyTo.g.cs","v1.0","Get-MgGroupThreadPostInReplyTo","GET","/groups/{param}/threads/{param}/posts/{param}/inReplyTo","no-oracle","" +"Groups","GetMgGroupThreadPostInReplyToAttachment_Get.g.cs","v1.0","Get-MgGroupThreadPostInReplyToAttachment","GET","/groups/{param}/threads/{param}/posts/{param}/inReplyTo/attachments/{param}","matched","Get-MgGroupThreadPostInReplyToAttachment" +"Groups","GetMgGroupThreadPostInReplyToAttachment_List.g.cs","v1.0","Get-MgGroupThreadPostInReplyToAttachment","GET","/groups/{param}/threads/{param}/posts/{param}/inReplyTo/attachments","matched","Get-MgGroupThreadPostInReplyToAttachment" +"Groups","GetMgGroupThreadPostInReplyToAttachment.g.cs","v1.0","Get-MgGroupThreadPostInReplyToAttachment","","","dispatcher","" +"Groups","GetMgGroupThreadPostInReplyToAttachmentCount.g.cs","v1.0","Get-MgGroupThreadPostInReplyToAttachmentCount","GET","/groups/{param}/threads/{param}/posts/{param}/inReplyTo/attachments/$count","matched","Get-MgGroupThreadPostInReplyToAttachmentCount" +"Groups","GetMgGroupThreadPostInReplyToExtension_Get.g.cs","v1.0","Get-MgGroupThreadPostInReplyToExtension","GET","/groups/{param}/threads/{param}/posts/{param}/inReplyTo/extensions/{param}","matched","Get-MgGroupThreadPostInReplyToExtension" +"Groups","GetMgGroupThreadPostInReplyToExtension_List.g.cs","v1.0","Get-MgGroupThreadPostInReplyToExtension","GET","/groups/{param}/threads/{param}/posts/{param}/inReplyTo/extensions","matched","Get-MgGroupThreadPostInReplyToExtension" +"Groups","GetMgGroupThreadPostInReplyToExtension.g.cs","v1.0","Get-MgGroupThreadPostInReplyToExtension","","","dispatcher","" +"Groups","GetMgGroupThreadPostInReplyToExtensionCount.g.cs","v1.0","Get-MgGroupThreadPostInReplyToExtensionCount","GET","/groups/{param}/threads/{param}/posts/{param}/inReplyTo/extensions/$count","matched","Get-MgGroupThreadPostInReplyToExtensionCount" +"Groups","GetMgGroupTransitiveMember_Get.g.cs","v1.0","Get-MgGroupTransitiveMember","GET","/groups/{param}/transitiveMembers/{param}","matched","Get-MgGroupTransitiveMember" +"Groups","GetMgGroupTransitiveMember_List.g.cs","v1.0","Get-MgGroupTransitiveMember","GET","/groups/{param}/transitiveMembers","matched","Get-MgGroupTransitiveMember" +"Groups","GetMgGroupTransitiveMember.g.cs","v1.0","Get-MgGroupTransitiveMember","","","dispatcher","" +"Groups","GetMgGroupTransitiveMemberAsApplication_Get.g.cs","v1.0","Get-MgGroupTransitiveMemberAsApplication","GET","","cast","" +"Groups","GetMgGroupTransitiveMemberAsApplication_List.g.cs","v1.0","Get-MgGroupTransitiveMemberAsApplication","GET","","cast","" +"Groups","GetMgGroupTransitiveMemberAsApplication.g.cs","v1.0","Get-MgGroupTransitiveMemberAsApplication","","","dispatcher","" +"Groups","GetMgGroupTransitiveMemberAsApplicationCount.g.cs","v1.0","Get-MgGroupTransitiveMemberAsApplicationCount","GET","","cast","" +"Groups","GetMgGroupTransitiveMemberAsDevice_Get.g.cs","v1.0","Get-MgGroupTransitiveMemberAsDevice","GET","","cast","" +"Groups","GetMgGroupTransitiveMemberAsDevice_List.g.cs","v1.0","Get-MgGroupTransitiveMemberAsDevice","GET","","cast","" +"Groups","GetMgGroupTransitiveMemberAsDevice.g.cs","v1.0","Get-MgGroupTransitiveMemberAsDevice","","","dispatcher","" +"Groups","GetMgGroupTransitiveMemberAsDeviceCount.g.cs","v1.0","Get-MgGroupTransitiveMemberAsDeviceCount","GET","","cast","" +"Groups","GetMgGroupTransitiveMemberAsGroup_Get.g.cs","v1.0","Get-MgGroupTransitiveMemberAsGroup","GET","","cast","" +"Groups","GetMgGroupTransitiveMemberAsGroup_List.g.cs","v1.0","Get-MgGroupTransitiveMemberAsGroup","GET","","cast","" +"Groups","GetMgGroupTransitiveMemberAsGroup.g.cs","v1.0","Get-MgGroupTransitiveMemberAsGroup","","","dispatcher","" +"Groups","GetMgGroupTransitiveMemberAsGroupCount.g.cs","v1.0","Get-MgGroupTransitiveMemberAsGroupCount","GET","","cast","" +"Groups","GetMgGroupTransitiveMemberAsOrgContact_Get.g.cs","v1.0","Get-MgGroupTransitiveMemberAsOrgContact","GET","","cast","" +"Groups","GetMgGroupTransitiveMemberAsOrgContact_List.g.cs","v1.0","Get-MgGroupTransitiveMemberAsOrgContact","GET","","cast","" +"Groups","GetMgGroupTransitiveMemberAsOrgContact.g.cs","v1.0","Get-MgGroupTransitiveMemberAsOrgContact","","","dispatcher","" +"Groups","GetMgGroupTransitiveMemberAsOrgContactCount.g.cs","v1.0","Get-MgGroupTransitiveMemberAsOrgContactCount","GET","","cast","" +"Groups","GetMgGroupTransitiveMemberAsServicePrincipal_Get.g.cs","v1.0","Get-MgGroupTransitiveMemberAsServicePrincipal","GET","","cast","" +"Groups","GetMgGroupTransitiveMemberAsServicePrincipal_List.g.cs","v1.0","Get-MgGroupTransitiveMemberAsServicePrincipal","GET","","cast","" +"Groups","GetMgGroupTransitiveMemberAsServicePrincipal.g.cs","v1.0","Get-MgGroupTransitiveMemberAsServicePrincipal","","","dispatcher","" +"Groups","GetMgGroupTransitiveMemberAsServicePrincipalCount.g.cs","v1.0","Get-MgGroupTransitiveMemberAsServicePrincipalCount","GET","","cast","" +"Groups","GetMgGroupTransitiveMemberAsUser_Get.g.cs","v1.0","Get-MgGroupTransitiveMemberAsUser","GET","","cast","" +"Groups","GetMgGroupTransitiveMemberAsUser_List.g.cs","v1.0","Get-MgGroupTransitiveMemberAsUser","GET","","cast","" +"Groups","GetMgGroupTransitiveMemberAsUser.g.cs","v1.0","Get-MgGroupTransitiveMemberAsUser","","","dispatcher","" +"Groups","GetMgGroupTransitiveMemberAsUserCount.g.cs","v1.0","Get-MgGroupTransitiveMemberAsUserCount","GET","","cast","" +"Groups","GetMgGroupTransitiveMemberCount.g.cs","v1.0","Get-MgGroupTransitiveMemberCount","GET","/groups/{param}/transitiveMembers/$count","matched","Get-MgGroupTransitiveMemberCount" +"Groups","GetMgGroupTransitiveMemberOf_Get.g.cs","v1.0","Get-MgGroupTransitiveMemberOf","GET","/groups/{param}/transitiveMemberOf/{param}","matched","Get-MgGroupTransitiveMemberOf" +"Groups","GetMgGroupTransitiveMemberOf_List.g.cs","v1.0","Get-MgGroupTransitiveMemberOf","GET","/groups/{param}/transitiveMemberOf","matched","Get-MgGroupTransitiveMemberOf" +"Groups","GetMgGroupTransitiveMemberOf.g.cs","v1.0","Get-MgGroupTransitiveMemberOf","","","dispatcher","" +"Groups","GetMgGroupTransitiveMemberOfAsAdministrativeUnit_Get.g.cs","v1.0","Get-MgGroupTransitiveMemberOfAsAdministrativeUnit","GET","","cast","" +"Groups","GetMgGroupTransitiveMemberOfAsAdministrativeUnit_List.g.cs","v1.0","Get-MgGroupTransitiveMemberOfAsAdministrativeUnit","GET","","cast","" +"Groups","GetMgGroupTransitiveMemberOfAsAdministrativeUnit.g.cs","v1.0","Get-MgGroupTransitiveMemberOfAsAdministrativeUnit","","","dispatcher","" +"Groups","GetMgGroupTransitiveMemberOfAsAdministrativeUnitCount.g.cs","v1.0","Get-MgGroupTransitiveMemberOfAsAdministrativeUnitCount","GET","","cast","" +"Groups","GetMgGroupTransitiveMemberOfAsGroup_Get.g.cs","v1.0","Get-MgGroupTransitiveMemberOfAsGroup","GET","","cast","" +"Groups","GetMgGroupTransitiveMemberOfAsGroup_List.g.cs","v1.0","Get-MgGroupTransitiveMemberOfAsGroup","GET","","cast","" +"Groups","GetMgGroupTransitiveMemberOfAsGroup.g.cs","v1.0","Get-MgGroupTransitiveMemberOfAsGroup","","","dispatcher","" +"Groups","GetMgGroupTransitiveMemberOfAsGroupCount.g.cs","v1.0","Get-MgGroupTransitiveMemberOfAsGroupCount","GET","","cast","" +"Groups","GetMgGroupTransitiveMemberOfCount.g.cs","v1.0","Get-MgGroupTransitiveMemberOfCount","GET","/groups/{param}/transitiveMemberOf/$count","matched","Get-MgGroupTransitiveMemberOfCount" +"Groups","InvokeMgGroupAddFavorite.g.cs","v1.0","Invoke-MgGroupAddFavorite","POST","/groups/{param}/addFavorite","mismatch","Add-MgGroupFavorite" +"Groups","InvokeMgGroupAssignLicense.g.cs","v1.0","Invoke-MgGroupAssignLicense","POST","/groups/{param}/assignLicense","mismatch","Set-MgGroupLicense" +"Groups","InvokeMgGroupCheckGrantedPermissionsForApp.g.cs","v1.0","Invoke-MgGroupCheckGrantedPermissionsForApp","POST","/groups/{param}/checkGrantedPermissionsForApp","mismatch","Confirm-MgGroupGrantedPermissionForApp" +"Groups","InvokeMgGroupCheckMemberGroups.g.cs","v1.0","Invoke-MgGroupCheckMemberGroups","POST","/groups/{param}/checkMemberGroups","mismatch","Confirm-MgGroupMemberGroup" +"Groups","InvokeMgGroupCheckMemberObjects.g.cs","v1.0","Invoke-MgGroupCheckMemberObjects","POST","/groups/{param}/checkMemberObjects","mismatch","Confirm-MgGroupMemberObject" +"Groups","InvokeMgGroupConversationThreadPostAttachmentCreateUploadSession.g.cs","v1.0","Invoke-MgGroupConversationThreadPostAttachmentCreateUploadSession","POST","/groups/{param}/conversations/{param}/threads/{param}/posts/{param}/attachments/createUploadSession","mismatch","New-MgGroupConversationThreadPostAttachmentUploadSession" +"Groups","InvokeMgGroupConversationThreadPostForward.g.cs","v1.0","Invoke-MgGroupConversationThreadPostForward","POST","/groups/{param}/conversations/{param}/threads/{param}/posts/{param}/forward","mismatch","Invoke-MgForwardGroupConversationThreadPost" +"Groups","InvokeMgGroupConversationThreadPostInReplyToAttachmentCreateUploadSession.g.cs","v1.0","Invoke-MgGroupConversationThreadPostInReplyToAttachmentCreateUploadSession","POST","/groups/{param}/conversations/{param}/threads/{param}/posts/{param}/inReplyTo/attachments/createUploadSession","mismatch","New-MgGroupConversationThreadPostInReplyToAttachmentUploadSession" +"Groups","InvokeMgGroupConversationThreadPostInReplyToForward.g.cs","v1.0","Invoke-MgGroupConversationThreadPostInReplyToForward","POST","/groups/{param}/conversations/{param}/threads/{param}/posts/{param}/inReplyTo/forward","mismatch","Invoke-MgForwardGroupConversationThreadPostInReplyTo" +"Groups","InvokeMgGroupConversationThreadPostInReplyToReply.g.cs","v1.0","Invoke-MgGroupConversationThreadPostInReplyToReply","POST","/groups/{param}/conversations/{param}/threads/{param}/posts/{param}/inReplyTo/reply","mismatch","Invoke-MgReplyGroupConversationThreadPostInReplyTo" +"Groups","InvokeMgGroupConversationThreadPostReply.g.cs","v1.0","Invoke-MgGroupConversationThreadPostReply","POST","/groups/{param}/conversations/{param}/threads/{param}/posts/{param}/reply","mismatch","Invoke-MgReplyGroupConversationThreadPost" +"Groups","InvokeMgGroupConversationThreadReply.g.cs","v1.0","Invoke-MgGroupConversationThreadReply","POST","/groups/{param}/conversations/{param}/threads/{param}/reply","mismatch","Invoke-MgReplyGroupConversationThread" +"Groups","InvokeMgGroupGetAvailableExtensionProperties.g.cs","v1.0","Invoke-MgGroupGetAvailableExtensionProperties","POST","/groups/getAvailableExtensionProperties","no-oracle","" +"Groups","InvokeMgGroupGetByIds.g.cs","v1.0","Invoke-MgGroupGetByIds","POST","/groups/getByIds","mismatch","Get-MgGroupById" +"Groups","InvokeMgGroupGetMemberGroups.g.cs","v1.0","Invoke-MgGroupGetMemberGroups","POST","/groups/{param}/getMemberGroups","mismatch","Get-MgGroupMemberGroup" +"Groups","InvokeMgGroupGetMemberObjects.g.cs","v1.0","Invoke-MgGroupGetMemberObjects","POST","/groups/{param}/getMemberObjects","mismatch","Get-MgGroupMemberObject" +"Groups","InvokeMgGroupLifecyclePolicyAddGroup.g.cs","v1.0","Invoke-MgGroupLifecyclePolicyAddGroup","POST","/groupLifecyclePolicies/{param}/addGroup","mismatch","Add-MgGroupToLifecyclePolicy" +"Groups","InvokeMgGroupLifecyclePolicyRemoveGroup.g.cs","v1.0","Invoke-MgGroupLifecyclePolicyRemoveGroup","POST","/groupLifecyclePolicies/{param}/removeGroup","mismatch","Remove-MgGroupFromLifecyclePolicy" +"Groups","InvokeMgGroupRemoveFavorite.g.cs","v1.0","Invoke-MgGroupRemoveFavorite","POST","/groups/{param}/removeFavorite","mismatch","Remove-MgGroupFavorite" +"Groups","InvokeMgGroupRenew.g.cs","v1.0","Invoke-MgGroupRenew","POST","/groups/{param}/renew","mismatch","Invoke-MgRenewGroup" +"Groups","InvokeMgGroupResetUnseenCount.g.cs","v1.0","Invoke-MgGroupResetUnseenCount","POST","/groups/{param}/resetUnseenCount","mismatch","Reset-MgGroupUnseenCount" +"Groups","InvokeMgGroupRestore.g.cs","v1.0","Invoke-MgGroupRestore","POST","/groups/{param}/restore","no-oracle","" +"Groups","InvokeMgGroupRetryServiceProvisioning.g.cs","v1.0","Invoke-MgGroupRetryServiceProvisioning","POST","/groups/{param}/retryServiceProvisioning","mismatch","Invoke-MgRetryGroupServiceProvisioning" +"Groups","InvokeMgGroupSettingTemplateCheckMemberGroups.g.cs","v1.0","Invoke-MgGroupSettingTemplateCheckMemberGroups","POST","/groupSettingTemplates/{param}/checkMemberGroups","mismatch","Confirm-MgGroupSettingTemplateMemberGroup" +"Groups","InvokeMgGroupSettingTemplateCheckMemberObjects.g.cs","v1.0","Invoke-MgGroupSettingTemplateCheckMemberObjects","POST","/groupSettingTemplates/{param}/checkMemberObjects","mismatch","Confirm-MgGroupSettingTemplateMemberObject" +"Groups","InvokeMgGroupSettingTemplateGetAvailableExtensionProperties.g.cs","v1.0","Invoke-MgGroupSettingTemplateGetAvailableExtensionProperties","POST","/groupSettingTemplates/getAvailableExtensionProperties","no-oracle","" +"Groups","InvokeMgGroupSettingTemplateGetByIds.g.cs","v1.0","Invoke-MgGroupSettingTemplateGetByIds","POST","/groupSettingTemplates/getByIds","mismatch","Get-MgGroupSettingTemplateById" +"Groups","InvokeMgGroupSettingTemplateGetMemberGroups.g.cs","v1.0","Invoke-MgGroupSettingTemplateGetMemberGroups","POST","/groupSettingTemplates/{param}/getMemberGroups","mismatch","Get-MgGroupSettingTemplateMemberGroup" +"Groups","InvokeMgGroupSettingTemplateGetMemberObjects.g.cs","v1.0","Invoke-MgGroupSettingTemplateGetMemberObjects","POST","/groupSettingTemplates/{param}/getMemberObjects","mismatch","Get-MgGroupSettingTemplateMemberObject" +"Groups","InvokeMgGroupSettingTemplateRestore.g.cs","v1.0","Invoke-MgGroupSettingTemplateRestore","POST","/groupSettingTemplates/{param}/restore","mismatch","Restore-MgGroupSettingTemplate" +"Groups","InvokeMgGroupSettingTemplateValidateProperties.g.cs","v1.0","Invoke-MgGroupSettingTemplateValidateProperties","POST","/groupSettingTemplates/validateProperties","mismatch","Test-MgGroupSettingTemplateProperty" +"Groups","InvokeMgGroupSubscribeByMail.g.cs","v1.0","Invoke-MgGroupSubscribeByMail","POST","/groups/{param}/subscribeByMail","mismatch","Invoke-MgSubscribeGroupByMail" +"Groups","InvokeMgGroupThreadPostAttachmentCreateUploadSession.g.cs","v1.0","Invoke-MgGroupThreadPostAttachmentCreateUploadSession","POST","/groups/{param}/threads/{param}/posts/{param}/attachments/createUploadSession","mismatch","New-MgGroupThreadPostAttachmentUploadSession" +"Groups","InvokeMgGroupThreadPostForward.g.cs","v1.0","Invoke-MgGroupThreadPostForward","POST","/groups/{param}/threads/{param}/posts/{param}/forward","mismatch","Invoke-MgForwardGroupThreadPost" +"Groups","InvokeMgGroupThreadPostInReplyToAttachmentCreateUploadSession.g.cs","v1.0","Invoke-MgGroupThreadPostInReplyToAttachmentCreateUploadSession","POST","/groups/{param}/threads/{param}/posts/{param}/inReplyTo/attachments/createUploadSession","mismatch","New-MgGroupThreadPostInReplyToAttachmentUploadSession" +"Groups","InvokeMgGroupThreadPostInReplyToForward.g.cs","v1.0","Invoke-MgGroupThreadPostInReplyToForward","POST","/groups/{param}/threads/{param}/posts/{param}/inReplyTo/forward","mismatch","Invoke-MgForwardGroupThreadPostInReplyTo" +"Groups","InvokeMgGroupThreadPostInReplyToReply.g.cs","v1.0","Invoke-MgGroupThreadPostInReplyToReply","POST","/groups/{param}/threads/{param}/posts/{param}/inReplyTo/reply","mismatch","Invoke-MgReplyGroupThreadPostInReplyTo" +"Groups","InvokeMgGroupThreadPostReply.g.cs","v1.0","Invoke-MgGroupThreadPostReply","POST","/groups/{param}/threads/{param}/posts/{param}/reply","mismatch","Invoke-MgReplyGroupThreadPost" +"Groups","InvokeMgGroupThreadReply.g.cs","v1.0","Invoke-MgGroupThreadReply","POST","/groups/{param}/threads/{param}/reply","mismatch","Invoke-MgReplyGroupThread" +"Groups","InvokeMgGroupUnsubscribeByMail.g.cs","v1.0","Invoke-MgGroupUnsubscribeByMail","POST","/groups/{param}/unsubscribeByMail","mismatch","Invoke-MgGraphGroup" +"Groups","InvokeMgGroupValidateProperties.g.cs","v1.0","Invoke-MgGroupValidateProperties","POST","/groups/{param}/validateProperties","mismatch","Test-MgGroupProperty" +"Groups","NewMgGroup.g.cs","v1.0","New-MgGroup","POST","/groups","matched","New-MgGroup" +"Groups","NewMgGroupAcceptedSenderByRef.g.cs","v1.0","New-MgGroupAcceptedSenderByRef","POST","/groups/{param}/acceptedSenders/$ref","matched","New-MgGroupAcceptedSenderByRef" +"Groups","NewMgGroupConversation.g.cs","v1.0","New-MgGroupConversation","POST","/groups/{param}/conversations","matched","New-MgGroupConversation" +"Groups","NewMgGroupConversationThread.g.cs","v1.0","New-MgGroupConversationThread","POST","/groups/{param}/conversations/{param}/threads","matched","New-MgGroupConversationThread" +"Groups","NewMgGroupConversationThreadPostAttachment.g.cs","v1.0","New-MgGroupConversationThreadPostAttachment","POST","/groups/{param}/conversations/{param}/threads/{param}/posts/{param}/attachments","matched","New-MgGroupConversationThreadPostAttachment" +"Groups","NewMgGroupConversationThreadPostExtension.g.cs","v1.0","New-MgGroupConversationThreadPostExtension","POST","/groups/{param}/conversations/{param}/threads/{param}/posts/{param}/extensions","matched","New-MgGroupConversationThreadPostExtension" +"Groups","NewMgGroupConversationThreadPostInReplyToAttachment.g.cs","v1.0","New-MgGroupConversationThreadPostInReplyToAttachment","POST","/groups/{param}/conversations/{param}/threads/{param}/posts/{param}/inReplyTo/attachments","matched","New-MgGroupConversationThreadPostInReplyToAttachment" +"Groups","NewMgGroupConversationThreadPostInReplyToExtension.g.cs","v1.0","New-MgGroupConversationThreadPostInReplyToExtension","POST","/groups/{param}/conversations/{param}/threads/{param}/posts/{param}/inReplyTo/extensions","matched","New-MgGroupConversationThreadPostInReplyToExtension" +"Groups","NewMgGroupExtension.g.cs","v1.0","New-MgGroupExtension","POST","/groups/{param}/extensions","matched","New-MgGroupExtension" +"Groups","NewMgGroupLifecyclePolicy.g.cs","v1.0","New-MgGroupLifecyclePolicy","POST","/groupLifecyclePolicies","matched","New-MgGroupLifecyclePolicy" +"Groups","NewMgGroupMemberByRef.g.cs","v1.0","New-MgGroupMemberByRef","POST","/groups/{param}/members/$ref","matched","New-MgGroupMemberByRef" +"Groups","NewMgGroupOwnerByRef.g.cs","v1.0","New-MgGroupOwnerByRef","POST","/groups/{param}/owners/$ref","matched","New-MgGroupOwnerByRef" +"Groups","NewMgGroupPermissionGrant.g.cs","v1.0","New-MgGroupPermissionGrant","POST","/groups/{param}/permissionGrants","matched","New-MgGroupPermissionGrant" +"Groups","NewMgGroupRejectedSenderByRef.g.cs","v1.0","New-MgGroupRejectedSenderByRef","POST","/groups/{param}/rejectedSenders/$ref","matched","New-MgGroupRejectedSenderByRef" +"Groups","NewMgGroupSetting.g.cs","v1.0","New-MgGroupSetting","POST","/groups/{param}/settings","matched","New-MgGroupSetting" +"Groups","NewMgGroupSettingTemplate.g.cs","v1.0","New-MgGroupSettingTemplate","POST","/groupSettingTemplates","matched","New-MgGroupSettingTemplateGroupSettingTemplate" +"Groups","NewMgGroupThread.g.cs","v1.0","New-MgGroupThread","POST","/groups/{param}/threads","matched","New-MgGroupThread" +"Groups","NewMgGroupThreadPostAttachment.g.cs","v1.0","New-MgGroupThreadPostAttachment","POST","/groups/{param}/threads/{param}/posts/{param}/attachments","matched","New-MgGroupThreadPostAttachment" +"Groups","NewMgGroupThreadPostExtension.g.cs","v1.0","New-MgGroupThreadPostExtension","POST","/groups/{param}/threads/{param}/posts/{param}/extensions","matched","New-MgGroupThreadPostExtension" +"Groups","NewMgGroupThreadPostInReplyToAttachment.g.cs","v1.0","New-MgGroupThreadPostInReplyToAttachment","POST","/groups/{param}/threads/{param}/posts/{param}/inReplyTo/attachments","matched","New-MgGroupThreadPostInReplyToAttachment" +"Groups","NewMgGroupThreadPostInReplyToExtension.g.cs","v1.0","New-MgGroupThreadPostInReplyToExtension","POST","/groups/{param}/threads/{param}/posts/{param}/inReplyTo/extensions","matched","New-MgGroupThreadPostInReplyToExtension" +"Groups","RemoveMgGroup.g.cs","v1.0","Remove-MgGroup","DELETE","/groups/{param}","matched","Remove-MgGroup" +"Groups","RemoveMgGroupAcceptedSenderByRef.g.cs","v1.0","Remove-MgGroupAcceptedSenderByRef","DELETE","/groups/{param}/acceptedSenders/{param}/$ref","mismatch","Remove-MgGroupAcceptedSenderDirectoryObjectByRef" +"Groups","RemoveMgGroupConversation.g.cs","v1.0","Remove-MgGroupConversation","DELETE","/groups/{param}/conversations/{param}","matched","Remove-MgGroupConversation" +"Groups","RemoveMgGroupConversationThread.g.cs","v1.0","Remove-MgGroupConversationThread","DELETE","/groups/{param}/conversations/{param}/threads/{param}","matched","Remove-MgGroupConversationThread" +"Groups","RemoveMgGroupConversationThreadPostAttachment.g.cs","v1.0","Remove-MgGroupConversationThreadPostAttachment","DELETE","/groups/{param}/conversations/{param}/threads/{param}/posts/{param}/attachments/{param}","matched","Remove-MgGroupConversationThreadPostAttachment" +"Groups","RemoveMgGroupConversationThreadPostExtension.g.cs","v1.0","Remove-MgGroupConversationThreadPostExtension","DELETE","/groups/{param}/conversations/{param}/threads/{param}/posts/{param}/extensions/{param}","matched","Remove-MgGroupConversationThreadPostExtension" +"Groups","RemoveMgGroupConversationThreadPostInReplyToAttachment.g.cs","v1.0","Remove-MgGroupConversationThreadPostInReplyToAttachment","DELETE","/groups/{param}/conversations/{param}/threads/{param}/posts/{param}/inReplyTo/attachments/{param}","matched","Remove-MgGroupConversationThreadPostInReplyToAttachment" +"Groups","RemoveMgGroupConversationThreadPostInReplyToExtension.g.cs","v1.0","Remove-MgGroupConversationThreadPostInReplyToExtension","DELETE","/groups/{param}/conversations/{param}/threads/{param}/posts/{param}/inReplyTo/extensions/{param}","matched","Remove-MgGroupConversationThreadPostInReplyToExtension" +"Groups","RemoveMgGroupExtension.g.cs","v1.0","Remove-MgGroupExtension","DELETE","/groups/{param}/extensions/{param}","matched","Remove-MgGroupExtension" +"Groups","RemoveMgGroupLifecyclePolicy.g.cs","v1.0","Remove-MgGroupLifecyclePolicy","DELETE","/groupLifecyclePolicies/{param}","matched","Remove-MgGroupLifecyclePolicy" +"Groups","RemoveMgGroupMemberByRef.g.cs","v1.0","Remove-MgGroupMemberByRef","DELETE","/groups/{param}/members/{param}/$ref","mismatch","Remove-MgGroupMemberDirectoryObjectByRef" +"Groups","RemoveMgGroupOnPremiseSyncBehavior.g.cs","v1.0","Remove-MgGroupOnPremiseSyncBehavior","DELETE","/groups/{param}/onPremisesSyncBehavior","matched","Remove-MgGroupOnPremiseSyncBehavior" +"Groups","RemoveMgGroupOwnerByRef.g.cs","v1.0","Remove-MgGroupOwnerByRef","DELETE","/groups/{param}/owners/{param}/$ref","mismatch","Remove-MgGroupOwnerDirectoryObjectByRef" +"Groups","RemoveMgGroupPermissionGrant.g.cs","v1.0","Remove-MgGroupPermissionGrant","DELETE","/groups/{param}/permissionGrants/{param}","matched","Remove-MgGroupPermissionGrant" +"Groups","RemoveMgGroupPhoto.g.cs","v1.0","Remove-MgGroupPhoto","DELETE","/groups/{param}/photo","matched","Remove-MgGroupPhoto" +"Groups","RemoveMgGroupPhotoContent.g.cs","v1.0","Remove-MgGroupPhotoContent","DELETE","/groups/{param}/photo/$value","matched","Remove-MgGroupPhotoContent" +"Groups","RemoveMgGroupRejectedSenderByRef.g.cs","v1.0","Remove-MgGroupRejectedSenderByRef","DELETE","/groups/{param}/rejectedSenders/{param}/$ref","mismatch","Remove-MgGroupRejectedSenderDirectoryObjectByRef" +"Groups","RemoveMgGroupSetting.g.cs","v1.0","Remove-MgGroupSetting","DELETE","/groups/{param}/settings/{param}","matched","Remove-MgGroupSetting" +"Groups","RemoveMgGroupSettingTemplate.g.cs","v1.0","Remove-MgGroupSettingTemplate","DELETE","/groupSettingTemplates/{param}","matched","Remove-MgGroupSettingTemplateGroupSettingTemplate" +"Groups","RemoveMgGroupThread.g.cs","v1.0","Remove-MgGroupThread","DELETE","/groups/{param}/threads/{param}","matched","Remove-MgGroupThread" +"Groups","RemoveMgGroupThreadPostAttachment.g.cs","v1.0","Remove-MgGroupThreadPostAttachment","DELETE","/groups/{param}/threads/{param}/posts/{param}/attachments/{param}","matched","Remove-MgGroupThreadPostAttachment" +"Groups","RemoveMgGroupThreadPostExtension.g.cs","v1.0","Remove-MgGroupThreadPostExtension","DELETE","/groups/{param}/threads/{param}/posts/{param}/extensions/{param}","matched","Remove-MgGroupThreadPostExtension" +"Groups","RemoveMgGroupThreadPostInReplyToAttachment.g.cs","v1.0","Remove-MgGroupThreadPostInReplyToAttachment","DELETE","/groups/{param}/threads/{param}/posts/{param}/inReplyTo/attachments/{param}","matched","Remove-MgGroupThreadPostInReplyToAttachment" +"Groups","RemoveMgGroupThreadPostInReplyToExtension.g.cs","v1.0","Remove-MgGroupThreadPostInReplyToExtension","DELETE","/groups/{param}/threads/{param}/posts/{param}/inReplyTo/extensions/{param}","matched","Remove-MgGroupThreadPostInReplyToExtension" +"Groups","UpdateMgGroup.g.cs","v1.0","Update-MgGroup","PATCH","/groups/{param}","matched","Update-MgGroup" +"Groups","UpdateMgGroupConversationThread.g.cs","v1.0","Update-MgGroupConversationThread","PATCH","/groups/{param}/conversations/{param}/threads/{param}","matched","Update-MgGroupConversationThread" +"Groups","UpdateMgGroupConversationThreadPostExtension.g.cs","v1.0","Update-MgGroupConversationThreadPostExtension","PATCH","/groups/{param}/conversations/{param}/threads/{param}/posts/{param}/extensions/{param}","matched","Update-MgGroupConversationThreadPostExtension" +"Groups","UpdateMgGroupConversationThreadPostInReplyToExtension.g.cs","v1.0","Update-MgGroupConversationThreadPostInReplyToExtension","PATCH","/groups/{param}/conversations/{param}/threads/{param}/posts/{param}/inReplyTo/extensions/{param}","matched","Update-MgGroupConversationThreadPostInReplyToExtension" +"Groups","UpdateMgGroupExtension.g.cs","v1.0","Update-MgGroupExtension","PATCH","/groups/{param}/extensions/{param}","matched","Update-MgGroupExtension" +"Groups","UpdateMgGroupLifecyclePolicy.g.cs","v1.0","Update-MgGroupLifecyclePolicy","PATCH","/groupLifecyclePolicies/{param}","matched","Update-MgGroupLifecyclePolicy" +"Groups","UpdateMgGroupOnPremiseSyncBehavior.g.cs","v1.0","Update-MgGroupOnPremiseSyncBehavior","PATCH","/groups/{param}/onPremisesSyncBehavior","matched","Update-MgGroupOnPremiseSyncBehavior" +"Groups","UpdateMgGroupPermissionGrant.g.cs","v1.0","Update-MgGroupPermissionGrant","PATCH","/groups/{param}/permissionGrants/{param}","matched","Update-MgGroupPermissionGrant" +"Groups","UpdateMgGroupPhoto.g.cs","v1.0","Update-MgGroupPhoto","PATCH","/groups/{param}/photo","no-oracle","" +"Groups","UpdateMgGroupSetting.g.cs","v1.0","Update-MgGroupSetting","PATCH","/groups/{param}/settings/{param}","matched","Update-MgGroupSetting" +"Groups","UpdateMgGroupSettingTemplate.g.cs","v1.0","Update-MgGroupSettingTemplate","PATCH","/groupSettingTemplates/{param}","matched","Update-MgGroupSettingTemplateGroupSettingTemplate" +"Groups","UpdateMgGroupThread.g.cs","v1.0","Update-MgGroupThread","PATCH","/groups/{param}/threads/{param}","matched","Update-MgGroupThread" +"Groups","UpdateMgGroupThreadPostExtension.g.cs","v1.0","Update-MgGroupThreadPostExtension","PATCH","/groups/{param}/threads/{param}/posts/{param}/extensions/{param}","matched","Update-MgGroupThreadPostExtension" +"Groups","UpdateMgGroupThreadPostInReplyToExtension.g.cs","v1.0","Update-MgGroupThreadPostInReplyToExtension","PATCH","/groups/{param}/threads/{param}/posts/{param}/inReplyTo/extensions/{param}","matched","Update-MgGroupThreadPostInReplyToExtension" +"Identity.DirectoryManagement","GetMgAdminPeople.g.cs","v1.0","Get-MgAdminPeople","GET","/admin/people","matched","Get-MgAdminPeople" +"Identity.DirectoryManagement","GetMgAdminPeopleItemInsight.g.cs","v1.0","Get-MgAdminPeopleItemInsight","GET","/admin/people/itemInsights","matched","Get-MgAdminPeopleItemInsight" +"Identity.DirectoryManagement","GetMgAdminPeopleProfileCardProperty_Get.g.cs","v1.0","Get-MgAdminPeopleProfileCardProperty","GET","/admin/people/profileCardProperties/{param}","matched","Get-MgAdminPeopleProfileCardProperty" +"Identity.DirectoryManagement","GetMgAdminPeopleProfileCardProperty_List.g.cs","v1.0","Get-MgAdminPeopleProfileCardProperty","GET","/admin/people/profileCardProperties","matched","Get-MgAdminPeopleProfileCardProperty" +"Identity.DirectoryManagement","GetMgAdminPeopleProfileCardProperty.g.cs","v1.0","Get-MgAdminPeopleProfileCardProperty","","","dispatcher","" +"Identity.DirectoryManagement","GetMgAdminPeopleProfilePropertySetting_Get.g.cs","v1.0","Get-MgAdminPeopleProfilePropertySetting","GET","/admin/people/profilePropertySettings/{param}","matched","Get-MgAdminPeopleProfilePropertySetting" +"Identity.DirectoryManagement","GetMgAdminPeopleProfilePropertySetting_List.g.cs","v1.0","Get-MgAdminPeopleProfilePropertySetting","GET","/admin/people/profilePropertySettings","matched","Get-MgAdminPeopleProfilePropertySetting" +"Identity.DirectoryManagement","GetMgAdminPeopleProfilePropertySetting.g.cs","v1.0","Get-MgAdminPeopleProfilePropertySetting","","","dispatcher","" +"Identity.DirectoryManagement","GetMgAdminPeopleProfileSource_Get.g.cs","v1.0","Get-MgAdminPeopleProfileSource","GET","/admin/people/profileSources/{param}","matched","Get-MgAdminPeopleProfileSource" +"Identity.DirectoryManagement","GetMgAdminPeopleProfileSource_List.g.cs","v1.0","Get-MgAdminPeopleProfileSource","GET","/admin/people/profileSources","matched","Get-MgAdminPeopleProfileSource" +"Identity.DirectoryManagement","GetMgAdminPeopleProfileSource.g.cs","v1.0","Get-MgAdminPeopleProfileSource","","","dispatcher","" +"Identity.DirectoryManagement","GetMgAdminPeoplePronoun.g.cs","v1.0","Get-MgAdminPeoplePronoun","GET","/admin/people/pronouns","matched","Get-MgAdminPeoplePronoun" +"Identity.DirectoryManagement","GetMgAdminPersonProfileCardPropertyCount.g.cs","v1.0","Get-MgAdminPersonProfileCardPropertyCount","GET","/admin/people/profileCardProperties/$count","mismatch","Get-MgAdminPeopleProfileCardPropertyCount" +"Identity.DirectoryManagement","GetMgAdminPersonProfilePropertySettingCount.g.cs","v1.0","Get-MgAdminPersonProfilePropertySettingCount","GET","/admin/people/profilePropertySettings/$count","mismatch","Get-MgAdminPeopleProfilePropertySettingCount" +"Identity.DirectoryManagement","GetMgAdminPersonProfileSourceCount.g.cs","v1.0","Get-MgAdminPersonProfileSourceCount","GET","/admin/people/profileSources/$count","mismatch","Get-MgAdminPeopleProfileSourceCount" +"Identity.DirectoryManagement","GetMgContact_Get.g.cs","v1.0","Get-MgContact","GET","/contacts/{param}","matched","Get-MgContact" +"Identity.DirectoryManagement","GetMgContact_List.g.cs","v1.0","Get-MgContact","GET","/contacts","matched","Get-MgContact" +"Identity.DirectoryManagement","GetMgContact.g.cs","v1.0","Get-MgContact","","","dispatcher","" +"Identity.DirectoryManagement","GetMgContactCount.g.cs","v1.0","Get-MgContactCount","GET","/contacts/$count","matched","Get-MgContactCount" +"Identity.DirectoryManagement","GetMgContactDelta.g.cs","v1.0","Get-MgContactDelta","GET","/contacts/delta","matched","Get-MgContactDelta" +"Identity.DirectoryManagement","GetMgContactDirectReport_Get.g.cs","v1.0","Get-MgContactDirectReport","GET","/contacts/{param}/directReports/{param}","matched","Get-MgContactDirectReport" +"Identity.DirectoryManagement","GetMgContactDirectReport_List.g.cs","v1.0","Get-MgContactDirectReport","GET","/contacts/{param}/directReports","matched","Get-MgContactDirectReport" +"Identity.DirectoryManagement","GetMgContactDirectReport.g.cs","v1.0","Get-MgContactDirectReport","","","dispatcher","" +"Identity.DirectoryManagement","GetMgContactDirectReportAsOrgContact_Get.g.cs","v1.0","Get-MgContactDirectReportAsOrgContact","GET","","cast","" +"Identity.DirectoryManagement","GetMgContactDirectReportAsOrgContact_List.g.cs","v1.0","Get-MgContactDirectReportAsOrgContact","GET","","cast","" +"Identity.DirectoryManagement","GetMgContactDirectReportAsOrgContact.g.cs","v1.0","Get-MgContactDirectReportAsOrgContact","","","dispatcher","" +"Identity.DirectoryManagement","GetMgContactDirectReportAsOrgContactCount.g.cs","v1.0","Get-MgContactDirectReportAsOrgContactCount","GET","","cast","" +"Identity.DirectoryManagement","GetMgContactDirectReportAsUser_Get.g.cs","v1.0","Get-MgContactDirectReportAsUser","GET","","cast","" +"Identity.DirectoryManagement","GetMgContactDirectReportAsUser_List.g.cs","v1.0","Get-MgContactDirectReportAsUser","GET","","cast","" +"Identity.DirectoryManagement","GetMgContactDirectReportAsUser.g.cs","v1.0","Get-MgContactDirectReportAsUser","","","dispatcher","" +"Identity.DirectoryManagement","GetMgContactDirectReportAsUserCount.g.cs","v1.0","Get-MgContactDirectReportAsUserCount","GET","","cast","" +"Identity.DirectoryManagement","GetMgContactDirectReportCount.g.cs","v1.0","Get-MgContactDirectReportCount","GET","/contacts/{param}/directReports/$count","matched","Get-MgContactDirectReportCount" +"Identity.DirectoryManagement","GetMgContactManager.g.cs","v1.0","Get-MgContactManager","GET","/contacts/{param}/manager","matched","Get-MgContactManager" +"Identity.DirectoryManagement","GetMgContactMemberOf_Get.g.cs","v1.0","Get-MgContactMemberOf","GET","/contacts/{param}/memberOf/{param}","matched","Get-MgContactMemberOf" +"Identity.DirectoryManagement","GetMgContactMemberOf_List.g.cs","v1.0","Get-MgContactMemberOf","GET","/contacts/{param}/memberOf","matched","Get-MgContactMemberOf" +"Identity.DirectoryManagement","GetMgContactMemberOf.g.cs","v1.0","Get-MgContactMemberOf","","","dispatcher","" +"Identity.DirectoryManagement","GetMgContactMemberOfAsAdministrativeUnit_Get.g.cs","v1.0","Get-MgContactMemberOfAsAdministrativeUnit","GET","","cast","" +"Identity.DirectoryManagement","GetMgContactMemberOfAsAdministrativeUnit_List.g.cs","v1.0","Get-MgContactMemberOfAsAdministrativeUnit","GET","","cast","" +"Identity.DirectoryManagement","GetMgContactMemberOfAsAdministrativeUnit.g.cs","v1.0","Get-MgContactMemberOfAsAdministrativeUnit","","","dispatcher","" +"Identity.DirectoryManagement","GetMgContactMemberOfAsAdministrativeUnitCount.g.cs","v1.0","Get-MgContactMemberOfAsAdministrativeUnitCount","GET","","cast","" +"Identity.DirectoryManagement","GetMgContactMemberOfAsGroup_Get.g.cs","v1.0","Get-MgContactMemberOfAsGroup","GET","","cast","" +"Identity.DirectoryManagement","GetMgContactMemberOfAsGroup_List.g.cs","v1.0","Get-MgContactMemberOfAsGroup","GET","","cast","" +"Identity.DirectoryManagement","GetMgContactMemberOfAsGroup.g.cs","v1.0","Get-MgContactMemberOfAsGroup","","","dispatcher","" +"Identity.DirectoryManagement","GetMgContactMemberOfAsGroupCount.g.cs","v1.0","Get-MgContactMemberOfAsGroupCount","GET","","cast","" +"Identity.DirectoryManagement","GetMgContactMemberOfCount.g.cs","v1.0","Get-MgContactMemberOfCount","GET","/contacts/{param}/memberOf/$count","matched","Get-MgContactMemberOfCount" +"Identity.DirectoryManagement","GetMgContactOnPremiseSyncBehavior.g.cs","v1.0","Get-MgContactOnPremiseSyncBehavior","GET","/contacts/{param}/onPremisesSyncBehavior","matched","Get-MgContactOnPremiseSyncBehavior" +"Identity.DirectoryManagement","GetMgContactServiceProvisioningError.g.cs","v1.0","Get-MgContactServiceProvisioningError","GET","/contacts/{param}/serviceProvisioningErrors","matched","Get-MgContactServiceProvisioningError" +"Identity.DirectoryManagement","GetMgContactServiceProvisioningErrorCount.g.cs","v1.0","Get-MgContactServiceProvisioningErrorCount","GET","/contacts/{param}/serviceProvisioningErrors/$count","matched","Get-MgContactServiceProvisioningErrorCount" +"Identity.DirectoryManagement","GetMgContactTransitiveMemberOf_Get.g.cs","v1.0","Get-MgContactTransitiveMemberOf","GET","/contacts/{param}/transitiveMemberOf/{param}","matched","Get-MgContactTransitiveMemberOf" +"Identity.DirectoryManagement","GetMgContactTransitiveMemberOf_List.g.cs","v1.0","Get-MgContactTransitiveMemberOf","GET","/contacts/{param}/transitiveMemberOf","matched","Get-MgContactTransitiveMemberOf" +"Identity.DirectoryManagement","GetMgContactTransitiveMemberOf.g.cs","v1.0","Get-MgContactTransitiveMemberOf","","","dispatcher","" +"Identity.DirectoryManagement","GetMgContactTransitiveMemberOfAsAdministrativeUnit_Get.g.cs","v1.0","Get-MgContactTransitiveMemberOfAsAdministrativeUnit","GET","","cast","" +"Identity.DirectoryManagement","GetMgContactTransitiveMemberOfAsAdministrativeUnit_List.g.cs","v1.0","Get-MgContactTransitiveMemberOfAsAdministrativeUnit","GET","","cast","" +"Identity.DirectoryManagement","GetMgContactTransitiveMemberOfAsAdministrativeUnit.g.cs","v1.0","Get-MgContactTransitiveMemberOfAsAdministrativeUnit","","","dispatcher","" +"Identity.DirectoryManagement","GetMgContactTransitiveMemberOfAsAdministrativeUnitCount.g.cs","v1.0","Get-MgContactTransitiveMemberOfAsAdministrativeUnitCount","GET","","cast","" +"Identity.DirectoryManagement","GetMgContactTransitiveMemberOfAsGroup_Get.g.cs","v1.0","Get-MgContactTransitiveMemberOfAsGroup","GET","","cast","" +"Identity.DirectoryManagement","GetMgContactTransitiveMemberOfAsGroup_List.g.cs","v1.0","Get-MgContactTransitiveMemberOfAsGroup","GET","","cast","" +"Identity.DirectoryManagement","GetMgContactTransitiveMemberOfAsGroup.g.cs","v1.0","Get-MgContactTransitiveMemberOfAsGroup","","","dispatcher","" +"Identity.DirectoryManagement","GetMgContactTransitiveMemberOfAsGroupCount.g.cs","v1.0","Get-MgContactTransitiveMemberOfAsGroupCount","GET","","cast","" +"Identity.DirectoryManagement","GetMgContactTransitiveMemberOfCount.g.cs","v1.0","Get-MgContactTransitiveMemberOfCount","GET","/contacts/{param}/transitiveMemberOf/$count","matched","Get-MgContactTransitiveMemberOfCount" +"Identity.DirectoryManagement","GetMgContract_Get.g.cs","v1.0","Get-MgContract","GET","/contracts/{param}","matched","Get-MgContract" +"Identity.DirectoryManagement","GetMgContract_List.g.cs","v1.0","Get-MgContract","GET","/contracts","matched","Get-MgContract" +"Identity.DirectoryManagement","GetMgContract.g.cs","v1.0","Get-MgContract","","","dispatcher","" +"Identity.DirectoryManagement","GetMgContractCount.g.cs","v1.0","Get-MgContractCount","GET","/contracts/$count","matched","Get-MgContractCount" +"Identity.DirectoryManagement","GetMgContractDelta.g.cs","v1.0","Get-MgContractDelta","GET","/contracts/delta","matched","Get-MgContractDelta" +"Identity.DirectoryManagement","GetMgDevice_Get.g.cs","v1.0","Get-MgDevice","GET","/devices/{param}","matched","Get-MgDevice" +"Identity.DirectoryManagement","GetMgDevice_List.g.cs","v1.0","Get-MgDevice","GET","/devices","matched","Get-MgDevice" +"Identity.DirectoryManagement","GetMgDevice.g.cs","v1.0","Get-MgDevice","","","dispatcher","" +"Identity.DirectoryManagement","GetMgDeviceCount.g.cs","v1.0","Get-MgDeviceCount","GET","/devices/$count","matched","Get-MgDeviceCount" +"Identity.DirectoryManagement","GetMgDeviceDelta.g.cs","v1.0","Get-MgDeviceDelta","GET","/devices/delta","matched","Get-MgDeviceDelta" +"Identity.DirectoryManagement","GetMgDeviceExtension_Get.g.cs","v1.0","Get-MgDeviceExtension","GET","/devices/{param}/extensions/{param}","matched","Get-MgDeviceExtension" +"Identity.DirectoryManagement","GetMgDeviceExtension_List.g.cs","v1.0","Get-MgDeviceExtension","GET","/devices/{param}/extensions","matched","Get-MgDeviceExtension" +"Identity.DirectoryManagement","GetMgDeviceExtension.g.cs","v1.0","Get-MgDeviceExtension","","","dispatcher","" +"Identity.DirectoryManagement","GetMgDeviceExtensionCount.g.cs","v1.0","Get-MgDeviceExtensionCount","GET","/devices/{param}/extensions/$count","matched","Get-MgDeviceExtensionCount" +"Identity.DirectoryManagement","GetMgDeviceMemberOf_Get.g.cs","v1.0","Get-MgDeviceMemberOf","GET","/devices/{param}/memberOf/{param}","matched","Get-MgDeviceMemberOf" +"Identity.DirectoryManagement","GetMgDeviceMemberOf_List.g.cs","v1.0","Get-MgDeviceMemberOf","GET","/devices/{param}/memberOf","matched","Get-MgDeviceMemberOf" +"Identity.DirectoryManagement","GetMgDeviceMemberOf.g.cs","v1.0","Get-MgDeviceMemberOf","","","dispatcher","" +"Identity.DirectoryManagement","GetMgDeviceMemberOfAsAdministrativeUnit_Get.g.cs","v1.0","Get-MgDeviceMemberOfAsAdministrativeUnit","GET","","cast","" +"Identity.DirectoryManagement","GetMgDeviceMemberOfAsAdministrativeUnit_List.g.cs","v1.0","Get-MgDeviceMemberOfAsAdministrativeUnit","GET","","cast","" +"Identity.DirectoryManagement","GetMgDeviceMemberOfAsAdministrativeUnit.g.cs","v1.0","Get-MgDeviceMemberOfAsAdministrativeUnit","","","dispatcher","" +"Identity.DirectoryManagement","GetMgDeviceMemberOfAsAdministrativeUnitCount.g.cs","v1.0","Get-MgDeviceMemberOfAsAdministrativeUnitCount","GET","","cast","" +"Identity.DirectoryManagement","GetMgDeviceMemberOfAsGroup_Get.g.cs","v1.0","Get-MgDeviceMemberOfAsGroup","GET","","cast","" +"Identity.DirectoryManagement","GetMgDeviceMemberOfAsGroup_List.g.cs","v1.0","Get-MgDeviceMemberOfAsGroup","GET","","cast","" +"Identity.DirectoryManagement","GetMgDeviceMemberOfAsGroup.g.cs","v1.0","Get-MgDeviceMemberOfAsGroup","","","dispatcher","" +"Identity.DirectoryManagement","GetMgDeviceMemberOfAsGroupCount.g.cs","v1.0","Get-MgDeviceMemberOfAsGroupCount","GET","","cast","" +"Identity.DirectoryManagement","GetMgDeviceMemberOfCount.g.cs","v1.0","Get-MgDeviceMemberOfCount","GET","/devices/{param}/memberOf/$count","matched","Get-MgDeviceMemberOfCount" +"Identity.DirectoryManagement","GetMgDeviceRegisteredOwner.g.cs","v1.0","Get-MgDeviceRegisteredOwner","GET","/devices/{param}/registeredOwners","matched","Get-MgDeviceRegisteredOwner" +"Identity.DirectoryManagement","GetMgDeviceRegisteredOwnerAsAppRoleAssignment_Get.g.cs","v1.0","Get-MgDeviceRegisteredOwnerAsAppRoleAssignment","GET","","cast","" +"Identity.DirectoryManagement","GetMgDeviceRegisteredOwnerAsAppRoleAssignment_List.g.cs","v1.0","Get-MgDeviceRegisteredOwnerAsAppRoleAssignment","GET","","cast","" +"Identity.DirectoryManagement","GetMgDeviceRegisteredOwnerAsAppRoleAssignment.g.cs","v1.0","Get-MgDeviceRegisteredOwnerAsAppRoleAssignment","","","dispatcher","" +"Identity.DirectoryManagement","GetMgDeviceRegisteredOwnerAsAppRoleAssignmentCount.g.cs","v1.0","Get-MgDeviceRegisteredOwnerAsAppRoleAssignmentCount","GET","","cast","" +"Identity.DirectoryManagement","GetMgDeviceRegisteredOwnerAsEndpoint_Get.g.cs","v1.0","Get-MgDeviceRegisteredOwnerAsEndpoint","GET","","cast","" +"Identity.DirectoryManagement","GetMgDeviceRegisteredOwnerAsEndpoint_List.g.cs","v1.0","Get-MgDeviceRegisteredOwnerAsEndpoint","GET","","cast","" +"Identity.DirectoryManagement","GetMgDeviceRegisteredOwnerAsEndpoint.g.cs","v1.0","Get-MgDeviceRegisteredOwnerAsEndpoint","","","dispatcher","" +"Identity.DirectoryManagement","GetMgDeviceRegisteredOwnerAsEndpointCount.g.cs","v1.0","Get-MgDeviceRegisteredOwnerAsEndpointCount","GET","","cast","" +"Identity.DirectoryManagement","GetMgDeviceRegisteredOwnerAsServicePrincipal_Get.g.cs","v1.0","Get-MgDeviceRegisteredOwnerAsServicePrincipal","GET","","cast","" +"Identity.DirectoryManagement","GetMgDeviceRegisteredOwnerAsServicePrincipal_List.g.cs","v1.0","Get-MgDeviceRegisteredOwnerAsServicePrincipal","GET","","cast","" +"Identity.DirectoryManagement","GetMgDeviceRegisteredOwnerAsServicePrincipal.g.cs","v1.0","Get-MgDeviceRegisteredOwnerAsServicePrincipal","","","dispatcher","" +"Identity.DirectoryManagement","GetMgDeviceRegisteredOwnerAsServicePrincipalCount.g.cs","v1.0","Get-MgDeviceRegisteredOwnerAsServicePrincipalCount","GET","","cast","" +"Identity.DirectoryManagement","GetMgDeviceRegisteredOwnerAsUser_Get.g.cs","v1.0","Get-MgDeviceRegisteredOwnerAsUser","GET","","cast","" +"Identity.DirectoryManagement","GetMgDeviceRegisteredOwnerAsUser_List.g.cs","v1.0","Get-MgDeviceRegisteredOwnerAsUser","GET","","cast","" +"Identity.DirectoryManagement","GetMgDeviceRegisteredOwnerAsUser.g.cs","v1.0","Get-MgDeviceRegisteredOwnerAsUser","","","dispatcher","" +"Identity.DirectoryManagement","GetMgDeviceRegisteredOwnerAsUserCount.g.cs","v1.0","Get-MgDeviceRegisteredOwnerAsUserCount","GET","","cast","" +"Identity.DirectoryManagement","GetMgDeviceRegisteredOwnerByRef.g.cs","v1.0","Get-MgDeviceRegisteredOwnerByRef","GET","/devices/{param}/registeredOwners/$ref","matched","Get-MgDeviceRegisteredOwnerByRef" +"Identity.DirectoryManagement","GetMgDeviceRegisteredOwnerCount.g.cs","v1.0","Get-MgDeviceRegisteredOwnerCount","GET","/devices/{param}/registeredOwners/$count","matched","Get-MgDeviceRegisteredOwnerCount" +"Identity.DirectoryManagement","GetMgDeviceRegisteredUser.g.cs","v1.0","Get-MgDeviceRegisteredUser","GET","/devices/{param}/registeredUsers","matched","Get-MgDeviceRegisteredUser" +"Identity.DirectoryManagement","GetMgDeviceRegisteredUserAsAppRoleAssignment_Get.g.cs","v1.0","Get-MgDeviceRegisteredUserAsAppRoleAssignment","GET","","cast","" +"Identity.DirectoryManagement","GetMgDeviceRegisteredUserAsAppRoleAssignment_List.g.cs","v1.0","Get-MgDeviceRegisteredUserAsAppRoleAssignment","GET","","cast","" +"Identity.DirectoryManagement","GetMgDeviceRegisteredUserAsAppRoleAssignment.g.cs","v1.0","Get-MgDeviceRegisteredUserAsAppRoleAssignment","","","dispatcher","" +"Identity.DirectoryManagement","GetMgDeviceRegisteredUserAsAppRoleAssignmentCount.g.cs","v1.0","Get-MgDeviceRegisteredUserAsAppRoleAssignmentCount","GET","","cast","" +"Identity.DirectoryManagement","GetMgDeviceRegisteredUserAsEndpoint_Get.g.cs","v1.0","Get-MgDeviceRegisteredUserAsEndpoint","GET","","cast","" +"Identity.DirectoryManagement","GetMgDeviceRegisteredUserAsEndpoint_List.g.cs","v1.0","Get-MgDeviceRegisteredUserAsEndpoint","GET","","cast","" +"Identity.DirectoryManagement","GetMgDeviceRegisteredUserAsEndpoint.g.cs","v1.0","Get-MgDeviceRegisteredUserAsEndpoint","","","dispatcher","" +"Identity.DirectoryManagement","GetMgDeviceRegisteredUserAsEndpointCount.g.cs","v1.0","Get-MgDeviceRegisteredUserAsEndpointCount","GET","","cast","" +"Identity.DirectoryManagement","GetMgDeviceRegisteredUserAsServicePrincipal_Get.g.cs","v1.0","Get-MgDeviceRegisteredUserAsServicePrincipal","GET","","cast","" +"Identity.DirectoryManagement","GetMgDeviceRegisteredUserAsServicePrincipal_List.g.cs","v1.0","Get-MgDeviceRegisteredUserAsServicePrincipal","GET","","cast","" +"Identity.DirectoryManagement","GetMgDeviceRegisteredUserAsServicePrincipal.g.cs","v1.0","Get-MgDeviceRegisteredUserAsServicePrincipal","","","dispatcher","" +"Identity.DirectoryManagement","GetMgDeviceRegisteredUserAsServicePrincipalCount.g.cs","v1.0","Get-MgDeviceRegisteredUserAsServicePrincipalCount","GET","","cast","" +"Identity.DirectoryManagement","GetMgDeviceRegisteredUserAsUser_Get.g.cs","v1.0","Get-MgDeviceRegisteredUserAsUser","GET","","cast","" +"Identity.DirectoryManagement","GetMgDeviceRegisteredUserAsUser_List.g.cs","v1.0","Get-MgDeviceRegisteredUserAsUser","GET","","cast","" +"Identity.DirectoryManagement","GetMgDeviceRegisteredUserAsUser.g.cs","v1.0","Get-MgDeviceRegisteredUserAsUser","","","dispatcher","" +"Identity.DirectoryManagement","GetMgDeviceRegisteredUserAsUserCount.g.cs","v1.0","Get-MgDeviceRegisteredUserAsUserCount","GET","","cast","" +"Identity.DirectoryManagement","GetMgDeviceRegisteredUserByRef.g.cs","v1.0","Get-MgDeviceRegisteredUserByRef","GET","/devices/{param}/registeredUsers/$ref","matched","Get-MgDeviceRegisteredUserByRef" +"Identity.DirectoryManagement","GetMgDeviceRegisteredUserCount.g.cs","v1.0","Get-MgDeviceRegisteredUserCount","GET","/devices/{param}/registeredUsers/$count","matched","Get-MgDeviceRegisteredUserCount" +"Identity.DirectoryManagement","GetMgDeviceTransitiveMemberOf_Get.g.cs","v1.0","Get-MgDeviceTransitiveMemberOf","GET","/devices/{param}/transitiveMemberOf/{param}","matched","Get-MgDeviceTransitiveMemberOf" +"Identity.DirectoryManagement","GetMgDeviceTransitiveMemberOf_List.g.cs","v1.0","Get-MgDeviceTransitiveMemberOf","GET","/devices/{param}/transitiveMemberOf","matched","Get-MgDeviceTransitiveMemberOf" +"Identity.DirectoryManagement","GetMgDeviceTransitiveMemberOf.g.cs","v1.0","Get-MgDeviceTransitiveMemberOf","","","dispatcher","" +"Identity.DirectoryManagement","GetMgDeviceTransitiveMemberOfAsAdministrativeUnit_Get.g.cs","v1.0","Get-MgDeviceTransitiveMemberOfAsAdministrativeUnit","GET","","cast","" +"Identity.DirectoryManagement","GetMgDeviceTransitiveMemberOfAsAdministrativeUnit_List.g.cs","v1.0","Get-MgDeviceTransitiveMemberOfAsAdministrativeUnit","GET","","cast","" +"Identity.DirectoryManagement","GetMgDeviceTransitiveMemberOfAsAdministrativeUnit.g.cs","v1.0","Get-MgDeviceTransitiveMemberOfAsAdministrativeUnit","","","dispatcher","" +"Identity.DirectoryManagement","GetMgDeviceTransitiveMemberOfAsAdministrativeUnitCount.g.cs","v1.0","Get-MgDeviceTransitiveMemberOfAsAdministrativeUnitCount","GET","","cast","" +"Identity.DirectoryManagement","GetMgDeviceTransitiveMemberOfAsGroup_Get.g.cs","v1.0","Get-MgDeviceTransitiveMemberOfAsGroup","GET","","cast","" +"Identity.DirectoryManagement","GetMgDeviceTransitiveMemberOfAsGroup_List.g.cs","v1.0","Get-MgDeviceTransitiveMemberOfAsGroup","GET","","cast","" +"Identity.DirectoryManagement","GetMgDeviceTransitiveMemberOfAsGroup.g.cs","v1.0","Get-MgDeviceTransitiveMemberOfAsGroup","","","dispatcher","" +"Identity.DirectoryManagement","GetMgDeviceTransitiveMemberOfAsGroupCount.g.cs","v1.0","Get-MgDeviceTransitiveMemberOfAsGroupCount","GET","","cast","" +"Identity.DirectoryManagement","GetMgDeviceTransitiveMemberOfCount.g.cs","v1.0","Get-MgDeviceTransitiveMemberOfCount","GET","/devices/{param}/transitiveMemberOf/$count","matched","Get-MgDeviceTransitiveMemberOfCount" +"Identity.DirectoryManagement","GetMgDirectory.g.cs","v1.0","Get-MgDirectory","GET","/directory","matched","Get-MgDirectory" +"Identity.DirectoryManagement","GetMgDirectoryAdministrativeUnit_Get.g.cs","v1.0","Get-MgDirectoryAdministrativeUnit","GET","/directory/administrativeUnits/{param}","matched","Get-MgDirectoryAdministrativeUnit" +"Identity.DirectoryManagement","GetMgDirectoryAdministrativeUnit_List.g.cs","v1.0","Get-MgDirectoryAdministrativeUnit","GET","/directory/administrativeUnits","matched","Get-MgDirectoryAdministrativeUnit" +"Identity.DirectoryManagement","GetMgDirectoryAdministrativeUnit.g.cs","v1.0","Get-MgDirectoryAdministrativeUnit","","","dispatcher","" +"Identity.DirectoryManagement","GetMgDirectoryAdministrativeUnitCount.g.cs","v1.0","Get-MgDirectoryAdministrativeUnitCount","GET","/directory/administrativeUnits/$count","matched","Get-MgDirectoryAdministrativeUnitCount" +"Identity.DirectoryManagement","GetMgDirectoryAdministrativeUnitDelta.g.cs","v1.0","Get-MgDirectoryAdministrativeUnitDelta","GET","/directory/administrativeUnits/delta","matched","Get-MgDirectoryAdministrativeUnitDelta" +"Identity.DirectoryManagement","GetMgDirectoryAdministrativeUnitExtension_Get.g.cs","v1.0","Get-MgDirectoryAdministrativeUnitExtension","GET","/directory/administrativeUnits/{param}/extensions/{param}","matched","Get-MgDirectoryAdministrativeUnitExtension" +"Identity.DirectoryManagement","GetMgDirectoryAdministrativeUnitExtension_List.g.cs","v1.0","Get-MgDirectoryAdministrativeUnitExtension","GET","/directory/administrativeUnits/{param}/extensions","matched","Get-MgDirectoryAdministrativeUnitExtension" +"Identity.DirectoryManagement","GetMgDirectoryAdministrativeUnitExtension.g.cs","v1.0","Get-MgDirectoryAdministrativeUnitExtension","","","dispatcher","" +"Identity.DirectoryManagement","GetMgDirectoryAdministrativeUnitExtensionCount.g.cs","v1.0","Get-MgDirectoryAdministrativeUnitExtensionCount","GET","/directory/administrativeUnits/{param}/extensions/$count","matched","Get-MgDirectoryAdministrativeUnitExtensionCount" +"Identity.DirectoryManagement","GetMgDirectoryAdministrativeUnitMember.g.cs","v1.0","Get-MgDirectoryAdministrativeUnitMember","GET","/directory/administrativeUnits/{param}/members","matched","Get-MgDirectoryAdministrativeUnitMember" +"Identity.DirectoryManagement","GetMgDirectoryAdministrativeUnitMemberAsApplication_Get.g.cs","v1.0","Get-MgDirectoryAdministrativeUnitMemberAsApplication","GET","","cast","" +"Identity.DirectoryManagement","GetMgDirectoryAdministrativeUnitMemberAsApplication_List.g.cs","v1.0","Get-MgDirectoryAdministrativeUnitMemberAsApplication","GET","","cast","" +"Identity.DirectoryManagement","GetMgDirectoryAdministrativeUnitMemberAsApplication.g.cs","v1.0","Get-MgDirectoryAdministrativeUnitMemberAsApplication","","","dispatcher","" +"Identity.DirectoryManagement","GetMgDirectoryAdministrativeUnitMemberAsApplicationCount.g.cs","v1.0","Get-MgDirectoryAdministrativeUnitMemberAsApplicationCount","GET","","cast","" +"Identity.DirectoryManagement","GetMgDirectoryAdministrativeUnitMemberAsDevice_Get.g.cs","v1.0","Get-MgDirectoryAdministrativeUnitMemberAsDevice","GET","","cast","" +"Identity.DirectoryManagement","GetMgDirectoryAdministrativeUnitMemberAsDevice_List.g.cs","v1.0","Get-MgDirectoryAdministrativeUnitMemberAsDevice","GET","","cast","" +"Identity.DirectoryManagement","GetMgDirectoryAdministrativeUnitMemberAsDevice.g.cs","v1.0","Get-MgDirectoryAdministrativeUnitMemberAsDevice","","","dispatcher","" +"Identity.DirectoryManagement","GetMgDirectoryAdministrativeUnitMemberAsDeviceCount.g.cs","v1.0","Get-MgDirectoryAdministrativeUnitMemberAsDeviceCount","GET","","cast","" +"Identity.DirectoryManagement","GetMgDirectoryAdministrativeUnitMemberAsGroup_Get.g.cs","v1.0","Get-MgDirectoryAdministrativeUnitMemberAsGroup","GET","","cast","" +"Identity.DirectoryManagement","GetMgDirectoryAdministrativeUnitMemberAsGroup_List.g.cs","v1.0","Get-MgDirectoryAdministrativeUnitMemberAsGroup","GET","","cast","" +"Identity.DirectoryManagement","GetMgDirectoryAdministrativeUnitMemberAsGroup.g.cs","v1.0","Get-MgDirectoryAdministrativeUnitMemberAsGroup","","","dispatcher","" +"Identity.DirectoryManagement","GetMgDirectoryAdministrativeUnitMemberAsGroupCount.g.cs","v1.0","Get-MgDirectoryAdministrativeUnitMemberAsGroupCount","GET","","cast","" +"Identity.DirectoryManagement","GetMgDirectoryAdministrativeUnitMemberAsOrgContact_Get.g.cs","v1.0","Get-MgDirectoryAdministrativeUnitMemberAsOrgContact","GET","","cast","" +"Identity.DirectoryManagement","GetMgDirectoryAdministrativeUnitMemberAsOrgContact_List.g.cs","v1.0","Get-MgDirectoryAdministrativeUnitMemberAsOrgContact","GET","","cast","" +"Identity.DirectoryManagement","GetMgDirectoryAdministrativeUnitMemberAsOrgContact.g.cs","v1.0","Get-MgDirectoryAdministrativeUnitMemberAsOrgContact","","","dispatcher","" +"Identity.DirectoryManagement","GetMgDirectoryAdministrativeUnitMemberAsOrgContactCount.g.cs","v1.0","Get-MgDirectoryAdministrativeUnitMemberAsOrgContactCount","GET","","cast","" +"Identity.DirectoryManagement","GetMgDirectoryAdministrativeUnitMemberAsServicePrincipal_Get.g.cs","v1.0","Get-MgDirectoryAdministrativeUnitMemberAsServicePrincipal","GET","","cast","" +"Identity.DirectoryManagement","GetMgDirectoryAdministrativeUnitMemberAsServicePrincipal_List.g.cs","v1.0","Get-MgDirectoryAdministrativeUnitMemberAsServicePrincipal","GET","","cast","" +"Identity.DirectoryManagement","GetMgDirectoryAdministrativeUnitMemberAsServicePrincipal.g.cs","v1.0","Get-MgDirectoryAdministrativeUnitMemberAsServicePrincipal","","","dispatcher","" +"Identity.DirectoryManagement","GetMgDirectoryAdministrativeUnitMemberAsServicePrincipalCount.g.cs","v1.0","Get-MgDirectoryAdministrativeUnitMemberAsServicePrincipalCount","GET","","cast","" +"Identity.DirectoryManagement","GetMgDirectoryAdministrativeUnitMemberAsUser_Get.g.cs","v1.0","Get-MgDirectoryAdministrativeUnitMemberAsUser","GET","","cast","" +"Identity.DirectoryManagement","GetMgDirectoryAdministrativeUnitMemberAsUser_List.g.cs","v1.0","Get-MgDirectoryAdministrativeUnitMemberAsUser","GET","","cast","" +"Identity.DirectoryManagement","GetMgDirectoryAdministrativeUnitMemberAsUser.g.cs","v1.0","Get-MgDirectoryAdministrativeUnitMemberAsUser","","","dispatcher","" +"Identity.DirectoryManagement","GetMgDirectoryAdministrativeUnitMemberAsUserCount.g.cs","v1.0","Get-MgDirectoryAdministrativeUnitMemberAsUserCount","GET","","cast","" +"Identity.DirectoryManagement","GetMgDirectoryAdministrativeUnitMemberByRef.g.cs","v1.0","Get-MgDirectoryAdministrativeUnitMemberByRef","GET","/directory/administrativeUnits/{param}/members/$ref","matched","Get-MgDirectoryAdministrativeUnitMemberByRef" +"Identity.DirectoryManagement","GetMgDirectoryAdministrativeUnitMemberCount.g.cs","v1.0","Get-MgDirectoryAdministrativeUnitMemberCount","GET","/directory/administrativeUnits/{param}/members/$count","matched","Get-MgDirectoryAdministrativeUnitMemberCount" +"Identity.DirectoryManagement","GetMgDirectoryAdministrativeUnitScopedRoleMember_Get.g.cs","v1.0","Get-MgDirectoryAdministrativeUnitScopedRoleMember","GET","/directory/administrativeUnits/{param}/scopedRoleMembers/{param}","matched","Get-MgDirectoryAdministrativeUnitScopedRoleMember" +"Identity.DirectoryManagement","GetMgDirectoryAdministrativeUnitScopedRoleMember_List.g.cs","v1.0","Get-MgDirectoryAdministrativeUnitScopedRoleMember","GET","/directory/administrativeUnits/{param}/scopedRoleMembers","matched","Get-MgDirectoryAdministrativeUnitScopedRoleMember" +"Identity.DirectoryManagement","GetMgDirectoryAdministrativeUnitScopedRoleMember.g.cs","v1.0","Get-MgDirectoryAdministrativeUnitScopedRoleMember","","","dispatcher","" +"Identity.DirectoryManagement","GetMgDirectoryAdministrativeUnitScopedRoleMemberCount.g.cs","v1.0","Get-MgDirectoryAdministrativeUnitScopedRoleMemberCount","GET","/directory/administrativeUnits/{param}/scopedRoleMembers/$count","matched","Get-MgDirectoryAdministrativeUnitScopedRoleMemberCount" +"Identity.DirectoryManagement","GetMgDirectoryAttributeSet_Get.g.cs","v1.0","Get-MgDirectoryAttributeSet","GET","/directory/attributeSets/{param}","matched","Get-MgDirectoryAttributeSet" +"Identity.DirectoryManagement","GetMgDirectoryAttributeSet_List.g.cs","v1.0","Get-MgDirectoryAttributeSet","GET","/directory/attributeSets","matched","Get-MgDirectoryAttributeSet" +"Identity.DirectoryManagement","GetMgDirectoryAttributeSet.g.cs","v1.0","Get-MgDirectoryAttributeSet","","","dispatcher","" +"Identity.DirectoryManagement","GetMgDirectoryAttributeSetCount.g.cs","v1.0","Get-MgDirectoryAttributeSetCount","GET","/directory/attributeSets/$count","matched","Get-MgDirectoryAttributeSetCount" +"Identity.DirectoryManagement","GetMgDirectoryCustomSecurityAttributeDefinition_Get.g.cs","v1.0","Get-MgDirectoryCustomSecurityAttributeDefinition","GET","/directory/customSecurityAttributeDefinitions/{param}","matched","Get-MgDirectoryCustomSecurityAttributeDefinition" +"Identity.DirectoryManagement","GetMgDirectoryCustomSecurityAttributeDefinition_List.g.cs","v1.0","Get-MgDirectoryCustomSecurityAttributeDefinition","GET","/directory/customSecurityAttributeDefinitions","matched","Get-MgDirectoryCustomSecurityAttributeDefinition" +"Identity.DirectoryManagement","GetMgDirectoryCustomSecurityAttributeDefinition.g.cs","v1.0","Get-MgDirectoryCustomSecurityAttributeDefinition","","","dispatcher","" +"Identity.DirectoryManagement","GetMgDirectoryCustomSecurityAttributeDefinitionAllowedValue_Get.g.cs","v1.0","Get-MgDirectoryCustomSecurityAttributeDefinitionAllowedValue","GET","/directory/customSecurityAttributeDefinitions/{param}/allowedValues/{param}","matched","Get-MgDirectoryCustomSecurityAttributeDefinitionAllowedValue" +"Identity.DirectoryManagement","GetMgDirectoryCustomSecurityAttributeDefinitionAllowedValue_List.g.cs","v1.0","Get-MgDirectoryCustomSecurityAttributeDefinitionAllowedValue","GET","/directory/customSecurityAttributeDefinitions/{param}/allowedValues","matched","Get-MgDirectoryCustomSecurityAttributeDefinitionAllowedValue" +"Identity.DirectoryManagement","GetMgDirectoryCustomSecurityAttributeDefinitionAllowedValue.g.cs","v1.0","Get-MgDirectoryCustomSecurityAttributeDefinitionAllowedValue","","","dispatcher","" +"Identity.DirectoryManagement","GetMgDirectoryCustomSecurityAttributeDefinitionAllowedValueCount.g.cs","v1.0","Get-MgDirectoryCustomSecurityAttributeDefinitionAllowedValueCount","GET","/directory/customSecurityAttributeDefinitions/{param}/allowedValues/$count","matched","Get-MgDirectoryCustomSecurityAttributeDefinitionAllowedValueCount" +"Identity.DirectoryManagement","GetMgDirectoryCustomSecurityAttributeDefinitionCount.g.cs","v1.0","Get-MgDirectoryCustomSecurityAttributeDefinitionCount","GET","/directory/customSecurityAttributeDefinitions/$count","matched","Get-MgDirectoryCustomSecurityAttributeDefinitionCount" +"Identity.DirectoryManagement","GetMgDirectoryDeletedItem_Get.g.cs","v1.0","Get-MgDirectoryDeletedItem","GET","/directory/deletedItems/{param}","matched","Get-MgDirectoryDeletedItem" +"Identity.DirectoryManagement","GetMgDirectoryDeletedItem_List.g.cs","v1.0","Get-MgDirectoryDeletedItem","GET","/directory/deletedItems","no-oracle","" +"Identity.DirectoryManagement","GetMgDirectoryDeletedItem.g.cs","v1.0","Get-MgDirectoryDeletedItem","","","dispatcher","" +"Identity.DirectoryManagement","GetMgDirectoryDeletedItemAsAdministrativeUnit_Get.g.cs","v1.0","Get-MgDirectoryDeletedItemAsAdministrativeUnit","GET","","cast","" +"Identity.DirectoryManagement","GetMgDirectoryDeletedItemAsAdministrativeUnit_List.g.cs","v1.0","Get-MgDirectoryDeletedItemAsAdministrativeUnit","GET","","cast","" +"Identity.DirectoryManagement","GetMgDirectoryDeletedItemAsAdministrativeUnit.g.cs","v1.0","Get-MgDirectoryDeletedItemAsAdministrativeUnit","","","dispatcher","" +"Identity.DirectoryManagement","GetMgDirectoryDeletedItemAsAdministrativeUnitCount.g.cs","v1.0","Get-MgDirectoryDeletedItemAsAdministrativeUnitCount","GET","","cast","" +"Identity.DirectoryManagement","GetMgDirectoryDeletedItemAsApplication_Get.g.cs","v1.0","Get-MgDirectoryDeletedItemAsApplication","GET","","cast","" +"Identity.DirectoryManagement","GetMgDirectoryDeletedItemAsApplication_List.g.cs","v1.0","Get-MgDirectoryDeletedItemAsApplication","GET","","cast","" +"Identity.DirectoryManagement","GetMgDirectoryDeletedItemAsApplication.g.cs","v1.0","Get-MgDirectoryDeletedItemAsApplication","","","dispatcher","" +"Identity.DirectoryManagement","GetMgDirectoryDeletedItemAsApplicationCount.g.cs","v1.0","Get-MgDirectoryDeletedItemAsApplicationCount","GET","","cast","" +"Identity.DirectoryManagement","GetMgDirectoryDeletedItemAsDevice_Get.g.cs","v1.0","Get-MgDirectoryDeletedItemAsDevice","GET","","cast","" +"Identity.DirectoryManagement","GetMgDirectoryDeletedItemAsDevice_List.g.cs","v1.0","Get-MgDirectoryDeletedItemAsDevice","GET","","cast","" +"Identity.DirectoryManagement","GetMgDirectoryDeletedItemAsDevice.g.cs","v1.0","Get-MgDirectoryDeletedItemAsDevice","","","dispatcher","" +"Identity.DirectoryManagement","GetMgDirectoryDeletedItemAsDeviceCount.g.cs","v1.0","Get-MgDirectoryDeletedItemAsDeviceCount","GET","","cast","" +"Identity.DirectoryManagement","GetMgDirectoryDeletedItemAsGroup_Get.g.cs","v1.0","Get-MgDirectoryDeletedItemAsGroup","GET","","cast","" +"Identity.DirectoryManagement","GetMgDirectoryDeletedItemAsGroup_List.g.cs","v1.0","Get-MgDirectoryDeletedItemAsGroup","GET","","cast","" +"Identity.DirectoryManagement","GetMgDirectoryDeletedItemAsGroup.g.cs","v1.0","Get-MgDirectoryDeletedItemAsGroup","","","dispatcher","" +"Identity.DirectoryManagement","GetMgDirectoryDeletedItemAsGroupCount.g.cs","v1.0","Get-MgDirectoryDeletedItemAsGroupCount","GET","","cast","" +"Identity.DirectoryManagement","GetMgDirectoryDeletedItemAsServicePrincipal_Get.g.cs","v1.0","Get-MgDirectoryDeletedItemAsServicePrincipal","GET","","cast","" +"Identity.DirectoryManagement","GetMgDirectoryDeletedItemAsServicePrincipal_List.g.cs","v1.0","Get-MgDirectoryDeletedItemAsServicePrincipal","GET","","cast","" +"Identity.DirectoryManagement","GetMgDirectoryDeletedItemAsServicePrincipal.g.cs","v1.0","Get-MgDirectoryDeletedItemAsServicePrincipal","","","dispatcher","" +"Identity.DirectoryManagement","GetMgDirectoryDeletedItemAsServicePrincipalCount.g.cs","v1.0","Get-MgDirectoryDeletedItemAsServicePrincipalCount","GET","","cast","" +"Identity.DirectoryManagement","GetMgDirectoryDeletedItemAsUser_Get.g.cs","v1.0","Get-MgDirectoryDeletedItemAsUser","GET","","cast","" +"Identity.DirectoryManagement","GetMgDirectoryDeletedItemAsUser_List.g.cs","v1.0","Get-MgDirectoryDeletedItemAsUser","GET","","cast","" +"Identity.DirectoryManagement","GetMgDirectoryDeletedItemAsUser.g.cs","v1.0","Get-MgDirectoryDeletedItemAsUser","","","dispatcher","" +"Identity.DirectoryManagement","GetMgDirectoryDeletedItemAsUserCount.g.cs","v1.0","Get-MgDirectoryDeletedItemAsUserCount","GET","","cast","" +"Identity.DirectoryManagement","GetMgDirectoryDeletedItemCount.g.cs","v1.0","Get-MgDirectoryDeletedItemCount","GET","/directory/deletedItems/$count","no-oracle","" +"Identity.DirectoryManagement","GetMgDirectoryDeviceLocalCredential_Get.g.cs","v1.0","Get-MgDirectoryDeviceLocalCredential","GET","/directory/deviceLocalCredentials/{param}","matched","Get-MgDirectoryDeviceLocalCredential" +"Identity.DirectoryManagement","GetMgDirectoryDeviceLocalCredential_List.g.cs","v1.0","Get-MgDirectoryDeviceLocalCredential","GET","/directory/deviceLocalCredentials","matched","Get-MgDirectoryDeviceLocalCredential" +"Identity.DirectoryManagement","GetMgDirectoryDeviceLocalCredential.g.cs","v1.0","Get-MgDirectoryDeviceLocalCredential","","","dispatcher","" +"Identity.DirectoryManagement","GetMgDirectoryDeviceLocalCredentialCount.g.cs","v1.0","Get-MgDirectoryDeviceLocalCredentialCount","GET","/directory/deviceLocalCredentials/$count","matched","Get-MgDirectoryDeviceLocalCredentialCount" +"Identity.DirectoryManagement","GetMgDirectoryFederationConfiguration_Get.g.cs","v1.0","Get-MgDirectoryFederationConfiguration","GET","/directory/federationConfigurations/{param}","matched","Get-MgDirectoryFederationConfiguration" +"Identity.DirectoryManagement","GetMgDirectoryFederationConfiguration_List.g.cs","v1.0","Get-MgDirectoryFederationConfiguration","GET","/directory/federationConfigurations","matched","Get-MgDirectoryFederationConfiguration" +"Identity.DirectoryManagement","GetMgDirectoryFederationConfiguration.g.cs","v1.0","Get-MgDirectoryFederationConfiguration","","","dispatcher","" +"Identity.DirectoryManagement","GetMgDirectoryFederationConfigurationAvailableProviderTypes.g.cs","v1.0","Get-MgDirectoryFederationConfigurationAvailableProviderTypes","GET","/directory/federationConfigurations/availableProviderTypes","mismatch","Invoke-MgAvailableDirectoryFederationConfigurationProviderType" +"Identity.DirectoryManagement","GetMgDirectoryFederationConfigurationCount.g.cs","v1.0","Get-MgDirectoryFederationConfigurationCount","GET","/directory/federationConfigurations/$count","matched","Get-MgDirectoryFederationConfigurationCount" +"Identity.DirectoryManagement","GetMgDirectoryOnPremiseSynchronization_Get.g.cs","v1.0","Get-MgDirectoryOnPremiseSynchronization","GET","/directory/onPremisesSynchronization/{param}","matched","Get-MgDirectoryOnPremiseSynchronization" +"Identity.DirectoryManagement","GetMgDirectoryOnPremiseSynchronization_List.g.cs","v1.0","Get-MgDirectoryOnPremiseSynchronization","GET","/directory/onPremisesSynchronization","matched","Get-MgDirectoryOnPremiseSynchronization" +"Identity.DirectoryManagement","GetMgDirectoryOnPremiseSynchronization.g.cs","v1.0","Get-MgDirectoryOnPremiseSynchronization","","","dispatcher","" +"Identity.DirectoryManagement","GetMgDirectoryOnPremiseSynchronizationCount.g.cs","v1.0","Get-MgDirectoryOnPremiseSynchronizationCount","GET","/directory/onPremisesSynchronization/$count","matched","Get-MgDirectoryOnPremiseSynchronizationCount" +"Identity.DirectoryManagement","GetMgDirectoryPublicKeyInfrastructure.g.cs","v1.0","Get-MgDirectoryPublicKeyInfrastructure","GET","/directory/publicKeyInfrastructure","matched","Get-MgDirectoryPublicKeyInfrastructure" +"Identity.DirectoryManagement","GetMgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfiguration_Get.g.cs","v1.0","Get-MgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfiguration","GET","/directory/publicKeyInfrastructure/certificateBasedAuthConfigurations/{param}","matched","Get-MgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfiguration" +"Identity.DirectoryManagement","GetMgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfiguration_List.g.cs","v1.0","Get-MgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfiguration","GET","/directory/publicKeyInfrastructure/certificateBasedAuthConfigurations","matched","Get-MgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfiguration" +"Identity.DirectoryManagement","GetMgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfiguration.g.cs","v1.0","Get-MgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfiguration","","","dispatcher","" +"Identity.DirectoryManagement","GetMgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfigurationCertificateAuthority_Get.g.cs","v1.0","Get-MgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfigurationCertificateAuthority","GET","/directory/publicKeyInfrastructure/certificateBasedAuthConfigurations/{param}/certificateAuthorities/{param}","matched","Get-MgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfigurationCertificateAuthority" +"Identity.DirectoryManagement","GetMgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfigurationCertificateAuthority_List.g.cs","v1.0","Get-MgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfigurationCertificateAuthority","GET","/directory/publicKeyInfrastructure/certificateBasedAuthConfigurations/{param}/certificateAuthorities","matched","Get-MgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfigurationCertificateAuthority" +"Identity.DirectoryManagement","GetMgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfigurationCertificateAuthority.g.cs","v1.0","Get-MgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfigurationCertificateAuthority","","","dispatcher","" +"Identity.DirectoryManagement","GetMgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfigurationCertificateAuthorityCount.g.cs","v1.0","Get-MgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfigurationCertificateAuthorityCount","GET","/directory/publicKeyInfrastructure/certificateBasedAuthConfigurations/{param}/certificateAuthorities/$count","matched","Get-MgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfigurationCertificateAuthorityCount" +"Identity.DirectoryManagement","GetMgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfigurationCount.g.cs","v1.0","Get-MgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfigurationCount","GET","/directory/publicKeyInfrastructure/certificateBasedAuthConfigurations/$count","matched","Get-MgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfigurationCount" +"Identity.DirectoryManagement","GetMgDirectoryRecovery.g.cs","v1.0","Get-MgDirectoryRecovery","GET","/directory/recovery","matched","Get-MgDirectoryRecovery" +"Identity.DirectoryManagement","GetMgDirectoryRecoveryJob_Get.g.cs","v1.0","Get-MgDirectoryRecoveryJob","GET","/directory/recovery/jobs/{param}","matched","Get-MgDirectoryRecoveryJob" +"Identity.DirectoryManagement","GetMgDirectoryRecoveryJob_List.g.cs","v1.0","Get-MgDirectoryRecoveryJob","GET","/directory/recovery/jobs","matched","Get-MgDirectoryRecoveryJob" +"Identity.DirectoryManagement","GetMgDirectoryRecoveryJob.g.cs","v1.0","Get-MgDirectoryRecoveryJob","","","dispatcher","" +"Identity.DirectoryManagement","GetMgDirectoryRecoveryJobCount.g.cs","v1.0","Get-MgDirectoryRecoveryJobCount","GET","/directory/recovery/jobs/$count","matched","Get-MgDirectoryRecoveryJobCount" +"Identity.DirectoryManagement","GetMgDirectoryRecoverySnapshot_Get.g.cs","v1.0","Get-MgDirectoryRecoverySnapshot","GET","/directory/recovery/snapshots/{param}","matched","Get-MgDirectoryRecoverySnapshot" +"Identity.DirectoryManagement","GetMgDirectoryRecoverySnapshot_List.g.cs","v1.0","Get-MgDirectoryRecoverySnapshot","GET","/directory/recovery/snapshots","matched","Get-MgDirectoryRecoverySnapshot" +"Identity.DirectoryManagement","GetMgDirectoryRecoverySnapshot.g.cs","v1.0","Get-MgDirectoryRecoverySnapshot","","","dispatcher","" +"Identity.DirectoryManagement","GetMgDirectoryRecoverySnapshotCount.g.cs","v1.0","Get-MgDirectoryRecoverySnapshotCount","GET","/directory/recovery/snapshots/$count","matched","Get-MgDirectoryRecoverySnapshotCount" +"Identity.DirectoryManagement","GetMgDirectoryRecoverySnapshotRecoveryJob_Get.g.cs","v1.0","Get-MgDirectoryRecoverySnapshotRecoveryJob","GET","/directory/recovery/snapshots/{param}/recoveryJobs/{param}","matched","Get-MgDirectoryRecoverySnapshotRecoveryJob" +"Identity.DirectoryManagement","GetMgDirectoryRecoverySnapshotRecoveryJob_List.g.cs","v1.0","Get-MgDirectoryRecoverySnapshotRecoveryJob","GET","/directory/recovery/snapshots/{param}/recoveryJobs","matched","Get-MgDirectoryRecoverySnapshotRecoveryJob" +"Identity.DirectoryManagement","GetMgDirectoryRecoverySnapshotRecoveryJob.g.cs","v1.0","Get-MgDirectoryRecoverySnapshotRecoveryJob","","","dispatcher","" +"Identity.DirectoryManagement","GetMgDirectoryRecoverySnapshotRecoveryJobCount.g.cs","v1.0","Get-MgDirectoryRecoverySnapshotRecoveryJobCount","GET","/directory/recovery/snapshots/{param}/recoveryJobs/$count","matched","Get-MgDirectoryRecoverySnapshotRecoveryJobCount" +"Identity.DirectoryManagement","GetMgDirectoryRecoverySnapshotRecoveryPreviewJob_Get.g.cs","v1.0","Get-MgDirectoryRecoverySnapshotRecoveryPreviewJob","GET","/directory/recovery/snapshots/{param}/recoveryPreviewJobs/{param}","matched","Get-MgDirectoryRecoverySnapshotRecoveryPreviewJob" +"Identity.DirectoryManagement","GetMgDirectoryRecoverySnapshotRecoveryPreviewJob_List.g.cs","v1.0","Get-MgDirectoryRecoverySnapshotRecoveryPreviewJob","GET","/directory/recovery/snapshots/{param}/recoveryPreviewJobs","matched","Get-MgDirectoryRecoverySnapshotRecoveryPreviewJob" +"Identity.DirectoryManagement","GetMgDirectoryRecoverySnapshotRecoveryPreviewJob.g.cs","v1.0","Get-MgDirectoryRecoverySnapshotRecoveryPreviewJob","","","dispatcher","" +"Identity.DirectoryManagement","GetMgDirectoryRecoverySnapshotRecoveryPreviewJobCount.g.cs","v1.0","Get-MgDirectoryRecoverySnapshotRecoveryPreviewJobCount","GET","/directory/recovery/snapshots/{param}/recoveryPreviewJobs/$count","matched","Get-MgDirectoryRecoverySnapshotRecoveryPreviewJobCount" +"Identity.DirectoryManagement","GetMgDirectoryRole_Get.g.cs","v1.0","Get-MgDirectoryRole","GET","/directoryRoles/{param}","matched","Get-MgDirectoryRole" +"Identity.DirectoryManagement","GetMgDirectoryRole_List.g.cs","v1.0","Get-MgDirectoryRole","GET","/directoryRoles","matched","Get-MgDirectoryRole" +"Identity.DirectoryManagement","GetMgDirectoryRole.g.cs","v1.0","Get-MgDirectoryRole","","","dispatcher","" +"Identity.DirectoryManagement","GetMgDirectoryRoleCount.g.cs","v1.0","Get-MgDirectoryRoleCount","GET","/directoryRoles/$count","matched","Get-MgDirectoryRoleCount" +"Identity.DirectoryManagement","GetMgDirectoryRoleDelta.g.cs","v1.0","Get-MgDirectoryRoleDelta","GET","/directoryRoles/delta","matched","Get-MgDirectoryRoleDelta" +"Identity.DirectoryManagement","GetMgDirectoryRoleMember.g.cs","v1.0","Get-MgDirectoryRoleMember","GET","/directoryRoles/{param}/members","matched","Get-MgDirectoryRoleMember" +"Identity.DirectoryManagement","GetMgDirectoryRoleMemberAsApplication_Get.g.cs","v1.0","Get-MgDirectoryRoleMemberAsApplication","GET","","cast","" +"Identity.DirectoryManagement","GetMgDirectoryRoleMemberAsApplication_List.g.cs","v1.0","Get-MgDirectoryRoleMemberAsApplication","GET","","cast","" +"Identity.DirectoryManagement","GetMgDirectoryRoleMemberAsApplication.g.cs","v1.0","Get-MgDirectoryRoleMemberAsApplication","","","dispatcher","" +"Identity.DirectoryManagement","GetMgDirectoryRoleMemberAsApplicationCount.g.cs","v1.0","Get-MgDirectoryRoleMemberAsApplicationCount","GET","","cast","" +"Identity.DirectoryManagement","GetMgDirectoryRoleMemberAsDevice_Get.g.cs","v1.0","Get-MgDirectoryRoleMemberAsDevice","GET","","cast","" +"Identity.DirectoryManagement","GetMgDirectoryRoleMemberAsDevice_List.g.cs","v1.0","Get-MgDirectoryRoleMemberAsDevice","GET","","cast","" +"Identity.DirectoryManagement","GetMgDirectoryRoleMemberAsDevice.g.cs","v1.0","Get-MgDirectoryRoleMemberAsDevice","","","dispatcher","" +"Identity.DirectoryManagement","GetMgDirectoryRoleMemberAsDeviceCount.g.cs","v1.0","Get-MgDirectoryRoleMemberAsDeviceCount","GET","","cast","" +"Identity.DirectoryManagement","GetMgDirectoryRoleMemberAsGroup_Get.g.cs","v1.0","Get-MgDirectoryRoleMemberAsGroup","GET","","cast","" +"Identity.DirectoryManagement","GetMgDirectoryRoleMemberAsGroup_List.g.cs","v1.0","Get-MgDirectoryRoleMemberAsGroup","GET","","cast","" +"Identity.DirectoryManagement","GetMgDirectoryRoleMemberAsGroup.g.cs","v1.0","Get-MgDirectoryRoleMemberAsGroup","","","dispatcher","" +"Identity.DirectoryManagement","GetMgDirectoryRoleMemberAsGroupCount.g.cs","v1.0","Get-MgDirectoryRoleMemberAsGroupCount","GET","","cast","" +"Identity.DirectoryManagement","GetMgDirectoryRoleMemberAsOrgContact_Get.g.cs","v1.0","Get-MgDirectoryRoleMemberAsOrgContact","GET","","cast","" +"Identity.DirectoryManagement","GetMgDirectoryRoleMemberAsOrgContact_List.g.cs","v1.0","Get-MgDirectoryRoleMemberAsOrgContact","GET","","cast","" +"Identity.DirectoryManagement","GetMgDirectoryRoleMemberAsOrgContact.g.cs","v1.0","Get-MgDirectoryRoleMemberAsOrgContact","","","dispatcher","" +"Identity.DirectoryManagement","GetMgDirectoryRoleMemberAsOrgContactCount.g.cs","v1.0","Get-MgDirectoryRoleMemberAsOrgContactCount","GET","","cast","" +"Identity.DirectoryManagement","GetMgDirectoryRoleMemberAsServicePrincipal_Get.g.cs","v1.0","Get-MgDirectoryRoleMemberAsServicePrincipal","GET","","cast","" +"Identity.DirectoryManagement","GetMgDirectoryRoleMemberAsServicePrincipal_List.g.cs","v1.0","Get-MgDirectoryRoleMemberAsServicePrincipal","GET","","cast","" +"Identity.DirectoryManagement","GetMgDirectoryRoleMemberAsServicePrincipal.g.cs","v1.0","Get-MgDirectoryRoleMemberAsServicePrincipal","","","dispatcher","" +"Identity.DirectoryManagement","GetMgDirectoryRoleMemberAsServicePrincipalCount.g.cs","v1.0","Get-MgDirectoryRoleMemberAsServicePrincipalCount","GET","","cast","" +"Identity.DirectoryManagement","GetMgDirectoryRoleMemberAsUser_Get.g.cs","v1.0","Get-MgDirectoryRoleMemberAsUser","GET","","cast","" +"Identity.DirectoryManagement","GetMgDirectoryRoleMemberAsUser_List.g.cs","v1.0","Get-MgDirectoryRoleMemberAsUser","GET","","cast","" +"Identity.DirectoryManagement","GetMgDirectoryRoleMemberAsUser.g.cs","v1.0","Get-MgDirectoryRoleMemberAsUser","","","dispatcher","" +"Identity.DirectoryManagement","GetMgDirectoryRoleMemberAsUserCount.g.cs","v1.0","Get-MgDirectoryRoleMemberAsUserCount","GET","","cast","" +"Identity.DirectoryManagement","GetMgDirectoryRoleMemberByRef.g.cs","v1.0","Get-MgDirectoryRoleMemberByRef","GET","/directoryRoles/{param}/members/$ref","matched","Get-MgDirectoryRoleMemberByRef" +"Identity.DirectoryManagement","GetMgDirectoryRoleMemberCount.g.cs","v1.0","Get-MgDirectoryRoleMemberCount","GET","/directoryRoles/{param}/members/$count","matched","Get-MgDirectoryRoleMemberCount" +"Identity.DirectoryManagement","GetMgDirectoryRoleScopedMember_Get.g.cs","v1.0","Get-MgDirectoryRoleScopedMember","GET","/directoryRoles/{param}/scopedMembers/{param}","matched","Get-MgDirectoryRoleScopedMember" +"Identity.DirectoryManagement","GetMgDirectoryRoleScopedMember_List.g.cs","v1.0","Get-MgDirectoryRoleScopedMember","GET","/directoryRoles/{param}/scopedMembers","matched","Get-MgDirectoryRoleScopedMember" +"Identity.DirectoryManagement","GetMgDirectoryRoleScopedMember.g.cs","v1.0","Get-MgDirectoryRoleScopedMember","","","dispatcher","" +"Identity.DirectoryManagement","GetMgDirectoryRoleScopedMemberCount.g.cs","v1.0","Get-MgDirectoryRoleScopedMemberCount","GET","/directoryRoles/{param}/scopedMembers/$count","matched","Get-MgDirectoryRoleScopedMemberCount" +"Identity.DirectoryManagement","GetMgDirectoryRoleTemplate_Get.g.cs","v1.0","Get-MgDirectoryRoleTemplate","GET","/directoryRoleTemplates/{param}","matched","Get-MgDirectoryRoleTemplate" +"Identity.DirectoryManagement","GetMgDirectoryRoleTemplate_List.g.cs","v1.0","Get-MgDirectoryRoleTemplate","GET","/directoryRoleTemplates","matched","Get-MgDirectoryRoleTemplate" +"Identity.DirectoryManagement","GetMgDirectoryRoleTemplate.g.cs","v1.0","Get-MgDirectoryRoleTemplate","","","dispatcher","" +"Identity.DirectoryManagement","GetMgDirectoryRoleTemplateCount.g.cs","v1.0","Get-MgDirectoryRoleTemplateCount","GET","/directoryRoleTemplates/$count","matched","Get-MgDirectoryRoleTemplateCount" +"Identity.DirectoryManagement","GetMgDirectoryRoleTemplateDelta.g.cs","v1.0","Get-MgDirectoryRoleTemplateDelta","GET","/directoryRoleTemplates/delta","matched","Get-MgDirectoryRoleTemplateDelta" +"Identity.DirectoryManagement","GetMgDirectorySubscription_Get.g.cs","v1.0","Get-MgDirectorySubscription","GET","/directory/subscriptions/{param}","matched","Get-MgDirectorySubscription" +"Identity.DirectoryManagement","GetMgDirectorySubscription_List.g.cs","v1.0","Get-MgDirectorySubscription","GET","/directory/subscriptions","matched","Get-MgDirectorySubscription" +"Identity.DirectoryManagement","GetMgDirectorySubscription.g.cs","v1.0","Get-MgDirectorySubscription","","","dispatcher","" +"Identity.DirectoryManagement","GetMgDirectorySubscriptionCount.g.cs","v1.0","Get-MgDirectorySubscriptionCount","GET","/directory/subscriptions/$count","matched","Get-MgDirectorySubscriptionCount" +"Identity.DirectoryManagement","GetMgDomain_Get.g.cs","v1.0","Get-MgDomain","GET","/domains/{param}","matched","Get-MgDomain" +"Identity.DirectoryManagement","GetMgDomain_List.g.cs","v1.0","Get-MgDomain","GET","/domains","matched","Get-MgDomain" +"Identity.DirectoryManagement","GetMgDomain.g.cs","v1.0","Get-MgDomain","","","dispatcher","" +"Identity.DirectoryManagement","GetMgDomainCount.g.cs","v1.0","Get-MgDomainCount","GET","/domains/$count","matched","Get-MgDomainCount" +"Identity.DirectoryManagement","GetMgDomainFederationConfiguration_Get.g.cs","v1.0","Get-MgDomainFederationConfiguration","GET","/domains/{param}/federationConfiguration/{param}","matched","Get-MgDomainFederationConfiguration" +"Identity.DirectoryManagement","GetMgDomainFederationConfiguration_List.g.cs","v1.0","Get-MgDomainFederationConfiguration","GET","/domains/{param}/federationConfiguration","matched","Get-MgDomainFederationConfiguration" +"Identity.DirectoryManagement","GetMgDomainFederationConfiguration.g.cs","v1.0","Get-MgDomainFederationConfiguration","","","dispatcher","" +"Identity.DirectoryManagement","GetMgDomainFederationConfigurationCount.g.cs","v1.0","Get-MgDomainFederationConfigurationCount","GET","/domains/{param}/federationConfiguration/$count","matched","Get-MgDomainFederationConfigurationCount" +"Identity.DirectoryManagement","GetMgDomainNameReference_Get.g.cs","v1.0","Get-MgDomainNameReference","GET","/domains/{param}/domainNameReferences/{param}","matched","Get-MgDomainNameReference" +"Identity.DirectoryManagement","GetMgDomainNameReference_List.g.cs","v1.0","Get-MgDomainNameReference","GET","/domains/{param}/domainNameReferences","matched","Get-MgDomainNameReference" +"Identity.DirectoryManagement","GetMgDomainNameReference.g.cs","v1.0","Get-MgDomainNameReference","","","dispatcher","" +"Identity.DirectoryManagement","GetMgDomainNameReferenceCount.g.cs","v1.0","Get-MgDomainNameReferenceCount","GET","/domains/{param}/domainNameReferences/$count","matched","Get-MgDomainNameReferenceCount" +"Identity.DirectoryManagement","GetMgDomainRootDomain.g.cs","v1.0","Get-MgDomainRootDomain","GET","/domains/{param}/rootDomain","matched","Get-MgDomainRootDomain" +"Identity.DirectoryManagement","GetMgDomainServiceConfigurationRecord_Get.g.cs","v1.0","Get-MgDomainServiceConfigurationRecord","GET","/domains/{param}/serviceConfigurationRecords/{param}","matched","Get-MgDomainServiceConfigurationRecord" +"Identity.DirectoryManagement","GetMgDomainServiceConfigurationRecord_List.g.cs","v1.0","Get-MgDomainServiceConfigurationRecord","GET","/domains/{param}/serviceConfigurationRecords","matched","Get-MgDomainServiceConfigurationRecord" +"Identity.DirectoryManagement","GetMgDomainServiceConfigurationRecord.g.cs","v1.0","Get-MgDomainServiceConfigurationRecord","","","dispatcher","" +"Identity.DirectoryManagement","GetMgDomainServiceConfigurationRecordCount.g.cs","v1.0","Get-MgDomainServiceConfigurationRecordCount","GET","/domains/{param}/serviceConfigurationRecords/$count","matched","Get-MgDomainServiceConfigurationRecordCount" +"Identity.DirectoryManagement","GetMgDomainVerificationDnsRecord_Get.g.cs","v1.0","Get-MgDomainVerificationDnsRecord","GET","/domains/{param}/verificationDnsRecords/{param}","matched","Get-MgDomainVerificationDnsRecord" +"Identity.DirectoryManagement","GetMgDomainVerificationDnsRecord_List.g.cs","v1.0","Get-MgDomainVerificationDnsRecord","GET","/domains/{param}/verificationDnsRecords","matched","Get-MgDomainVerificationDnsRecord" +"Identity.DirectoryManagement","GetMgDomainVerificationDnsRecord.g.cs","v1.0","Get-MgDomainVerificationDnsRecord","","","dispatcher","" +"Identity.DirectoryManagement","GetMgDomainVerificationDnsRecordCount.g.cs","v1.0","Get-MgDomainVerificationDnsRecordCount","GET","/domains/{param}/verificationDnsRecords/$count","matched","Get-MgDomainVerificationDnsRecordCount" +"Identity.DirectoryManagement","GetMgOrganization_Get.g.cs","v1.0","Get-MgOrganization","GET","/organization/{param}","matched","Get-MgOrganization" +"Identity.DirectoryManagement","GetMgOrganization_List.g.cs","v1.0","Get-MgOrganization","GET","/organization","matched","Get-MgOrganization" +"Identity.DirectoryManagement","GetMgOrganization.g.cs","v1.0","Get-MgOrganization","","","dispatcher","" +"Identity.DirectoryManagement","GetMgOrganizationBranding.g.cs","v1.0","Get-MgOrganizationBranding","GET","/organization/{param}/branding","matched","Get-MgOrganizationBranding" +"Identity.DirectoryManagement","GetMgOrganizationBrandingLocalization_Get.g.cs","v1.0","Get-MgOrganizationBrandingLocalization","GET","/organization/{param}/branding/localizations/{param}","matched","Get-MgOrganizationBrandingLocalization" +"Identity.DirectoryManagement","GetMgOrganizationBrandingLocalization_List.g.cs","v1.0","Get-MgOrganizationBrandingLocalization","GET","/organization/{param}/branding/localizations","matched","Get-MgOrganizationBrandingLocalization" +"Identity.DirectoryManagement","GetMgOrganizationBrandingLocalization.g.cs","v1.0","Get-MgOrganizationBrandingLocalization","","","dispatcher","" +"Identity.DirectoryManagement","GetMgOrganizationBrandingLocalizationCount.g.cs","v1.0","Get-MgOrganizationBrandingLocalizationCount","GET","/organization/{param}/branding/localizations/$count","matched","Get-MgOrganizationBrandingLocalizationCount" +"Identity.DirectoryManagement","GetMgOrganizationCount.g.cs","v1.0","Get-MgOrganizationCount","GET","/organization/$count","matched","Get-MgOrganizationCount" +"Identity.DirectoryManagement","GetMgOrganizationExtension_Get.g.cs","v1.0","Get-MgOrganizationExtension","GET","/organization/{param}/extensions/{param}","matched","Get-MgOrganizationExtension" +"Identity.DirectoryManagement","GetMgOrganizationExtension_List.g.cs","v1.0","Get-MgOrganizationExtension","GET","/organization/{param}/extensions","matched","Get-MgOrganizationExtension" +"Identity.DirectoryManagement","GetMgOrganizationExtension.g.cs","v1.0","Get-MgOrganizationExtension","","","dispatcher","" +"Identity.DirectoryManagement","GetMgOrganizationExtensionCount.g.cs","v1.0","Get-MgOrganizationExtensionCount","GET","/organization/{param}/extensions/$count","matched","Get-MgOrganizationExtensionCount" +"Identity.DirectoryManagement","GetMgSubscribedSku_Get.g.cs","v1.0","Get-MgSubscribedSku","GET","/subscribedSkus/{param}","matched","Get-MgSubscribedSku" +"Identity.DirectoryManagement","GetMgSubscribedSku_List.g.cs","v1.0","Get-MgSubscribedSku","GET","/subscribedSkus","matched","Get-MgSubscribedSku" +"Identity.DirectoryManagement","GetMgSubscribedSku.g.cs","v1.0","Get-MgSubscribedSku","","","dispatcher","" +"Identity.DirectoryManagement","GetMgTenantRelationshipFindTenantInformationByDomainNameWithDomainName.g.cs","v1.0","Get-MgTenantRelationshipFindTenantInformationByDomainNameWithDomainName","","","parameterized-function","" +"Identity.DirectoryManagement","GetMgTenantRelationshipFindTenantInformationByTenantIdWithTenantId.g.cs","v1.0","Get-MgTenantRelationshipFindTenantInformationByTenantIdWithTenantId","","","parameterized-function","" +"Identity.DirectoryManagement","GetMgUserScopedRoleMemberOf_Get.g.cs","v1.0","Get-MgUserScopedRoleMemberOf","GET","/users/{param}/scopedRoleMemberOf/{param}","matched","Get-MgUserScopedRoleMemberOf" +"Identity.DirectoryManagement","GetMgUserScopedRoleMemberOf_List.g.cs","v1.0","Get-MgUserScopedRoleMemberOf","GET","/users/{param}/scopedRoleMemberOf","matched","Get-MgUserScopedRoleMemberOf" +"Identity.DirectoryManagement","GetMgUserScopedRoleMemberOf.g.cs","v1.0","Get-MgUserScopedRoleMemberOf","","","dispatcher","" +"Identity.DirectoryManagement","GetMgUserScopedRoleMemberOfCount.g.cs","v1.0","Get-MgUserScopedRoleMemberOfCount","GET","/users/{param}/scopedRoleMemberOf/$count","matched","Get-MgUserScopedRoleMemberOfCount" +"Identity.DirectoryManagement","InvokeMgContactCheckMemberGroups.g.cs","v1.0","Invoke-MgContactCheckMemberGroups","POST","/contacts/{param}/checkMemberGroups","mismatch","Confirm-MgContactMemberGroup" +"Identity.DirectoryManagement","InvokeMgContactCheckMemberObjects.g.cs","v1.0","Invoke-MgContactCheckMemberObjects","POST","/contacts/{param}/checkMemberObjects","mismatch","Confirm-MgContactMemberObject" +"Identity.DirectoryManagement","InvokeMgContactGetAvailableExtensionProperties.g.cs","v1.0","Invoke-MgContactGetAvailableExtensionProperties","POST","/contacts/getAvailableExtensionProperties","no-oracle","" +"Identity.DirectoryManagement","InvokeMgContactGetByIds.g.cs","v1.0","Invoke-MgContactGetByIds","POST","/contacts/getByIds","mismatch","Get-MgContactById" +"Identity.DirectoryManagement","InvokeMgContactGetMemberGroups.g.cs","v1.0","Invoke-MgContactGetMemberGroups","POST","/contacts/{param}/getMemberGroups","mismatch","Get-MgContactMemberGroup" +"Identity.DirectoryManagement","InvokeMgContactGetMemberObjects.g.cs","v1.0","Invoke-MgContactGetMemberObjects","POST","/contacts/{param}/getMemberObjects","mismatch","Get-MgContactMemberObject" +"Identity.DirectoryManagement","InvokeMgContactRestore.g.cs","v1.0","Invoke-MgContactRestore","POST","/contacts/{param}/restore","no-oracle","" +"Identity.DirectoryManagement","InvokeMgContactRetryServiceProvisioning.g.cs","v1.0","Invoke-MgContactRetryServiceProvisioning","POST","/contacts/{param}/retryServiceProvisioning","mismatch","Invoke-MgRetryContactServiceProvisioning" +"Identity.DirectoryManagement","InvokeMgContactValidateProperties.g.cs","v1.0","Invoke-MgContactValidateProperties","POST","/contacts/validateProperties","mismatch","Test-MgContactProperty" +"Identity.DirectoryManagement","InvokeMgContractCheckMemberGroups.g.cs","v1.0","Invoke-MgContractCheckMemberGroups","POST","/contracts/{param}/checkMemberGroups","mismatch","Confirm-MgContractMemberGroup" +"Identity.DirectoryManagement","InvokeMgContractCheckMemberObjects.g.cs","v1.0","Invoke-MgContractCheckMemberObjects","POST","/contracts/{param}/checkMemberObjects","mismatch","Confirm-MgContractMemberObject" +"Identity.DirectoryManagement","InvokeMgContractGetAvailableExtensionProperties.g.cs","v1.0","Invoke-MgContractGetAvailableExtensionProperties","POST","/contracts/getAvailableExtensionProperties","no-oracle","" +"Identity.DirectoryManagement","InvokeMgContractGetByIds.g.cs","v1.0","Invoke-MgContractGetByIds","POST","/contracts/getByIds","mismatch","Get-MgContractById" +"Identity.DirectoryManagement","InvokeMgContractGetMemberGroups.g.cs","v1.0","Invoke-MgContractGetMemberGroups","POST","/contracts/{param}/getMemberGroups","mismatch","Get-MgContractMemberGroup" +"Identity.DirectoryManagement","InvokeMgContractGetMemberObjects.g.cs","v1.0","Invoke-MgContractGetMemberObjects","POST","/contracts/{param}/getMemberObjects","mismatch","Get-MgContractMemberObject" +"Identity.DirectoryManagement","InvokeMgContractRestore.g.cs","v1.0","Invoke-MgContractRestore","POST","/contracts/{param}/restore","no-oracle","" +"Identity.DirectoryManagement","InvokeMgContractValidateProperties.g.cs","v1.0","Invoke-MgContractValidateProperties","POST","/contracts/validateProperties","mismatch","Test-MgContractProperty" +"Identity.DirectoryManagement","InvokeMgDeviceCheckMemberGroups.g.cs","v1.0","Invoke-MgDeviceCheckMemberGroups","POST","/devices/{param}/checkMemberGroups","mismatch","Confirm-MgDeviceMemberGroup" +"Identity.DirectoryManagement","InvokeMgDeviceCheckMemberObjects.g.cs","v1.0","Invoke-MgDeviceCheckMemberObjects","POST","/devices/{param}/checkMemberObjects","mismatch","Confirm-MgDeviceMemberObject" +"Identity.DirectoryManagement","InvokeMgDeviceGetAvailableExtensionProperties.g.cs","v1.0","Invoke-MgDeviceGetAvailableExtensionProperties","POST","/devices/getAvailableExtensionProperties","no-oracle","" +"Identity.DirectoryManagement","InvokeMgDeviceGetByIds.g.cs","v1.0","Invoke-MgDeviceGetByIds","POST","/devices/getByIds","mismatch","Get-MgDeviceById" +"Identity.DirectoryManagement","InvokeMgDeviceGetMemberGroups.g.cs","v1.0","Invoke-MgDeviceGetMemberGroups","POST","/devices/{param}/getMemberGroups","mismatch","Get-MgDeviceMemberGroup" +"Identity.DirectoryManagement","InvokeMgDeviceGetMemberObjects.g.cs","v1.0","Invoke-MgDeviceGetMemberObjects","POST","/devices/{param}/getMemberObjects","mismatch","Get-MgDeviceMemberObject" +"Identity.DirectoryManagement","InvokeMgDeviceRestore.g.cs","v1.0","Invoke-MgDeviceRestore","POST","/devices/{param}/restore","no-oracle","" +"Identity.DirectoryManagement","InvokeMgDeviceValidateProperties.g.cs","v1.0","Invoke-MgDeviceValidateProperties","POST","/devices/validateProperties","mismatch","Test-MgDeviceProperty" +"Identity.DirectoryManagement","InvokeMgDirectoryDeletedItemCheckMemberGroups.g.cs","v1.0","Invoke-MgDirectoryDeletedItemCheckMemberGroups","POST","/directory/deletedItems/{param}/checkMemberGroups","mismatch","Confirm-MgDirectoryDeletedItemMemberGroup" +"Identity.DirectoryManagement","InvokeMgDirectoryDeletedItemCheckMemberObjects.g.cs","v1.0","Invoke-MgDirectoryDeletedItemCheckMemberObjects","POST","/directory/deletedItems/{param}/checkMemberObjects","mismatch","Confirm-MgDirectoryDeletedItemMemberObject" +"Identity.DirectoryManagement","InvokeMgDirectoryDeletedItemGetAvailableExtensionProperties.g.cs","v1.0","Invoke-MgDirectoryDeletedItemGetAvailableExtensionProperties","POST","/directory/deletedItems/getAvailableExtensionProperties","no-oracle","" +"Identity.DirectoryManagement","InvokeMgDirectoryDeletedItemGetByIds.g.cs","v1.0","Invoke-MgDirectoryDeletedItemGetByIds","POST","/directory/deletedItems/getByIds","mismatch","Get-MgDirectoryDeletedItemById" +"Identity.DirectoryManagement","InvokeMgDirectoryDeletedItemGetMemberGroups.g.cs","v1.0","Invoke-MgDirectoryDeletedItemGetMemberGroups","POST","/directory/deletedItems/{param}/getMemberGroups","mismatch","Get-MgDirectoryDeletedItemMemberGroup" +"Identity.DirectoryManagement","InvokeMgDirectoryDeletedItemGetMemberObjects.g.cs","v1.0","Invoke-MgDirectoryDeletedItemGetMemberObjects","POST","/directory/deletedItems/{param}/getMemberObjects","mismatch","Get-MgDirectoryDeletedItemMemberObject" +"Identity.DirectoryManagement","InvokeMgDirectoryDeletedItemRestore.g.cs","v1.0","Invoke-MgDirectoryDeletedItemRestore","POST","/directory/deletedItems/{param}/restore","mismatch","Restore-MgDirectoryDeletedItem" +"Identity.DirectoryManagement","InvokeMgDirectoryDeletedItemValidateProperties.g.cs","v1.0","Invoke-MgDirectoryDeletedItemValidateProperties","POST","/directory/deletedItems/validateProperties","mismatch","Test-MgDirectoryDeletedItemProperty" +"Identity.DirectoryManagement","InvokeMgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfigurationUpload.g.cs","v1.0","Invoke-MgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfigurationUpload","POST","/directory/publicKeyInfrastructure/certificateBasedAuthConfigurations/{param}/upload","mismatch","Invoke-MgUploadDirectoryPublicKeyInfrastructureCertificateBasedAuthConfiguration" +"Identity.DirectoryManagement","InvokeMgDirectoryRecoveryJobCancel.g.cs","v1.0","Invoke-MgDirectoryRecoveryJobCancel","POST","","cast","" +"Identity.DirectoryManagement","InvokeMgDirectoryRoleCheckMemberGroups.g.cs","v1.0","Invoke-MgDirectoryRoleCheckMemberGroups","POST","/directoryRoles/{param}/checkMemberGroups","mismatch","Confirm-MgDirectoryRoleMemberGroup" +"Identity.DirectoryManagement","InvokeMgDirectoryRoleCheckMemberObjects.g.cs","v1.0","Invoke-MgDirectoryRoleCheckMemberObjects","POST","/directoryRoles/{param}/checkMemberObjects","mismatch","Confirm-MgDirectoryRoleMemberObject" +"Identity.DirectoryManagement","InvokeMgDirectoryRoleGetAvailableExtensionProperties.g.cs","v1.0","Invoke-MgDirectoryRoleGetAvailableExtensionProperties","POST","/directoryRoles/getAvailableExtensionProperties","no-oracle","" +"Identity.DirectoryManagement","InvokeMgDirectoryRoleGetByIds.g.cs","v1.0","Invoke-MgDirectoryRoleGetByIds","POST","/directoryRoles/getByIds","mismatch","Get-MgDirectoryRoleById" +"Identity.DirectoryManagement","InvokeMgDirectoryRoleGetMemberGroups.g.cs","v1.0","Invoke-MgDirectoryRoleGetMemberGroups","POST","/directoryRoles/{param}/getMemberGroups","mismatch","Get-MgDirectoryRoleMemberGroup" +"Identity.DirectoryManagement","InvokeMgDirectoryRoleGetMemberObjects.g.cs","v1.0","Invoke-MgDirectoryRoleGetMemberObjects","POST","/directoryRoles/{param}/getMemberObjects","mismatch","Get-MgDirectoryRoleMemberObject" +"Identity.DirectoryManagement","InvokeMgDirectoryRoleRestore.g.cs","v1.0","Invoke-MgDirectoryRoleRestore","POST","/directoryRoles/{param}/restore","no-oracle","" +"Identity.DirectoryManagement","InvokeMgDirectoryRoleTemplateCheckMemberGroups.g.cs","v1.0","Invoke-MgDirectoryRoleTemplateCheckMemberGroups","POST","/directoryRoleTemplates/{param}/checkMemberGroups","mismatch","Confirm-MgDirectoryRoleTemplateMemberGroup" +"Identity.DirectoryManagement","InvokeMgDirectoryRoleTemplateCheckMemberObjects.g.cs","v1.0","Invoke-MgDirectoryRoleTemplateCheckMemberObjects","POST","/directoryRoleTemplates/{param}/checkMemberObjects","mismatch","Confirm-MgDirectoryRoleTemplateMemberObject" +"Identity.DirectoryManagement","InvokeMgDirectoryRoleTemplateGetAvailableExtensionProperties.g.cs","v1.0","Invoke-MgDirectoryRoleTemplateGetAvailableExtensionProperties","POST","/directoryRoleTemplates/getAvailableExtensionProperties","no-oracle","" +"Identity.DirectoryManagement","InvokeMgDirectoryRoleTemplateGetByIds.g.cs","v1.0","Invoke-MgDirectoryRoleTemplateGetByIds","POST","/directoryRoleTemplates/getByIds","mismatch","Get-MgDirectoryRoleTemplateById" +"Identity.DirectoryManagement","InvokeMgDirectoryRoleTemplateGetMemberGroups.g.cs","v1.0","Invoke-MgDirectoryRoleTemplateGetMemberGroups","POST","/directoryRoleTemplates/{param}/getMemberGroups","mismatch","Get-MgDirectoryRoleTemplateMemberGroup" +"Identity.DirectoryManagement","InvokeMgDirectoryRoleTemplateGetMemberObjects.g.cs","v1.0","Invoke-MgDirectoryRoleTemplateGetMemberObjects","POST","/directoryRoleTemplates/{param}/getMemberObjects","mismatch","Get-MgDirectoryRoleTemplateMemberObject" +"Identity.DirectoryManagement","InvokeMgDirectoryRoleTemplateRestore.g.cs","v1.0","Invoke-MgDirectoryRoleTemplateRestore","POST","/directoryRoleTemplates/{param}/restore","no-oracle","" +"Identity.DirectoryManagement","InvokeMgDirectoryRoleTemplateValidateProperties.g.cs","v1.0","Invoke-MgDirectoryRoleTemplateValidateProperties","POST","/directoryRoleTemplates/validateProperties","mismatch","Test-MgDirectoryRoleTemplateProperty" +"Identity.DirectoryManagement","InvokeMgDirectoryRoleValidateProperties.g.cs","v1.0","Invoke-MgDirectoryRoleValidateProperties","POST","/directoryRoles/validateProperties","mismatch","Test-MgDirectoryRoleProperty" +"Identity.DirectoryManagement","InvokeMgDomainForceDelete.g.cs","v1.0","Invoke-MgDomainForceDelete","POST","/domains/{param}/forceDelete","mismatch","Invoke-MgForceDomainDelete" +"Identity.DirectoryManagement","InvokeMgDomainPromote.g.cs","v1.0","Invoke-MgDomainPromote","POST","/domains/{param}/promote","mismatch","Invoke-MgPromoteDomain" +"Identity.DirectoryManagement","InvokeMgDomainVerify.g.cs","v1.0","Invoke-MgDomainVerify","POST","/domains/{param}/verify","mismatch","Confirm-MgDomain" +"Identity.DirectoryManagement","InvokeMgOrganizationCheckMemberGroups.g.cs","v1.0","Invoke-MgOrganizationCheckMemberGroups","POST","/organization/{param}/checkMemberGroups","mismatch","Confirm-MgOrganizationMemberGroup" +"Identity.DirectoryManagement","InvokeMgOrganizationCheckMemberObjects.g.cs","v1.0","Invoke-MgOrganizationCheckMemberObjects","POST","/organization/{param}/checkMemberObjects","mismatch","Confirm-MgOrganizationMemberObject" +"Identity.DirectoryManagement","InvokeMgOrganizationGetAvailableExtensionProperties.g.cs","v1.0","Invoke-MgOrganizationGetAvailableExtensionProperties","POST","/organization/getAvailableExtensionProperties","no-oracle","" +"Identity.DirectoryManagement","InvokeMgOrganizationGetByIds.g.cs","v1.0","Invoke-MgOrganizationGetByIds","POST","/organization/getByIds","mismatch","Get-MgOrganizationById" +"Identity.DirectoryManagement","InvokeMgOrganizationGetMemberGroups.g.cs","v1.0","Invoke-MgOrganizationGetMemberGroups","POST","/organization/{param}/getMemberGroups","mismatch","Get-MgOrganizationMemberGroup" +"Identity.DirectoryManagement","InvokeMgOrganizationGetMemberObjects.g.cs","v1.0","Invoke-MgOrganizationGetMemberObjects","POST","/organization/{param}/getMemberObjects","mismatch","Get-MgOrganizationMemberObject" +"Identity.DirectoryManagement","InvokeMgOrganizationRestore.g.cs","v1.0","Invoke-MgOrganizationRestore","POST","/organization/{param}/restore","no-oracle","" +"Identity.DirectoryManagement","InvokeMgOrganizationSetMobileDeviceManagementAuthority.g.cs","v1.0","Invoke-MgOrganizationSetMobileDeviceManagementAuthority","POST","/organization/{param}/setMobileDeviceManagementAuthority","mismatch","Set-MgOrganizationMobileDeviceManagementAuthority" +"Identity.DirectoryManagement","InvokeMgOrganizationValidateProperties.g.cs","v1.0","Invoke-MgOrganizationValidateProperties","POST","/organization/validateProperties","mismatch","Test-MgOrganizationProperty" +"Identity.DirectoryManagement","NewMgAdminPeopleProfileCardProperty.g.cs","v1.0","New-MgAdminPeopleProfileCardProperty","POST","/admin/people/profileCardProperties","matched","New-MgAdminPeopleProfileCardProperty" +"Identity.DirectoryManagement","NewMgAdminPeopleProfilePropertySetting.g.cs","v1.0","New-MgAdminPeopleProfilePropertySetting","POST","/admin/people/profilePropertySettings","matched","New-MgAdminPeopleProfilePropertySetting" +"Identity.DirectoryManagement","NewMgAdminPeopleProfileSource.g.cs","v1.0","New-MgAdminPeopleProfileSource","POST","/admin/people/profileSources","matched","New-MgAdminPeopleProfileSource" +"Identity.DirectoryManagement","NewMgContract.g.cs","v1.0","New-MgContract","POST","/contracts","matched","New-MgContract" +"Identity.DirectoryManagement","NewMgDevice.g.cs","v1.0","New-MgDevice","POST","/devices","matched","New-MgDevice" +"Identity.DirectoryManagement","NewMgDeviceExtension.g.cs","v1.0","New-MgDeviceExtension","POST","/devices/{param}/extensions","matched","New-MgDeviceExtension" +"Identity.DirectoryManagement","NewMgDeviceRegisteredOwnerByRef.g.cs","v1.0","New-MgDeviceRegisteredOwnerByRef","POST","/devices/{param}/registeredOwners/$ref","matched","New-MgDeviceRegisteredOwnerByRef" +"Identity.DirectoryManagement","NewMgDeviceRegisteredUserByRef.g.cs","v1.0","New-MgDeviceRegisteredUserByRef","POST","/devices/{param}/registeredUsers/$ref","matched","New-MgDeviceRegisteredUserByRef" +"Identity.DirectoryManagement","NewMgDirectoryAdministrativeUnit.g.cs","v1.0","New-MgDirectoryAdministrativeUnit","POST","/directory/administrativeUnits","matched","New-MgDirectoryAdministrativeUnit" +"Identity.DirectoryManagement","NewMgDirectoryAdministrativeUnitExtension.g.cs","v1.0","New-MgDirectoryAdministrativeUnitExtension","POST","/directory/administrativeUnits/{param}/extensions","matched","New-MgDirectoryAdministrativeUnitExtension" +"Identity.DirectoryManagement","NewMgDirectoryAdministrativeUnitMember.g.cs","v1.0","New-MgDirectoryAdministrativeUnitMember","POST","/directory/administrativeUnits/{param}/members","matched","New-MgDirectoryAdministrativeUnitMember" +"Identity.DirectoryManagement","NewMgDirectoryAdministrativeUnitMemberByRef.g.cs","v1.0","New-MgDirectoryAdministrativeUnitMemberByRef","POST","/directory/administrativeUnits/{param}/members/$ref","matched","New-MgDirectoryAdministrativeUnitMemberByRef" +"Identity.DirectoryManagement","NewMgDirectoryAdministrativeUnitScopedRoleMember.g.cs","v1.0","New-MgDirectoryAdministrativeUnitScopedRoleMember","POST","/directory/administrativeUnits/{param}/scopedRoleMembers","matched","New-MgDirectoryAdministrativeUnitScopedRoleMember" +"Identity.DirectoryManagement","NewMgDirectoryAttributeSet.g.cs","v1.0","New-MgDirectoryAttributeSet","POST","/directory/attributeSets","matched","New-MgDirectoryAttributeSet" +"Identity.DirectoryManagement","NewMgDirectoryCustomSecurityAttributeDefinition.g.cs","v1.0","New-MgDirectoryCustomSecurityAttributeDefinition","POST","/directory/customSecurityAttributeDefinitions","matched","New-MgDirectoryCustomSecurityAttributeDefinition" +"Identity.DirectoryManagement","NewMgDirectoryCustomSecurityAttributeDefinitionAllowedValue.g.cs","v1.0","New-MgDirectoryCustomSecurityAttributeDefinitionAllowedValue","POST","/directory/customSecurityAttributeDefinitions/{param}/allowedValues","matched","New-MgDirectoryCustomSecurityAttributeDefinitionAllowedValue" +"Identity.DirectoryManagement","NewMgDirectoryDeviceLocalCredential.g.cs","v1.0","New-MgDirectoryDeviceLocalCredential","POST","/directory/deviceLocalCredentials","matched","New-MgDirectoryDeviceLocalCredential" +"Identity.DirectoryManagement","NewMgDirectoryFederationConfiguration.g.cs","v1.0","New-MgDirectoryFederationConfiguration","POST","/directory/federationConfigurations","matched","New-MgDirectoryFederationConfiguration" +"Identity.DirectoryManagement","NewMgDirectoryOnPremiseSynchronization.g.cs","v1.0","New-MgDirectoryOnPremiseSynchronization","POST","/directory/onPremisesSynchronization","matched","New-MgDirectoryOnPremiseSynchronization" +"Identity.DirectoryManagement","NewMgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfiguration.g.cs","v1.0","New-MgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfiguration","POST","/directory/publicKeyInfrastructure/certificateBasedAuthConfigurations","matched","New-MgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfiguration" +"Identity.DirectoryManagement","NewMgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfigurationCertificateAuthority.g.cs","v1.0","New-MgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfigurationCertificateAuthority","POST","/directory/publicKeyInfrastructure/certificateBasedAuthConfigurations/{param}/certificateAuthorities","matched","New-MgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfigurationCertificateAuthority" +"Identity.DirectoryManagement","NewMgDirectoryRecoveryJob.g.cs","v1.0","New-MgDirectoryRecoveryJob","POST","/directory/recovery/jobs","matched","New-MgDirectoryRecoveryJob" +"Identity.DirectoryManagement","NewMgDirectoryRecoverySnapshot.g.cs","v1.0","New-MgDirectoryRecoverySnapshot","POST","/directory/recovery/snapshots","matched","New-MgDirectoryRecoverySnapshot" +"Identity.DirectoryManagement","NewMgDirectoryRole.g.cs","v1.0","New-MgDirectoryRole","POST","/directoryRoles","matched","New-MgDirectoryRole" +"Identity.DirectoryManagement","NewMgDirectoryRoleMemberByRef.g.cs","v1.0","New-MgDirectoryRoleMemberByRef","POST","/directoryRoles/{param}/members/$ref","matched","New-MgDirectoryRoleMemberByRef" +"Identity.DirectoryManagement","NewMgDirectoryRoleScopedMember.g.cs","v1.0","New-MgDirectoryRoleScopedMember","POST","/directoryRoles/{param}/scopedMembers","matched","New-MgDirectoryRoleScopedMember" +"Identity.DirectoryManagement","NewMgDirectoryRoleTemplate.g.cs","v1.0","New-MgDirectoryRoleTemplate","POST","/directoryRoleTemplates","matched","New-MgDirectoryRoleTemplate" +"Identity.DirectoryManagement","NewMgDirectorySubscription.g.cs","v1.0","New-MgDirectorySubscription","POST","/directory/subscriptions","matched","New-MgDirectorySubscription" +"Identity.DirectoryManagement","NewMgDomain.g.cs","v1.0","New-MgDomain","POST","/domains","matched","New-MgDomain" +"Identity.DirectoryManagement","NewMgDomainFederationConfiguration.g.cs","v1.0","New-MgDomainFederationConfiguration","POST","/domains/{param}/federationConfiguration","matched","New-MgDomainFederationConfiguration" +"Identity.DirectoryManagement","NewMgDomainServiceConfigurationRecord.g.cs","v1.0","New-MgDomainServiceConfigurationRecord","POST","/domains/{param}/serviceConfigurationRecords","matched","New-MgDomainServiceConfigurationRecord" +"Identity.DirectoryManagement","NewMgDomainVerificationDnsRecord.g.cs","v1.0","New-MgDomainVerificationDnsRecord","POST","/domains/{param}/verificationDnsRecords","matched","New-MgDomainVerificationDnsRecord" +"Identity.DirectoryManagement","NewMgOrganization.g.cs","v1.0","New-MgOrganization","POST","/organization","matched","New-MgOrganization" +"Identity.DirectoryManagement","NewMgOrganizationBrandingLocalization.g.cs","v1.0","New-MgOrganizationBrandingLocalization","POST","/organization/{param}/branding/localizations","matched","New-MgOrganizationBrandingLocalization" +"Identity.DirectoryManagement","NewMgOrganizationExtension.g.cs","v1.0","New-MgOrganizationExtension","POST","/organization/{param}/extensions","matched","New-MgOrganizationExtension" +"Identity.DirectoryManagement","NewMgSubscribedSku.g.cs","v1.0","New-MgSubscribedSku","POST","/subscribedSkus","matched","New-MgSubscribedSku" +"Identity.DirectoryManagement","NewMgUserScopedRoleMemberOf.g.cs","v1.0","New-MgUserScopedRoleMemberOf","POST","/users/{param}/scopedRoleMemberOf","matched","New-MgUserScopedRoleMemberOf" +"Identity.DirectoryManagement","RemoveMgAdminPeopleItemInsight.g.cs","v1.0","Remove-MgAdminPeopleItemInsight","DELETE","/admin/people/itemInsights","matched","Remove-MgAdminPeopleItemInsight" +"Identity.DirectoryManagement","RemoveMgAdminPeopleProfileCardProperty.g.cs","v1.0","Remove-MgAdminPeopleProfileCardProperty","DELETE","/admin/people/profileCardProperties/{param}","matched","Remove-MgAdminPeopleProfileCardProperty" +"Identity.DirectoryManagement","RemoveMgAdminPeopleProfilePropertySetting.g.cs","v1.0","Remove-MgAdminPeopleProfilePropertySetting","DELETE","/admin/people/profilePropertySettings/{param}","matched","Remove-MgAdminPeopleProfilePropertySetting" +"Identity.DirectoryManagement","RemoveMgAdminPeopleProfileSource.g.cs","v1.0","Remove-MgAdminPeopleProfileSource","DELETE","/admin/people/profileSources/{param}","matched","Remove-MgAdminPeopleProfileSource" +"Identity.DirectoryManagement","RemoveMgContact.g.cs","v1.0","Remove-MgContact","DELETE","/contacts/{param}","matched","Remove-MgContact" +"Identity.DirectoryManagement","RemoveMgContactOnPremiseSyncBehavior.g.cs","v1.0","Remove-MgContactOnPremiseSyncBehavior","DELETE","/contacts/{param}/onPremisesSyncBehavior","matched","Remove-MgContactOnPremiseSyncBehavior" +"Identity.DirectoryManagement","RemoveMgContract.g.cs","v1.0","Remove-MgContract","DELETE","/contracts/{param}","matched","Remove-MgContract" +"Identity.DirectoryManagement","RemoveMgDevice.g.cs","v1.0","Remove-MgDevice","DELETE","/devices/{param}","matched","Remove-MgDevice" +"Identity.DirectoryManagement","RemoveMgDeviceExtension.g.cs","v1.0","Remove-MgDeviceExtension","DELETE","/devices/{param}/extensions/{param}","matched","Remove-MgDeviceExtension" +"Identity.DirectoryManagement","RemoveMgDeviceRegisteredOwnerByRef.g.cs","v1.0","Remove-MgDeviceRegisteredOwnerByRef","DELETE","/devices/{param}/registeredOwners/{param}/$ref","mismatch","Remove-MgDeviceRegisteredOwnerDirectoryObjectByRef" +"Identity.DirectoryManagement","RemoveMgDeviceRegisteredUserByRef.g.cs","v1.0","Remove-MgDeviceRegisteredUserByRef","DELETE","/devices/{param}/registeredUsers/{param}/$ref","mismatch","Remove-MgDeviceRegisteredUserDirectoryObjectByRef" +"Identity.DirectoryManagement","RemoveMgDirectoryAdministrativeUnit.g.cs","v1.0","Remove-MgDirectoryAdministrativeUnit","DELETE","/directory/administrativeUnits/{param}","matched","Remove-MgDirectoryAdministrativeUnit" +"Identity.DirectoryManagement","RemoveMgDirectoryAdministrativeUnitExtension.g.cs","v1.0","Remove-MgDirectoryAdministrativeUnitExtension","DELETE","/directory/administrativeUnits/{param}/extensions/{param}","matched","Remove-MgDirectoryAdministrativeUnitExtension" +"Identity.DirectoryManagement","RemoveMgDirectoryAdministrativeUnitMemberByRef.g.cs","v1.0","Remove-MgDirectoryAdministrativeUnitMemberByRef","DELETE","/directory/administrativeUnits/{param}/members/{param}/$ref","mismatch","Remove-MgDirectoryAdministrativeUnitMemberDirectoryObjectByRef" +"Identity.DirectoryManagement","RemoveMgDirectoryAdministrativeUnitScopedRoleMember.g.cs","v1.0","Remove-MgDirectoryAdministrativeUnitScopedRoleMember","DELETE","/directory/administrativeUnits/{param}/scopedRoleMembers/{param}","matched","Remove-MgDirectoryAdministrativeUnitScopedRoleMember" +"Identity.DirectoryManagement","RemoveMgDirectoryAttributeSet.g.cs","v1.0","Remove-MgDirectoryAttributeSet","DELETE","/directory/attributeSets/{param}","matched","Remove-MgDirectoryAttributeSet" +"Identity.DirectoryManagement","RemoveMgDirectoryCustomSecurityAttributeDefinition.g.cs","v1.0","Remove-MgDirectoryCustomSecurityAttributeDefinition","DELETE","/directory/customSecurityAttributeDefinitions/{param}","matched","Remove-MgDirectoryCustomSecurityAttributeDefinition" +"Identity.DirectoryManagement","RemoveMgDirectoryCustomSecurityAttributeDefinitionAllowedValue.g.cs","v1.0","Remove-MgDirectoryCustomSecurityAttributeDefinitionAllowedValue","DELETE","/directory/customSecurityAttributeDefinitions/{param}/allowedValues/{param}","matched","Remove-MgDirectoryCustomSecurityAttributeDefinitionAllowedValue" +"Identity.DirectoryManagement","RemoveMgDirectoryDeletedItem.g.cs","v1.0","Remove-MgDirectoryDeletedItem","DELETE","/directory/deletedItems/{param}","matched","Remove-MgDirectoryDeletedItem" +"Identity.DirectoryManagement","RemoveMgDirectoryDeviceLocalCredential.g.cs","v1.0","Remove-MgDirectoryDeviceLocalCredential","DELETE","/directory/deviceLocalCredentials/{param}","matched","Remove-MgDirectoryDeviceLocalCredential" +"Identity.DirectoryManagement","RemoveMgDirectoryFederationConfiguration.g.cs","v1.0","Remove-MgDirectoryFederationConfiguration","DELETE","/directory/federationConfigurations/{param}","matched","Remove-MgDirectoryFederationConfiguration" +"Identity.DirectoryManagement","RemoveMgDirectoryOnPremiseSynchronization.g.cs","v1.0","Remove-MgDirectoryOnPremiseSynchronization","DELETE","/directory/onPremisesSynchronization/{param}","matched","Remove-MgDirectoryOnPremiseSynchronization" +"Identity.DirectoryManagement","RemoveMgDirectoryPublicKeyInfrastructure.g.cs","v1.0","Remove-MgDirectoryPublicKeyInfrastructure","DELETE","/directory/publicKeyInfrastructure","matched","Remove-MgDirectoryPublicKeyInfrastructure" +"Identity.DirectoryManagement","RemoveMgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfiguration.g.cs","v1.0","Remove-MgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfiguration","DELETE","/directory/publicKeyInfrastructure/certificateBasedAuthConfigurations/{param}","matched","Remove-MgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfiguration" +"Identity.DirectoryManagement","RemoveMgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfigurationCertificateAuthority.g.cs","v1.0","Remove-MgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfigurationCertificateAuthority","DELETE","/directory/publicKeyInfrastructure/certificateBasedAuthConfigurations/{param}/certificateAuthorities/{param}","matched","Remove-MgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfigurationCertificateAuthority" +"Identity.DirectoryManagement","RemoveMgDirectoryRecovery.g.cs","v1.0","Remove-MgDirectoryRecovery","DELETE","/directory/recovery","matched","Remove-MgDirectoryRecovery" +"Identity.DirectoryManagement","RemoveMgDirectoryRecoveryJob.g.cs","v1.0","Remove-MgDirectoryRecoveryJob","DELETE","/directory/recovery/jobs/{param}","matched","Remove-MgDirectoryRecoveryJob" +"Identity.DirectoryManagement","RemoveMgDirectoryRecoverySnapshot.g.cs","v1.0","Remove-MgDirectoryRecoverySnapshot","DELETE","/directory/recovery/snapshots/{param}","matched","Remove-MgDirectoryRecoverySnapshot" +"Identity.DirectoryManagement","RemoveMgDirectoryRole.g.cs","v1.0","Remove-MgDirectoryRole","DELETE","/directoryRoles/{param}","matched","Remove-MgDirectoryRole" +"Identity.DirectoryManagement","RemoveMgDirectoryRoleMemberByRef.g.cs","v1.0","Remove-MgDirectoryRoleMemberByRef","DELETE","/directoryRoles/{param}/members/{param}/$ref","mismatch","Remove-MgDirectoryRoleMemberDirectoryObjectByRef" +"Identity.DirectoryManagement","RemoveMgDirectoryRoleScopedMember.g.cs","v1.0","Remove-MgDirectoryRoleScopedMember","DELETE","/directoryRoles/{param}/scopedMembers/{param}","matched","Remove-MgDirectoryRoleScopedMember" +"Identity.DirectoryManagement","RemoveMgDirectoryRoleTemplate.g.cs","v1.0","Remove-MgDirectoryRoleTemplate","DELETE","/directoryRoleTemplates/{param}","matched","Remove-MgDirectoryRoleTemplate" +"Identity.DirectoryManagement","RemoveMgDirectorySubscription.g.cs","v1.0","Remove-MgDirectorySubscription","DELETE","/directory/subscriptions/{param}","matched","Remove-MgDirectorySubscription" +"Identity.DirectoryManagement","RemoveMgDomain.g.cs","v1.0","Remove-MgDomain","DELETE","/domains/{param}","matched","Remove-MgDomain" +"Identity.DirectoryManagement","RemoveMgDomainFederationConfiguration.g.cs","v1.0","Remove-MgDomainFederationConfiguration","DELETE","/domains/{param}/federationConfiguration/{param}","matched","Remove-MgDomainFederationConfiguration" +"Identity.DirectoryManagement","RemoveMgDomainServiceConfigurationRecord.g.cs","v1.0","Remove-MgDomainServiceConfigurationRecord","DELETE","/domains/{param}/serviceConfigurationRecords/{param}","matched","Remove-MgDomainServiceConfigurationRecord" +"Identity.DirectoryManagement","RemoveMgDomainVerificationDnsRecord.g.cs","v1.0","Remove-MgDomainVerificationDnsRecord","DELETE","/domains/{param}/verificationDnsRecords/{param}","matched","Remove-MgDomainVerificationDnsRecord" +"Identity.DirectoryManagement","RemoveMgOrganization.g.cs","v1.0","Remove-MgOrganization","DELETE","/organization/{param}","matched","Remove-MgOrganization" +"Identity.DirectoryManagement","RemoveMgOrganizationBranding.g.cs","v1.0","Remove-MgOrganizationBranding","DELETE","/organization/{param}/branding","matched","Remove-MgOrganizationBranding" +"Identity.DirectoryManagement","RemoveMgOrganizationBrandingBackgroundImage.g.cs","v1.0","Remove-MgOrganizationBrandingBackgroundImage","DELETE","/organization/{param}/branding/backgroundImage","matched","Remove-MgOrganizationBrandingBackgroundImage" +"Identity.DirectoryManagement","RemoveMgOrganizationBrandingBannerLogo.g.cs","v1.0","Remove-MgOrganizationBrandingBannerLogo","DELETE","/organization/{param}/branding/bannerLogo","matched","Remove-MgOrganizationBrandingBannerLogo" +"Identity.DirectoryManagement","RemoveMgOrganizationBrandingCustomCSS.g.cs","v1.0","Remove-MgOrganizationBrandingCustomCSS","DELETE","/organization/{param}/branding/customCSS","mismatch","Remove-MgOrganizationBrandingCustomCss" +"Identity.DirectoryManagement","RemoveMgOrganizationBrandingFavicon.g.cs","v1.0","Remove-MgOrganizationBrandingFavicon","DELETE","/organization/{param}/branding/favicon","matched","Remove-MgOrganizationBrandingFavicon" +"Identity.DirectoryManagement","RemoveMgOrganizationBrandingHeaderLogo.g.cs","v1.0","Remove-MgOrganizationBrandingHeaderLogo","DELETE","/organization/{param}/branding/headerLogo","matched","Remove-MgOrganizationBrandingHeaderLogo" +"Identity.DirectoryManagement","RemoveMgOrganizationBrandingLocalization.g.cs","v1.0","Remove-MgOrganizationBrandingLocalization","DELETE","/organization/{param}/branding/localizations/{param}","matched","Remove-MgOrganizationBrandingLocalization" +"Identity.DirectoryManagement","RemoveMgOrganizationBrandingLocalizationBackgroundImage.g.cs","v1.0","Remove-MgOrganizationBrandingLocalizationBackgroundImage","DELETE","/organization/{param}/branding/localizations/{param}/backgroundImage","matched","Remove-MgOrganizationBrandingLocalizationBackgroundImage" +"Identity.DirectoryManagement","RemoveMgOrganizationBrandingLocalizationBannerLogo.g.cs","v1.0","Remove-MgOrganizationBrandingLocalizationBannerLogo","DELETE","/organization/{param}/branding/localizations/{param}/bannerLogo","matched","Remove-MgOrganizationBrandingLocalizationBannerLogo" +"Identity.DirectoryManagement","RemoveMgOrganizationBrandingLocalizationCustomCSS.g.cs","v1.0","Remove-MgOrganizationBrandingLocalizationCustomCSS","DELETE","/organization/{param}/branding/localizations/{param}/customCSS","mismatch","Remove-MgOrganizationBrandingLocalizationCustomCss" +"Identity.DirectoryManagement","RemoveMgOrganizationBrandingLocalizationFavicon.g.cs","v1.0","Remove-MgOrganizationBrandingLocalizationFavicon","DELETE","/organization/{param}/branding/localizations/{param}/favicon","matched","Remove-MgOrganizationBrandingLocalizationFavicon" +"Identity.DirectoryManagement","RemoveMgOrganizationBrandingLocalizationHeaderLogo.g.cs","v1.0","Remove-MgOrganizationBrandingLocalizationHeaderLogo","DELETE","/organization/{param}/branding/localizations/{param}/headerLogo","matched","Remove-MgOrganizationBrandingLocalizationHeaderLogo" +"Identity.DirectoryManagement","RemoveMgOrganizationBrandingLocalizationSquareLogo.g.cs","v1.0","Remove-MgOrganizationBrandingLocalizationSquareLogo","DELETE","/organization/{param}/branding/localizations/{param}/squareLogo","matched","Remove-MgOrganizationBrandingLocalizationSquareLogo" +"Identity.DirectoryManagement","RemoveMgOrganizationBrandingLocalizationSquareLogoDark.g.cs","v1.0","Remove-MgOrganizationBrandingLocalizationSquareLogoDark","DELETE","/organization/{param}/branding/localizations/{param}/squareLogoDark","matched","Remove-MgOrganizationBrandingLocalizationSquareLogoDark" +"Identity.DirectoryManagement","RemoveMgOrganizationBrandingSquareLogo.g.cs","v1.0","Remove-MgOrganizationBrandingSquareLogo","DELETE","/organization/{param}/branding/squareLogo","matched","Remove-MgOrganizationBrandingSquareLogo" +"Identity.DirectoryManagement","RemoveMgOrganizationBrandingSquareLogoDark.g.cs","v1.0","Remove-MgOrganizationBrandingSquareLogoDark","DELETE","/organization/{param}/branding/squareLogoDark","matched","Remove-MgOrganizationBrandingSquareLogoDark" +"Identity.DirectoryManagement","RemoveMgOrganizationExtension.g.cs","v1.0","Remove-MgOrganizationExtension","DELETE","/organization/{param}/extensions/{param}","matched","Remove-MgOrganizationExtension" +"Identity.DirectoryManagement","RemoveMgSubscribedSku.g.cs","v1.0","Remove-MgSubscribedSku","DELETE","/subscribedSkus/{param}","matched","Remove-MgSubscribedSku" +"Identity.DirectoryManagement","RemoveMgUserScopedRoleMemberOf.g.cs","v1.0","Remove-MgUserScopedRoleMemberOf","DELETE","/users/{param}/scopedRoleMemberOf/{param}","matched","Remove-MgUserScopedRoleMemberOf" +"Identity.DirectoryManagement","UpdateMgAdminPeopleItemInsight.g.cs","v1.0","Update-MgAdminPeopleItemInsight","PATCH","/admin/people/itemInsights","matched","Update-MgAdminPeopleItemInsight" +"Identity.DirectoryManagement","UpdateMgAdminPeopleProfileCardProperty.g.cs","v1.0","Update-MgAdminPeopleProfileCardProperty","PATCH","/admin/people/profileCardProperties/{param}","matched","Update-MgAdminPeopleProfileCardProperty" +"Identity.DirectoryManagement","UpdateMgAdminPeopleProfilePropertySetting.g.cs","v1.0","Update-MgAdminPeopleProfilePropertySetting","PATCH","/admin/people/profilePropertySettings/{param}","matched","Update-MgAdminPeopleProfilePropertySetting" +"Identity.DirectoryManagement","UpdateMgAdminPeopleProfileSource.g.cs","v1.0","Update-MgAdminPeopleProfileSource","PATCH","/admin/people/profileSources/{param}","matched","Update-MgAdminPeopleProfileSource" +"Identity.DirectoryManagement","UpdateMgAdminPeoplePronoun.g.cs","v1.0","Update-MgAdminPeoplePronoun","PATCH","/admin/people/pronouns","matched","Update-MgAdminPeoplePronoun" +"Identity.DirectoryManagement","UpdateMgContact.g.cs","v1.0","Update-MgContact","PATCH","/contacts/{param}","matched","Update-MgContact" +"Identity.DirectoryManagement","UpdateMgContactOnPremiseSyncBehavior.g.cs","v1.0","Update-MgContactOnPremiseSyncBehavior","PATCH","/contacts/{param}/onPremisesSyncBehavior","matched","Update-MgContactOnPremiseSyncBehavior" +"Identity.DirectoryManagement","UpdateMgContract.g.cs","v1.0","Update-MgContract","PATCH","/contracts/{param}","matched","Update-MgContract" +"Identity.DirectoryManagement","UpdateMgDevice.g.cs","v1.0","Update-MgDevice","PATCH","/devices/{param}","matched","Update-MgDevice" +"Identity.DirectoryManagement","UpdateMgDeviceExtension.g.cs","v1.0","Update-MgDeviceExtension","PATCH","/devices/{param}/extensions/{param}","matched","Update-MgDeviceExtension" +"Identity.DirectoryManagement","UpdateMgDirectory.g.cs","v1.0","Update-MgDirectory","PATCH","/directory","matched","Update-MgDirectory" +"Identity.DirectoryManagement","UpdateMgDirectoryAdministrativeUnit.g.cs","v1.0","Update-MgDirectoryAdministrativeUnit","PATCH","/directory/administrativeUnits/{param}","matched","Update-MgDirectoryAdministrativeUnit" +"Identity.DirectoryManagement","UpdateMgDirectoryAdministrativeUnitExtension.g.cs","v1.0","Update-MgDirectoryAdministrativeUnitExtension","PATCH","/directory/administrativeUnits/{param}/extensions/{param}","matched","Update-MgDirectoryAdministrativeUnitExtension" +"Identity.DirectoryManagement","UpdateMgDirectoryAdministrativeUnitScopedRoleMember.g.cs","v1.0","Update-MgDirectoryAdministrativeUnitScopedRoleMember","PATCH","/directory/administrativeUnits/{param}/scopedRoleMembers/{param}","matched","Update-MgDirectoryAdministrativeUnitScopedRoleMember" +"Identity.DirectoryManagement","UpdateMgDirectoryAttributeSet.g.cs","v1.0","Update-MgDirectoryAttributeSet","PATCH","/directory/attributeSets/{param}","matched","Update-MgDirectoryAttributeSet" +"Identity.DirectoryManagement","UpdateMgDirectoryCustomSecurityAttributeDefinition.g.cs","v1.0","Update-MgDirectoryCustomSecurityAttributeDefinition","PATCH","/directory/customSecurityAttributeDefinitions/{param}","matched","Update-MgDirectoryCustomSecurityAttributeDefinition" +"Identity.DirectoryManagement","UpdateMgDirectoryCustomSecurityAttributeDefinitionAllowedValue.g.cs","v1.0","Update-MgDirectoryCustomSecurityAttributeDefinitionAllowedValue","PATCH","/directory/customSecurityAttributeDefinitions/{param}/allowedValues/{param}","matched","Update-MgDirectoryCustomSecurityAttributeDefinitionAllowedValue" +"Identity.DirectoryManagement","UpdateMgDirectoryDeviceLocalCredential.g.cs","v1.0","Update-MgDirectoryDeviceLocalCredential","PATCH","/directory/deviceLocalCredentials/{param}","matched","Update-MgDirectoryDeviceLocalCredential" +"Identity.DirectoryManagement","UpdateMgDirectoryFederationConfiguration.g.cs","v1.0","Update-MgDirectoryFederationConfiguration","PATCH","/directory/federationConfigurations/{param}","matched","Update-MgDirectoryFederationConfiguration" +"Identity.DirectoryManagement","UpdateMgDirectoryOnPremiseSynchronization.g.cs","v1.0","Update-MgDirectoryOnPremiseSynchronization","PATCH","/directory/onPremisesSynchronization/{param}","matched","Update-MgDirectoryOnPremiseSynchronization" +"Identity.DirectoryManagement","UpdateMgDirectoryPublicKeyInfrastructure.g.cs","v1.0","Update-MgDirectoryPublicKeyInfrastructure","PATCH","/directory/publicKeyInfrastructure","matched","Update-MgDirectoryPublicKeyInfrastructure" +"Identity.DirectoryManagement","UpdateMgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfiguration.g.cs","v1.0","Update-MgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfiguration","PATCH","/directory/publicKeyInfrastructure/certificateBasedAuthConfigurations/{param}","matched","Update-MgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfiguration" +"Identity.DirectoryManagement","UpdateMgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfigurationCertificateAuthority.g.cs","v1.0","Update-MgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfigurationCertificateAuthority","PATCH","/directory/publicKeyInfrastructure/certificateBasedAuthConfigurations/{param}/certificateAuthorities/{param}","matched","Update-MgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfigurationCertificateAuthority" +"Identity.DirectoryManagement","UpdateMgDirectoryRecovery.g.cs","v1.0","Update-MgDirectoryRecovery","PATCH","/directory/recovery","matched","Update-MgDirectoryRecovery" +"Identity.DirectoryManagement","UpdateMgDirectoryRecoveryJob.g.cs","v1.0","Update-MgDirectoryRecoveryJob","PATCH","/directory/recovery/jobs/{param}","matched","Update-MgDirectoryRecoveryJob" +"Identity.DirectoryManagement","UpdateMgDirectoryRecoverySnapshot.g.cs","v1.0","Update-MgDirectoryRecoverySnapshot","PATCH","/directory/recovery/snapshots/{param}","matched","Update-MgDirectoryRecoverySnapshot" +"Identity.DirectoryManagement","UpdateMgDirectoryRole.g.cs","v1.0","Update-MgDirectoryRole","PATCH","/directoryRoles/{param}","matched","Update-MgDirectoryRole" +"Identity.DirectoryManagement","UpdateMgDirectoryRoleScopedMember.g.cs","v1.0","Update-MgDirectoryRoleScopedMember","PATCH","/directoryRoles/{param}/scopedMembers/{param}","matched","Update-MgDirectoryRoleScopedMember" +"Identity.DirectoryManagement","UpdateMgDirectoryRoleTemplate.g.cs","v1.0","Update-MgDirectoryRoleTemplate","PATCH","/directoryRoleTemplates/{param}","matched","Update-MgDirectoryRoleTemplate" +"Identity.DirectoryManagement","UpdateMgDirectorySubscription.g.cs","v1.0","Update-MgDirectorySubscription","PATCH","/directory/subscriptions/{param}","matched","Update-MgDirectorySubscription" +"Identity.DirectoryManagement","UpdateMgDomain.g.cs","v1.0","Update-MgDomain","PATCH","/domains/{param}","matched","Update-MgDomain" +"Identity.DirectoryManagement","UpdateMgDomainFederationConfiguration.g.cs","v1.0","Update-MgDomainFederationConfiguration","PATCH","/domains/{param}/federationConfiguration/{param}","matched","Update-MgDomainFederationConfiguration" +"Identity.DirectoryManagement","UpdateMgDomainServiceConfigurationRecord.g.cs","v1.0","Update-MgDomainServiceConfigurationRecord","PATCH","/domains/{param}/serviceConfigurationRecords/{param}","matched","Update-MgDomainServiceConfigurationRecord" +"Identity.DirectoryManagement","UpdateMgDomainVerificationDnsRecord.g.cs","v1.0","Update-MgDomainVerificationDnsRecord","PATCH","/domains/{param}/verificationDnsRecords/{param}","matched","Update-MgDomainVerificationDnsRecord" +"Identity.DirectoryManagement","UpdateMgOrganization.g.cs","v1.0","Update-MgOrganization","PATCH","/organization/{param}","matched","Update-MgOrganization" +"Identity.DirectoryManagement","UpdateMgOrganizationBranding.g.cs","v1.0","Update-MgOrganizationBranding","PATCH","/organization/{param}/branding","matched","Update-MgOrganizationBranding" +"Identity.DirectoryManagement","UpdateMgOrganizationBrandingLocalization.g.cs","v1.0","Update-MgOrganizationBrandingLocalization","PATCH","/organization/{param}/branding/localizations/{param}","matched","Update-MgOrganizationBrandingLocalization" +"Identity.DirectoryManagement","UpdateMgOrganizationExtension.g.cs","v1.0","Update-MgOrganizationExtension","PATCH","/organization/{param}/extensions/{param}","matched","Update-MgOrganizationExtension" +"Identity.DirectoryManagement","UpdateMgSubscribedSku.g.cs","v1.0","Update-MgSubscribedSku","PATCH","/subscribedSkus/{param}","matched","Update-MgSubscribedSku" +"Identity.DirectoryManagement","UpdateMgUserScopedRoleMemberOf.g.cs","v1.0","Update-MgUserScopedRoleMemberOf","PATCH","/users/{param}/scopedRoleMemberOf/{param}","matched","Update-MgUserScopedRoleMemberOf" +"Identity.Governance","GetMgAgreement_Get.g.cs","v1.0","Get-MgAgreement","GET","/agreements/{param}","matched","Get-MgAgreement" +"Identity.Governance","GetMgAgreement_List.g.cs","v1.0","Get-MgAgreement","GET","/agreements","matched","Get-MgAgreement" +"Identity.Governance","GetMgAgreement.g.cs","v1.0","Get-MgAgreement","","","dispatcher","" +"Identity.Governance","GetMgAgreementAcceptance_Get.g.cs","v1.0","Get-MgAgreementAcceptance","GET","/agreements/{param}/acceptances/{param}","matched","Get-MgAgreementAcceptance" +"Identity.Governance","GetMgAgreementAcceptance_List.g.cs","v1.0","Get-MgAgreementAcceptance","GET","/agreements/{param}/acceptances","matched","Get-MgAgreementAcceptance" +"Identity.Governance","GetMgAgreementAcceptance.g.cs","v1.0","Get-MgAgreementAcceptance","","","dispatcher","" +"Identity.Governance","GetMgAgreementAcceptanceCount.g.cs","v1.0","Get-MgAgreementAcceptanceCount","GET","/agreements/{param}/acceptances/$count","matched","Get-MgAgreementAcceptanceCount" +"Identity.Governance","GetMgAgreementFile.g.cs","v1.0","Get-MgAgreementFile","GET","/agreements/{param}/files","matched","Get-MgAgreementFile" +"Identity.Governance","GetMgAgreementFileCount.g.cs","v1.0","Get-MgAgreementFileCount","GET","/agreements/{param}/files/$count","matched","Get-MgAgreementFileCount" +"Identity.Governance","GetMgAgreementFileLocalization_Get.g.cs","v1.0","Get-MgAgreementFileLocalization","GET","/agreements/{param}/file/localizations/{param}","matched","Get-MgAgreementFileLocalization" +"Identity.Governance","GetMgAgreementFileLocalization_List.g.cs","v1.0","Get-MgAgreementFileLocalization","GET","/agreements/{param}/file/localizations","matched","Get-MgAgreementFileLocalization" +"Identity.Governance","GetMgAgreementFileLocalization.g.cs","v1.0","Get-MgAgreementFileLocalization","","","dispatcher","" +"Identity.Governance","GetMgAgreementFileLocalizationCount.g.cs","v1.0","Get-MgAgreementFileLocalizationCount","GET","/agreements/{param}/file/localizations/$count","matched","Get-MgAgreementFileLocalizationCount" +"Identity.Governance","GetMgAgreementFileLocalizationVersion_Get.g.cs","v1.0","Get-MgAgreementFileLocalizationVersion","GET","/agreements/{param}/file/localizations/{param}/versions/{param}","matched","Get-MgAgreementFileLocalizationVersion" +"Identity.Governance","GetMgAgreementFileLocalizationVersion_List.g.cs","v1.0","Get-MgAgreementFileLocalizationVersion","GET","/agreements/{param}/file/localizations/{param}/versions","matched","Get-MgAgreementFileLocalizationVersion" +"Identity.Governance","GetMgAgreementFileLocalizationVersion.g.cs","v1.0","Get-MgAgreementFileLocalizationVersion","","","dispatcher","" +"Identity.Governance","GetMgAgreementFileLocalizationVersionCount.g.cs","v1.0","Get-MgAgreementFileLocalizationVersionCount","GET","/agreements/{param}/file/localizations/{param}/versions/$count","matched","Get-MgAgreementFileLocalizationVersionCount" +"Identity.Governance","GetMgAgreementFileVersion_Get.g.cs","v1.0","Get-MgAgreementFileVersion","GET","/agreements/{param}/files/{param}/versions/{param}","matched","Get-MgAgreementFileVersion" +"Identity.Governance","GetMgAgreementFileVersion_List.g.cs","v1.0","Get-MgAgreementFileVersion","GET","/agreements/{param}/files/{param}/versions","matched","Get-MgAgreementFileVersion" +"Identity.Governance","GetMgAgreementFileVersion.g.cs","v1.0","Get-MgAgreementFileVersion","","","dispatcher","" +"Identity.Governance","GetMgAgreementFileVersionCount.g.cs","v1.0","Get-MgAgreementFileVersionCount","GET","/agreements/{param}/files/{param}/versions/$count","matched","Get-MgAgreementFileVersionCount" +"Identity.Governance","GetMgIdentityGovernance.g.cs","v1.0","Get-MgIdentityGovernance","GET","/identityGovernance","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceAccessReview.g.cs","v1.0","Get-MgIdentityGovernanceAccessReview","GET","/identityGovernance/accessReviews","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceAccessReviewDefinition_Get.g.cs","v1.0","Get-MgIdentityGovernanceAccessReviewDefinition","GET","/identityGovernance/accessReviews/definitions/{param}","matched","Get-MgIdentityGovernanceAccessReviewDefinition" +"Identity.Governance","GetMgIdentityGovernanceAccessReviewDefinition_List.g.cs","v1.0","Get-MgIdentityGovernanceAccessReviewDefinition","GET","/identityGovernance/accessReviews/definitions","matched","Get-MgIdentityGovernanceAccessReviewDefinition" +"Identity.Governance","GetMgIdentityGovernanceAccessReviewDefinition.g.cs","v1.0","Get-MgIdentityGovernanceAccessReviewDefinition","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceAccessReviewDefinitionCount.g.cs","v1.0","Get-MgIdentityGovernanceAccessReviewDefinitionCount","GET","/identityGovernance/accessReviews/definitions/$count","matched","Get-MgIdentityGovernanceAccessReviewDefinitionCount" +"Identity.Governance","GetMgIdentityGovernanceAccessReviewDefinitionFilterByCurrentUserWithOn.g.cs","v1.0","Get-MgIdentityGovernanceAccessReviewDefinitionFilterByCurrentUserWithOn","","","parameterized-function","" +"Identity.Governance","GetMgIdentityGovernanceAccessReviewDefinitionInstance_Get.g.cs","v1.0","Get-MgIdentityGovernanceAccessReviewDefinitionInstance","GET","/identityGovernance/accessReviews/definitions/{param}/instances/{param}","matched","Get-MgIdentityGovernanceAccessReviewDefinitionInstance" +"Identity.Governance","GetMgIdentityGovernanceAccessReviewDefinitionInstance_List.g.cs","v1.0","Get-MgIdentityGovernanceAccessReviewDefinitionInstance","GET","/identityGovernance/accessReviews/definitions/{param}/instances","matched","Get-MgIdentityGovernanceAccessReviewDefinitionInstance" +"Identity.Governance","GetMgIdentityGovernanceAccessReviewDefinitionInstance.g.cs","v1.0","Get-MgIdentityGovernanceAccessReviewDefinitionInstance","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewer_Get.g.cs","v1.0","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewer","GET","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/contactedReviewers/{param}","matched","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewer" +"Identity.Governance","GetMgIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewer_List.g.cs","v1.0","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewer","GET","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/contactedReviewers","matched","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewer" +"Identity.Governance","GetMgIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewer.g.cs","v1.0","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewer","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewerCount.g.cs","v1.0","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewerCount","GET","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/contactedReviewers/$count","matched","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewerCount" +"Identity.Governance","GetMgIdentityGovernanceAccessReviewDefinitionInstanceCount.g.cs","v1.0","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceCount","GET","/identityGovernance/accessReviews/definitions/{param}/instances/$count","matched","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceCount" +"Identity.Governance","GetMgIdentityGovernanceAccessReviewDefinitionInstanceDecision_Get.g.cs","v1.0","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision","GET","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/decisions/{param}","matched","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision" +"Identity.Governance","GetMgIdentityGovernanceAccessReviewDefinitionInstanceDecision_List.g.cs","v1.0","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision","GET","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/decisions","matched","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision" +"Identity.Governance","GetMgIdentityGovernanceAccessReviewDefinitionInstanceDecision.g.cs","v1.0","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceAccessReviewDefinitionInstanceDecisionCount.g.cs","v1.0","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceDecisionCount","GET","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/decisions/$count","matched","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceDecisionCount" +"Identity.Governance","GetMgIdentityGovernanceAccessReviewDefinitionInstanceDecisionFilterByCurrentUserWithOn.g.cs","v1.0","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceDecisionFilterByCurrentUserWithOn","","","parameterized-function","" +"Identity.Governance","GetMgIdentityGovernanceAccessReviewDefinitionInstanceDecisionInsight_Get.g.cs","v1.0","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceDecisionInsight","GET","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/decisions/{param}/insights/{param}","matched","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceDecisionInsight" +"Identity.Governance","GetMgIdentityGovernanceAccessReviewDefinitionInstanceDecisionInsight_List.g.cs","v1.0","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceDecisionInsight","GET","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/decisions/{param}/insights","matched","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceDecisionInsight" +"Identity.Governance","GetMgIdentityGovernanceAccessReviewDefinitionInstanceDecisionInsight.g.cs","v1.0","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceDecisionInsight","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceAccessReviewDefinitionInstanceDecisionInsightCount.g.cs","v1.0","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceDecisionInsightCount","GET","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/decisions/{param}/insights/$count","matched","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceDecisionInsightCount" +"Identity.Governance","GetMgIdentityGovernanceAccessReviewDefinitionInstanceFilterByCurrentUserWithOn.g.cs","v1.0","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceFilterByCurrentUserWithOn","","","parameterized-function","" +"Identity.Governance","GetMgIdentityGovernanceAccessReviewDefinitionInstanceStage_Get.g.cs","v1.0","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStage","GET","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/stages/{param}","matched","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStage" +"Identity.Governance","GetMgIdentityGovernanceAccessReviewDefinitionInstanceStage_List.g.cs","v1.0","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStage","GET","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/stages","matched","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStage" +"Identity.Governance","GetMgIdentityGovernanceAccessReviewDefinitionInstanceStage.g.cs","v1.0","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStage","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceAccessReviewDefinitionInstanceStageCount.g.cs","v1.0","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageCount","GET","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/stages/$count","matched","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageCount" +"Identity.Governance","GetMgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision_Get.g.cs","v1.0","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision","GET","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/stages/{param}/decisions/{param}","matched","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision" +"Identity.Governance","GetMgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision_List.g.cs","v1.0","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision","GET","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/stages/{param}/decisions","matched","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision" +"Identity.Governance","GetMgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision.g.cs","v1.0","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionCount.g.cs","v1.0","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionCount","GET","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/stages/{param}/decisions/$count","matched","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionCount" +"Identity.Governance","GetMgIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionFilterByCurrentUserWithOn.g.cs","v1.0","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionFilterByCurrentUserWithOn","","","parameterized-function","" +"Identity.Governance","GetMgIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionInsight_Get.g.cs","v1.0","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionInsight","GET","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/stages/{param}/decisions/{param}/insights/{param}","matched","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionInsight" +"Identity.Governance","GetMgIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionInsight_List.g.cs","v1.0","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionInsight","GET","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/stages/{param}/decisions/{param}/insights","matched","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionInsight" +"Identity.Governance","GetMgIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionInsight.g.cs","v1.0","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionInsight","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionInsightCount.g.cs","v1.0","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionInsightCount","GET","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/stages/{param}/decisions/{param}/insights/$count","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceAccessReviewDefinitionInstanceStageFilterByCurrentUserWithOn.g.cs","v1.0","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageFilterByCurrentUserWithOn","","","parameterized-function","" +"Identity.Governance","GetMgIdentityGovernanceAccessReviewHistoryDefinition_Get.g.cs","v1.0","Get-MgIdentityGovernanceAccessReviewHistoryDefinition","GET","/identityGovernance/accessReviews/historyDefinitions/{param}","matched","Get-MgIdentityGovernanceAccessReviewHistoryDefinition" +"Identity.Governance","GetMgIdentityGovernanceAccessReviewHistoryDefinition_List.g.cs","v1.0","Get-MgIdentityGovernanceAccessReviewHistoryDefinition","GET","/identityGovernance/accessReviews/historyDefinitions","matched","Get-MgIdentityGovernanceAccessReviewHistoryDefinition" +"Identity.Governance","GetMgIdentityGovernanceAccessReviewHistoryDefinition.g.cs","v1.0","Get-MgIdentityGovernanceAccessReviewHistoryDefinition","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceAccessReviewHistoryDefinitionCount.g.cs","v1.0","Get-MgIdentityGovernanceAccessReviewHistoryDefinitionCount","GET","/identityGovernance/accessReviews/historyDefinitions/$count","matched","Get-MgIdentityGovernanceAccessReviewHistoryDefinitionCount" +"Identity.Governance","GetMgIdentityGovernanceAccessReviewHistoryDefinitionInstance_Get.g.cs","v1.0","Get-MgIdentityGovernanceAccessReviewHistoryDefinitionInstance","GET","/identityGovernance/accessReviews/historyDefinitions/{param}/instances/{param}","matched","Get-MgIdentityGovernanceAccessReviewHistoryDefinitionInstance" +"Identity.Governance","GetMgIdentityGovernanceAccessReviewHistoryDefinitionInstance_List.g.cs","v1.0","Get-MgIdentityGovernanceAccessReviewHistoryDefinitionInstance","GET","/identityGovernance/accessReviews/historyDefinitions/{param}/instances","matched","Get-MgIdentityGovernanceAccessReviewHistoryDefinitionInstance" +"Identity.Governance","GetMgIdentityGovernanceAccessReviewHistoryDefinitionInstance.g.cs","v1.0","Get-MgIdentityGovernanceAccessReviewHistoryDefinitionInstance","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceAccessReviewHistoryDefinitionInstanceCount.g.cs","v1.0","Get-MgIdentityGovernanceAccessReviewHistoryDefinitionInstanceCount","GET","/identityGovernance/accessReviews/historyDefinitions/{param}/instances/$count","matched","Get-MgIdentityGovernanceAccessReviewHistoryDefinitionInstanceCount" +"Identity.Governance","GetMgIdentityGovernanceAppConsent.g.cs","v1.0","Get-MgIdentityGovernanceAppConsent","GET","/identityGovernance/appConsent","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceAppConsentAppConsentRequest_Get.g.cs","v1.0","Get-MgIdentityGovernanceAppConsentAppConsentRequest","GET","/identityGovernance/appConsent/appConsentRequests/{param}","mismatch","Get-MgIdentityGovernanceAppConsentRequest" +"Identity.Governance","GetMgIdentityGovernanceAppConsentAppConsentRequest_List.g.cs","v1.0","Get-MgIdentityGovernanceAppConsentAppConsentRequest","GET","/identityGovernance/appConsent/appConsentRequests","mismatch","Get-MgIdentityGovernanceAppConsentRequest" +"Identity.Governance","GetMgIdentityGovernanceAppConsentAppConsentRequest.g.cs","v1.0","Get-MgIdentityGovernanceAppConsentAppConsentRequest","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceAppConsentAppConsentRequestCount.g.cs","v1.0","Get-MgIdentityGovernanceAppConsentAppConsentRequestCount","GET","/identityGovernance/appConsent/appConsentRequests/$count","mismatch","Get-MgIdentityGovernanceAppConsentRequestCount" +"Identity.Governance","GetMgIdentityGovernanceAppConsentAppConsentRequestFilterByCurrentUserWithOn.g.cs","v1.0","Get-MgIdentityGovernanceAppConsentAppConsentRequestFilterByCurrentUserWithOn","","","parameterized-function","" +"Identity.Governance","GetMgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequest_Get.g.cs","v1.0","Get-MgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequest","GET","/identityGovernance/appConsent/appConsentRequests/{param}/userConsentRequests/{param}","mismatch","Get-MgIdentityGovernanceAppConsentRequestUserConsentRequest" +"Identity.Governance","GetMgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequest_List.g.cs","v1.0","Get-MgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequest","GET","/identityGovernance/appConsent/appConsentRequests/{param}/userConsentRequests","mismatch","Get-MgIdentityGovernanceAppConsentRequestUserConsentRequest" +"Identity.Governance","GetMgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequest.g.cs","v1.0","Get-MgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequest","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequestApproval.g.cs","v1.0","Get-MgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequestApproval","GET","/identityGovernance/appConsent/appConsentRequests/{param}/userConsentRequests/{param}/approval","mismatch","Get-MgIdentityGovernanceAppConsentRequestUserConsentRequestApproval" +"Identity.Governance","GetMgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequestApprovalStage_Get.g.cs","v1.0","Get-MgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequestApprovalStage","GET","/identityGovernance/appConsent/appConsentRequests/{param}/userConsentRequests/{param}/approval/stages/{param}","mismatch","Get-MgIdentityGovernanceAppConsentRequestUserConsentRequestApprovalStage" +"Identity.Governance","GetMgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequestApprovalStage_List.g.cs","v1.0","Get-MgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequestApprovalStage","GET","/identityGovernance/appConsent/appConsentRequests/{param}/userConsentRequests/{param}/approval/stages","mismatch","Get-MgIdentityGovernanceAppConsentRequestUserConsentRequestApprovalStage" +"Identity.Governance","GetMgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequestApprovalStage.g.cs","v1.0","Get-MgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequestApprovalStage","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequestApprovalStageCount.g.cs","v1.0","Get-MgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequestApprovalStageCount","GET","/identityGovernance/appConsent/appConsentRequests/{param}/userConsentRequests/{param}/approval/stages/$count","mismatch","Get-MgIdentityGovernanceAppConsentRequestUserConsentRequestApprovalStageCount" +"Identity.Governance","GetMgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequestCount.g.cs","v1.0","Get-MgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequestCount","GET","/identityGovernance/appConsent/appConsentRequests/{param}/userConsentRequests/$count","mismatch","Get-MgIdentityGovernanceAppConsentRequestUserConsentRequestCount" +"Identity.Governance","GetMgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequestFilterByCurrentUserWithOn.g.cs","v1.0","Get-MgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequestFilterByCurrentUserWithOn","","","parameterized-function","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagement.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagement","GET","/identityGovernance/entitlementManagement","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAccessPackage_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackage","GET","/identityGovernance/entitlementManagement/accessPackages/{param}","mismatch","Get-MgEntitlementManagementAccessPackage" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAccessPackage_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackage","GET","/identityGovernance/entitlementManagement/accessPackages","mismatch","Get-MgEntitlementManagementAccessPackage" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAccessPackage.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackage","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAccessPackageAccessPackageIncompatibleWith_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageAccessPackageIncompatibleWith","GET","/identityGovernance/entitlementManagement/accessPackages/{param}/accessPackagesIncompatibleWith/{param}","mismatch","Get-MgEntitlementManagementAccessPackageIncompatibleWith" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAccessPackageAccessPackageIncompatibleWith_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageAccessPackageIncompatibleWith","GET","/identityGovernance/entitlementManagement/accessPackages/{param}/accessPackagesIncompatibleWith","mismatch","Get-MgEntitlementManagementAccessPackageIncompatibleWith" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAccessPackageAccessPackageIncompatibleWith.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageAccessPackageIncompatibleWith","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAccessPackageAccessPackageIncompatibleWithCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageAccessPackageIncompatibleWithCount","GET","/identityGovernance/entitlementManagement/accessPackages/{param}/accessPackagesIncompatibleWith/$count","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAccessPackageAssignmentApproval_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentApproval","GET","/identityGovernance/entitlementManagement/accessPackageAssignmentApprovals/{param}","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAccessPackageAssignmentApproval_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentApproval","GET","/identityGovernance/entitlementManagement/accessPackageAssignmentApprovals","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAccessPackageAssignmentApproval.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentApproval","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAccessPackageAssignmentApprovalCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentApprovalCount","GET","/identityGovernance/entitlementManagement/accessPackageAssignmentApprovals/$count","mismatch","Get-MgEntitlementManagementAccessPackageAssignmentApprovalCount" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAccessPackageAssignmentApprovalFilterByCurrentUserWithOn.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentApprovalFilterByCurrentUserWithOn","","","parameterized-function","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAccessPackageAssignmentApprovalStage_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentApprovalStage","GET","/identityGovernance/entitlementManagement/accessPackageAssignmentApprovals/{param}/stages/{param}","mismatch","Get-MgEntitlementManagementAccessPackageAssignmentApprovalStage" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAccessPackageAssignmentApprovalStage_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentApprovalStage","GET","/identityGovernance/entitlementManagement/accessPackageAssignmentApprovals/{param}/stages","mismatch","Get-MgEntitlementManagementAccessPackageAssignmentApprovalStage" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAccessPackageAssignmentApprovalStage.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentApprovalStage","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAccessPackageAssignmentApprovalStageCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentApprovalStageCount","GET","/identityGovernance/entitlementManagement/accessPackageAssignmentApprovals/{param}/stages/$count","mismatch","Get-MgEntitlementManagementAccessPackageAssignmentApprovalStageCount" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicy_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicy","GET","/identityGovernance/entitlementManagement/accessPackages/{param}/assignmentPolicies/{param}","mismatch","Get-MgEntitlementManagementAccessPackageAssignmentPolicy" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicy_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicy","GET","/identityGovernance/entitlementManagement/accessPackages/{param}/assignmentPolicies","mismatch","Get-MgEntitlementManagementAccessPackageAssignmentPolicy" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicy.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicy","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyAccessPackage.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyAccessPackage","GET","/identityGovernance/entitlementManagement/accessPackages/{param}/assignmentPolicies/{param}/accessPackage","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyCatalog.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyCatalog","GET","/identityGovernance/entitlementManagement/accessPackages/{param}/assignmentPolicies/{param}/catalog","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyCount","GET","/identityGovernance/entitlementManagement/accessPackages/{param}/assignmentPolicies/$count","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyCustomExtensionStageSetting_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyCustomExtensionStageSetting","GET","/identityGovernance/entitlementManagement/accessPackages/{param}/assignmentPolicies/{param}/customExtensionStageSettings/{param}","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyCustomExtensionStageSetting_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyCustomExtensionStageSetting","GET","/identityGovernance/entitlementManagement/accessPackages/{param}/assignmentPolicies/{param}/customExtensionStageSettings","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyCustomExtensionStageSetting.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyCustomExtensionStageSetting","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyCustomExtensionStageSettingCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyCustomExtensionStageSettingCount","GET","/identityGovernance/entitlementManagement/accessPackages/{param}/assignmentPolicies/{param}/customExtensionStageSettings/$count","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyCustomExtensionStageSettingCustomExtension.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyCustomExtensionStageSettingCustomExtension","GET","/identityGovernance/entitlementManagement/accessPackages/{param}/assignmentPolicies/{param}/customExtensionStageSettings/{param}/customExtension","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyQuestion_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyQuestion","GET","/identityGovernance/entitlementManagement/accessPackages/{param}/assignmentPolicies/{param}/questions/{param}","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyQuestion_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyQuestion","GET","/identityGovernance/entitlementManagement/accessPackages/{param}/assignmentPolicies/{param}/questions","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyQuestion.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyQuestion","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyQuestionCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyQuestionCount","GET","/identityGovernance/entitlementManagement/accessPackages/{param}/assignmentPolicies/{param}/questions/$count","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAccessPackageCatalog.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageCatalog","GET","/identityGovernance/entitlementManagement/accessPackages/{param}/catalog","mismatch","Get-MgEntitlementManagementAccessPackageCatalog" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAccessPackageCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageCount","GET","/identityGovernance/entitlementManagement/accessPackages/$count","mismatch","Get-MgEntitlementManagementAccessPackageCount" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAccessPackageFilterByCurrentUserWithOn.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageFilterByCurrentUserWithOn","","","parameterized-function","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAccessPackageIncompatibleAccessPackage.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageIncompatibleAccessPackage","GET","/identityGovernance/entitlementManagement/accessPackages/{param}/incompatibleAccessPackages","mismatch","Get-MgEntitlementManagementAccessPackageIncompatibleAccessPackage" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAccessPackageIncompatibleAccessPackageByRef.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageIncompatibleAccessPackageByRef","GET","/identityGovernance/entitlementManagement/accessPackages/{param}/incompatibleAccessPackages/$ref","mismatch","Get-MgEntitlementManagementAccessPackageIncompatibleAccessPackageByRef" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAccessPackageIncompatibleAccessPackageCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageIncompatibleAccessPackageCount","GET","/identityGovernance/entitlementManagement/accessPackages/{param}/incompatibleAccessPackages/$count","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAccessPackageIncompatibleGroup.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageIncompatibleGroup","GET","/identityGovernance/entitlementManagement/accessPackages/{param}/incompatibleGroups","mismatch","Get-MgEntitlementManagementAccessPackageIncompatibleGroup" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAccessPackageIncompatibleGroupByRef.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageIncompatibleGroupByRef","GET","/identityGovernance/entitlementManagement/accessPackages/{param}/incompatibleGroups/$ref","mismatch","Get-MgEntitlementManagementAccessPackageIncompatibleGroupByRef" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAccessPackageIncompatibleGroupCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageIncompatibleGroupCount","GET","/identityGovernance/entitlementManagement/accessPackages/{param}/incompatibleGroups/$count","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAccessPackageIncompatibleGroupServiceProvisioningError.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageIncompatibleGroupServiceProvisioningError","GET","/identityGovernance/entitlementManagement/accessPackages/{param}/incompatibleGroups/{param}/serviceProvisioningErrors","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAccessPackageIncompatibleGroupServiceProvisioningErrorCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageIncompatibleGroupServiceProvisioningErrorCount","GET","/identityGovernance/entitlementManagement/accessPackages/{param}/incompatibleGroups/{param}/serviceProvisioningErrors/$count","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScope_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScope","GET","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScope_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScope","GET","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScope.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScope","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeCount","GET","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/$count","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResource.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResource","GET","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceEnvironment.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceEnvironment","GET","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/environment","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRole_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRole","GET","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/roles/{param}","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRole_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRole","GET","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/roles","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRole.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRole","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRoleCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRoleCount","GET","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/roles/$count","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRoleResource.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRoleResource","GET","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/roles/{param}/resource","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRoleResourceEnvironment.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRoleResourceEnvironment","GET","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/roles/{param}/resource/environment","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRoleResourceScope_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRoleResourceScope","GET","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/roles/{param}/resource/scopes/{param}","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRoleResourceScope_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRoleResourceScope","GET","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/roles/{param}/resource/scopes","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRoleResourceScope.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRoleResourceScope","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRoleResourceScopeCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRoleResourceScopeCount","GET","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/roles/{param}/resource/scopes/$count","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceScope_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceScope","GET","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/scopes/{param}","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceScope_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceScope","GET","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/scopes","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceScope.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceScope","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceScopeCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceScopeCount","GET","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/scopes/$count","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRole.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRole","GET","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResource.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResource","GET","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceEnvironment.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceEnvironment","GET","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/environment","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceRole_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceRole","GET","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/roles/{param}","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceRole_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceRole","GET","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/roles","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceRole.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceRole","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceRoleCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceRoleCount","GET","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/roles/$count","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScope_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScope","GET","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/scopes/{param}","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScope_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScope","GET","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/scopes","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScope.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScope","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScopeCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScopeCount","GET","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/scopes/$count","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScopeResource.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScopeResource","GET","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/scopes/{param}/resource","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScopeResourceEnvironment.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScopeResourceEnvironment","GET","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/scopes/{param}/resource/environment","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScopeResourceRole_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScopeResourceRole","GET","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/scopes/{param}/resource/roles/{param}","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScopeResourceRole_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScopeResourceRole","GET","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/scopes/{param}/resource/roles","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScopeResourceRole.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScopeResourceRole","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScopeResourceRoleCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScopeResourceRoleCount","GET","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/scopes/{param}/resource/roles/$count","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAccessPackageSuggestion_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageSuggestion","GET","/identityGovernance/entitlementManagement/accessPackageSuggestions/{param}","mismatch","Get-MgEntitlementManagementAccessPackageSuggestion" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAccessPackageSuggestion_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageSuggestion","GET","/identityGovernance/entitlementManagement/accessPackageSuggestions","mismatch","Get-MgEntitlementManagementAccessPackageSuggestion" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAccessPackageSuggestion.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageSuggestion","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAccessPackageSuggestionAccessPackage.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageSuggestionAccessPackage","GET","/identityGovernance/entitlementManagement/accessPackageSuggestions/{param}/accessPackage","mismatch","Get-MgEntitlementManagementAccessPackageSuggestionAccessPackage" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAccessPackageSuggestionCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageSuggestionCount","GET","/identityGovernance/entitlementManagement/accessPackageSuggestions/$count","mismatch","Get-MgEntitlementManagementAccessPackageSuggestionCount" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAccessPackageSuggestionFilterByCurrentUserWithOn.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAccessPackageSuggestionFilterByCurrentUserWithOn","","","parameterized-function","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAssignment_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAssignment","GET","/identityGovernance/entitlementManagement/assignments/{param}","mismatch","Get-MgEntitlementManagementAssignment" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAssignment_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAssignment","GET","/identityGovernance/entitlementManagement/assignments","mismatch","Get-MgEntitlementManagementAssignment" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAssignment.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAssignment","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAssignmentAccessPackage.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAssignmentAccessPackage","GET","/identityGovernance/entitlementManagement/assignments/{param}/accessPackage","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAssignmentAdditionalAccess.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAssignmentAdditionalAccess","GET","/identityGovernance/entitlementManagement/assignments/additionalAccess","mismatch","Get-MgEntitlementManagementAssignmentAdditional" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAssignmentAdditionalAccessWithAccessPackageIdWithIncompatibleAccessPackageId.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAssignmentAdditionalAccessWithAccessPackageIdWithIncompatibleAccessPackageId","","","parameterized-function","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAssignmentCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAssignmentCount","GET","/identityGovernance/entitlementManagement/assignments/$count","mismatch","Get-MgEntitlementManagementAssignmentCount" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAssignmentFilterByCurrentUserWithOn.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAssignmentFilterByCurrentUserWithOn","","","parameterized-function","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAssignmentPolicy_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAssignmentPolicy","GET","/identityGovernance/entitlementManagement/assignmentPolicies/{param}","mismatch","Get-MgEntitlementManagementAssignmentPolicy" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAssignmentPolicy_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAssignmentPolicy","GET","/identityGovernance/entitlementManagement/assignmentPolicies","mismatch","Get-MgEntitlementManagementAssignmentPolicy" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAssignmentPolicy.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAssignmentPolicy","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAssignmentPolicyAccessPackage.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAssignmentPolicyAccessPackage","GET","/identityGovernance/entitlementManagement/assignmentPolicies/{param}/accessPackage","mismatch","Get-MgEntitlementManagementAssignmentPolicyAccessPackage" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAssignmentPolicyCatalog.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAssignmentPolicyCatalog","GET","/identityGovernance/entitlementManagement/assignmentPolicies/{param}/catalog","mismatch","Get-MgEntitlementManagementAssignmentPolicyCatalog" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAssignmentPolicyCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAssignmentPolicyCount","GET","/identityGovernance/entitlementManagement/assignmentPolicies/$count","mismatch","Get-MgEntitlementManagementAssignmentPolicyCount" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAssignmentPolicyCustomExtensionStageSetting_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAssignmentPolicyCustomExtensionStageSetting","GET","/identityGovernance/entitlementManagement/assignmentPolicies/{param}/customExtensionStageSettings/{param}","mismatch","Get-MgEntitlementManagementAssignmentPolicyCustomExtensionStageSetting" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAssignmentPolicyCustomExtensionStageSetting_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAssignmentPolicyCustomExtensionStageSetting","GET","/identityGovernance/entitlementManagement/assignmentPolicies/{param}/customExtensionStageSettings","mismatch","Get-MgEntitlementManagementAssignmentPolicyCustomExtensionStageSetting" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAssignmentPolicyCustomExtensionStageSetting.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAssignmentPolicyCustomExtensionStageSetting","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAssignmentPolicyCustomExtensionStageSettingCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAssignmentPolicyCustomExtensionStageSettingCount","GET","/identityGovernance/entitlementManagement/assignmentPolicies/{param}/customExtensionStageSettings/$count","mismatch","Get-MgEntitlementManagementAssignmentPolicyCustomExtensionStageSettingCount" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAssignmentPolicyCustomExtensionStageSettingCustomExtension.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAssignmentPolicyCustomExtensionStageSettingCustomExtension","GET","/identityGovernance/entitlementManagement/assignmentPolicies/{param}/customExtensionStageSettings/{param}/customExtension","mismatch","Get-MgEntitlementManagementAssignmentPolicyCustomExtensionStageSettingCustomExtension" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAssignmentPolicyQuestion_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAssignmentPolicyQuestion","GET","/identityGovernance/entitlementManagement/assignmentPolicies/{param}/questions/{param}","mismatch","Get-MgEntitlementManagementAssignmentPolicyQuestion" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAssignmentPolicyQuestion_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAssignmentPolicyQuestion","GET","/identityGovernance/entitlementManagement/assignmentPolicies/{param}/questions","mismatch","Get-MgEntitlementManagementAssignmentPolicyQuestion" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAssignmentPolicyQuestion.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAssignmentPolicyQuestion","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAssignmentPolicyQuestionCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAssignmentPolicyQuestionCount","GET","/identityGovernance/entitlementManagement/assignmentPolicies/{param}/questions/$count","mismatch","Get-MgEntitlementManagementAssignmentPolicyQuestionCount" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAssignmentRequest_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAssignmentRequest","GET","/identityGovernance/entitlementManagement/assignmentRequests/{param}","mismatch","Get-MgEntitlementManagementAssignmentRequest" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAssignmentRequest_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAssignmentRequest","GET","/identityGovernance/entitlementManagement/assignmentRequests","mismatch","Get-MgEntitlementManagementAssignmentRequest" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAssignmentRequest.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAssignmentRequest","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAssignmentRequestAccessPackage.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAssignmentRequestAccessPackage","GET","/identityGovernance/entitlementManagement/assignmentRequests/{param}/accessPackage","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAssignmentRequestAssignment.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAssignmentRequestAssignment","GET","/identityGovernance/entitlementManagement/assignmentRequests/{param}/assignment","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAssignmentRequestCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAssignmentRequestCount","GET","/identityGovernance/entitlementManagement/assignmentRequests/$count","mismatch","Get-MgEntitlementManagementAssignmentRequestCount" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAssignmentRequestFilterByCurrentUserWithOn.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAssignmentRequestFilterByCurrentUserWithOn","","","parameterized-function","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAssignmentRequestor.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAssignmentRequestor","GET","/identityGovernance/entitlementManagement/assignmentRequests/{param}/requestor","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAssignmentTarget.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAssignmentTarget","GET","/identityGovernance/entitlementManagement/assignments/{param}/target","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAvailableAccessPackage_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAvailableAccessPackage","GET","/identityGovernance/entitlementManagement/availableAccessPackages/{param}","mismatch","Get-MgEntitlementManagementAvailableAccessPackage" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAvailableAccessPackage_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAvailableAccessPackage","GET","/identityGovernance/entitlementManagement/availableAccessPackages","mismatch","Get-MgEntitlementManagementAvailableAccessPackage" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAvailableAccessPackage.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAvailableAccessPackage","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAvailableAccessPackageCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAvailableAccessPackageCount","GET","/identityGovernance/entitlementManagement/availableAccessPackages/$count","mismatch","Get-MgEntitlementManagementAvailableAccessPackageCount" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAvailableAccessPackageResourceRoleScope_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAvailableAccessPackageResourceRoleScope","GET","/identityGovernance/entitlementManagement/availableAccessPackages/{param}/resourceRoleScopes/{param}","mismatch","Get-MgEntitlementManagementAvailableAccessPackageResourceRoleScope" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAvailableAccessPackageResourceRoleScope_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAvailableAccessPackageResourceRoleScope","GET","/identityGovernance/entitlementManagement/availableAccessPackages/{param}/resourceRoleScopes","mismatch","Get-MgEntitlementManagementAvailableAccessPackageResourceRoleScope" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAvailableAccessPackageResourceRoleScope.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAvailableAccessPackageResourceRoleScope","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementAvailableAccessPackageResourceRoleScopeCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementAvailableAccessPackageResourceRoleScopeCount","GET","/identityGovernance/entitlementManagement/availableAccessPackages/{param}/resourceRoleScopes/$count","mismatch","Get-MgEntitlementManagementAvailableAccessPackageResourceRoleScopeCount" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementCatalog_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementCatalog","GET","/identityGovernance/entitlementManagement/catalogs/{param}","mismatch","Get-MgEntitlementManagementCatalog" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementCatalog_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementCatalog","GET","/identityGovernance/entitlementManagement/catalogs","mismatch","Get-MgEntitlementManagementCatalog" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementCatalog.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementCatalog","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementCatalogAccessPackage_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementCatalogAccessPackage","GET","/identityGovernance/entitlementManagement/catalogs/{param}/accessPackages/{param}","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementCatalogAccessPackage_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementCatalogAccessPackage","GET","/identityGovernance/entitlementManagement/catalogs/{param}/accessPackages","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementCatalogAccessPackage.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementCatalogAccessPackage","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementCatalogAccessPackageCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementCatalogAccessPackageCount","GET","/identityGovernance/entitlementManagement/catalogs/{param}/accessPackages/$count","mismatch","Get-MgEntitlementManagementCatalogAccessPackageCount" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementCatalogCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementCatalogCount","GET","/identityGovernance/entitlementManagement/catalogs/$count","mismatch","Get-MgEntitlementManagementCatalogCount" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementCatalogCustomWorkflowExtension_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementCatalogCustomWorkflowExtension","GET","/identityGovernance/entitlementManagement/catalogs/{param}/customWorkflowExtensions/{param}","mismatch","Get-MgEntitlementManagementCatalogCustomWorkflowExtension" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementCatalogCustomWorkflowExtension_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementCatalogCustomWorkflowExtension","GET","/identityGovernance/entitlementManagement/catalogs/{param}/customWorkflowExtensions","mismatch","Get-MgEntitlementManagementCatalogCustomWorkflowExtension" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementCatalogCustomWorkflowExtension.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementCatalogCustomWorkflowExtension","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementCatalogCustomWorkflowExtensionCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementCatalogCustomWorkflowExtensionCount","GET","/identityGovernance/entitlementManagement/catalogs/{param}/customWorkflowExtensions/$count","mismatch","Get-MgEntitlementManagementCatalogCustomWorkflowExtensionCount" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementCatalogResource_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementCatalogResource","GET","/identityGovernance/entitlementManagement/catalogs/{param}/resources/{param}","mismatch","Get-MgEntitlementManagementCatalogResource" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementCatalogResource_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementCatalogResource","GET","/identityGovernance/entitlementManagement/catalogs/{param}/resources","mismatch","Get-MgEntitlementManagementCatalogResource" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementCatalogResource.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementCatalogResource","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementCatalogResourceCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceCount","GET","/identityGovernance/entitlementManagement/catalogs/{param}/resources/$count","mismatch","Get-MgEntitlementManagementCatalogResourceCount" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementCatalogResourceEnvironment.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceEnvironment","GET","/identityGovernance/entitlementManagement/catalogs/{param}/resources/{param}/environment","mismatch","Get-MgEntitlementManagementCatalogResourceEnvironment" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementCatalogResourceRole.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRole","GET","/identityGovernance/entitlementManagement/catalogs/{param}/resourceRoles","mismatch","Get-MgEntitlementManagementCatalogResourceRole" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementCatalogResourceRoleCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleCount","GET","/identityGovernance/entitlementManagement/catalogs/{param}/resourceRoles/$count","mismatch","Get-MgEntitlementManagementCatalogResourceRoleCount" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementCatalogResourceRoleResource.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResource","GET","/identityGovernance/entitlementManagement/catalogs/{param}/resourceRoles/{param}/resource","mismatch","Get-MgEntitlementManagementCatalogResourceRoleResource" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceEnvironment.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceEnvironment","GET","/identityGovernance/entitlementManagement/catalogs/{param}/resourceRoles/{param}/resource/environment","mismatch","Get-MgEntitlementManagementCatalogResourceRoleResourceEnvironment" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceRole_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceRole","GET","/identityGovernance/entitlementManagement/catalogs/{param}/resourceRoles/{param}/resource/roles/{param}","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceRole_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceRole","GET","/identityGovernance/entitlementManagement/catalogs/{param}/resourceRoles/{param}/resource/roles","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceRole.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceRole","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceRoleCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceRoleCount","GET","/identityGovernance/entitlementManagement/catalogs/{param}/resourceRoles/{param}/resource/roles/$count","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScope.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScope","GET","/identityGovernance/entitlementManagement/catalogs/{param}/resourceRoles/{param}/resource/scopes","mismatch","Get-MgEntitlementManagementCatalogResourceRoleResourceScope" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeCount","GET","/identityGovernance/entitlementManagement/catalogs/{param}/resourceRoles/{param}/resource/scopes/$count","mismatch","Get-MgEntitlementManagementCatalogResourceRoleResourceScopeCount" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResource.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResource","GET","/identityGovernance/entitlementManagement/catalogs/{param}/resourceRoles/{param}/resource/scopes/{param}/resource","mismatch","Get-MgEntitlementManagementCatalogResourceRoleResourceScopeResource" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResourceEnvironment.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResourceEnvironment","GET","/identityGovernance/entitlementManagement/catalogs/{param}/resourceRoles/{param}/resource/scopes/{param}/resource/environment","mismatch","Get-MgEntitlementManagementCatalogResourceRoleResourceScopeResourceEnvironment" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResourceRole_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResourceRole","GET","/identityGovernance/entitlementManagement/catalogs/{param}/resourceRoles/{param}/resource/scopes/{param}/resource/roles/{param}","mismatch","Get-MgEntitlementManagementCatalogResourceRoleResourceScopeResourceRole" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResourceRole_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResourceRole","GET","/identityGovernance/entitlementManagement/catalogs/{param}/resourceRoles/{param}/resource/scopes/{param}/resource/roles","mismatch","Get-MgEntitlementManagementCatalogResourceRoleResourceScopeResourceRole" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResourceRole.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResourceRole","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResourceRoleCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResourceRoleCount","GET","/identityGovernance/entitlementManagement/catalogs/{param}/resourceRoles/{param}/resource/scopes/{param}/resource/roles/$count","mismatch","Get-MgEntitlementManagementCatalogResourceRoleResourceScopeResourceRoleCount" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementCatalogResourceScope.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScope","GET","/identityGovernance/entitlementManagement/catalogs/{param}/resources/{param}/scopes","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementCatalogResourceScopeCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeCount","GET","/identityGovernance/entitlementManagement/catalogs/{param}/resources/{param}/scopes/$count","mismatch","Get-MgEntitlementManagementCatalogResourceScopeCount" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementCatalogResourceScopeResource.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResource","GET","/identityGovernance/entitlementManagement/catalogs/{param}/resources/{param}/scopes/{param}/resource","mismatch","Get-MgEntitlementManagementCatalogResourceScopeResource" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceEnvironment.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceEnvironment","GET","/identityGovernance/entitlementManagement/catalogs/{param}/resources/{param}/scopes/{param}/resource/environment","mismatch","Get-MgEntitlementManagementCatalogResourceScopeResourceEnvironment" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRole.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRole","GET","/identityGovernance/entitlementManagement/catalogs/{param}/resources/{param}/scopes/{param}/resource/roles","mismatch","Get-MgEntitlementManagementCatalogResourceScopeResourceRole" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleCount","GET","/identityGovernance/entitlementManagement/catalogs/{param}/resources/{param}/scopes/{param}/resource/roles/$count","mismatch","Get-MgEntitlementManagementCatalogResourceScopeResourceRoleCount" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResource.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResource","GET","/identityGovernance/entitlementManagement/catalogs/{param}/resources/{param}/scopes/{param}/resource/roles/{param}/resource","mismatch","Get-MgEntitlementManagementCatalogResourceScopeResourceRoleResource" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResourceEnvironment.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResourceEnvironment","GET","/identityGovernance/entitlementManagement/catalogs/{param}/resources/{param}/scopes/{param}/resource/roles/{param}/resource/environment","mismatch","Get-MgEntitlementManagementCatalogResourceScopeResourceRoleResourceEnvironment" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResourceScope_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResourceScope","GET","/identityGovernance/entitlementManagement/catalogs/{param}/resourceScopes/{param}/resource/roles/{param}/resource/scopes/{param}","mismatch","Get-MgEntitlementManagementCatalogResourceScopeResourceRoleResourceScope" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResourceScope_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResourceScope","GET","/identityGovernance/entitlementManagement/catalogs/{param}/resourceScopes/{param}/resource/roles/{param}/resource/scopes","mismatch","Get-MgEntitlementManagementCatalogResourceScopeResourceRoleResourceScope" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResourceScope.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResourceScope","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResourceScopeCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResourceScopeCount","GET","/identityGovernance/entitlementManagement/catalogs/{param}/resourceScopes/{param}/resource/roles/{param}/resource/scopes/$count","mismatch","Get-MgEntitlementManagementCatalogResourceScopeResourceRoleResourceScopeCount" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceScope_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceScope","GET","/identityGovernance/entitlementManagement/catalogs/{param}/resourceScopes/{param}/resource/scopes/{param}","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceScope_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceScope","GET","/identityGovernance/entitlementManagement/catalogs/{param}/resourceScopes/{param}/resource/scopes","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceScope.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceScope","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceScopeCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceScopeCount","GET","/identityGovernance/entitlementManagement/catalogs/{param}/resourceScopes/{param}/resource/scopes/$count","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementConnectedOrganization_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementConnectedOrganization","GET","/identityGovernance/entitlementManagement/connectedOrganizations/{param}","mismatch","Get-MgEntitlementManagementConnectedOrganization" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementConnectedOrganization_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementConnectedOrganization","GET","/identityGovernance/entitlementManagement/connectedOrganizations","mismatch","Get-MgEntitlementManagementConnectedOrganization" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementConnectedOrganization.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementConnectedOrganization","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementConnectedOrganizationCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementConnectedOrganizationCount","GET","/identityGovernance/entitlementManagement/connectedOrganizations/$count","mismatch","Get-MgEntitlementManagementConnectedOrganizationCount" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementConnectedOrganizationExternalSponsor.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementConnectedOrganizationExternalSponsor","GET","/identityGovernance/entitlementManagement/connectedOrganizations/{param}/externalSponsors","mismatch","Get-MgEntitlementManagementConnectedOrganizationExternalSponsor" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementConnectedOrganizationExternalSponsorByRef.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementConnectedOrganizationExternalSponsorByRef","GET","/identityGovernance/entitlementManagement/connectedOrganizations/{param}/externalSponsors/$ref","mismatch","Get-MgEntitlementManagementConnectedOrganizationExternalSponsorByRef" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementConnectedOrganizationExternalSponsorCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementConnectedOrganizationExternalSponsorCount","GET","/identityGovernance/entitlementManagement/connectedOrganizations/{param}/externalSponsors/$count","mismatch","Get-MgEntitlementManagementConnectedOrganizationExternalSponsorCount" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementConnectedOrganizationInternalSponsor.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementConnectedOrganizationInternalSponsor","GET","/identityGovernance/entitlementManagement/connectedOrganizations/{param}/internalSponsors","mismatch","Get-MgEntitlementManagementConnectedOrganizationInternalSponsor" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementConnectedOrganizationInternalSponsorByRef.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementConnectedOrganizationInternalSponsorByRef","GET","/identityGovernance/entitlementManagement/connectedOrganizations/{param}/internalSponsors/$ref","mismatch","Get-MgEntitlementManagementConnectedOrganizationInternalSponsorByRef" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementConnectedOrganizationInternalSponsorCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementConnectedOrganizationInternalSponsorCount","GET","/identityGovernance/entitlementManagement/connectedOrganizations/{param}/internalSponsors/$count","mismatch","Get-MgEntitlementManagementConnectedOrganizationInternalSponsorCount" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementControlConfiguration_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementControlConfiguration","GET","/identityGovernance/entitlementManagement/controlConfigurations/{param}","mismatch","Get-MgEntitlementManagementControlConfiguration" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementControlConfiguration_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementControlConfiguration","GET","/identityGovernance/entitlementManagement/controlConfigurations","mismatch","Get-MgEntitlementManagementControlConfiguration" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementControlConfiguration.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementControlConfiguration","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementControlConfigurationCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementControlConfigurationCount","GET","/identityGovernance/entitlementManagement/controlConfigurations/$count","mismatch","Get-MgEntitlementManagementControlConfigurationCount" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResource_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResource","GET","/identityGovernance/entitlementManagement/resources/{param}","mismatch","Get-MgEntitlementManagementResource" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResource_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResource","GET","/identityGovernance/entitlementManagement/resources","mismatch","Get-MgEntitlementManagementResource" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResource.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResource","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceCount","GET","/identityGovernance/entitlementManagement/resources/$count","mismatch","Get-MgEntitlementManagementResourceCount" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceEnvironment_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceEnvironment","GET","/identityGovernance/entitlementManagement/resourceEnvironments/{param}","mismatch","Get-MgEntitlementManagementResourceEnvironment" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceEnvironment_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceEnvironment","GET","/identityGovernance/entitlementManagement/resourceEnvironments","mismatch","Get-MgEntitlementManagementResourceEnvironment" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceEnvironment.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceEnvironment","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceEnvironmentCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentCount","GET","/identityGovernance/entitlementManagement/resourceEnvironments/$count","mismatch","Get-MgEntitlementManagementResourceEnvironmentCount" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceEnvironmentResource_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResource","GET","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}","mismatch","Get-MgEntitlementManagementResourceEnvironmentResource" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceEnvironmentResource_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResource","GET","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources","mismatch","Get-MgEntitlementManagementResourceEnvironmentResource" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceEnvironmentResource.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResource","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceCount","GET","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/$count","mismatch","Get-MgEntitlementManagementResourceEnvironmentResourceCount" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceEnvironment.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceEnvironment","GET","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/environment","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRole_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRole","GET","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/roles/{param}","mismatch","Get-MgEntitlementManagementResourceEnvironmentResourceRole" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRole_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRole","GET","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/roles","mismatch","Get-MgEntitlementManagementResourceEnvironmentResourceRole" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRole.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRole","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleCount","GET","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/roles/$count","mismatch","Get-MgEntitlementManagementResourceEnvironmentResourceRoleCount" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResource.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResource","GET","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/roles/{param}/resource","mismatch","Get-MgEntitlementManagementResourceEnvironmentResourceRoleResource" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResourceEnvironment.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResourceEnvironment","GET","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/roles/{param}/resource/environment","mismatch","Get-MgEntitlementManagementResourceEnvironmentResourceRoleResourceEnvironment" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResourceScope_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResourceScope","GET","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/roles/{param}/resource/scopes/{param}","mismatch","Get-MgEntitlementManagementResourceEnvironmentResourceRoleResourceScope" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResourceScope_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResourceScope","GET","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/roles/{param}/resource/scopes","mismatch","Get-MgEntitlementManagementResourceEnvironmentResourceRoleResourceScope" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResourceScope.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResourceScope","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResourceScopeCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResourceScopeCount","GET","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/roles/{param}/resource/scopes/$count","mismatch","Get-MgEntitlementManagementResourceEnvironmentResourceRoleResourceScopeCount" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResourceScopeResource.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResourceScopeResource","GET","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/roles/{param}/resource/scopes/{param}/resource","mismatch","Get-MgEntitlementManagementResourceEnvironmentResourceRoleResourceScopeResource" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResourceScopeResourceEnvironment.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResourceScopeResourceEnvironment","GET","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/roles/{param}/resource/scopes/{param}/resource/environment","mismatch","Get-MgEntitlementManagementResourceEnvironmentResourceRoleResourceScopeResourceEnvironment" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScope_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScope","GET","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/scopes/{param}","mismatch","Get-MgEntitlementManagementResourceEnvironmentResourceScope" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScope_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScope","GET","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/scopes","mismatch","Get-MgEntitlementManagementResourceEnvironmentResourceScope" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScope.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScope","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeCount","GET","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/scopes/$count","mismatch","Get-MgEntitlementManagementResourceEnvironmentResourceScopeCount" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResource.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResource","GET","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/scopes/{param}/resource","mismatch","Get-MgEntitlementManagementResourceEnvironmentResourceScopeResource" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResourceEnvironment.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResourceEnvironment","GET","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/scopes/{param}/resource/environment","mismatch","Get-MgEntitlementManagementResourceEnvironmentResourceScopeResourceEnvironment" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResourceRole_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResourceRole","GET","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/scopes/{param}/resource/roles/{param}","mismatch","Get-MgEntitlementManagementResourceEnvironmentResourceScopeResourceRole" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResourceRole_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResourceRole","GET","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/scopes/{param}/resource/roles","mismatch","Get-MgEntitlementManagementResourceEnvironmentResourceScopeResourceRole" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResourceRole.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResourceRole","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResourceRoleCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResourceRoleCount","GET","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/scopes/{param}/resource/roles/$count","mismatch","Get-MgEntitlementManagementResourceEnvironmentResourceScopeResourceRoleCount" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResourceRoleResource.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResourceRoleResource","GET","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/scopes/{param}/resource/roles/{param}/resource","mismatch","Get-MgEntitlementManagementResourceEnvironmentResourceScopeResourceRoleResource" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResourceRoleResourceEnvironment.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResourceRoleResourceEnvironment","GET","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/scopes/{param}/resource/roles/{param}/resource/environment","mismatch","Get-MgEntitlementManagementResourceEnvironmentResourceScopeResourceRoleResourceEnvironment" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRequest_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequest","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}","mismatch","Get-MgEntitlementManagementResourceRequest" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRequest_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequest","GET","/identityGovernance/entitlementManagement/resourceRequests","mismatch","Get-MgEntitlementManagementResourceRequest" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRequest.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequest","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalog.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalog","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog","mismatch","Get-MgEntitlementManagementResourceRequestCatalog" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogAccessPackage_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogAccessPackage","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/accessPackages/{param}","mismatch","Get-MgEntitlementManagementResourceRequestCatalogAccessPackage" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogAccessPackage_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogAccessPackage","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/accessPackages","mismatch","Get-MgEntitlementManagementResourceRequestCatalogAccessPackage" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogAccessPackage.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogAccessPackage","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogAccessPackageCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogAccessPackageCount","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/accessPackages/$count","mismatch","Get-MgEntitlementManagementResourceRequestCatalogAccessPackageCount" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogCustomWorkflowExtension_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogCustomWorkflowExtension","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/customWorkflowExtensions/{param}","mismatch","Get-MgEntitlementManagementResourceRequestCatalogCustomWorkflowExtension" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogCustomWorkflowExtension_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogCustomWorkflowExtension","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/customWorkflowExtensions","mismatch","Get-MgEntitlementManagementResourceRequestCatalogCustomWorkflowExtension" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogCustomWorkflowExtension.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogCustomWorkflowExtension","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogCustomWorkflowExtensionCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogCustomWorkflowExtensionCount","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/customWorkflowExtensions/$count","mismatch","Get-MgEntitlementManagementResourceRequestCatalogCustomWorkflowExtensionCount" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResource_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResource","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resources/{param}","mismatch","Get-MgEntitlementManagementResourceRequestCatalogResource" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResource_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResource","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resources","mismatch","Get-MgEntitlementManagementResourceRequestCatalogResource" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResource.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResource","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceCount","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resources/$count","mismatch","Get-MgEntitlementManagementResourceRequestCatalogResourceCount" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceEnvironment.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceEnvironment","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resources/{param}/environment","mismatch","Get-MgEntitlementManagementResourceRequestCatalogResourceEnvironment" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRole.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRole","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceRoles","mismatch","Get-MgEntitlementManagementResourceRequestCatalogResourceRole" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleCount","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceRoles/$count","mismatch","Get-MgEntitlementManagementResourceRequestCatalogResourceRoleCount" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResource.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResource","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceRoles/{param}/resource","mismatch","Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResource" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceEnvironment.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceEnvironment","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceRoles/{param}/resource/environment","mismatch","Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceEnvironment" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceRole_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceRole","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceRoles/{param}/resource/roles/{param}","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceRole_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceRole","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceRoles/{param}/resource/roles","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceRole.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceRole","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceRoleCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceRoleCount","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceRoles/{param}/resource/roles/$count","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScope.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScope","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceRoles/{param}/resource/scopes","mismatch","Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScope" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeCount","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceRoles/{param}/resource/scopes/$count","mismatch","Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeCount" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResource.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResource","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceRoles/{param}/resource/scopes/{param}/resource","mismatch","Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResource" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceEnvironment.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceEnvironment","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceRoles/{param}/resource/scopes/{param}/resource/environment","mismatch","Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceEnvironment" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRole_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRole","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceRoles/{param}/resource/scopes/{param}/resource/roles/{param}","mismatch","Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRole" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRole_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRole","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceRoles/{param}/resource/scopes/{param}/resource/roles","mismatch","Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRole" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRole.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRole","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRoleCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRoleCount","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceRoles/{param}/resource/scopes/{param}/resource/roles/$count","mismatch","Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRoleCount" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScope.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScope","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resources/{param}/scopes","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeCount","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resources/{param}/scopes/$count","mismatch","Get-MgEntitlementManagementResourceRequestCatalogResourceScopeCount" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResource.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResource","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resources/{param}/scopes/{param}/resource","mismatch","Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResource" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceEnvironment.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceEnvironment","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resources/{param}/scopes/{param}/resource/environment","mismatch","Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceEnvironment" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRole.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRole","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resources/{param}/scopes/{param}/resource/roles","mismatch","Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRole" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleCount","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resources/{param}/scopes/{param}/resource/roles/$count","mismatch","Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleCount" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResource.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResource","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resources/{param}/scopes/{param}/resource/roles/{param}/resource","mismatch","Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResource" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceEnvironment.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceEnvironment","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resources/{param}/scopes/{param}/resource/roles/{param}/resource/environment","mismatch","Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceEnvironment" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceScope_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceScope","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceScopes/{param}/resource/roles/{param}/resource/scopes/{param}","mismatch","Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceScope" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceScope_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceScope","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceScopes/{param}/resource/roles/{param}/resource/scopes","mismatch","Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceScope" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceScope.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceScope","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceScopeCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceScopeCount","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceScopes/{param}/resource/roles/{param}/resource/scopes/$count","mismatch","Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceScopeCount" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceScope_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceScope","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceScopes/{param}/resource/scopes/{param}","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceScope_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceScope","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceScopes/{param}/resource/scopes","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceScope.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceScope","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceScopeCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceScopeCount","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceScopes/{param}/resource/scopes/$count","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRequestCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCount","GET","/identityGovernance/entitlementManagement/resourceRequests/$count","mismatch","Get-MgEntitlementManagementResourceRequestCount" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRequestResource.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestResource","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource","mismatch","Get-MgEntitlementManagementResourceRequestResource" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRequestResourceEnvironment.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceEnvironment","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/environment","mismatch","Get-MgEntitlementManagementResourceRequestResourceEnvironment" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRequestResourceRole_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRole","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/roles/{param}","mismatch","Get-MgEntitlementManagementResourceRequestResourceRole" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRequestResourceRole_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRole","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/roles","mismatch","Get-MgEntitlementManagementResourceRequestResourceRole" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRequestResourceRole.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRole","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleCount","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/roles/$count","mismatch","Get-MgEntitlementManagementResourceRequestResourceRoleCount" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResource.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResource","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/roles/{param}/resource","mismatch","Get-MgEntitlementManagementResourceRequestResourceRoleResource" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResourceEnvironment.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResourceEnvironment","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/roles/{param}/resource/environment","mismatch","Get-MgEntitlementManagementResourceRequestResourceRoleResourceEnvironment" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResourceScope_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResourceScope","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/roles/{param}/resource/scopes/{param}","mismatch","Get-MgEntitlementManagementResourceRequestResourceRoleResourceScope" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResourceScope_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResourceScope","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/roles/{param}/resource/scopes","mismatch","Get-MgEntitlementManagementResourceRequestResourceRoleResourceScope" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResourceScope.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResourceScope","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResourceScopeCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResourceScopeCount","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/roles/{param}/resource/scopes/$count","mismatch","Get-MgEntitlementManagementResourceRequestResourceRoleResourceScopeCount" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResourceScopeResource.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResourceScopeResource","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/roles/{param}/resource/scopes/{param}/resource","mismatch","Get-MgEntitlementManagementResourceRequestResourceRoleResourceScopeResource" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResourceScopeResourceEnvironment.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResourceScopeResourceEnvironment","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/roles/{param}/resource/scopes/{param}/resource/environment","mismatch","Get-MgEntitlementManagementResourceRequestResourceRoleResourceScopeResourceEnvironment" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRequestResourceScope_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScope","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/scopes/{param}","mismatch","Get-MgEntitlementManagementResourceRequestResourceScope" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRequestResourceScope_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScope","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/scopes","mismatch","Get-MgEntitlementManagementResourceRequestResourceScope" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRequestResourceScope.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScope","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeCount","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/scopes/$count","mismatch","Get-MgEntitlementManagementResourceRequestResourceScopeCount" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResource.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResource","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/scopes/{param}/resource","mismatch","Get-MgEntitlementManagementResourceRequestResourceScopeResource" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResourceEnvironment.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResourceEnvironment","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/scopes/{param}/resource/environment","mismatch","Get-MgEntitlementManagementResourceRequestResourceScopeResourceEnvironment" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResourceRole_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResourceRole","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/scopes/{param}/resource/roles/{param}","mismatch","Get-MgEntitlementManagementResourceRequestResourceScopeResourceRole" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResourceRole_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResourceRole","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/scopes/{param}/resource/roles","mismatch","Get-MgEntitlementManagementResourceRequestResourceScopeResourceRole" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResourceRole.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResourceRole","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResourceRoleCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResourceRoleCount","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/scopes/{param}/resource/roles/$count","mismatch","Get-MgEntitlementManagementResourceRequestResourceScopeResourceRoleCount" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResourceRoleResource.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResourceRoleResource","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/scopes/{param}/resource/roles/{param}/resource","mismatch","Get-MgEntitlementManagementResourceRequestResourceScopeResourceRoleResource" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResourceRoleResourceEnvironment.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResourceRoleResourceEnvironment","GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/scopes/{param}/resource/roles/{param}/resource/environment","mismatch","Get-MgEntitlementManagementResourceRequestResourceScopeResourceRoleResourceEnvironment" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRole_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRole","GET","/identityGovernance/entitlementManagement/resources/{param}/roles/{param}","mismatch","Get-MgEntitlementManagementResourceRole" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRole_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRole","GET","/identityGovernance/entitlementManagement/resources/{param}/roles","mismatch","Get-MgEntitlementManagementResourceRole" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRole.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRole","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRoleCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRoleCount","GET","/identityGovernance/entitlementManagement/resources/{param}/roles/$count","mismatch","Get-MgEntitlementManagementResourceRoleCount" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRoleResource.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRoleResource","GET","/identityGovernance/entitlementManagement/resources/{param}/roles/{param}/resource","mismatch","Get-MgEntitlementManagementResourceRoleResource" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRoleResourceEnvironment.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRoleResourceEnvironment","GET","/identityGovernance/entitlementManagement/resources/{param}/roles/{param}/resource/environment","mismatch","Get-MgEntitlementManagementResourceRoleResourceEnvironment" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRoleResourceScope_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRoleResourceScope","GET","/identityGovernance/entitlementManagement/resources/{param}/roles/{param}/resource/scopes/{param}","mismatch","Get-MgEntitlementManagementResourceRoleResourceScope" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRoleResourceScope_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRoleResourceScope","GET","/identityGovernance/entitlementManagement/resources/{param}/roles/{param}/resource/scopes","mismatch","Get-MgEntitlementManagementResourceRoleResourceScope" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRoleResourceScope.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRoleResourceScope","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRoleResourceScopeCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRoleResourceScopeCount","GET","/identityGovernance/entitlementManagement/resources/{param}/roles/{param}/resource/scopes/$count","mismatch","Get-MgEntitlementManagementResourceRoleResourceScopeCount" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRoleResourceScopeResource.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRoleResourceScopeResource","GET","/identityGovernance/entitlementManagement/resources/{param}/roles/{param}/resource/scopes/{param}/resource","mismatch","Get-MgEntitlementManagementResourceRoleResourceScopeResource" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRoleResourceScopeResourceEnvironment.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRoleResourceScopeResourceEnvironment","GET","/identityGovernance/entitlementManagement/resources/{param}/roles/{param}/resource/scopes/{param}/resource/environment","mismatch","Get-MgEntitlementManagementResourceRoleResourceScopeResourceEnvironment" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRoleScope_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRoleScope","GET","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}","mismatch","Get-MgEntitlementManagementResourceRoleScope" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRoleScope_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRoleScope","GET","/identityGovernance/entitlementManagement/resourceRoleScopes","mismatch","Get-MgEntitlementManagementResourceRoleScope" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRoleScope.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRoleScope","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRoleScopeCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeCount","GET","/identityGovernance/entitlementManagement/resourceRoleScopes/$count","mismatch","Get-MgEntitlementManagementResourceRoleScopeCount" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRoleScopeResource.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResource","GET","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/scope/resource","mismatch","Get-MgEntitlementManagementResourceRoleScopeResource" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceEnvironment.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceEnvironment","GET","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/scope/resource/environment","mismatch","Get-MgEntitlementManagementResourceRoleScopeResourceEnvironment" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRole_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRole","GET","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/scope/resource/roles/{param}","mismatch","Get-MgEntitlementManagementResourceRoleScopeResourceRole" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRole_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRole","GET","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/scope/resource/roles","mismatch","Get-MgEntitlementManagementResourceRoleScopeResourceRole" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRole.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRole","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRoleCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRoleCount","GET","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/scope/resource/roles/$count","mismatch","Get-MgEntitlementManagementResourceRoleScopeResourceRoleCount" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRoleResource.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRoleResource","GET","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/scope/resource/roles/{param}/resource","mismatch","Get-MgEntitlementManagementResourceRoleScopeResourceRoleResource" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRoleResourceEnvironment.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRoleResourceEnvironment","GET","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/scope/resource/roles/{param}/resource/environment","mismatch","Get-MgEntitlementManagementResourceRoleScopeResourceRoleResourceEnvironment" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRoleResourceScope_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRoleResourceScope","GET","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/scope/resource/roles/{param}/resource/scopes/{param}","mismatch","Get-MgEntitlementManagementResourceRoleScopeResourceRoleResourceScope" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRoleResourceScope_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRoleResourceScope","GET","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/scope/resource/roles/{param}/resource/scopes","mismatch","Get-MgEntitlementManagementResourceRoleScopeResourceRoleResourceScope" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRoleResourceScope.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRoleResourceScope","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRoleResourceScopeCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRoleResourceScopeCount","GET","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/scope/resource/roles/{param}/resource/scopes/$count","mismatch","Get-MgEntitlementManagementResourceRoleScopeResourceRoleResourceScopeCount" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceScope_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceScope","GET","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/scope/resource/scopes/{param}","mismatch","Get-MgEntitlementManagementResourceRoleScopeResourceScope" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceScope_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceScope","GET","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/scope/resource/scopes","mismatch","Get-MgEntitlementManagementResourceRoleScopeResourceScope" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceScope.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceScope","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceScopeCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceScopeCount","GET","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/scope/resource/scopes/$count","mismatch","Get-MgEntitlementManagementResourceRoleScopeResourceScopeCount" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRoleScopeRole.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRole","GET","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/role","mismatch","Get-MgEntitlementManagementResourceRoleScopeRole" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResource.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResource","GET","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/role/resource","mismatch","Get-MgEntitlementManagementResourceRoleScopeRoleResource" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceEnvironment.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceEnvironment","GET","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/role/resource/environment","mismatch","Get-MgEntitlementManagementResourceRoleScopeRoleResourceEnvironment" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceRole_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceRole","GET","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/role/resource/roles/{param}","mismatch","Get-MgEntitlementManagementResourceRoleScopeRoleResourceRole" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceRole_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceRole","GET","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/role/resource/roles","mismatch","Get-MgEntitlementManagementResourceRoleScopeRoleResourceRole" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceRole.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceRole","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceRoleCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceRoleCount","GET","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/role/resource/roles/$count","mismatch","Get-MgEntitlementManagementResourceRoleScopeRoleResourceRoleCount" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScope_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScope","GET","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/role/resource/scopes/{param}","mismatch","Get-MgEntitlementManagementResourceRoleScopeRoleResourceScope" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScope_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScope","GET","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/role/resource/scopes","mismatch","Get-MgEntitlementManagementResourceRoleScopeRoleResourceScope" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScope.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScope","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScopeCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScopeCount","GET","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/role/resource/scopes/$count","mismatch","Get-MgEntitlementManagementResourceRoleScopeRoleResourceScopeCount" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScopeResource.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScopeResource","GET","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/role/resource/scopes/{param}/resource","mismatch","Get-MgEntitlementManagementResourceRoleScopeRoleResourceScopeResource" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScopeResourceEnvironment.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScopeResourceEnvironment","GET","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/role/resource/scopes/{param}/resource/environment","mismatch","Get-MgEntitlementManagementResourceRoleScopeRoleResourceScopeResourceEnvironment" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScopeResourceRole_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScopeResourceRole","GET","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/role/resource/scopes/{param}/resource/roles/{param}","mismatch","Get-MgEntitlementManagementResourceRoleScopeRoleResourceScopeResourceRole" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScopeResourceRole_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScopeResourceRole","GET","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/role/resource/scopes/{param}/resource/roles","mismatch","Get-MgEntitlementManagementResourceRoleScopeRoleResourceScopeResourceRole" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScopeResourceRole.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScopeResourceRole","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScopeResourceRoleCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScopeResourceRoleCount","GET","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/role/resource/scopes/{param}/resource/roles/$count","mismatch","Get-MgEntitlementManagementResourceRoleScopeRoleResourceScopeResourceRoleCount" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceScope_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceScope","GET","/identityGovernance/entitlementManagement/resources/{param}/scopes/{param}","mismatch","Get-MgEntitlementManagementResourceScope" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceScope_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceScope","GET","/identityGovernance/entitlementManagement/resources/{param}/scopes","mismatch","Get-MgEntitlementManagementResourceScope" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceScope.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceScope","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceScopeCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceScopeCount","GET","/identityGovernance/entitlementManagement/resources/{param}/scopes/$count","mismatch","Get-MgEntitlementManagementResourceScopeCount" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceScopeResource.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceScopeResource","GET","/identityGovernance/entitlementManagement/resources/{param}/scopes/{param}/resource","mismatch","Get-MgEntitlementManagementResourceScopeResource" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceScopeResourceEnvironment.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceScopeResourceEnvironment","GET","/identityGovernance/entitlementManagement/resources/{param}/scopes/{param}/resource/environment","mismatch","Get-MgEntitlementManagementResourceScopeResourceEnvironment" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceScopeResourceRole_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceScopeResourceRole","GET","/identityGovernance/entitlementManagement/resources/{param}/scopes/{param}/resource/roles/{param}","mismatch","Get-MgEntitlementManagementResourceScopeResourceRole" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceScopeResourceRole_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceScopeResourceRole","GET","/identityGovernance/entitlementManagement/resources/{param}/scopes/{param}/resource/roles","mismatch","Get-MgEntitlementManagementResourceScopeResourceRole" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceScopeResourceRole.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceScopeResourceRole","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceScopeResourceRoleCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceScopeResourceRoleCount","GET","/identityGovernance/entitlementManagement/resources/{param}/scopes/{param}/resource/roles/$count","mismatch","Get-MgEntitlementManagementResourceScopeResourceRoleCount" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceScopeResourceRoleResource.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceScopeResourceRoleResource","GET","/identityGovernance/entitlementManagement/resources/{param}/scopes/{param}/resource/roles/{param}/resource","mismatch","Get-MgEntitlementManagementResourceScopeResourceRoleResource" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementResourceScopeResourceRoleResourceEnvironment.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementResourceScopeResourceRoleResourceEnvironment","GET","/identityGovernance/entitlementManagement/resources/{param}/scopes/{param}/resource/roles/{param}/resource/environment","mismatch","Get-MgEntitlementManagementResourceScopeResourceRoleResourceEnvironment" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementSetting.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementSetting","GET","/identityGovernance/entitlementManagement/settings","mismatch","Get-MgEntitlementManagementSetting" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementSubject_Get.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementSubject","GET","/identityGovernance/entitlementManagement/subjects/{param}","mismatch","Get-MgEntitlementManagementSubject" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementSubject_List.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementSubject","GET","/identityGovernance/entitlementManagement/subjects","mismatch","Get-MgEntitlementManagementSubject" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementSubject.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementSubject","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementSubjectConnectedOrganization.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementSubjectConnectedOrganization","GET","/identityGovernance/entitlementManagement/subjects/{param}/connectedOrganization","mismatch","Get-MgEntitlementManagementSubjectConnectedOrganization" +"Identity.Governance","GetMgIdentityGovernanceEntitlementManagementSubjectCount.g.cs","v1.0","Get-MgIdentityGovernanceEntitlementManagementSubjectCount","GET","/identityGovernance/entitlementManagement/subjects/$count","mismatch","Get-MgEntitlementManagementSubjectCount" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflow_Get.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflow","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}","matched","Get-MgIdentityGovernanceLifecycleWorkflow" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflow_List.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflow","GET","/identityGovernance/lifecycleWorkflows/workflows","matched","Get-MgIdentityGovernanceLifecycleWorkflow" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflow.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflow","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowAdministrationScopeTarget_Get.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowAdministrationScopeTarget","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/administrationScopeTargets/{param}","matched","Get-MgIdentityGovernanceLifecycleWorkflowAdministrationScopeTarget" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowAdministrationScopeTarget_List.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowAdministrationScopeTarget","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/administrationScopeTargets","matched","Get-MgIdentityGovernanceLifecycleWorkflowAdministrationScopeTarget" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowAdministrationScopeTarget.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowAdministrationScopeTarget","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowAdministrationScopeTargetCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowAdministrationScopeTargetCount","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/administrationScopeTargets/$count","matched","Get-MgIdentityGovernanceLifecycleWorkflowAdministrationScopeTargetCount" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowCount","GET","/identityGovernance/lifecycleWorkflows/workflows/$count","matched","Get-MgIdentityGovernanceLifecycleWorkflowCount" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowCreatedBy.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowCreatedBy","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/createdBy","matched","Get-MgIdentityGovernanceLifecycleWorkflowCreatedBy" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowCreatedByMailboxSetting.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowCreatedByMailboxSetting","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/createdBy/mailboxSettings","matched","Get-MgIdentityGovernanceLifecycleWorkflowCreatedByMailboxSetting" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowCreatedByServiceProvisioningError.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowCreatedByServiceProvisioningError","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/createdBy/serviceProvisioningErrors","matched","Get-MgIdentityGovernanceLifecycleWorkflowCreatedByServiceProvisioningError" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowCreatedByServiceProvisioningErrorCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowCreatedByServiceProvisioningErrorCount","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/createdBy/serviceProvisioningErrors/$count","matched","Get-MgIdentityGovernanceLifecycleWorkflowCreatedByServiceProvisioningErrorCount" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowCustomTaskExtension_Get.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtension","GET","/identityGovernance/lifecycleWorkflows/customTaskExtensions/{param}","matched","Get-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtension" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowCustomTaskExtension_List.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtension","GET","/identityGovernance/lifecycleWorkflows/customTaskExtensions","matched","Get-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtension" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowCustomTaskExtension.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtension","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowCustomTaskExtensionCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtensionCount","GET","/identityGovernance/lifecycleWorkflows/customTaskExtensions/$count","matched","Get-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtensionCount" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowCustomTaskExtensionCreatedBy.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtensionCreatedBy","GET","/identityGovernance/lifecycleWorkflows/customTaskExtensions/{param}/createdBy","matched","Get-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtensionCreatedBy" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowCustomTaskExtensionCreatedByMailboxSetting.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtensionCreatedByMailboxSetting","GET","/identityGovernance/lifecycleWorkflows/customTaskExtensions/{param}/createdBy/mailboxSettings","matched","Get-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtensionCreatedByMailboxSetting" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowCustomTaskExtensionCreatedByServiceProvisioningError.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtensionCreatedByServiceProvisioningError","GET","/identityGovernance/lifecycleWorkflows/customTaskExtensions/{param}/createdBy/serviceProvisioningErrors","matched","Get-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtensionCreatedByServiceProvisioningError" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowCustomTaskExtensionCreatedByServiceProvisioningErrorCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtensionCreatedByServiceProvisioningErrorCount","GET","/identityGovernance/lifecycleWorkflows/customTaskExtensions/{param}/createdBy/serviceProvisioningErrors/$count","matched","Get-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtensionCreatedByServiceProvisioningErrorCount" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowCustomTaskExtensionLastModifiedBy.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtensionLastModifiedBy","GET","/identityGovernance/lifecycleWorkflows/customTaskExtensions/{param}/lastModifiedBy","matched","Get-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtensionLastModifiedBy" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowCustomTaskExtensionLastModifiedByMailboxSetting.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtensionLastModifiedByMailboxSetting","GET","/identityGovernance/lifecycleWorkflows/customTaskExtensions/{param}/lastModifiedBy/mailboxSettings","matched","Get-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtensionLastModifiedByMailboxSetting" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowCustomTaskExtensionLastModifiedByServiceProvisioningError.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtensionLastModifiedByServiceProvisioningError","GET","/identityGovernance/lifecycleWorkflows/customTaskExtensions/{param}/lastModifiedBy/serviceProvisioningErrors","matched","Get-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtensionLastModifiedByServiceProvisioningError" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowCustomTaskExtensionLastModifiedByServiceProvisioningErrorCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtensionLastModifiedByServiceProvisioningErrorCount","GET","/identityGovernance/lifecycleWorkflows/customTaskExtensions/{param}/lastModifiedBy/serviceProvisioningErrors/$count","matched","Get-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtensionLastModifiedByServiceProvisioningErrorCount" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItem.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItem","GET","/identityGovernance/lifecycleWorkflows/deletedItems","matched","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItem" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflow_Get.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflow","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}","matched","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflow" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflow_List.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflow","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows","matched","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflow" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflow.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflow","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowAdministrationScopeTarget_Get.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowAdministrationScopeTarget","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/administrationScopeTargets/{param}","matched","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowAdministrationScopeTarget" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowAdministrationScopeTarget_List.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowAdministrationScopeTarget","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/administrationScopeTargets","matched","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowAdministrationScopeTarget" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowAdministrationScopeTarget.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowAdministrationScopeTarget","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowAdministrationScopeTargetCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowAdministrationScopeTargetCount","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/administrationScopeTargets/$count","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowCount","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/$count","matched","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowCount" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowCreatedBy.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowCreatedBy","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/createdBy","matched","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowCreatedBy" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowCreatedByMailboxSetting.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowCreatedByMailboxSetting","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/createdBy/mailboxSettings","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowCreatedByServiceProvisioningError.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowCreatedByServiceProvisioningError","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/createdBy/serviceProvisioningErrors","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowCreatedByServiceProvisioningErrorCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowCreatedByServiceProvisioningErrorCount","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/createdBy/serviceProvisioningErrors/$count","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowExecutionScope_Get.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowExecutionScope","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/executionScope/{param}","matched","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowExecutionScope" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowExecutionScope_List.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowExecutionScope","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/executionScope","matched","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowExecutionScope" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowExecutionScope.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowExecutionScope","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowExecutionScopeCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowExecutionScopeCount","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/executionScope/$count","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowLastModifiedBy.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowLastModifiedBy","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/lastModifiedBy","matched","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowLastModifiedBy" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowLastModifiedByMailboxSetting.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowLastModifiedByMailboxSetting","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/lastModifiedBy/mailboxSettings","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowLastModifiedByServiceProvisioningError.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowLastModifiedByServiceProvisioningError","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/lastModifiedBy/serviceProvisioningErrors","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowLastModifiedByServiceProvisioningErrorCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowLastModifiedByServiceProvisioningErrorCount","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/lastModifiedBy/serviceProvisioningErrors/$count","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowPreviewScope_Get.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowPreviewScope","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/previewScope/{param}","matched","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowPreviewScope" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowPreviewScope_List.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowPreviewScope","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/previewScope","matched","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowPreviewScope" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowPreviewScope.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowPreviewScope","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowPreviewScopeCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowPreviewScopeCount","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/previewScope/$count","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRun_Get.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRun","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}","matched","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRun" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRun_List.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRun","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs","matched","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRun" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRun.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRun","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunCount","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/$count","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunReprocessedRun_Get.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunReprocessedRun","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/reprocessedRuns/{param}","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunReprocessedRun_List.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunReprocessedRun","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/reprocessedRuns","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunReprocessedRun.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunReprocessedRun","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunReprocessedRunCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunReprocessedRunCount","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/reprocessedRuns/$count","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunSummaryWithStartDateTimeWithEndDateTime.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunSummaryWithStartDateTimeWithEndDateTime","","","parameterized-function","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunTaskProcessingResult_Get.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunTaskProcessingResult","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/taskProcessingResults/{param}","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunTaskProcessingResult_List.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunTaskProcessingResult","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/taskProcessingResults","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunTaskProcessingResult.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunTaskProcessingResult","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunTaskProcessingResultCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunTaskProcessingResultCount","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/taskProcessingResults/$count","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunTaskProcessingResultSubject.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunTaskProcessingResultSubject","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/taskProcessingResults/{param}/subject","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunTaskProcessingResultSubjectMailboxSetting.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunTaskProcessingResultSubjectMailboxSetting","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/taskProcessingResults/{param}/subject/mailboxSettings","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunTaskProcessingResultSubjectServiceProvisioningError.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunTaskProcessingResultSubjectServiceProvisioningError","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/taskProcessingResults/{param}/subject/serviceProvisioningErrors","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunTaskProcessingResultSubjectServiceProvisioningErrorCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunTaskProcessingResultSubjectServiceProvisioningErrorCount","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/taskProcessingResults/{param}/subject/serviceProvisioningErrors/$count","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunTaskProcessingResultTask.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunTaskProcessingResultTask","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/taskProcessingResults/{param}/task","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResult_Get.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResult","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/userProcessingResults/{param}","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResult_List.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResult","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/userProcessingResults","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResult.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResult","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultCount","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/userProcessingResults/$count","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultReprocessedRun_Get.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultReprocessedRun","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/userProcessingResults/{param}/reprocessedRuns/{param}","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultReprocessedRun_List.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultReprocessedRun","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/userProcessingResults/{param}/reprocessedRuns","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultReprocessedRun.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultReprocessedRun","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultReprocessedRunCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultReprocessedRunCount","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/userProcessingResults/{param}/reprocessedRuns/$count","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultSubject.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultSubject","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/userProcessingResults/{param}/subject","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultSubjectMailboxSetting.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultSubjectMailboxSetting","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/userProcessingResults/{param}/subject/mailboxSettings","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultSubjectServiceProvisioningError.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultSubjectServiceProvisioningError","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/userProcessingResults/{param}/subject/serviceProvisioningErrors","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultSubjectServiceProvisioningErrorCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultSubjectServiceProvisioningErrorCount","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/userProcessingResults/{param}/subject/serviceProvisioningErrors/$count","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultSummaryWithStartDateTimeWithEndDateTime.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultSummaryWithStartDateTimeWithEndDateTime","","","parameterized-function","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultTaskProcessingResult_Get.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultTaskProcessingResult","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/userProcessingResults/{param}/taskProcessingResults/{param}","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultTaskProcessingResult_List.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultTaskProcessingResult","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/userProcessingResults/{param}/taskProcessingResults","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultTaskProcessingResult.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultTaskProcessingResult","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultTaskProcessingResultCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultTaskProcessingResultCount","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/userProcessingResults/{param}/taskProcessingResults/$count","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultTaskProcessingResultSubject.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultTaskProcessingResultSubject","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/subject","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultTaskProcessingResultSubjectMailboxSetting.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultTaskProcessingResultSubjectMailboxSetting","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/subject/mailboxSettings","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultTaskProcessingResultSubjectServiceProvisioningError.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultTaskProcessingResultSubjectServiceProvisioningError","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/subject/serviceProvisioningErrors","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultTaskProcessingResultSubjectServiceProvisioningErrorCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultTaskProcessingResultSubjectServiceProvisioningErrorCount","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/subject/serviceProvisioningErrors/$count","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultTaskProcessingResultTask.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultTaskProcessingResultTask","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/task","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTask_Get.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTask","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/tasks/{param}","matched","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTask" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTask_List.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTask","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/tasks","matched","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTask" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTask.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTask","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskCount","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/tasks/$count","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskProcessingResult_Get.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskProcessingResult","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/tasks/{param}/taskProcessingResults/{param}","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskProcessingResult_List.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskProcessingResult","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/tasks/{param}/taskProcessingResults","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskProcessingResult.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskProcessingResult","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskProcessingResultCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskProcessingResultCount","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/tasks/{param}/taskProcessingResults/$count","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskProcessingResultSubject.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskProcessingResultSubject","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/tasks/{param}/taskProcessingResults/{param}/subject","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskProcessingResultSubjectMailboxSetting.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskProcessingResultSubjectMailboxSetting","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/tasks/{param}/taskProcessingResults/{param}/subject/mailboxSettings","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskProcessingResultSubjectServiceProvisioningError.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskProcessingResultSubjectServiceProvisioningError","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/tasks/{param}/taskProcessingResults/{param}/subject/serviceProvisioningErrors","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskProcessingResultSubjectServiceProvisioningErrorCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskProcessingResultSubjectServiceProvisioningErrorCount","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/tasks/{param}/taskProcessingResults/{param}/subject/serviceProvisioningErrors/$count","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskProcessingResultTask.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskProcessingResultTask","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/tasks/{param}/taskProcessingResults/{param}/task","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReport_Get.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReport","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/taskReports/{param}","matched","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReport" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReport_List.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReport","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/taskReports","matched","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReport" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReport.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReport","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportCount","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/taskReports/$count","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportSummaryWithStartDateTimeWithEndDateTime.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportSummaryWithStartDateTimeWithEndDateTime","","","parameterized-function","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportTask.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportTask","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/taskReports/{param}/task","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportTaskDefinition.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportTaskDefinition","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/taskReports/{param}/taskDefinition","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportTaskProcessingResult_Get.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportTaskProcessingResult","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/taskReports/{param}/taskProcessingResults/{param}","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportTaskProcessingResult_List.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportTaskProcessingResult","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/taskReports/{param}/taskProcessingResults","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportTaskProcessingResult.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportTaskProcessingResult","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportTaskProcessingResultCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportTaskProcessingResultCount","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/taskReports/{param}/taskProcessingResults/$count","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportTaskProcessingResultSubject.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportTaskProcessingResultSubject","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/taskReports/{param}/taskProcessingResults/{param}/subject","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportTaskProcessingResultSubjectMailboxSetting.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportTaskProcessingResultSubjectMailboxSetting","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/taskReports/{param}/taskProcessingResults/{param}/subject/mailboxSettings","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportTaskProcessingResultSubjectServiceProvisioningError.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportTaskProcessingResultSubjectServiceProvisioningError","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/taskReports/{param}/taskProcessingResults/{param}/subject/serviceProvisioningErrors","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportTaskProcessingResultSubjectServiceProvisioningErrorCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportTaskProcessingResultSubjectServiceProvisioningErrorCount","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/taskReports/{param}/taskProcessingResults/{param}/subject/serviceProvisioningErrors/$count","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportTaskProcessingResultTask.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportTaskProcessingResultTask","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/taskReports/{param}/taskProcessingResults/{param}/task","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResult_Get.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResult","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/userProcessingResults/{param}","matched","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResult" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResult_List.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResult","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/userProcessingResults","matched","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResult" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResult.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResult","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultCount","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/userProcessingResults/$count","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultReprocessedRun_Get.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultReprocessedRun","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/userProcessingResults/{param}/reprocessedRuns/{param}","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultReprocessedRun_List.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultReprocessedRun","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/userProcessingResults/{param}/reprocessedRuns","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultReprocessedRun.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultReprocessedRun","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultReprocessedRunCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultReprocessedRunCount","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/userProcessingResults/{param}/reprocessedRuns/$count","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultSubject.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultSubject","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/userProcessingResults/{param}/subject","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultSubjectMailboxSetting.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultSubjectMailboxSetting","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/userProcessingResults/{param}/subject/mailboxSettings","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultSubjectServiceProvisioningError.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultSubjectServiceProvisioningError","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/userProcessingResults/{param}/subject/serviceProvisioningErrors","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultSubjectServiceProvisioningErrorCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultSubjectServiceProvisioningErrorCount","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/userProcessingResults/{param}/subject/serviceProvisioningErrors/$count","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultSummaryWithStartDateTimeWithEndDateTime.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultSummaryWithStartDateTimeWithEndDateTime","","","parameterized-function","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultTaskProcessingResult_Get.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultTaskProcessingResult","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/userProcessingResults/{param}/taskProcessingResults/{param}","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultTaskProcessingResult_List.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultTaskProcessingResult","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/userProcessingResults/{param}/taskProcessingResults","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultTaskProcessingResult.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultTaskProcessingResult","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultTaskProcessingResultCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultTaskProcessingResultCount","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/userProcessingResults/{param}/taskProcessingResults/$count","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultTaskProcessingResultSubject.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultTaskProcessingResultSubject","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/subject","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultTaskProcessingResultSubjectMailboxSetting.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultTaskProcessingResultSubjectMailboxSetting","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/subject/mailboxSettings","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultTaskProcessingResultSubjectServiceProvisioningError.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultTaskProcessingResultSubjectServiceProvisioningError","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/subject/serviceProvisioningErrors","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultTaskProcessingResultSubjectServiceProvisioningErrorCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultTaskProcessingResultSubjectServiceProvisioningErrorCount","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/subject/serviceProvisioningErrors/$count","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultTaskProcessingResultTask.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultTaskProcessingResultTask","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/task","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersion_Get.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersion","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}","matched","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersion" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersion_List.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersion","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions","matched","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersion" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersion.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersion","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionAdministrationScopeTarget_Get.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionAdministrationScopeTarget","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/administrationScopeTargets/{param}","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionAdministrationScopeTarget_List.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionAdministrationScopeTarget","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/administrationScopeTargets","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionAdministrationScopeTarget.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionAdministrationScopeTarget","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionAdministrationScopeTargetCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionAdministrationScopeTargetCount","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/administrationScopeTargets/$count","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionCount","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/$count","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionCreatedBy.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionCreatedBy","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/createdBy","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionCreatedByMailboxSetting.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionCreatedByMailboxSetting","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/createdBy/mailboxSettings","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionCreatedByServiceProvisioningError.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionCreatedByServiceProvisioningError","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/createdBy/serviceProvisioningErrors","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionCreatedByServiceProvisioningErrorCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionCreatedByServiceProvisioningErrorCount","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/createdBy/serviceProvisioningErrors/$count","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionLastModifiedBy.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionLastModifiedBy","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/lastModifiedBy","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionLastModifiedByMailboxSetting.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionLastModifiedByMailboxSetting","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/lastModifiedBy/mailboxSettings","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionLastModifiedByServiceProvisioningError.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionLastModifiedByServiceProvisioningError","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/lastModifiedBy/serviceProvisioningErrors","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionLastModifiedByServiceProvisioningErrorCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionLastModifiedByServiceProvisioningErrorCount","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/lastModifiedBy/serviceProvisioningErrors/$count","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTask_Get.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTask","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/tasks/{param}","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTask_List.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTask","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/tasks","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTask.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTask","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTaskCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTaskCount","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/tasks/$count","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTaskProcessingResult_Get.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTaskProcessingResult","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/tasks/{param}/taskProcessingResults/{param}","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTaskProcessingResult_List.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTaskProcessingResult","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/tasks/{param}/taskProcessingResults","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTaskProcessingResult.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTaskProcessingResult","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTaskProcessingResultCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTaskProcessingResultCount","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/tasks/{param}/taskProcessingResults/$count","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTaskProcessingResultSubject.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTaskProcessingResultSubject","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/tasks/{param}/taskProcessingResults/{param}/subject","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTaskProcessingResultSubjectMailboxSetting.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTaskProcessingResultSubjectMailboxSetting","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/tasks/{param}/taskProcessingResults/{param}/subject/mailboxSettings","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTaskProcessingResultSubjectServiceProvisioningError.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTaskProcessingResultSubjectServiceProvisioningError","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/tasks/{param}/taskProcessingResults/{param}/subject/serviceProvisioningErrors","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTaskProcessingResultSubjectServiceProvisioningErrorCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTaskProcessingResultSubjectServiceProvisioningErrorCount","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/tasks/{param}/taskProcessingResults/{param}/subject/serviceProvisioningErrors/$count","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTaskProcessingResultTask.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTaskProcessingResultTask","GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/tasks/{param}/taskProcessingResults/{param}/task","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowExecutionScope_Get.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowExecutionScope","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/executionScope/{param}","matched","Get-MgIdentityGovernanceLifecycleWorkflowExecutionScope" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowExecutionScope_List.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowExecutionScope","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/executionScope","matched","Get-MgIdentityGovernanceLifecycleWorkflowExecutionScope" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowExecutionScope.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowExecutionScope","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowExecutionScopeCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowExecutionScopeCount","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/executionScope/$count","matched","Get-MgIdentityGovernanceLifecycleWorkflowExecutionScopeCount" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowInsight.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowInsight","GET","/identityGovernance/lifecycleWorkflows/insights","matched","Get-MgIdentityGovernanceLifecycleWorkflowInsight" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowInsightTopTasksProcessedSummaryWithStartDateTimeWithEndDateTime.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowInsightTopTasksProcessedSummaryWithStartDateTimeWithEndDateTime","","","parameterized-function","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowInsightTopWorkflowsProcessedSummaryWithStartDateTimeWithEndDateTime.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowInsightTopWorkflowsProcessedSummaryWithStartDateTimeWithEndDateTime","","","parameterized-function","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowInsightWorkflowsProcessedByCategoryWithStartDateTimeWithEndDateTime.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowInsightWorkflowsProcessedByCategoryWithStartDateTimeWithEndDateTime","","","parameterized-function","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowInsightWorkflowsProcessedSummaryWithStartDateTimeWithEndDateTime.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowInsightWorkflowsProcessedSummaryWithStartDateTimeWithEndDateTime","","","parameterized-function","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowLastModifiedBy.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowLastModifiedBy","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/lastModifiedBy","matched","Get-MgIdentityGovernanceLifecycleWorkflowLastModifiedBy" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowLastModifiedByMailboxSetting.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowLastModifiedByMailboxSetting","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/lastModifiedBy/mailboxSettings","matched","Get-MgIdentityGovernanceLifecycleWorkflowLastModifiedByMailboxSetting" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowLastModifiedByServiceProvisioningError.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowLastModifiedByServiceProvisioningError","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/lastModifiedBy/serviceProvisioningErrors","matched","Get-MgIdentityGovernanceLifecycleWorkflowLastModifiedByServiceProvisioningError" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowLastModifiedByServiceProvisioningErrorCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowLastModifiedByServiceProvisioningErrorCount","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/lastModifiedBy/serviceProvisioningErrors/$count","matched","Get-MgIdentityGovernanceLifecycleWorkflowLastModifiedByServiceProvisioningErrorCount" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowPreviewScope_Get.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowPreviewScope","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/previewScope/{param}","matched","Get-MgIdentityGovernanceLifecycleWorkflowPreviewScope" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowPreviewScope_List.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowPreviewScope","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/previewScope","matched","Get-MgIdentityGovernanceLifecycleWorkflowPreviewScope" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowPreviewScope.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowPreviewScope","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowPreviewScopeCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowPreviewScopeCount","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/previewScope/$count","matched","Get-MgIdentityGovernanceLifecycleWorkflowPreviewScopeCount" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowRun_Get.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowRun","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}","matched","Get-MgIdentityGovernanceLifecycleWorkflowRun" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowRun_List.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowRun","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/runs","matched","Get-MgIdentityGovernanceLifecycleWorkflowRun" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowRun.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowRun","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowRunCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowRunCount","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/runs/$count","matched","Get-MgIdentityGovernanceLifecycleWorkflowRunCount" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowRunReprocessedRun_Get.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowRunReprocessedRun","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/reprocessedRuns/{param}","matched","Get-MgIdentityGovernanceLifecycleWorkflowRunReprocessedRun" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowRunReprocessedRun_List.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowRunReprocessedRun","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/reprocessedRuns","matched","Get-MgIdentityGovernanceLifecycleWorkflowRunReprocessedRun" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowRunReprocessedRun.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowRunReprocessedRun","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowRunReprocessedRunCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowRunReprocessedRunCount","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/reprocessedRuns/$count","matched","Get-MgIdentityGovernanceLifecycleWorkflowRunReprocessedRunCount" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowRunSummaryWithStartDateTimeWithEndDateTime.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowRunSummaryWithStartDateTimeWithEndDateTime","","","parameterized-function","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowRunTaskProcessingResult_Get.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowRunTaskProcessingResult","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/taskProcessingResults/{param}","matched","Get-MgIdentityGovernanceLifecycleWorkflowRunTaskProcessingResult" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowRunTaskProcessingResult_List.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowRunTaskProcessingResult","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/taskProcessingResults","matched","Get-MgIdentityGovernanceLifecycleWorkflowRunTaskProcessingResult" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowRunTaskProcessingResult.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowRunTaskProcessingResult","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowRunTaskProcessingResultCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowRunTaskProcessingResultCount","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/taskProcessingResults/$count","matched","Get-MgIdentityGovernanceLifecycleWorkflowRunTaskProcessingResultCount" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowRunTaskProcessingResultSubject.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowRunTaskProcessingResultSubject","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/taskProcessingResults/{param}/subject","matched","Get-MgIdentityGovernanceLifecycleWorkflowRunTaskProcessingResultSubject" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowRunTaskProcessingResultSubjectMailboxSetting.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowRunTaskProcessingResultSubjectMailboxSetting","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/taskProcessingResults/{param}/subject/mailboxSettings","matched","Get-MgIdentityGovernanceLifecycleWorkflowRunTaskProcessingResultSubjectMailboxSetting" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowRunTaskProcessingResultSubjectServiceProvisioningError.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowRunTaskProcessingResultSubjectServiceProvisioningError","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/taskProcessingResults/{param}/subject/serviceProvisioningErrors","matched","Get-MgIdentityGovernanceLifecycleWorkflowRunTaskProcessingResultSubjectServiceProvisioningError" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowRunTaskProcessingResultSubjectServiceProvisioningErrorCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowRunTaskProcessingResultSubjectServiceProvisioningErrorCount","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/taskProcessingResults/{param}/subject/serviceProvisioningErrors/$count","matched","Get-MgIdentityGovernanceLifecycleWorkflowRunTaskProcessingResultSubjectServiceProvisioningErrorCount" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowRunTaskProcessingResultTask.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowRunTaskProcessingResultTask","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/taskProcessingResults/{param}/task","matched","Get-MgIdentityGovernanceLifecycleWorkflowRunTaskProcessingResultTask" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowRunUserProcessingResult_Get.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResult","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/userProcessingResults/{param}","matched","Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResult" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowRunUserProcessingResult_List.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResult","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/userProcessingResults","matched","Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResult" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowRunUserProcessingResult.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResult","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultCount","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/userProcessingResults/$count","matched","Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultCount" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultReprocessedRun_Get.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultReprocessedRun","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/userProcessingResults/{param}/reprocessedRuns/{param}","matched","Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultReprocessedRun" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultReprocessedRun_List.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultReprocessedRun","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/userProcessingResults/{param}/reprocessedRuns","matched","Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultReprocessedRun" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultReprocessedRun.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultReprocessedRun","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultReprocessedRunCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultReprocessedRunCount","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/userProcessingResults/{param}/reprocessedRuns/$count","matched","Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultReprocessedRunCount" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultSubject.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultSubject","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/userProcessingResults/{param}/subject","matched","Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultSubject" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultSubjectMailboxSetting.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultSubjectMailboxSetting","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/userProcessingResults/{param}/subject/mailboxSettings","matched","Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultSubjectMailboxSetting" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultSubjectServiceProvisioningError.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultSubjectServiceProvisioningError","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/userProcessingResults/{param}/subject/serviceProvisioningErrors","matched","Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultSubjectServiceProvisioningError" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultSubjectServiceProvisioningErrorCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultSubjectServiceProvisioningErrorCount","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/userProcessingResults/{param}/subject/serviceProvisioningErrors/$count","matched","Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultSubjectServiceProvisioningErrorCount" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultSummaryWithStartDateTimeWithEndDateTime.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultSummaryWithStartDateTimeWithEndDateTime","","","parameterized-function","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultTaskProcessingResult_Get.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultTaskProcessingResult","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/userProcessingResults/{param}/taskProcessingResults/{param}","matched","Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultTaskProcessingResult" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultTaskProcessingResult_List.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultTaskProcessingResult","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/userProcessingResults/{param}/taskProcessingResults","matched","Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultTaskProcessingResult" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultTaskProcessingResult.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultTaskProcessingResult","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultTaskProcessingResultCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultTaskProcessingResultCount","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/userProcessingResults/{param}/taskProcessingResults/$count","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultTaskProcessingResultSubject.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultTaskProcessingResultSubject","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/subject","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultTaskProcessingResultSubjectMailboxSetting.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultTaskProcessingResultSubjectMailboxSetting","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/subject/mailboxSettings","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultTaskProcessingResultSubjectServiceProvisioningError.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultTaskProcessingResultSubjectServiceProvisioningError","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/subject/serviceProvisioningErrors","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultTaskProcessingResultSubjectServiceProvisioningErrorCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultTaskProcessingResultSubjectServiceProvisioningErrorCount","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/subject/serviceProvisioningErrors/$count","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultTaskProcessingResultTask.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultTaskProcessingResultTask","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/task","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowSetting.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowSetting","GET","/identityGovernance/lifecycleWorkflows/settings","matched","Get-MgIdentityGovernanceLifecycleWorkflowSetting" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowTask_Get.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowTask","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/tasks/{param}","matched","Get-MgIdentityGovernanceLifecycleWorkflowTask" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowTask_List.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowTask","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/tasks","matched","Get-MgIdentityGovernanceLifecycleWorkflowTask" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowTask.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowTask","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowTaskCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowTaskCount","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/tasks/$count","matched","Get-MgIdentityGovernanceLifecycleWorkflowTaskCount" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowTaskDefinition_Get.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowTaskDefinition","GET","/identityGovernance/lifecycleWorkflows/taskDefinitions/{param}","matched","Get-MgIdentityGovernanceLifecycleWorkflowTaskDefinition" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowTaskDefinition_List.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowTaskDefinition","GET","/identityGovernance/lifecycleWorkflows/taskDefinitions","matched","Get-MgIdentityGovernanceLifecycleWorkflowTaskDefinition" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowTaskDefinition.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowTaskDefinition","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowTaskDefinitionCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowTaskDefinitionCount","GET","/identityGovernance/lifecycleWorkflows/taskDefinitions/$count","matched","Get-MgIdentityGovernanceLifecycleWorkflowTaskDefinitionCount" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowTaskProcessingResult_Get.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowTaskProcessingResult","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/tasks/{param}/taskProcessingResults/{param}","matched","Get-MgIdentityGovernanceLifecycleWorkflowTaskProcessingResult" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowTaskProcessingResult_List.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowTaskProcessingResult","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/tasks/{param}/taskProcessingResults","matched","Get-MgIdentityGovernanceLifecycleWorkflowTaskProcessingResult" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowTaskProcessingResult.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowTaskProcessingResult","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowTaskProcessingResultCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowTaskProcessingResultCount","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/tasks/{param}/taskProcessingResults/$count","matched","Get-MgIdentityGovernanceLifecycleWorkflowTaskProcessingResultCount" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowTaskProcessingResultSubject.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowTaskProcessingResultSubject","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/tasks/{param}/taskProcessingResults/{param}/subject","matched","Get-MgIdentityGovernanceLifecycleWorkflowTaskProcessingResultSubject" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowTaskProcessingResultSubjectMailboxSetting.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowTaskProcessingResultSubjectMailboxSetting","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/tasks/{param}/taskProcessingResults/{param}/subject/mailboxSettings","matched","Get-MgIdentityGovernanceLifecycleWorkflowTaskProcessingResultSubjectMailboxSetting" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowTaskProcessingResultSubjectServiceProvisioningError.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowTaskProcessingResultSubjectServiceProvisioningError","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/tasks/{param}/taskProcessingResults/{param}/subject/serviceProvisioningErrors","matched","Get-MgIdentityGovernanceLifecycleWorkflowTaskProcessingResultSubjectServiceProvisioningError" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowTaskProcessingResultSubjectServiceProvisioningErrorCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowTaskProcessingResultSubjectServiceProvisioningErrorCount","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/tasks/{param}/taskProcessingResults/{param}/subject/serviceProvisioningErrors/$count","matched","Get-MgIdentityGovernanceLifecycleWorkflowTaskProcessingResultSubjectServiceProvisioningErrorCount" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowTaskProcessingResultTask.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowTaskProcessingResultTask","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/tasks/{param}/taskProcessingResults/{param}/task","matched","Get-MgIdentityGovernanceLifecycleWorkflowTaskProcessingResultTask" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowTaskReport_Get.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowTaskReport","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/taskReports/{param}","matched","Get-MgIdentityGovernanceLifecycleWorkflowTaskReport" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowTaskReport_List.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowTaskReport","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/taskReports","matched","Get-MgIdentityGovernanceLifecycleWorkflowTaskReport" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowTaskReport.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowTaskReport","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowTaskReportCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowTaskReportCount","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/taskReports/$count","matched","Get-MgIdentityGovernanceLifecycleWorkflowTaskReportCount" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowTaskReportSummaryWithStartDateTimeWithEndDateTime.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowTaskReportSummaryWithStartDateTimeWithEndDateTime","","","parameterized-function","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowTaskReportTask.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowTaskReportTask","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/taskReports/{param}/task","matched","Get-MgIdentityGovernanceLifecycleWorkflowTaskReportTask" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowTaskReportTaskDefinition.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowTaskReportTaskDefinition","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/taskReports/{param}/taskDefinition","matched","Get-MgIdentityGovernanceLifecycleWorkflowTaskReportTaskDefinition" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResult_Get.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResult","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/taskReports/{param}/taskProcessingResults/{param}","matched","Get-MgIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResult" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResult_List.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResult","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/taskReports/{param}/taskProcessingResults","matched","Get-MgIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResult" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResult.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResult","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResultCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResultCount","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/taskReports/{param}/taskProcessingResults/$count","matched","Get-MgIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResultCount" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResultSubject.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResultSubject","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/taskReports/{param}/taskProcessingResults/{param}/subject","matched","Get-MgIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResultSubject" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResultSubjectMailboxSetting.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResultSubjectMailboxSetting","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/taskReports/{param}/taskProcessingResults/{param}/subject/mailboxSettings","matched","Get-MgIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResultSubjectMailboxSetting" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResultSubjectServiceProvisioningError.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResultSubjectServiceProvisioningError","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/taskReports/{param}/taskProcessingResults/{param}/subject/serviceProvisioningErrors","matched","Get-MgIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResultSubjectServiceProvisioningError" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResultSubjectServiceProvisioningErrorCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResultSubjectServiceProvisioningErrorCount","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/taskReports/{param}/taskProcessingResults/{param}/subject/serviceProvisioningErrors/$count","matched","Get-MgIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResultSubjectServiceProvisioningErrorCount" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResultTask.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResultTask","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/taskReports/{param}/taskProcessingResults/{param}/task","matched","Get-MgIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResultTask" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowTemplate_Get.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowTemplate","GET","/identityGovernance/lifecycleWorkflows/workflowTemplates/{param}","matched","Get-MgIdentityGovernanceLifecycleWorkflowTemplate" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowTemplate_List.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowTemplate","GET","/identityGovernance/lifecycleWorkflows/workflowTemplates","matched","Get-MgIdentityGovernanceLifecycleWorkflowTemplate" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowTemplate.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowTemplate","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowTemplateCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowTemplateCount","GET","/identityGovernance/lifecycleWorkflows/workflowTemplates/$count","matched","Get-MgIdentityGovernanceLifecycleWorkflowTemplateCount" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowTemplateTask_Get.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowTemplateTask","GET","/identityGovernance/lifecycleWorkflows/workflowTemplates/{param}/tasks/{param}","matched","Get-MgIdentityGovernanceLifecycleWorkflowTemplateTask" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowTemplateTask_List.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowTemplateTask","GET","/identityGovernance/lifecycleWorkflows/workflowTemplates/{param}/tasks","matched","Get-MgIdentityGovernanceLifecycleWorkflowTemplateTask" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowTemplateTask.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowTemplateTask","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowTemplateTaskCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowTemplateTaskCount","GET","/identityGovernance/lifecycleWorkflows/workflowTemplates/{param}/tasks/$count","matched","Get-MgIdentityGovernanceLifecycleWorkflowTemplateTaskCount" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResult_Get.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResult","GET","/identityGovernance/lifecycleWorkflows/workflowTemplates/{param}/tasks/{param}/taskProcessingResults/{param}","matched","Get-MgIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResult" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResult_List.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResult","GET","/identityGovernance/lifecycleWorkflows/workflowTemplates/{param}/tasks/{param}/taskProcessingResults","matched","Get-MgIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResult" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResult.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResult","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResultCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResultCount","GET","/identityGovernance/lifecycleWorkflows/workflowTemplates/{param}/tasks/{param}/taskProcessingResults/$count","matched","Get-MgIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResultCount" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResultSubject.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResultSubject","GET","/identityGovernance/lifecycleWorkflows/workflowTemplates/{param}/tasks/{param}/taskProcessingResults/{param}/subject","matched","Get-MgIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResultSubject" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResultSubjectMailboxSetting.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResultSubjectMailboxSetting","GET","/identityGovernance/lifecycleWorkflows/workflowTemplates/{param}/tasks/{param}/taskProcessingResults/{param}/subject/mailboxSettings","matched","Get-MgIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResultSubjectMailboxSetting" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResultSubjectServiceProvisioningError.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResultSubjectServiceProvisioningError","GET","/identityGovernance/lifecycleWorkflows/workflowTemplates/{param}/tasks/{param}/taskProcessingResults/{param}/subject/serviceProvisioningErrors","matched","Get-MgIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResultSubjectServiceProvisioningError" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResultSubjectServiceProvisioningErrorCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResultSubjectServiceProvisioningErrorCount","GET","/identityGovernance/lifecycleWorkflows/workflowTemplates/{param}/tasks/{param}/taskProcessingResults/{param}/subject/serviceProvisioningErrors/$count","matched","Get-MgIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResultSubjectServiceProvisioningErrorCount" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResultTask.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResultTask","GET","/identityGovernance/lifecycleWorkflows/workflowTemplates/{param}/tasks/{param}/taskProcessingResults/{param}/task","matched","Get-MgIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResultTask" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowUserProcessingResult_Get.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResult","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/userProcessingResults/{param}","matched","Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResult" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowUserProcessingResult_List.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResult","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/userProcessingResults","matched","Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResult" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowUserProcessingResult.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResult","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowUserProcessingResultCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultCount","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/userProcessingResults/$count","matched","Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultCount" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowUserProcessingResultReprocessedRun_Get.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultReprocessedRun","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/userProcessingResults/{param}/reprocessedRuns/{param}","matched","Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultReprocessedRun" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowUserProcessingResultReprocessedRun_List.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultReprocessedRun","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/userProcessingResults/{param}/reprocessedRuns","matched","Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultReprocessedRun" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowUserProcessingResultReprocessedRun.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultReprocessedRun","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowUserProcessingResultReprocessedRunCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultReprocessedRunCount","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/userProcessingResults/{param}/reprocessedRuns/$count","matched","Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultReprocessedRunCount" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowUserProcessingResultSubject.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultSubject","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/userProcessingResults/{param}/subject","matched","Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultSubject" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowUserProcessingResultSubjectMailboxSetting.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultSubjectMailboxSetting","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/userProcessingResults/{param}/subject/mailboxSettings","matched","Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultSubjectMailboxSetting" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowUserProcessingResultSubjectServiceProvisioningError.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultSubjectServiceProvisioningError","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/userProcessingResults/{param}/subject/serviceProvisioningErrors","matched","Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultSubjectServiceProvisioningError" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowUserProcessingResultSubjectServiceProvisioningErrorCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultSubjectServiceProvisioningErrorCount","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/userProcessingResults/{param}/subject/serviceProvisioningErrors/$count","matched","Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultSubjectServiceProvisioningErrorCount" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowUserProcessingResultSummaryWithStartDateTimeWithEndDateTime.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultSummaryWithStartDateTimeWithEndDateTime","","","parameterized-function","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowUserProcessingResultTaskProcessingResult_Get.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultTaskProcessingResult","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/userProcessingResults/{param}/taskProcessingResults/{param}","matched","Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultTaskProcessingResult" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowUserProcessingResultTaskProcessingResult_List.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultTaskProcessingResult","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/userProcessingResults/{param}/taskProcessingResults","matched","Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultTaskProcessingResult" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowUserProcessingResultTaskProcessingResult.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultTaskProcessingResult","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowUserProcessingResultTaskProcessingResultCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultTaskProcessingResultCount","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/userProcessingResults/{param}/taskProcessingResults/$count","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowUserProcessingResultTaskProcessingResultSubject.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultTaskProcessingResultSubject","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/subject","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowUserProcessingResultTaskProcessingResultSubjectMailboxSetting.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultTaskProcessingResultSubjectMailboxSetting","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/subject/mailboxSettings","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowUserProcessingResultTaskProcessingResultSubjectServiceProvisioningError.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultTaskProcessingResultSubjectServiceProvisioningError","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/subject/serviceProvisioningErrors","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowUserProcessingResultTaskProcessingResultSubjectServiceProvisioningErrorCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultTaskProcessingResultSubjectServiceProvisioningErrorCount","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/subject/serviceProvisioningErrors/$count","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowUserProcessingResultTaskProcessingResultTask.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultTaskProcessingResultTask","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/task","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowVersion_Get.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowVersion","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/versions/{param}","matched","Get-MgIdentityGovernanceLifecycleWorkflowVersion" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowVersion_List.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowVersion","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/versions","matched","Get-MgIdentityGovernanceLifecycleWorkflowVersion" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowVersion.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowVersion","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowVersionAdministrationScopeTarget_Get.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowVersionAdministrationScopeTarget","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/versions/{param}/administrationScopeTargets/{param}","matched","Get-MgIdentityGovernanceLifecycleWorkflowVersionAdministrationScopeTarget" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowVersionAdministrationScopeTarget_List.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowVersionAdministrationScopeTarget","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/versions/{param}/administrationScopeTargets","matched","Get-MgIdentityGovernanceLifecycleWorkflowVersionAdministrationScopeTarget" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowVersionAdministrationScopeTarget.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowVersionAdministrationScopeTarget","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowVersionAdministrationScopeTargetCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowVersionAdministrationScopeTargetCount","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/versions/{param}/administrationScopeTargets/$count","matched","Get-MgIdentityGovernanceLifecycleWorkflowVersionAdministrationScopeTargetCount" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowVersionCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowVersionCount","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/versions/$count","matched","Get-MgIdentityGovernanceLifecycleWorkflowVersionCount" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowVersionCreatedBy.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowVersionCreatedBy","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/versions/{param}/createdBy","matched","Get-MgIdentityGovernanceLifecycleWorkflowVersionCreatedBy" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowVersionCreatedByMailboxSetting.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowVersionCreatedByMailboxSetting","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/versions/{param}/createdBy/mailboxSettings","matched","Get-MgIdentityGovernanceLifecycleWorkflowVersionCreatedByMailboxSetting" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowVersionCreatedByServiceProvisioningError.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowVersionCreatedByServiceProvisioningError","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/versions/{param}/createdBy/serviceProvisioningErrors","matched","Get-MgIdentityGovernanceLifecycleWorkflowVersionCreatedByServiceProvisioningError" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowVersionCreatedByServiceProvisioningErrorCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowVersionCreatedByServiceProvisioningErrorCount","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/versions/{param}/createdBy/serviceProvisioningErrors/$count","matched","Get-MgIdentityGovernanceLifecycleWorkflowVersionCreatedByServiceProvisioningErrorCount" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowVersionLastModifiedBy.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowVersionLastModifiedBy","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/versions/{param}/lastModifiedBy","matched","Get-MgIdentityGovernanceLifecycleWorkflowVersionLastModifiedBy" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowVersionLastModifiedByMailboxSetting.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowVersionLastModifiedByMailboxSetting","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/versions/{param}/lastModifiedBy/mailboxSettings","matched","Get-MgIdentityGovernanceLifecycleWorkflowVersionLastModifiedByMailboxSetting" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowVersionLastModifiedByServiceProvisioningError.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowVersionLastModifiedByServiceProvisioningError","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/versions/{param}/lastModifiedBy/serviceProvisioningErrors","matched","Get-MgIdentityGovernanceLifecycleWorkflowVersionLastModifiedByServiceProvisioningError" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowVersionLastModifiedByServiceProvisioningErrorCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowVersionLastModifiedByServiceProvisioningErrorCount","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/versions/{param}/lastModifiedBy/serviceProvisioningErrors/$count","matched","Get-MgIdentityGovernanceLifecycleWorkflowVersionLastModifiedByServiceProvisioningErrorCount" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowVersionTask_Get.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowVersionTask","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/versions/{param}/tasks/{param}","matched","Get-MgIdentityGovernanceLifecycleWorkflowVersionTask" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowVersionTask_List.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowVersionTask","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/versions/{param}/tasks","matched","Get-MgIdentityGovernanceLifecycleWorkflowVersionTask" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowVersionTask.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowVersionTask","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowVersionTaskCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowVersionTaskCount","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/versions/{param}/tasks/$count","matched","Get-MgIdentityGovernanceLifecycleWorkflowVersionTaskCount" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResult_Get.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResult","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/versions/{param}/tasks/{param}/taskProcessingResults/{param}","matched","Get-MgIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResult" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResult_List.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResult","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/versions/{param}/tasks/{param}/taskProcessingResults","matched","Get-MgIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResult" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResult.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResult","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResultCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResultCount","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/versions/{param}/tasks/{param}/taskProcessingResults/$count","matched","Get-MgIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResultCount" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResultSubject.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResultSubject","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/versions/{param}/tasks/{param}/taskProcessingResults/{param}/subject","matched","Get-MgIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResultSubject" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResultSubjectMailboxSetting.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResultSubjectMailboxSetting","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/versions/{param}/tasks/{param}/taskProcessingResults/{param}/subject/mailboxSettings","matched","Get-MgIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResultSubjectMailboxSetting" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResultSubjectServiceProvisioningError.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResultSubjectServiceProvisioningError","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/versions/{param}/tasks/{param}/taskProcessingResults/{param}/subject/serviceProvisioningErrors","matched","Get-MgIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResultSubjectServiceProvisioningError" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResultSubjectServiceProvisioningErrorCount.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResultSubjectServiceProvisioningErrorCount","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/versions/{param}/tasks/{param}/taskProcessingResults/{param}/subject/serviceProvisioningErrors/$count","matched","Get-MgIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResultSubjectServiceProvisioningErrorCount" +"Identity.Governance","GetMgIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResultTask.g.cs","v1.0","Get-MgIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResultTask","GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/versions/{param}/tasks/{param}/taskProcessingResults/{param}/task","matched","Get-MgIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResultTask" +"Identity.Governance","GetMgIdentityGovernancePrivilegedAccess.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccess","GET","/identityGovernance/privilegedAccess","matched","Get-MgIdentityGovernancePrivilegedAccess" +"Identity.Governance","GetMgIdentityGovernancePrivilegedAccessGroup.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroup","GET","/identityGovernance/privilegedAccess/group","matched","Get-MgIdentityGovernancePrivilegedAccessGroup" +"Identity.Governance","GetMgIdentityGovernancePrivilegedAccessGroupAssignmentApproval_Get.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentApproval","GET","/identityGovernance/privilegedAccess/group/assignmentApprovals/{param}","matched","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentApproval" +"Identity.Governance","GetMgIdentityGovernancePrivilegedAccessGroupAssignmentApproval_List.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentApproval","GET","/identityGovernance/privilegedAccess/group/assignmentApprovals","matched","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentApproval" +"Identity.Governance","GetMgIdentityGovernancePrivilegedAccessGroupAssignmentApproval.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentApproval","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernancePrivilegedAccessGroupAssignmentApprovalCount.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentApprovalCount","GET","/identityGovernance/privilegedAccess/group/assignmentApprovals/$count","matched","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentApprovalCount" +"Identity.Governance","GetMgIdentityGovernancePrivilegedAccessGroupAssignmentApprovalFilterByCurrentUserWithOn.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentApprovalFilterByCurrentUserWithOn","","","parameterized-function","" +"Identity.Governance","GetMgIdentityGovernancePrivilegedAccessGroupAssignmentApprovalStage_Get.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentApprovalStage","GET","/identityGovernance/privilegedAccess/group/assignmentApprovals/{param}/stages/{param}","matched","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentApprovalStage" +"Identity.Governance","GetMgIdentityGovernancePrivilegedAccessGroupAssignmentApprovalStage_List.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentApprovalStage","GET","/identityGovernance/privilegedAccess/group/assignmentApprovals/{param}/stages","matched","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentApprovalStage" +"Identity.Governance","GetMgIdentityGovernancePrivilegedAccessGroupAssignmentApprovalStage.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentApprovalStage","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernancePrivilegedAccessGroupAssignmentApprovalStageCount.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentApprovalStageCount","GET","/identityGovernance/privilegedAccess/group/assignmentApprovals/{param}/stages/$count","matched","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentApprovalStageCount" +"Identity.Governance","GetMgIdentityGovernancePrivilegedAccessGroupAssignmentSchedule_Get.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentSchedule","GET","/identityGovernance/privilegedAccess/group/assignmentSchedules/{param}","matched","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentSchedule" +"Identity.Governance","GetMgIdentityGovernancePrivilegedAccessGroupAssignmentSchedule_List.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentSchedule","GET","/identityGovernance/privilegedAccess/group/assignmentSchedules","matched","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentSchedule" +"Identity.Governance","GetMgIdentityGovernancePrivilegedAccessGroupAssignmentSchedule.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentSchedule","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleActivatedUsing.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleActivatedUsing","GET","/identityGovernance/privilegedAccess/group/assignmentSchedules/{param}/activatedUsing","matched","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleActivatedUsing" +"Identity.Governance","GetMgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleCount.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleCount","GET","/identityGovernance/privilegedAccess/group/assignmentSchedules/$count","matched","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleCount" +"Identity.Governance","GetMgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleFilterByCurrentUserWithOn.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleFilterByCurrentUserWithOn","","","parameterized-function","" +"Identity.Governance","GetMgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleGroup.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleGroup","GET","/identityGovernance/privilegedAccess/group/assignmentSchedules/{param}/group","matched","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleGroup" +"Identity.Governance","GetMgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleGroupServiceProvisioningError.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleGroupServiceProvisioningError","GET","/identityGovernance/privilegedAccess/group/assignmentSchedules/{param}/group/serviceProvisioningErrors","matched","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleGroupServiceProvisioningError" +"Identity.Governance","GetMgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleGroupServiceProvisioningErrorCount.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleGroupServiceProvisioningErrorCount","GET","/identityGovernance/privilegedAccess/group/assignmentSchedules/{param}/group/serviceProvisioningErrors/$count","matched","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleGroupServiceProvisioningErrorCount" +"Identity.Governance","GetMgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstance_Get.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstance","GET","/identityGovernance/privilegedAccess/group/assignmentScheduleInstances/{param}","matched","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstance" +"Identity.Governance","GetMgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstance_List.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstance","GET","/identityGovernance/privilegedAccess/group/assignmentScheduleInstances","matched","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstance" +"Identity.Governance","GetMgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstance.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstance","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstanceActivatedUsing.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstanceActivatedUsing","GET","/identityGovernance/privilegedAccess/group/assignmentScheduleInstances/{param}/activatedUsing","matched","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstanceActivatedUsing" +"Identity.Governance","GetMgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstanceCount.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstanceCount","GET","/identityGovernance/privilegedAccess/group/assignmentScheduleInstances/$count","matched","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstanceCount" +"Identity.Governance","GetMgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstanceFilterByCurrentUserWithOn.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstanceFilterByCurrentUserWithOn","","","parameterized-function","" +"Identity.Governance","GetMgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstanceGroup.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstanceGroup","GET","/identityGovernance/privilegedAccess/group/assignmentScheduleInstances/{param}/group","matched","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstanceGroup" +"Identity.Governance","GetMgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstanceGroupServiceProvisioningError.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstanceGroupServiceProvisioningError","GET","/identityGovernance/privilegedAccess/group/assignmentScheduleInstances/{param}/group/serviceProvisioningErrors","matched","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstanceGroupServiceProvisioningError" +"Identity.Governance","GetMgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstanceGroupServiceProvisioningErrorCount.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstanceGroupServiceProvisioningErrorCount","GET","/identityGovernance/privilegedAccess/group/assignmentScheduleInstances/{param}/group/serviceProvisioningErrors/$count","matched","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstanceGroupServiceProvisioningErrorCount" +"Identity.Governance","GetMgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstancePrincipal.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstancePrincipal","GET","/identityGovernance/privilegedAccess/group/assignmentScheduleInstances/{param}/principal","matched","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstancePrincipal" +"Identity.Governance","GetMgIdentityGovernancePrivilegedAccessGroupAssignmentSchedulePrincipal.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentSchedulePrincipal","GET","/identityGovernance/privilegedAccess/group/assignmentSchedules/{param}/principal","matched","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentSchedulePrincipal" +"Identity.Governance","GetMgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequest_Get.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequest","GET","/identityGovernance/privilegedAccess/group/assignmentScheduleRequests/{param}","matched","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequest" +"Identity.Governance","GetMgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequest_List.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequest","GET","/identityGovernance/privilegedAccess/group/assignmentScheduleRequests","matched","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequest" +"Identity.Governance","GetMgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequest.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequest","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestActivatedUsing.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestActivatedUsing","GET","/identityGovernance/privilegedAccess/group/assignmentScheduleRequests/{param}/activatedUsing","matched","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestActivatedUsing" +"Identity.Governance","GetMgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestCount.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestCount","GET","/identityGovernance/privilegedAccess/group/assignmentScheduleRequests/$count","matched","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestCount" +"Identity.Governance","GetMgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestFilterByCurrentUserWithOn.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestFilterByCurrentUserWithOn","","","parameterized-function","" +"Identity.Governance","GetMgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestGroup.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestGroup","GET","/identityGovernance/privilegedAccess/group/assignmentScheduleRequests/{param}/group","matched","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestGroup" +"Identity.Governance","GetMgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestGroupServiceProvisioningError.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestGroupServiceProvisioningError","GET","/identityGovernance/privilegedAccess/group/assignmentScheduleRequests/{param}/group/serviceProvisioningErrors","matched","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestGroupServiceProvisioningError" +"Identity.Governance","GetMgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestGroupServiceProvisioningErrorCount.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestGroupServiceProvisioningErrorCount","GET","/identityGovernance/privilegedAccess/group/assignmentScheduleRequests/{param}/group/serviceProvisioningErrors/$count","matched","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestGroupServiceProvisioningErrorCount" +"Identity.Governance","GetMgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestPrincipal.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestPrincipal","GET","/identityGovernance/privilegedAccess/group/assignmentScheduleRequests/{param}/principal","matched","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestPrincipal" +"Identity.Governance","GetMgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestTargetSchedule.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestTargetSchedule","GET","/identityGovernance/privilegedAccess/group/assignmentScheduleRequests/{param}/targetSchedule","matched","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestTargetSchedule" +"Identity.Governance","GetMgIdentityGovernancePrivilegedAccessGroupEligibilitySchedule_Get.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilitySchedule","GET","/identityGovernance/privilegedAccess/group/eligibilitySchedules/{param}","matched","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilitySchedule" +"Identity.Governance","GetMgIdentityGovernancePrivilegedAccessGroupEligibilitySchedule_List.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilitySchedule","GET","/identityGovernance/privilegedAccess/group/eligibilitySchedules","matched","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilitySchedule" +"Identity.Governance","GetMgIdentityGovernancePrivilegedAccessGroupEligibilitySchedule.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilitySchedule","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleCount.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleCount","GET","/identityGovernance/privilegedAccess/group/eligibilitySchedules/$count","matched","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleCount" +"Identity.Governance","GetMgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleFilterByCurrentUserWithOn.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleFilterByCurrentUserWithOn","","","parameterized-function","" +"Identity.Governance","GetMgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleGroup.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleGroup","GET","/identityGovernance/privilegedAccess/group/eligibilitySchedules/{param}/group","matched","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleGroup" +"Identity.Governance","GetMgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleGroupServiceProvisioningError.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleGroupServiceProvisioningError","GET","/identityGovernance/privilegedAccess/group/eligibilitySchedules/{param}/group/serviceProvisioningErrors","matched","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleGroupServiceProvisioningError" +"Identity.Governance","GetMgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleGroupServiceProvisioningErrorCount.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleGroupServiceProvisioningErrorCount","GET","/identityGovernance/privilegedAccess/group/eligibilitySchedules/{param}/group/serviceProvisioningErrors/$count","matched","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleGroupServiceProvisioningErrorCount" +"Identity.Governance","GetMgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstance_Get.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstance","GET","/identityGovernance/privilegedAccess/group/eligibilityScheduleInstances/{param}","matched","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstance" +"Identity.Governance","GetMgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstance_List.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstance","GET","/identityGovernance/privilegedAccess/group/eligibilityScheduleInstances","matched","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstance" +"Identity.Governance","GetMgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstance.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstance","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstanceCount.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstanceCount","GET","/identityGovernance/privilegedAccess/group/eligibilityScheduleInstances/$count","matched","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstanceCount" +"Identity.Governance","GetMgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstanceFilterByCurrentUserWithOn.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstanceFilterByCurrentUserWithOn","","","parameterized-function","" +"Identity.Governance","GetMgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstanceGroup.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstanceGroup","GET","/identityGovernance/privilegedAccess/group/eligibilityScheduleInstances/{param}/group","matched","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstanceGroup" +"Identity.Governance","GetMgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstanceGroupServiceProvisioningError.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstanceGroupServiceProvisioningError","GET","/identityGovernance/privilegedAccess/group/eligibilityScheduleInstances/{param}/group/serviceProvisioningErrors","matched","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstanceGroupServiceProvisioningError" +"Identity.Governance","GetMgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstanceGroupServiceProvisioningErrorCount.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstanceGroupServiceProvisioningErrorCount","GET","/identityGovernance/privilegedAccess/group/eligibilityScheduleInstances/{param}/group/serviceProvisioningErrors/$count","matched","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstanceGroupServiceProvisioningErrorCount" +"Identity.Governance","GetMgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstancePrincipal.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstancePrincipal","GET","/identityGovernance/privilegedAccess/group/eligibilityScheduleInstances/{param}/principal","matched","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstancePrincipal" +"Identity.Governance","GetMgIdentityGovernancePrivilegedAccessGroupEligibilitySchedulePrincipal.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilitySchedulePrincipal","GET","/identityGovernance/privilegedAccess/group/eligibilitySchedules/{param}/principal","matched","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilitySchedulePrincipal" +"Identity.Governance","GetMgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequest_Get.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequest","GET","/identityGovernance/privilegedAccess/group/eligibilityScheduleRequests/{param}","matched","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequest" +"Identity.Governance","GetMgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequest_List.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequest","GET","/identityGovernance/privilegedAccess/group/eligibilityScheduleRequests","matched","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequest" +"Identity.Governance","GetMgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequest.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequest","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequestCount.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequestCount","GET","/identityGovernance/privilegedAccess/group/eligibilityScheduleRequests/$count","matched","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequestCount" +"Identity.Governance","GetMgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequestFilterByCurrentUserWithOn.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequestFilterByCurrentUserWithOn","","","parameterized-function","" +"Identity.Governance","GetMgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequestGroup.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequestGroup","GET","/identityGovernance/privilegedAccess/group/eligibilityScheduleRequests/{param}/group","matched","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequestGroup" +"Identity.Governance","GetMgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequestGroupServiceProvisioningError.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequestGroupServiceProvisioningError","GET","/identityGovernance/privilegedAccess/group/eligibilityScheduleRequests/{param}/group/serviceProvisioningErrors","matched","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequestGroupServiceProvisioningError" +"Identity.Governance","GetMgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequestGroupServiceProvisioningErrorCount.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequestGroupServiceProvisioningErrorCount","GET","/identityGovernance/privilegedAccess/group/eligibilityScheduleRequests/{param}/group/serviceProvisioningErrors/$count","matched","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequestGroupServiceProvisioningErrorCount" +"Identity.Governance","GetMgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequestPrincipal.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequestPrincipal","GET","/identityGovernance/privilegedAccess/group/eligibilityScheduleRequests/{param}/principal","matched","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequestPrincipal" +"Identity.Governance","GetMgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequestTargetSchedule.g.cs","v1.0","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequestTargetSchedule","GET","/identityGovernance/privilegedAccess/group/eligibilityScheduleRequests/{param}/targetSchedule","matched","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequestTargetSchedule" +"Identity.Governance","GetMgIdentityGovernanceTermOfUse.g.cs","v1.0","Get-MgIdentityGovernanceTermOfUse","GET","/identityGovernance/termsOfUse","no-oracle","" +"Identity.Governance","GetMgIdentityGovernanceTermOfUseAgreement_Get.g.cs","v1.0","Get-MgIdentityGovernanceTermOfUseAgreement","GET","/identityGovernance/termsOfUse/agreements/{param}","mismatch","Get-MgIdentityGovernanceTermsOfUseAgreement" +"Identity.Governance","GetMgIdentityGovernanceTermOfUseAgreement_List.g.cs","v1.0","Get-MgIdentityGovernanceTermOfUseAgreement","GET","/identityGovernance/termsOfUse/agreements","mismatch","Get-MgIdentityGovernanceTermsOfUseAgreement" +"Identity.Governance","GetMgIdentityGovernanceTermOfUseAgreement.g.cs","v1.0","Get-MgIdentityGovernanceTermOfUseAgreement","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceTermOfUseAgreementAcceptance_Get.g.cs","v1.0","Get-MgIdentityGovernanceTermOfUseAgreementAcceptance","GET","/identityGovernance/termsOfUse/agreementAcceptances/{param}","mismatch","Get-MgIdentityGovernanceTermsOfUseAgreementAcceptance" +"Identity.Governance","GetMgIdentityGovernanceTermOfUseAgreementAcceptance_List.g.cs","v1.0","Get-MgIdentityGovernanceTermOfUseAgreementAcceptance","GET","/identityGovernance/termsOfUse/agreementAcceptances","mismatch","Get-MgIdentityGovernanceTermsOfUseAgreementAcceptance" +"Identity.Governance","GetMgIdentityGovernanceTermOfUseAgreementAcceptance.g.cs","v1.0","Get-MgIdentityGovernanceTermOfUseAgreementAcceptance","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceTermOfUseAgreementAcceptanceCount.g.cs","v1.0","Get-MgIdentityGovernanceTermOfUseAgreementAcceptanceCount","GET","/identityGovernance/termsOfUse/agreementAcceptances/$count","mismatch","Get-MgIdentityGovernanceTermsOfUseAgreementAcceptanceCount" +"Identity.Governance","GetMgIdentityGovernanceTermOfUseAgreementCount.g.cs","v1.0","Get-MgIdentityGovernanceTermOfUseAgreementCount","GET","/identityGovernance/termsOfUse/agreements/$count","mismatch","Get-MgIdentityGovernanceTermsOfUseAgreementCount" +"Identity.Governance","GetMgIdentityGovernanceTermOfUseAgreementFile.g.cs","v1.0","Get-MgIdentityGovernanceTermOfUseAgreementFile","GET","/identityGovernance/termsOfUse/agreements/{param}/files","mismatch","Get-MgIdentityGovernanceTermsOfUseAgreementFile" +"Identity.Governance","GetMgIdentityGovernanceTermOfUseAgreementFileCount.g.cs","v1.0","Get-MgIdentityGovernanceTermOfUseAgreementFileCount","GET","/identityGovernance/termsOfUse/agreements/{param}/files/$count","mismatch","Get-MgIdentityGovernanceTermsOfUseAgreementFileCount" +"Identity.Governance","GetMgIdentityGovernanceTermOfUseAgreementFileLocalization_Get.g.cs","v1.0","Get-MgIdentityGovernanceTermOfUseAgreementFileLocalization","GET","/identityGovernance/termsOfUse/agreements/{param}/file/localizations/{param}","mismatch","Get-MgIdentityGovernanceTermsOfUseAgreementFileLocalization" +"Identity.Governance","GetMgIdentityGovernanceTermOfUseAgreementFileLocalization_List.g.cs","v1.0","Get-MgIdentityGovernanceTermOfUseAgreementFileLocalization","GET","/identityGovernance/termsOfUse/agreements/{param}/file/localizations","mismatch","Get-MgIdentityGovernanceTermsOfUseAgreementFileLocalization" +"Identity.Governance","GetMgIdentityGovernanceTermOfUseAgreementFileLocalization.g.cs","v1.0","Get-MgIdentityGovernanceTermOfUseAgreementFileLocalization","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceTermOfUseAgreementFileLocalizationCount.g.cs","v1.0","Get-MgIdentityGovernanceTermOfUseAgreementFileLocalizationCount","GET","/identityGovernance/termsOfUse/agreements/{param}/file/localizations/$count","mismatch","Get-MgIdentityGovernanceTermsOfUseAgreementFileLocalizationCount" +"Identity.Governance","GetMgIdentityGovernanceTermOfUseAgreementFileLocalizationVersion_Get.g.cs","v1.0","Get-MgIdentityGovernanceTermOfUseAgreementFileLocalizationVersion","GET","/identityGovernance/termsOfUse/agreements/{param}/file/localizations/{param}/versions/{param}","mismatch","Get-MgIdentityGovernanceTermsOfUseAgreementFileLocalizationVersion" +"Identity.Governance","GetMgIdentityGovernanceTermOfUseAgreementFileLocalizationVersion_List.g.cs","v1.0","Get-MgIdentityGovernanceTermOfUseAgreementFileLocalizationVersion","GET","/identityGovernance/termsOfUse/agreements/{param}/file/localizations/{param}/versions","mismatch","Get-MgIdentityGovernanceTermsOfUseAgreementFileLocalizationVersion" +"Identity.Governance","GetMgIdentityGovernanceTermOfUseAgreementFileLocalizationVersion.g.cs","v1.0","Get-MgIdentityGovernanceTermOfUseAgreementFileLocalizationVersion","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceTermOfUseAgreementFileLocalizationVersionCount.g.cs","v1.0","Get-MgIdentityGovernanceTermOfUseAgreementFileLocalizationVersionCount","GET","/identityGovernance/termsOfUse/agreements/{param}/file/localizations/{param}/versions/$count","mismatch","Get-MgIdentityGovernanceTermsOfUseAgreementFileLocalizationVersionCount" +"Identity.Governance","GetMgIdentityGovernanceTermOfUseAgreementFileVersion_Get.g.cs","v1.0","Get-MgIdentityGovernanceTermOfUseAgreementFileVersion","GET","/identityGovernance/termsOfUse/agreements/{param}/files/{param}/versions/{param}","mismatch","Get-MgIdentityGovernanceTermsOfUseAgreementFileVersion" +"Identity.Governance","GetMgIdentityGovernanceTermOfUseAgreementFileVersion_List.g.cs","v1.0","Get-MgIdentityGovernanceTermOfUseAgreementFileVersion","GET","/identityGovernance/termsOfUse/agreements/{param}/files/{param}/versions","mismatch","Get-MgIdentityGovernanceTermsOfUseAgreementFileVersion" +"Identity.Governance","GetMgIdentityGovernanceTermOfUseAgreementFileVersion.g.cs","v1.0","Get-MgIdentityGovernanceTermOfUseAgreementFileVersion","","","dispatcher","" +"Identity.Governance","GetMgIdentityGovernanceTermOfUseAgreementFileVersionCount.g.cs","v1.0","Get-MgIdentityGovernanceTermOfUseAgreementFileVersionCount","GET","/identityGovernance/termsOfUse/agreements/{param}/files/{param}/versions/$count","mismatch","Get-MgIdentityGovernanceTermsOfUseAgreementFileVersionCount" +"Identity.Governance","GetMgRoleManagementDirectory.g.cs","v1.0","Get-MgRoleManagementDirectory","GET","/roleManagement/directory","matched","Get-MgRoleManagementDirectory" +"Identity.Governance","GetMgRoleManagementDirectoryResourceNamespace_Get.g.cs","v1.0","Get-MgRoleManagementDirectoryResourceNamespace","GET","/roleManagement/directory/resourceNamespaces/{param}","matched","Get-MgRoleManagementDirectoryResourceNamespace" +"Identity.Governance","GetMgRoleManagementDirectoryResourceNamespace_List.g.cs","v1.0","Get-MgRoleManagementDirectoryResourceNamespace","GET","/roleManagement/directory/resourceNamespaces","matched","Get-MgRoleManagementDirectoryResourceNamespace" +"Identity.Governance","GetMgRoleManagementDirectoryResourceNamespace.g.cs","v1.0","Get-MgRoleManagementDirectoryResourceNamespace","","","dispatcher","" +"Identity.Governance","GetMgRoleManagementDirectoryResourceNamespaceCount.g.cs","v1.0","Get-MgRoleManagementDirectoryResourceNamespaceCount","GET","/roleManagement/directory/resourceNamespaces/$count","matched","Get-MgRoleManagementDirectoryResourceNamespaceCount" +"Identity.Governance","GetMgRoleManagementDirectoryResourceNamespaceResourceAction_Get.g.cs","v1.0","Get-MgRoleManagementDirectoryResourceNamespaceResourceAction","GET","/roleManagement/directory/resourceNamespaces/{param}/resourceActions/{param}","matched","Get-MgRoleManagementDirectoryResourceNamespaceResourceAction" +"Identity.Governance","GetMgRoleManagementDirectoryResourceNamespaceResourceAction_List.g.cs","v1.0","Get-MgRoleManagementDirectoryResourceNamespaceResourceAction","GET","/roleManagement/directory/resourceNamespaces/{param}/resourceActions","matched","Get-MgRoleManagementDirectoryResourceNamespaceResourceAction" +"Identity.Governance","GetMgRoleManagementDirectoryResourceNamespaceResourceAction.g.cs","v1.0","Get-MgRoleManagementDirectoryResourceNamespaceResourceAction","","","dispatcher","" +"Identity.Governance","GetMgRoleManagementDirectoryResourceNamespaceResourceActionCount.g.cs","v1.0","Get-MgRoleManagementDirectoryResourceNamespaceResourceActionCount","GET","/roleManagement/directory/resourceNamespaces/{param}/resourceActions/$count","matched","Get-MgRoleManagementDirectoryResourceNamespaceResourceActionCount" +"Identity.Governance","GetMgRoleManagementDirectoryRoleAssignment_Get.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleAssignment","GET","/roleManagement/directory/roleAssignments/{param}","matched","Get-MgRoleManagementDirectoryRoleAssignment" +"Identity.Governance","GetMgRoleManagementDirectoryRoleAssignment_List.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleAssignment","GET","/roleManagement/directory/roleAssignments","matched","Get-MgRoleManagementDirectoryRoleAssignment" +"Identity.Governance","GetMgRoleManagementDirectoryRoleAssignment.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleAssignment","","","dispatcher","" +"Identity.Governance","GetMgRoleManagementDirectoryRoleAssignmentAppScope.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleAssignmentAppScope","GET","/roleManagement/directory/roleAssignments/{param}/appScope","matched","Get-MgRoleManagementDirectoryRoleAssignmentAppScope" +"Identity.Governance","GetMgRoleManagementDirectoryRoleAssignmentCount.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleAssignmentCount","GET","/roleManagement/directory/roleAssignments/$count","matched","Get-MgRoleManagementDirectoryRoleAssignmentCount" +"Identity.Governance","GetMgRoleManagementDirectoryRoleAssignmentDirectoryScope.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleAssignmentDirectoryScope","GET","/roleManagement/directory/roleAssignments/{param}/directoryScope","matched","Get-MgRoleManagementDirectoryRoleAssignmentDirectoryScope" +"Identity.Governance","GetMgRoleManagementDirectoryRoleAssignmentPrincipal.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleAssignmentPrincipal","GET","/roleManagement/directory/roleAssignments/{param}/principal","matched","Get-MgRoleManagementDirectoryRoleAssignmentPrincipal" +"Identity.Governance","GetMgRoleManagementDirectoryRoleAssignmentRoleDefinition.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleAssignmentRoleDefinition","GET","/roleManagement/directory/roleAssignments/{param}/roleDefinition","matched","Get-MgRoleManagementDirectoryRoleAssignmentRoleDefinition" +"Identity.Governance","GetMgRoleManagementDirectoryRoleAssignmentSchedule_Get.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleAssignmentSchedule","GET","/roleManagement/directory/roleAssignmentSchedules/{param}","matched","Get-MgRoleManagementDirectoryRoleAssignmentSchedule" +"Identity.Governance","GetMgRoleManagementDirectoryRoleAssignmentSchedule_List.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleAssignmentSchedule","GET","/roleManagement/directory/roleAssignmentSchedules","matched","Get-MgRoleManagementDirectoryRoleAssignmentSchedule" +"Identity.Governance","GetMgRoleManagementDirectoryRoleAssignmentSchedule.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleAssignmentSchedule","","","dispatcher","" +"Identity.Governance","GetMgRoleManagementDirectoryRoleAssignmentScheduleActivatedUsing.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleAssignmentScheduleActivatedUsing","GET","/roleManagement/directory/roleAssignmentSchedules/{param}/activatedUsing","matched","Get-MgRoleManagementDirectoryRoleAssignmentScheduleActivatedUsing" +"Identity.Governance","GetMgRoleManagementDirectoryRoleAssignmentScheduleAppScope.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleAssignmentScheduleAppScope","GET","/roleManagement/directory/roleAssignmentSchedules/{param}/appScope","matched","Get-MgRoleManagementDirectoryRoleAssignmentScheduleAppScope" +"Identity.Governance","GetMgRoleManagementDirectoryRoleAssignmentScheduleCount.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleAssignmentScheduleCount","GET","/roleManagement/directory/roleAssignmentSchedules/$count","matched","Get-MgRoleManagementDirectoryRoleAssignmentScheduleCount" +"Identity.Governance","GetMgRoleManagementDirectoryRoleAssignmentScheduleDirectoryScope.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleAssignmentScheduleDirectoryScope","GET","/roleManagement/directory/roleAssignmentSchedules/{param}/directoryScope","matched","Get-MgRoleManagementDirectoryRoleAssignmentScheduleDirectoryScope" +"Identity.Governance","GetMgRoleManagementDirectoryRoleAssignmentScheduleFilterByCurrentUserWithOn.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleAssignmentScheduleFilterByCurrentUserWithOn","","","parameterized-function","" +"Identity.Governance","GetMgRoleManagementDirectoryRoleAssignmentScheduleInstance_Get.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstance","GET","/roleManagement/directory/roleAssignmentScheduleInstances/{param}","matched","Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstance" +"Identity.Governance","GetMgRoleManagementDirectoryRoleAssignmentScheduleInstance_List.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstance","GET","/roleManagement/directory/roleAssignmentScheduleInstances","matched","Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstance" +"Identity.Governance","GetMgRoleManagementDirectoryRoleAssignmentScheduleInstance.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstance","","","dispatcher","" +"Identity.Governance","GetMgRoleManagementDirectoryRoleAssignmentScheduleInstanceActivatedUsing.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstanceActivatedUsing","GET","/roleManagement/directory/roleAssignmentScheduleInstances/{param}/activatedUsing","matched","Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstanceActivatedUsing" +"Identity.Governance","GetMgRoleManagementDirectoryRoleAssignmentScheduleInstanceAppScope.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstanceAppScope","GET","/roleManagement/directory/roleAssignmentScheduleInstances/{param}/appScope","matched","Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstanceAppScope" +"Identity.Governance","GetMgRoleManagementDirectoryRoleAssignmentScheduleInstanceCount.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstanceCount","GET","/roleManagement/directory/roleAssignmentScheduleInstances/$count","matched","Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstanceCount" +"Identity.Governance","GetMgRoleManagementDirectoryRoleAssignmentScheduleInstanceDirectoryScope.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstanceDirectoryScope","GET","/roleManagement/directory/roleAssignmentScheduleInstances/{param}/directoryScope","matched","Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstanceDirectoryScope" +"Identity.Governance","GetMgRoleManagementDirectoryRoleAssignmentScheduleInstanceFilterByCurrentUserWithOn.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstanceFilterByCurrentUserWithOn","","","parameterized-function","" +"Identity.Governance","GetMgRoleManagementDirectoryRoleAssignmentScheduleInstancePrincipal.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstancePrincipal","GET","/roleManagement/directory/roleAssignmentScheduleInstances/{param}/principal","matched","Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstancePrincipal" +"Identity.Governance","GetMgRoleManagementDirectoryRoleAssignmentScheduleInstanceRoleDefinition.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstanceRoleDefinition","GET","/roleManagement/directory/roleAssignmentScheduleInstances/{param}/roleDefinition","matched","Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstanceRoleDefinition" +"Identity.Governance","GetMgRoleManagementDirectoryRoleAssignmentSchedulePrincipal.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleAssignmentSchedulePrincipal","GET","/roleManagement/directory/roleAssignmentSchedules/{param}/principal","matched","Get-MgRoleManagementDirectoryRoleAssignmentSchedulePrincipal" +"Identity.Governance","GetMgRoleManagementDirectoryRoleAssignmentScheduleRequest_Get.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequest","GET","/roleManagement/directory/roleAssignmentScheduleRequests/{param}","matched","Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequest" +"Identity.Governance","GetMgRoleManagementDirectoryRoleAssignmentScheduleRequest_List.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequest","GET","/roleManagement/directory/roleAssignmentScheduleRequests","matched","Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequest" +"Identity.Governance","GetMgRoleManagementDirectoryRoleAssignmentScheduleRequest.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequest","","","dispatcher","" +"Identity.Governance","GetMgRoleManagementDirectoryRoleAssignmentScheduleRequestActivatedUsing.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequestActivatedUsing","GET","/roleManagement/directory/roleAssignmentScheduleRequests/{param}/activatedUsing","matched","Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequestActivatedUsing" +"Identity.Governance","GetMgRoleManagementDirectoryRoleAssignmentScheduleRequestAppScope.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequestAppScope","GET","/roleManagement/directory/roleAssignmentScheduleRequests/{param}/appScope","matched","Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequestAppScope" +"Identity.Governance","GetMgRoleManagementDirectoryRoleAssignmentScheduleRequestCount.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequestCount","GET","/roleManagement/directory/roleAssignmentScheduleRequests/$count","matched","Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequestCount" +"Identity.Governance","GetMgRoleManagementDirectoryRoleAssignmentScheduleRequestDirectoryScope.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequestDirectoryScope","GET","/roleManagement/directory/roleAssignmentScheduleRequests/{param}/directoryScope","matched","Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequestDirectoryScope" +"Identity.Governance","GetMgRoleManagementDirectoryRoleAssignmentScheduleRequestFilterByCurrentUserWithOn.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequestFilterByCurrentUserWithOn","","","parameterized-function","" +"Identity.Governance","GetMgRoleManagementDirectoryRoleAssignmentScheduleRequestPrincipal.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequestPrincipal","GET","/roleManagement/directory/roleAssignmentScheduleRequests/{param}/principal","matched","Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequestPrincipal" +"Identity.Governance","GetMgRoleManagementDirectoryRoleAssignmentScheduleRequestRoleDefinition.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequestRoleDefinition","GET","/roleManagement/directory/roleAssignmentScheduleRequests/{param}/roleDefinition","matched","Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequestRoleDefinition" +"Identity.Governance","GetMgRoleManagementDirectoryRoleAssignmentScheduleRequestTargetSchedule.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequestTargetSchedule","GET","/roleManagement/directory/roleAssignmentScheduleRequests/{param}/targetSchedule","matched","Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequestTargetSchedule" +"Identity.Governance","GetMgRoleManagementDirectoryRoleAssignmentScheduleRoleDefinition.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleAssignmentScheduleRoleDefinition","GET","/roleManagement/directory/roleAssignmentSchedules/{param}/roleDefinition","matched","Get-MgRoleManagementDirectoryRoleAssignmentScheduleRoleDefinition" +"Identity.Governance","GetMgRoleManagementDirectoryRoleDefinition_Get.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleDefinition","GET","/roleManagement/directory/roleDefinitions/{param}","matched","Get-MgRoleManagementDirectoryRoleDefinition" +"Identity.Governance","GetMgRoleManagementDirectoryRoleDefinition_List.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleDefinition","GET","/roleManagement/directory/roleDefinitions","matched","Get-MgRoleManagementDirectoryRoleDefinition" +"Identity.Governance","GetMgRoleManagementDirectoryRoleDefinition.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleDefinition","","","dispatcher","" +"Identity.Governance","GetMgRoleManagementDirectoryRoleDefinitionCount.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleDefinitionCount","GET","/roleManagement/directory/roleDefinitions/$count","matched","Get-MgRoleManagementDirectoryRoleDefinitionCount" +"Identity.Governance","GetMgRoleManagementDirectoryRoleDefinitionInheritPermissionFrom_Get.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleDefinitionInheritPermissionFrom","GET","/roleManagement/directory/roleDefinitions/{param}/inheritsPermissionsFrom/{param}","matched","Get-MgRoleManagementDirectoryRoleDefinitionInheritPermissionFrom" +"Identity.Governance","GetMgRoleManagementDirectoryRoleDefinitionInheritPermissionFrom_List.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleDefinitionInheritPermissionFrom","GET","/roleManagement/directory/roleDefinitions/{param}/inheritsPermissionsFrom","matched","Get-MgRoleManagementDirectoryRoleDefinitionInheritPermissionFrom" +"Identity.Governance","GetMgRoleManagementDirectoryRoleDefinitionInheritPermissionFrom.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleDefinitionInheritPermissionFrom","","","dispatcher","" +"Identity.Governance","GetMgRoleManagementDirectoryRoleDefinitionInheritPermissionFromCount.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleDefinitionInheritPermissionFromCount","GET","/roleManagement/directory/roleDefinitions/{param}/inheritsPermissionsFrom/$count","matched","Get-MgRoleManagementDirectoryRoleDefinitionInheritPermissionFromCount" +"Identity.Governance","GetMgRoleManagementDirectoryRoleEligibilitySchedule_Get.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleEligibilitySchedule","GET","/roleManagement/directory/roleEligibilitySchedules/{param}","matched","Get-MgRoleManagementDirectoryRoleEligibilitySchedule" +"Identity.Governance","GetMgRoleManagementDirectoryRoleEligibilitySchedule_List.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleEligibilitySchedule","GET","/roleManagement/directory/roleEligibilitySchedules","matched","Get-MgRoleManagementDirectoryRoleEligibilitySchedule" +"Identity.Governance","GetMgRoleManagementDirectoryRoleEligibilitySchedule.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleEligibilitySchedule","","","dispatcher","" +"Identity.Governance","GetMgRoleManagementDirectoryRoleEligibilityScheduleAppScope.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleEligibilityScheduleAppScope","GET","/roleManagement/directory/roleEligibilitySchedules/{param}/appScope","matched","Get-MgRoleManagementDirectoryRoleEligibilityScheduleAppScope" +"Identity.Governance","GetMgRoleManagementDirectoryRoleEligibilityScheduleCount.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleEligibilityScheduleCount","GET","/roleManagement/directory/roleEligibilitySchedules/$count","matched","Get-MgRoleManagementDirectoryRoleEligibilityScheduleCount" +"Identity.Governance","GetMgRoleManagementDirectoryRoleEligibilityScheduleDirectoryScope.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleEligibilityScheduleDirectoryScope","GET","/roleManagement/directory/roleEligibilitySchedules/{param}/directoryScope","matched","Get-MgRoleManagementDirectoryRoleEligibilityScheduleDirectoryScope" +"Identity.Governance","GetMgRoleManagementDirectoryRoleEligibilityScheduleFilterByCurrentUserWithOn.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleEligibilityScheduleFilterByCurrentUserWithOn","","","parameterized-function","" +"Identity.Governance","GetMgRoleManagementDirectoryRoleEligibilityScheduleInstance_Get.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleEligibilityScheduleInstance","GET","/roleManagement/directory/roleEligibilityScheduleInstances/{param}","matched","Get-MgRoleManagementDirectoryRoleEligibilityScheduleInstance" +"Identity.Governance","GetMgRoleManagementDirectoryRoleEligibilityScheduleInstance_List.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleEligibilityScheduleInstance","GET","/roleManagement/directory/roleEligibilityScheduleInstances","matched","Get-MgRoleManagementDirectoryRoleEligibilityScheduleInstance" +"Identity.Governance","GetMgRoleManagementDirectoryRoleEligibilityScheduleInstance.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleEligibilityScheduleInstance","","","dispatcher","" +"Identity.Governance","GetMgRoleManagementDirectoryRoleEligibilityScheduleInstanceAppScope.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleEligibilityScheduleInstanceAppScope","GET","/roleManagement/directory/roleEligibilityScheduleInstances/{param}/appScope","matched","Get-MgRoleManagementDirectoryRoleEligibilityScheduleInstanceAppScope" +"Identity.Governance","GetMgRoleManagementDirectoryRoleEligibilityScheduleInstanceCount.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleEligibilityScheduleInstanceCount","GET","/roleManagement/directory/roleEligibilityScheduleInstances/$count","matched","Get-MgRoleManagementDirectoryRoleEligibilityScheduleInstanceCount" +"Identity.Governance","GetMgRoleManagementDirectoryRoleEligibilityScheduleInstanceDirectoryScope.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleEligibilityScheduleInstanceDirectoryScope","GET","/roleManagement/directory/roleEligibilityScheduleInstances/{param}/directoryScope","matched","Get-MgRoleManagementDirectoryRoleEligibilityScheduleInstanceDirectoryScope" +"Identity.Governance","GetMgRoleManagementDirectoryRoleEligibilityScheduleInstanceFilterByCurrentUserWithOn.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleEligibilityScheduleInstanceFilterByCurrentUserWithOn","","","parameterized-function","" +"Identity.Governance","GetMgRoleManagementDirectoryRoleEligibilityScheduleInstancePrincipal.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleEligibilityScheduleInstancePrincipal","GET","/roleManagement/directory/roleEligibilityScheduleInstances/{param}/principal","matched","Get-MgRoleManagementDirectoryRoleEligibilityScheduleInstancePrincipal" +"Identity.Governance","GetMgRoleManagementDirectoryRoleEligibilityScheduleInstanceRoleDefinition.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleEligibilityScheduleInstanceRoleDefinition","GET","/roleManagement/directory/roleEligibilityScheduleInstances/{param}/roleDefinition","matched","Get-MgRoleManagementDirectoryRoleEligibilityScheduleInstanceRoleDefinition" +"Identity.Governance","GetMgRoleManagementDirectoryRoleEligibilitySchedulePrincipal.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleEligibilitySchedulePrincipal","GET","/roleManagement/directory/roleEligibilitySchedules/{param}/principal","matched","Get-MgRoleManagementDirectoryRoleEligibilitySchedulePrincipal" +"Identity.Governance","GetMgRoleManagementDirectoryRoleEligibilityScheduleRequest_Get.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequest","GET","/roleManagement/directory/roleEligibilityScheduleRequests/{param}","matched","Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequest" +"Identity.Governance","GetMgRoleManagementDirectoryRoleEligibilityScheduleRequest_List.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequest","GET","/roleManagement/directory/roleEligibilityScheduleRequests","matched","Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequest" +"Identity.Governance","GetMgRoleManagementDirectoryRoleEligibilityScheduleRequest.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequest","","","dispatcher","" +"Identity.Governance","GetMgRoleManagementDirectoryRoleEligibilityScheduleRequestAppScope.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequestAppScope","GET","/roleManagement/directory/roleEligibilityScheduleRequests/{param}/appScope","matched","Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequestAppScope" +"Identity.Governance","GetMgRoleManagementDirectoryRoleEligibilityScheduleRequestCount.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequestCount","GET","/roleManagement/directory/roleEligibilityScheduleRequests/$count","matched","Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequestCount" +"Identity.Governance","GetMgRoleManagementDirectoryRoleEligibilityScheduleRequestDirectoryScope.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequestDirectoryScope","GET","/roleManagement/directory/roleEligibilityScheduleRequests/{param}/directoryScope","matched","Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequestDirectoryScope" +"Identity.Governance","GetMgRoleManagementDirectoryRoleEligibilityScheduleRequestFilterByCurrentUserWithOn.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequestFilterByCurrentUserWithOn","","","parameterized-function","" +"Identity.Governance","GetMgRoleManagementDirectoryRoleEligibilityScheduleRequestPrincipal.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequestPrincipal","GET","/roleManagement/directory/roleEligibilityScheduleRequests/{param}/principal","matched","Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequestPrincipal" +"Identity.Governance","GetMgRoleManagementDirectoryRoleEligibilityScheduleRequestRoleDefinition.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequestRoleDefinition","GET","/roleManagement/directory/roleEligibilityScheduleRequests/{param}/roleDefinition","matched","Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequestRoleDefinition" +"Identity.Governance","GetMgRoleManagementDirectoryRoleEligibilityScheduleRequestTargetSchedule.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequestTargetSchedule","GET","/roleManagement/directory/roleEligibilityScheduleRequests/{param}/targetSchedule","matched","Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequestTargetSchedule" +"Identity.Governance","GetMgRoleManagementDirectoryRoleEligibilityScheduleRoleDefinition.g.cs","v1.0","Get-MgRoleManagementDirectoryRoleEligibilityScheduleRoleDefinition","GET","/roleManagement/directory/roleEligibilitySchedules/{param}/roleDefinition","matched","Get-MgRoleManagementDirectoryRoleEligibilityScheduleRoleDefinition" +"Identity.Governance","GetMgRoleManagementEntitlementManagement.g.cs","v1.0","Get-MgRoleManagementEntitlementManagement","GET","/roleManagement/entitlementManagement","matched","Get-MgRoleManagementEntitlementManagement" +"Identity.Governance","GetMgRoleManagementEntitlementManagementResourceNamespace_Get.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementResourceNamespace","GET","/roleManagement/entitlementManagement/resourceNamespaces/{param}","matched","Get-MgRoleManagementEntitlementManagementResourceNamespace" +"Identity.Governance","GetMgRoleManagementEntitlementManagementResourceNamespace_List.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementResourceNamespace","GET","/roleManagement/entitlementManagement/resourceNamespaces","matched","Get-MgRoleManagementEntitlementManagementResourceNamespace" +"Identity.Governance","GetMgRoleManagementEntitlementManagementResourceNamespace.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementResourceNamespace","","","dispatcher","" +"Identity.Governance","GetMgRoleManagementEntitlementManagementResourceNamespaceCount.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementResourceNamespaceCount","GET","/roleManagement/entitlementManagement/resourceNamespaces/$count","matched","Get-MgRoleManagementEntitlementManagementResourceNamespaceCount" +"Identity.Governance","GetMgRoleManagementEntitlementManagementResourceNamespaceResourceAction_Get.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementResourceNamespaceResourceAction","GET","/roleManagement/entitlementManagement/resourceNamespaces/{param}/resourceActions/{param}","matched","Get-MgRoleManagementEntitlementManagementResourceNamespaceResourceAction" +"Identity.Governance","GetMgRoleManagementEntitlementManagementResourceNamespaceResourceAction_List.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementResourceNamespaceResourceAction","GET","/roleManagement/entitlementManagement/resourceNamespaces/{param}/resourceActions","matched","Get-MgRoleManagementEntitlementManagementResourceNamespaceResourceAction" +"Identity.Governance","GetMgRoleManagementEntitlementManagementResourceNamespaceResourceAction.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementResourceNamespaceResourceAction","","","dispatcher","" +"Identity.Governance","GetMgRoleManagementEntitlementManagementResourceNamespaceResourceActionCount.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementResourceNamespaceResourceActionCount","GET","/roleManagement/entitlementManagement/resourceNamespaces/{param}/resourceActions/$count","matched","Get-MgRoleManagementEntitlementManagementResourceNamespaceResourceActionCount" +"Identity.Governance","GetMgRoleManagementEntitlementManagementRoleAssignment_Get.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleAssignment","GET","/roleManagement/entitlementManagement/roleAssignments/{param}","matched","Get-MgRoleManagementEntitlementManagementRoleAssignment" +"Identity.Governance","GetMgRoleManagementEntitlementManagementRoleAssignment_List.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleAssignment","GET","/roleManagement/entitlementManagement/roleAssignments","matched","Get-MgRoleManagementEntitlementManagementRoleAssignment" +"Identity.Governance","GetMgRoleManagementEntitlementManagementRoleAssignment.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleAssignment","","","dispatcher","" +"Identity.Governance","GetMgRoleManagementEntitlementManagementRoleAssignmentAppScope.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleAssignmentAppScope","GET","/roleManagement/entitlementManagement/roleAssignments/{param}/appScope","matched","Get-MgRoleManagementEntitlementManagementRoleAssignmentAppScope" +"Identity.Governance","GetMgRoleManagementEntitlementManagementRoleAssignmentCount.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleAssignmentCount","GET","/roleManagement/entitlementManagement/roleAssignments/$count","matched","Get-MgRoleManagementEntitlementManagementRoleAssignmentCount" +"Identity.Governance","GetMgRoleManagementEntitlementManagementRoleAssignmentDirectoryScope.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleAssignmentDirectoryScope","GET","/roleManagement/entitlementManagement/roleAssignments/{param}/directoryScope","matched","Get-MgRoleManagementEntitlementManagementRoleAssignmentDirectoryScope" +"Identity.Governance","GetMgRoleManagementEntitlementManagementRoleAssignmentPrincipal.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleAssignmentPrincipal","GET","/roleManagement/entitlementManagement/roleAssignments/{param}/principal","matched","Get-MgRoleManagementEntitlementManagementRoleAssignmentPrincipal" +"Identity.Governance","GetMgRoleManagementEntitlementManagementRoleAssignmentRoleDefinition.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleAssignmentRoleDefinition","GET","/roleManagement/entitlementManagement/roleAssignments/{param}/roleDefinition","matched","Get-MgRoleManagementEntitlementManagementRoleAssignmentRoleDefinition" +"Identity.Governance","GetMgRoleManagementEntitlementManagementRoleAssignmentSchedule_Get.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleAssignmentSchedule","GET","/roleManagement/entitlementManagement/roleAssignmentSchedules/{param}","matched","Get-MgRoleManagementEntitlementManagementRoleAssignmentSchedule" +"Identity.Governance","GetMgRoleManagementEntitlementManagementRoleAssignmentSchedule_List.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleAssignmentSchedule","GET","/roleManagement/entitlementManagement/roleAssignmentSchedules","matched","Get-MgRoleManagementEntitlementManagementRoleAssignmentSchedule" +"Identity.Governance","GetMgRoleManagementEntitlementManagementRoleAssignmentSchedule.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleAssignmentSchedule","","","dispatcher","" +"Identity.Governance","GetMgRoleManagementEntitlementManagementRoleAssignmentScheduleActivatedUsing.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleActivatedUsing","GET","/roleManagement/entitlementManagement/roleAssignmentSchedules/{param}/activatedUsing","matched","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleActivatedUsing" +"Identity.Governance","GetMgRoleManagementEntitlementManagementRoleAssignmentScheduleAppScope.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleAppScope","GET","/roleManagement/entitlementManagement/roleAssignmentSchedules/{param}/appScope","matched","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleAppScope" +"Identity.Governance","GetMgRoleManagementEntitlementManagementRoleAssignmentScheduleCount.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleCount","GET","/roleManagement/entitlementManagement/roleAssignmentSchedules/$count","matched","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleCount" +"Identity.Governance","GetMgRoleManagementEntitlementManagementRoleAssignmentScheduleDirectoryScope.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleDirectoryScope","GET","/roleManagement/entitlementManagement/roleAssignmentSchedules/{param}/directoryScope","matched","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleDirectoryScope" +"Identity.Governance","GetMgRoleManagementEntitlementManagementRoleAssignmentScheduleFilterByCurrentUserWithOn.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleFilterByCurrentUserWithOn","","","parameterized-function","" +"Identity.Governance","GetMgRoleManagementEntitlementManagementRoleAssignmentScheduleInstance_Get.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleInstance","GET","/roleManagement/entitlementManagement/roleAssignmentScheduleInstances/{param}","matched","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleInstance" +"Identity.Governance","GetMgRoleManagementEntitlementManagementRoleAssignmentScheduleInstance_List.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleInstance","GET","/roleManagement/entitlementManagement/roleAssignmentScheduleInstances","matched","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleInstance" +"Identity.Governance","GetMgRoleManagementEntitlementManagementRoleAssignmentScheduleInstance.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleInstance","","","dispatcher","" +"Identity.Governance","GetMgRoleManagementEntitlementManagementRoleAssignmentScheduleInstanceActivatedUsing.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleInstanceActivatedUsing","GET","/roleManagement/entitlementManagement/roleAssignmentScheduleInstances/{param}/activatedUsing","matched","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleInstanceActivatedUsing" +"Identity.Governance","GetMgRoleManagementEntitlementManagementRoleAssignmentScheduleInstanceAppScope.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleInstanceAppScope","GET","/roleManagement/entitlementManagement/roleAssignmentScheduleInstances/{param}/appScope","matched","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleInstanceAppScope" +"Identity.Governance","GetMgRoleManagementEntitlementManagementRoleAssignmentScheduleInstanceCount.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleInstanceCount","GET","/roleManagement/entitlementManagement/roleAssignmentScheduleInstances/$count","matched","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleInstanceCount" +"Identity.Governance","GetMgRoleManagementEntitlementManagementRoleAssignmentScheduleInstanceDirectoryScope.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleInstanceDirectoryScope","GET","/roleManagement/entitlementManagement/roleAssignmentScheduleInstances/{param}/directoryScope","matched","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleInstanceDirectoryScope" +"Identity.Governance","GetMgRoleManagementEntitlementManagementRoleAssignmentScheduleInstanceFilterByCurrentUserWithOn.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleInstanceFilterByCurrentUserWithOn","","","parameterized-function","" +"Identity.Governance","GetMgRoleManagementEntitlementManagementRoleAssignmentScheduleInstancePrincipal.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleInstancePrincipal","GET","/roleManagement/entitlementManagement/roleAssignmentScheduleInstances/{param}/principal","matched","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleInstancePrincipal" +"Identity.Governance","GetMgRoleManagementEntitlementManagementRoleAssignmentScheduleInstanceRoleDefinition.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleInstanceRoleDefinition","GET","/roleManagement/entitlementManagement/roleAssignmentScheduleInstances/{param}/roleDefinition","matched","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleInstanceRoleDefinition" +"Identity.Governance","GetMgRoleManagementEntitlementManagementRoleAssignmentSchedulePrincipal.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleAssignmentSchedulePrincipal","GET","/roleManagement/entitlementManagement/roleAssignmentSchedules/{param}/principal","matched","Get-MgRoleManagementEntitlementManagementRoleAssignmentSchedulePrincipal" +"Identity.Governance","GetMgRoleManagementEntitlementManagementRoleAssignmentScheduleRequest_Get.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequest","GET","/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{param}","matched","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequest" +"Identity.Governance","GetMgRoleManagementEntitlementManagementRoleAssignmentScheduleRequest_List.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequest","GET","/roleManagement/entitlementManagement/roleAssignmentScheduleRequests","matched","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequest" +"Identity.Governance","GetMgRoleManagementEntitlementManagementRoleAssignmentScheduleRequest.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequest","","","dispatcher","" +"Identity.Governance","GetMgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestActivatedUsing.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestActivatedUsing","GET","/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{param}/activatedUsing","matched","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestActivatedUsing" +"Identity.Governance","GetMgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestAppScope.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestAppScope","GET","/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{param}/appScope","matched","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestAppScope" +"Identity.Governance","GetMgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestCount.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestCount","GET","/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/$count","matched","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestCount" +"Identity.Governance","GetMgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestDirectoryScope.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestDirectoryScope","GET","/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{param}/directoryScope","matched","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestDirectoryScope" +"Identity.Governance","GetMgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestFilterByCurrentUserWithOn.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestFilterByCurrentUserWithOn","","","parameterized-function","" +"Identity.Governance","GetMgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestPrincipal.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestPrincipal","GET","/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{param}/principal","matched","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestPrincipal" +"Identity.Governance","GetMgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestRoleDefinition.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestRoleDefinition","GET","/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{param}/roleDefinition","matched","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestRoleDefinition" +"Identity.Governance","GetMgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestTargetSchedule.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestTargetSchedule","GET","/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{param}/targetSchedule","matched","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestTargetSchedule" +"Identity.Governance","GetMgRoleManagementEntitlementManagementRoleAssignmentScheduleRoleDefinition.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRoleDefinition","GET","/roleManagement/entitlementManagement/roleAssignmentSchedules/{param}/roleDefinition","matched","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRoleDefinition" +"Identity.Governance","GetMgRoleManagementEntitlementManagementRoleDefinition_Get.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleDefinition","GET","/roleManagement/entitlementManagement/roleDefinitions/{param}","matched","Get-MgRoleManagementEntitlementManagementRoleDefinition" +"Identity.Governance","GetMgRoleManagementEntitlementManagementRoleDefinition_List.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleDefinition","GET","/roleManagement/entitlementManagement/roleDefinitions","matched","Get-MgRoleManagementEntitlementManagementRoleDefinition" +"Identity.Governance","GetMgRoleManagementEntitlementManagementRoleDefinition.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleDefinition","","","dispatcher","" +"Identity.Governance","GetMgRoleManagementEntitlementManagementRoleDefinitionCount.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleDefinitionCount","GET","/roleManagement/entitlementManagement/roleDefinitions/$count","matched","Get-MgRoleManagementEntitlementManagementRoleDefinitionCount" +"Identity.Governance","GetMgRoleManagementEntitlementManagementRoleDefinitionInheritPermissionFrom_Get.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleDefinitionInheritPermissionFrom","GET","/roleManagement/entitlementManagement/roleDefinitions/{param}/inheritsPermissionsFrom/{param}","matched","Get-MgRoleManagementEntitlementManagementRoleDefinitionInheritPermissionFrom" +"Identity.Governance","GetMgRoleManagementEntitlementManagementRoleDefinitionInheritPermissionFrom_List.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleDefinitionInheritPermissionFrom","GET","/roleManagement/entitlementManagement/roleDefinitions/{param}/inheritsPermissionsFrom","matched","Get-MgRoleManagementEntitlementManagementRoleDefinitionInheritPermissionFrom" +"Identity.Governance","GetMgRoleManagementEntitlementManagementRoleDefinitionInheritPermissionFrom.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleDefinitionInheritPermissionFrom","","","dispatcher","" +"Identity.Governance","GetMgRoleManagementEntitlementManagementRoleDefinitionInheritPermissionFromCount.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleDefinitionInheritPermissionFromCount","GET","/roleManagement/entitlementManagement/roleDefinitions/{param}/inheritsPermissionsFrom/$count","matched","Get-MgRoleManagementEntitlementManagementRoleDefinitionInheritPermissionFromCount" +"Identity.Governance","GetMgRoleManagementEntitlementManagementRoleEligibilitySchedule_Get.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleEligibilitySchedule","GET","/roleManagement/entitlementManagement/roleEligibilitySchedules/{param}","matched","Get-MgRoleManagementEntitlementManagementRoleEligibilitySchedule" +"Identity.Governance","GetMgRoleManagementEntitlementManagementRoleEligibilitySchedule_List.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleEligibilitySchedule","GET","/roleManagement/entitlementManagement/roleEligibilitySchedules","matched","Get-MgRoleManagementEntitlementManagementRoleEligibilitySchedule" +"Identity.Governance","GetMgRoleManagementEntitlementManagementRoleEligibilitySchedule.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleEligibilitySchedule","","","dispatcher","" +"Identity.Governance","GetMgRoleManagementEntitlementManagementRoleEligibilityScheduleAppScope.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleAppScope","GET","/roleManagement/entitlementManagement/roleEligibilitySchedules/{param}/appScope","matched","Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleAppScope" +"Identity.Governance","GetMgRoleManagementEntitlementManagementRoleEligibilityScheduleCount.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleCount","GET","/roleManagement/entitlementManagement/roleEligibilitySchedules/$count","matched","Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleCount" +"Identity.Governance","GetMgRoleManagementEntitlementManagementRoleEligibilityScheduleDirectoryScope.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleDirectoryScope","GET","/roleManagement/entitlementManagement/roleEligibilitySchedules/{param}/directoryScope","matched","Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleDirectoryScope" +"Identity.Governance","GetMgRoleManagementEntitlementManagementRoleEligibilityScheduleFilterByCurrentUserWithOn.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleFilterByCurrentUserWithOn","","","parameterized-function","" +"Identity.Governance","GetMgRoleManagementEntitlementManagementRoleEligibilityScheduleInstance_Get.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleInstance","GET","/roleManagement/entitlementManagement/roleEligibilityScheduleInstances/{param}","matched","Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleInstance" +"Identity.Governance","GetMgRoleManagementEntitlementManagementRoleEligibilityScheduleInstance_List.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleInstance","GET","/roleManagement/entitlementManagement/roleEligibilityScheduleInstances","matched","Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleInstance" +"Identity.Governance","GetMgRoleManagementEntitlementManagementRoleEligibilityScheduleInstance.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleInstance","","","dispatcher","" +"Identity.Governance","GetMgRoleManagementEntitlementManagementRoleEligibilityScheduleInstanceAppScope.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleInstanceAppScope","GET","/roleManagement/entitlementManagement/roleEligibilityScheduleInstances/{param}/appScope","matched","Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleInstanceAppScope" +"Identity.Governance","GetMgRoleManagementEntitlementManagementRoleEligibilityScheduleInstanceCount.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleInstanceCount","GET","/roleManagement/entitlementManagement/roleEligibilityScheduleInstances/$count","matched","Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleInstanceCount" +"Identity.Governance","GetMgRoleManagementEntitlementManagementRoleEligibilityScheduleInstanceDirectoryScope.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleInstanceDirectoryScope","GET","/roleManagement/entitlementManagement/roleEligibilityScheduleInstances/{param}/directoryScope","matched","Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleInstanceDirectoryScope" +"Identity.Governance","GetMgRoleManagementEntitlementManagementRoleEligibilityScheduleInstanceFilterByCurrentUserWithOn.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleInstanceFilterByCurrentUserWithOn","","","parameterized-function","" +"Identity.Governance","GetMgRoleManagementEntitlementManagementRoleEligibilityScheduleInstancePrincipal.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleInstancePrincipal","GET","/roleManagement/entitlementManagement/roleEligibilityScheduleInstances/{param}/principal","matched","Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleInstancePrincipal" +"Identity.Governance","GetMgRoleManagementEntitlementManagementRoleEligibilityScheduleInstanceRoleDefinition.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleInstanceRoleDefinition","GET","/roleManagement/entitlementManagement/roleEligibilityScheduleInstances/{param}/roleDefinition","matched","Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleInstanceRoleDefinition" +"Identity.Governance","GetMgRoleManagementEntitlementManagementRoleEligibilitySchedulePrincipal.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleEligibilitySchedulePrincipal","GET","/roleManagement/entitlementManagement/roleEligibilitySchedules/{param}/principal","matched","Get-MgRoleManagementEntitlementManagementRoleEligibilitySchedulePrincipal" +"Identity.Governance","GetMgRoleManagementEntitlementManagementRoleEligibilityScheduleRequest_Get.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequest","GET","/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{param}","matched","Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequest" +"Identity.Governance","GetMgRoleManagementEntitlementManagementRoleEligibilityScheduleRequest_List.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequest","GET","/roleManagement/entitlementManagement/roleEligibilityScheduleRequests","matched","Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequest" +"Identity.Governance","GetMgRoleManagementEntitlementManagementRoleEligibilityScheduleRequest.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequest","","","dispatcher","" +"Identity.Governance","GetMgRoleManagementEntitlementManagementRoleEligibilityScheduleRequestAppScope.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequestAppScope","GET","/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{param}/appScope","matched","Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequestAppScope" +"Identity.Governance","GetMgRoleManagementEntitlementManagementRoleEligibilityScheduleRequestCount.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequestCount","GET","/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/$count","matched","Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequestCount" +"Identity.Governance","GetMgRoleManagementEntitlementManagementRoleEligibilityScheduleRequestDirectoryScope.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequestDirectoryScope","GET","/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{param}/directoryScope","matched","Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequestDirectoryScope" +"Identity.Governance","GetMgRoleManagementEntitlementManagementRoleEligibilityScheduleRequestFilterByCurrentUserWithOn.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequestFilterByCurrentUserWithOn","","","parameterized-function","" +"Identity.Governance","GetMgRoleManagementEntitlementManagementRoleEligibilityScheduleRequestPrincipal.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequestPrincipal","GET","/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{param}/principal","matched","Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequestPrincipal" +"Identity.Governance","GetMgRoleManagementEntitlementManagementRoleEligibilityScheduleRequestRoleDefinition.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequestRoleDefinition","GET","/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{param}/roleDefinition","matched","Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequestRoleDefinition" +"Identity.Governance","GetMgRoleManagementEntitlementManagementRoleEligibilityScheduleRequestTargetSchedule.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequestTargetSchedule","GET","/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{param}/targetSchedule","matched","Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequestTargetSchedule" +"Identity.Governance","GetMgRoleManagementEntitlementManagementRoleEligibilityScheduleRoleDefinition.g.cs","v1.0","Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRoleDefinition","GET","/roleManagement/entitlementManagement/roleEligibilitySchedules/{param}/roleDefinition","matched","Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRoleDefinition" +"Identity.Governance","GetMgUserAgreementAcceptance_Get.g.cs","v1.0","Get-MgUserAgreementAcceptance","GET","/users/{param}/agreementAcceptances/{param}","matched","Get-MgUserAgreementAcceptance" +"Identity.Governance","GetMgUserAgreementAcceptance_List.g.cs","v1.0","Get-MgUserAgreementAcceptance","GET","/users/{param}/agreementAcceptances","matched","Get-MgUserAgreementAcceptance" +"Identity.Governance","GetMgUserAgreementAcceptance.g.cs","v1.0","Get-MgUserAgreementAcceptance","","","dispatcher","" +"Identity.Governance","GetMgUserAgreementAcceptanceCount.g.cs","v1.0","Get-MgUserAgreementAcceptanceCount","GET","/users/{param}/agreementAcceptances/$count","matched","Get-MgUserAgreementAcceptanceCount" +"Identity.Governance","InvokeMgIdentityGovernanceAccessReviewDefinitionInstanceAcceptRecommendations.g.cs","v1.0","Invoke-MgIdentityGovernanceAccessReviewDefinitionInstanceAcceptRecommendations","POST","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/acceptRecommendations","mismatch","Invoke-MgAcceptIdentityGovernanceAccessReviewDefinitionInstanceRecommendation" +"Identity.Governance","InvokeMgIdentityGovernanceAccessReviewDefinitionInstanceApplyDecisions.g.cs","v1.0","Invoke-MgIdentityGovernanceAccessReviewDefinitionInstanceApplyDecisions","POST","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/applyDecisions","mismatch","Add-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision" +"Identity.Governance","InvokeMgIdentityGovernanceAccessReviewDefinitionInstanceBatchRecordDecisions.g.cs","v1.0","Invoke-MgIdentityGovernanceAccessReviewDefinitionInstanceBatchRecordDecisions","POST","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/batchRecordDecisions","mismatch","Invoke-MgBatchIdentityGovernanceAccessReviewDefinitionInstanceRecordDecision" +"Identity.Governance","InvokeMgIdentityGovernanceAccessReviewDefinitionInstanceResetDecisions.g.cs","v1.0","Invoke-MgIdentityGovernanceAccessReviewDefinitionInstanceResetDecisions","POST","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/resetDecisions","mismatch","Reset-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision" +"Identity.Governance","InvokeMgIdentityGovernanceAccessReviewDefinitionInstanceSendReminder.g.cs","v1.0","Invoke-MgIdentityGovernanceAccessReviewDefinitionInstanceSendReminder","POST","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/sendReminder","mismatch","Send-MgIdentityGovernanceAccessReviewDefinitionInstanceReminder" +"Identity.Governance","InvokeMgIdentityGovernanceAccessReviewDefinitionInstanceStageStop.g.cs","v1.0","Invoke-MgIdentityGovernanceAccessReviewDefinitionInstanceStageStop","POST","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/stages/{param}/stop","mismatch","Stop-MgIdentityGovernanceAccessReviewDefinitionInstanceStage" +"Identity.Governance","InvokeMgIdentityGovernanceAccessReviewDefinitionInstanceStop.g.cs","v1.0","Invoke-MgIdentityGovernanceAccessReviewDefinitionInstanceStop","POST","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/stop","mismatch","Stop-MgIdentityGovernanceAccessReviewDefinitionInstance" +"Identity.Governance","InvokeMgIdentityGovernanceAccessReviewDefinitionStop.g.cs","v1.0","Invoke-MgIdentityGovernanceAccessReviewDefinitionStop","POST","/identityGovernance/accessReviews/definitions/{param}/stop","mismatch","Stop-MgIdentityGovernanceAccessReviewDefinition" +"Identity.Governance","InvokeMgIdentityGovernanceAccessReviewHistoryDefinitionInstanceGenerateDownloadUri.g.cs","v1.0","Invoke-MgIdentityGovernanceAccessReviewHistoryDefinitionInstanceGenerateDownloadUri","POST","/identityGovernance/accessReviews/historyDefinitions/{param}/instances/{param}/generateDownloadUri","mismatch","New-MgIdentityGovernanceAccessReviewHistoryDefinitionInstanceDownloadUri" +"Identity.Governance","InvokeMgIdentityGovernanceEntitlementManagementAccessPackageGetApplicablePolicyRequirements.g.cs","v1.0","Invoke-MgIdentityGovernanceEntitlementManagementAccessPackageGetApplicablePolicyRequirements","POST","/identityGovernance/entitlementManagement/accessPackages/{param}/getApplicablePolicyRequirements","mismatch","Get-MgEntitlementManagementAccessPackageApplicablePolicyRequirement" +"Identity.Governance","InvokeMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRefresh.g.cs","v1.0","Invoke-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRefresh","POST","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/refresh","no-oracle","" +"Identity.Governance","InvokeMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRoleResourceRefresh.g.cs","v1.0","Invoke-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRoleResourceRefresh","POST","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/roles/{param}/resource/refresh","no-oracle","" +"Identity.Governance","InvokeMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceRefresh.g.cs","v1.0","Invoke-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceRefresh","POST","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/refresh","no-oracle","" +"Identity.Governance","InvokeMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScopeResourceRefresh.g.cs","v1.0","Invoke-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScopeResourceRefresh","POST","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/scopes/{param}/resource/refresh","no-oracle","" +"Identity.Governance","InvokeMgIdentityGovernanceEntitlementManagementAssignmentReprocess.g.cs","v1.0","Invoke-MgIdentityGovernanceEntitlementManagementAssignmentReprocess","POST","/identityGovernance/entitlementManagement/assignments/{param}/reprocess","mismatch","Update-MgEntitlementManagementAssignment" +"Identity.Governance","InvokeMgIdentityGovernanceEntitlementManagementAssignmentRequestCancel.g.cs","v1.0","Invoke-MgIdentityGovernanceEntitlementManagementAssignmentRequestCancel","POST","/identityGovernance/entitlementManagement/assignmentRequests/{param}/cancel","mismatch","Stop-MgEntitlementManagementAssignmentRequest" +"Identity.Governance","InvokeMgIdentityGovernanceEntitlementManagementAssignmentRequestReprocess.g.cs","v1.0","Invoke-MgIdentityGovernanceEntitlementManagementAssignmentRequestReprocess","POST","/identityGovernance/entitlementManagement/assignmentRequests/{param}/reprocess","mismatch","Update-MgEntitlementManagementAssignmentRequest" +"Identity.Governance","InvokeMgIdentityGovernanceEntitlementManagementAssignmentRequestResume.g.cs","v1.0","Invoke-MgIdentityGovernanceEntitlementManagementAssignmentRequestResume","POST","/identityGovernance/entitlementManagement/assignmentRequests/{param}/resume","mismatch","Resume-MgEntitlementManagementAssignmentRequest" +"Identity.Governance","InvokeMgIdentityGovernanceEntitlementManagementCatalogResourceRefresh.g.cs","v1.0","Invoke-MgIdentityGovernanceEntitlementManagementCatalogResourceRefresh","POST","/identityGovernance/entitlementManagement/catalogs/{param}/resources/{param}/refresh","mismatch","Update-MgEntitlementManagementCatalogResource" +"Identity.Governance","InvokeMgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceRefresh.g.cs","v1.0","Invoke-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceRefresh","POST","/identityGovernance/entitlementManagement/catalogs/{param}/resourceRoles/{param}/resource/refresh","mismatch","Update-MgEntitlementManagementCatalogResourceRoleResource" +"Identity.Governance","InvokeMgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResourceRefresh.g.cs","v1.0","Invoke-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResourceRefresh","POST","/identityGovernance/entitlementManagement/catalogs/{param}/resourceRoles/{param}/resource/scopes/{param}/resource/refresh","mismatch","Update-MgEntitlementManagementCatalogResourceRoleResourceScopeResource" +"Identity.Governance","InvokeMgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRefresh.g.cs","v1.0","Invoke-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRefresh","POST","/identityGovernance/entitlementManagement/catalogs/{param}/resources/{param}/scopes/{param}/resource/refresh","mismatch","Update-MgEntitlementManagementCatalogResourceScopeResource" +"Identity.Governance","InvokeMgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResourceRefresh.g.cs","v1.0","Invoke-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResourceRefresh","POST","/identityGovernance/entitlementManagement/catalogs/{param}/resources/{param}/scopes/{param}/resource/roles/{param}/resource/refresh","mismatch","Update-MgEntitlementManagementCatalogResourceScopeResourceRoleResource" +"Identity.Governance","InvokeMgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRefresh.g.cs","v1.0","Invoke-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRefresh","POST","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/refresh","mismatch","Update-MgEntitlementManagementResourceEnvironmentResource" +"Identity.Governance","InvokeMgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResourceRefresh.g.cs","v1.0","Invoke-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResourceRefresh","POST","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/roles/{param}/resource/refresh","mismatch","Update-MgEntitlementManagementResourceEnvironmentResourceRoleResource" +"Identity.Governance","InvokeMgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResourceScopeResourceRefresh.g.cs","v1.0","Invoke-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResourceScopeResourceRefresh","POST","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/roles/{param}/resource/scopes/{param}/resource/refresh","mismatch","Update-MgEntitlementManagementResourceEnvironmentResourceRoleResourceScopeResource" +"Identity.Governance","InvokeMgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResourceRefresh.g.cs","v1.0","Invoke-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResourceRefresh","POST","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/scopes/{param}/resource/refresh","mismatch","Update-MgEntitlementManagementResourceEnvironmentResourceScopeResource" +"Identity.Governance","InvokeMgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResourceRoleResourceRefresh.g.cs","v1.0","Invoke-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResourceRoleResourceRefresh","POST","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/scopes/{param}/resource/roles/{param}/resource/refresh","mismatch","Update-MgEntitlementManagementResourceEnvironmentResourceScopeResourceRoleResource" +"Identity.Governance","InvokeMgIdentityGovernanceEntitlementManagementResourceRefresh.g.cs","v1.0","Invoke-MgIdentityGovernanceEntitlementManagementResourceRefresh","POST","/identityGovernance/entitlementManagement/resources/{param}/refresh","mismatch","Update-MgEntitlementManagementResource" +"Identity.Governance","InvokeMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRefresh.g.cs","v1.0","Invoke-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRefresh","POST","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resources/{param}/refresh","mismatch","Update-MgEntitlementManagementResourceRequestCatalogResource" +"Identity.Governance","InvokeMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceRefresh.g.cs","v1.0","Invoke-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceRefresh","POST","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceRoles/{param}/resource/refresh","mismatch","Update-MgEntitlementManagementResourceRequestCatalogResourceRoleResource" +"Identity.Governance","InvokeMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRefresh.g.cs","v1.0","Invoke-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRefresh","POST","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceRoles/{param}/resource/scopes/{param}/resource/refresh","mismatch","Update-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResource" +"Identity.Governance","InvokeMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRefresh.g.cs","v1.0","Invoke-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRefresh","POST","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resources/{param}/scopes/{param}/resource/refresh","mismatch","Update-MgEntitlementManagementResourceRequestCatalogResourceScopeResource" +"Identity.Governance","InvokeMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceRefresh.g.cs","v1.0","Invoke-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceRefresh","POST","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resources/{param}/scopes/{param}/resource/roles/{param}/resource/refresh","mismatch","Update-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResource" +"Identity.Governance","InvokeMgIdentityGovernanceEntitlementManagementResourceRequestResourceRefresh.g.cs","v1.0","Invoke-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRefresh","POST","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/refresh","mismatch","Update-MgEntitlementManagementResourceRequestResource" +"Identity.Governance","InvokeMgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResourceRefresh.g.cs","v1.0","Invoke-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResourceRefresh","POST","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/roles/{param}/resource/refresh","mismatch","Update-MgEntitlementManagementResourceRequestResourceRoleResource" +"Identity.Governance","InvokeMgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResourceScopeResourceRefresh.g.cs","v1.0","Invoke-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResourceScopeResourceRefresh","POST","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/roles/{param}/resource/scopes/{param}/resource/refresh","mismatch","Update-MgEntitlementManagementResourceRequestResourceRoleResourceScopeResource" +"Identity.Governance","InvokeMgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResourceRefresh.g.cs","v1.0","Invoke-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResourceRefresh","POST","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/scopes/{param}/resource/refresh","mismatch","Update-MgEntitlementManagementResourceRequestResourceScopeResource" +"Identity.Governance","InvokeMgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResourceRoleResourceRefresh.g.cs","v1.0","Invoke-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResourceRoleResourceRefresh","POST","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/scopes/{param}/resource/roles/{param}/resource/refresh","mismatch","Update-MgEntitlementManagementResourceRequestResourceScopeResourceRoleResource" +"Identity.Governance","InvokeMgIdentityGovernanceEntitlementManagementResourceRoleResourceRefresh.g.cs","v1.0","Invoke-MgIdentityGovernanceEntitlementManagementResourceRoleResourceRefresh","POST","/identityGovernance/entitlementManagement/resources/{param}/roles/{param}/resource/refresh","mismatch","Update-MgEntitlementManagementResourceRoleResource" +"Identity.Governance","InvokeMgIdentityGovernanceEntitlementManagementResourceRoleResourceScopeResourceRefresh.g.cs","v1.0","Invoke-MgIdentityGovernanceEntitlementManagementResourceRoleResourceScopeResourceRefresh","POST","/identityGovernance/entitlementManagement/resources/{param}/roles/{param}/resource/scopes/{param}/resource/refresh","mismatch","Update-MgEntitlementManagementResourceRoleResourceScopeResource" +"Identity.Governance","InvokeMgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRefresh.g.cs","v1.0","Invoke-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRefresh","POST","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/scope/resource/refresh","mismatch","Update-MgEntitlementManagementResourceRoleScopeResource" +"Identity.Governance","InvokeMgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRoleResourceRefresh.g.cs","v1.0","Invoke-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRoleResourceRefresh","POST","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/scope/resource/roles/{param}/resource/refresh","mismatch","Update-MgEntitlementManagementResourceRoleScopeResourceRoleResource" +"Identity.Governance","InvokeMgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceRefresh.g.cs","v1.0","Invoke-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceRefresh","POST","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/role/resource/refresh","mismatch","Update-MgEntitlementManagementResourceRoleScopeRoleResource" +"Identity.Governance","InvokeMgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScopeResourceRefresh.g.cs","v1.0","Invoke-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScopeResourceRefresh","POST","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/role/resource/scopes/{param}/resource/refresh","mismatch","Update-MgEntitlementManagementResourceRoleScopeRoleResourceScopeResource" +"Identity.Governance","InvokeMgIdentityGovernanceEntitlementManagementResourceScopeResourceRefresh.g.cs","v1.0","Invoke-MgIdentityGovernanceEntitlementManagementResourceScopeResourceRefresh","POST","/identityGovernance/entitlementManagement/resources/{param}/scopes/{param}/resource/refresh","mismatch","Update-MgEntitlementManagementResourceScopeResource" +"Identity.Governance","InvokeMgIdentityGovernanceEntitlementManagementResourceScopeResourceRoleResourceRefresh.g.cs","v1.0","Invoke-MgIdentityGovernanceEntitlementManagementResourceScopeResourceRoleResourceRefresh","POST","/identityGovernance/entitlementManagement/resources/{param}/scopes/{param}/resource/roles/{param}/resource/refresh","mismatch","Update-MgEntitlementManagementResourceScopeResourceRoleResource" +"Identity.Governance","InvokeMgIdentityGovernanceLifecycleWorkflowActivate.g.cs","v1.0","Invoke-MgIdentityGovernanceLifecycleWorkflowActivate","POST","","cast","" +"Identity.Governance","InvokeMgIdentityGovernanceLifecycleWorkflowActivateWithScope.g.cs","v1.0","Invoke-MgIdentityGovernanceLifecycleWorkflowActivateWithScope","POST","","cast","" +"Identity.Governance","InvokeMgIdentityGovernanceLifecycleWorkflowCancelProcessing.g.cs","v1.0","Invoke-MgIdentityGovernanceLifecycleWorkflowCancelProcessing","POST","","cast","" +"Identity.Governance","InvokeMgIdentityGovernanceLifecycleWorkflowClearQuarantine.g.cs","v1.0","Invoke-MgIdentityGovernanceLifecycleWorkflowClearQuarantine","POST","","cast","" +"Identity.Governance","InvokeMgIdentityGovernanceLifecycleWorkflowCreateNewVersion.g.cs","v1.0","Invoke-MgIdentityGovernanceLifecycleWorkflowCreateNewVersion","POST","","cast","" +"Identity.Governance","InvokeMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowActivate.g.cs","v1.0","Invoke-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowActivate","POST","","cast","" +"Identity.Governance","InvokeMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowActivateWithScope.g.cs","v1.0","Invoke-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowActivateWithScope","POST","","cast","" +"Identity.Governance","InvokeMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowCancelProcessing.g.cs","v1.0","Invoke-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowCancelProcessing","POST","","cast","" +"Identity.Governance","InvokeMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowClearQuarantine.g.cs","v1.0","Invoke-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowClearQuarantine","POST","","cast","" +"Identity.Governance","InvokeMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowCreateNewVersion.g.cs","v1.0","Invoke-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowCreateNewVersion","POST","","cast","" +"Identity.Governance","InvokeMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowPreviewTaskFailures.g.cs","v1.0","Invoke-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowPreviewTaskFailures","POST","","cast","" +"Identity.Governance","InvokeMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowPreviewWorkflow.g.cs","v1.0","Invoke-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowPreviewWorkflow","POST","","cast","" +"Identity.Governance","InvokeMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRestore.g.cs","v1.0","Invoke-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRestore","POST","","cast","" +"Identity.Governance","InvokeMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunTaskProcessingResultResume.g.cs","v1.0","Invoke-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunTaskProcessingResultResume","POST","","cast","" +"Identity.Governance","InvokeMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultTaskProcessingResultResume.g.cs","v1.0","Invoke-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultTaskProcessingResultResume","POST","","cast","" +"Identity.Governance","InvokeMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskProcessingResultResume.g.cs","v1.0","Invoke-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskProcessingResultResume","POST","","cast","" +"Identity.Governance","InvokeMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportTaskProcessingResultResume.g.cs","v1.0","Invoke-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportTaskProcessingResultResume","POST","","cast","" +"Identity.Governance","InvokeMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultTaskProcessingResultResume.g.cs","v1.0","Invoke-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultTaskProcessingResultResume","POST","","cast","" +"Identity.Governance","InvokeMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTaskProcessingResultResume.g.cs","v1.0","Invoke-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTaskProcessingResultResume","POST","","cast","" +"Identity.Governance","InvokeMgIdentityGovernanceLifecycleWorkflowPreviewTaskFailures.g.cs","v1.0","Invoke-MgIdentityGovernanceLifecycleWorkflowPreviewTaskFailures","POST","","cast","" +"Identity.Governance","InvokeMgIdentityGovernanceLifecycleWorkflowPreviewWorkflow.g.cs","v1.0","Invoke-MgIdentityGovernanceLifecycleWorkflowPreviewWorkflow","POST","","cast","" +"Identity.Governance","InvokeMgIdentityGovernanceLifecycleWorkflowRestore.g.cs","v1.0","Invoke-MgIdentityGovernanceLifecycleWorkflowRestore","POST","","cast","" +"Identity.Governance","InvokeMgIdentityGovernanceLifecycleWorkflowRunTaskProcessingResultResume.g.cs","v1.0","Invoke-MgIdentityGovernanceLifecycleWorkflowRunTaskProcessingResultResume","POST","","cast","" +"Identity.Governance","InvokeMgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultTaskProcessingResultResume.g.cs","v1.0","Invoke-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultTaskProcessingResultResume","POST","","cast","" +"Identity.Governance","InvokeMgIdentityGovernanceLifecycleWorkflowTaskProcessingResultResume.g.cs","v1.0","Invoke-MgIdentityGovernanceLifecycleWorkflowTaskProcessingResultResume","POST","","cast","" +"Identity.Governance","InvokeMgIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResultResume.g.cs","v1.0","Invoke-MgIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResultResume","POST","","cast","" +"Identity.Governance","InvokeMgIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResultResume.g.cs","v1.0","Invoke-MgIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResultResume","POST","","cast","" +"Identity.Governance","InvokeMgIdentityGovernanceLifecycleWorkflowUserProcessingResultTaskProcessingResultResume.g.cs","v1.0","Invoke-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultTaskProcessingResultResume","POST","","cast","" +"Identity.Governance","InvokeMgIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResultResume.g.cs","v1.0","Invoke-MgIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResultResume","POST","","cast","" +"Identity.Governance","InvokeMgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestCancel.g.cs","v1.0","Invoke-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestCancel","POST","/identityGovernance/privilegedAccess/group/assignmentScheduleRequests/{param}/cancel","mismatch","Stop-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequest" +"Identity.Governance","InvokeMgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequestCancel.g.cs","v1.0","Invoke-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequestCancel","POST","/identityGovernance/privilegedAccess/group/eligibilityScheduleRequests/{param}/cancel","mismatch","Stop-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequest" +"Identity.Governance","InvokeMgRoleManagementDirectoryRoleAssignmentScheduleRequestCancel.g.cs","v1.0","Invoke-MgRoleManagementDirectoryRoleAssignmentScheduleRequestCancel","POST","/roleManagement/directory/roleAssignmentScheduleRequests/{param}/cancel","mismatch","Stop-MgRoleManagementDirectoryRoleAssignmentScheduleRequest" +"Identity.Governance","InvokeMgRoleManagementDirectoryRoleEligibilityScheduleRequestCancel.g.cs","v1.0","Invoke-MgRoleManagementDirectoryRoleEligibilityScheduleRequestCancel","POST","/roleManagement/directory/roleEligibilityScheduleRequests/{param}/cancel","mismatch","Stop-MgRoleManagementDirectoryRoleEligibilityScheduleRequest" +"Identity.Governance","InvokeMgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestCancel.g.cs","v1.0","Invoke-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestCancel","POST","/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{param}/cancel","mismatch","Stop-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequest" +"Identity.Governance","InvokeMgRoleManagementEntitlementManagementRoleEligibilityScheduleRequestCancel.g.cs","v1.0","Invoke-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequestCancel","POST","/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{param}/cancel","mismatch","Stop-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequest" +"Identity.Governance","NewMgAgreement.g.cs","v1.0","New-MgAgreement","POST","/agreements","matched","New-MgAgreement" +"Identity.Governance","NewMgAgreementAcceptance.g.cs","v1.0","New-MgAgreementAcceptance","POST","/agreements/{param}/acceptances","matched","New-MgAgreementAcceptance" +"Identity.Governance","NewMgAgreementFile.g.cs","v1.0","New-MgAgreementFile","POST","/agreements/{param}/files","matched","New-MgAgreementFile" +"Identity.Governance","NewMgAgreementFileLocalization.g.cs","v1.0","New-MgAgreementFileLocalization","POST","/agreements/{param}/file/localizations","matched","New-MgAgreementFileLocalization" +"Identity.Governance","NewMgAgreementFileLocalizationVersion.g.cs","v1.0","New-MgAgreementFileLocalizationVersion","POST","/agreements/{param}/file/localizations/{param}/versions","matched","New-MgAgreementFileLocalizationVersion" +"Identity.Governance","NewMgAgreementFileVersion.g.cs","v1.0","New-MgAgreementFileVersion","POST","/agreements/{param}/files/{param}/versions","matched","New-MgAgreementFileVersion" +"Identity.Governance","NewMgIdentityGovernanceAccessReviewDefinition.g.cs","v1.0","New-MgIdentityGovernanceAccessReviewDefinition","POST","/identityGovernance/accessReviews/definitions","matched","New-MgIdentityGovernanceAccessReviewDefinition" +"Identity.Governance","NewMgIdentityGovernanceAccessReviewDefinitionInstance.g.cs","v1.0","New-MgIdentityGovernanceAccessReviewDefinitionInstance","POST","/identityGovernance/accessReviews/definitions/{param}/instances","matched","New-MgIdentityGovernanceAccessReviewDefinitionInstance" +"Identity.Governance","NewMgIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewer.g.cs","v1.0","New-MgIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewer","POST","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/contactedReviewers","matched","New-MgIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewer" +"Identity.Governance","NewMgIdentityGovernanceAccessReviewDefinitionInstanceDecision.g.cs","v1.0","New-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision","POST","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/decisions","matched","New-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision" +"Identity.Governance","NewMgIdentityGovernanceAccessReviewDefinitionInstanceDecisionInsight.g.cs","v1.0","New-MgIdentityGovernanceAccessReviewDefinitionInstanceDecisionInsight","POST","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/decisions/{param}/insights","matched","New-MgIdentityGovernanceAccessReviewDefinitionInstanceDecisionInsight" +"Identity.Governance","NewMgIdentityGovernanceAccessReviewDefinitionInstanceStage.g.cs","v1.0","New-MgIdentityGovernanceAccessReviewDefinitionInstanceStage","POST","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/stages","matched","New-MgIdentityGovernanceAccessReviewDefinitionInstanceStage" +"Identity.Governance","NewMgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision.g.cs","v1.0","New-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision","POST","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/stages/{param}/decisions","matched","New-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision" +"Identity.Governance","NewMgIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionInsight.g.cs","v1.0","New-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionInsight","POST","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/stages/{param}/decisions/{param}/insights","matched","New-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionInsight" +"Identity.Governance","NewMgIdentityGovernanceAccessReviewHistoryDefinition.g.cs","v1.0","New-MgIdentityGovernanceAccessReviewHistoryDefinition","POST","/identityGovernance/accessReviews/historyDefinitions","matched","New-MgIdentityGovernanceAccessReviewHistoryDefinition" +"Identity.Governance","NewMgIdentityGovernanceAccessReviewHistoryDefinitionInstance.g.cs","v1.0","New-MgIdentityGovernanceAccessReviewHistoryDefinitionInstance","POST","/identityGovernance/accessReviews/historyDefinitions/{param}/instances","matched","New-MgIdentityGovernanceAccessReviewHistoryDefinitionInstance" +"Identity.Governance","NewMgIdentityGovernanceAppConsentAppConsentRequest.g.cs","v1.0","New-MgIdentityGovernanceAppConsentAppConsentRequest","POST","/identityGovernance/appConsent/appConsentRequests","mismatch","New-MgIdentityGovernanceAppConsentRequest" +"Identity.Governance","NewMgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequest.g.cs","v1.0","New-MgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequest","POST","/identityGovernance/appConsent/appConsentRequests/{param}/userConsentRequests","mismatch","New-MgIdentityGovernanceAppConsentRequestUserConsentRequest" +"Identity.Governance","NewMgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequestApprovalStage.g.cs","v1.0","New-MgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequestApprovalStage","POST","/identityGovernance/appConsent/appConsentRequests/{param}/userConsentRequests/{param}/approval/stages","mismatch","New-MgIdentityGovernanceAppConsentRequestUserConsentRequestApprovalStage" +"Identity.Governance","NewMgIdentityGovernanceEntitlementManagementAccessPackage.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementAccessPackage","POST","/identityGovernance/entitlementManagement/accessPackages","mismatch","New-MgEntitlementManagementAccessPackage" +"Identity.Governance","NewMgIdentityGovernanceEntitlementManagementAccessPackageAssignmentApproval.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentApproval","POST","/identityGovernance/entitlementManagement/accessPackageAssignmentApprovals","no-oracle","" +"Identity.Governance","NewMgIdentityGovernanceEntitlementManagementAccessPackageAssignmentApprovalStage.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentApprovalStage","POST","/identityGovernance/entitlementManagement/accessPackageAssignmentApprovals/{param}/stages","mismatch","New-MgEntitlementManagementAccessPackageAssignmentApprovalStage" +"Identity.Governance","NewMgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicy.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicy","POST","/identityGovernance/entitlementManagement/accessPackages/{param}/assignmentPolicies","mismatch","New-MgEntitlementManagementAccessPackageAssignmentPolicy" +"Identity.Governance","NewMgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyCustomExtensionStageSetting.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyCustomExtensionStageSetting","POST","/identityGovernance/entitlementManagement/accessPackages/{param}/assignmentPolicies/{param}/customExtensionStageSettings","no-oracle","" +"Identity.Governance","NewMgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyQuestion.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyQuestion","POST","/identityGovernance/entitlementManagement/accessPackages/{param}/assignmentPolicies/{param}/questions","no-oracle","" +"Identity.Governance","NewMgIdentityGovernanceEntitlementManagementAccessPackageIncompatibleAccessPackageByRef.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementAccessPackageIncompatibleAccessPackageByRef","POST","/identityGovernance/entitlementManagement/accessPackages/{param}/incompatibleAccessPackages/$ref","mismatch","New-MgEntitlementManagementAccessPackageIncompatibleAccessPackageByRef" +"Identity.Governance","NewMgIdentityGovernanceEntitlementManagementAccessPackageIncompatibleGroupByRef.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementAccessPackageIncompatibleGroupByRef","POST","/identityGovernance/entitlementManagement/accessPackages/{param}/incompatibleGroups/$ref","mismatch","New-MgEntitlementManagementAccessPackageIncompatibleGroupByRef" +"Identity.Governance","NewMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScope.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScope","POST","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes","mismatch","New-MgEntitlementManagementAccessPackageResourceRoleScope" +"Identity.Governance","NewMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRole.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRole","POST","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/roles","no-oracle","" +"Identity.Governance","NewMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRoleResourceScope.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRoleResourceScope","POST","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/roles/{param}/resource/scopes","no-oracle","" +"Identity.Governance","NewMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceScope.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceScope","POST","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/scopes","no-oracle","" +"Identity.Governance","NewMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceRole.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceRole","POST","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/roles","no-oracle","" +"Identity.Governance","NewMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScope.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScope","POST","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/scopes","no-oracle","" +"Identity.Governance","NewMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScopeResourceRole.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScopeResourceRole","POST","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/scopes/{param}/resource/roles","no-oracle","" +"Identity.Governance","NewMgIdentityGovernanceEntitlementManagementAccessPackageSuggestion.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementAccessPackageSuggestion","POST","/identityGovernance/entitlementManagement/accessPackageSuggestions","mismatch","New-MgEntitlementManagementAccessPackageSuggestion" +"Identity.Governance","NewMgIdentityGovernanceEntitlementManagementAssignment.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementAssignment","POST","/identityGovernance/entitlementManagement/assignments","mismatch","New-MgEntitlementManagementAssignment" +"Identity.Governance","NewMgIdentityGovernanceEntitlementManagementAssignmentPolicy.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementAssignmentPolicy","POST","/identityGovernance/entitlementManagement/assignmentPolicies","mismatch","New-MgEntitlementManagementAssignmentPolicy" +"Identity.Governance","NewMgIdentityGovernanceEntitlementManagementAssignmentPolicyCustomExtensionStageSetting.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementAssignmentPolicyCustomExtensionStageSetting","POST","/identityGovernance/entitlementManagement/assignmentPolicies/{param}/customExtensionStageSettings","mismatch","New-MgEntitlementManagementAssignmentPolicyCustomExtensionStageSetting" +"Identity.Governance","NewMgIdentityGovernanceEntitlementManagementAssignmentPolicyQuestion.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementAssignmentPolicyQuestion","POST","/identityGovernance/entitlementManagement/assignmentPolicies/{param}/questions","mismatch","New-MgEntitlementManagementAssignmentPolicyQuestion" +"Identity.Governance","NewMgIdentityGovernanceEntitlementManagementAssignmentRequest.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementAssignmentRequest","POST","/identityGovernance/entitlementManagement/assignmentRequests","mismatch","New-MgEntitlementManagementAssignmentRequest" +"Identity.Governance","NewMgIdentityGovernanceEntitlementManagementAvailableAccessPackage.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementAvailableAccessPackage","POST","/identityGovernance/entitlementManagement/availableAccessPackages","mismatch","New-MgEntitlementManagementAvailableAccessPackage" +"Identity.Governance","NewMgIdentityGovernanceEntitlementManagementCatalog.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementCatalog","POST","/identityGovernance/entitlementManagement/catalogs","mismatch","New-MgEntitlementManagementCatalog" +"Identity.Governance","NewMgIdentityGovernanceEntitlementManagementCatalogCustomWorkflowExtension.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementCatalogCustomWorkflowExtension","POST","/identityGovernance/entitlementManagement/catalogs/{param}/customWorkflowExtensions","mismatch","New-MgEntitlementManagementCatalogCustomWorkflowExtension" +"Identity.Governance","NewMgIdentityGovernanceEntitlementManagementCatalogResource.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementCatalogResource","POST","/identityGovernance/entitlementManagement/catalogs/{param}/resources","mismatch","New-MgEntitlementManagementCatalogResource" +"Identity.Governance","NewMgIdentityGovernanceEntitlementManagementCatalogResourceRole.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementCatalogResourceRole","POST","/identityGovernance/entitlementManagement/catalogs/{param}/resourceRoles","mismatch","New-MgEntitlementManagementCatalogResourceRole" +"Identity.Governance","NewMgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceRole.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceRole","POST","/identityGovernance/entitlementManagement/catalogs/{param}/resourceRoles/{param}/resource/roles","no-oracle","" +"Identity.Governance","NewMgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScope.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScope","POST","/identityGovernance/entitlementManagement/catalogs/{param}/resourceRoles/{param}/resource/scopes","mismatch","New-MgEntitlementManagementCatalogResourceRoleResourceScope" +"Identity.Governance","NewMgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResourceRole.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResourceRole","POST","/identityGovernance/entitlementManagement/catalogs/{param}/resourceRoles/{param}/resource/scopes/{param}/resource/roles","mismatch","New-MgEntitlementManagementCatalogResourceRoleResourceScopeResourceRole" +"Identity.Governance","NewMgIdentityGovernanceEntitlementManagementCatalogResourceScope.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementCatalogResourceScope","POST","/identityGovernance/entitlementManagement/catalogs/{param}/resources/{param}/scopes","no-oracle","" +"Identity.Governance","NewMgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRole.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRole","POST","/identityGovernance/entitlementManagement/catalogs/{param}/resources/{param}/scopes/{param}/resource/roles","mismatch","New-MgEntitlementManagementCatalogResourceScopeResourceRole" +"Identity.Governance","NewMgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResourceScope.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResourceScope","POST","/identityGovernance/entitlementManagement/catalogs/{param}/resourceScopes/{param}/resource/roles/{param}/resource/scopes","mismatch","New-MgEntitlementManagementCatalogResourceScopeResourceRoleResourceScope" +"Identity.Governance","NewMgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceScope.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceScope","POST","/identityGovernance/entitlementManagement/catalogs/{param}/resourceScopes/{param}/resource/scopes","no-oracle","" +"Identity.Governance","NewMgIdentityGovernanceEntitlementManagementConnectedOrganization.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementConnectedOrganization","POST","/identityGovernance/entitlementManagement/connectedOrganizations","mismatch","New-MgEntitlementManagementConnectedOrganization" +"Identity.Governance","NewMgIdentityGovernanceEntitlementManagementConnectedOrganizationExternalSponsorByRef.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementConnectedOrganizationExternalSponsorByRef","POST","/identityGovernance/entitlementManagement/connectedOrganizations/{param}/externalSponsors/$ref","mismatch","New-MgEntitlementManagementConnectedOrganizationExternalSponsorByRef" +"Identity.Governance","NewMgIdentityGovernanceEntitlementManagementConnectedOrganizationInternalSponsorByRef.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementConnectedOrganizationInternalSponsorByRef","POST","/identityGovernance/entitlementManagement/connectedOrganizations/{param}/internalSponsors/$ref","mismatch","New-MgEntitlementManagementConnectedOrganizationInternalSponsorByRef" +"Identity.Governance","NewMgIdentityGovernanceEntitlementManagementControlConfiguration.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementControlConfiguration","POST","/identityGovernance/entitlementManagement/controlConfigurations","mismatch","New-MgEntitlementManagementControlConfiguration" +"Identity.Governance","NewMgIdentityGovernanceEntitlementManagementResource.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementResource","POST","/identityGovernance/entitlementManagement/resources","mismatch","New-MgEntitlementManagementResource" +"Identity.Governance","NewMgIdentityGovernanceEntitlementManagementResourceEnvironment.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementResourceEnvironment","POST","/identityGovernance/entitlementManagement/resourceEnvironments","mismatch","New-MgEntitlementManagementResourceEnvironment" +"Identity.Governance","NewMgIdentityGovernanceEntitlementManagementResourceEnvironmentResource.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResource","POST","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources","mismatch","New-MgEntitlementManagementResourceEnvironmentResource" +"Identity.Governance","NewMgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRole.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRole","POST","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/roles","mismatch","New-MgEntitlementManagementResourceEnvironmentResourceRole" +"Identity.Governance","NewMgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResourceScope.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResourceScope","POST","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/roles/{param}/resource/scopes","mismatch","New-MgEntitlementManagementResourceEnvironmentResourceRoleResourceScope" +"Identity.Governance","NewMgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScope.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScope","POST","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/scopes","mismatch","New-MgEntitlementManagementResourceEnvironmentResourceScope" +"Identity.Governance","NewMgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResourceRole.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResourceRole","POST","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/scopes/{param}/resource/roles","mismatch","New-MgEntitlementManagementResourceEnvironmentResourceScopeResourceRole" +"Identity.Governance","NewMgIdentityGovernanceEntitlementManagementResourceRequest.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementResourceRequest","POST","/identityGovernance/entitlementManagement/resourceRequests","mismatch","New-MgEntitlementManagementResourceRequest" +"Identity.Governance","NewMgIdentityGovernanceEntitlementManagementResourceRequestCatalogCustomWorkflowExtension.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogCustomWorkflowExtension","POST","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/customWorkflowExtensions","mismatch","New-MgEntitlementManagementResourceRequestCatalogCustomWorkflowExtension" +"Identity.Governance","NewMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResource.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResource","POST","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resources","mismatch","New-MgEntitlementManagementResourceRequestCatalogResource" +"Identity.Governance","NewMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRole.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRole","POST","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceRoles","mismatch","New-MgEntitlementManagementResourceRequestCatalogResourceRole" +"Identity.Governance","NewMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceRole.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceRole","POST","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceRoles/{param}/resource/roles","no-oracle","" +"Identity.Governance","NewMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScope.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScope","POST","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceRoles/{param}/resource/scopes","mismatch","New-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScope" +"Identity.Governance","NewMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRole.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRole","POST","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceRoles/{param}/resource/scopes/{param}/resource/roles","mismatch","New-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRole" +"Identity.Governance","NewMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScope.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScope","POST","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resources/{param}/scopes","no-oracle","" +"Identity.Governance","NewMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRole.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRole","POST","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resources/{param}/scopes/{param}/resource/roles","mismatch","New-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRole" +"Identity.Governance","NewMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceScope.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceScope","POST","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceScopes/{param}/resource/roles/{param}/resource/scopes","mismatch","New-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceScope" +"Identity.Governance","NewMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceScope.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceScope","POST","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceScopes/{param}/resource/scopes","no-oracle","" +"Identity.Governance","NewMgIdentityGovernanceEntitlementManagementResourceRequestResourceRole.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRole","POST","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/roles","mismatch","New-MgEntitlementManagementResourceRequestResourceRole" +"Identity.Governance","NewMgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResourceScope.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResourceScope","POST","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/roles/{param}/resource/scopes","mismatch","New-MgEntitlementManagementResourceRequestResourceRoleResourceScope" +"Identity.Governance","NewMgIdentityGovernanceEntitlementManagementResourceRequestResourceScope.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScope","POST","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/scopes","mismatch","New-MgEntitlementManagementResourceRequestResourceScope" +"Identity.Governance","NewMgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResourceRole.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResourceRole","POST","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/scopes/{param}/resource/roles","mismatch","New-MgEntitlementManagementResourceRequestResourceScopeResourceRole" +"Identity.Governance","NewMgIdentityGovernanceEntitlementManagementResourceRole.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementResourceRole","POST","/identityGovernance/entitlementManagement/resources/{param}/roles","mismatch","New-MgEntitlementManagementResourceRole" +"Identity.Governance","NewMgIdentityGovernanceEntitlementManagementResourceRoleResourceScope.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementResourceRoleResourceScope","POST","/identityGovernance/entitlementManagement/resources/{param}/roles/{param}/resource/scopes","mismatch","New-MgEntitlementManagementResourceRoleResourceScope" +"Identity.Governance","NewMgIdentityGovernanceEntitlementManagementResourceRoleScope.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementResourceRoleScope","POST","/identityGovernance/entitlementManagement/resourceRoleScopes","mismatch","New-MgEntitlementManagementResourceRoleScope" +"Identity.Governance","NewMgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRole.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRole","POST","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/scope/resource/roles","mismatch","New-MgEntitlementManagementResourceRoleScopeResourceRole" +"Identity.Governance","NewMgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRoleResourceScope.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRoleResourceScope","POST","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/scope/resource/roles/{param}/resource/scopes","mismatch","New-MgEntitlementManagementResourceRoleScopeResourceRoleResourceScope" +"Identity.Governance","NewMgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceScope.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceScope","POST","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/scope/resource/scopes","mismatch","New-MgEntitlementManagementResourceRoleScopeResourceScope" +"Identity.Governance","NewMgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceRole.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceRole","POST","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/role/resource/roles","mismatch","New-MgEntitlementManagementResourceRoleScopeRoleResourceRole" +"Identity.Governance","NewMgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScope.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScope","POST","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/role/resource/scopes","mismatch","New-MgEntitlementManagementResourceRoleScopeRoleResourceScope" +"Identity.Governance","NewMgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScopeResourceRole.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScopeResourceRole","POST","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/role/resource/scopes/{param}/resource/roles","mismatch","New-MgEntitlementManagementResourceRoleScopeRoleResourceScopeResourceRole" +"Identity.Governance","NewMgIdentityGovernanceEntitlementManagementResourceScope.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementResourceScope","POST","/identityGovernance/entitlementManagement/resources/{param}/scopes","mismatch","New-MgEntitlementManagementResourceScope" +"Identity.Governance","NewMgIdentityGovernanceEntitlementManagementResourceScopeResourceRole.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementResourceScopeResourceRole","POST","/identityGovernance/entitlementManagement/resources/{param}/scopes/{param}/resource/roles","mismatch","New-MgEntitlementManagementResourceScopeResourceRole" +"Identity.Governance","NewMgIdentityGovernanceEntitlementManagementSubject.g.cs","v1.0","New-MgIdentityGovernanceEntitlementManagementSubject","POST","/identityGovernance/entitlementManagement/subjects","mismatch","New-MgEntitlementManagementSubject" +"Identity.Governance","NewMgIdentityGovernanceLifecycleWorkflow.g.cs","v1.0","New-MgIdentityGovernanceLifecycleWorkflow","POST","/identityGovernance/lifecycleWorkflows/workflows","matched","New-MgIdentityGovernanceLifecycleWorkflow" +"Identity.Governance","NewMgIdentityGovernanceLifecycleWorkflowCustomTaskExtension.g.cs","v1.0","New-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtension","POST","/identityGovernance/lifecycleWorkflows/customTaskExtensions","matched","New-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtension" +"Identity.Governance","NewMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTask.g.cs","v1.0","New-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTask","POST","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/tasks","matched","New-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTask" +"Identity.Governance","NewMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTask.g.cs","v1.0","New-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTask","POST","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/tasks","no-oracle","" +"Identity.Governance","NewMgIdentityGovernanceLifecycleWorkflowTask.g.cs","v1.0","New-MgIdentityGovernanceLifecycleWorkflowTask","POST","/identityGovernance/lifecycleWorkflows/workflows/{param}/tasks","matched","New-MgIdentityGovernanceLifecycleWorkflowTask" +"Identity.Governance","NewMgIdentityGovernanceLifecycleWorkflowVersionTask.g.cs","v1.0","New-MgIdentityGovernanceLifecycleWorkflowVersionTask","POST","/identityGovernance/lifecycleWorkflows/workflows/{param}/versions/{param}/tasks","matched","New-MgIdentityGovernanceLifecycleWorkflowVersionTask" +"Identity.Governance","NewMgIdentityGovernancePrivilegedAccessGroupAssignmentApproval.g.cs","v1.0","New-MgIdentityGovernancePrivilegedAccessGroupAssignmentApproval","POST","/identityGovernance/privilegedAccess/group/assignmentApprovals","matched","New-MgIdentityGovernancePrivilegedAccessGroupAssignmentApproval" +"Identity.Governance","NewMgIdentityGovernancePrivilegedAccessGroupAssignmentApprovalStage.g.cs","v1.0","New-MgIdentityGovernancePrivilegedAccessGroupAssignmentApprovalStage","POST","/identityGovernance/privilegedAccess/group/assignmentApprovals/{param}/stages","matched","New-MgIdentityGovernancePrivilegedAccessGroupAssignmentApprovalStage" +"Identity.Governance","NewMgIdentityGovernancePrivilegedAccessGroupAssignmentSchedule.g.cs","v1.0","New-MgIdentityGovernancePrivilegedAccessGroupAssignmentSchedule","POST","/identityGovernance/privilegedAccess/group/assignmentSchedules","matched","New-MgIdentityGovernancePrivilegedAccessGroupAssignmentSchedule" +"Identity.Governance","NewMgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstance.g.cs","v1.0","New-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstance","POST","/identityGovernance/privilegedAccess/group/assignmentScheduleInstances","matched","New-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstance" +"Identity.Governance","NewMgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequest.g.cs","v1.0","New-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequest","POST","/identityGovernance/privilegedAccess/group/assignmentScheduleRequests","matched","New-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequest" +"Identity.Governance","NewMgIdentityGovernancePrivilegedAccessGroupEligibilitySchedule.g.cs","v1.0","New-MgIdentityGovernancePrivilegedAccessGroupEligibilitySchedule","POST","/identityGovernance/privilegedAccess/group/eligibilitySchedules","matched","New-MgIdentityGovernancePrivilegedAccessGroupEligibilitySchedule" +"Identity.Governance","NewMgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstance.g.cs","v1.0","New-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstance","POST","/identityGovernance/privilegedAccess/group/eligibilityScheduleInstances","matched","New-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstance" +"Identity.Governance","NewMgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequest.g.cs","v1.0","New-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequest","POST","/identityGovernance/privilegedAccess/group/eligibilityScheduleRequests","matched","New-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequest" +"Identity.Governance","NewMgIdentityGovernanceTermOfUseAgreement.g.cs","v1.0","New-MgIdentityGovernanceTermOfUseAgreement","POST","/identityGovernance/termsOfUse/agreements","mismatch","New-MgIdentityGovernanceTermsOfUseAgreement" +"Identity.Governance","NewMgIdentityGovernanceTermOfUseAgreementAcceptance.g.cs","v1.0","New-MgIdentityGovernanceTermOfUseAgreementAcceptance","POST","/identityGovernance/termsOfUse/agreementAcceptances","mismatch","New-MgIdentityGovernanceTermsOfUseAgreementAcceptance" +"Identity.Governance","NewMgIdentityGovernanceTermOfUseAgreementFile.g.cs","v1.0","New-MgIdentityGovernanceTermOfUseAgreementFile","POST","/identityGovernance/termsOfUse/agreements/{param}/files","mismatch","New-MgIdentityGovernanceTermsOfUseAgreementFile" +"Identity.Governance","NewMgIdentityGovernanceTermOfUseAgreementFileLocalization.g.cs","v1.0","New-MgIdentityGovernanceTermOfUseAgreementFileLocalization","POST","/identityGovernance/termsOfUse/agreements/{param}/file/localizations","mismatch","New-MgIdentityGovernanceTermsOfUseAgreementFileLocalization" +"Identity.Governance","NewMgIdentityGovernanceTermOfUseAgreementFileLocalizationVersion.g.cs","v1.0","New-MgIdentityGovernanceTermOfUseAgreementFileLocalizationVersion","POST","/identityGovernance/termsOfUse/agreements/{param}/file/localizations/{param}/versions","mismatch","New-MgIdentityGovernanceTermsOfUseAgreementFileLocalizationVersion" +"Identity.Governance","NewMgIdentityGovernanceTermOfUseAgreementFileVersion.g.cs","v1.0","New-MgIdentityGovernanceTermOfUseAgreementFileVersion","POST","/identityGovernance/termsOfUse/agreements/{param}/files/{param}/versions","mismatch","New-MgIdentityGovernanceTermsOfUseAgreementFileVersion" +"Identity.Governance","NewMgRoleManagementDirectoryResourceNamespace.g.cs","v1.0","New-MgRoleManagementDirectoryResourceNamespace","POST","/roleManagement/directory/resourceNamespaces","matched","New-MgRoleManagementDirectoryResourceNamespace" +"Identity.Governance","NewMgRoleManagementDirectoryResourceNamespaceResourceAction.g.cs","v1.0","New-MgRoleManagementDirectoryResourceNamespaceResourceAction","POST","/roleManagement/directory/resourceNamespaces/{param}/resourceActions","matched","New-MgRoleManagementDirectoryResourceNamespaceResourceAction" +"Identity.Governance","NewMgRoleManagementDirectoryRoleAssignment.g.cs","v1.0","New-MgRoleManagementDirectoryRoleAssignment","POST","/roleManagement/directory/roleAssignments","matched","New-MgRoleManagementDirectoryRoleAssignment" +"Identity.Governance","NewMgRoleManagementDirectoryRoleAssignmentSchedule.g.cs","v1.0","New-MgRoleManagementDirectoryRoleAssignmentSchedule","POST","/roleManagement/directory/roleAssignmentSchedules","matched","New-MgRoleManagementDirectoryRoleAssignmentSchedule" +"Identity.Governance","NewMgRoleManagementDirectoryRoleAssignmentScheduleInstance.g.cs","v1.0","New-MgRoleManagementDirectoryRoleAssignmentScheduleInstance","POST","/roleManagement/directory/roleAssignmentScheduleInstances","matched","New-MgRoleManagementDirectoryRoleAssignmentScheduleInstance" +"Identity.Governance","NewMgRoleManagementDirectoryRoleAssignmentScheduleRequest.g.cs","v1.0","New-MgRoleManagementDirectoryRoleAssignmentScheduleRequest","POST","/roleManagement/directory/roleAssignmentScheduleRequests","matched","New-MgRoleManagementDirectoryRoleAssignmentScheduleRequest" +"Identity.Governance","NewMgRoleManagementDirectoryRoleDefinition.g.cs","v1.0","New-MgRoleManagementDirectoryRoleDefinition","POST","/roleManagement/directory/roleDefinitions","matched","New-MgRoleManagementDirectoryRoleDefinition" +"Identity.Governance","NewMgRoleManagementDirectoryRoleDefinitionInheritPermissionFrom.g.cs","v1.0","New-MgRoleManagementDirectoryRoleDefinitionInheritPermissionFrom","POST","/roleManagement/directory/roleDefinitions/{param}/inheritsPermissionsFrom","matched","New-MgRoleManagementDirectoryRoleDefinitionInheritPermissionFrom" +"Identity.Governance","NewMgRoleManagementDirectoryRoleEligibilitySchedule.g.cs","v1.0","New-MgRoleManagementDirectoryRoleEligibilitySchedule","POST","/roleManagement/directory/roleEligibilitySchedules","matched","New-MgRoleManagementDirectoryRoleEligibilitySchedule" +"Identity.Governance","NewMgRoleManagementDirectoryRoleEligibilityScheduleInstance.g.cs","v1.0","New-MgRoleManagementDirectoryRoleEligibilityScheduleInstance","POST","/roleManagement/directory/roleEligibilityScheduleInstances","matched","New-MgRoleManagementDirectoryRoleEligibilityScheduleInstance" +"Identity.Governance","NewMgRoleManagementDirectoryRoleEligibilityScheduleRequest.g.cs","v1.0","New-MgRoleManagementDirectoryRoleEligibilityScheduleRequest","POST","/roleManagement/directory/roleEligibilityScheduleRequests","matched","New-MgRoleManagementDirectoryRoleEligibilityScheduleRequest" +"Identity.Governance","NewMgRoleManagementEntitlementManagementResourceNamespace.g.cs","v1.0","New-MgRoleManagementEntitlementManagementResourceNamespace","POST","/roleManagement/entitlementManagement/resourceNamespaces","matched","New-MgRoleManagementEntitlementManagementResourceNamespace" +"Identity.Governance","NewMgRoleManagementEntitlementManagementResourceNamespaceResourceAction.g.cs","v1.0","New-MgRoleManagementEntitlementManagementResourceNamespaceResourceAction","POST","/roleManagement/entitlementManagement/resourceNamespaces/{param}/resourceActions","matched","New-MgRoleManagementEntitlementManagementResourceNamespaceResourceAction" +"Identity.Governance","NewMgRoleManagementEntitlementManagementRoleAssignment.g.cs","v1.0","New-MgRoleManagementEntitlementManagementRoleAssignment","POST","/roleManagement/entitlementManagement/roleAssignments","matched","New-MgRoleManagementEntitlementManagementRoleAssignment" +"Identity.Governance","NewMgRoleManagementEntitlementManagementRoleAssignmentSchedule.g.cs","v1.0","New-MgRoleManagementEntitlementManagementRoleAssignmentSchedule","POST","/roleManagement/entitlementManagement/roleAssignmentSchedules","matched","New-MgRoleManagementEntitlementManagementRoleAssignmentSchedule" +"Identity.Governance","NewMgRoleManagementEntitlementManagementRoleAssignmentScheduleInstance.g.cs","v1.0","New-MgRoleManagementEntitlementManagementRoleAssignmentScheduleInstance","POST","/roleManagement/entitlementManagement/roleAssignmentScheduleInstances","matched","New-MgRoleManagementEntitlementManagementRoleAssignmentScheduleInstance" +"Identity.Governance","NewMgRoleManagementEntitlementManagementRoleAssignmentScheduleRequest.g.cs","v1.0","New-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequest","POST","/roleManagement/entitlementManagement/roleAssignmentScheduleRequests","matched","New-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequest" +"Identity.Governance","NewMgRoleManagementEntitlementManagementRoleDefinition.g.cs","v1.0","New-MgRoleManagementEntitlementManagementRoleDefinition","POST","/roleManagement/entitlementManagement/roleDefinitions","matched","New-MgRoleManagementEntitlementManagementRoleDefinition" +"Identity.Governance","NewMgRoleManagementEntitlementManagementRoleDefinitionInheritPermissionFrom.g.cs","v1.0","New-MgRoleManagementEntitlementManagementRoleDefinitionInheritPermissionFrom","POST","/roleManagement/entitlementManagement/roleDefinitions/{param}/inheritsPermissionsFrom","matched","New-MgRoleManagementEntitlementManagementRoleDefinitionInheritPermissionFrom" +"Identity.Governance","NewMgRoleManagementEntitlementManagementRoleEligibilitySchedule.g.cs","v1.0","New-MgRoleManagementEntitlementManagementRoleEligibilitySchedule","POST","/roleManagement/entitlementManagement/roleEligibilitySchedules","matched","New-MgRoleManagementEntitlementManagementRoleEligibilitySchedule" +"Identity.Governance","NewMgRoleManagementEntitlementManagementRoleEligibilityScheduleInstance.g.cs","v1.0","New-MgRoleManagementEntitlementManagementRoleEligibilityScheduleInstance","POST","/roleManagement/entitlementManagement/roleEligibilityScheduleInstances","matched","New-MgRoleManagementEntitlementManagementRoleEligibilityScheduleInstance" +"Identity.Governance","NewMgRoleManagementEntitlementManagementRoleEligibilityScheduleRequest.g.cs","v1.0","New-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequest","POST","/roleManagement/entitlementManagement/roleEligibilityScheduleRequests","matched","New-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequest" +"Identity.Governance","RemoveMgAgreement.g.cs","v1.0","Remove-MgAgreement","DELETE","/agreements/{param}","matched","Remove-MgAgreement" +"Identity.Governance","RemoveMgAgreementAcceptance.g.cs","v1.0","Remove-MgAgreementAcceptance","DELETE","/agreements/{param}/acceptances/{param}","matched","Remove-MgAgreementAcceptance" +"Identity.Governance","RemoveMgAgreementFile.g.cs","v1.0","Remove-MgAgreementFile","DELETE","/agreements/{param}/file","matched","Remove-MgAgreementFile" +"Identity.Governance","RemoveMgAgreementFileLocalization.g.cs","v1.0","Remove-MgAgreementFileLocalization","DELETE","/agreements/{param}/file/localizations/{param}","matched","Remove-MgAgreementFileLocalization" +"Identity.Governance","RemoveMgAgreementFileLocalizationVersion.g.cs","v1.0","Remove-MgAgreementFileLocalizationVersion","DELETE","/agreements/{param}/file/localizations/{param}/versions/{param}","matched","Remove-MgAgreementFileLocalizationVersion" +"Identity.Governance","RemoveMgAgreementFileVersion.g.cs","v1.0","Remove-MgAgreementFileVersion","DELETE","/agreements/{param}/files/{param}/versions/{param}","matched","Remove-MgAgreementFileVersion" +"Identity.Governance","RemoveMgIdentityGovernanceAccessReview.g.cs","v1.0","Remove-MgIdentityGovernanceAccessReview","DELETE","/identityGovernance/accessReviews","no-oracle","" +"Identity.Governance","RemoveMgIdentityGovernanceAccessReviewDefinition.g.cs","v1.0","Remove-MgIdentityGovernanceAccessReviewDefinition","DELETE","/identityGovernance/accessReviews/definitions/{param}","matched","Remove-MgIdentityGovernanceAccessReviewDefinition" +"Identity.Governance","RemoveMgIdentityGovernanceAccessReviewDefinitionInstance.g.cs","v1.0","Remove-MgIdentityGovernanceAccessReviewDefinitionInstance","DELETE","/identityGovernance/accessReviews/definitions/{param}/instances/{param}","matched","Remove-MgIdentityGovernanceAccessReviewDefinitionInstance" +"Identity.Governance","RemoveMgIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewer.g.cs","v1.0","Remove-MgIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewer","DELETE","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/contactedReviewers/{param}","matched","Remove-MgIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewer" +"Identity.Governance","RemoveMgIdentityGovernanceAccessReviewDefinitionInstanceDecision.g.cs","v1.0","Remove-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision","DELETE","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/decisions/{param}","matched","Remove-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision" +"Identity.Governance","RemoveMgIdentityGovernanceAccessReviewDefinitionInstanceDecisionInsight.g.cs","v1.0","Remove-MgIdentityGovernanceAccessReviewDefinitionInstanceDecisionInsight","DELETE","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/decisions/{param}/insights/{param}","matched","Remove-MgIdentityGovernanceAccessReviewDefinitionInstanceDecisionInsight" +"Identity.Governance","RemoveMgIdentityGovernanceAccessReviewDefinitionInstanceStage.g.cs","v1.0","Remove-MgIdentityGovernanceAccessReviewDefinitionInstanceStage","DELETE","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/stages/{param}","matched","Remove-MgIdentityGovernanceAccessReviewDefinitionInstanceStage" +"Identity.Governance","RemoveMgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision.g.cs","v1.0","Remove-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision","DELETE","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/stages/{param}/decisions/{param}","matched","Remove-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision" +"Identity.Governance","RemoveMgIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionInsight.g.cs","v1.0","Remove-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionInsight","DELETE","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/stages/{param}/decisions/{param}/insights/{param}","matched","Remove-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionInsight" +"Identity.Governance","RemoveMgIdentityGovernanceAccessReviewHistoryDefinition.g.cs","v1.0","Remove-MgIdentityGovernanceAccessReviewHistoryDefinition","DELETE","/identityGovernance/accessReviews/historyDefinitions/{param}","matched","Remove-MgIdentityGovernanceAccessReviewHistoryDefinition" +"Identity.Governance","RemoveMgIdentityGovernanceAccessReviewHistoryDefinitionInstance.g.cs","v1.0","Remove-MgIdentityGovernanceAccessReviewHistoryDefinitionInstance","DELETE","/identityGovernance/accessReviews/historyDefinitions/{param}/instances/{param}","matched","Remove-MgIdentityGovernanceAccessReviewHistoryDefinitionInstance" +"Identity.Governance","RemoveMgIdentityGovernanceAppConsent.g.cs","v1.0","Remove-MgIdentityGovernanceAppConsent","DELETE","/identityGovernance/appConsent","no-oracle","" +"Identity.Governance","RemoveMgIdentityGovernanceAppConsentAppConsentRequest.g.cs","v1.0","Remove-MgIdentityGovernanceAppConsentAppConsentRequest","DELETE","/identityGovernance/appConsent/appConsentRequests/{param}","mismatch","Remove-MgIdentityGovernanceAppConsentRequest" +"Identity.Governance","RemoveMgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequest.g.cs","v1.0","Remove-MgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequest","DELETE","/identityGovernance/appConsent/appConsentRequests/{param}/userConsentRequests/{param}","mismatch","Remove-MgIdentityGovernanceAppConsentRequestUserConsentRequest" +"Identity.Governance","RemoveMgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequestApproval.g.cs","v1.0","Remove-MgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequestApproval","DELETE","/identityGovernance/appConsent/appConsentRequests/{param}/userConsentRequests/{param}/approval","mismatch","Remove-MgIdentityGovernanceAppConsentRequestUserConsentRequestApproval" +"Identity.Governance","RemoveMgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequestApprovalStage.g.cs","v1.0","Remove-MgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequestApprovalStage","DELETE","/identityGovernance/appConsent/appConsentRequests/{param}/userConsentRequests/{param}/approval/stages/{param}","mismatch","Remove-MgIdentityGovernanceAppConsentRequestUserConsentRequestApprovalStage" +"Identity.Governance","RemoveMgIdentityGovernanceEntitlementManagement.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagement","DELETE","/identityGovernance/entitlementManagement","no-oracle","" +"Identity.Governance","RemoveMgIdentityGovernanceEntitlementManagementAccessPackage.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementAccessPackage","DELETE","/identityGovernance/entitlementManagement/accessPackages/{param}","mismatch","Remove-MgEntitlementManagementAccessPackage" +"Identity.Governance","RemoveMgIdentityGovernanceEntitlementManagementAccessPackageAssignmentApproval.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentApproval","DELETE","/identityGovernance/entitlementManagement/accessPackageAssignmentApprovals/{param}","mismatch","Remove-MgEntitlementManagementAccessPackageAssignmentApproval" +"Identity.Governance","RemoveMgIdentityGovernanceEntitlementManagementAccessPackageAssignmentApprovalStage.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentApprovalStage","DELETE","/identityGovernance/entitlementManagement/accessPackageAssignmentApprovals/{param}/stages/{param}","mismatch","Remove-MgEntitlementManagementAccessPackageAssignmentApprovalStage" +"Identity.Governance","RemoveMgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicy.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicy","DELETE","/identityGovernance/entitlementManagement/accessPackages/{param}/assignmentPolicies/{param}","mismatch","Remove-MgEntitlementManagementAccessPackageAssignmentPolicy" +"Identity.Governance","RemoveMgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyCustomExtensionStageSetting.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyCustomExtensionStageSetting","DELETE","/identityGovernance/entitlementManagement/accessPackages/{param}/assignmentPolicies/{param}/customExtensionStageSettings/{param}","no-oracle","" +"Identity.Governance","RemoveMgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyQuestion.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyQuestion","DELETE","/identityGovernance/entitlementManagement/accessPackages/{param}/assignmentPolicies/{param}/questions/{param}","no-oracle","" +"Identity.Governance","RemoveMgIdentityGovernanceEntitlementManagementAccessPackageIncompatibleAccessPackageByRef.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementAccessPackageIncompatibleAccessPackageByRef","DELETE","/identityGovernance/entitlementManagement/accessPackages/{param}/incompatibleAccessPackages/{param}/$ref","no-oracle","" +"Identity.Governance","RemoveMgIdentityGovernanceEntitlementManagementAccessPackageIncompatibleGroupByRef.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementAccessPackageIncompatibleGroupByRef","DELETE","/identityGovernance/entitlementManagement/accessPackages/{param}/incompatibleGroups/{param}/$ref","no-oracle","" +"Identity.Governance","RemoveMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScope.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScope","DELETE","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}","mismatch","Remove-MgEntitlementManagementAccessPackageResourceRoleScope" +"Identity.Governance","RemoveMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResource.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResource","DELETE","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource","no-oracle","" +"Identity.Governance","RemoveMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRole.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRole","DELETE","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/roles/{param}","no-oracle","" +"Identity.Governance","RemoveMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRoleResource.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRoleResource","DELETE","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/roles/{param}/resource","no-oracle","" +"Identity.Governance","RemoveMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRoleResourceScope.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRoleResourceScope","DELETE","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/roles/{param}/resource/scopes/{param}","no-oracle","" +"Identity.Governance","RemoveMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceScope.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceScope","DELETE","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/scopes/{param}","no-oracle","" +"Identity.Governance","RemoveMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRole.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRole","DELETE","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role","no-oracle","" +"Identity.Governance","RemoveMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResource.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResource","DELETE","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource","no-oracle","" +"Identity.Governance","RemoveMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceRole.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceRole","DELETE","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/roles/{param}","no-oracle","" +"Identity.Governance","RemoveMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScope.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScope","DELETE","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/scopes/{param}","no-oracle","" +"Identity.Governance","RemoveMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScopeResource.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScopeResource","DELETE","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/scopes/{param}/resource","no-oracle","" +"Identity.Governance","RemoveMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScopeResourceRole.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScopeResourceRole","DELETE","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/scopes/{param}/resource/roles/{param}","no-oracle","" +"Identity.Governance","RemoveMgIdentityGovernanceEntitlementManagementAccessPackageSuggestion.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementAccessPackageSuggestion","DELETE","/identityGovernance/entitlementManagement/accessPackageSuggestions/{param}","mismatch","Remove-MgEntitlementManagementAccessPackageSuggestion" +"Identity.Governance","RemoveMgIdentityGovernanceEntitlementManagementAssignment.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementAssignment","DELETE","/identityGovernance/entitlementManagement/assignments/{param}","mismatch","Remove-MgEntitlementManagementAssignment" +"Identity.Governance","RemoveMgIdentityGovernanceEntitlementManagementAssignmentPolicy.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementAssignmentPolicy","DELETE","/identityGovernance/entitlementManagement/assignmentPolicies/{param}","mismatch","Remove-MgEntitlementManagementAssignmentPolicy" +"Identity.Governance","RemoveMgIdentityGovernanceEntitlementManagementAssignmentPolicyCustomExtensionStageSetting.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementAssignmentPolicyCustomExtensionStageSetting","DELETE","/identityGovernance/entitlementManagement/assignmentPolicies/{param}/customExtensionStageSettings/{param}","mismatch","Remove-MgEntitlementManagementAssignmentPolicyCustomExtensionStageSetting" +"Identity.Governance","RemoveMgIdentityGovernanceEntitlementManagementAssignmentPolicyQuestion.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementAssignmentPolicyQuestion","DELETE","/identityGovernance/entitlementManagement/assignmentPolicies/{param}/questions/{param}","mismatch","Remove-MgEntitlementManagementAssignmentPolicyQuestion" +"Identity.Governance","RemoveMgIdentityGovernanceEntitlementManagementAssignmentRequest.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementAssignmentRequest","DELETE","/identityGovernance/entitlementManagement/assignmentRequests/{param}","mismatch","Remove-MgEntitlementManagementAssignmentRequest" +"Identity.Governance","RemoveMgIdentityGovernanceEntitlementManagementAvailableAccessPackage.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementAvailableAccessPackage","DELETE","/identityGovernance/entitlementManagement/availableAccessPackages/{param}","mismatch","Remove-MgEntitlementManagementAvailableAccessPackage" +"Identity.Governance","RemoveMgIdentityGovernanceEntitlementManagementCatalog.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementCatalog","DELETE","/identityGovernance/entitlementManagement/catalogs/{param}","mismatch","Remove-MgEntitlementManagementCatalog" +"Identity.Governance","RemoveMgIdentityGovernanceEntitlementManagementCatalogCustomWorkflowExtension.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementCatalogCustomWorkflowExtension","DELETE","/identityGovernance/entitlementManagement/catalogs/{param}/customWorkflowExtensions/{param}","mismatch","Remove-MgEntitlementManagementCatalogCustomWorkflowExtension" +"Identity.Governance","RemoveMgIdentityGovernanceEntitlementManagementCatalogResource.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementCatalogResource","DELETE","/identityGovernance/entitlementManagement/catalogs/{param}/resources/{param}","mismatch","Remove-MgEntitlementManagementCatalogResource" +"Identity.Governance","RemoveMgIdentityGovernanceEntitlementManagementCatalogResourceRole.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceRole","DELETE","/identityGovernance/entitlementManagement/catalogs/{param}/resourceRoles/{param}","mismatch","Remove-MgEntitlementManagementCatalogResourceRole" +"Identity.Governance","RemoveMgIdentityGovernanceEntitlementManagementCatalogResourceRoleResource.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResource","DELETE","/identityGovernance/entitlementManagement/catalogs/{param}/resourceRoles/{param}/resource","mismatch","Remove-MgEntitlementManagementCatalogResourceRoleResource" +"Identity.Governance","RemoveMgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceRole.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceRole","DELETE","/identityGovernance/entitlementManagement/catalogs/{param}/resourceRoles/{param}/resource/roles/{param}","no-oracle","" +"Identity.Governance","RemoveMgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScope.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScope","DELETE","/identityGovernance/entitlementManagement/catalogs/{param}/resourceRoles/{param}/resource/scopes/{param}","mismatch","Remove-MgEntitlementManagementCatalogResourceRoleResourceScope" +"Identity.Governance","RemoveMgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResource.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResource","DELETE","/identityGovernance/entitlementManagement/catalogs/{param}/resourceRoles/{param}/resource/scopes/{param}/resource","mismatch","Remove-MgEntitlementManagementCatalogResourceRoleResourceScopeResource" +"Identity.Governance","RemoveMgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResourceRole.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResourceRole","DELETE","/identityGovernance/entitlementManagement/catalogs/{param}/resourceRoles/{param}/resource/scopes/{param}/resource/roles/{param}","mismatch","Remove-MgEntitlementManagementCatalogResourceRoleResourceScopeResourceRole" +"Identity.Governance","RemoveMgIdentityGovernanceEntitlementManagementCatalogResourceScope.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceScope","DELETE","/identityGovernance/entitlementManagement/catalogs/{param}/resources/{param}/scopes/{param}","no-oracle","" +"Identity.Governance","RemoveMgIdentityGovernanceEntitlementManagementCatalogResourceScopeResource.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResource","DELETE","/identityGovernance/entitlementManagement/catalogs/{param}/resources/{param}/scopes/{param}/resource","mismatch","Remove-MgEntitlementManagementCatalogResourceScopeResource" +"Identity.Governance","RemoveMgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRole.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRole","DELETE","/identityGovernance/entitlementManagement/catalogs/{param}/resources/{param}/scopes/{param}/resource/roles/{param}","mismatch","Remove-MgEntitlementManagementCatalogResourceScopeResourceRole" +"Identity.Governance","RemoveMgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResource.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResource","DELETE","/identityGovernance/entitlementManagement/catalogs/{param}/resources/{param}/scopes/{param}/resource/roles/{param}/resource","mismatch","Remove-MgEntitlementManagementCatalogResourceScopeResourceRoleResource" +"Identity.Governance","RemoveMgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResourceScope.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResourceScope","DELETE","/identityGovernance/entitlementManagement/catalogs/{param}/resourceScopes/{param}/resource/roles/{param}/resource/scopes/{param}","mismatch","Remove-MgEntitlementManagementCatalogResourceScopeResourceRoleResourceScope" +"Identity.Governance","RemoveMgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceScope.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceScope","DELETE","/identityGovernance/entitlementManagement/catalogs/{param}/resourceScopes/{param}/resource/scopes/{param}","no-oracle","" +"Identity.Governance","RemoveMgIdentityGovernanceEntitlementManagementConnectedOrganization.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementConnectedOrganization","DELETE","/identityGovernance/entitlementManagement/connectedOrganizations/{param}","mismatch","Remove-MgEntitlementManagementConnectedOrganization" +"Identity.Governance","RemoveMgIdentityGovernanceEntitlementManagementConnectedOrganizationExternalSponsorByRef.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementConnectedOrganizationExternalSponsorByRef","DELETE","/identityGovernance/entitlementManagement/connectedOrganizations/{param}/externalSponsors/{param}/$ref","mismatch","Remove-MgEntitlementManagementConnectedOrganizationExternalSponsorDirectoryObjectByRef" +"Identity.Governance","RemoveMgIdentityGovernanceEntitlementManagementConnectedOrganizationInternalSponsorByRef.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementConnectedOrganizationInternalSponsorByRef","DELETE","/identityGovernance/entitlementManagement/connectedOrganizations/{param}/internalSponsors/{param}/$ref","mismatch","Remove-MgEntitlementManagementConnectedOrganizationInternalSponsorDirectoryObjectByRef" +"Identity.Governance","RemoveMgIdentityGovernanceEntitlementManagementControlConfiguration.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementControlConfiguration","DELETE","/identityGovernance/entitlementManagement/controlConfigurations/{param}","mismatch","Remove-MgEntitlementManagementControlConfiguration" +"Identity.Governance","RemoveMgIdentityGovernanceEntitlementManagementResource.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementResource","DELETE","/identityGovernance/entitlementManagement/resources/{param}","mismatch","Remove-MgEntitlementManagementResource" +"Identity.Governance","RemoveMgIdentityGovernanceEntitlementManagementResourceEnvironment.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementResourceEnvironment","DELETE","/identityGovernance/entitlementManagement/resourceEnvironments/{param}","mismatch","Remove-MgEntitlementManagementResourceEnvironment" +"Identity.Governance","RemoveMgIdentityGovernanceEntitlementManagementResourceEnvironmentResource.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResource","DELETE","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}","mismatch","Remove-MgEntitlementManagementResourceEnvironmentResource" +"Identity.Governance","RemoveMgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRole.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRole","DELETE","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/roles/{param}","mismatch","Remove-MgEntitlementManagementResourceEnvironmentResourceRole" +"Identity.Governance","RemoveMgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResource.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResource","DELETE","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/roles/{param}/resource","mismatch","Remove-MgEntitlementManagementResourceEnvironmentResourceRoleResource" +"Identity.Governance","RemoveMgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResourceScope.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResourceScope","DELETE","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/roles/{param}/resource/scopes/{param}","mismatch","Remove-MgEntitlementManagementResourceEnvironmentResourceRoleResourceScope" +"Identity.Governance","RemoveMgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResourceScopeResource.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResourceScopeResource","DELETE","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/roles/{param}/resource/scopes/{param}/resource","mismatch","Remove-MgEntitlementManagementResourceEnvironmentResourceRoleResourceScopeResource" +"Identity.Governance","RemoveMgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScope.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScope","DELETE","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/scopes/{param}","mismatch","Remove-MgEntitlementManagementResourceEnvironmentResourceScope" +"Identity.Governance","RemoveMgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResource.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResource","DELETE","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/scopes/{param}/resource","mismatch","Remove-MgEntitlementManagementResourceEnvironmentResourceScopeResource" +"Identity.Governance","RemoveMgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResourceRole.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResourceRole","DELETE","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/scopes/{param}/resource/roles/{param}","mismatch","Remove-MgEntitlementManagementResourceEnvironmentResourceScopeResourceRole" +"Identity.Governance","RemoveMgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResourceRoleResource.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResourceRoleResource","DELETE","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/scopes/{param}/resource/roles/{param}/resource","mismatch","Remove-MgEntitlementManagementResourceEnvironmentResourceScopeResourceRoleResource" +"Identity.Governance","RemoveMgIdentityGovernanceEntitlementManagementResourceRequest.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementResourceRequest","DELETE","/identityGovernance/entitlementManagement/resourceRequests/{param}","mismatch","Remove-MgEntitlementManagementResourceRequest" +"Identity.Governance","RemoveMgIdentityGovernanceEntitlementManagementResourceRequestCatalog.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalog","DELETE","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog","mismatch","Remove-MgEntitlementManagementResourceRequestCatalog" +"Identity.Governance","RemoveMgIdentityGovernanceEntitlementManagementResourceRequestCatalogCustomWorkflowExtension.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogCustomWorkflowExtension","DELETE","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/customWorkflowExtensions/{param}","mismatch","Remove-MgEntitlementManagementResourceRequestCatalogCustomWorkflowExtension" +"Identity.Governance","RemoveMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResource.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResource","DELETE","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resources/{param}","mismatch","Remove-MgEntitlementManagementResourceRequestCatalogResource" +"Identity.Governance","RemoveMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRole.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRole","DELETE","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceRoles/{param}","mismatch","Remove-MgEntitlementManagementResourceRequestCatalogResourceRole" +"Identity.Governance","RemoveMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResource.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResource","DELETE","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceRoles/{param}/resource","mismatch","Remove-MgEntitlementManagementResourceRequestCatalogResourceRoleResource" +"Identity.Governance","RemoveMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceRole.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceRole","DELETE","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceRoles/{param}/resource/roles/{param}","no-oracle","" +"Identity.Governance","RemoveMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScope.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScope","DELETE","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceRoles/{param}/resource/scopes/{param}","mismatch","Remove-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScope" +"Identity.Governance","RemoveMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResource.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResource","DELETE","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceRoles/{param}/resource/scopes/{param}/resource","mismatch","Remove-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResource" +"Identity.Governance","RemoveMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRole.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRole","DELETE","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceRoles/{param}/resource/scopes/{param}/resource/roles/{param}","mismatch","Remove-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRole" +"Identity.Governance","RemoveMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScope.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScope","DELETE","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resources/{param}/scopes/{param}","no-oracle","" +"Identity.Governance","RemoveMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResource.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResource","DELETE","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resources/{param}/scopes/{param}/resource","mismatch","Remove-MgEntitlementManagementResourceRequestCatalogResourceScopeResource" +"Identity.Governance","RemoveMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRole.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRole","DELETE","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resources/{param}/scopes/{param}/resource/roles/{param}","mismatch","Remove-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRole" +"Identity.Governance","RemoveMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResource.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResource","DELETE","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resources/{param}/scopes/{param}/resource/roles/{param}/resource","mismatch","Remove-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResource" +"Identity.Governance","RemoveMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceScope.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceScope","DELETE","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceScopes/{param}/resource/roles/{param}/resource/scopes/{param}","mismatch","Remove-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceScope" +"Identity.Governance","RemoveMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceScope.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceScope","DELETE","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceScopes/{param}/resource/scopes/{param}","no-oracle","" +"Identity.Governance","RemoveMgIdentityGovernanceEntitlementManagementResourceRequestResource.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementResourceRequestResource","DELETE","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource","mismatch","Remove-MgEntitlementManagementResourceRequestResource" +"Identity.Governance","RemoveMgIdentityGovernanceEntitlementManagementResourceRequestResourceRole.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRole","DELETE","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/roles/{param}","mismatch","Remove-MgEntitlementManagementResourceRequestResourceRole" +"Identity.Governance","RemoveMgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResource.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResource","DELETE","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/roles/{param}/resource","mismatch","Remove-MgEntitlementManagementResourceRequestResourceRoleResource" +"Identity.Governance","RemoveMgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResourceScope.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResourceScope","DELETE","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/roles/{param}/resource/scopes/{param}","mismatch","Remove-MgEntitlementManagementResourceRequestResourceRoleResourceScope" +"Identity.Governance","RemoveMgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResourceScopeResource.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResourceScopeResource","DELETE","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/roles/{param}/resource/scopes/{param}/resource","mismatch","Remove-MgEntitlementManagementResourceRequestResourceRoleResourceScopeResource" +"Identity.Governance","RemoveMgIdentityGovernanceEntitlementManagementResourceRequestResourceScope.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScope","DELETE","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/scopes/{param}","mismatch","Remove-MgEntitlementManagementResourceRequestResourceScope" +"Identity.Governance","RemoveMgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResource.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResource","DELETE","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/scopes/{param}/resource","mismatch","Remove-MgEntitlementManagementResourceRequestResourceScopeResource" +"Identity.Governance","RemoveMgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResourceRole.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResourceRole","DELETE","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/scopes/{param}/resource/roles/{param}","mismatch","Remove-MgEntitlementManagementResourceRequestResourceScopeResourceRole" +"Identity.Governance","RemoveMgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResourceRoleResource.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResourceRoleResource","DELETE","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/scopes/{param}/resource/roles/{param}/resource","mismatch","Remove-MgEntitlementManagementResourceRequestResourceScopeResourceRoleResource" +"Identity.Governance","RemoveMgIdentityGovernanceEntitlementManagementResourceRole.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementResourceRole","DELETE","/identityGovernance/entitlementManagement/resources/{param}/roles/{param}","mismatch","Remove-MgEntitlementManagementResourceRole" +"Identity.Governance","RemoveMgIdentityGovernanceEntitlementManagementResourceRoleResource.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementResourceRoleResource","DELETE","/identityGovernance/entitlementManagement/resources/{param}/roles/{param}/resource","mismatch","Remove-MgEntitlementManagementResourceRoleResource" +"Identity.Governance","RemoveMgIdentityGovernanceEntitlementManagementResourceRoleResourceScope.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementResourceRoleResourceScope","DELETE","/identityGovernance/entitlementManagement/resources/{param}/roles/{param}/resource/scopes/{param}","mismatch","Remove-MgEntitlementManagementResourceRoleResourceScope" +"Identity.Governance","RemoveMgIdentityGovernanceEntitlementManagementResourceRoleResourceScopeResource.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementResourceRoleResourceScopeResource","DELETE","/identityGovernance/entitlementManagement/resources/{param}/roles/{param}/resource/scopes/{param}/resource","mismatch","Remove-MgEntitlementManagementResourceRoleResourceScopeResource" +"Identity.Governance","RemoveMgIdentityGovernanceEntitlementManagementResourceRoleScope.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementResourceRoleScope","DELETE","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}","mismatch","Remove-MgEntitlementManagementResourceRoleScope" +"Identity.Governance","RemoveMgIdentityGovernanceEntitlementManagementResourceRoleScopeResource.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResource","DELETE","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/scope/resource","mismatch","Remove-MgEntitlementManagementResourceRoleScopeResource" +"Identity.Governance","RemoveMgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRole.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRole","DELETE","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/scope/resource/roles/{param}","mismatch","Remove-MgEntitlementManagementResourceRoleScopeResourceRole" +"Identity.Governance","RemoveMgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRoleResource.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRoleResource","DELETE","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/scope/resource/roles/{param}/resource","mismatch","Remove-MgEntitlementManagementResourceRoleScopeResourceRoleResource" +"Identity.Governance","RemoveMgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRoleResourceScope.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRoleResourceScope","DELETE","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/scope/resource/roles/{param}/resource/scopes/{param}","mismatch","Remove-MgEntitlementManagementResourceRoleScopeResourceRoleResourceScope" +"Identity.Governance","RemoveMgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceScope.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceScope","DELETE","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/scope/resource/scopes/{param}","mismatch","Remove-MgEntitlementManagementResourceRoleScopeResourceScope" +"Identity.Governance","RemoveMgIdentityGovernanceEntitlementManagementResourceRoleScopeRole.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRole","DELETE","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/role","mismatch","Remove-MgEntitlementManagementResourceRoleScopeRole" +"Identity.Governance","RemoveMgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResource.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResource","DELETE","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/role/resource","mismatch","Remove-MgEntitlementManagementResourceRoleScopeRoleResource" +"Identity.Governance","RemoveMgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceRole.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceRole","DELETE","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/role/resource/roles/{param}","mismatch","Remove-MgEntitlementManagementResourceRoleScopeRoleResourceRole" +"Identity.Governance","RemoveMgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScope.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScope","DELETE","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/role/resource/scopes/{param}","mismatch","Remove-MgEntitlementManagementResourceRoleScopeRoleResourceScope" +"Identity.Governance","RemoveMgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScopeResource.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScopeResource","DELETE","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/role/resource/scopes/{param}/resource","mismatch","Remove-MgEntitlementManagementResourceRoleScopeRoleResourceScopeResource" +"Identity.Governance","RemoveMgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScopeResourceRole.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScopeResourceRole","DELETE","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/role/resource/scopes/{param}/resource/roles/{param}","mismatch","Remove-MgEntitlementManagementResourceRoleScopeRoleResourceScopeResourceRole" +"Identity.Governance","RemoveMgIdentityGovernanceEntitlementManagementResourceScope.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementResourceScope","DELETE","/identityGovernance/entitlementManagement/resources/{param}/scopes/{param}","mismatch","Remove-MgEntitlementManagementResourceScope" +"Identity.Governance","RemoveMgIdentityGovernanceEntitlementManagementResourceScopeResource.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementResourceScopeResource","DELETE","/identityGovernance/entitlementManagement/resources/{param}/scopes/{param}/resource","mismatch","Remove-MgEntitlementManagementResourceScopeResource" +"Identity.Governance","RemoveMgIdentityGovernanceEntitlementManagementResourceScopeResourceRole.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementResourceScopeResourceRole","DELETE","/identityGovernance/entitlementManagement/resources/{param}/scopes/{param}/resource/roles/{param}","mismatch","Remove-MgEntitlementManagementResourceScopeResourceRole" +"Identity.Governance","RemoveMgIdentityGovernanceEntitlementManagementResourceScopeResourceRoleResource.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementResourceScopeResourceRoleResource","DELETE","/identityGovernance/entitlementManagement/resources/{param}/scopes/{param}/resource/roles/{param}/resource","mismatch","Remove-MgEntitlementManagementResourceScopeResourceRoleResource" +"Identity.Governance","RemoveMgIdentityGovernanceEntitlementManagementSetting.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementSetting","DELETE","/identityGovernance/entitlementManagement/settings","no-oracle","" +"Identity.Governance","RemoveMgIdentityGovernanceEntitlementManagementSubject.g.cs","v1.0","Remove-MgIdentityGovernanceEntitlementManagementSubject","DELETE","/identityGovernance/entitlementManagement/subjects/{param}","mismatch","Remove-MgEntitlementManagementSubject" +"Identity.Governance","RemoveMgIdentityGovernanceLifecycleWorkflow.g.cs","v1.0","Remove-MgIdentityGovernanceLifecycleWorkflow","DELETE","/identityGovernance/lifecycleWorkflows/workflows/{param}","matched","Remove-MgIdentityGovernanceLifecycleWorkflow" +"Identity.Governance","RemoveMgIdentityGovernanceLifecycleWorkflowCustomTaskExtension.g.cs","v1.0","Remove-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtension","DELETE","/identityGovernance/lifecycleWorkflows/customTaskExtensions/{param}","matched","Remove-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtension" +"Identity.Governance","RemoveMgIdentityGovernanceLifecycleWorkflowDeletedItem.g.cs","v1.0","Remove-MgIdentityGovernanceLifecycleWorkflowDeletedItem","DELETE","/identityGovernance/lifecycleWorkflows/deletedItems","matched","Remove-MgIdentityGovernanceLifecycleWorkflowDeletedItem" +"Identity.Governance","RemoveMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflow.g.cs","v1.0","Remove-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflow","DELETE","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}","matched","Remove-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflow" +"Identity.Governance","RemoveMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTask.g.cs","v1.0","Remove-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTask","DELETE","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/tasks/{param}","matched","Remove-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTask" +"Identity.Governance","RemoveMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTask.g.cs","v1.0","Remove-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTask","DELETE","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/tasks/{param}","no-oracle","" +"Identity.Governance","RemoveMgIdentityGovernanceLifecycleWorkflowInsight.g.cs","v1.0","Remove-MgIdentityGovernanceLifecycleWorkflowInsight","DELETE","/identityGovernance/lifecycleWorkflows/insights","matched","Remove-MgIdentityGovernanceLifecycleWorkflowInsight" +"Identity.Governance","RemoveMgIdentityGovernanceLifecycleWorkflowTask.g.cs","v1.0","Remove-MgIdentityGovernanceLifecycleWorkflowTask","DELETE","/identityGovernance/lifecycleWorkflows/workflows/{param}/tasks/{param}","matched","Remove-MgIdentityGovernanceLifecycleWorkflowTask" +"Identity.Governance","RemoveMgIdentityGovernanceLifecycleWorkflowVersionTask.g.cs","v1.0","Remove-MgIdentityGovernanceLifecycleWorkflowVersionTask","DELETE","/identityGovernance/lifecycleWorkflows/workflows/{param}/versions/{param}/tasks/{param}","matched","Remove-MgIdentityGovernanceLifecycleWorkflowVersionTask" +"Identity.Governance","RemoveMgIdentityGovernancePrivilegedAccess.g.cs","v1.0","Remove-MgIdentityGovernancePrivilegedAccess","DELETE","/identityGovernance/privilegedAccess","matched","Remove-MgIdentityGovernancePrivilegedAccess" +"Identity.Governance","RemoveMgIdentityGovernancePrivilegedAccessGroup.g.cs","v1.0","Remove-MgIdentityGovernancePrivilegedAccessGroup","DELETE","/identityGovernance/privilegedAccess/group","matched","Remove-MgIdentityGovernancePrivilegedAccessGroup" +"Identity.Governance","RemoveMgIdentityGovernancePrivilegedAccessGroupAssignmentApproval.g.cs","v1.0","Remove-MgIdentityGovernancePrivilegedAccessGroupAssignmentApproval","DELETE","/identityGovernance/privilegedAccess/group/assignmentApprovals/{param}","matched","Remove-MgIdentityGovernancePrivilegedAccessGroupAssignmentApproval" +"Identity.Governance","RemoveMgIdentityGovernancePrivilegedAccessGroupAssignmentApprovalStage.g.cs","v1.0","Remove-MgIdentityGovernancePrivilegedAccessGroupAssignmentApprovalStage","DELETE","/identityGovernance/privilegedAccess/group/assignmentApprovals/{param}/stages/{param}","matched","Remove-MgIdentityGovernancePrivilegedAccessGroupAssignmentApprovalStage" +"Identity.Governance","RemoveMgIdentityGovernancePrivilegedAccessGroupAssignmentSchedule.g.cs","v1.0","Remove-MgIdentityGovernancePrivilegedAccessGroupAssignmentSchedule","DELETE","/identityGovernance/privilegedAccess/group/assignmentSchedules/{param}","matched","Remove-MgIdentityGovernancePrivilegedAccessGroupAssignmentSchedule" +"Identity.Governance","RemoveMgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstance.g.cs","v1.0","Remove-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstance","DELETE","/identityGovernance/privilegedAccess/group/assignmentScheduleInstances/{param}","matched","Remove-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstance" +"Identity.Governance","RemoveMgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequest.g.cs","v1.0","Remove-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequest","DELETE","/identityGovernance/privilegedAccess/group/assignmentScheduleRequests/{param}","matched","Remove-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequest" +"Identity.Governance","RemoveMgIdentityGovernancePrivilegedAccessGroupEligibilitySchedule.g.cs","v1.0","Remove-MgIdentityGovernancePrivilegedAccessGroupEligibilitySchedule","DELETE","/identityGovernance/privilegedAccess/group/eligibilitySchedules/{param}","matched","Remove-MgIdentityGovernancePrivilegedAccessGroupEligibilitySchedule" +"Identity.Governance","RemoveMgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstance.g.cs","v1.0","Remove-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstance","DELETE","/identityGovernance/privilegedAccess/group/eligibilityScheduleInstances/{param}","matched","Remove-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstance" +"Identity.Governance","RemoveMgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequest.g.cs","v1.0","Remove-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequest","DELETE","/identityGovernance/privilegedAccess/group/eligibilityScheduleRequests/{param}","matched","Remove-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequest" +"Identity.Governance","RemoveMgIdentityGovernanceTermOfUse.g.cs","v1.0","Remove-MgIdentityGovernanceTermOfUse","DELETE","/identityGovernance/termsOfUse","no-oracle","" +"Identity.Governance","RemoveMgIdentityGovernanceTermOfUseAgreement.g.cs","v1.0","Remove-MgIdentityGovernanceTermOfUseAgreement","DELETE","/identityGovernance/termsOfUse/agreements/{param}","mismatch","Remove-MgIdentityGovernanceTermsOfUseAgreement" +"Identity.Governance","RemoveMgIdentityGovernanceTermOfUseAgreementAcceptance.g.cs","v1.0","Remove-MgIdentityGovernanceTermOfUseAgreementAcceptance","DELETE","/identityGovernance/termsOfUse/agreementAcceptances/{param}","mismatch","Remove-MgIdentityGovernanceTermsOfUseAgreementAcceptance" +"Identity.Governance","RemoveMgIdentityGovernanceTermOfUseAgreementFile.g.cs","v1.0","Remove-MgIdentityGovernanceTermOfUseAgreementFile","DELETE","/identityGovernance/termsOfUse/agreements/{param}/file","mismatch","Remove-MgIdentityGovernanceTermsOfUseAgreementFile" +"Identity.Governance","RemoveMgIdentityGovernanceTermOfUseAgreementFileLocalization.g.cs","v1.0","Remove-MgIdentityGovernanceTermOfUseAgreementFileLocalization","DELETE","/identityGovernance/termsOfUse/agreements/{param}/file/localizations/{param}","mismatch","Remove-MgIdentityGovernanceTermsOfUseAgreementFileLocalization" +"Identity.Governance","RemoveMgIdentityGovernanceTermOfUseAgreementFileLocalizationVersion.g.cs","v1.0","Remove-MgIdentityGovernanceTermOfUseAgreementFileLocalizationVersion","DELETE","/identityGovernance/termsOfUse/agreements/{param}/file/localizations/{param}/versions/{param}","mismatch","Remove-MgIdentityGovernanceTermsOfUseAgreementFileLocalizationVersion" +"Identity.Governance","RemoveMgIdentityGovernanceTermOfUseAgreementFileVersion.g.cs","v1.0","Remove-MgIdentityGovernanceTermOfUseAgreementFileVersion","DELETE","/identityGovernance/termsOfUse/agreements/{param}/files/{param}/versions/{param}","mismatch","Remove-MgIdentityGovernanceTermsOfUseAgreementFileVersion" +"Identity.Governance","RemoveMgRoleManagementDirectory.g.cs","v1.0","Remove-MgRoleManagementDirectory","DELETE","/roleManagement/directory","matched","Remove-MgRoleManagementDirectory" +"Identity.Governance","RemoveMgRoleManagementDirectoryResourceNamespace.g.cs","v1.0","Remove-MgRoleManagementDirectoryResourceNamespace","DELETE","/roleManagement/directory/resourceNamespaces/{param}","matched","Remove-MgRoleManagementDirectoryResourceNamespace" +"Identity.Governance","RemoveMgRoleManagementDirectoryResourceNamespaceResourceAction.g.cs","v1.0","Remove-MgRoleManagementDirectoryResourceNamespaceResourceAction","DELETE","/roleManagement/directory/resourceNamespaces/{param}/resourceActions/{param}","matched","Remove-MgRoleManagementDirectoryResourceNamespaceResourceAction" +"Identity.Governance","RemoveMgRoleManagementDirectoryRoleAssignment.g.cs","v1.0","Remove-MgRoleManagementDirectoryRoleAssignment","DELETE","/roleManagement/directory/roleAssignments/{param}","matched","Remove-MgRoleManagementDirectoryRoleAssignment" +"Identity.Governance","RemoveMgRoleManagementDirectoryRoleAssignmentAppScope.g.cs","v1.0","Remove-MgRoleManagementDirectoryRoleAssignmentAppScope","DELETE","/roleManagement/directory/roleAssignments/{param}/appScope","matched","Remove-MgRoleManagementDirectoryRoleAssignmentAppScope" +"Identity.Governance","RemoveMgRoleManagementDirectoryRoleAssignmentSchedule.g.cs","v1.0","Remove-MgRoleManagementDirectoryRoleAssignmentSchedule","DELETE","/roleManagement/directory/roleAssignmentSchedules/{param}","matched","Remove-MgRoleManagementDirectoryRoleAssignmentSchedule" +"Identity.Governance","RemoveMgRoleManagementDirectoryRoleAssignmentScheduleInstance.g.cs","v1.0","Remove-MgRoleManagementDirectoryRoleAssignmentScheduleInstance","DELETE","/roleManagement/directory/roleAssignmentScheduleInstances/{param}","matched","Remove-MgRoleManagementDirectoryRoleAssignmentScheduleInstance" +"Identity.Governance","RemoveMgRoleManagementDirectoryRoleAssignmentScheduleRequest.g.cs","v1.0","Remove-MgRoleManagementDirectoryRoleAssignmentScheduleRequest","DELETE","/roleManagement/directory/roleAssignmentScheduleRequests/{param}","matched","Remove-MgRoleManagementDirectoryRoleAssignmentScheduleRequest" +"Identity.Governance","RemoveMgRoleManagementDirectoryRoleDefinition.g.cs","v1.0","Remove-MgRoleManagementDirectoryRoleDefinition","DELETE","/roleManagement/directory/roleDefinitions/{param}","matched","Remove-MgRoleManagementDirectoryRoleDefinition" +"Identity.Governance","RemoveMgRoleManagementDirectoryRoleDefinitionInheritPermissionFrom.g.cs","v1.0","Remove-MgRoleManagementDirectoryRoleDefinitionInheritPermissionFrom","DELETE","/roleManagement/directory/roleDefinitions/{param}/inheritsPermissionsFrom/{param}","matched","Remove-MgRoleManagementDirectoryRoleDefinitionInheritPermissionFrom" +"Identity.Governance","RemoveMgRoleManagementDirectoryRoleEligibilitySchedule.g.cs","v1.0","Remove-MgRoleManagementDirectoryRoleEligibilitySchedule","DELETE","/roleManagement/directory/roleEligibilitySchedules/{param}","matched","Remove-MgRoleManagementDirectoryRoleEligibilitySchedule" +"Identity.Governance","RemoveMgRoleManagementDirectoryRoleEligibilityScheduleInstance.g.cs","v1.0","Remove-MgRoleManagementDirectoryRoleEligibilityScheduleInstance","DELETE","/roleManagement/directory/roleEligibilityScheduleInstances/{param}","matched","Remove-MgRoleManagementDirectoryRoleEligibilityScheduleInstance" +"Identity.Governance","RemoveMgRoleManagementDirectoryRoleEligibilityScheduleRequest.g.cs","v1.0","Remove-MgRoleManagementDirectoryRoleEligibilityScheduleRequest","DELETE","/roleManagement/directory/roleEligibilityScheduleRequests/{param}","matched","Remove-MgRoleManagementDirectoryRoleEligibilityScheduleRequest" +"Identity.Governance","RemoveMgRoleManagementEntitlementManagement.g.cs","v1.0","Remove-MgRoleManagementEntitlementManagement","DELETE","/roleManagement/entitlementManagement","matched","Remove-MgRoleManagementEntitlementManagement" +"Identity.Governance","RemoveMgRoleManagementEntitlementManagementResourceNamespace.g.cs","v1.0","Remove-MgRoleManagementEntitlementManagementResourceNamespace","DELETE","/roleManagement/entitlementManagement/resourceNamespaces/{param}","matched","Remove-MgRoleManagementEntitlementManagementResourceNamespace" +"Identity.Governance","RemoveMgRoleManagementEntitlementManagementResourceNamespaceResourceAction.g.cs","v1.0","Remove-MgRoleManagementEntitlementManagementResourceNamespaceResourceAction","DELETE","/roleManagement/entitlementManagement/resourceNamespaces/{param}/resourceActions/{param}","matched","Remove-MgRoleManagementEntitlementManagementResourceNamespaceResourceAction" +"Identity.Governance","RemoveMgRoleManagementEntitlementManagementRoleAssignment.g.cs","v1.0","Remove-MgRoleManagementEntitlementManagementRoleAssignment","DELETE","/roleManagement/entitlementManagement/roleAssignments/{param}","matched","Remove-MgRoleManagementEntitlementManagementRoleAssignment" +"Identity.Governance","RemoveMgRoleManagementEntitlementManagementRoleAssignmentAppScope.g.cs","v1.0","Remove-MgRoleManagementEntitlementManagementRoleAssignmentAppScope","DELETE","/roleManagement/entitlementManagement/roleAssignments/{param}/appScope","matched","Remove-MgRoleManagementEntitlementManagementRoleAssignmentAppScope" +"Identity.Governance","RemoveMgRoleManagementEntitlementManagementRoleAssignmentSchedule.g.cs","v1.0","Remove-MgRoleManagementEntitlementManagementRoleAssignmentSchedule","DELETE","/roleManagement/entitlementManagement/roleAssignmentSchedules/{param}","matched","Remove-MgRoleManagementEntitlementManagementRoleAssignmentSchedule" +"Identity.Governance","RemoveMgRoleManagementEntitlementManagementRoleAssignmentScheduleInstance.g.cs","v1.0","Remove-MgRoleManagementEntitlementManagementRoleAssignmentScheduleInstance","DELETE","/roleManagement/entitlementManagement/roleAssignmentScheduleInstances/{param}","matched","Remove-MgRoleManagementEntitlementManagementRoleAssignmentScheduleInstance" +"Identity.Governance","RemoveMgRoleManagementEntitlementManagementRoleAssignmentScheduleRequest.g.cs","v1.0","Remove-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequest","DELETE","/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{param}","matched","Remove-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequest" +"Identity.Governance","RemoveMgRoleManagementEntitlementManagementRoleDefinition.g.cs","v1.0","Remove-MgRoleManagementEntitlementManagementRoleDefinition","DELETE","/roleManagement/entitlementManagement/roleDefinitions/{param}","matched","Remove-MgRoleManagementEntitlementManagementRoleDefinition" +"Identity.Governance","RemoveMgRoleManagementEntitlementManagementRoleDefinitionInheritPermissionFrom.g.cs","v1.0","Remove-MgRoleManagementEntitlementManagementRoleDefinitionInheritPermissionFrom","DELETE","/roleManagement/entitlementManagement/roleDefinitions/{param}/inheritsPermissionsFrom/{param}","matched","Remove-MgRoleManagementEntitlementManagementRoleDefinitionInheritPermissionFrom" +"Identity.Governance","RemoveMgRoleManagementEntitlementManagementRoleEligibilitySchedule.g.cs","v1.0","Remove-MgRoleManagementEntitlementManagementRoleEligibilitySchedule","DELETE","/roleManagement/entitlementManagement/roleEligibilitySchedules/{param}","matched","Remove-MgRoleManagementEntitlementManagementRoleEligibilitySchedule" +"Identity.Governance","RemoveMgRoleManagementEntitlementManagementRoleEligibilityScheduleInstance.g.cs","v1.0","Remove-MgRoleManagementEntitlementManagementRoleEligibilityScheduleInstance","DELETE","/roleManagement/entitlementManagement/roleEligibilityScheduleInstances/{param}","matched","Remove-MgRoleManagementEntitlementManagementRoleEligibilityScheduleInstance" +"Identity.Governance","RemoveMgRoleManagementEntitlementManagementRoleEligibilityScheduleRequest.g.cs","v1.0","Remove-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequest","DELETE","/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{param}","matched","Remove-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequest" +"Identity.Governance","SetMgIdentityGovernanceAccessReviewDefinition.g.cs","v1.0","Set-MgIdentityGovernanceAccessReviewDefinition","PUT","/identityGovernance/accessReviews/definitions/{param}","matched","Set-MgIdentityGovernanceAccessReviewDefinition" +"Identity.Governance","SetMgIdentityGovernanceEntitlementManagementAssignmentPolicy.g.cs","v1.0","Set-MgIdentityGovernanceEntitlementManagementAssignmentPolicy","PUT","/identityGovernance/entitlementManagement/assignmentPolicies/{param}","mismatch","Set-MgEntitlementManagementAssignmentPolicy" +"Identity.Governance","SetMgIdentityGovernanceEntitlementManagementControlConfiguration.g.cs","v1.0","Set-MgIdentityGovernanceEntitlementManagementControlConfiguration","PUT","/identityGovernance/entitlementManagement/controlConfigurations/{param}","mismatch","Set-MgEntitlementManagementControlConfiguration" +"Identity.Governance","UpdateMgAgreement.g.cs","v1.0","Update-MgAgreement","PATCH","/agreements/{param}","matched","Update-MgAgreement" +"Identity.Governance","UpdateMgAgreementAcceptance.g.cs","v1.0","Update-MgAgreementAcceptance","PATCH","/agreements/{param}/acceptances/{param}","matched","Update-MgAgreementAcceptance" +"Identity.Governance","UpdateMgAgreementFile.g.cs","v1.0","Update-MgAgreementFile","PATCH","/agreements/{param}/file","matched","Update-MgAgreementFile" +"Identity.Governance","UpdateMgAgreementFileLocalization.g.cs","v1.0","Update-MgAgreementFileLocalization","PATCH","/agreements/{param}/file/localizations/{param}","matched","Update-MgAgreementFileLocalization" +"Identity.Governance","UpdateMgAgreementFileLocalizationVersion.g.cs","v1.0","Update-MgAgreementFileLocalizationVersion","PATCH","/agreements/{param}/file/localizations/{param}/versions/{param}","matched","Update-MgAgreementFileLocalizationVersion" +"Identity.Governance","UpdateMgAgreementFileVersion.g.cs","v1.0","Update-MgAgreementFileVersion","PATCH","/agreements/{param}/files/{param}/versions/{param}","matched","Update-MgAgreementFileVersion" +"Identity.Governance","UpdateMgIdentityGovernance.g.cs","v1.0","Update-MgIdentityGovernance","PATCH","/identityGovernance","no-oracle","" +"Identity.Governance","UpdateMgIdentityGovernanceAccessReview.g.cs","v1.0","Update-MgIdentityGovernanceAccessReview","PATCH","/identityGovernance/accessReviews","no-oracle","" +"Identity.Governance","UpdateMgIdentityGovernanceAccessReviewDefinitionInstance.g.cs","v1.0","Update-MgIdentityGovernanceAccessReviewDefinitionInstance","PATCH","/identityGovernance/accessReviews/definitions/{param}/instances/{param}","matched","Update-MgIdentityGovernanceAccessReviewDefinitionInstance" +"Identity.Governance","UpdateMgIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewer.g.cs","v1.0","Update-MgIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewer","PATCH","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/contactedReviewers/{param}","matched","Update-MgIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewer" +"Identity.Governance","UpdateMgIdentityGovernanceAccessReviewDefinitionInstanceDecision.g.cs","v1.0","Update-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision","PATCH","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/decisions/{param}","matched","Update-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision" +"Identity.Governance","UpdateMgIdentityGovernanceAccessReviewDefinitionInstanceDecisionInsight.g.cs","v1.0","Update-MgIdentityGovernanceAccessReviewDefinitionInstanceDecisionInsight","PATCH","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/decisions/{param}/insights/{param}","matched","Update-MgIdentityGovernanceAccessReviewDefinitionInstanceDecisionInsight" +"Identity.Governance","UpdateMgIdentityGovernanceAccessReviewDefinitionInstanceStage.g.cs","v1.0","Update-MgIdentityGovernanceAccessReviewDefinitionInstanceStage","PATCH","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/stages/{param}","matched","Update-MgIdentityGovernanceAccessReviewDefinitionInstanceStage" +"Identity.Governance","UpdateMgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision.g.cs","v1.0","Update-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision","PATCH","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/stages/{param}/decisions/{param}","matched","Update-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision" +"Identity.Governance","UpdateMgIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionInsight.g.cs","v1.0","Update-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionInsight","PATCH","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/stages/{param}/decisions/{param}/insights/{param}","matched","Update-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionInsight" +"Identity.Governance","UpdateMgIdentityGovernanceAccessReviewHistoryDefinition.g.cs","v1.0","Update-MgIdentityGovernanceAccessReviewHistoryDefinition","PATCH","/identityGovernance/accessReviews/historyDefinitions/{param}","matched","Update-MgIdentityGovernanceAccessReviewHistoryDefinition" +"Identity.Governance","UpdateMgIdentityGovernanceAccessReviewHistoryDefinitionInstance.g.cs","v1.0","Update-MgIdentityGovernanceAccessReviewHistoryDefinitionInstance","PATCH","/identityGovernance/accessReviews/historyDefinitions/{param}/instances/{param}","matched","Update-MgIdentityGovernanceAccessReviewHistoryDefinitionInstance" +"Identity.Governance","UpdateMgIdentityGovernanceAppConsent.g.cs","v1.0","Update-MgIdentityGovernanceAppConsent","PATCH","/identityGovernance/appConsent","no-oracle","" +"Identity.Governance","UpdateMgIdentityGovernanceAppConsentAppConsentRequest.g.cs","v1.0","Update-MgIdentityGovernanceAppConsentAppConsentRequest","PATCH","/identityGovernance/appConsent/appConsentRequests/{param}","mismatch","Update-MgIdentityGovernanceAppConsentRequest" +"Identity.Governance","UpdateMgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequest.g.cs","v1.0","Update-MgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequest","PATCH","/identityGovernance/appConsent/appConsentRequests/{param}/userConsentRequests/{param}","mismatch","Update-MgIdentityGovernanceAppConsentRequestUserConsentRequest" +"Identity.Governance","UpdateMgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequestApproval.g.cs","v1.0","Update-MgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequestApproval","PATCH","/identityGovernance/appConsent/appConsentRequests/{param}/userConsentRequests/{param}/approval","mismatch","Update-MgIdentityGovernanceAppConsentRequestUserConsentRequestApproval" +"Identity.Governance","UpdateMgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequestApprovalStage.g.cs","v1.0","Update-MgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequestApprovalStage","PATCH","/identityGovernance/appConsent/appConsentRequests/{param}/userConsentRequests/{param}/approval/stages/{param}","mismatch","Update-MgIdentityGovernanceAppConsentRequestUserConsentRequestApprovalStage" +"Identity.Governance","UpdateMgIdentityGovernanceEntitlementManagement.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagement","PATCH","/identityGovernance/entitlementManagement","no-oracle","" +"Identity.Governance","UpdateMgIdentityGovernanceEntitlementManagementAccessPackage.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementAccessPackage","PATCH","/identityGovernance/entitlementManagement/accessPackages/{param}","mismatch","Update-MgEntitlementManagementAccessPackage" +"Identity.Governance","UpdateMgIdentityGovernanceEntitlementManagementAccessPackageAssignmentApproval.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentApproval","PATCH","/identityGovernance/entitlementManagement/accessPackageAssignmentApprovals/{param}","mismatch","Update-MgEntitlementManagementAccessPackageAssignmentApproval" +"Identity.Governance","UpdateMgIdentityGovernanceEntitlementManagementAccessPackageAssignmentApprovalStage.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentApprovalStage","PATCH","/identityGovernance/entitlementManagement/accessPackageAssignmentApprovals/{param}/stages/{param}","mismatch","Update-MgEntitlementManagementAccessPackageAssignmentApprovalStage" +"Identity.Governance","UpdateMgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicy.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicy","PATCH","/identityGovernance/entitlementManagement/accessPackages/{param}/assignmentPolicies/{param}","mismatch","Update-MgEntitlementManagementAccessPackageAssignmentPolicy" +"Identity.Governance","UpdateMgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyCustomExtensionStageSetting.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyCustomExtensionStageSetting","PATCH","/identityGovernance/entitlementManagement/accessPackages/{param}/assignmentPolicies/{param}/customExtensionStageSettings/{param}","no-oracle","" +"Identity.Governance","UpdateMgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyQuestion.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyQuestion","PATCH","/identityGovernance/entitlementManagement/accessPackages/{param}/assignmentPolicies/{param}/questions/{param}","no-oracle","" +"Identity.Governance","UpdateMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScope.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScope","PATCH","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}","mismatch","Update-MgEntitlementManagementAccessPackageResourceRoleScope" +"Identity.Governance","UpdateMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResource.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResource","PATCH","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource","no-oracle","" +"Identity.Governance","UpdateMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRole.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRole","PATCH","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/roles/{param}","no-oracle","" +"Identity.Governance","UpdateMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRoleResource.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRoleResource","PATCH","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/roles/{param}/resource","no-oracle","" +"Identity.Governance","UpdateMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRoleResourceScope.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRoleResourceScope","PATCH","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/roles/{param}/resource/scopes/{param}","no-oracle","" +"Identity.Governance","UpdateMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceScope.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceScope","PATCH","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/scopes/{param}","no-oracle","" +"Identity.Governance","UpdateMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRole.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRole","PATCH","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role","no-oracle","" +"Identity.Governance","UpdateMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResource.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResource","PATCH","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource","no-oracle","" +"Identity.Governance","UpdateMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceRole.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceRole","PATCH","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/roles/{param}","no-oracle","" +"Identity.Governance","UpdateMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScope.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScope","PATCH","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/scopes/{param}","no-oracle","" +"Identity.Governance","UpdateMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScopeResource.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScopeResource","PATCH","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/scopes/{param}/resource","no-oracle","" +"Identity.Governance","UpdateMgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScopeResourceRole.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScopeResourceRole","PATCH","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/scopes/{param}/resource/roles/{param}","no-oracle","" +"Identity.Governance","UpdateMgIdentityGovernanceEntitlementManagementAccessPackageSuggestion.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementAccessPackageSuggestion","PATCH","/identityGovernance/entitlementManagement/accessPackageSuggestions/{param}","mismatch","Update-MgEntitlementManagementAccessPackageSuggestion" +"Identity.Governance","UpdateMgIdentityGovernanceEntitlementManagementAssignment.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementAssignment","PATCH","/identityGovernance/entitlementManagement/assignments/{param}","no-oracle","" +"Identity.Governance","UpdateMgIdentityGovernanceEntitlementManagementAssignmentPolicyCustomExtensionStageSetting.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementAssignmentPolicyCustomExtensionStageSetting","PATCH","/identityGovernance/entitlementManagement/assignmentPolicies/{param}/customExtensionStageSettings/{param}","mismatch","Update-MgEntitlementManagementAssignmentPolicyCustomExtensionStageSetting" +"Identity.Governance","UpdateMgIdentityGovernanceEntitlementManagementAssignmentPolicyQuestion.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementAssignmentPolicyQuestion","PATCH","/identityGovernance/entitlementManagement/assignmentPolicies/{param}/questions/{param}","mismatch","Update-MgEntitlementManagementAssignmentPolicyQuestion" +"Identity.Governance","UpdateMgIdentityGovernanceEntitlementManagementAssignmentRequest.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementAssignmentRequest","PATCH","/identityGovernance/entitlementManagement/assignmentRequests/{param}","no-oracle","" +"Identity.Governance","UpdateMgIdentityGovernanceEntitlementManagementAvailableAccessPackage.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementAvailableAccessPackage","PATCH","/identityGovernance/entitlementManagement/availableAccessPackages/{param}","mismatch","Update-MgEntitlementManagementAvailableAccessPackage" +"Identity.Governance","UpdateMgIdentityGovernanceEntitlementManagementCatalog.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementCatalog","PATCH","/identityGovernance/entitlementManagement/catalogs/{param}","mismatch","Update-MgEntitlementManagementCatalog" +"Identity.Governance","UpdateMgIdentityGovernanceEntitlementManagementCatalogCustomWorkflowExtension.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementCatalogCustomWorkflowExtension","PATCH","/identityGovernance/entitlementManagement/catalogs/{param}/customWorkflowExtensions/{param}","mismatch","Update-MgEntitlementManagementCatalogCustomWorkflowExtension" +"Identity.Governance","UpdateMgIdentityGovernanceEntitlementManagementCatalogResource.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementCatalogResource","PATCH","/identityGovernance/entitlementManagement/catalogs/{param}/resources/{param}","no-oracle","" +"Identity.Governance","UpdateMgIdentityGovernanceEntitlementManagementCatalogResourceRole.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementCatalogResourceRole","PATCH","/identityGovernance/entitlementManagement/catalogs/{param}/resourceRoles/{param}","mismatch","Update-MgEntitlementManagementCatalogResourceRole" +"Identity.Governance","UpdateMgIdentityGovernanceEntitlementManagementCatalogResourceRoleResource.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResource","PATCH","/identityGovernance/entitlementManagement/catalogs/{param}/resourceRoles/{param}/resource","no-oracle","" +"Identity.Governance","UpdateMgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceRole.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceRole","PATCH","/identityGovernance/entitlementManagement/catalogs/{param}/resourceRoles/{param}/resource/roles/{param}","no-oracle","" +"Identity.Governance","UpdateMgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScope.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScope","PATCH","/identityGovernance/entitlementManagement/catalogs/{param}/resourceRoles/{param}/resource/scopes/{param}","mismatch","Update-MgEntitlementManagementCatalogResourceRoleResourceScope" +"Identity.Governance","UpdateMgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResource.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResource","PATCH","/identityGovernance/entitlementManagement/catalogs/{param}/resourceRoles/{param}/resource/scopes/{param}/resource","no-oracle","" +"Identity.Governance","UpdateMgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResourceRole.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResourceRole","PATCH","/identityGovernance/entitlementManagement/catalogs/{param}/resourceRoles/{param}/resource/scopes/{param}/resource/roles/{param}","mismatch","Update-MgEntitlementManagementCatalogResourceRoleResourceScopeResourceRole" +"Identity.Governance","UpdateMgIdentityGovernanceEntitlementManagementCatalogResourceScope.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementCatalogResourceScope","PATCH","/identityGovernance/entitlementManagement/catalogs/{param}/resources/{param}/scopes/{param}","no-oracle","" +"Identity.Governance","UpdateMgIdentityGovernanceEntitlementManagementCatalogResourceScopeResource.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResource","PATCH","/identityGovernance/entitlementManagement/catalogs/{param}/resources/{param}/scopes/{param}/resource","no-oracle","" +"Identity.Governance","UpdateMgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRole.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRole","PATCH","/identityGovernance/entitlementManagement/catalogs/{param}/resources/{param}/scopes/{param}/resource/roles/{param}","mismatch","Update-MgEntitlementManagementCatalogResourceScopeResourceRole" +"Identity.Governance","UpdateMgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResource.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResource","PATCH","/identityGovernance/entitlementManagement/catalogs/{param}/resources/{param}/scopes/{param}/resource/roles/{param}/resource","no-oracle","" +"Identity.Governance","UpdateMgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResourceScope.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResourceScope","PATCH","/identityGovernance/entitlementManagement/catalogs/{param}/resourceScopes/{param}/resource/roles/{param}/resource/scopes/{param}","mismatch","Update-MgEntitlementManagementCatalogResourceScopeResourceRoleResourceScope" +"Identity.Governance","UpdateMgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceScope.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceScope","PATCH","/identityGovernance/entitlementManagement/catalogs/{param}/resourceScopes/{param}/resource/scopes/{param}","no-oracle","" +"Identity.Governance","UpdateMgIdentityGovernanceEntitlementManagementConnectedOrganization.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementConnectedOrganization","PATCH","/identityGovernance/entitlementManagement/connectedOrganizations/{param}","mismatch","Update-MgEntitlementManagementConnectedOrganization" +"Identity.Governance","UpdateMgIdentityGovernanceEntitlementManagementResource.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementResource","PATCH","/identityGovernance/entitlementManagement/resources/{param}","no-oracle","" +"Identity.Governance","UpdateMgIdentityGovernanceEntitlementManagementResourceEnvironment.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementResourceEnvironment","PATCH","/identityGovernance/entitlementManagement/resourceEnvironments/{param}","mismatch","Update-MgEntitlementManagementResourceEnvironment" +"Identity.Governance","UpdateMgIdentityGovernanceEntitlementManagementResourceEnvironmentResource.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResource","PATCH","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}","no-oracle","" +"Identity.Governance","UpdateMgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRole.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRole","PATCH","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/roles/{param}","mismatch","Update-MgEntitlementManagementResourceEnvironmentResourceRole" +"Identity.Governance","UpdateMgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResource.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResource","PATCH","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/roles/{param}/resource","no-oracle","" +"Identity.Governance","UpdateMgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResourceScope.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResourceScope","PATCH","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/roles/{param}/resource/scopes/{param}","mismatch","Update-MgEntitlementManagementResourceEnvironmentResourceRoleResourceScope" +"Identity.Governance","UpdateMgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResourceScopeResource.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResourceScopeResource","PATCH","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/roles/{param}/resource/scopes/{param}/resource","no-oracle","" +"Identity.Governance","UpdateMgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScope.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScope","PATCH","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/scopes/{param}","mismatch","Update-MgEntitlementManagementResourceEnvironmentResourceScope" +"Identity.Governance","UpdateMgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResource.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResource","PATCH","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/scopes/{param}/resource","no-oracle","" +"Identity.Governance","UpdateMgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResourceRole.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResourceRole","PATCH","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/scopes/{param}/resource/roles/{param}","mismatch","Update-MgEntitlementManagementResourceEnvironmentResourceScopeResourceRole" +"Identity.Governance","UpdateMgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResourceRoleResource.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResourceRoleResource","PATCH","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/scopes/{param}/resource/roles/{param}/resource","no-oracle","" +"Identity.Governance","UpdateMgIdentityGovernanceEntitlementManagementResourceRequest.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementResourceRequest","PATCH","/identityGovernance/entitlementManagement/resourceRequests/{param}","mismatch","Update-MgEntitlementManagementResourceRequest" +"Identity.Governance","UpdateMgIdentityGovernanceEntitlementManagementResourceRequestCatalog.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalog","PATCH","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog","mismatch","Update-MgEntitlementManagementResourceRequestCatalog" +"Identity.Governance","UpdateMgIdentityGovernanceEntitlementManagementResourceRequestCatalogCustomWorkflowExtension.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogCustomWorkflowExtension","PATCH","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/customWorkflowExtensions/{param}","mismatch","Update-MgEntitlementManagementResourceRequestCatalogCustomWorkflowExtension" +"Identity.Governance","UpdateMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResource.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResource","PATCH","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resources/{param}","no-oracle","" +"Identity.Governance","UpdateMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRole.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRole","PATCH","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceRoles/{param}","mismatch","Update-MgEntitlementManagementResourceRequestCatalogResourceRole" +"Identity.Governance","UpdateMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResource.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResource","PATCH","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceRoles/{param}/resource","no-oracle","" +"Identity.Governance","UpdateMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceRole.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceRole","PATCH","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceRoles/{param}/resource/roles/{param}","no-oracle","" +"Identity.Governance","UpdateMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScope.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScope","PATCH","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceRoles/{param}/resource/scopes/{param}","mismatch","Update-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScope" +"Identity.Governance","UpdateMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResource.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResource","PATCH","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceRoles/{param}/resource/scopes/{param}/resource","no-oracle","" +"Identity.Governance","UpdateMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRole.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRole","PATCH","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceRoles/{param}/resource/scopes/{param}/resource/roles/{param}","mismatch","Update-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRole" +"Identity.Governance","UpdateMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScope.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScope","PATCH","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resources/{param}/scopes/{param}","no-oracle","" +"Identity.Governance","UpdateMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResource.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResource","PATCH","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resources/{param}/scopes/{param}/resource","no-oracle","" +"Identity.Governance","UpdateMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRole.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRole","PATCH","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resources/{param}/scopes/{param}/resource/roles/{param}","mismatch","Update-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRole" +"Identity.Governance","UpdateMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResource.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResource","PATCH","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resources/{param}/scopes/{param}/resource/roles/{param}/resource","no-oracle","" +"Identity.Governance","UpdateMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceScope.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceScope","PATCH","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceScopes/{param}/resource/roles/{param}/resource/scopes/{param}","mismatch","Update-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceScope" +"Identity.Governance","UpdateMgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceScope.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceScope","PATCH","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceScopes/{param}/resource/scopes/{param}","no-oracle","" +"Identity.Governance","UpdateMgIdentityGovernanceEntitlementManagementResourceRequestResource.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementResourceRequestResource","PATCH","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource","no-oracle","" +"Identity.Governance","UpdateMgIdentityGovernanceEntitlementManagementResourceRequestResourceRole.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRole","PATCH","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/roles/{param}","mismatch","Update-MgEntitlementManagementResourceRequestResourceRole" +"Identity.Governance","UpdateMgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResource.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResource","PATCH","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/roles/{param}/resource","no-oracle","" +"Identity.Governance","UpdateMgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResourceScope.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResourceScope","PATCH","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/roles/{param}/resource/scopes/{param}","mismatch","Update-MgEntitlementManagementResourceRequestResourceRoleResourceScope" +"Identity.Governance","UpdateMgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResourceScopeResource.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResourceScopeResource","PATCH","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/roles/{param}/resource/scopes/{param}/resource","no-oracle","" +"Identity.Governance","UpdateMgIdentityGovernanceEntitlementManagementResourceRequestResourceScope.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScope","PATCH","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/scopes/{param}","mismatch","Update-MgEntitlementManagementResourceRequestResourceScope" +"Identity.Governance","UpdateMgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResource.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResource","PATCH","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/scopes/{param}/resource","no-oracle","" +"Identity.Governance","UpdateMgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResourceRole.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResourceRole","PATCH","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/scopes/{param}/resource/roles/{param}","mismatch","Update-MgEntitlementManagementResourceRequestResourceScopeResourceRole" +"Identity.Governance","UpdateMgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResourceRoleResource.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResourceRoleResource","PATCH","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/scopes/{param}/resource/roles/{param}/resource","no-oracle","" +"Identity.Governance","UpdateMgIdentityGovernanceEntitlementManagementResourceRole.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementResourceRole","PATCH","/identityGovernance/entitlementManagement/resources/{param}/roles/{param}","mismatch","Update-MgEntitlementManagementResourceRole" +"Identity.Governance","UpdateMgIdentityGovernanceEntitlementManagementResourceRoleResource.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementResourceRoleResource","PATCH","/identityGovernance/entitlementManagement/resources/{param}/roles/{param}/resource","no-oracle","" +"Identity.Governance","UpdateMgIdentityGovernanceEntitlementManagementResourceRoleResourceScope.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementResourceRoleResourceScope","PATCH","/identityGovernance/entitlementManagement/resources/{param}/roles/{param}/resource/scopes/{param}","mismatch","Update-MgEntitlementManagementResourceRoleResourceScope" +"Identity.Governance","UpdateMgIdentityGovernanceEntitlementManagementResourceRoleResourceScopeResource.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementResourceRoleResourceScopeResource","PATCH","/identityGovernance/entitlementManagement/resources/{param}/roles/{param}/resource/scopes/{param}/resource","no-oracle","" +"Identity.Governance","UpdateMgIdentityGovernanceEntitlementManagementResourceRoleScope.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementResourceRoleScope","PATCH","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}","mismatch","Update-MgEntitlementManagementResourceRoleScope" +"Identity.Governance","UpdateMgIdentityGovernanceEntitlementManagementResourceRoleScopeResource.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResource","PATCH","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/scope/resource","no-oracle","" +"Identity.Governance","UpdateMgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRole.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRole","PATCH","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/scope/resource/roles/{param}","mismatch","Update-MgEntitlementManagementResourceRoleScopeResourceRole" +"Identity.Governance","UpdateMgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRoleResource.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRoleResource","PATCH","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/scope/resource/roles/{param}/resource","no-oracle","" +"Identity.Governance","UpdateMgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRoleResourceScope.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRoleResourceScope","PATCH","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/scope/resource/roles/{param}/resource/scopes/{param}","mismatch","Update-MgEntitlementManagementResourceRoleScopeResourceRoleResourceScope" +"Identity.Governance","UpdateMgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceScope.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceScope","PATCH","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/scope/resource/scopes/{param}","mismatch","Update-MgEntitlementManagementResourceRoleScopeResourceScope" +"Identity.Governance","UpdateMgIdentityGovernanceEntitlementManagementResourceRoleScopeRole.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRole","PATCH","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/role","mismatch","Update-MgEntitlementManagementResourceRoleScopeRole" +"Identity.Governance","UpdateMgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResource.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResource","PATCH","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/role/resource","no-oracle","" +"Identity.Governance","UpdateMgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceRole.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceRole","PATCH","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/role/resource/roles/{param}","mismatch","Update-MgEntitlementManagementResourceRoleScopeRoleResourceRole" +"Identity.Governance","UpdateMgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScope.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScope","PATCH","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/role/resource/scopes/{param}","mismatch","Update-MgEntitlementManagementResourceRoleScopeRoleResourceScope" +"Identity.Governance","UpdateMgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScopeResource.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScopeResource","PATCH","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/role/resource/scopes/{param}/resource","no-oracle","" +"Identity.Governance","UpdateMgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScopeResourceRole.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScopeResourceRole","PATCH","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/role/resource/scopes/{param}/resource/roles/{param}","mismatch","Update-MgEntitlementManagementResourceRoleScopeRoleResourceScopeResourceRole" +"Identity.Governance","UpdateMgIdentityGovernanceEntitlementManagementResourceScope.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementResourceScope","PATCH","/identityGovernance/entitlementManagement/resources/{param}/scopes/{param}","mismatch","Update-MgEntitlementManagementResourceScope" +"Identity.Governance","UpdateMgIdentityGovernanceEntitlementManagementResourceScopeResource.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementResourceScopeResource","PATCH","/identityGovernance/entitlementManagement/resources/{param}/scopes/{param}/resource","no-oracle","" +"Identity.Governance","UpdateMgIdentityGovernanceEntitlementManagementResourceScopeResourceRole.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementResourceScopeResourceRole","PATCH","/identityGovernance/entitlementManagement/resources/{param}/scopes/{param}/resource/roles/{param}","mismatch","Update-MgEntitlementManagementResourceScopeResourceRole" +"Identity.Governance","UpdateMgIdentityGovernanceEntitlementManagementResourceScopeResourceRoleResource.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementResourceScopeResourceRoleResource","PATCH","/identityGovernance/entitlementManagement/resources/{param}/scopes/{param}/resource/roles/{param}/resource","no-oracle","" +"Identity.Governance","UpdateMgIdentityGovernanceEntitlementManagementSetting.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementSetting","PATCH","/identityGovernance/entitlementManagement/settings","mismatch","Update-MgEntitlementManagementSetting" +"Identity.Governance","UpdateMgIdentityGovernanceEntitlementManagementSubject.g.cs","v1.0","Update-MgIdentityGovernanceEntitlementManagementSubject","PATCH","/identityGovernance/entitlementManagement/subjects/{param}","mismatch","Update-MgEntitlementManagementSubject" +"Identity.Governance","UpdateMgIdentityGovernanceLifecycleWorkflow.g.cs","v1.0","Update-MgIdentityGovernanceLifecycleWorkflow","PATCH","/identityGovernance/lifecycleWorkflows/workflows/{param}","matched","Update-MgIdentityGovernanceLifecycleWorkflow" +"Identity.Governance","UpdateMgIdentityGovernanceLifecycleWorkflowCreatedByMailboxSetting.g.cs","v1.0","Update-MgIdentityGovernanceLifecycleWorkflowCreatedByMailboxSetting","PATCH","/identityGovernance/lifecycleWorkflows/workflows/{param}/createdBy/mailboxSettings","matched","Update-MgIdentityGovernanceLifecycleWorkflowCreatedByMailboxSetting" +"Identity.Governance","UpdateMgIdentityGovernanceLifecycleWorkflowCustomTaskExtension.g.cs","v1.0","Update-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtension","PATCH","/identityGovernance/lifecycleWorkflows/customTaskExtensions/{param}","matched","Update-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtension" +"Identity.Governance","UpdateMgIdentityGovernanceLifecycleWorkflowCustomTaskExtensionCreatedByMailboxSetting.g.cs","v1.0","Update-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtensionCreatedByMailboxSetting","PATCH","/identityGovernance/lifecycleWorkflows/customTaskExtensions/{param}/createdBy/mailboxSettings","matched","Update-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtensionCreatedByMailboxSetting" +"Identity.Governance","UpdateMgIdentityGovernanceLifecycleWorkflowCustomTaskExtensionLastModifiedByMailboxSetting.g.cs","v1.0","Update-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtensionLastModifiedByMailboxSetting","PATCH","/identityGovernance/lifecycleWorkflows/customTaskExtensions/{param}/lastModifiedBy/mailboxSettings","matched","Update-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtensionLastModifiedByMailboxSetting" +"Identity.Governance","UpdateMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowCreatedByMailboxSetting.g.cs","v1.0","Update-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowCreatedByMailboxSetting","PATCH","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/createdBy/mailboxSettings","no-oracle","" +"Identity.Governance","UpdateMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowLastModifiedByMailboxSetting.g.cs","v1.0","Update-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowLastModifiedByMailboxSetting","PATCH","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/lastModifiedBy/mailboxSettings","no-oracle","" +"Identity.Governance","UpdateMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunTaskProcessingResultSubjectMailboxSetting.g.cs","v1.0","Update-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunTaskProcessingResultSubjectMailboxSetting","PATCH","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/taskProcessingResults/{param}/subject/mailboxSettings","no-oracle","" +"Identity.Governance","UpdateMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultSubjectMailboxSetting.g.cs","v1.0","Update-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultSubjectMailboxSetting","PATCH","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/userProcessingResults/{param}/subject/mailboxSettings","no-oracle","" +"Identity.Governance","UpdateMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultTaskProcessingResultSubjectMailboxSetting.g.cs","v1.0","Update-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultTaskProcessingResultSubjectMailboxSetting","PATCH","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/subject/mailboxSettings","no-oracle","" +"Identity.Governance","UpdateMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTask.g.cs","v1.0","Update-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTask","PATCH","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/tasks/{param}","matched","Update-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTask" +"Identity.Governance","UpdateMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskProcessingResultSubjectMailboxSetting.g.cs","v1.0","Update-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskProcessingResultSubjectMailboxSetting","PATCH","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/tasks/{param}/taskProcessingResults/{param}/subject/mailboxSettings","no-oracle","" +"Identity.Governance","UpdateMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportTaskProcessingResultSubjectMailboxSetting.g.cs","v1.0","Update-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportTaskProcessingResultSubjectMailboxSetting","PATCH","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/taskReports/{param}/taskProcessingResults/{param}/subject/mailboxSettings","no-oracle","" +"Identity.Governance","UpdateMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultSubjectMailboxSetting.g.cs","v1.0","Update-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultSubjectMailboxSetting","PATCH","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/userProcessingResults/{param}/subject/mailboxSettings","no-oracle","" +"Identity.Governance","UpdateMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultTaskProcessingResultSubjectMailboxSetting.g.cs","v1.0","Update-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultTaskProcessingResultSubjectMailboxSetting","PATCH","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/subject/mailboxSettings","no-oracle","" +"Identity.Governance","UpdateMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionCreatedByMailboxSetting.g.cs","v1.0","Update-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionCreatedByMailboxSetting","PATCH","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/createdBy/mailboxSettings","no-oracle","" +"Identity.Governance","UpdateMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionLastModifiedByMailboxSetting.g.cs","v1.0","Update-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionLastModifiedByMailboxSetting","PATCH","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/lastModifiedBy/mailboxSettings","no-oracle","" +"Identity.Governance","UpdateMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTask.g.cs","v1.0","Update-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTask","PATCH","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/tasks/{param}","no-oracle","" +"Identity.Governance","UpdateMgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTaskProcessingResultSubjectMailboxSetting.g.cs","v1.0","Update-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTaskProcessingResultSubjectMailboxSetting","PATCH","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/tasks/{param}/taskProcessingResults/{param}/subject/mailboxSettings","no-oracle","" +"Identity.Governance","UpdateMgIdentityGovernanceLifecycleWorkflowInsight.g.cs","v1.0","Update-MgIdentityGovernanceLifecycleWorkflowInsight","PATCH","/identityGovernance/lifecycleWorkflows/insights","matched","Update-MgIdentityGovernanceLifecycleWorkflowInsight" +"Identity.Governance","UpdateMgIdentityGovernanceLifecycleWorkflowLastModifiedByMailboxSetting.g.cs","v1.0","Update-MgIdentityGovernanceLifecycleWorkflowLastModifiedByMailboxSetting","PATCH","/identityGovernance/lifecycleWorkflows/workflows/{param}/lastModifiedBy/mailboxSettings","matched","Update-MgIdentityGovernanceLifecycleWorkflowLastModifiedByMailboxSetting" +"Identity.Governance","UpdateMgIdentityGovernanceLifecycleWorkflowRunTaskProcessingResultSubjectMailboxSetting.g.cs","v1.0","Update-MgIdentityGovernanceLifecycleWorkflowRunTaskProcessingResultSubjectMailboxSetting","PATCH","/identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/taskProcessingResults/{param}/subject/mailboxSettings","matched","Update-MgIdentityGovernanceLifecycleWorkflowRunTaskProcessingResultSubjectMailboxSetting" +"Identity.Governance","UpdateMgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultSubjectMailboxSetting.g.cs","v1.0","Update-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultSubjectMailboxSetting","PATCH","/identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/userProcessingResults/{param}/subject/mailboxSettings","matched","Update-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultSubjectMailboxSetting" +"Identity.Governance","UpdateMgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultTaskProcessingResultSubjectMailboxSetting.g.cs","v1.0","Update-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultTaskProcessingResultSubjectMailboxSetting","PATCH","/identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/subject/mailboxSettings","no-oracle","" +"Identity.Governance","UpdateMgIdentityGovernanceLifecycleWorkflowSetting.g.cs","v1.0","Update-MgIdentityGovernanceLifecycleWorkflowSetting","PATCH","/identityGovernance/lifecycleWorkflows/settings","matched","Update-MgIdentityGovernanceLifecycleWorkflowSetting" +"Identity.Governance","UpdateMgIdentityGovernanceLifecycleWorkflowTask.g.cs","v1.0","Update-MgIdentityGovernanceLifecycleWorkflowTask","PATCH","/identityGovernance/lifecycleWorkflows/workflows/{param}/tasks/{param}","matched","Update-MgIdentityGovernanceLifecycleWorkflowTask" +"Identity.Governance","UpdateMgIdentityGovernanceLifecycleWorkflowTaskProcessingResultSubjectMailboxSetting.g.cs","v1.0","Update-MgIdentityGovernanceLifecycleWorkflowTaskProcessingResultSubjectMailboxSetting","PATCH","/identityGovernance/lifecycleWorkflows/workflows/{param}/tasks/{param}/taskProcessingResults/{param}/subject/mailboxSettings","matched","Update-MgIdentityGovernanceLifecycleWorkflowTaskProcessingResultSubjectMailboxSetting" +"Identity.Governance","UpdateMgIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResultSubjectMailboxSetting.g.cs","v1.0","Update-MgIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResultSubjectMailboxSetting","PATCH","/identityGovernance/lifecycleWorkflows/workflows/{param}/taskReports/{param}/taskProcessingResults/{param}/subject/mailboxSettings","matched","Update-MgIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResultSubjectMailboxSetting" +"Identity.Governance","UpdateMgIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResultSubjectMailboxSetting.g.cs","v1.0","Update-MgIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResultSubjectMailboxSetting","PATCH","/identityGovernance/lifecycleWorkflows/workflowTemplates/{param}/tasks/{param}/taskProcessingResults/{param}/subject/mailboxSettings","matched","Update-MgIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResultSubjectMailboxSetting" +"Identity.Governance","UpdateMgIdentityGovernanceLifecycleWorkflowUserProcessingResultSubjectMailboxSetting.g.cs","v1.0","Update-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultSubjectMailboxSetting","PATCH","/identityGovernance/lifecycleWorkflows/workflows/{param}/userProcessingResults/{param}/subject/mailboxSettings","matched","Update-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultSubjectMailboxSetting" +"Identity.Governance","UpdateMgIdentityGovernanceLifecycleWorkflowUserProcessingResultTaskProcessingResultSubjectMailboxSetting.g.cs","v1.0","Update-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultTaskProcessingResultSubjectMailboxSetting","PATCH","/identityGovernance/lifecycleWorkflows/workflows/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/subject/mailboxSettings","no-oracle","" +"Identity.Governance","UpdateMgIdentityGovernanceLifecycleWorkflowVersionCreatedByMailboxSetting.g.cs","v1.0","Update-MgIdentityGovernanceLifecycleWorkflowVersionCreatedByMailboxSetting","PATCH","/identityGovernance/lifecycleWorkflows/workflows/{param}/versions/{param}/createdBy/mailboxSettings","matched","Update-MgIdentityGovernanceLifecycleWorkflowVersionCreatedByMailboxSetting" +"Identity.Governance","UpdateMgIdentityGovernanceLifecycleWorkflowVersionLastModifiedByMailboxSetting.g.cs","v1.0","Update-MgIdentityGovernanceLifecycleWorkflowVersionLastModifiedByMailboxSetting","PATCH","/identityGovernance/lifecycleWorkflows/workflows/{param}/versions/{param}/lastModifiedBy/mailboxSettings","matched","Update-MgIdentityGovernanceLifecycleWorkflowVersionLastModifiedByMailboxSetting" +"Identity.Governance","UpdateMgIdentityGovernanceLifecycleWorkflowVersionTask.g.cs","v1.0","Update-MgIdentityGovernanceLifecycleWorkflowVersionTask","PATCH","/identityGovernance/lifecycleWorkflows/workflows/{param}/versions/{param}/tasks/{param}","matched","Update-MgIdentityGovernanceLifecycleWorkflowVersionTask" +"Identity.Governance","UpdateMgIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResultSubjectMailboxSetting.g.cs","v1.0","Update-MgIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResultSubjectMailboxSetting","PATCH","/identityGovernance/lifecycleWorkflows/workflows/{param}/versions/{param}/tasks/{param}/taskProcessingResults/{param}/subject/mailboxSettings","matched","Update-MgIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResultSubjectMailboxSetting" +"Identity.Governance","UpdateMgIdentityGovernancePrivilegedAccess.g.cs","v1.0","Update-MgIdentityGovernancePrivilegedAccess","PATCH","/identityGovernance/privilegedAccess","matched","Update-MgIdentityGovernancePrivilegedAccess" +"Identity.Governance","UpdateMgIdentityGovernancePrivilegedAccessGroup.g.cs","v1.0","Update-MgIdentityGovernancePrivilegedAccessGroup","PATCH","/identityGovernance/privilegedAccess/group","matched","Update-MgIdentityGovernancePrivilegedAccessGroup" +"Identity.Governance","UpdateMgIdentityGovernancePrivilegedAccessGroupAssignmentApproval.g.cs","v1.0","Update-MgIdentityGovernancePrivilegedAccessGroupAssignmentApproval","PATCH","/identityGovernance/privilegedAccess/group/assignmentApprovals/{param}","matched","Update-MgIdentityGovernancePrivilegedAccessGroupAssignmentApproval" +"Identity.Governance","UpdateMgIdentityGovernancePrivilegedAccessGroupAssignmentApprovalStage.g.cs","v1.0","Update-MgIdentityGovernancePrivilegedAccessGroupAssignmentApprovalStage","PATCH","/identityGovernance/privilegedAccess/group/assignmentApprovals/{param}/stages/{param}","matched","Update-MgIdentityGovernancePrivilegedAccessGroupAssignmentApprovalStage" +"Identity.Governance","UpdateMgIdentityGovernancePrivilegedAccessGroupAssignmentSchedule.g.cs","v1.0","Update-MgIdentityGovernancePrivilegedAccessGroupAssignmentSchedule","PATCH","/identityGovernance/privilegedAccess/group/assignmentSchedules/{param}","matched","Update-MgIdentityGovernancePrivilegedAccessGroupAssignmentSchedule" +"Identity.Governance","UpdateMgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstance.g.cs","v1.0","Update-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstance","PATCH","/identityGovernance/privilegedAccess/group/assignmentScheduleInstances/{param}","matched","Update-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstance" +"Identity.Governance","UpdateMgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequest.g.cs","v1.0","Update-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequest","PATCH","/identityGovernance/privilegedAccess/group/assignmentScheduleRequests/{param}","matched","Update-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequest" +"Identity.Governance","UpdateMgIdentityGovernancePrivilegedAccessGroupEligibilitySchedule.g.cs","v1.0","Update-MgIdentityGovernancePrivilegedAccessGroupEligibilitySchedule","PATCH","/identityGovernance/privilegedAccess/group/eligibilitySchedules/{param}","matched","Update-MgIdentityGovernancePrivilegedAccessGroupEligibilitySchedule" +"Identity.Governance","UpdateMgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstance.g.cs","v1.0","Update-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstance","PATCH","/identityGovernance/privilegedAccess/group/eligibilityScheduleInstances/{param}","matched","Update-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstance" +"Identity.Governance","UpdateMgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequest.g.cs","v1.0","Update-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequest","PATCH","/identityGovernance/privilegedAccess/group/eligibilityScheduleRequests/{param}","matched","Update-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequest" +"Identity.Governance","UpdateMgIdentityGovernanceTermOfUse.g.cs","v1.0","Update-MgIdentityGovernanceTermOfUse","PATCH","/identityGovernance/termsOfUse","no-oracle","" +"Identity.Governance","UpdateMgIdentityGovernanceTermOfUseAgreement.g.cs","v1.0","Update-MgIdentityGovernanceTermOfUseAgreement","PATCH","/identityGovernance/termsOfUse/agreements/{param}","mismatch","Update-MgIdentityGovernanceTermsOfUseAgreement" +"Identity.Governance","UpdateMgIdentityGovernanceTermOfUseAgreementAcceptance.g.cs","v1.0","Update-MgIdentityGovernanceTermOfUseAgreementAcceptance","PATCH","/identityGovernance/termsOfUse/agreementAcceptances/{param}","mismatch","Update-MgIdentityGovernanceTermsOfUseAgreementAcceptance" +"Identity.Governance","UpdateMgIdentityGovernanceTermOfUseAgreementFile.g.cs","v1.0","Update-MgIdentityGovernanceTermOfUseAgreementFile","PATCH","/identityGovernance/termsOfUse/agreements/{param}/file","mismatch","Update-MgIdentityGovernanceTermsOfUseAgreementFile" +"Identity.Governance","UpdateMgIdentityGovernanceTermOfUseAgreementFileLocalization.g.cs","v1.0","Update-MgIdentityGovernanceTermOfUseAgreementFileLocalization","PATCH","/identityGovernance/termsOfUse/agreements/{param}/file/localizations/{param}","mismatch","Update-MgIdentityGovernanceTermsOfUseAgreementFileLocalization" +"Identity.Governance","UpdateMgIdentityGovernanceTermOfUseAgreementFileLocalizationVersion.g.cs","v1.0","Update-MgIdentityGovernanceTermOfUseAgreementFileLocalizationVersion","PATCH","/identityGovernance/termsOfUse/agreements/{param}/file/localizations/{param}/versions/{param}","mismatch","Update-MgIdentityGovernanceTermsOfUseAgreementFileLocalizationVersion" +"Identity.Governance","UpdateMgIdentityGovernanceTermOfUseAgreementFileVersion.g.cs","v1.0","Update-MgIdentityGovernanceTermOfUseAgreementFileVersion","PATCH","/identityGovernance/termsOfUse/agreements/{param}/files/{param}/versions/{param}","mismatch","Update-MgIdentityGovernanceTermsOfUseAgreementFileVersion" +"Identity.Governance","UpdateMgRoleManagementDirectory.g.cs","v1.0","Update-MgRoleManagementDirectory","PATCH","/roleManagement/directory","matched","Update-MgRoleManagementDirectory" +"Identity.Governance","UpdateMgRoleManagementDirectoryResourceNamespace.g.cs","v1.0","Update-MgRoleManagementDirectoryResourceNamespace","PATCH","/roleManagement/directory/resourceNamespaces/{param}","matched","Update-MgRoleManagementDirectoryResourceNamespace" +"Identity.Governance","UpdateMgRoleManagementDirectoryResourceNamespaceResourceAction.g.cs","v1.0","Update-MgRoleManagementDirectoryResourceNamespaceResourceAction","PATCH","/roleManagement/directory/resourceNamespaces/{param}/resourceActions/{param}","matched","Update-MgRoleManagementDirectoryResourceNamespaceResourceAction" +"Identity.Governance","UpdateMgRoleManagementDirectoryRoleAssignment.g.cs","v1.0","Update-MgRoleManagementDirectoryRoleAssignment","PATCH","/roleManagement/directory/roleAssignments/{param}","matched","Update-MgRoleManagementDirectoryRoleAssignment" +"Identity.Governance","UpdateMgRoleManagementDirectoryRoleAssignmentAppScope.g.cs","v1.0","Update-MgRoleManagementDirectoryRoleAssignmentAppScope","PATCH","/roleManagement/directory/roleAssignments/{param}/appScope","matched","Update-MgRoleManagementDirectoryRoleAssignmentAppScope" +"Identity.Governance","UpdateMgRoleManagementDirectoryRoleAssignmentSchedule.g.cs","v1.0","Update-MgRoleManagementDirectoryRoleAssignmentSchedule","PATCH","/roleManagement/directory/roleAssignmentSchedules/{param}","matched","Update-MgRoleManagementDirectoryRoleAssignmentSchedule" +"Identity.Governance","UpdateMgRoleManagementDirectoryRoleAssignmentScheduleInstance.g.cs","v1.0","Update-MgRoleManagementDirectoryRoleAssignmentScheduleInstance","PATCH","/roleManagement/directory/roleAssignmentScheduleInstances/{param}","matched","Update-MgRoleManagementDirectoryRoleAssignmentScheduleInstance" +"Identity.Governance","UpdateMgRoleManagementDirectoryRoleAssignmentScheduleRequest.g.cs","v1.0","Update-MgRoleManagementDirectoryRoleAssignmentScheduleRequest","PATCH","/roleManagement/directory/roleAssignmentScheduleRequests/{param}","matched","Update-MgRoleManagementDirectoryRoleAssignmentScheduleRequest" +"Identity.Governance","UpdateMgRoleManagementDirectoryRoleDefinition.g.cs","v1.0","Update-MgRoleManagementDirectoryRoleDefinition","PATCH","/roleManagement/directory/roleDefinitions/{param}","matched","Update-MgRoleManagementDirectoryRoleDefinition" +"Identity.Governance","UpdateMgRoleManagementDirectoryRoleDefinitionInheritPermissionFrom.g.cs","v1.0","Update-MgRoleManagementDirectoryRoleDefinitionInheritPermissionFrom","PATCH","/roleManagement/directory/roleDefinitions/{param}/inheritsPermissionsFrom/{param}","matched","Update-MgRoleManagementDirectoryRoleDefinitionInheritPermissionFrom" +"Identity.Governance","UpdateMgRoleManagementDirectoryRoleEligibilitySchedule.g.cs","v1.0","Update-MgRoleManagementDirectoryRoleEligibilitySchedule","PATCH","/roleManagement/directory/roleEligibilitySchedules/{param}","matched","Update-MgRoleManagementDirectoryRoleEligibilitySchedule" +"Identity.Governance","UpdateMgRoleManagementDirectoryRoleEligibilityScheduleInstance.g.cs","v1.0","Update-MgRoleManagementDirectoryRoleEligibilityScheduleInstance","PATCH","/roleManagement/directory/roleEligibilityScheduleInstances/{param}","matched","Update-MgRoleManagementDirectoryRoleEligibilityScheduleInstance" +"Identity.Governance","UpdateMgRoleManagementDirectoryRoleEligibilityScheduleRequest.g.cs","v1.0","Update-MgRoleManagementDirectoryRoleEligibilityScheduleRequest","PATCH","/roleManagement/directory/roleEligibilityScheduleRequests/{param}","matched","Update-MgRoleManagementDirectoryRoleEligibilityScheduleRequest" +"Identity.Governance","UpdateMgRoleManagementEntitlementManagement.g.cs","v1.0","Update-MgRoleManagementEntitlementManagement","PATCH","/roleManagement/entitlementManagement","matched","Update-MgRoleManagementEntitlementManagement" +"Identity.Governance","UpdateMgRoleManagementEntitlementManagementResourceNamespace.g.cs","v1.0","Update-MgRoleManagementEntitlementManagementResourceNamespace","PATCH","/roleManagement/entitlementManagement/resourceNamespaces/{param}","matched","Update-MgRoleManagementEntitlementManagementResourceNamespace" +"Identity.Governance","UpdateMgRoleManagementEntitlementManagementResourceNamespaceResourceAction.g.cs","v1.0","Update-MgRoleManagementEntitlementManagementResourceNamespaceResourceAction","PATCH","/roleManagement/entitlementManagement/resourceNamespaces/{param}/resourceActions/{param}","matched","Update-MgRoleManagementEntitlementManagementResourceNamespaceResourceAction" +"Identity.Governance","UpdateMgRoleManagementEntitlementManagementRoleAssignment.g.cs","v1.0","Update-MgRoleManagementEntitlementManagementRoleAssignment","PATCH","/roleManagement/entitlementManagement/roleAssignments/{param}","matched","Update-MgRoleManagementEntitlementManagementRoleAssignment" +"Identity.Governance","UpdateMgRoleManagementEntitlementManagementRoleAssignmentAppScope.g.cs","v1.0","Update-MgRoleManagementEntitlementManagementRoleAssignmentAppScope","PATCH","/roleManagement/entitlementManagement/roleAssignments/{param}/appScope","matched","Update-MgRoleManagementEntitlementManagementRoleAssignmentAppScope" +"Identity.Governance","UpdateMgRoleManagementEntitlementManagementRoleAssignmentSchedule.g.cs","v1.0","Update-MgRoleManagementEntitlementManagementRoleAssignmentSchedule","PATCH","/roleManagement/entitlementManagement/roleAssignmentSchedules/{param}","matched","Update-MgRoleManagementEntitlementManagementRoleAssignmentSchedule" +"Identity.Governance","UpdateMgRoleManagementEntitlementManagementRoleAssignmentScheduleInstance.g.cs","v1.0","Update-MgRoleManagementEntitlementManagementRoleAssignmentScheduleInstance","PATCH","/roleManagement/entitlementManagement/roleAssignmentScheduleInstances/{param}","matched","Update-MgRoleManagementEntitlementManagementRoleAssignmentScheduleInstance" +"Identity.Governance","UpdateMgRoleManagementEntitlementManagementRoleAssignmentScheduleRequest.g.cs","v1.0","Update-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequest","PATCH","/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{param}","matched","Update-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequest" +"Identity.Governance","UpdateMgRoleManagementEntitlementManagementRoleDefinition.g.cs","v1.0","Update-MgRoleManagementEntitlementManagementRoleDefinition","PATCH","/roleManagement/entitlementManagement/roleDefinitions/{param}","matched","Update-MgRoleManagementEntitlementManagementRoleDefinition" +"Identity.Governance","UpdateMgRoleManagementEntitlementManagementRoleDefinitionInheritPermissionFrom.g.cs","v1.0","Update-MgRoleManagementEntitlementManagementRoleDefinitionInheritPermissionFrom","PATCH","/roleManagement/entitlementManagement/roleDefinitions/{param}/inheritsPermissionsFrom/{param}","matched","Update-MgRoleManagementEntitlementManagementRoleDefinitionInheritPermissionFrom" +"Identity.Governance","UpdateMgRoleManagementEntitlementManagementRoleEligibilitySchedule.g.cs","v1.0","Update-MgRoleManagementEntitlementManagementRoleEligibilitySchedule","PATCH","/roleManagement/entitlementManagement/roleEligibilitySchedules/{param}","matched","Update-MgRoleManagementEntitlementManagementRoleEligibilitySchedule" +"Identity.Governance","UpdateMgRoleManagementEntitlementManagementRoleEligibilityScheduleInstance.g.cs","v1.0","Update-MgRoleManagementEntitlementManagementRoleEligibilityScheduleInstance","PATCH","/roleManagement/entitlementManagement/roleEligibilityScheduleInstances/{param}","matched","Update-MgRoleManagementEntitlementManagementRoleEligibilityScheduleInstance" +"Identity.Governance","UpdateMgRoleManagementEntitlementManagementRoleEligibilityScheduleRequest.g.cs","v1.0","Update-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequest","PATCH","/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{param}","matched","Update-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequest" +"Identity.Partner","GetMgTenantRelationshipDelegatedAdminCustomer_Get.g.cs","v1.0","Get-MgTenantRelationshipDelegatedAdminCustomer","GET","/tenantRelationships/delegatedAdminCustomers/{param}","matched","Get-MgTenantRelationshipDelegatedAdminCustomer" +"Identity.Partner","GetMgTenantRelationshipDelegatedAdminCustomer_List.g.cs","v1.0","Get-MgTenantRelationshipDelegatedAdminCustomer","GET","/tenantRelationships/delegatedAdminCustomers","matched","Get-MgTenantRelationshipDelegatedAdminCustomer" +"Identity.Partner","GetMgTenantRelationshipDelegatedAdminCustomer.g.cs","v1.0","Get-MgTenantRelationshipDelegatedAdminCustomer","","","dispatcher","" +"Identity.Partner","GetMgTenantRelationshipDelegatedAdminCustomerCount.g.cs","v1.0","Get-MgTenantRelationshipDelegatedAdminCustomerCount","GET","/tenantRelationships/delegatedAdminCustomers/$count","matched","Get-MgTenantRelationshipDelegatedAdminCustomerCount" +"Identity.Partner","GetMgTenantRelationshipDelegatedAdminCustomerServiceManagementDetail_Get.g.cs","v1.0","Get-MgTenantRelationshipDelegatedAdminCustomerServiceManagementDetail","GET","/tenantRelationships/delegatedAdminCustomers/{param}/serviceManagementDetails/{param}","matched","Get-MgTenantRelationshipDelegatedAdminCustomerServiceManagementDetail" +"Identity.Partner","GetMgTenantRelationshipDelegatedAdminCustomerServiceManagementDetail_List.g.cs","v1.0","Get-MgTenantRelationshipDelegatedAdminCustomerServiceManagementDetail","GET","/tenantRelationships/delegatedAdminCustomers/{param}/serviceManagementDetails","matched","Get-MgTenantRelationshipDelegatedAdminCustomerServiceManagementDetail" +"Identity.Partner","GetMgTenantRelationshipDelegatedAdminCustomerServiceManagementDetail.g.cs","v1.0","Get-MgTenantRelationshipDelegatedAdminCustomerServiceManagementDetail","","","dispatcher","" +"Identity.Partner","GetMgTenantRelationshipDelegatedAdminCustomerServiceManagementDetailCount.g.cs","v1.0","Get-MgTenantRelationshipDelegatedAdminCustomerServiceManagementDetailCount","GET","/tenantRelationships/delegatedAdminCustomers/{param}/serviceManagementDetails/$count","matched","Get-MgTenantRelationshipDelegatedAdminCustomerServiceManagementDetailCount" +"Identity.Partner","GetMgTenantRelationshipDelegatedAdminRelationship_Get.g.cs","v1.0","Get-MgTenantRelationshipDelegatedAdminRelationship","GET","/tenantRelationships/delegatedAdminRelationships/{param}","matched","Get-MgTenantRelationshipDelegatedAdminRelationship" +"Identity.Partner","GetMgTenantRelationshipDelegatedAdminRelationship_List.g.cs","v1.0","Get-MgTenantRelationshipDelegatedAdminRelationship","GET","/tenantRelationships/delegatedAdminRelationships","matched","Get-MgTenantRelationshipDelegatedAdminRelationship" +"Identity.Partner","GetMgTenantRelationshipDelegatedAdminRelationship.g.cs","v1.0","Get-MgTenantRelationshipDelegatedAdminRelationship","","","dispatcher","" +"Identity.Partner","GetMgTenantRelationshipDelegatedAdminRelationshipAccessAssignment_Get.g.cs","v1.0","Get-MgTenantRelationshipDelegatedAdminRelationshipAccessAssignment","GET","/tenantRelationships/delegatedAdminRelationships/{param}/accessAssignments/{param}","matched","Get-MgTenantRelationshipDelegatedAdminRelationshipAccessAssignment" +"Identity.Partner","GetMgTenantRelationshipDelegatedAdminRelationshipAccessAssignment_List.g.cs","v1.0","Get-MgTenantRelationshipDelegatedAdminRelationshipAccessAssignment","GET","/tenantRelationships/delegatedAdminRelationships/{param}/accessAssignments","matched","Get-MgTenantRelationshipDelegatedAdminRelationshipAccessAssignment" +"Identity.Partner","GetMgTenantRelationshipDelegatedAdminRelationshipAccessAssignment.g.cs","v1.0","Get-MgTenantRelationshipDelegatedAdminRelationshipAccessAssignment","","","dispatcher","" +"Identity.Partner","GetMgTenantRelationshipDelegatedAdminRelationshipAccessAssignmentCount.g.cs","v1.0","Get-MgTenantRelationshipDelegatedAdminRelationshipAccessAssignmentCount","GET","/tenantRelationships/delegatedAdminRelationships/{param}/accessAssignments/$count","matched","Get-MgTenantRelationshipDelegatedAdminRelationshipAccessAssignmentCount" +"Identity.Partner","GetMgTenantRelationshipDelegatedAdminRelationshipCount.g.cs","v1.0","Get-MgTenantRelationshipDelegatedAdminRelationshipCount","GET","/tenantRelationships/delegatedAdminRelationships/$count","matched","Get-MgTenantRelationshipDelegatedAdminRelationshipCount" +"Identity.Partner","GetMgTenantRelationshipDelegatedAdminRelationshipOperation_Get.g.cs","v1.0","Get-MgTenantRelationshipDelegatedAdminRelationshipOperation","GET","/tenantRelationships/delegatedAdminRelationships/{param}/operations/{param}","matched","Get-MgTenantRelationshipDelegatedAdminRelationshipOperation" +"Identity.Partner","GetMgTenantRelationshipDelegatedAdminRelationshipOperation_List.g.cs","v1.0","Get-MgTenantRelationshipDelegatedAdminRelationshipOperation","GET","/tenantRelationships/delegatedAdminRelationships/{param}/operations","matched","Get-MgTenantRelationshipDelegatedAdminRelationshipOperation" +"Identity.Partner","GetMgTenantRelationshipDelegatedAdminRelationshipOperation.g.cs","v1.0","Get-MgTenantRelationshipDelegatedAdminRelationshipOperation","","","dispatcher","" +"Identity.Partner","GetMgTenantRelationshipDelegatedAdminRelationshipOperationCount.g.cs","v1.0","Get-MgTenantRelationshipDelegatedAdminRelationshipOperationCount","GET","/tenantRelationships/delegatedAdminRelationships/{param}/operations/$count","matched","Get-MgTenantRelationshipDelegatedAdminRelationshipOperationCount" +"Identity.Partner","GetMgTenantRelationshipDelegatedAdminRelationshipRequest_Get.g.cs","v1.0","Get-MgTenantRelationshipDelegatedAdminRelationshipRequest","GET","/tenantRelationships/delegatedAdminRelationships/{param}/requests/{param}","matched","Get-MgTenantRelationshipDelegatedAdminRelationshipRequest" +"Identity.Partner","GetMgTenantRelationshipDelegatedAdminRelationshipRequest_List.g.cs","v1.0","Get-MgTenantRelationshipDelegatedAdminRelationshipRequest","GET","/tenantRelationships/delegatedAdminRelationships/{param}/requests","matched","Get-MgTenantRelationshipDelegatedAdminRelationshipRequest" +"Identity.Partner","GetMgTenantRelationshipDelegatedAdminRelationshipRequest.g.cs","v1.0","Get-MgTenantRelationshipDelegatedAdminRelationshipRequest","","","dispatcher","" +"Identity.Partner","GetMgTenantRelationshipDelegatedAdminRelationshipRequestCount.g.cs","v1.0","Get-MgTenantRelationshipDelegatedAdminRelationshipRequestCount","GET","/tenantRelationships/delegatedAdminRelationships/{param}/requests/$count","matched","Get-MgTenantRelationshipDelegatedAdminRelationshipRequestCount" +"Identity.Partner","NewMgTenantRelationshipDelegatedAdminCustomer.g.cs","v1.0","New-MgTenantRelationshipDelegatedAdminCustomer","POST","/tenantRelationships/delegatedAdminCustomers","matched","New-MgTenantRelationshipDelegatedAdminCustomer" +"Identity.Partner","NewMgTenantRelationshipDelegatedAdminCustomerServiceManagementDetail.g.cs","v1.0","New-MgTenantRelationshipDelegatedAdminCustomerServiceManagementDetail","POST","/tenantRelationships/delegatedAdminCustomers/{param}/serviceManagementDetails","matched","New-MgTenantRelationshipDelegatedAdminCustomerServiceManagementDetail" +"Identity.Partner","NewMgTenantRelationshipDelegatedAdminRelationship.g.cs","v1.0","New-MgTenantRelationshipDelegatedAdminRelationship","POST","/tenantRelationships/delegatedAdminRelationships","matched","New-MgTenantRelationshipDelegatedAdminRelationship" +"Identity.Partner","NewMgTenantRelationshipDelegatedAdminRelationshipAccessAssignment.g.cs","v1.0","New-MgTenantRelationshipDelegatedAdminRelationshipAccessAssignment","POST","/tenantRelationships/delegatedAdminRelationships/{param}/accessAssignments","matched","New-MgTenantRelationshipDelegatedAdminRelationshipAccessAssignment" +"Identity.Partner","NewMgTenantRelationshipDelegatedAdminRelationshipOperation.g.cs","v1.0","New-MgTenantRelationshipDelegatedAdminRelationshipOperation","POST","/tenantRelationships/delegatedAdminRelationships/{param}/operations","matched","New-MgTenantRelationshipDelegatedAdminRelationshipOperation" +"Identity.Partner","NewMgTenantRelationshipDelegatedAdminRelationshipRequest.g.cs","v1.0","New-MgTenantRelationshipDelegatedAdminRelationshipRequest","POST","/tenantRelationships/delegatedAdminRelationships/{param}/requests","matched","New-MgTenantRelationshipDelegatedAdminRelationshipRequest" +"Identity.Partner","RemoveMgTenantRelationshipDelegatedAdminCustomer.g.cs","v1.0","Remove-MgTenantRelationshipDelegatedAdminCustomer","DELETE","/tenantRelationships/delegatedAdminCustomers/{param}","matched","Remove-MgTenantRelationshipDelegatedAdminCustomer" +"Identity.Partner","RemoveMgTenantRelationshipDelegatedAdminCustomerServiceManagementDetail.g.cs","v1.0","Remove-MgTenantRelationshipDelegatedAdminCustomerServiceManagementDetail","DELETE","/tenantRelationships/delegatedAdminCustomers/{param}/serviceManagementDetails/{param}","matched","Remove-MgTenantRelationshipDelegatedAdminCustomerServiceManagementDetail" +"Identity.Partner","RemoveMgTenantRelationshipDelegatedAdminRelationship.g.cs","v1.0","Remove-MgTenantRelationshipDelegatedAdminRelationship","DELETE","/tenantRelationships/delegatedAdminRelationships/{param}","matched","Remove-MgTenantRelationshipDelegatedAdminRelationship" +"Identity.Partner","RemoveMgTenantRelationshipDelegatedAdminRelationshipAccessAssignment.g.cs","v1.0","Remove-MgTenantRelationshipDelegatedAdminRelationshipAccessAssignment","DELETE","/tenantRelationships/delegatedAdminRelationships/{param}/accessAssignments/{param}","matched","Remove-MgTenantRelationshipDelegatedAdminRelationshipAccessAssignment" +"Identity.Partner","RemoveMgTenantRelationshipDelegatedAdminRelationshipOperation.g.cs","v1.0","Remove-MgTenantRelationshipDelegatedAdminRelationshipOperation","DELETE","/tenantRelationships/delegatedAdminRelationships/{param}/operations/{param}","matched","Remove-MgTenantRelationshipDelegatedAdminRelationshipOperation" +"Identity.Partner","RemoveMgTenantRelationshipDelegatedAdminRelationshipRequest.g.cs","v1.0","Remove-MgTenantRelationshipDelegatedAdminRelationshipRequest","DELETE","/tenantRelationships/delegatedAdminRelationships/{param}/requests/{param}","matched","Remove-MgTenantRelationshipDelegatedAdminRelationshipRequest" +"Identity.Partner","UpdateMgTenantRelationshipDelegatedAdminCustomer.g.cs","v1.0","Update-MgTenantRelationshipDelegatedAdminCustomer","PATCH","/tenantRelationships/delegatedAdminCustomers/{param}","matched","Update-MgTenantRelationshipDelegatedAdminCustomer" +"Identity.Partner","UpdateMgTenantRelationshipDelegatedAdminCustomerServiceManagementDetail.g.cs","v1.0","Update-MgTenantRelationshipDelegatedAdminCustomerServiceManagementDetail","PATCH","/tenantRelationships/delegatedAdminCustomers/{param}/serviceManagementDetails/{param}","matched","Update-MgTenantRelationshipDelegatedAdminCustomerServiceManagementDetail" +"Identity.Partner","UpdateMgTenantRelationshipDelegatedAdminRelationship.g.cs","v1.0","Update-MgTenantRelationshipDelegatedAdminRelationship","PATCH","/tenantRelationships/delegatedAdminRelationships/{param}","matched","Update-MgTenantRelationshipDelegatedAdminRelationship" +"Identity.Partner","UpdateMgTenantRelationshipDelegatedAdminRelationshipAccessAssignment.g.cs","v1.0","Update-MgTenantRelationshipDelegatedAdminRelationshipAccessAssignment","PATCH","/tenantRelationships/delegatedAdminRelationships/{param}/accessAssignments/{param}","matched","Update-MgTenantRelationshipDelegatedAdminRelationshipAccessAssignment" +"Identity.Partner","UpdateMgTenantRelationshipDelegatedAdminRelationshipOperation.g.cs","v1.0","Update-MgTenantRelationshipDelegatedAdminRelationshipOperation","PATCH","/tenantRelationships/delegatedAdminRelationships/{param}/operations/{param}","matched","Update-MgTenantRelationshipDelegatedAdminRelationshipOperation" +"Identity.Partner","UpdateMgTenantRelationshipDelegatedAdminRelationshipRequest.g.cs","v1.0","Update-MgTenantRelationshipDelegatedAdminRelationshipRequest","PATCH","/tenantRelationships/delegatedAdminRelationships/{param}/requests/{param}","matched","Update-MgTenantRelationshipDelegatedAdminRelationshipRequest" +"Identity.SignIns","GetMgDataPolicyOperation_Get.g.cs","v1.0","Get-MgDataPolicyOperation","GET","/dataPolicyOperations/{param}","matched","Get-MgDataPolicyOperation" +"Identity.SignIns","GetMgDataPolicyOperation_List.g.cs","v1.0","Get-MgDataPolicyOperation","GET","/dataPolicyOperations","matched","Get-MgDataPolicyOperation" +"Identity.SignIns","GetMgDataPolicyOperation.g.cs","v1.0","Get-MgDataPolicyOperation","","","dispatcher","" +"Identity.SignIns","GetMgDataPolicyOperationCount.g.cs","v1.0","Get-MgDataPolicyOperationCount","GET","/dataPolicyOperations/$count","matched","Get-MgDataPolicyOperationCount" +"Identity.SignIns","GetMgIdentity.g.cs","v1.0","Get-MgIdentity","GET","/identity","no-oracle","" +"Identity.SignIns","GetMgIdentityApiConnector_Get.g.cs","v1.0","Get-MgIdentityApiConnector","GET","/identity/apiConnectors/{param}","matched","Get-MgIdentityApiConnector" +"Identity.SignIns","GetMgIdentityApiConnector_List.g.cs","v1.0","Get-MgIdentityApiConnector","GET","/identity/apiConnectors","matched","Get-MgIdentityApiConnector" +"Identity.SignIns","GetMgIdentityApiConnector.g.cs","v1.0","Get-MgIdentityApiConnector","","","dispatcher","" +"Identity.SignIns","GetMgIdentityApiConnectorCount.g.cs","v1.0","Get-MgIdentityApiConnectorCount","GET","/identity/apiConnectors/$count","matched","Get-MgIdentityApiConnectorCount" +"Identity.SignIns","GetMgIdentityAuthenticationEventFlow_Get.g.cs","v1.0","Get-MgIdentityAuthenticationEventFlow","GET","/identity/authenticationEventsFlows/{param}","matched","Get-MgIdentityAuthenticationEventFlow" +"Identity.SignIns","GetMgIdentityAuthenticationEventFlow_List.g.cs","v1.0","Get-MgIdentityAuthenticationEventFlow","GET","/identity/authenticationEventsFlows","matched","Get-MgIdentityAuthenticationEventFlow" +"Identity.SignIns","GetMgIdentityAuthenticationEventFlow.g.cs","v1.0","Get-MgIdentityAuthenticationEventFlow","","","dispatcher","" +"Identity.SignIns","GetMgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlow_Get.g.cs","v1.0","Get-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlow","GET","","cast","" +"Identity.SignIns","GetMgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlow_List.g.cs","v1.0","Get-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlow","GET","","cast","" +"Identity.SignIns","GetMgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlow.g.cs","v1.0","Get-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlow","","","dispatcher","" +"Identity.SignIns","GetMgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowCondition.g.cs","v1.0","Get-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowCondition","GET","","cast","" +"Identity.SignIns","GetMgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowConditionApplicationIncludeApplication_Get.g.cs","v1.0","Get-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowConditionApplicationIncludeApplication","GET","","cast","" +"Identity.SignIns","GetMgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowConditionApplicationIncludeApplication_List.g.cs","v1.0","Get-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowConditionApplicationIncludeApplication","GET","","cast","" +"Identity.SignIns","GetMgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowConditionApplicationIncludeApplication.g.cs","v1.0","Get-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowConditionApplicationIncludeApplication","","","dispatcher","" +"Identity.SignIns","GetMgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowConditionApplicationIncludeApplicationCount.g.cs","v1.0","Get-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowConditionApplicationIncludeApplicationCount","GET","","cast","" +"Identity.SignIns","GetMgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowCount.g.cs","v1.0","Get-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowCount","GET","","cast","" +"Identity.SignIns","GetMgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowOnAttributeCollection.g.cs","v1.0","Get-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowOnAttributeCollection","GET","","cast","" +"Identity.SignIns","GetMgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowOnAttributeCollectionAsOnAttributeCollectionExternalUserSelfServiceSignUp.g.cs","v1.0","Get-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowOnAttributeCollectionAsOnAttributeCollectionExternalUserSelfServiceSignUp","GET","","cast","" +"Identity.SignIns","GetMgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowOnAttributeCollectionAsOnAttributeCollectionExternalUserSelfServiceSignUpAttribute.g.cs","v1.0","Get-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowOnAttributeCollectionAsOnAttributeCollectionExternalUserSelfServiceSignUpAttribute","GET","","cast","" +"Identity.SignIns","GetMgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowOnAttributeCollectionAsOnAttributeCollectionExternalUserSelfServiceSignUpAttributeByRef.g.cs","v1.0","Get-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowOnAttributeCollectionAsOnAttributeCollectionExternalUserSelfServiceSignUpAttributeByRef","GET","","cast","" +"Identity.SignIns","GetMgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowOnAttributeCollectionAsOnAttributeCollectionExternalUserSelfServiceSignUpAttributeCount.g.cs","v1.0","Get-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowOnAttributeCollectionAsOnAttributeCollectionExternalUserSelfServiceSignUpAttributeCount","GET","","cast","" +"Identity.SignIns","GetMgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowOnAuthenticationMethodLoadStart.g.cs","v1.0","Get-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowOnAuthenticationMethodLoadStart","GET","","cast","" +"Identity.SignIns","GetMgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowOnAuthenticationMethodLoadStartAsOnAuthenticationMethodLoadStartExternalUserSelfServiceSignUp.g.cs","v1.0","Get-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowOnAuthenticationMethodLoadStartAsOnAuthenticationMethodLoadStartExternalUserSelfServiceSignUp","GET","","cast","" +"Identity.SignIns","GetMgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowOnAuthenticationMethodLoadStartAsOnAuthenticationMethodLoadStartExternalUserSelfServiceSignUpIdentityProvider.g.cs","v1.0","Get-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowOnAuthenticationMethodLoadStartAsOnAuthenticationMethodLoadStartExternalUserSelfServiceSignUpIdentityProvider","GET","","cast","" +"Identity.SignIns","GetMgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowOnAuthenticationMethodLoadStartAsOnAuthenticationMethodLoadStartExternalUserSelfServiceSignUpIdentityProviderByRef.g.cs","v1.0","Get-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowOnAuthenticationMethodLoadStartAsOnAuthenticationMethodLoadStartExternalUserSelfServiceSignUpIdentityProviderByRef","GET","","cast","" +"Identity.SignIns","GetMgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowOnAuthenticationMethodLoadStartAsOnAuthenticationMethodLoadStartExternalUserSelfServiceSignUpIdentityProviderCount.g.cs","v1.0","Get-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowOnAuthenticationMethodLoadStartAsOnAuthenticationMethodLoadStartExternalUserSelfServiceSignUpIdentityProviderCount","GET","","cast","" +"Identity.SignIns","GetMgIdentityAuthenticationEventFlowCondition.g.cs","v1.0","Get-MgIdentityAuthenticationEventFlowCondition","GET","/identity/authenticationEventsFlows/{param}/conditions","matched","Get-MgIdentityAuthenticationEventFlowCondition" +"Identity.SignIns","GetMgIdentityAuthenticationEventFlowConditionApplicationIncludeApplication_Get.g.cs","v1.0","Get-MgIdentityAuthenticationEventFlowConditionApplicationIncludeApplication","GET","/identity/authenticationEventsFlows/{param}/conditions/applications/includeApplications/{param}","mismatch","Get-MgIdentityAuthenticationEventFlowIncludeApplication" +"Identity.SignIns","GetMgIdentityAuthenticationEventFlowConditionApplicationIncludeApplication_List.g.cs","v1.0","Get-MgIdentityAuthenticationEventFlowConditionApplicationIncludeApplication","GET","/identity/authenticationEventsFlows/{param}/conditions/applications/includeApplications","mismatch","Get-MgIdentityAuthenticationEventFlowIncludeApplication" +"Identity.SignIns","GetMgIdentityAuthenticationEventFlowConditionApplicationIncludeApplication.g.cs","v1.0","Get-MgIdentityAuthenticationEventFlowConditionApplicationIncludeApplication","","","dispatcher","" +"Identity.SignIns","GetMgIdentityAuthenticationEventFlowConditionApplicationIncludeApplicationCount.g.cs","v1.0","Get-MgIdentityAuthenticationEventFlowConditionApplicationIncludeApplicationCount","GET","/identity/authenticationEventsFlows/{param}/conditions/applications/includeApplications/$count","mismatch","Get-MgIdentityAuthenticationEventFlowIncludeApplicationCount" +"Identity.SignIns","GetMgIdentityAuthenticationEventFlowCount.g.cs","v1.0","Get-MgIdentityAuthenticationEventFlowCount","GET","/identity/authenticationEventsFlows/$count","matched","Get-MgIdentityAuthenticationEventFlowCount" +"Identity.SignIns","GetMgIdentityAuthenticationEventListener_Get.g.cs","v1.0","Get-MgIdentityAuthenticationEventListener","GET","/identity/authenticationEventListeners/{param}","matched","Get-MgIdentityAuthenticationEventListener" +"Identity.SignIns","GetMgIdentityAuthenticationEventListener_List.g.cs","v1.0","Get-MgIdentityAuthenticationEventListener","GET","/identity/authenticationEventListeners","matched","Get-MgIdentityAuthenticationEventListener" +"Identity.SignIns","GetMgIdentityAuthenticationEventListener.g.cs","v1.0","Get-MgIdentityAuthenticationEventListener","","","dispatcher","" +"Identity.SignIns","GetMgIdentityAuthenticationEventListenerCount.g.cs","v1.0","Get-MgIdentityAuthenticationEventListenerCount","GET","/identity/authenticationEventListeners/$count","matched","Get-MgIdentityAuthenticationEventListenerCount" +"Identity.SignIns","GetMgIdentityB2xUserFlow_Get.g.cs","v1.0","Get-MgIdentityB2xUserFlow","GET","/identity/b2xUserFlows/{param}","mismatch","Get-MgIdentityB2XUserFlow" +"Identity.SignIns","GetMgIdentityB2xUserFlow_List.g.cs","v1.0","Get-MgIdentityB2xUserFlow","GET","/identity/b2xUserFlows","mismatch","Get-MgIdentityB2XUserFlow" +"Identity.SignIns","GetMgIdentityB2xUserFlow.g.cs","v1.0","Get-MgIdentityB2xUserFlow","","","dispatcher","" +"Identity.SignIns","GetMgIdentityB2xUserFlowApiConnectorConfiguration.g.cs","v1.0","Get-MgIdentityB2xUserFlowApiConnectorConfiguration","GET","/identity/b2xUserFlows/{param}/apiConnectorConfiguration","mismatch","Get-MgIdentityB2XUserFlowApiConnectorConfiguration" +"Identity.SignIns","GetMgIdentityB2xUserFlowApiConnectorConfigurationPostAttributeCollection.g.cs","v1.0","Get-MgIdentityB2xUserFlowApiConnectorConfigurationPostAttributeCollection","GET","/identity/b2xUserFlows/{param}/apiConnectorConfiguration/postAttributeCollection","mismatch","Get-MgIdentityB2XUserFlowPostAttributeCollection" +"Identity.SignIns","GetMgIdentityB2xUserFlowApiConnectorConfigurationPostAttributeCollectionByRef.g.cs","v1.0","Get-MgIdentityB2xUserFlowApiConnectorConfigurationPostAttributeCollectionByRef","GET","/identity/b2xUserFlows/{param}/apiConnectorConfiguration/postAttributeCollection/$ref","mismatch","Get-MgIdentityB2XUserFlowPostAttributeCollectionByRef" +"Identity.SignIns","GetMgIdentityB2xUserFlowApiConnectorConfigurationPostFederationSignup.g.cs","v1.0","Get-MgIdentityB2xUserFlowApiConnectorConfigurationPostFederationSignup","GET","/identity/b2xUserFlows/{param}/apiConnectorConfiguration/postFederationSignup","mismatch","Get-MgIdentityB2XUserFlowPostFederationSignup" +"Identity.SignIns","GetMgIdentityB2xUserFlowApiConnectorConfigurationPostFederationSignupByRef.g.cs","v1.0","Get-MgIdentityB2xUserFlowApiConnectorConfigurationPostFederationSignupByRef","GET","/identity/b2xUserFlows/{param}/apiConnectorConfiguration/postFederationSignup/$ref","mismatch","Get-MgIdentityB2XUserFlowPostFederationSignupByRef" +"Identity.SignIns","GetMgIdentityB2xUserFlowCount.g.cs","v1.0","Get-MgIdentityB2xUserFlowCount","GET","/identity/b2xUserFlows/$count","mismatch","Get-MgIdentityB2XUserFlowCount" +"Identity.SignIns","GetMgIdentityB2xUserFlowIdentityProvider_Get.g.cs","v1.0","Get-MgIdentityB2xUserFlowIdentityProvider","GET","/identity/b2xUserFlows/{param}/identityProviders/{param}","mismatch","Get-MgIdentityB2XUserFlowIdentityProvider" +"Identity.SignIns","GetMgIdentityB2xUserFlowIdentityProvider_List.g.cs","v1.0","Get-MgIdentityB2xUserFlowIdentityProvider","GET","/identity/b2xUserFlows/{param}/identityProviders","mismatch","Get-MgIdentityB2XUserFlowIdentityProvider" +"Identity.SignIns","GetMgIdentityB2xUserFlowIdentityProvider.g.cs","v1.0","Get-MgIdentityB2xUserFlowIdentityProvider","","","dispatcher","" +"Identity.SignIns","GetMgIdentityB2xUserFlowIdentityProviderCount.g.cs","v1.0","Get-MgIdentityB2xUserFlowIdentityProviderCount","GET","/identity/b2xUserFlows/{param}/identityProviders/$count","mismatch","Get-MgIdentityB2XUserFlowIdentityProviderCount" +"Identity.SignIns","GetMgIdentityB2xUserFlowLanguage_Get.g.cs","v1.0","Get-MgIdentityB2xUserFlowLanguage","GET","/identity/b2xUserFlows/{param}/languages/{param}","mismatch","Get-MgIdentityB2XUserFlowLanguage" +"Identity.SignIns","GetMgIdentityB2xUserFlowLanguage_List.g.cs","v1.0","Get-MgIdentityB2xUserFlowLanguage","GET","/identity/b2xUserFlows/{param}/languages","mismatch","Get-MgIdentityB2XUserFlowLanguage" +"Identity.SignIns","GetMgIdentityB2xUserFlowLanguage.g.cs","v1.0","Get-MgIdentityB2xUserFlowLanguage","","","dispatcher","" +"Identity.SignIns","GetMgIdentityB2xUserFlowLanguageCount.g.cs","v1.0","Get-MgIdentityB2xUserFlowLanguageCount","GET","/identity/b2xUserFlows/{param}/languages/$count","mismatch","Get-MgIdentityB2XUserFlowLanguageCount" +"Identity.SignIns","GetMgIdentityB2xUserFlowLanguageDefaultPage_Get.g.cs","v1.0","Get-MgIdentityB2xUserFlowLanguageDefaultPage","GET","/identity/b2xUserFlows/{param}/languages/{param}/defaultPages/{param}","mismatch","Get-MgIdentityB2XUserFlowLanguageDefaultPage" +"Identity.SignIns","GetMgIdentityB2xUserFlowLanguageDefaultPage_List.g.cs","v1.0","Get-MgIdentityB2xUserFlowLanguageDefaultPage","GET","/identity/b2xUserFlows/{param}/languages/{param}/defaultPages","mismatch","Get-MgIdentityB2XUserFlowLanguageDefaultPage" +"Identity.SignIns","GetMgIdentityB2xUserFlowLanguageDefaultPage.g.cs","v1.0","Get-MgIdentityB2xUserFlowLanguageDefaultPage","","","dispatcher","" +"Identity.SignIns","GetMgIdentityB2xUserFlowLanguageDefaultPageContent.g.cs","v1.0","Get-MgIdentityB2xUserFlowLanguageDefaultPageContent","GET","/identity/b2xUserFlows/{param}/languages/{param}/defaultPages/{param}/$value","mismatch","Get-MgIdentityB2XUserFlowLanguageDefaultPageContent" +"Identity.SignIns","GetMgIdentityB2xUserFlowLanguageDefaultPageCount.g.cs","v1.0","Get-MgIdentityB2xUserFlowLanguageDefaultPageCount","GET","/identity/b2xUserFlows/{param}/languages/{param}/defaultPages/$count","mismatch","Get-MgIdentityB2XUserFlowLanguageDefaultPageCount" +"Identity.SignIns","GetMgIdentityB2xUserFlowLanguageOverridePage_Get.g.cs","v1.0","Get-MgIdentityB2xUserFlowLanguageOverridePage","GET","/identity/b2xUserFlows/{param}/languages/{param}/overridesPages/{param}","mismatch","Get-MgIdentityB2XUserFlowLanguageOverridePage" +"Identity.SignIns","GetMgIdentityB2xUserFlowLanguageOverridePage_List.g.cs","v1.0","Get-MgIdentityB2xUserFlowLanguageOverridePage","GET","/identity/b2xUserFlows/{param}/languages/{param}/overridesPages","mismatch","Get-MgIdentityB2XUserFlowLanguageOverridePage" +"Identity.SignIns","GetMgIdentityB2xUserFlowLanguageOverridePage.g.cs","v1.0","Get-MgIdentityB2xUserFlowLanguageOverridePage","","","dispatcher","" +"Identity.SignIns","GetMgIdentityB2xUserFlowLanguageOverridePageContent.g.cs","v1.0","Get-MgIdentityB2xUserFlowLanguageOverridePageContent","GET","/identity/b2xUserFlows/{param}/languages/{param}/overridesPages/{param}/$value","mismatch","Get-MgIdentityB2XUserFlowLanguageOverridePageContent" +"Identity.SignIns","GetMgIdentityB2xUserFlowLanguageOverridePageCount.g.cs","v1.0","Get-MgIdentityB2xUserFlowLanguageOverridePageCount","GET","/identity/b2xUserFlows/{param}/languages/{param}/overridesPages/$count","mismatch","Get-MgIdentityB2XUserFlowLanguageOverridePageCount" +"Identity.SignIns","GetMgIdentityB2xUserFlowUserAttributeAssignment_Get.g.cs","v1.0","Get-MgIdentityB2xUserFlowUserAttributeAssignment","GET","/identity/b2xUserFlows/{param}/userAttributeAssignments/{param}","mismatch","Get-MgIdentityB2XUserFlowUserAttributeAssignment" +"Identity.SignIns","GetMgIdentityB2xUserFlowUserAttributeAssignment_List.g.cs","v1.0","Get-MgIdentityB2xUserFlowUserAttributeAssignment","GET","/identity/b2xUserFlows/{param}/userAttributeAssignments","mismatch","Get-MgIdentityB2XUserFlowUserAttributeAssignment" +"Identity.SignIns","GetMgIdentityB2xUserFlowUserAttributeAssignment.g.cs","v1.0","Get-MgIdentityB2xUserFlowUserAttributeAssignment","","","dispatcher","" +"Identity.SignIns","GetMgIdentityB2xUserFlowUserAttributeAssignmentCount.g.cs","v1.0","Get-MgIdentityB2xUserFlowUserAttributeAssignmentCount","GET","/identity/b2xUserFlows/{param}/userAttributeAssignments/$count","mismatch","Get-MgIdentityB2XUserFlowUserAttributeAssignmentCount" +"Identity.SignIns","GetMgIdentityB2xUserFlowUserAttributeAssignmentGetOrder.g.cs","v1.0","Get-MgIdentityB2xUserFlowUserAttributeAssignmentGetOrder","GET","/identity/b2xUserFlows/{param}/userAttributeAssignments/getOrder","mismatch","Get-MgIdentityB2XUserFlowUserAttributeAssignmentOrder" +"Identity.SignIns","GetMgIdentityB2xUserFlowUserAttributeAssignmentUserAttribute.g.cs","v1.0","Get-MgIdentityB2xUserFlowUserAttributeAssignmentUserAttribute","GET","/identity/b2xUserFlows/{param}/userAttributeAssignments/{param}/userAttribute","mismatch","Get-MgIdentityB2XUserFlowUserAttributeAssignmentUserAttribute" +"Identity.SignIns","GetMgIdentityB2xUserFlowUserFlowIdentityProvider.g.cs","v1.0","Get-MgIdentityB2xUserFlowUserFlowIdentityProvider","GET","/identity/b2xUserFlows/{param}/userFlowIdentityProviders","no-oracle","" +"Identity.SignIns","GetMgIdentityB2xUserFlowUserFlowIdentityProviderByRef.g.cs","v1.0","Get-MgIdentityB2xUserFlowUserFlowIdentityProviderByRef","GET","/identity/b2xUserFlows/{param}/userFlowIdentityProviders/$ref","mismatch","Get-MgIdentityB2XUserFlowIdentityProviderByRef" +"Identity.SignIns","GetMgIdentityB2xUserFlowUserFlowIdentityProviderCount.g.cs","v1.0","Get-MgIdentityB2xUserFlowUserFlowIdentityProviderCount","GET","/identity/b2xUserFlows/{param}/userFlowIdentityProviders/$count","no-oracle","" +"Identity.SignIns","GetMgIdentityConditionalAccessAuthenticationContextClassReference_Get.g.cs","v1.0","Get-MgIdentityConditionalAccessAuthenticationContextClassReference","GET","/identity/conditionalAccess/authenticationContextClassReferences/{param}","matched","Get-MgIdentityConditionalAccessAuthenticationContextClassReference" +"Identity.SignIns","GetMgIdentityConditionalAccessAuthenticationContextClassReference_List.g.cs","v1.0","Get-MgIdentityConditionalAccessAuthenticationContextClassReference","GET","/identity/conditionalAccess/authenticationContextClassReferences","matched","Get-MgIdentityConditionalAccessAuthenticationContextClassReference" +"Identity.SignIns","GetMgIdentityConditionalAccessAuthenticationContextClassReference.g.cs","v1.0","Get-MgIdentityConditionalAccessAuthenticationContextClassReference","","","dispatcher","" +"Identity.SignIns","GetMgIdentityConditionalAccessAuthenticationContextClassReferenceCount.g.cs","v1.0","Get-MgIdentityConditionalAccessAuthenticationContextClassReferenceCount","GET","/identity/conditionalAccess/authenticationContextClassReferences/$count","matched","Get-MgIdentityConditionalAccessAuthenticationContextClassReferenceCount" +"Identity.SignIns","GetMgIdentityConditionalAccessAuthenticationStrength.g.cs","v1.0","Get-MgIdentityConditionalAccessAuthenticationStrength","GET","/identity/conditionalAccess/authenticationStrength","no-oracle","" +"Identity.SignIns","GetMgIdentityConditionalAccessAuthenticationStrengthAuthenticationMethodMode_Get.g.cs","v1.0","Get-MgIdentityConditionalAccessAuthenticationStrengthAuthenticationMethodMode","GET","/identity/conditionalAccess/authenticationStrength/authenticationMethodModes/{param}","no-oracle","" +"Identity.SignIns","GetMgIdentityConditionalAccessAuthenticationStrengthAuthenticationMethodMode_List.g.cs","v1.0","Get-MgIdentityConditionalAccessAuthenticationStrengthAuthenticationMethodMode","GET","/identity/conditionalAccess/authenticationStrength/authenticationMethodModes","no-oracle","" +"Identity.SignIns","GetMgIdentityConditionalAccessAuthenticationStrengthAuthenticationMethodMode.g.cs","v1.0","Get-MgIdentityConditionalAccessAuthenticationStrengthAuthenticationMethodMode","","","dispatcher","" +"Identity.SignIns","GetMgIdentityConditionalAccessAuthenticationStrengthAuthenticationMethodModeCount.g.cs","v1.0","Get-MgIdentityConditionalAccessAuthenticationStrengthAuthenticationMethodModeCount","GET","/identity/conditionalAccess/authenticationStrength/authenticationMethodModes/$count","no-oracle","" +"Identity.SignIns","GetMgIdentityConditionalAccessAuthenticationStrengthPolicy_Get.g.cs","v1.0","Get-MgIdentityConditionalAccessAuthenticationStrengthPolicy","GET","/identity/conditionalAccess/authenticationStrength/policies/{param}","no-oracle","" +"Identity.SignIns","GetMgIdentityConditionalAccessAuthenticationStrengthPolicy_List.g.cs","v1.0","Get-MgIdentityConditionalAccessAuthenticationStrengthPolicy","GET","/identity/conditionalAccess/authenticationStrength/policies","no-oracle","" +"Identity.SignIns","GetMgIdentityConditionalAccessAuthenticationStrengthPolicy.g.cs","v1.0","Get-MgIdentityConditionalAccessAuthenticationStrengthPolicy","","","dispatcher","" +"Identity.SignIns","GetMgIdentityConditionalAccessAuthenticationStrengthPolicyCombinationConfiguration_Get.g.cs","v1.0","Get-MgIdentityConditionalAccessAuthenticationStrengthPolicyCombinationConfiguration","GET","/identity/conditionalAccess/authenticationStrength/policies/{param}/combinationConfigurations/{param}","no-oracle","" +"Identity.SignIns","GetMgIdentityConditionalAccessAuthenticationStrengthPolicyCombinationConfiguration_List.g.cs","v1.0","Get-MgIdentityConditionalAccessAuthenticationStrengthPolicyCombinationConfiguration","GET","/identity/conditionalAccess/authenticationStrength/policies/{param}/combinationConfigurations","no-oracle","" +"Identity.SignIns","GetMgIdentityConditionalAccessAuthenticationStrengthPolicyCombinationConfiguration.g.cs","v1.0","Get-MgIdentityConditionalAccessAuthenticationStrengthPolicyCombinationConfiguration","","","dispatcher","" +"Identity.SignIns","GetMgIdentityConditionalAccessAuthenticationStrengthPolicyCombinationConfigurationCount.g.cs","v1.0","Get-MgIdentityConditionalAccessAuthenticationStrengthPolicyCombinationConfigurationCount","GET","/identity/conditionalAccess/authenticationStrength/policies/{param}/combinationConfigurations/$count","no-oracle","" +"Identity.SignIns","GetMgIdentityConditionalAccessAuthenticationStrengthPolicyCount.g.cs","v1.0","Get-MgIdentityConditionalAccessAuthenticationStrengthPolicyCount","GET","/identity/conditionalAccess/authenticationStrength/policies/$count","no-oracle","" +"Identity.SignIns","GetMgIdentityConditionalAccessAuthenticationStrengthPolicyUsage.g.cs","v1.0","Get-MgIdentityConditionalAccessAuthenticationStrengthPolicyUsage","GET","/identity/conditionalAccess/authenticationStrength/policies/{param}/usage","mismatch","Invoke-MgUsageIdentityConditionalAccessAuthenticationStrengthPolicy" +"Identity.SignIns","GetMgIdentityConditionalAccessDeletedItem.g.cs","v1.0","Get-MgIdentityConditionalAccessDeletedItem","GET","/identity/conditionalAccess/deletedItems","matched","Get-MgIdentityConditionalAccessDeletedItem" +"Identity.SignIns","GetMgIdentityConditionalAccessDeletedItemNamedLocation_Get.g.cs","v1.0","Get-MgIdentityConditionalAccessDeletedItemNamedLocation","GET","/identity/conditionalAccess/deletedItems/namedLocations/{param}","matched","Get-MgIdentityConditionalAccessDeletedItemNamedLocation" +"Identity.SignIns","GetMgIdentityConditionalAccessDeletedItemNamedLocation_List.g.cs","v1.0","Get-MgIdentityConditionalAccessDeletedItemNamedLocation","GET","/identity/conditionalAccess/deletedItems/namedLocations","matched","Get-MgIdentityConditionalAccessDeletedItemNamedLocation" +"Identity.SignIns","GetMgIdentityConditionalAccessDeletedItemNamedLocation.g.cs","v1.0","Get-MgIdentityConditionalAccessDeletedItemNamedLocation","","","dispatcher","" +"Identity.SignIns","GetMgIdentityConditionalAccessDeletedItemNamedLocationCount.g.cs","v1.0","Get-MgIdentityConditionalAccessDeletedItemNamedLocationCount","GET","/identity/conditionalAccess/deletedItems/namedLocations/$count","matched","Get-MgIdentityConditionalAccessDeletedItemNamedLocationCount" +"Identity.SignIns","GetMgIdentityConditionalAccessDeletedItemPolicy_Get.g.cs","v1.0","Get-MgIdentityConditionalAccessDeletedItemPolicy","GET","/identity/conditionalAccess/deletedItems/policies/{param}","matched","Get-MgIdentityConditionalAccessDeletedItemPolicy" +"Identity.SignIns","GetMgIdentityConditionalAccessDeletedItemPolicy_List.g.cs","v1.0","Get-MgIdentityConditionalAccessDeletedItemPolicy","GET","/identity/conditionalAccess/deletedItems/policies","matched","Get-MgIdentityConditionalAccessDeletedItemPolicy" +"Identity.SignIns","GetMgIdentityConditionalAccessDeletedItemPolicy.g.cs","v1.0","Get-MgIdentityConditionalAccessDeletedItemPolicy","","","dispatcher","" +"Identity.SignIns","GetMgIdentityConditionalAccessDeletedItemPolicyCount.g.cs","v1.0","Get-MgIdentityConditionalAccessDeletedItemPolicyCount","GET","/identity/conditionalAccess/deletedItems/policies/$count","matched","Get-MgIdentityConditionalAccessDeletedItemPolicyCount" +"Identity.SignIns","GetMgIdentityConditionalAccessNamedLocation_Get.g.cs","v1.0","Get-MgIdentityConditionalAccessNamedLocation","GET","/identity/conditionalAccess/namedLocations/{param}","matched","Get-MgIdentityConditionalAccessNamedLocation" +"Identity.SignIns","GetMgIdentityConditionalAccessNamedLocation_List.g.cs","v1.0","Get-MgIdentityConditionalAccessNamedLocation","GET","/identity/conditionalAccess/namedLocations","matched","Get-MgIdentityConditionalAccessNamedLocation" +"Identity.SignIns","GetMgIdentityConditionalAccessNamedLocation.g.cs","v1.0","Get-MgIdentityConditionalAccessNamedLocation","","","dispatcher","" +"Identity.SignIns","GetMgIdentityConditionalAccessNamedLocationCount.g.cs","v1.0","Get-MgIdentityConditionalAccessNamedLocationCount","GET","/identity/conditionalAccess/namedLocations/$count","matched","Get-MgIdentityConditionalAccessNamedLocationCount" +"Identity.SignIns","GetMgIdentityConditionalAccessPolicy_Get.g.cs","v1.0","Get-MgIdentityConditionalAccessPolicy","GET","/identity/conditionalAccess/policies/{param}","matched","Get-MgIdentityConditionalAccessPolicy" +"Identity.SignIns","GetMgIdentityConditionalAccessPolicy_List.g.cs","v1.0","Get-MgIdentityConditionalAccessPolicy","GET","/identity/conditionalAccess/policies","matched","Get-MgIdentityConditionalAccessPolicy" +"Identity.SignIns","GetMgIdentityConditionalAccessPolicy.g.cs","v1.0","Get-MgIdentityConditionalAccessPolicy","","","dispatcher","" +"Identity.SignIns","GetMgIdentityConditionalAccessPolicyCount.g.cs","v1.0","Get-MgIdentityConditionalAccessPolicyCount","GET","/identity/conditionalAccess/policies/$count","matched","Get-MgIdentityConditionalAccessPolicyCount" +"Identity.SignIns","GetMgIdentityConditionalAccessTemplate_Get.g.cs","v1.0","Get-MgIdentityConditionalAccessTemplate","GET","/identity/conditionalAccess/templates/{param}","matched","Get-MgIdentityConditionalAccessTemplate" +"Identity.SignIns","GetMgIdentityConditionalAccessTemplate_List.g.cs","v1.0","Get-MgIdentityConditionalAccessTemplate","GET","/identity/conditionalAccess/templates","matched","Get-MgIdentityConditionalAccessTemplate" +"Identity.SignIns","GetMgIdentityConditionalAccessTemplate.g.cs","v1.0","Get-MgIdentityConditionalAccessTemplate","","","dispatcher","" +"Identity.SignIns","GetMgIdentityConditionalAccessTemplateCount.g.cs","v1.0","Get-MgIdentityConditionalAccessTemplateCount","GET","/identity/conditionalAccess/templates/$count","matched","Get-MgIdentityConditionalAccessTemplateCount" +"Identity.SignIns","GetMgIdentityCustomAuthenticationExtension_Get.g.cs","v1.0","Get-MgIdentityCustomAuthenticationExtension","GET","/identity/customAuthenticationExtensions/{param}","matched","Get-MgIdentityCustomAuthenticationExtension" +"Identity.SignIns","GetMgIdentityCustomAuthenticationExtension_List.g.cs","v1.0","Get-MgIdentityCustomAuthenticationExtension","GET","/identity/customAuthenticationExtensions","matched","Get-MgIdentityCustomAuthenticationExtension" +"Identity.SignIns","GetMgIdentityCustomAuthenticationExtension.g.cs","v1.0","Get-MgIdentityCustomAuthenticationExtension","","","dispatcher","" +"Identity.SignIns","GetMgIdentityCustomAuthenticationExtensionCount.g.cs","v1.0","Get-MgIdentityCustomAuthenticationExtensionCount","GET","/identity/customAuthenticationExtensions/$count","matched","Get-MgIdentityCustomAuthenticationExtensionCount" +"Identity.SignIns","GetMgIdentityProtection.g.cs","v1.0","Get-MgIdentityProtection","GET","/identityProtection","no-oracle","" +"Identity.SignIns","GetMgIdentityProtectionRiskDetection_Get.g.cs","v1.0","Get-MgIdentityProtectionRiskDetection","GET","/identityProtection/riskDetections/{param}","mismatch","Get-MgRiskDetection" +"Identity.SignIns","GetMgIdentityProtectionRiskDetection_List.g.cs","v1.0","Get-MgIdentityProtectionRiskDetection","GET","/identityProtection/riskDetections","mismatch","Get-MgRiskDetection" +"Identity.SignIns","GetMgIdentityProtectionRiskDetection.g.cs","v1.0","Get-MgIdentityProtectionRiskDetection","","","dispatcher","" +"Identity.SignIns","GetMgIdentityProtectionRiskDetectionCount.g.cs","v1.0","Get-MgIdentityProtectionRiskDetectionCount","GET","/identityProtection/riskDetections/$count","mismatch","Get-MgRiskDetectionCount" +"Identity.SignIns","GetMgIdentityProtectionRiskyServicePrincipal_Get.g.cs","v1.0","Get-MgIdentityProtectionRiskyServicePrincipal","GET","/identityProtection/riskyServicePrincipals/{param}","mismatch","Get-MgRiskyServicePrincipal" +"Identity.SignIns","GetMgIdentityProtectionRiskyServicePrincipal_List.g.cs","v1.0","Get-MgIdentityProtectionRiskyServicePrincipal","GET","/identityProtection/riskyServicePrincipals","mismatch","Get-MgRiskyServicePrincipal" +"Identity.SignIns","GetMgIdentityProtectionRiskyServicePrincipal.g.cs","v1.0","Get-MgIdentityProtectionRiskyServicePrincipal","","","dispatcher","" +"Identity.SignIns","GetMgIdentityProtectionRiskyServicePrincipalCount.g.cs","v1.0","Get-MgIdentityProtectionRiskyServicePrincipalCount","GET","/identityProtection/riskyServicePrincipals/$count","mismatch","Get-MgRiskyServicePrincipalCount" +"Identity.SignIns","GetMgIdentityProtectionRiskyServicePrincipalHistory_Get.g.cs","v1.0","Get-MgIdentityProtectionRiskyServicePrincipalHistory","GET","/identityProtection/riskyServicePrincipals/{param}/history/{param}","mismatch","Get-MgRiskyServicePrincipalHistory" +"Identity.SignIns","GetMgIdentityProtectionRiskyServicePrincipalHistory_List.g.cs","v1.0","Get-MgIdentityProtectionRiskyServicePrincipalHistory","GET","/identityProtection/riskyServicePrincipals/{param}/history","mismatch","Get-MgRiskyServicePrincipalHistory" +"Identity.SignIns","GetMgIdentityProtectionRiskyServicePrincipalHistory.g.cs","v1.0","Get-MgIdentityProtectionRiskyServicePrincipalHistory","","","dispatcher","" +"Identity.SignIns","GetMgIdentityProtectionRiskyServicePrincipalHistoryCount.g.cs","v1.0","Get-MgIdentityProtectionRiskyServicePrincipalHistoryCount","GET","/identityProtection/riskyServicePrincipals/{param}/history/$count","mismatch","Get-MgRiskyServicePrincipalHistoryCount" +"Identity.SignIns","GetMgIdentityProtectionRiskyUser_Get.g.cs","v1.0","Get-MgIdentityProtectionRiskyUser","GET","/identityProtection/riskyUsers/{param}","mismatch","Get-MgRiskyUser" +"Identity.SignIns","GetMgIdentityProtectionRiskyUser_List.g.cs","v1.0","Get-MgIdentityProtectionRiskyUser","GET","/identityProtection/riskyUsers","mismatch","Get-MgRiskyUser" +"Identity.SignIns","GetMgIdentityProtectionRiskyUser.g.cs","v1.0","Get-MgIdentityProtectionRiskyUser","","","dispatcher","" +"Identity.SignIns","GetMgIdentityProtectionRiskyUserCount.g.cs","v1.0","Get-MgIdentityProtectionRiskyUserCount","GET","/identityProtection/riskyUsers/$count","mismatch","Get-MgRiskyUserCount" +"Identity.SignIns","GetMgIdentityProtectionRiskyUserHistory_Get.g.cs","v1.0","Get-MgIdentityProtectionRiskyUserHistory","GET","/identityProtection/riskyUsers/{param}/history/{param}","mismatch","Get-MgRiskyUserHistory" +"Identity.SignIns","GetMgIdentityProtectionRiskyUserHistory_List.g.cs","v1.0","Get-MgIdentityProtectionRiskyUserHistory","GET","/identityProtection/riskyUsers/{param}/history","mismatch","Get-MgRiskyUserHistory" +"Identity.SignIns","GetMgIdentityProtectionRiskyUserHistory.g.cs","v1.0","Get-MgIdentityProtectionRiskyUserHistory","","","dispatcher","" +"Identity.SignIns","GetMgIdentityProtectionRiskyUserHistoryCount.g.cs","v1.0","Get-MgIdentityProtectionRiskyUserHistoryCount","GET","/identityProtection/riskyUsers/{param}/history/$count","mismatch","Get-MgRiskyUserHistoryCount" +"Identity.SignIns","GetMgIdentityProtectionServicePrincipalRiskDetection_Get.g.cs","v1.0","Get-MgIdentityProtectionServicePrincipalRiskDetection","GET","/identityProtection/servicePrincipalRiskDetections/{param}","mismatch","Get-MgServicePrincipalRiskDetection" +"Identity.SignIns","GetMgIdentityProtectionServicePrincipalRiskDetection_List.g.cs","v1.0","Get-MgIdentityProtectionServicePrincipalRiskDetection","GET","/identityProtection/servicePrincipalRiskDetections","mismatch","Get-MgServicePrincipalRiskDetection" +"Identity.SignIns","GetMgIdentityProtectionServicePrincipalRiskDetection.g.cs","v1.0","Get-MgIdentityProtectionServicePrincipalRiskDetection","","","dispatcher","" +"Identity.SignIns","GetMgIdentityProtectionServicePrincipalRiskDetectionCount.g.cs","v1.0","Get-MgIdentityProtectionServicePrincipalRiskDetectionCount","GET","/identityProtection/servicePrincipalRiskDetections/$count","mismatch","Get-MgServicePrincipalRiskDetectionCount" +"Identity.SignIns","GetMgIdentityProvider_Get.g.cs","v1.0","Get-MgIdentityProvider","GET","/identity/identityProviders/{param}","matched","Get-MgIdentityProvider" +"Identity.SignIns","GetMgIdentityProvider_List.g.cs","v1.0","Get-MgIdentityProvider","GET","/identity/identityProviders","matched","Get-MgIdentityProvider" +"Identity.SignIns","GetMgIdentityProvider.g.cs","v1.0","Get-MgIdentityProvider","","","dispatcher","" +"Identity.SignIns","GetMgIdentityProviderAvailableProviderTypes.g.cs","v1.0","Get-MgIdentityProviderAvailableProviderTypes","GET","/identity/identityProviders/availableProviderTypes","mismatch","Invoke-MgAvailableIdentityProviderType" +"Identity.SignIns","GetMgIdentityProviderCount.g.cs","v1.0","Get-MgIdentityProviderCount","GET","/identity/identityProviders/$count","matched","Get-MgIdentityProviderCount" +"Identity.SignIns","GetMgIdentityRiskPrevention.g.cs","v1.0","Get-MgIdentityRiskPrevention","GET","/identity/riskPrevention","matched","Get-MgIdentityRiskPrevention" +"Identity.SignIns","GetMgIdentityRiskPreventionFraudProtectionProvider_Get.g.cs","v1.0","Get-MgIdentityRiskPreventionFraudProtectionProvider","GET","/identity/riskPrevention/fraudProtectionProviders/{param}","matched","Get-MgIdentityRiskPreventionFraudProtectionProvider" +"Identity.SignIns","GetMgIdentityRiskPreventionFraudProtectionProvider_List.g.cs","v1.0","Get-MgIdentityRiskPreventionFraudProtectionProvider","GET","/identity/riskPrevention/fraudProtectionProviders","matched","Get-MgIdentityRiskPreventionFraudProtectionProvider" +"Identity.SignIns","GetMgIdentityRiskPreventionFraudProtectionProvider.g.cs","v1.0","Get-MgIdentityRiskPreventionFraudProtectionProvider","","","dispatcher","" +"Identity.SignIns","GetMgIdentityRiskPreventionFraudProtectionProviderCount.g.cs","v1.0","Get-MgIdentityRiskPreventionFraudProtectionProviderCount","GET","/identity/riskPrevention/fraudProtectionProviders/$count","matched","Get-MgIdentityRiskPreventionFraudProtectionProviderCount" +"Identity.SignIns","GetMgIdentityRiskPreventionWebApplicationFirewallProvider_Get.g.cs","v1.0","Get-MgIdentityRiskPreventionWebApplicationFirewallProvider","GET","/identity/riskPrevention/webApplicationFirewallProviders/{param}","matched","Get-MgIdentityRiskPreventionWebApplicationFirewallProvider" +"Identity.SignIns","GetMgIdentityRiskPreventionWebApplicationFirewallProvider_List.g.cs","v1.0","Get-MgIdentityRiskPreventionWebApplicationFirewallProvider","GET","/identity/riskPrevention/webApplicationFirewallProviders","matched","Get-MgIdentityRiskPreventionWebApplicationFirewallProvider" +"Identity.SignIns","GetMgIdentityRiskPreventionWebApplicationFirewallProvider.g.cs","v1.0","Get-MgIdentityRiskPreventionWebApplicationFirewallProvider","","","dispatcher","" +"Identity.SignIns","GetMgIdentityRiskPreventionWebApplicationFirewallProviderCount.g.cs","v1.0","Get-MgIdentityRiskPreventionWebApplicationFirewallProviderCount","GET","/identity/riskPrevention/webApplicationFirewallProviders/$count","matched","Get-MgIdentityRiskPreventionWebApplicationFirewallProviderCount" +"Identity.SignIns","GetMgIdentityRiskPreventionWebApplicationFirewallVerification_Get.g.cs","v1.0","Get-MgIdentityRiskPreventionWebApplicationFirewallVerification","GET","/identity/riskPrevention/webApplicationFirewallVerifications/{param}","matched","Get-MgIdentityRiskPreventionWebApplicationFirewallVerification" +"Identity.SignIns","GetMgIdentityRiskPreventionWebApplicationFirewallVerification_List.g.cs","v1.0","Get-MgIdentityRiskPreventionWebApplicationFirewallVerification","GET","/identity/riskPrevention/webApplicationFirewallVerifications","matched","Get-MgIdentityRiskPreventionWebApplicationFirewallVerification" +"Identity.SignIns","GetMgIdentityRiskPreventionWebApplicationFirewallVerification.g.cs","v1.0","Get-MgIdentityRiskPreventionWebApplicationFirewallVerification","","","dispatcher","" +"Identity.SignIns","GetMgIdentityRiskPreventionWebApplicationFirewallVerificationCount.g.cs","v1.0","Get-MgIdentityRiskPreventionWebApplicationFirewallVerificationCount","GET","/identity/riskPrevention/webApplicationFirewallVerifications/$count","matched","Get-MgIdentityRiskPreventionWebApplicationFirewallVerificationCount" +"Identity.SignIns","GetMgIdentityRiskPreventionWebApplicationFirewallVerificationProvider.g.cs","v1.0","Get-MgIdentityRiskPreventionWebApplicationFirewallVerificationProvider","GET","/identity/riskPrevention/webApplicationFirewallVerifications/{param}/provider","matched","Get-MgIdentityRiskPreventionWebApplicationFirewallVerificationProvider" +"Identity.SignIns","GetMgIdentityUserFlowAttribute_Get.g.cs","v1.0","Get-MgIdentityUserFlowAttribute","GET","/identity/userFlowAttributes/{param}","matched","Get-MgIdentityUserFlowAttribute" +"Identity.SignIns","GetMgIdentityUserFlowAttribute_List.g.cs","v1.0","Get-MgIdentityUserFlowAttribute","GET","/identity/userFlowAttributes","matched","Get-MgIdentityUserFlowAttribute" +"Identity.SignIns","GetMgIdentityUserFlowAttribute.g.cs","v1.0","Get-MgIdentityUserFlowAttribute","","","dispatcher","" +"Identity.SignIns","GetMgIdentityUserFlowAttributeCount.g.cs","v1.0","Get-MgIdentityUserFlowAttributeCount","GET","/identity/userFlowAttributes/$count","matched","Get-MgIdentityUserFlowAttributeCount" +"Identity.SignIns","GetMgIdentityVerifiedId.g.cs","v1.0","Get-MgIdentityVerifiedId","GET","/identity/verifiedId","matched","Get-MgIdentityVerifiedId" +"Identity.SignIns","GetMgIdentityVerifiedIdProfile_Get.g.cs","v1.0","Get-MgIdentityVerifiedIdProfile","GET","/identity/verifiedId/profiles/{param}","matched","Get-MgIdentityVerifiedIdProfile" +"Identity.SignIns","GetMgIdentityVerifiedIdProfile_List.g.cs","v1.0","Get-MgIdentityVerifiedIdProfile","GET","/identity/verifiedId/profiles","matched","Get-MgIdentityVerifiedIdProfile" +"Identity.SignIns","GetMgIdentityVerifiedIdProfile.g.cs","v1.0","Get-MgIdentityVerifiedIdProfile","","","dispatcher","" +"Identity.SignIns","GetMgIdentityVerifiedIdProfileCount.g.cs","v1.0","Get-MgIdentityVerifiedIdProfileCount","GET","/identity/verifiedId/profiles/$count","matched","Get-MgIdentityVerifiedIdProfileCount" +"Identity.SignIns","GetMgInformationProtection.g.cs","v1.0","Get-MgInformationProtection","GET","/informationProtection","matched","Get-MgInformationProtection" +"Identity.SignIns","GetMgInformationProtectionBitlocker.g.cs","v1.0","Get-MgInformationProtectionBitlocker","GET","/informationProtection/bitlocker","matched","Get-MgInformationProtectionBitlocker" +"Identity.SignIns","GetMgInformationProtectionBitlockerRecoveryKey_Get.g.cs","v1.0","Get-MgInformationProtectionBitlockerRecoveryKey","GET","/informationProtection/bitlocker/recoveryKeys/{param}","matched","Get-MgInformationProtectionBitlockerRecoveryKey" +"Identity.SignIns","GetMgInformationProtectionBitlockerRecoveryKey_List.g.cs","v1.0","Get-MgInformationProtectionBitlockerRecoveryKey","GET","/informationProtection/bitlocker/recoveryKeys","matched","Get-MgInformationProtectionBitlockerRecoveryKey" +"Identity.SignIns","GetMgInformationProtectionBitlockerRecoveryKey.g.cs","v1.0","Get-MgInformationProtectionBitlockerRecoveryKey","","","dispatcher","" +"Identity.SignIns","GetMgInformationProtectionBitlockerRecoveryKeyCount.g.cs","v1.0","Get-MgInformationProtectionBitlockerRecoveryKeyCount","GET","/informationProtection/bitlocker/recoveryKeys/$count","matched","Get-MgInformationProtectionBitlockerRecoveryKeyCount" +"Identity.SignIns","GetMgInformationProtectionThreatAssessmentRequest_Get.g.cs","v1.0","Get-MgInformationProtectionThreatAssessmentRequest","GET","/informationProtection/threatAssessmentRequests/{param}","matched","Get-MgInformationProtectionThreatAssessmentRequest" +"Identity.SignIns","GetMgInformationProtectionThreatAssessmentRequest_List.g.cs","v1.0","Get-MgInformationProtectionThreatAssessmentRequest","GET","/informationProtection/threatAssessmentRequests","matched","Get-MgInformationProtectionThreatAssessmentRequest" +"Identity.SignIns","GetMgInformationProtectionThreatAssessmentRequest.g.cs","v1.0","Get-MgInformationProtectionThreatAssessmentRequest","","","dispatcher","" +"Identity.SignIns","GetMgInformationProtectionThreatAssessmentRequestCount.g.cs","v1.0","Get-MgInformationProtectionThreatAssessmentRequestCount","GET","/informationProtection/threatAssessmentRequests/$count","matched","Get-MgInformationProtectionThreatAssessmentRequestCount" +"Identity.SignIns","GetMgInformationProtectionThreatAssessmentRequestResult_Get.g.cs","v1.0","Get-MgInformationProtectionThreatAssessmentRequestResult","GET","/informationProtection/threatAssessmentRequests/{param}/results/{param}","matched","Get-MgInformationProtectionThreatAssessmentRequestResult" +"Identity.SignIns","GetMgInformationProtectionThreatAssessmentRequestResult_List.g.cs","v1.0","Get-MgInformationProtectionThreatAssessmentRequestResult","GET","/informationProtection/threatAssessmentRequests/{param}/results","matched","Get-MgInformationProtectionThreatAssessmentRequestResult" +"Identity.SignIns","GetMgInformationProtectionThreatAssessmentRequestResult.g.cs","v1.0","Get-MgInformationProtectionThreatAssessmentRequestResult","","","dispatcher","" +"Identity.SignIns","GetMgInformationProtectionThreatAssessmentRequestResultCount.g.cs","v1.0","Get-MgInformationProtectionThreatAssessmentRequestResultCount","GET","/informationProtection/threatAssessmentRequests/{param}/results/$count","matched","Get-MgInformationProtectionThreatAssessmentRequestResultCount" +"Identity.SignIns","GetMgInvitation.g.cs","v1.0","Get-MgInvitation","GET","/invitations","matched","Get-MgInvitation" +"Identity.SignIns","GetMgInvitationCount.g.cs","v1.0","Get-MgInvitationCount","GET","/invitations/$count","matched","Get-MgInvitationCount" +"Identity.SignIns","GetMgInvitationInvitedUser.g.cs","v1.0","Get-MgInvitationInvitedUser","GET","/invitations/invitedUser","no-oracle","" +"Identity.SignIns","GetMgInvitationInvitedUserMailboxSetting.g.cs","v1.0","Get-MgInvitationInvitedUserMailboxSetting","GET","/invitations/invitedUser/mailboxSettings","matched","Get-MgInvitationInvitedUserMailboxSetting" +"Identity.SignIns","GetMgInvitationInvitedUserServiceProvisioningError.g.cs","v1.0","Get-MgInvitationInvitedUserServiceProvisioningError","GET","/invitations/invitedUser/serviceProvisioningErrors","matched","Get-MgInvitationInvitedUserServiceProvisioningError" +"Identity.SignIns","GetMgInvitationInvitedUserServiceProvisioningErrorCount.g.cs","v1.0","Get-MgInvitationInvitedUserServiceProvisioningErrorCount","GET","/invitations/invitedUser/serviceProvisioningErrors/$count","matched","Get-MgInvitationInvitedUserServiceProvisioningErrorCount" +"Identity.SignIns","GetMgInvitationInvitedUserSponsor_Get.g.cs","v1.0","Get-MgInvitationInvitedUserSponsor","GET","/invitations/invitedUserSponsors/{param}","matched","Get-MgInvitationInvitedUserSponsor" +"Identity.SignIns","GetMgInvitationInvitedUserSponsor_List.g.cs","v1.0","Get-MgInvitationInvitedUserSponsor","GET","/invitations/invitedUserSponsors","matched","Get-MgInvitationInvitedUserSponsor" +"Identity.SignIns","GetMgInvitationInvitedUserSponsor.g.cs","v1.0","Get-MgInvitationInvitedUserSponsor","","","dispatcher","" +"Identity.SignIns","GetMgInvitationInvitedUserSponsorCount.g.cs","v1.0","Get-MgInvitationInvitedUserSponsorCount","GET","/invitations/invitedUserSponsors/$count","matched","Get-MgInvitationInvitedUserSponsorCount" +"Identity.SignIns","GetMgOauth2PermissionGrant_Get.g.cs","v1.0","Get-MgOauth2PermissionGrant","GET","/oauth2PermissionGrants/{param}","matched","Get-MgOauth2PermissionGrant" +"Identity.SignIns","GetMgOauth2PermissionGrant_List.g.cs","v1.0","Get-MgOauth2PermissionGrant","GET","/oauth2PermissionGrants","matched","Get-MgOauth2PermissionGrant" +"Identity.SignIns","GetMgOauth2PermissionGrant.g.cs","v1.0","Get-MgOauth2PermissionGrant","","","dispatcher","" +"Identity.SignIns","GetMgOauth2PermissionGrantCount.g.cs","v1.0","Get-MgOauth2PermissionGrantCount","GET","/oauth2PermissionGrants/$count","matched","Get-MgOauth2PermissionGrantCount" +"Identity.SignIns","GetMgOauth2PermissionGrantDelta.g.cs","v1.0","Get-MgOauth2PermissionGrantDelta","GET","/oauth2PermissionGrants/delta","matched","Get-MgOauth2PermissionGrantDelta" +"Identity.SignIns","GetMgOrganizationCertificateBasedAuthConfiguration_Get.g.cs","v1.0","Get-MgOrganizationCertificateBasedAuthConfiguration","GET","/organization/{param}/certificateBasedAuthConfiguration/{param}","matched","Get-MgOrganizationCertificateBasedAuthConfiguration" +"Identity.SignIns","GetMgOrganizationCertificateBasedAuthConfiguration_List.g.cs","v1.0","Get-MgOrganizationCertificateBasedAuthConfiguration","GET","/organization/{param}/certificateBasedAuthConfiguration","matched","Get-MgOrganizationCertificateBasedAuthConfiguration" +"Identity.SignIns","GetMgOrganizationCertificateBasedAuthConfiguration.g.cs","v1.0","Get-MgOrganizationCertificateBasedAuthConfiguration","","","dispatcher","" +"Identity.SignIns","GetMgOrganizationCertificateBasedAuthConfigurationCount.g.cs","v1.0","Get-MgOrganizationCertificateBasedAuthConfigurationCount","GET","/organization/{param}/certificateBasedAuthConfiguration/$count","matched","Get-MgOrganizationCertificateBasedAuthConfigurationCount" +"Identity.SignIns","GetMgPolicy.g.cs","v1.0","Get-MgPolicy","GET","/policies","no-oracle","" +"Identity.SignIns","GetMgPolicyActivityBasedTimeoutPolicy_Get.g.cs","v1.0","Get-MgPolicyActivityBasedTimeoutPolicy","GET","/policies/activityBasedTimeoutPolicies/{param}","matched","Get-MgPolicyActivityBasedTimeoutPolicy" +"Identity.SignIns","GetMgPolicyActivityBasedTimeoutPolicy_List.g.cs","v1.0","Get-MgPolicyActivityBasedTimeoutPolicy","GET","/policies/activityBasedTimeoutPolicies","matched","Get-MgPolicyActivityBasedTimeoutPolicy" +"Identity.SignIns","GetMgPolicyActivityBasedTimeoutPolicy.g.cs","v1.0","Get-MgPolicyActivityBasedTimeoutPolicy","","","dispatcher","" +"Identity.SignIns","GetMgPolicyActivityBasedTimeoutPolicyApplyTo_Get.g.cs","v1.0","Get-MgPolicyActivityBasedTimeoutPolicyApplyTo","GET","/policies/activityBasedTimeoutPolicies/{param}/appliesTo/{param}","matched","Get-MgPolicyActivityBasedTimeoutPolicyApplyTo" +"Identity.SignIns","GetMgPolicyActivityBasedTimeoutPolicyApplyTo_List.g.cs","v1.0","Get-MgPolicyActivityBasedTimeoutPolicyApplyTo","GET","/policies/activityBasedTimeoutPolicies/{param}/appliesTo","matched","Get-MgPolicyActivityBasedTimeoutPolicyApplyTo" +"Identity.SignIns","GetMgPolicyActivityBasedTimeoutPolicyApplyTo.g.cs","v1.0","Get-MgPolicyActivityBasedTimeoutPolicyApplyTo","","","dispatcher","" +"Identity.SignIns","GetMgPolicyActivityBasedTimeoutPolicyApplyToCount.g.cs","v1.0","Get-MgPolicyActivityBasedTimeoutPolicyApplyToCount","GET","/policies/activityBasedTimeoutPolicies/{param}/appliesTo/$count","matched","Get-MgPolicyActivityBasedTimeoutPolicyApplyToCount" +"Identity.SignIns","GetMgPolicyActivityBasedTimeoutPolicyCount.g.cs","v1.0","Get-MgPolicyActivityBasedTimeoutPolicyCount","GET","/policies/activityBasedTimeoutPolicies/$count","matched","Get-MgPolicyActivityBasedTimeoutPolicyCount" +"Identity.SignIns","GetMgPolicyAdminConsentRequestPolicy.g.cs","v1.0","Get-MgPolicyAdminConsentRequestPolicy","GET","/policies/adminConsentRequestPolicy","matched","Get-MgPolicyAdminConsentRequestPolicy" +"Identity.SignIns","GetMgPolicyAppManagementPolicy_Get.g.cs","v1.0","Get-MgPolicyAppManagementPolicy","GET","/policies/appManagementPolicies/{param}","matched","Get-MgPolicyAppManagementPolicy" +"Identity.SignIns","GetMgPolicyAppManagementPolicy_List.g.cs","v1.0","Get-MgPolicyAppManagementPolicy","GET","/policies/appManagementPolicies","matched","Get-MgPolicyAppManagementPolicy" +"Identity.SignIns","GetMgPolicyAppManagementPolicy.g.cs","v1.0","Get-MgPolicyAppManagementPolicy","","","dispatcher","" +"Identity.SignIns","GetMgPolicyAppManagementPolicyApplyTo_Get.g.cs","v1.0","Get-MgPolicyAppManagementPolicyApplyTo","GET","/policies/appManagementPolicies/{param}/appliesTo/{param}","matched","Get-MgPolicyAppManagementPolicyApplyTo" +"Identity.SignIns","GetMgPolicyAppManagementPolicyApplyTo_List.g.cs","v1.0","Get-MgPolicyAppManagementPolicyApplyTo","GET","/policies/appManagementPolicies/{param}/appliesTo","matched","Get-MgPolicyAppManagementPolicyApplyTo" +"Identity.SignIns","GetMgPolicyAppManagementPolicyApplyTo.g.cs","v1.0","Get-MgPolicyAppManagementPolicyApplyTo","","","dispatcher","" +"Identity.SignIns","GetMgPolicyAppManagementPolicyApplyToCount.g.cs","v1.0","Get-MgPolicyAppManagementPolicyApplyToCount","GET","/policies/appManagementPolicies/{param}/appliesTo/$count","matched","Get-MgPolicyAppManagementPolicyApplyToCount" +"Identity.SignIns","GetMgPolicyAppManagementPolicyCount.g.cs","v1.0","Get-MgPolicyAppManagementPolicyCount","GET","/policies/appManagementPolicies/$count","matched","Get-MgPolicyAppManagementPolicyCount" +"Identity.SignIns","GetMgPolicyAuthenticationFlowPolicy.g.cs","v1.0","Get-MgPolicyAuthenticationFlowPolicy","GET","/policies/authenticationFlowsPolicy","matched","Get-MgPolicyAuthenticationFlowPolicy" +"Identity.SignIns","GetMgPolicyAuthenticationMethodPolicy.g.cs","v1.0","Get-MgPolicyAuthenticationMethodPolicy","GET","/policies/authenticationMethodsPolicy","matched","Get-MgPolicyAuthenticationMethodPolicy" +"Identity.SignIns","GetMgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration_Get.g.cs","v1.0","Get-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration","GET","/policies/authenticationMethodsPolicy/authenticationMethodConfigurations/{param}","matched","Get-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration" +"Identity.SignIns","GetMgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration_List.g.cs","v1.0","Get-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration","GET","/policies/authenticationMethodsPolicy/authenticationMethodConfigurations","matched","Get-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration" +"Identity.SignIns","GetMgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration.g.cs","v1.0","Get-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration","","","dispatcher","" +"Identity.SignIns","GetMgPolicyAuthenticationMethodPolicyAuthenticationMethodConfigurationCount.g.cs","v1.0","Get-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfigurationCount","GET","/policies/authenticationMethodsPolicy/authenticationMethodConfigurations/$count","matched","Get-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfigurationCount" +"Identity.SignIns","GetMgPolicyAuthenticationStrengthPolicy_Get.g.cs","v1.0","Get-MgPolicyAuthenticationStrengthPolicy","GET","/policies/authenticationStrengthPolicies/{param}","matched","Get-MgPolicyAuthenticationStrengthPolicy" +"Identity.SignIns","GetMgPolicyAuthenticationStrengthPolicy_List.g.cs","v1.0","Get-MgPolicyAuthenticationStrengthPolicy","GET","/policies/authenticationStrengthPolicies","matched","Get-MgPolicyAuthenticationStrengthPolicy" +"Identity.SignIns","GetMgPolicyAuthenticationStrengthPolicy.g.cs","v1.0","Get-MgPolicyAuthenticationStrengthPolicy","","","dispatcher","" +"Identity.SignIns","GetMgPolicyAuthenticationStrengthPolicyCombinationConfiguration_Get.g.cs","v1.0","Get-MgPolicyAuthenticationStrengthPolicyCombinationConfiguration","GET","/policies/authenticationStrengthPolicies/{param}/combinationConfigurations/{param}","matched","Get-MgPolicyAuthenticationStrengthPolicyCombinationConfiguration" +"Identity.SignIns","GetMgPolicyAuthenticationStrengthPolicyCombinationConfiguration_List.g.cs","v1.0","Get-MgPolicyAuthenticationStrengthPolicyCombinationConfiguration","GET","/policies/authenticationStrengthPolicies/{param}/combinationConfigurations","matched","Get-MgPolicyAuthenticationStrengthPolicyCombinationConfiguration" +"Identity.SignIns","GetMgPolicyAuthenticationStrengthPolicyCombinationConfiguration.g.cs","v1.0","Get-MgPolicyAuthenticationStrengthPolicyCombinationConfiguration","","","dispatcher","" +"Identity.SignIns","GetMgPolicyAuthenticationStrengthPolicyCombinationConfigurationCount.g.cs","v1.0","Get-MgPolicyAuthenticationStrengthPolicyCombinationConfigurationCount","GET","/policies/authenticationStrengthPolicies/{param}/combinationConfigurations/$count","matched","Get-MgPolicyAuthenticationStrengthPolicyCombinationConfigurationCount" +"Identity.SignIns","GetMgPolicyAuthenticationStrengthPolicyCount.g.cs","v1.0","Get-MgPolicyAuthenticationStrengthPolicyCount","GET","/policies/authenticationStrengthPolicies/$count","matched","Get-MgPolicyAuthenticationStrengthPolicyCount" +"Identity.SignIns","GetMgPolicyAuthenticationStrengthPolicyUsage.g.cs","v1.0","Get-MgPolicyAuthenticationStrengthPolicyUsage","GET","/policies/authenticationStrengthPolicies/{param}/usage","mismatch","Invoke-MgUsagePolicyAuthenticationStrengthPolicy" +"Identity.SignIns","GetMgPolicyAuthorizationPolicy.g.cs","v1.0","Get-MgPolicyAuthorizationPolicy","GET","/policies/authorizationPolicy","matched","Get-MgPolicyAuthorizationPolicy" +"Identity.SignIns","GetMgPolicyClaimMappingPolicy_Get.g.cs","v1.0","Get-MgPolicyClaimMappingPolicy","GET","/policies/claimsMappingPolicies/{param}","matched","Get-MgPolicyClaimMappingPolicy" +"Identity.SignIns","GetMgPolicyClaimMappingPolicy_List.g.cs","v1.0","Get-MgPolicyClaimMappingPolicy","GET","/policies/claimsMappingPolicies","matched","Get-MgPolicyClaimMappingPolicy" +"Identity.SignIns","GetMgPolicyClaimMappingPolicy.g.cs","v1.0","Get-MgPolicyClaimMappingPolicy","","","dispatcher","" +"Identity.SignIns","GetMgPolicyClaimMappingPolicyApplyTo_Get.g.cs","v1.0","Get-MgPolicyClaimMappingPolicyApplyTo","GET","/policies/claimsMappingPolicies/{param}/appliesTo/{param}","matched","Get-MgPolicyClaimMappingPolicyApplyTo" +"Identity.SignIns","GetMgPolicyClaimMappingPolicyApplyTo_List.g.cs","v1.0","Get-MgPolicyClaimMappingPolicyApplyTo","GET","/policies/claimsMappingPolicies/{param}/appliesTo","matched","Get-MgPolicyClaimMappingPolicyApplyTo" +"Identity.SignIns","GetMgPolicyClaimMappingPolicyApplyTo.g.cs","v1.0","Get-MgPolicyClaimMappingPolicyApplyTo","","","dispatcher","" +"Identity.SignIns","GetMgPolicyClaimMappingPolicyApplyToCount.g.cs","v1.0","Get-MgPolicyClaimMappingPolicyApplyToCount","GET","/policies/claimsMappingPolicies/{param}/appliesTo/$count","matched","Get-MgPolicyClaimMappingPolicyApplyToCount" +"Identity.SignIns","GetMgPolicyClaimMappingPolicyCount.g.cs","v1.0","Get-MgPolicyClaimMappingPolicyCount","GET","/policies/claimsMappingPolicies/$count","matched","Get-MgPolicyClaimMappingPolicyCount" +"Identity.SignIns","GetMgPolicyConditionalAccessPolicy_Get.g.cs","v1.0","Get-MgPolicyConditionalAccessPolicy","GET","/policies/conditionalAccessPolicies/{param}","no-oracle","" +"Identity.SignIns","GetMgPolicyConditionalAccessPolicy_List.g.cs","v1.0","Get-MgPolicyConditionalAccessPolicy","GET","/policies/conditionalAccessPolicies","no-oracle","" +"Identity.SignIns","GetMgPolicyConditionalAccessPolicy.g.cs","v1.0","Get-MgPolicyConditionalAccessPolicy","","","dispatcher","" +"Identity.SignIns","GetMgPolicyConditionalAccessPolicyCount.g.cs","v1.0","Get-MgPolicyConditionalAccessPolicyCount","GET","/policies/conditionalAccessPolicies/$count","matched","Get-MgPolicyConditionalAccessPolicyCount" +"Identity.SignIns","GetMgPolicyCrossTenantAccessPolicy.g.cs","v1.0","Get-MgPolicyCrossTenantAccessPolicy","GET","/policies/crossTenantAccessPolicy","matched","Get-MgPolicyCrossTenantAccessPolicy" +"Identity.SignIns","GetMgPolicyCrossTenantAccessPolicyDefault.g.cs","v1.0","Get-MgPolicyCrossTenantAccessPolicyDefault","GET","/policies/crossTenantAccessPolicy/default","matched","Get-MgPolicyCrossTenantAccessPolicyDefault" +"Identity.SignIns","GetMgPolicyCrossTenantAccessPolicyPartner_Get.g.cs","v1.0","Get-MgPolicyCrossTenantAccessPolicyPartner","GET","/policies/crossTenantAccessPolicy/partners/{param}","matched","Get-MgPolicyCrossTenantAccessPolicyPartner" +"Identity.SignIns","GetMgPolicyCrossTenantAccessPolicyPartner_List.g.cs","v1.0","Get-MgPolicyCrossTenantAccessPolicyPartner","GET","/policies/crossTenantAccessPolicy/partners","matched","Get-MgPolicyCrossTenantAccessPolicyPartner" +"Identity.SignIns","GetMgPolicyCrossTenantAccessPolicyPartner.g.cs","v1.0","Get-MgPolicyCrossTenantAccessPolicyPartner","","","dispatcher","" +"Identity.SignIns","GetMgPolicyCrossTenantAccessPolicyPartnerCount.g.cs","v1.0","Get-MgPolicyCrossTenantAccessPolicyPartnerCount","GET","/policies/crossTenantAccessPolicy/partners/$count","matched","Get-MgPolicyCrossTenantAccessPolicyPartnerCount" +"Identity.SignIns","GetMgPolicyCrossTenantAccessPolicyPartnerIdentitySynchronization.g.cs","v1.0","Get-MgPolicyCrossTenantAccessPolicyPartnerIdentitySynchronization","GET","/policies/crossTenantAccessPolicy/partners/{param}/identitySynchronization","matched","Get-MgPolicyCrossTenantAccessPolicyPartnerIdentitySynchronization" +"Identity.SignIns","GetMgPolicyCrossTenantAccessPolicyTemplate.g.cs","v1.0","Get-MgPolicyCrossTenantAccessPolicyTemplate","GET","/policies/crossTenantAccessPolicy/templates","matched","Get-MgPolicyCrossTenantAccessPolicyTemplate" +"Identity.SignIns","GetMgPolicyCrossTenantAccessPolicyTemplateMultiTenantOrganizationIdentitySynchronization.g.cs","v1.0","Get-MgPolicyCrossTenantAccessPolicyTemplateMultiTenantOrganizationIdentitySynchronization","GET","/policies/crossTenantAccessPolicy/templates/multiTenantOrganizationIdentitySynchronization","matched","Get-MgPolicyCrossTenantAccessPolicyTemplateMultiTenantOrganizationIdentitySynchronization" +"Identity.SignIns","GetMgPolicyCrossTenantAccessPolicyTemplateMultiTenantOrganizationPartnerConfiguration.g.cs","v1.0","Get-MgPolicyCrossTenantAccessPolicyTemplateMultiTenantOrganizationPartnerConfiguration","GET","/policies/crossTenantAccessPolicy/templates/multiTenantOrganizationPartnerConfiguration","matched","Get-MgPolicyCrossTenantAccessPolicyTemplateMultiTenantOrganizationPartnerConfiguration" +"Identity.SignIns","GetMgPolicyDefaultAppManagementPolicy.g.cs","v1.0","Get-MgPolicyDefaultAppManagementPolicy","GET","/policies/defaultAppManagementPolicy","matched","Get-MgPolicyDefaultAppManagementPolicy" +"Identity.SignIns","GetMgPolicyDeviceRegistrationPolicy.g.cs","v1.0","Get-MgPolicyDeviceRegistrationPolicy","GET","/policies/deviceRegistrationPolicy","matched","Get-MgPolicyDeviceRegistrationPolicy" +"Identity.SignIns","GetMgPolicyFeatureRolloutPolicy_Get.g.cs","v1.0","Get-MgPolicyFeatureRolloutPolicy","GET","/policies/featureRolloutPolicies/{param}","matched","Get-MgPolicyFeatureRolloutPolicy" +"Identity.SignIns","GetMgPolicyFeatureRolloutPolicy_List.g.cs","v1.0","Get-MgPolicyFeatureRolloutPolicy","GET","/policies/featureRolloutPolicies","matched","Get-MgPolicyFeatureRolloutPolicy" +"Identity.SignIns","GetMgPolicyFeatureRolloutPolicy.g.cs","v1.0","Get-MgPolicyFeatureRolloutPolicy","","","dispatcher","" +"Identity.SignIns","GetMgPolicyFeatureRolloutPolicyApplyTo.g.cs","v1.0","Get-MgPolicyFeatureRolloutPolicyApplyTo","GET","/policies/featureRolloutPolicies/{param}/appliesTo","matched","Get-MgPolicyFeatureRolloutPolicyApplyTo" +"Identity.SignIns","GetMgPolicyFeatureRolloutPolicyApplyToByRef.g.cs","v1.0","Get-MgPolicyFeatureRolloutPolicyApplyToByRef","GET","/policies/featureRolloutPolicies/{param}/appliesTo/$ref","matched","Get-MgPolicyFeatureRolloutPolicyApplyToByRef" +"Identity.SignIns","GetMgPolicyFeatureRolloutPolicyApplyToCount.g.cs","v1.0","Get-MgPolicyFeatureRolloutPolicyApplyToCount","GET","/policies/featureRolloutPolicies/{param}/appliesTo/$count","matched","Get-MgPolicyFeatureRolloutPolicyApplyToCount" +"Identity.SignIns","GetMgPolicyFeatureRolloutPolicyCount.g.cs","v1.0","Get-MgPolicyFeatureRolloutPolicyCount","GET","/policies/featureRolloutPolicies/$count","matched","Get-MgPolicyFeatureRolloutPolicyCount" +"Identity.SignIns","GetMgPolicyFederatedTokenValidationPolicy.g.cs","v1.0","Get-MgPolicyFederatedTokenValidationPolicy","GET","/policies/federatedTokenValidationPolicy","matched","Get-MgPolicyFederatedTokenValidationPolicy" +"Identity.SignIns","GetMgPolicyHomeRealmDiscoveryPolicy_Get.g.cs","v1.0","Get-MgPolicyHomeRealmDiscoveryPolicy","GET","/policies/homeRealmDiscoveryPolicies/{param}","matched","Get-MgPolicyHomeRealmDiscoveryPolicy" +"Identity.SignIns","GetMgPolicyHomeRealmDiscoveryPolicy_List.g.cs","v1.0","Get-MgPolicyHomeRealmDiscoveryPolicy","GET","/policies/homeRealmDiscoveryPolicies","matched","Get-MgPolicyHomeRealmDiscoveryPolicy" +"Identity.SignIns","GetMgPolicyHomeRealmDiscoveryPolicy.g.cs","v1.0","Get-MgPolicyHomeRealmDiscoveryPolicy","","","dispatcher","" +"Identity.SignIns","GetMgPolicyHomeRealmDiscoveryPolicyApplyTo_Get.g.cs","v1.0","Get-MgPolicyHomeRealmDiscoveryPolicyApplyTo","GET","/policies/homeRealmDiscoveryPolicies/{param}/appliesTo/{param}","matched","Get-MgPolicyHomeRealmDiscoveryPolicyApplyTo" +"Identity.SignIns","GetMgPolicyHomeRealmDiscoveryPolicyApplyTo_List.g.cs","v1.0","Get-MgPolicyHomeRealmDiscoveryPolicyApplyTo","GET","/policies/homeRealmDiscoveryPolicies/{param}/appliesTo","matched","Get-MgPolicyHomeRealmDiscoveryPolicyApplyTo" +"Identity.SignIns","GetMgPolicyHomeRealmDiscoveryPolicyApplyTo.g.cs","v1.0","Get-MgPolicyHomeRealmDiscoveryPolicyApplyTo","","","dispatcher","" +"Identity.SignIns","GetMgPolicyHomeRealmDiscoveryPolicyApplyToCount.g.cs","v1.0","Get-MgPolicyHomeRealmDiscoveryPolicyApplyToCount","GET","/policies/homeRealmDiscoveryPolicies/{param}/appliesTo/$count","matched","Get-MgPolicyHomeRealmDiscoveryPolicyApplyToCount" +"Identity.SignIns","GetMgPolicyHomeRealmDiscoveryPolicyCount.g.cs","v1.0","Get-MgPolicyHomeRealmDiscoveryPolicyCount","GET","/policies/homeRealmDiscoveryPolicies/$count","matched","Get-MgPolicyHomeRealmDiscoveryPolicyCount" +"Identity.SignIns","GetMgPolicyIdentitySecurityDefaultEnforcementPolicy.g.cs","v1.0","Get-MgPolicyIdentitySecurityDefaultEnforcementPolicy","GET","/policies/identitySecurityDefaultsEnforcementPolicy","matched","Get-MgPolicyIdentitySecurityDefaultEnforcementPolicy" +"Identity.SignIns","GetMgPolicyOwnerlessGroupPolicy.g.cs","v1.0","Get-MgPolicyOwnerlessGroupPolicy","GET","/policies/ownerlessGroupPolicy","matched","Get-MgPolicyOwnerlessGroupPolicy" +"Identity.SignIns","GetMgPolicyPermissionGrantPolicy_Get.g.cs","v1.0","Get-MgPolicyPermissionGrantPolicy","GET","/policies/permissionGrantPolicies/{param}","matched","Get-MgPolicyPermissionGrantPolicy" +"Identity.SignIns","GetMgPolicyPermissionGrantPolicy_List.g.cs","v1.0","Get-MgPolicyPermissionGrantPolicy","GET","/policies/permissionGrantPolicies","matched","Get-MgPolicyPermissionGrantPolicy" +"Identity.SignIns","GetMgPolicyPermissionGrantPolicy.g.cs","v1.0","Get-MgPolicyPermissionGrantPolicy","","","dispatcher","" +"Identity.SignIns","GetMgPolicyPermissionGrantPolicyCount.g.cs","v1.0","Get-MgPolicyPermissionGrantPolicyCount","GET","/policies/permissionGrantPolicies/$count","matched","Get-MgPolicyPermissionGrantPolicyCount" +"Identity.SignIns","GetMgPolicyPermissionGrantPolicyExclude_Get.g.cs","v1.0","Get-MgPolicyPermissionGrantPolicyExclude","GET","/policies/permissionGrantPolicies/{param}/excludes/{param}","matched","Get-MgPolicyPermissionGrantPolicyExclude" +"Identity.SignIns","GetMgPolicyPermissionGrantPolicyExclude_List.g.cs","v1.0","Get-MgPolicyPermissionGrantPolicyExclude","GET","/policies/permissionGrantPolicies/{param}/excludes","matched","Get-MgPolicyPermissionGrantPolicyExclude" +"Identity.SignIns","GetMgPolicyPermissionGrantPolicyExclude.g.cs","v1.0","Get-MgPolicyPermissionGrantPolicyExclude","","","dispatcher","" +"Identity.SignIns","GetMgPolicyPermissionGrantPolicyExcludeCount.g.cs","v1.0","Get-MgPolicyPermissionGrantPolicyExcludeCount","GET","/policies/permissionGrantPolicies/{param}/excludes/$count","matched","Get-MgPolicyPermissionGrantPolicyExcludeCount" +"Identity.SignIns","GetMgPolicyPermissionGrantPolicyInclude_Get.g.cs","v1.0","Get-MgPolicyPermissionGrantPolicyInclude","GET","/policies/permissionGrantPolicies/{param}/includes/{param}","matched","Get-MgPolicyPermissionGrantPolicyInclude" +"Identity.SignIns","GetMgPolicyPermissionGrantPolicyInclude_List.g.cs","v1.0","Get-MgPolicyPermissionGrantPolicyInclude","GET","/policies/permissionGrantPolicies/{param}/includes","matched","Get-MgPolicyPermissionGrantPolicyInclude" +"Identity.SignIns","GetMgPolicyPermissionGrantPolicyInclude.g.cs","v1.0","Get-MgPolicyPermissionGrantPolicyInclude","","","dispatcher","" +"Identity.SignIns","GetMgPolicyPermissionGrantPolicyIncludeCount.g.cs","v1.0","Get-MgPolicyPermissionGrantPolicyIncludeCount","GET","/policies/permissionGrantPolicies/{param}/includes/$count","matched","Get-MgPolicyPermissionGrantPolicyIncludeCount" +"Identity.SignIns","GetMgPolicyRoleManagementPolicy_Get.g.cs","v1.0","Get-MgPolicyRoleManagementPolicy","GET","/policies/roleManagementPolicies/{param}","matched","Get-MgPolicyRoleManagementPolicy" +"Identity.SignIns","GetMgPolicyRoleManagementPolicy_List.g.cs","v1.0","Get-MgPolicyRoleManagementPolicy","GET","/policies/roleManagementPolicies","matched","Get-MgPolicyRoleManagementPolicy" +"Identity.SignIns","GetMgPolicyRoleManagementPolicy.g.cs","v1.0","Get-MgPolicyRoleManagementPolicy","","","dispatcher","" +"Identity.SignIns","GetMgPolicyRoleManagementPolicyAssignment_Get.g.cs","v1.0","Get-MgPolicyRoleManagementPolicyAssignment","GET","/policies/roleManagementPolicyAssignments/{param}","matched","Get-MgPolicyRoleManagementPolicyAssignment" +"Identity.SignIns","GetMgPolicyRoleManagementPolicyAssignment_List.g.cs","v1.0","Get-MgPolicyRoleManagementPolicyAssignment","GET","/policies/roleManagementPolicyAssignments","matched","Get-MgPolicyRoleManagementPolicyAssignment" +"Identity.SignIns","GetMgPolicyRoleManagementPolicyAssignment.g.cs","v1.0","Get-MgPolicyRoleManagementPolicyAssignment","","","dispatcher","" +"Identity.SignIns","GetMgPolicyRoleManagementPolicyAssignmentCount.g.cs","v1.0","Get-MgPolicyRoleManagementPolicyAssignmentCount","GET","/policies/roleManagementPolicyAssignments/$count","matched","Get-MgPolicyRoleManagementPolicyAssignmentCount" +"Identity.SignIns","GetMgPolicyRoleManagementPolicyAssignmentPolicy.g.cs","v1.0","Get-MgPolicyRoleManagementPolicyAssignmentPolicy","GET","/policies/roleManagementPolicyAssignments/{param}/policy","matched","Get-MgPolicyRoleManagementPolicyAssignmentPolicy" +"Identity.SignIns","GetMgPolicyRoleManagementPolicyCount.g.cs","v1.0","Get-MgPolicyRoleManagementPolicyCount","GET","/policies/roleManagementPolicies/$count","matched","Get-MgPolicyRoleManagementPolicyCount" +"Identity.SignIns","GetMgPolicyRoleManagementPolicyEffectiveRule_Get.g.cs","v1.0","Get-MgPolicyRoleManagementPolicyEffectiveRule","GET","/policies/roleManagementPolicies/{param}/effectiveRules/{param}","matched","Get-MgPolicyRoleManagementPolicyEffectiveRule" +"Identity.SignIns","GetMgPolicyRoleManagementPolicyEffectiveRule_List.g.cs","v1.0","Get-MgPolicyRoleManagementPolicyEffectiveRule","GET","/policies/roleManagementPolicies/{param}/effectiveRules","matched","Get-MgPolicyRoleManagementPolicyEffectiveRule" +"Identity.SignIns","GetMgPolicyRoleManagementPolicyEffectiveRule.g.cs","v1.0","Get-MgPolicyRoleManagementPolicyEffectiveRule","","","dispatcher","" +"Identity.SignIns","GetMgPolicyRoleManagementPolicyEffectiveRuleCount.g.cs","v1.0","Get-MgPolicyRoleManagementPolicyEffectiveRuleCount","GET","/policies/roleManagementPolicies/{param}/effectiveRules/$count","matched","Get-MgPolicyRoleManagementPolicyEffectiveRuleCount" +"Identity.SignIns","GetMgPolicyRoleManagementPolicyRule_Get.g.cs","v1.0","Get-MgPolicyRoleManagementPolicyRule","GET","/policies/roleManagementPolicies/{param}/rules/{param}","matched","Get-MgPolicyRoleManagementPolicyRule" +"Identity.SignIns","GetMgPolicyRoleManagementPolicyRule_List.g.cs","v1.0","Get-MgPolicyRoleManagementPolicyRule","GET","/policies/roleManagementPolicies/{param}/rules","matched","Get-MgPolicyRoleManagementPolicyRule" +"Identity.SignIns","GetMgPolicyRoleManagementPolicyRule.g.cs","v1.0","Get-MgPolicyRoleManagementPolicyRule","","","dispatcher","" +"Identity.SignIns","GetMgPolicyRoleManagementPolicyRuleCount.g.cs","v1.0","Get-MgPolicyRoleManagementPolicyRuleCount","GET","/policies/roleManagementPolicies/{param}/rules/$count","matched","Get-MgPolicyRoleManagementPolicyRuleCount" +"Identity.SignIns","GetMgPolicyTokenIssuancePolicy_Get.g.cs","v1.0","Get-MgPolicyTokenIssuancePolicy","GET","/policies/tokenIssuancePolicies/{param}","matched","Get-MgPolicyTokenIssuancePolicy" +"Identity.SignIns","GetMgPolicyTokenIssuancePolicy_List.g.cs","v1.0","Get-MgPolicyTokenIssuancePolicy","GET","/policies/tokenIssuancePolicies","matched","Get-MgPolicyTokenIssuancePolicy" +"Identity.SignIns","GetMgPolicyTokenIssuancePolicy.g.cs","v1.0","Get-MgPolicyTokenIssuancePolicy","","","dispatcher","" +"Identity.SignIns","GetMgPolicyTokenIssuancePolicyApplyTo_Get.g.cs","v1.0","Get-MgPolicyTokenIssuancePolicyApplyTo","GET","/policies/tokenIssuancePolicies/{param}/appliesTo/{param}","matched","Get-MgPolicyTokenIssuancePolicyApplyTo" +"Identity.SignIns","GetMgPolicyTokenIssuancePolicyApplyTo_List.g.cs","v1.0","Get-MgPolicyTokenIssuancePolicyApplyTo","GET","/policies/tokenIssuancePolicies/{param}/appliesTo","matched","Get-MgPolicyTokenIssuancePolicyApplyTo" +"Identity.SignIns","GetMgPolicyTokenIssuancePolicyApplyTo.g.cs","v1.0","Get-MgPolicyTokenIssuancePolicyApplyTo","","","dispatcher","" +"Identity.SignIns","GetMgPolicyTokenIssuancePolicyApplyToCount.g.cs","v1.0","Get-MgPolicyTokenIssuancePolicyApplyToCount","GET","/policies/tokenIssuancePolicies/{param}/appliesTo/$count","matched","Get-MgPolicyTokenIssuancePolicyApplyToCount" +"Identity.SignIns","GetMgPolicyTokenIssuancePolicyCount.g.cs","v1.0","Get-MgPolicyTokenIssuancePolicyCount","GET","/policies/tokenIssuancePolicies/$count","matched","Get-MgPolicyTokenIssuancePolicyCount" +"Identity.SignIns","GetMgPolicyTokenLifetimePolicy_Get.g.cs","v1.0","Get-MgPolicyTokenLifetimePolicy","GET","/policies/tokenLifetimePolicies/{param}","matched","Get-MgPolicyTokenLifetimePolicy" +"Identity.SignIns","GetMgPolicyTokenLifetimePolicy_List.g.cs","v1.0","Get-MgPolicyTokenLifetimePolicy","GET","/policies/tokenLifetimePolicies","matched","Get-MgPolicyTokenLifetimePolicy" +"Identity.SignIns","GetMgPolicyTokenLifetimePolicy.g.cs","v1.0","Get-MgPolicyTokenLifetimePolicy","","","dispatcher","" +"Identity.SignIns","GetMgPolicyTokenLifetimePolicyApplyTo_Get.g.cs","v1.0","Get-MgPolicyTokenLifetimePolicyApplyTo","GET","/policies/tokenLifetimePolicies/{param}/appliesTo/{param}","matched","Get-MgPolicyTokenLifetimePolicyApplyTo" +"Identity.SignIns","GetMgPolicyTokenLifetimePolicyApplyTo_List.g.cs","v1.0","Get-MgPolicyTokenLifetimePolicyApplyTo","GET","/policies/tokenLifetimePolicies/{param}/appliesTo","matched","Get-MgPolicyTokenLifetimePolicyApplyTo" +"Identity.SignIns","GetMgPolicyTokenLifetimePolicyApplyTo.g.cs","v1.0","Get-MgPolicyTokenLifetimePolicyApplyTo","","","dispatcher","" +"Identity.SignIns","GetMgPolicyTokenLifetimePolicyApplyToCount.g.cs","v1.0","Get-MgPolicyTokenLifetimePolicyApplyToCount","GET","/policies/tokenLifetimePolicies/{param}/appliesTo/$count","matched","Get-MgPolicyTokenLifetimePolicyApplyToCount" +"Identity.SignIns","GetMgPolicyTokenLifetimePolicyCount.g.cs","v1.0","Get-MgPolicyTokenLifetimePolicyCount","GET","/policies/tokenLifetimePolicies/$count","matched","Get-MgPolicyTokenLifetimePolicyCount" +"Identity.SignIns","GetMgTenantRelationshipMultiTenantOrganization.g.cs","v1.0","Get-MgTenantRelationshipMultiTenantOrganization","GET","/tenantRelationships/multiTenantOrganization","matched","Get-MgTenantRelationshipMultiTenantOrganization" +"Identity.SignIns","GetMgTenantRelationshipMultiTenantOrganizationJoinRequest.g.cs","v1.0","Get-MgTenantRelationshipMultiTenantOrganizationJoinRequest","GET","/tenantRelationships/multiTenantOrganization/joinRequest","matched","Get-MgTenantRelationshipMultiTenantOrganizationJoinRequest" +"Identity.SignIns","GetMgTenantRelationshipMultiTenantOrganizationTenant_Get.g.cs","v1.0","Get-MgTenantRelationshipMultiTenantOrganizationTenant","GET","/tenantRelationships/multiTenantOrganization/tenants/{param}","matched","Get-MgTenantRelationshipMultiTenantOrganizationTenant" +"Identity.SignIns","GetMgTenantRelationshipMultiTenantOrganizationTenant_List.g.cs","v1.0","Get-MgTenantRelationshipMultiTenantOrganizationTenant","GET","/tenantRelationships/multiTenantOrganization/tenants","matched","Get-MgTenantRelationshipMultiTenantOrganizationTenant" +"Identity.SignIns","GetMgTenantRelationshipMultiTenantOrganizationTenant.g.cs","v1.0","Get-MgTenantRelationshipMultiTenantOrganizationTenant","","","dispatcher","" +"Identity.SignIns","GetMgTenantRelationshipMultiTenantOrganizationTenantCount.g.cs","v1.0","Get-MgTenantRelationshipMultiTenantOrganizationTenantCount","GET","/tenantRelationships/multiTenantOrganization/tenants/$count","matched","Get-MgTenantRelationshipMultiTenantOrganizationTenantCount" +"Identity.SignIns","GetMgUserAuthentication.g.cs","v1.0","Get-MgUserAuthentication","GET","/users/{param}/authentication","no-oracle","" +"Identity.SignIns","GetMgUserAuthenticationEmailMethod_Get.g.cs","v1.0","Get-MgUserAuthenticationEmailMethod","GET","/users/{param}/authentication/emailMethods/{param}","matched","Get-MgUserAuthenticationEmailMethod" +"Identity.SignIns","GetMgUserAuthenticationEmailMethod_List.g.cs","v1.0","Get-MgUserAuthenticationEmailMethod","GET","/users/{param}/authentication/emailMethods","matched","Get-MgUserAuthenticationEmailMethod" +"Identity.SignIns","GetMgUserAuthenticationEmailMethod.g.cs","v1.0","Get-MgUserAuthenticationEmailMethod","","","dispatcher","" +"Identity.SignIns","GetMgUserAuthenticationEmailMethodCount.g.cs","v1.0","Get-MgUserAuthenticationEmailMethodCount","GET","/users/{param}/authentication/emailMethods/$count","matched","Get-MgUserAuthenticationEmailMethodCount" +"Identity.SignIns","GetMgUserAuthenticationExternalAuthenticationMethod_Get.g.cs","v1.0","Get-MgUserAuthenticationExternalAuthenticationMethod","GET","/users/{param}/authentication/externalAuthenticationMethods/{param}","matched","Get-MgUserAuthenticationExternalAuthenticationMethod" +"Identity.SignIns","GetMgUserAuthenticationExternalAuthenticationMethod_List.g.cs","v1.0","Get-MgUserAuthenticationExternalAuthenticationMethod","GET","/users/{param}/authentication/externalAuthenticationMethods","matched","Get-MgUserAuthenticationExternalAuthenticationMethod" +"Identity.SignIns","GetMgUserAuthenticationExternalAuthenticationMethod.g.cs","v1.0","Get-MgUserAuthenticationExternalAuthenticationMethod","","","dispatcher","" +"Identity.SignIns","GetMgUserAuthenticationExternalAuthenticationMethodCount.g.cs","v1.0","Get-MgUserAuthenticationExternalAuthenticationMethodCount","GET","/users/{param}/authentication/externalAuthenticationMethods/$count","matched","Get-MgUserAuthenticationExternalAuthenticationMethodCount" +"Identity.SignIns","GetMgUserAuthenticationFido2Method_Get.g.cs","v1.0","Get-MgUserAuthenticationFido2Method","GET","/users/{param}/authentication/fido2Methods/{param}","matched","Get-MgUserAuthenticationFido2Method" +"Identity.SignIns","GetMgUserAuthenticationFido2Method_List.g.cs","v1.0","Get-MgUserAuthenticationFido2Method","GET","/users/{param}/authentication/fido2Methods","matched","Get-MgUserAuthenticationFido2Method" +"Identity.SignIns","GetMgUserAuthenticationFido2Method.g.cs","v1.0","Get-MgUserAuthenticationFido2Method","","","dispatcher","" +"Identity.SignIns","GetMgUserAuthenticationFido2MethodCount.g.cs","v1.0","Get-MgUserAuthenticationFido2MethodCount","GET","/users/{param}/authentication/fido2Methods/$count","matched","Get-MgUserAuthenticationFido2MethodCount" +"Identity.SignIns","GetMgUserAuthenticationFido2MethodCreationOptions.g.cs","v1.0","Get-MgUserAuthenticationFido2MethodCreationOptions","GET","/users/{param}/authentication/fido2Methods/creationOptions","mismatch","Invoke-MgCreationUserAuthenticationFido2MethodOption" +"Identity.SignIns","GetMgUserAuthenticationMethod_Get.g.cs","v1.0","Get-MgUserAuthenticationMethod","GET","/users/{param}/authentication/methods/{param}","matched","Get-MgUserAuthenticationMethod" +"Identity.SignIns","GetMgUserAuthenticationMethod_List.g.cs","v1.0","Get-MgUserAuthenticationMethod","GET","/users/{param}/authentication/methods","matched","Get-MgUserAuthenticationMethod" +"Identity.SignIns","GetMgUserAuthenticationMethod.g.cs","v1.0","Get-MgUserAuthenticationMethod","","","dispatcher","" +"Identity.SignIns","GetMgUserAuthenticationMethodCount.g.cs","v1.0","Get-MgUserAuthenticationMethodCount","GET","/users/{param}/authentication/methods/$count","matched","Get-MgUserAuthenticationMethodCount" +"Identity.SignIns","GetMgUserAuthenticationMicrosoftAuthenticatorMethod_Get.g.cs","v1.0","Get-MgUserAuthenticationMicrosoftAuthenticatorMethod","GET","/users/{param}/authentication/microsoftAuthenticatorMethods/{param}","matched","Get-MgUserAuthenticationMicrosoftAuthenticatorMethod" +"Identity.SignIns","GetMgUserAuthenticationMicrosoftAuthenticatorMethod_List.g.cs","v1.0","Get-MgUserAuthenticationMicrosoftAuthenticatorMethod","GET","/users/{param}/authentication/microsoftAuthenticatorMethods","matched","Get-MgUserAuthenticationMicrosoftAuthenticatorMethod" +"Identity.SignIns","GetMgUserAuthenticationMicrosoftAuthenticatorMethod.g.cs","v1.0","Get-MgUserAuthenticationMicrosoftAuthenticatorMethod","","","dispatcher","" +"Identity.SignIns","GetMgUserAuthenticationMicrosoftAuthenticatorMethodCount.g.cs","v1.0","Get-MgUserAuthenticationMicrosoftAuthenticatorMethodCount","GET","/users/{param}/authentication/microsoftAuthenticatorMethods/$count","matched","Get-MgUserAuthenticationMicrosoftAuthenticatorMethodCount" +"Identity.SignIns","GetMgUserAuthenticationMicrosoftAuthenticatorMethodDevice.g.cs","v1.0","Get-MgUserAuthenticationMicrosoftAuthenticatorMethodDevice","GET","/users/{param}/authentication/microsoftAuthenticatorMethods/{param}/device","matched","Get-MgUserAuthenticationMicrosoftAuthenticatorMethodDevice" +"Identity.SignIns","GetMgUserAuthenticationOperation_Get.g.cs","v1.0","Get-MgUserAuthenticationOperation","GET","/users/{param}/authentication/operations/{param}","matched","Get-MgUserAuthenticationOperation" +"Identity.SignIns","GetMgUserAuthenticationOperation_List.g.cs","v1.0","Get-MgUserAuthenticationOperation","GET","/users/{param}/authentication/operations","matched","Get-MgUserAuthenticationOperation" +"Identity.SignIns","GetMgUserAuthenticationOperation.g.cs","v1.0","Get-MgUserAuthenticationOperation","","","dispatcher","" +"Identity.SignIns","GetMgUserAuthenticationOperationCount.g.cs","v1.0","Get-MgUserAuthenticationOperationCount","GET","/users/{param}/authentication/operations/$count","matched","Get-MgUserAuthenticationOperationCount" +"Identity.SignIns","GetMgUserAuthenticationPasswordMethod_Get.g.cs","v1.0","Get-MgUserAuthenticationPasswordMethod","GET","/users/{param}/authentication/passwordMethods/{param}","matched","Get-MgUserAuthenticationPasswordMethod" +"Identity.SignIns","GetMgUserAuthenticationPasswordMethod_List.g.cs","v1.0","Get-MgUserAuthenticationPasswordMethod","GET","/users/{param}/authentication/passwordMethods","matched","Get-MgUserAuthenticationPasswordMethod" +"Identity.SignIns","GetMgUserAuthenticationPasswordMethod.g.cs","v1.0","Get-MgUserAuthenticationPasswordMethod","","","dispatcher","" +"Identity.SignIns","GetMgUserAuthenticationPasswordMethodCount.g.cs","v1.0","Get-MgUserAuthenticationPasswordMethodCount","GET","/users/{param}/authentication/passwordMethods/$count","matched","Get-MgUserAuthenticationPasswordMethodCount" +"Identity.SignIns","GetMgUserAuthenticationPhoneMethod_Get.g.cs","v1.0","Get-MgUserAuthenticationPhoneMethod","GET","/users/{param}/authentication/phoneMethods/{param}","matched","Get-MgUserAuthenticationPhoneMethod" +"Identity.SignIns","GetMgUserAuthenticationPhoneMethod_List.g.cs","v1.0","Get-MgUserAuthenticationPhoneMethod","GET","/users/{param}/authentication/phoneMethods","matched","Get-MgUserAuthenticationPhoneMethod" +"Identity.SignIns","GetMgUserAuthenticationPhoneMethod.g.cs","v1.0","Get-MgUserAuthenticationPhoneMethod","","","dispatcher","" +"Identity.SignIns","GetMgUserAuthenticationPhoneMethodCount.g.cs","v1.0","Get-MgUserAuthenticationPhoneMethodCount","GET","/users/{param}/authentication/phoneMethods/$count","matched","Get-MgUserAuthenticationPhoneMethodCount" +"Identity.SignIns","GetMgUserAuthenticationPlatformCredentialMethod_Get.g.cs","v1.0","Get-MgUserAuthenticationPlatformCredentialMethod","GET","/users/{param}/authentication/platformCredentialMethods/{param}","matched","Get-MgUserAuthenticationPlatformCredentialMethod" +"Identity.SignIns","GetMgUserAuthenticationPlatformCredentialMethod_List.g.cs","v1.0","Get-MgUserAuthenticationPlatformCredentialMethod","GET","/users/{param}/authentication/platformCredentialMethods","matched","Get-MgUserAuthenticationPlatformCredentialMethod" +"Identity.SignIns","GetMgUserAuthenticationPlatformCredentialMethod.g.cs","v1.0","Get-MgUserAuthenticationPlatformCredentialMethod","","","dispatcher","" +"Identity.SignIns","GetMgUserAuthenticationPlatformCredentialMethodCount.g.cs","v1.0","Get-MgUserAuthenticationPlatformCredentialMethodCount","GET","/users/{param}/authentication/platformCredentialMethods/$count","matched","Get-MgUserAuthenticationPlatformCredentialMethodCount" +"Identity.SignIns","GetMgUserAuthenticationPlatformCredentialMethodDevice.g.cs","v1.0","Get-MgUserAuthenticationPlatformCredentialMethodDevice","GET","/users/{param}/authentication/platformCredentialMethods/{param}/device","matched","Get-MgUserAuthenticationPlatformCredentialMethodDevice" +"Identity.SignIns","GetMgUserAuthenticationSoftwareOathMethod_Get.g.cs","v1.0","Get-MgUserAuthenticationSoftwareOathMethod","GET","/users/{param}/authentication/softwareOathMethods/{param}","matched","Get-MgUserAuthenticationSoftwareOathMethod" +"Identity.SignIns","GetMgUserAuthenticationSoftwareOathMethod_List.g.cs","v1.0","Get-MgUserAuthenticationSoftwareOathMethod","GET","/users/{param}/authentication/softwareOathMethods","matched","Get-MgUserAuthenticationSoftwareOathMethod" +"Identity.SignIns","GetMgUserAuthenticationSoftwareOathMethod.g.cs","v1.0","Get-MgUserAuthenticationSoftwareOathMethod","","","dispatcher","" +"Identity.SignIns","GetMgUserAuthenticationSoftwareOathMethodCount.g.cs","v1.0","Get-MgUserAuthenticationSoftwareOathMethodCount","GET","/users/{param}/authentication/softwareOathMethods/$count","matched","Get-MgUserAuthenticationSoftwareOathMethodCount" +"Identity.SignIns","GetMgUserAuthenticationTemporaryAccessPassMethod_Get.g.cs","v1.0","Get-MgUserAuthenticationTemporaryAccessPassMethod","GET","/users/{param}/authentication/temporaryAccessPassMethods/{param}","matched","Get-MgUserAuthenticationTemporaryAccessPassMethod" +"Identity.SignIns","GetMgUserAuthenticationTemporaryAccessPassMethod_List.g.cs","v1.0","Get-MgUserAuthenticationTemporaryAccessPassMethod","GET","/users/{param}/authentication/temporaryAccessPassMethods","matched","Get-MgUserAuthenticationTemporaryAccessPassMethod" +"Identity.SignIns","GetMgUserAuthenticationTemporaryAccessPassMethod.g.cs","v1.0","Get-MgUserAuthenticationTemporaryAccessPassMethod","","","dispatcher","" +"Identity.SignIns","GetMgUserAuthenticationTemporaryAccessPassMethodCount.g.cs","v1.0","Get-MgUserAuthenticationTemporaryAccessPassMethodCount","GET","/users/{param}/authentication/temporaryAccessPassMethods/$count","matched","Get-MgUserAuthenticationTemporaryAccessPassMethodCount" +"Identity.SignIns","GetMgUserAuthenticationWindowsHelloForBusinessMethod_Get.g.cs","v1.0","Get-MgUserAuthenticationWindowsHelloForBusinessMethod","GET","/users/{param}/authentication/windowsHelloForBusinessMethods/{param}","matched","Get-MgUserAuthenticationWindowsHelloForBusinessMethod" +"Identity.SignIns","GetMgUserAuthenticationWindowsHelloForBusinessMethod_List.g.cs","v1.0","Get-MgUserAuthenticationWindowsHelloForBusinessMethod","GET","/users/{param}/authentication/windowsHelloForBusinessMethods","matched","Get-MgUserAuthenticationWindowsHelloForBusinessMethod" +"Identity.SignIns","GetMgUserAuthenticationWindowsHelloForBusinessMethod.g.cs","v1.0","Get-MgUserAuthenticationWindowsHelloForBusinessMethod","","","dispatcher","" +"Identity.SignIns","GetMgUserAuthenticationWindowsHelloForBusinessMethodCount.g.cs","v1.0","Get-MgUserAuthenticationWindowsHelloForBusinessMethodCount","GET","/users/{param}/authentication/windowsHelloForBusinessMethods/$count","matched","Get-MgUserAuthenticationWindowsHelloForBusinessMethodCount" +"Identity.SignIns","GetMgUserAuthenticationWindowsHelloForBusinessMethodDevice.g.cs","v1.0","Get-MgUserAuthenticationWindowsHelloForBusinessMethodDevice","GET","/users/{param}/authentication/windowsHelloForBusinessMethods/{param}/device","matched","Get-MgUserAuthenticationWindowsHelloForBusinessMethodDevice" +"Identity.SignIns","InvokeMgIdentityApiConnectorUploadClientCertificate.g.cs","v1.0","Invoke-MgIdentityApiConnectorUploadClientCertificate","POST","/identity/apiConnectors/{param}/uploadClientCertificate","mismatch","Invoke-MgUploadIdentityApiConnectorClientCertificate" +"Identity.SignIns","InvokeMgIdentityB2xUserFlowApiConnectorConfigurationPostAttributeCollectionUploadClientCertificate.g.cs","v1.0","Invoke-MgIdentityB2xUserFlowApiConnectorConfigurationPostAttributeCollectionUploadClientCertificate","POST","/identity/b2xUserFlows/{param}/apiConnectorConfiguration/postAttributeCollection/uploadClientCertificate","mismatch","Invoke-MgUploadIdentityB2XUserFlowApiConnectorConfigurationPostAttributeCollectionClientCertificate" +"Identity.SignIns","InvokeMgIdentityB2xUserFlowApiConnectorConfigurationPostFederationSignupUploadClientCertificate.g.cs","v1.0","Invoke-MgIdentityB2xUserFlowApiConnectorConfigurationPostFederationSignupUploadClientCertificate","POST","/identity/b2xUserFlows/{param}/apiConnectorConfiguration/postFederationSignup/uploadClientCertificate","mismatch","Invoke-MgUploadIdentityB2XUserFlowApiConnectorConfigurationPostFederationSignupClientCertificate" +"Identity.SignIns","InvokeMgIdentityB2xUserFlowUserAttributeAssignmentSetOrder.g.cs","v1.0","Invoke-MgIdentityB2xUserFlowUserAttributeAssignmentSetOrder","POST","/identity/b2xUserFlows/{param}/userAttributeAssignments/setOrder","mismatch","Set-MgIdentityB2XUserFlowUserAttributeAssignmentOrder" +"Identity.SignIns","InvokeMgIdentityConditionalAccessAuthenticationStrengthPolicyUpdateAllowedCombinations.g.cs","v1.0","Invoke-MgIdentityConditionalAccessAuthenticationStrengthPolicyUpdateAllowedCombinations","POST","/identity/conditionalAccess/authenticationStrength/policies/{param}/updateAllowedCombinations","no-oracle","" +"Identity.SignIns","InvokeMgIdentityConditionalAccessDeletedItemNamedLocationRestore.g.cs","v1.0","Invoke-MgIdentityConditionalAccessDeletedItemNamedLocationRestore","POST","/identity/conditionalAccess/deletedItems/namedLocations/{param}/restore","mismatch","Restore-MgIdentityConditionalAccessDeletedItemNamedLocation" +"Identity.SignIns","InvokeMgIdentityConditionalAccessDeletedItemPolicyRestore.g.cs","v1.0","Invoke-MgIdentityConditionalAccessDeletedItemPolicyRestore","POST","/identity/conditionalAccess/deletedItems/policies/{param}/restore","mismatch","Restore-MgIdentityConditionalAccessDeletedItemPolicy" +"Identity.SignIns","InvokeMgIdentityConditionalAccessEvaluate.g.cs","v1.0","Invoke-MgIdentityConditionalAccessEvaluate","POST","/identity/conditionalAccess/evaluate","mismatch","Test-MgIdentityConditionalAccess" +"Identity.SignIns","InvokeMgIdentityConditionalAccessNamedLocationRestore.g.cs","v1.0","Invoke-MgIdentityConditionalAccessNamedLocationRestore","POST","/identity/conditionalAccess/namedLocations/{param}/restore","mismatch","Restore-MgIdentityConditionalAccessNamedLocation" +"Identity.SignIns","InvokeMgIdentityConditionalAccessPolicyRestore.g.cs","v1.0","Invoke-MgIdentityConditionalAccessPolicyRestore","POST","/identity/conditionalAccess/policies/{param}/restore","mismatch","Restore-MgIdentityConditionalAccessPolicy" +"Identity.SignIns","InvokeMgIdentityCustomAuthenticationExtensionValidateAuthenticationConfiguration.g.cs","v1.0","Invoke-MgIdentityCustomAuthenticationExtensionValidateAuthenticationConfiguration","POST","/identity/customAuthenticationExtensions/{param}/validateAuthenticationConfiguration","mismatch","Test-MgIdentityCustomAuthenticationExtensionAuthenticationConfiguration" +"Identity.SignIns","InvokeMgIdentityProtectionRiskyServicePrincipalConfirmCompromised.g.cs","v1.0","Invoke-MgIdentityProtectionRiskyServicePrincipalConfirmCompromised","POST","/identityProtection/riskyServicePrincipals/confirmCompromised","mismatch","Confirm-MgRiskyServicePrincipalCompromised" +"Identity.SignIns","InvokeMgIdentityProtectionRiskyServicePrincipalDismiss.g.cs","v1.0","Invoke-MgIdentityProtectionRiskyServicePrincipalDismiss","POST","/identityProtection/riskyServicePrincipals/dismiss","mismatch","Invoke-MgDismissRiskyServicePrincipal" +"Identity.SignIns","InvokeMgIdentityProtectionRiskyUserConfirmCompromised.g.cs","v1.0","Invoke-MgIdentityProtectionRiskyUserConfirmCompromised","POST","/identityProtection/riskyUsers/confirmCompromised","mismatch","Confirm-MgRiskyUserCompromised" +"Identity.SignIns","InvokeMgIdentityProtectionRiskyUserConfirmSafe.g.cs","v1.0","Invoke-MgIdentityProtectionRiskyUserConfirmSafe","POST","/identityProtection/riskyUsers/confirmSafe","mismatch","Confirm-MgRiskyUserSafe" +"Identity.SignIns","InvokeMgIdentityProtectionRiskyUserDismiss.g.cs","v1.0","Invoke-MgIdentityProtectionRiskyUserDismiss","POST","/identityProtection/riskyUsers/dismiss","mismatch","Invoke-MgDismissRiskyUser" +"Identity.SignIns","InvokeMgIdentityRiskPreventionWebApplicationFirewallProviderVerify.g.cs","v1.0","Invoke-MgIdentityRiskPreventionWebApplicationFirewallProviderVerify","POST","/identity/riskPrevention/webApplicationFirewallProviders/{param}/verify","mismatch","Confirm-MgIdentityRiskPreventionWebApplicationFirewallProvider" +"Identity.SignIns","InvokeMgPolicyAuthenticationStrengthPolicyUpdateAllowedCombinations.g.cs","v1.0","Invoke-MgPolicyAuthenticationStrengthPolicyUpdateAllowedCombinations","POST","/policies/authenticationStrengthPolicies/{param}/updateAllowedCombinations","mismatch","Update-MgPolicyAuthenticationStrengthPolicyAllowedCombination" +"Identity.SignIns","InvokeMgPolicyConditionalAccessPolicyRestore.g.cs","v1.0","Invoke-MgPolicyConditionalAccessPolicyRestore","POST","/policies/conditionalAccessPolicies/{param}/restore","mismatch","Restore-MgPolicyConditionalAccessPolicy" +"Identity.SignIns","InvokeMgPolicyCrossTenantAccessPolicyDefaultResetToSystemDefault.g.cs","v1.0","Invoke-MgPolicyCrossTenantAccessPolicyDefaultResetToSystemDefault","POST","/policies/crossTenantAccessPolicy/default/resetToSystemDefault","mismatch","Reset-MgPolicyCrossTenantAccessPolicyDefaultToSystemDefault" +"Identity.SignIns","InvokeMgUserAuthenticationMethodResetPassword.g.cs","v1.0","Invoke-MgUserAuthenticationMethodResetPassword","POST","/users/{param}/authentication/methods/{param}/resetPassword","mismatch","Reset-MgUserAuthenticationMethodPassword" +"Identity.SignIns","InvokeMgUserAuthenticationPhoneMethodDisableSmsSignIn.g.cs","v1.0","Invoke-MgUserAuthenticationPhoneMethodDisableSmsSignIn","POST","/users/{param}/authentication/phoneMethods/{param}/disableSmsSignIn","mismatch","Disable-MgUserAuthenticationPhoneMethodSmsSignIn" +"Identity.SignIns","InvokeMgUserAuthenticationPhoneMethodEnableSmsSignIn.g.cs","v1.0","Invoke-MgUserAuthenticationPhoneMethodEnableSmsSignIn","POST","/users/{param}/authentication/phoneMethods/{param}/enableSmsSignIn","mismatch","Enable-MgUserAuthenticationPhoneMethodSmsSignIn" +"Identity.SignIns","NewMgDataPolicyOperation.g.cs","v1.0","New-MgDataPolicyOperation","POST","/dataPolicyOperations","matched","New-MgDataPolicyOperation" +"Identity.SignIns","NewMgIdentityApiConnector.g.cs","v1.0","New-MgIdentityApiConnector","POST","/identity/apiConnectors","matched","New-MgIdentityApiConnector" +"Identity.SignIns","NewMgIdentityAuthenticationEventFlow.g.cs","v1.0","New-MgIdentityAuthenticationEventFlow","POST","/identity/authenticationEventsFlows","matched","New-MgIdentityAuthenticationEventFlow" +"Identity.SignIns","NewMgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowConditionApplicationIncludeApplication.g.cs","v1.0","New-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowConditionApplicationIncludeApplication","POST","","cast","" +"Identity.SignIns","NewMgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowOnAttributeCollectionAsOnAttributeCollectionExternalUserSelfServiceSignUpAttributeByRef.g.cs","v1.0","New-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowOnAttributeCollectionAsOnAttributeCollectionExternalUserSelfServiceSignUpAttributeByRef","POST","","cast","" +"Identity.SignIns","NewMgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowOnAuthenticationMethodLoadStartAsOnAuthenticationMethodLoadStartExternalUserSelfServiceSignUpIdentityProviderByRef.g.cs","v1.0","New-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowOnAuthenticationMethodLoadStartAsOnAuthenticationMethodLoadStartExternalUserSelfServiceSignUpIdentityProviderByRef","POST","","cast","" +"Identity.SignIns","NewMgIdentityAuthenticationEventFlowConditionApplicationIncludeApplication.g.cs","v1.0","New-MgIdentityAuthenticationEventFlowConditionApplicationIncludeApplication","POST","/identity/authenticationEventsFlows/{param}/conditions/applications/includeApplications","mismatch","New-MgIdentityAuthenticationEventFlowIncludeApplication" +"Identity.SignIns","NewMgIdentityAuthenticationEventListener.g.cs","v1.0","New-MgIdentityAuthenticationEventListener","POST","/identity/authenticationEventListeners","matched","New-MgIdentityAuthenticationEventListener" +"Identity.SignIns","NewMgIdentityB2xUserFlow.g.cs","v1.0","New-MgIdentityB2xUserFlow","POST","/identity/b2xUserFlows","mismatch","New-MgIdentityB2XUserFlow" +"Identity.SignIns","NewMgIdentityB2xUserFlowLanguage.g.cs","v1.0","New-MgIdentityB2xUserFlowLanguage","POST","/identity/b2xUserFlows/{param}/languages","mismatch","New-MgIdentityB2XUserFlowLanguage" +"Identity.SignIns","NewMgIdentityB2xUserFlowLanguageDefaultPage.g.cs","v1.0","New-MgIdentityB2xUserFlowLanguageDefaultPage","POST","/identity/b2xUserFlows/{param}/languages/{param}/defaultPages","mismatch","New-MgIdentityB2XUserFlowLanguageDefaultPage" +"Identity.SignIns","NewMgIdentityB2xUserFlowLanguageOverridePage.g.cs","v1.0","New-MgIdentityB2xUserFlowLanguageOverridePage","POST","/identity/b2xUserFlows/{param}/languages/{param}/overridesPages","mismatch","New-MgIdentityB2XUserFlowLanguageOverridePage" +"Identity.SignIns","NewMgIdentityB2xUserFlowUserAttributeAssignment.g.cs","v1.0","New-MgIdentityB2xUserFlowUserAttributeAssignment","POST","/identity/b2xUserFlows/{param}/userAttributeAssignments","mismatch","New-MgIdentityB2XUserFlowUserAttributeAssignment" +"Identity.SignIns","NewMgIdentityB2xUserFlowUserFlowIdentityProviderByRef.g.cs","v1.0","New-MgIdentityB2xUserFlowUserFlowIdentityProviderByRef","POST","/identity/b2xUserFlows/{param}/userFlowIdentityProviders/$ref","mismatch","New-MgIdentityB2XUserFlowIdentityProviderByRef" +"Identity.SignIns","NewMgIdentityConditionalAccessAuthenticationContextClassReference.g.cs","v1.0","New-MgIdentityConditionalAccessAuthenticationContextClassReference","POST","/identity/conditionalAccess/authenticationContextClassReferences","matched","New-MgIdentityConditionalAccessAuthenticationContextClassReference" +"Identity.SignIns","NewMgIdentityConditionalAccessAuthenticationStrengthAuthenticationMethodMode.g.cs","v1.0","New-MgIdentityConditionalAccessAuthenticationStrengthAuthenticationMethodMode","POST","/identity/conditionalAccess/authenticationStrength/authenticationMethodModes","no-oracle","" +"Identity.SignIns","NewMgIdentityConditionalAccessAuthenticationStrengthPolicy.g.cs","v1.0","New-MgIdentityConditionalAccessAuthenticationStrengthPolicy","POST","/identity/conditionalAccess/authenticationStrength/policies","no-oracle","" +"Identity.SignIns","NewMgIdentityConditionalAccessAuthenticationStrengthPolicyCombinationConfiguration.g.cs","v1.0","New-MgIdentityConditionalAccessAuthenticationStrengthPolicyCombinationConfiguration","POST","/identity/conditionalAccess/authenticationStrength/policies/{param}/combinationConfigurations","matched","New-MgIdentityConditionalAccessAuthenticationStrengthPolicyCombinationConfiguration" +"Identity.SignIns","NewMgIdentityConditionalAccessDeletedItemNamedLocation.g.cs","v1.0","New-MgIdentityConditionalAccessDeletedItemNamedLocation","POST","/identity/conditionalAccess/deletedItems/namedLocations","matched","New-MgIdentityConditionalAccessDeletedItemNamedLocation" +"Identity.SignIns","NewMgIdentityConditionalAccessDeletedItemPolicy.g.cs","v1.0","New-MgIdentityConditionalAccessDeletedItemPolicy","POST","/identity/conditionalAccess/deletedItems/policies","matched","New-MgIdentityConditionalAccessDeletedItemPolicy" +"Identity.SignIns","NewMgIdentityConditionalAccessNamedLocation.g.cs","v1.0","New-MgIdentityConditionalAccessNamedLocation","POST","/identity/conditionalAccess/namedLocations","matched","New-MgIdentityConditionalAccessNamedLocation" +"Identity.SignIns","NewMgIdentityConditionalAccessPolicy.g.cs","v1.0","New-MgIdentityConditionalAccessPolicy","POST","/identity/conditionalAccess/policies","matched","New-MgIdentityConditionalAccessPolicy" +"Identity.SignIns","NewMgIdentityCustomAuthenticationExtension.g.cs","v1.0","New-MgIdentityCustomAuthenticationExtension","POST","/identity/customAuthenticationExtensions","matched","New-MgIdentityCustomAuthenticationExtension" +"Identity.SignIns","NewMgIdentityProtectionRiskDetection.g.cs","v1.0","New-MgIdentityProtectionRiskDetection","POST","/identityProtection/riskDetections","mismatch","New-MgRiskDetection" +"Identity.SignIns","NewMgIdentityProtectionRiskyServicePrincipal.g.cs","v1.0","New-MgIdentityProtectionRiskyServicePrincipal","POST","/identityProtection/riskyServicePrincipals","mismatch","New-MgRiskyServicePrincipal" +"Identity.SignIns","NewMgIdentityProtectionRiskyServicePrincipalHistory.g.cs","v1.0","New-MgIdentityProtectionRiskyServicePrincipalHistory","POST","/identityProtection/riskyServicePrincipals/{param}/history","mismatch","New-MgRiskyServicePrincipalHistory" +"Identity.SignIns","NewMgIdentityProtectionRiskyUser.g.cs","v1.0","New-MgIdentityProtectionRiskyUser","POST","/identityProtection/riskyUsers","mismatch","New-MgRiskyUser" +"Identity.SignIns","NewMgIdentityProtectionRiskyUserHistory.g.cs","v1.0","New-MgIdentityProtectionRiskyUserHistory","POST","/identityProtection/riskyUsers/{param}/history","mismatch","New-MgRiskyUserHistory" +"Identity.SignIns","NewMgIdentityProtectionServicePrincipalRiskDetection.g.cs","v1.0","New-MgIdentityProtectionServicePrincipalRiskDetection","POST","/identityProtection/servicePrincipalRiskDetections","mismatch","New-MgServicePrincipalRiskDetection" +"Identity.SignIns","NewMgIdentityProvider.g.cs","v1.0","New-MgIdentityProvider","POST","/identity/identityProviders","matched","New-MgIdentityProvider" +"Identity.SignIns","NewMgIdentityRiskPreventionFraudProtectionProvider.g.cs","v1.0","New-MgIdentityRiskPreventionFraudProtectionProvider","POST","/identity/riskPrevention/fraudProtectionProviders","matched","New-MgIdentityRiskPreventionFraudProtectionProvider" +"Identity.SignIns","NewMgIdentityRiskPreventionWebApplicationFirewallProvider.g.cs","v1.0","New-MgIdentityRiskPreventionWebApplicationFirewallProvider","POST","/identity/riskPrevention/webApplicationFirewallProviders","matched","New-MgIdentityRiskPreventionWebApplicationFirewallProvider" +"Identity.SignIns","NewMgIdentityRiskPreventionWebApplicationFirewallVerification.g.cs","v1.0","New-MgIdentityRiskPreventionWebApplicationFirewallVerification","POST","/identity/riskPrevention/webApplicationFirewallVerifications","matched","New-MgIdentityRiskPreventionWebApplicationFirewallVerification" +"Identity.SignIns","NewMgIdentityUserFlowAttribute.g.cs","v1.0","New-MgIdentityUserFlowAttribute","POST","/identity/userFlowAttributes","matched","New-MgIdentityUserFlowAttribute" +"Identity.SignIns","NewMgIdentityVerifiedIdProfile.g.cs","v1.0","New-MgIdentityVerifiedIdProfile","POST","/identity/verifiedId/profiles","matched","New-MgIdentityVerifiedIdProfile" +"Identity.SignIns","NewMgInformationProtectionThreatAssessmentRequest.g.cs","v1.0","New-MgInformationProtectionThreatAssessmentRequest","POST","/informationProtection/threatAssessmentRequests","matched","New-MgInformationProtectionThreatAssessmentRequest" +"Identity.SignIns","NewMgInformationProtectionThreatAssessmentRequestResult.g.cs","v1.0","New-MgInformationProtectionThreatAssessmentRequestResult","POST","/informationProtection/threatAssessmentRequests/{param}/results","matched","New-MgInformationProtectionThreatAssessmentRequestResult" +"Identity.SignIns","NewMgInvitation.g.cs","v1.0","New-MgInvitation","POST","/invitations","matched","New-MgInvitation" +"Identity.SignIns","NewMgOauth2PermissionGrant.g.cs","v1.0","New-MgOauth2PermissionGrant","POST","/oauth2PermissionGrants","matched","New-MgOauth2PermissionGrant" +"Identity.SignIns","NewMgOrganizationCertificateBasedAuthConfiguration.g.cs","v1.0","New-MgOrganizationCertificateBasedAuthConfiguration","POST","/organization/{param}/certificateBasedAuthConfiguration","matched","New-MgOrganizationCertificateBasedAuthConfiguration" +"Identity.SignIns","NewMgPolicyActivityBasedTimeoutPolicy.g.cs","v1.0","New-MgPolicyActivityBasedTimeoutPolicy","POST","/policies/activityBasedTimeoutPolicies","matched","New-MgPolicyActivityBasedTimeoutPolicy" +"Identity.SignIns","NewMgPolicyAppManagementPolicy.g.cs","v1.0","New-MgPolicyAppManagementPolicy","POST","/policies/appManagementPolicies","matched","New-MgPolicyAppManagementPolicy" +"Identity.SignIns","NewMgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration.g.cs","v1.0","New-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration","POST","/policies/authenticationMethodsPolicy/authenticationMethodConfigurations","matched","New-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration" +"Identity.SignIns","NewMgPolicyAuthenticationStrengthPolicy.g.cs","v1.0","New-MgPolicyAuthenticationStrengthPolicy","POST","/policies/authenticationStrengthPolicies","matched","New-MgPolicyAuthenticationStrengthPolicy" +"Identity.SignIns","NewMgPolicyAuthenticationStrengthPolicyCombinationConfiguration.g.cs","v1.0","New-MgPolicyAuthenticationStrengthPolicyCombinationConfiguration","POST","/policies/authenticationStrengthPolicies/{param}/combinationConfigurations","matched","New-MgPolicyAuthenticationStrengthPolicyCombinationConfiguration" +"Identity.SignIns","NewMgPolicyClaimMappingPolicy.g.cs","v1.0","New-MgPolicyClaimMappingPolicy","POST","/policies/claimsMappingPolicies","matched","New-MgPolicyClaimMappingPolicy" +"Identity.SignIns","NewMgPolicyConditionalAccessPolicy.g.cs","v1.0","New-MgPolicyConditionalAccessPolicy","POST","/policies/conditionalAccessPolicies","no-oracle","" +"Identity.SignIns","NewMgPolicyCrossTenantAccessPolicyPartner.g.cs","v1.0","New-MgPolicyCrossTenantAccessPolicyPartner","POST","/policies/crossTenantAccessPolicy/partners","matched","New-MgPolicyCrossTenantAccessPolicyPartner" +"Identity.SignIns","NewMgPolicyFeatureRolloutPolicy.g.cs","v1.0","New-MgPolicyFeatureRolloutPolicy","POST","/policies/featureRolloutPolicies","matched","New-MgPolicyFeatureRolloutPolicy" +"Identity.SignIns","NewMgPolicyFeatureRolloutPolicyApplyTo.g.cs","v1.0","New-MgPolicyFeatureRolloutPolicyApplyTo","POST","/policies/featureRolloutPolicies/{param}/appliesTo","matched","New-MgPolicyFeatureRolloutPolicyApplyTo" +"Identity.SignIns","NewMgPolicyFeatureRolloutPolicyApplyToByRef.g.cs","v1.0","New-MgPolicyFeatureRolloutPolicyApplyToByRef","POST","/policies/featureRolloutPolicies/{param}/appliesTo/$ref","matched","New-MgPolicyFeatureRolloutPolicyApplyToByRef" +"Identity.SignIns","NewMgPolicyHomeRealmDiscoveryPolicy.g.cs","v1.0","New-MgPolicyHomeRealmDiscoveryPolicy","POST","/policies/homeRealmDiscoveryPolicies","matched","New-MgPolicyHomeRealmDiscoveryPolicy" +"Identity.SignIns","NewMgPolicyPermissionGrantPolicy.g.cs","v1.0","New-MgPolicyPermissionGrantPolicy","POST","/policies/permissionGrantPolicies","matched","New-MgPolicyPermissionGrantPolicy" +"Identity.SignIns","NewMgPolicyPermissionGrantPolicyExclude.g.cs","v1.0","New-MgPolicyPermissionGrantPolicyExclude","POST","/policies/permissionGrantPolicies/{param}/excludes","matched","New-MgPolicyPermissionGrantPolicyExclude" +"Identity.SignIns","NewMgPolicyPermissionGrantPolicyInclude.g.cs","v1.0","New-MgPolicyPermissionGrantPolicyInclude","POST","/policies/permissionGrantPolicies/{param}/includes","matched","New-MgPolicyPermissionGrantPolicyInclude" +"Identity.SignIns","NewMgPolicyRoleManagementPolicy.g.cs","v1.0","New-MgPolicyRoleManagementPolicy","POST","/policies/roleManagementPolicies","matched","New-MgPolicyRoleManagementPolicy" +"Identity.SignIns","NewMgPolicyRoleManagementPolicyAssignment.g.cs","v1.0","New-MgPolicyRoleManagementPolicyAssignment","POST","/policies/roleManagementPolicyAssignments","matched","New-MgPolicyRoleManagementPolicyAssignment" +"Identity.SignIns","NewMgPolicyRoleManagementPolicyEffectiveRule.g.cs","v1.0","New-MgPolicyRoleManagementPolicyEffectiveRule","POST","/policies/roleManagementPolicies/{param}/effectiveRules","matched","New-MgPolicyRoleManagementPolicyEffectiveRule" +"Identity.SignIns","NewMgPolicyRoleManagementPolicyRule.g.cs","v1.0","New-MgPolicyRoleManagementPolicyRule","POST","/policies/roleManagementPolicies/{param}/rules","matched","New-MgPolicyRoleManagementPolicyRule" +"Identity.SignIns","NewMgPolicyTokenIssuancePolicy.g.cs","v1.0","New-MgPolicyTokenIssuancePolicy","POST","/policies/tokenIssuancePolicies","matched","New-MgPolicyTokenIssuancePolicy" +"Identity.SignIns","NewMgPolicyTokenLifetimePolicy.g.cs","v1.0","New-MgPolicyTokenLifetimePolicy","POST","/policies/tokenLifetimePolicies","matched","New-MgPolicyTokenLifetimePolicy" +"Identity.SignIns","NewMgTenantRelationshipMultiTenantOrganizationTenant.g.cs","v1.0","New-MgTenantRelationshipMultiTenantOrganizationTenant","POST","/tenantRelationships/multiTenantOrganization/tenants","matched","New-MgTenantRelationshipMultiTenantOrganizationTenant" +"Identity.SignIns","NewMgUserAuthenticationEmailMethod.g.cs","v1.0","New-MgUserAuthenticationEmailMethod","POST","/users/{param}/authentication/emailMethods","matched","New-MgUserAuthenticationEmailMethod" +"Identity.SignIns","NewMgUserAuthenticationExternalAuthenticationMethod.g.cs","v1.0","New-MgUserAuthenticationExternalAuthenticationMethod","POST","/users/{param}/authentication/externalAuthenticationMethods","matched","New-MgUserAuthenticationExternalAuthenticationMethod" +"Identity.SignIns","NewMgUserAuthenticationMethod.g.cs","v1.0","New-MgUserAuthenticationMethod","POST","/users/{param}/authentication/methods","matched","New-MgUserAuthenticationMethod" +"Identity.SignIns","NewMgUserAuthenticationOperation.g.cs","v1.0","New-MgUserAuthenticationOperation","POST","/users/{param}/authentication/operations","matched","New-MgUserAuthenticationOperation" +"Identity.SignIns","NewMgUserAuthenticationPasswordMethod.g.cs","v1.0","New-MgUserAuthenticationPasswordMethod","POST","/users/{param}/authentication/passwordMethods","no-oracle","" +"Identity.SignIns","NewMgUserAuthenticationPhoneMethod.g.cs","v1.0","New-MgUserAuthenticationPhoneMethod","POST","/users/{param}/authentication/phoneMethods","matched","New-MgUserAuthenticationPhoneMethod" +"Identity.SignIns","NewMgUserAuthenticationTemporaryAccessPassMethod.g.cs","v1.0","New-MgUserAuthenticationTemporaryAccessPassMethod","POST","/users/{param}/authentication/temporaryAccessPassMethods","matched","New-MgUserAuthenticationTemporaryAccessPassMethod" +"Identity.SignIns","RemoveMgDataPolicyOperation.g.cs","v1.0","Remove-MgDataPolicyOperation","DELETE","/dataPolicyOperations/{param}","matched","Remove-MgDataPolicyOperation" +"Identity.SignIns","RemoveMgIdentityApiConnector.g.cs","v1.0","Remove-MgIdentityApiConnector","DELETE","/identity/apiConnectors/{param}","matched","Remove-MgIdentityApiConnector" +"Identity.SignIns","RemoveMgIdentityAuthenticationEventFlow.g.cs","v1.0","Remove-MgIdentityAuthenticationEventFlow","DELETE","/identity/authenticationEventsFlows/{param}","matched","Remove-MgIdentityAuthenticationEventFlow" +"Identity.SignIns","RemoveMgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowConditionApplicationIncludeApplication.g.cs","v1.0","Remove-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowConditionApplicationIncludeApplication","DELETE","","cast","" +"Identity.SignIns","RemoveMgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowOnAttributeCollectionAsOnAttributeCollectionExternalUserSelfServiceSignUpAttributeByRef.g.cs","v1.0","Remove-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowOnAttributeCollectionAsOnAttributeCollectionExternalUserSelfServiceSignUpAttributeByRef","DELETE","","cast","" +"Identity.SignIns","RemoveMgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowOnAuthenticationMethodLoadStartAsOnAuthenticationMethodLoadStartExternalUserSelfServiceSignUpIdentityProviderByRef.g.cs","v1.0","Remove-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowOnAuthenticationMethodLoadStartAsOnAuthenticationMethodLoadStartExternalUserSelfServiceSignUpIdentityProviderByRef","DELETE","","cast","" +"Identity.SignIns","RemoveMgIdentityAuthenticationEventFlowConditionApplicationIncludeApplication.g.cs","v1.0","Remove-MgIdentityAuthenticationEventFlowConditionApplicationIncludeApplication","DELETE","/identity/authenticationEventsFlows/{param}/conditions/applications/includeApplications/{param}","mismatch","Remove-MgIdentityAuthenticationEventFlowIncludeApplication" +"Identity.SignIns","RemoveMgIdentityAuthenticationEventListener.g.cs","v1.0","Remove-MgIdentityAuthenticationEventListener","DELETE","/identity/authenticationEventListeners/{param}","matched","Remove-MgIdentityAuthenticationEventListener" +"Identity.SignIns","RemoveMgIdentityB2xUserFlow.g.cs","v1.0","Remove-MgIdentityB2xUserFlow","DELETE","/identity/b2xUserFlows/{param}","mismatch","Remove-MgIdentityB2XUserFlow" +"Identity.SignIns","RemoveMgIdentityB2xUserFlowApiConnectorConfigurationPostAttributeCollection.g.cs","v1.0","Remove-MgIdentityB2xUserFlowApiConnectorConfigurationPostAttributeCollection","DELETE","/identity/b2xUserFlows/{param}/apiConnectorConfiguration/postAttributeCollection","mismatch","Remove-MgIdentityB2XUserFlowPostAttributeCollection" +"Identity.SignIns","RemoveMgIdentityB2xUserFlowApiConnectorConfigurationPostAttributeCollectionByRef.g.cs","v1.0","Remove-MgIdentityB2xUserFlowApiConnectorConfigurationPostAttributeCollectionByRef","DELETE","/identity/b2xUserFlows/{param}/apiConnectorConfiguration/postAttributeCollection/$ref","mismatch","Remove-MgIdentityB2XUserFlowPostAttributeCollectionByRef" +"Identity.SignIns","RemoveMgIdentityB2xUserFlowApiConnectorConfigurationPostFederationSignup.g.cs","v1.0","Remove-MgIdentityB2xUserFlowApiConnectorConfigurationPostFederationSignup","DELETE","/identity/b2xUserFlows/{param}/apiConnectorConfiguration/postFederationSignup","mismatch","Remove-MgIdentityB2XUserFlowPostFederationSignup" +"Identity.SignIns","RemoveMgIdentityB2xUserFlowApiConnectorConfigurationPostFederationSignupByRef.g.cs","v1.0","Remove-MgIdentityB2xUserFlowApiConnectorConfigurationPostFederationSignupByRef","DELETE","/identity/b2xUserFlows/{param}/apiConnectorConfiguration/postFederationSignup/$ref","mismatch","Remove-MgIdentityB2XUserFlowPostFederationSignupByRef" +"Identity.SignIns","RemoveMgIdentityB2xUserFlowLanguage.g.cs","v1.0","Remove-MgIdentityB2xUserFlowLanguage","DELETE","/identity/b2xUserFlows/{param}/languages/{param}","mismatch","Remove-MgIdentityB2XUserFlowLanguage" +"Identity.SignIns","RemoveMgIdentityB2xUserFlowLanguageDefaultPage.g.cs","v1.0","Remove-MgIdentityB2xUserFlowLanguageDefaultPage","DELETE","/identity/b2xUserFlows/{param}/languages/{param}/defaultPages/{param}","mismatch","Remove-MgIdentityB2XUserFlowLanguageDefaultPage" +"Identity.SignIns","RemoveMgIdentityB2xUserFlowLanguageDefaultPageContent.g.cs","v1.0","Remove-MgIdentityB2xUserFlowLanguageDefaultPageContent","DELETE","/identity/b2xUserFlows/{param}/languages/{param}/defaultPages/{param}/$value","mismatch","Remove-MgIdentityB2XUserFlowLanguageDefaultPageContent" +"Identity.SignIns","RemoveMgIdentityB2xUserFlowLanguageOverridePage.g.cs","v1.0","Remove-MgIdentityB2xUserFlowLanguageOverridePage","DELETE","/identity/b2xUserFlows/{param}/languages/{param}/overridesPages/{param}","mismatch","Remove-MgIdentityB2XUserFlowLanguageOverridePage" +"Identity.SignIns","RemoveMgIdentityB2xUserFlowLanguageOverridePageContent.g.cs","v1.0","Remove-MgIdentityB2xUserFlowLanguageOverridePageContent","DELETE","/identity/b2xUserFlows/{param}/languages/{param}/overridesPages/{param}/$value","mismatch","Remove-MgIdentityB2XUserFlowLanguageOverridePageContent" +"Identity.SignIns","RemoveMgIdentityB2xUserFlowUserAttributeAssignment.g.cs","v1.0","Remove-MgIdentityB2xUserFlowUserAttributeAssignment","DELETE","/identity/b2xUserFlows/{param}/userAttributeAssignments/{param}","mismatch","Remove-MgIdentityB2XUserFlowUserAttributeAssignment" +"Identity.SignIns","RemoveMgIdentityB2xUserFlowUserFlowIdentityProviderByRef.g.cs","v1.0","Remove-MgIdentityB2xUserFlowUserFlowIdentityProviderByRef","DELETE","/identity/b2xUserFlows/{param}/userFlowIdentityProviders/{param}/$ref","mismatch","Remove-MgIdentityB2XUserFlowIdentityProviderBaseByRef" +"Identity.SignIns","RemoveMgIdentityConditionalAccessAuthenticationContextClassReference.g.cs","v1.0","Remove-MgIdentityConditionalAccessAuthenticationContextClassReference","DELETE","/identity/conditionalAccess/authenticationContextClassReferences/{param}","matched","Remove-MgIdentityConditionalAccessAuthenticationContextClassReference" +"Identity.SignIns","RemoveMgIdentityConditionalAccessAuthenticationStrength.g.cs","v1.0","Remove-MgIdentityConditionalAccessAuthenticationStrength","DELETE","/identity/conditionalAccess/authenticationStrength","no-oracle","" +"Identity.SignIns","RemoveMgIdentityConditionalAccessAuthenticationStrengthAuthenticationMethodMode.g.cs","v1.0","Remove-MgIdentityConditionalAccessAuthenticationStrengthAuthenticationMethodMode","DELETE","/identity/conditionalAccess/authenticationStrength/authenticationMethodModes/{param}","no-oracle","" +"Identity.SignIns","RemoveMgIdentityConditionalAccessAuthenticationStrengthPolicy.g.cs","v1.0","Remove-MgIdentityConditionalAccessAuthenticationStrengthPolicy","DELETE","/identity/conditionalAccess/authenticationStrength/policies/{param}","no-oracle","" +"Identity.SignIns","RemoveMgIdentityConditionalAccessAuthenticationStrengthPolicyCombinationConfiguration.g.cs","v1.0","Remove-MgIdentityConditionalAccessAuthenticationStrengthPolicyCombinationConfiguration","DELETE","/identity/conditionalAccess/authenticationStrength/policies/{param}/combinationConfigurations/{param}","no-oracle","" +"Identity.SignIns","RemoveMgIdentityConditionalAccessDeletedItem.g.cs","v1.0","Remove-MgIdentityConditionalAccessDeletedItem","DELETE","/identity/conditionalAccess/deletedItems","matched","Remove-MgIdentityConditionalAccessDeletedItem" +"Identity.SignIns","RemoveMgIdentityConditionalAccessDeletedItemNamedLocation.g.cs","v1.0","Remove-MgIdentityConditionalAccessDeletedItemNamedLocation","DELETE","/identity/conditionalAccess/deletedItems/namedLocations/{param}","matched","Remove-MgIdentityConditionalAccessDeletedItemNamedLocation" +"Identity.SignIns","RemoveMgIdentityConditionalAccessDeletedItemPolicy.g.cs","v1.0","Remove-MgIdentityConditionalAccessDeletedItemPolicy","DELETE","/identity/conditionalAccess/deletedItems/policies/{param}","matched","Remove-MgIdentityConditionalAccessDeletedItemPolicy" +"Identity.SignIns","RemoveMgIdentityConditionalAccessNamedLocation.g.cs","v1.0","Remove-MgIdentityConditionalAccessNamedLocation","DELETE","/identity/conditionalAccess/namedLocations/{param}","matched","Remove-MgIdentityConditionalAccessNamedLocation" +"Identity.SignIns","RemoveMgIdentityConditionalAccessPolicy.g.cs","v1.0","Remove-MgIdentityConditionalAccessPolicy","DELETE","/identity/conditionalAccess/policies/{param}","matched","Remove-MgIdentityConditionalAccessPolicy" +"Identity.SignIns","RemoveMgIdentityCustomAuthenticationExtension.g.cs","v1.0","Remove-MgIdentityCustomAuthenticationExtension","DELETE","/identity/customAuthenticationExtensions/{param}","matched","Remove-MgIdentityCustomAuthenticationExtension" +"Identity.SignIns","RemoveMgIdentityProtectionRiskDetection.g.cs","v1.0","Remove-MgIdentityProtectionRiskDetection","DELETE","/identityProtection/riskDetections/{param}","mismatch","Remove-MgRiskDetection" +"Identity.SignIns","RemoveMgIdentityProtectionRiskyServicePrincipal.g.cs","v1.0","Remove-MgIdentityProtectionRiskyServicePrincipal","DELETE","/identityProtection/riskyServicePrincipals/{param}","mismatch","Remove-MgRiskyServicePrincipal" +"Identity.SignIns","RemoveMgIdentityProtectionRiskyServicePrincipalHistory.g.cs","v1.0","Remove-MgIdentityProtectionRiskyServicePrincipalHistory","DELETE","/identityProtection/riskyServicePrincipals/{param}/history/{param}","mismatch","Remove-MgRiskyServicePrincipalHistory" +"Identity.SignIns","RemoveMgIdentityProtectionRiskyUser.g.cs","v1.0","Remove-MgIdentityProtectionRiskyUser","DELETE","/identityProtection/riskyUsers/{param}","mismatch","Remove-MgRiskyUser" +"Identity.SignIns","RemoveMgIdentityProtectionRiskyUserHistory.g.cs","v1.0","Remove-MgIdentityProtectionRiskyUserHistory","DELETE","/identityProtection/riskyUsers/{param}/history/{param}","mismatch","Remove-MgRiskyUserHistory" +"Identity.SignIns","RemoveMgIdentityProtectionServicePrincipalRiskDetection.g.cs","v1.0","Remove-MgIdentityProtectionServicePrincipalRiskDetection","DELETE","/identityProtection/servicePrincipalRiskDetections/{param}","mismatch","Remove-MgServicePrincipalRiskDetection" +"Identity.SignIns","RemoveMgIdentityProvider.g.cs","v1.0","Remove-MgIdentityProvider","DELETE","/identity/identityProviders/{param}","matched","Remove-MgIdentityProvider" +"Identity.SignIns","RemoveMgIdentityRiskPrevention.g.cs","v1.0","Remove-MgIdentityRiskPrevention","DELETE","/identity/riskPrevention","matched","Remove-MgIdentityRiskPrevention" +"Identity.SignIns","RemoveMgIdentityRiskPreventionFraudProtectionProvider.g.cs","v1.0","Remove-MgIdentityRiskPreventionFraudProtectionProvider","DELETE","/identity/riskPrevention/fraudProtectionProviders/{param}","matched","Remove-MgIdentityRiskPreventionFraudProtectionProvider" +"Identity.SignIns","RemoveMgIdentityRiskPreventionWebApplicationFirewallProvider.g.cs","v1.0","Remove-MgIdentityRiskPreventionWebApplicationFirewallProvider","DELETE","/identity/riskPrevention/webApplicationFirewallProviders/{param}","matched","Remove-MgIdentityRiskPreventionWebApplicationFirewallProvider" +"Identity.SignIns","RemoveMgIdentityRiskPreventionWebApplicationFirewallVerification.g.cs","v1.0","Remove-MgIdentityRiskPreventionWebApplicationFirewallVerification","DELETE","/identity/riskPrevention/webApplicationFirewallVerifications/{param}","matched","Remove-MgIdentityRiskPreventionWebApplicationFirewallVerification" +"Identity.SignIns","RemoveMgIdentityUserFlowAttribute.g.cs","v1.0","Remove-MgIdentityUserFlowAttribute","DELETE","/identity/userFlowAttributes/{param}","matched","Remove-MgIdentityUserFlowAttribute" +"Identity.SignIns","RemoveMgIdentityVerifiedId.g.cs","v1.0","Remove-MgIdentityVerifiedId","DELETE","/identity/verifiedId","matched","Remove-MgIdentityVerifiedId" +"Identity.SignIns","RemoveMgIdentityVerifiedIdProfile.g.cs","v1.0","Remove-MgIdentityVerifiedIdProfile","DELETE","/identity/verifiedId/profiles/{param}","matched","Remove-MgIdentityVerifiedIdProfile" +"Identity.SignIns","RemoveMgInformationProtectionThreatAssessmentRequest.g.cs","v1.0","Remove-MgInformationProtectionThreatAssessmentRequest","DELETE","/informationProtection/threatAssessmentRequests/{param}","matched","Remove-MgInformationProtectionThreatAssessmentRequest" +"Identity.SignIns","RemoveMgInformationProtectionThreatAssessmentRequestResult.g.cs","v1.0","Remove-MgInformationProtectionThreatAssessmentRequestResult","DELETE","/informationProtection/threatAssessmentRequests/{param}/results/{param}","matched","Remove-MgInformationProtectionThreatAssessmentRequestResult" +"Identity.SignIns","RemoveMgOauth2PermissionGrant.g.cs","v1.0","Remove-MgOauth2PermissionGrant","DELETE","/oauth2PermissionGrants/{param}","matched","Remove-MgOauth2PermissionGrant" +"Identity.SignIns","RemoveMgOrganizationCertificateBasedAuthConfiguration.g.cs","v1.0","Remove-MgOrganizationCertificateBasedAuthConfiguration","DELETE","/organization/{param}/certificateBasedAuthConfiguration/{param}","matched","Remove-MgOrganizationCertificateBasedAuthConfiguration" +"Identity.SignIns","RemoveMgPolicyActivityBasedTimeoutPolicy.g.cs","v1.0","Remove-MgPolicyActivityBasedTimeoutPolicy","DELETE","/policies/activityBasedTimeoutPolicies/{param}","matched","Remove-MgPolicyActivityBasedTimeoutPolicy" +"Identity.SignIns","RemoveMgPolicyAdminConsentRequestPolicy.g.cs","v1.0","Remove-MgPolicyAdminConsentRequestPolicy","DELETE","/policies/adminConsentRequestPolicy","matched","Remove-MgPolicyAdminConsentRequestPolicy" +"Identity.SignIns","RemoveMgPolicyAppManagementPolicy.g.cs","v1.0","Remove-MgPolicyAppManagementPolicy","DELETE","/policies/appManagementPolicies/{param}","matched","Remove-MgPolicyAppManagementPolicy" +"Identity.SignIns","RemoveMgPolicyAuthenticationFlowPolicy.g.cs","v1.0","Remove-MgPolicyAuthenticationFlowPolicy","DELETE","/policies/authenticationFlowsPolicy","matched","Remove-MgPolicyAuthenticationFlowPolicy" +"Identity.SignIns","RemoveMgPolicyAuthenticationMethodPolicy.g.cs","v1.0","Remove-MgPolicyAuthenticationMethodPolicy","DELETE","/policies/authenticationMethodsPolicy","matched","Remove-MgPolicyAuthenticationMethodPolicy" +"Identity.SignIns","RemoveMgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration.g.cs","v1.0","Remove-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration","DELETE","/policies/authenticationMethodsPolicy/authenticationMethodConfigurations/{param}","matched","Remove-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration" +"Identity.SignIns","RemoveMgPolicyAuthenticationStrengthPolicy.g.cs","v1.0","Remove-MgPolicyAuthenticationStrengthPolicy","DELETE","/policies/authenticationStrengthPolicies/{param}","matched","Remove-MgPolicyAuthenticationStrengthPolicy" +"Identity.SignIns","RemoveMgPolicyAuthenticationStrengthPolicyCombinationConfiguration.g.cs","v1.0","Remove-MgPolicyAuthenticationStrengthPolicyCombinationConfiguration","DELETE","/policies/authenticationStrengthPolicies/{param}/combinationConfigurations/{param}","matched","Remove-MgPolicyAuthenticationStrengthPolicyCombinationConfiguration" +"Identity.SignIns","RemoveMgPolicyAuthorizationPolicy.g.cs","v1.0","Remove-MgPolicyAuthorizationPolicy","DELETE","/policies/authorizationPolicy","matched","Remove-MgPolicyAuthorizationPolicy" +"Identity.SignIns","RemoveMgPolicyClaimMappingPolicy.g.cs","v1.0","Remove-MgPolicyClaimMappingPolicy","DELETE","/policies/claimsMappingPolicies/{param}","matched","Remove-MgPolicyClaimMappingPolicy" +"Identity.SignIns","RemoveMgPolicyConditionalAccessPolicy.g.cs","v1.0","Remove-MgPolicyConditionalAccessPolicy","DELETE","/policies/conditionalAccessPolicies/{param}","no-oracle","" +"Identity.SignIns","RemoveMgPolicyCrossTenantAccessPolicy.g.cs","v1.0","Remove-MgPolicyCrossTenantAccessPolicy","DELETE","/policies/crossTenantAccessPolicy","matched","Remove-MgPolicyCrossTenantAccessPolicy" +"Identity.SignIns","RemoveMgPolicyCrossTenantAccessPolicyDefault.g.cs","v1.0","Remove-MgPolicyCrossTenantAccessPolicyDefault","DELETE","/policies/crossTenantAccessPolicy/default","matched","Remove-MgPolicyCrossTenantAccessPolicyDefault" +"Identity.SignIns","RemoveMgPolicyCrossTenantAccessPolicyPartner.g.cs","v1.0","Remove-MgPolicyCrossTenantAccessPolicyPartner","DELETE","/policies/crossTenantAccessPolicy/partners/{param}","matched","Remove-MgPolicyCrossTenantAccessPolicyPartner" +"Identity.SignIns","RemoveMgPolicyCrossTenantAccessPolicyPartnerIdentitySynchronization.g.cs","v1.0","Remove-MgPolicyCrossTenantAccessPolicyPartnerIdentitySynchronization","DELETE","/policies/crossTenantAccessPolicy/partners/{param}/identitySynchronization","matched","Remove-MgPolicyCrossTenantAccessPolicyPartnerIdentitySynchronization" +"Identity.SignIns","RemoveMgPolicyCrossTenantAccessPolicyTemplate.g.cs","v1.0","Remove-MgPolicyCrossTenantAccessPolicyTemplate","DELETE","/policies/crossTenantAccessPolicy/templates","matched","Remove-MgPolicyCrossTenantAccessPolicyTemplate" +"Identity.SignIns","RemoveMgPolicyCrossTenantAccessPolicyTemplateMultiTenantOrganizationIdentitySynchronization.g.cs","v1.0","Remove-MgPolicyCrossTenantAccessPolicyTemplateMultiTenantOrganizationIdentitySynchronization","DELETE","/policies/crossTenantAccessPolicy/templates/multiTenantOrganizationIdentitySynchronization","matched","Remove-MgPolicyCrossTenantAccessPolicyTemplateMultiTenantOrganizationIdentitySynchronization" +"Identity.SignIns","RemoveMgPolicyCrossTenantAccessPolicyTemplateMultiTenantOrganizationPartnerConfiguration.g.cs","v1.0","Remove-MgPolicyCrossTenantAccessPolicyTemplateMultiTenantOrganizationPartnerConfiguration","DELETE","/policies/crossTenantAccessPolicy/templates/multiTenantOrganizationPartnerConfiguration","matched","Remove-MgPolicyCrossTenantAccessPolicyTemplateMultiTenantOrganizationPartnerConfiguration" +"Identity.SignIns","RemoveMgPolicyDefaultAppManagementPolicy.g.cs","v1.0","Remove-MgPolicyDefaultAppManagementPolicy","DELETE","/policies/defaultAppManagementPolicy","matched","Remove-MgPolicyDefaultAppManagementPolicy" +"Identity.SignIns","RemoveMgPolicyFeatureRolloutPolicy.g.cs","v1.0","Remove-MgPolicyFeatureRolloutPolicy","DELETE","/policies/featureRolloutPolicies/{param}","matched","Remove-MgPolicyFeatureRolloutPolicy" +"Identity.SignIns","RemoveMgPolicyFeatureRolloutPolicyApplyToByRef.g.cs","v1.0","Remove-MgPolicyFeatureRolloutPolicyApplyToByRef","DELETE","/policies/featureRolloutPolicies/{param}/appliesTo/{param}/$ref","mismatch","Remove-MgPolicyFeatureRolloutPolicyApplyToDirectoryObjectByRef" +"Identity.SignIns","RemoveMgPolicyFederatedTokenValidationPolicy.g.cs","v1.0","Remove-MgPolicyFederatedTokenValidationPolicy","DELETE","/policies/federatedTokenValidationPolicy","matched","Remove-MgPolicyFederatedTokenValidationPolicy" +"Identity.SignIns","RemoveMgPolicyHomeRealmDiscoveryPolicy.g.cs","v1.0","Remove-MgPolicyHomeRealmDiscoveryPolicy","DELETE","/policies/homeRealmDiscoveryPolicies/{param}","matched","Remove-MgPolicyHomeRealmDiscoveryPolicy" +"Identity.SignIns","RemoveMgPolicyIdentitySecurityDefaultEnforcementPolicy.g.cs","v1.0","Remove-MgPolicyIdentitySecurityDefaultEnforcementPolicy","DELETE","/policies/identitySecurityDefaultsEnforcementPolicy","matched","Remove-MgPolicyIdentitySecurityDefaultEnforcementPolicy" +"Identity.SignIns","RemoveMgPolicyPermissionGrantPolicy.g.cs","v1.0","Remove-MgPolicyPermissionGrantPolicy","DELETE","/policies/permissionGrantPolicies/{param}","matched","Remove-MgPolicyPermissionGrantPolicy" +"Identity.SignIns","RemoveMgPolicyPermissionGrantPolicyExclude.g.cs","v1.0","Remove-MgPolicyPermissionGrantPolicyExclude","DELETE","/policies/permissionGrantPolicies/{param}/excludes/{param}","matched","Remove-MgPolicyPermissionGrantPolicyExclude" +"Identity.SignIns","RemoveMgPolicyPermissionGrantPolicyInclude.g.cs","v1.0","Remove-MgPolicyPermissionGrantPolicyInclude","DELETE","/policies/permissionGrantPolicies/{param}/includes/{param}","matched","Remove-MgPolicyPermissionGrantPolicyInclude" +"Identity.SignIns","RemoveMgPolicyRoleManagementPolicy.g.cs","v1.0","Remove-MgPolicyRoleManagementPolicy","DELETE","/policies/roleManagementPolicies/{param}","matched","Remove-MgPolicyRoleManagementPolicy" +"Identity.SignIns","RemoveMgPolicyRoleManagementPolicyAssignment.g.cs","v1.0","Remove-MgPolicyRoleManagementPolicyAssignment","DELETE","/policies/roleManagementPolicyAssignments/{param}","matched","Remove-MgPolicyRoleManagementPolicyAssignment" +"Identity.SignIns","RemoveMgPolicyRoleManagementPolicyEffectiveRule.g.cs","v1.0","Remove-MgPolicyRoleManagementPolicyEffectiveRule","DELETE","/policies/roleManagementPolicies/{param}/effectiveRules/{param}","matched","Remove-MgPolicyRoleManagementPolicyEffectiveRule" +"Identity.SignIns","RemoveMgPolicyRoleManagementPolicyRule.g.cs","v1.0","Remove-MgPolicyRoleManagementPolicyRule","DELETE","/policies/roleManagementPolicies/{param}/rules/{param}","matched","Remove-MgPolicyRoleManagementPolicyRule" +"Identity.SignIns","RemoveMgPolicyTokenIssuancePolicy.g.cs","v1.0","Remove-MgPolicyTokenIssuancePolicy","DELETE","/policies/tokenIssuancePolicies/{param}","matched","Remove-MgPolicyTokenIssuancePolicy" +"Identity.SignIns","RemoveMgPolicyTokenLifetimePolicy.g.cs","v1.0","Remove-MgPolicyTokenLifetimePolicy","DELETE","/policies/tokenLifetimePolicies/{param}","matched","Remove-MgPolicyTokenLifetimePolicy" +"Identity.SignIns","RemoveMgTenantRelationshipMultiTenantOrganizationTenant.g.cs","v1.0","Remove-MgTenantRelationshipMultiTenantOrganizationTenant","DELETE","/tenantRelationships/multiTenantOrganization/tenants/{param}","matched","Remove-MgTenantRelationshipMultiTenantOrganizationTenant" +"Identity.SignIns","RemoveMgUserAuthentication.g.cs","v1.0","Remove-MgUserAuthentication","DELETE","/users/{param}/authentication","no-oracle","" +"Identity.SignIns","RemoveMgUserAuthenticationEmailMethod.g.cs","v1.0","Remove-MgUserAuthenticationEmailMethod","DELETE","/users/{param}/authentication/emailMethods/{param}","matched","Remove-MgUserAuthenticationEmailMethod" +"Identity.SignIns","RemoveMgUserAuthenticationExternalAuthenticationMethod.g.cs","v1.0","Remove-MgUserAuthenticationExternalAuthenticationMethod","DELETE","/users/{param}/authentication/externalAuthenticationMethods/{param}","matched","Remove-MgUserAuthenticationExternalAuthenticationMethod" +"Identity.SignIns","RemoveMgUserAuthenticationFido2Method.g.cs","v1.0","Remove-MgUserAuthenticationFido2Method","DELETE","/users/{param}/authentication/fido2Methods/{param}","matched","Remove-MgUserAuthenticationFido2Method" +"Identity.SignIns","RemoveMgUserAuthenticationMicrosoftAuthenticatorMethod.g.cs","v1.0","Remove-MgUserAuthenticationMicrosoftAuthenticatorMethod","DELETE","/users/{param}/authentication/microsoftAuthenticatorMethods/{param}","matched","Remove-MgUserAuthenticationMicrosoftAuthenticatorMethod" +"Identity.SignIns","RemoveMgUserAuthenticationOperation.g.cs","v1.0","Remove-MgUserAuthenticationOperation","DELETE","/users/{param}/authentication/operations/{param}","matched","Remove-MgUserAuthenticationOperation" +"Identity.SignIns","RemoveMgUserAuthenticationPhoneMethod.g.cs","v1.0","Remove-MgUserAuthenticationPhoneMethod","DELETE","/users/{param}/authentication/phoneMethods/{param}","matched","Remove-MgUserAuthenticationPhoneMethod" +"Identity.SignIns","RemoveMgUserAuthenticationPlatformCredentialMethod.g.cs","v1.0","Remove-MgUserAuthenticationPlatformCredentialMethod","DELETE","/users/{param}/authentication/platformCredentialMethods/{param}","matched","Remove-MgUserAuthenticationPlatformCredentialMethod" +"Identity.SignIns","RemoveMgUserAuthenticationSoftwareOathMethod.g.cs","v1.0","Remove-MgUserAuthenticationSoftwareOathMethod","DELETE","/users/{param}/authentication/softwareOathMethods/{param}","matched","Remove-MgUserAuthenticationSoftwareOathMethod" +"Identity.SignIns","RemoveMgUserAuthenticationTemporaryAccessPassMethod.g.cs","v1.0","Remove-MgUserAuthenticationTemporaryAccessPassMethod","DELETE","/users/{param}/authentication/temporaryAccessPassMethods/{param}","matched","Remove-MgUserAuthenticationTemporaryAccessPassMethod" +"Identity.SignIns","RemoveMgUserAuthenticationWindowsHelloForBusinessMethod.g.cs","v1.0","Remove-MgUserAuthenticationWindowsHelloForBusinessMethod","DELETE","/users/{param}/authentication/windowsHelloForBusinessMethods/{param}","matched","Remove-MgUserAuthenticationWindowsHelloForBusinessMethod" +"Identity.SignIns","SetMgIdentityB2xUserFlowApiConnectorConfigurationPostAttributeCollectionByRef.g.cs","v1.0","Set-MgIdentityB2xUserFlowApiConnectorConfigurationPostAttributeCollectionByRef","PUT","/identity/b2xUserFlows/{param}/apiConnectorConfiguration/postAttributeCollection/$ref","mismatch","Set-MgIdentityB2XUserFlowPostAttributeCollectionByRef" +"Identity.SignIns","SetMgIdentityB2xUserFlowApiConnectorConfigurationPostFederationSignupByRef.g.cs","v1.0","Set-MgIdentityB2xUserFlowApiConnectorConfigurationPostFederationSignupByRef","PUT","/identity/b2xUserFlows/{param}/apiConnectorConfiguration/postFederationSignup/$ref","mismatch","Set-MgIdentityB2XUserFlowPostFederationSignupByRef" +"Identity.SignIns","SetMgPolicyCrossTenantAccessPolicyPartnerIdentitySynchronization.g.cs","v1.0","Set-MgPolicyCrossTenantAccessPolicyPartnerIdentitySynchronization","PUT","/policies/crossTenantAccessPolicy/partners/{param}/identitySynchronization","matched","Set-MgPolicyCrossTenantAccessPolicyPartnerIdentitySynchronization" +"Identity.SignIns","UpdateMgDataPolicyOperation.g.cs","v1.0","Update-MgDataPolicyOperation","PATCH","/dataPolicyOperations/{param}","matched","Update-MgDataPolicyOperation" +"Identity.SignIns","UpdateMgIdentity.g.cs","v1.0","Update-MgIdentity","PATCH","/identity","no-oracle","" +"Identity.SignIns","UpdateMgIdentityApiConnector.g.cs","v1.0","Update-MgIdentityApiConnector","PATCH","/identity/apiConnectors/{param}","matched","Update-MgIdentityApiConnector" +"Identity.SignIns","UpdateMgIdentityAuthenticationEventFlow.g.cs","v1.0","Update-MgIdentityAuthenticationEventFlow","PATCH","/identity/authenticationEventsFlows/{param}","matched","Update-MgIdentityAuthenticationEventFlow" +"Identity.SignIns","UpdateMgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowConditionApplicationIncludeApplication.g.cs","v1.0","Update-MgIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowConditionApplicationIncludeApplication","PATCH","","cast","" +"Identity.SignIns","UpdateMgIdentityAuthenticationEventFlowConditionApplicationIncludeApplication.g.cs","v1.0","Update-MgIdentityAuthenticationEventFlowConditionApplicationIncludeApplication","PATCH","/identity/authenticationEventsFlows/{param}/conditions/applications/includeApplications/{param}","mismatch","Update-MgIdentityAuthenticationEventFlowIncludeApplication" +"Identity.SignIns","UpdateMgIdentityAuthenticationEventListener.g.cs","v1.0","Update-MgIdentityAuthenticationEventListener","PATCH","/identity/authenticationEventListeners/{param}","matched","Update-MgIdentityAuthenticationEventListener" +"Identity.SignIns","UpdateMgIdentityB2xUserFlow.g.cs","v1.0","Update-MgIdentityB2xUserFlow","PATCH","/identity/b2xUserFlows/{param}","mismatch","Update-MgIdentityB2XUserFlow" +"Identity.SignIns","UpdateMgIdentityB2xUserFlowApiConnectorConfigurationPostAttributeCollection.g.cs","v1.0","Update-MgIdentityB2xUserFlowApiConnectorConfigurationPostAttributeCollection","PATCH","/identity/b2xUserFlows/{param}/apiConnectorConfiguration/postAttributeCollection","mismatch","Update-MgIdentityB2XUserFlowPostAttributeCollection" +"Identity.SignIns","UpdateMgIdentityB2xUserFlowApiConnectorConfigurationPostFederationSignup.g.cs","v1.0","Update-MgIdentityB2xUserFlowApiConnectorConfigurationPostFederationSignup","PATCH","/identity/b2xUserFlows/{param}/apiConnectorConfiguration/postFederationSignup","mismatch","Update-MgIdentityB2XUserFlowPostFederationSignup" +"Identity.SignIns","UpdateMgIdentityB2xUserFlowLanguage.g.cs","v1.0","Update-MgIdentityB2xUserFlowLanguage","PATCH","/identity/b2xUserFlows/{param}/languages/{param}","mismatch","Update-MgIdentityB2XUserFlowLanguage" +"Identity.SignIns","UpdateMgIdentityB2xUserFlowLanguageDefaultPage.g.cs","v1.0","Update-MgIdentityB2xUserFlowLanguageDefaultPage","PATCH","/identity/b2xUserFlows/{param}/languages/{param}/defaultPages/{param}","mismatch","Update-MgIdentityB2XUserFlowLanguageDefaultPage" +"Identity.SignIns","UpdateMgIdentityB2xUserFlowLanguageOverridePage.g.cs","v1.0","Update-MgIdentityB2xUserFlowLanguageOverridePage","PATCH","/identity/b2xUserFlows/{param}/languages/{param}/overridesPages/{param}","mismatch","Update-MgIdentityB2XUserFlowLanguageOverridePage" +"Identity.SignIns","UpdateMgIdentityB2xUserFlowUserAttributeAssignment.g.cs","v1.0","Update-MgIdentityB2xUserFlowUserAttributeAssignment","PATCH","/identity/b2xUserFlows/{param}/userAttributeAssignments/{param}","mismatch","Update-MgIdentityB2XUserFlowUserAttributeAssignment" +"Identity.SignIns","UpdateMgIdentityConditionalAccessAuthenticationContextClassReference.g.cs","v1.0","Update-MgIdentityConditionalAccessAuthenticationContextClassReference","PATCH","/identity/conditionalAccess/authenticationContextClassReferences/{param}","matched","Update-MgIdentityConditionalAccessAuthenticationContextClassReference" +"Identity.SignIns","UpdateMgIdentityConditionalAccessAuthenticationStrength.g.cs","v1.0","Update-MgIdentityConditionalAccessAuthenticationStrength","PATCH","/identity/conditionalAccess/authenticationStrength","no-oracle","" +"Identity.SignIns","UpdateMgIdentityConditionalAccessAuthenticationStrengthAuthenticationMethodMode.g.cs","v1.0","Update-MgIdentityConditionalAccessAuthenticationStrengthAuthenticationMethodMode","PATCH","/identity/conditionalAccess/authenticationStrength/authenticationMethodModes/{param}","no-oracle","" +"Identity.SignIns","UpdateMgIdentityConditionalAccessAuthenticationStrengthPolicy.g.cs","v1.0","Update-MgIdentityConditionalAccessAuthenticationStrengthPolicy","PATCH","/identity/conditionalAccess/authenticationStrength/policies/{param}","no-oracle","" +"Identity.SignIns","UpdateMgIdentityConditionalAccessAuthenticationStrengthPolicyCombinationConfiguration.g.cs","v1.0","Update-MgIdentityConditionalAccessAuthenticationStrengthPolicyCombinationConfiguration","PATCH","/identity/conditionalAccess/authenticationStrength/policies/{param}/combinationConfigurations/{param}","no-oracle","" +"Identity.SignIns","UpdateMgIdentityConditionalAccessDeletedItem.g.cs","v1.0","Update-MgIdentityConditionalAccessDeletedItem","PATCH","/identity/conditionalAccess/deletedItems","matched","Update-MgIdentityConditionalAccessDeletedItem" +"Identity.SignIns","UpdateMgIdentityConditionalAccessDeletedItemNamedLocation.g.cs","v1.0","Update-MgIdentityConditionalAccessDeletedItemNamedLocation","PATCH","/identity/conditionalAccess/deletedItems/namedLocations/{param}","matched","Update-MgIdentityConditionalAccessDeletedItemNamedLocation" +"Identity.SignIns","UpdateMgIdentityConditionalAccessDeletedItemPolicy.g.cs","v1.0","Update-MgIdentityConditionalAccessDeletedItemPolicy","PATCH","/identity/conditionalAccess/deletedItems/policies/{param}","matched","Update-MgIdentityConditionalAccessDeletedItemPolicy" +"Identity.SignIns","UpdateMgIdentityConditionalAccessNamedLocation.g.cs","v1.0","Update-MgIdentityConditionalAccessNamedLocation","PATCH","/identity/conditionalAccess/namedLocations/{param}","matched","Update-MgIdentityConditionalAccessNamedLocation" +"Identity.SignIns","UpdateMgIdentityConditionalAccessPolicy.g.cs","v1.0","Update-MgIdentityConditionalAccessPolicy","PATCH","/identity/conditionalAccess/policies/{param}","matched","Update-MgIdentityConditionalAccessPolicy" +"Identity.SignIns","UpdateMgIdentityCustomAuthenticationExtension.g.cs","v1.0","Update-MgIdentityCustomAuthenticationExtension","PATCH","/identity/customAuthenticationExtensions/{param}","matched","Update-MgIdentityCustomAuthenticationExtension" +"Identity.SignIns","UpdateMgIdentityProtection.g.cs","v1.0","Update-MgIdentityProtection","PATCH","/identityProtection","no-oracle","" +"Identity.SignIns","UpdateMgIdentityProtectionRiskDetection.g.cs","v1.0","Update-MgIdentityProtectionRiskDetection","PATCH","/identityProtection/riskDetections/{param}","mismatch","Update-MgRiskDetection" +"Identity.SignIns","UpdateMgIdentityProtectionRiskyServicePrincipal.g.cs","v1.0","Update-MgIdentityProtectionRiskyServicePrincipal","PATCH","/identityProtection/riskyServicePrincipals/{param}","mismatch","Update-MgRiskyServicePrincipal" +"Identity.SignIns","UpdateMgIdentityProtectionRiskyServicePrincipalHistory.g.cs","v1.0","Update-MgIdentityProtectionRiskyServicePrincipalHistory","PATCH","/identityProtection/riskyServicePrincipals/{param}/history/{param}","mismatch","Update-MgRiskyServicePrincipalHistory" +"Identity.SignIns","UpdateMgIdentityProtectionRiskyUser.g.cs","v1.0","Update-MgIdentityProtectionRiskyUser","PATCH","/identityProtection/riskyUsers/{param}","mismatch","Update-MgRiskyUser" +"Identity.SignIns","UpdateMgIdentityProtectionRiskyUserHistory.g.cs","v1.0","Update-MgIdentityProtectionRiskyUserHistory","PATCH","/identityProtection/riskyUsers/{param}/history/{param}","mismatch","Update-MgRiskyUserHistory" +"Identity.SignIns","UpdateMgIdentityProtectionServicePrincipalRiskDetection.g.cs","v1.0","Update-MgIdentityProtectionServicePrincipalRiskDetection","PATCH","/identityProtection/servicePrincipalRiskDetections/{param}","mismatch","Update-MgServicePrincipalRiskDetection" +"Identity.SignIns","UpdateMgIdentityProvider.g.cs","v1.0","Update-MgIdentityProvider","PATCH","/identity/identityProviders/{param}","matched","Update-MgIdentityProvider" +"Identity.SignIns","UpdateMgIdentityRiskPrevention.g.cs","v1.0","Update-MgIdentityRiskPrevention","PATCH","/identity/riskPrevention","matched","Update-MgIdentityRiskPrevention" +"Identity.SignIns","UpdateMgIdentityRiskPreventionFraudProtectionProvider.g.cs","v1.0","Update-MgIdentityRiskPreventionFraudProtectionProvider","PATCH","/identity/riskPrevention/fraudProtectionProviders/{param}","matched","Update-MgIdentityRiskPreventionFraudProtectionProvider" +"Identity.SignIns","UpdateMgIdentityRiskPreventionWebApplicationFirewallProvider.g.cs","v1.0","Update-MgIdentityRiskPreventionWebApplicationFirewallProvider","PATCH","/identity/riskPrevention/webApplicationFirewallProviders/{param}","matched","Update-MgIdentityRiskPreventionWebApplicationFirewallProvider" +"Identity.SignIns","UpdateMgIdentityRiskPreventionWebApplicationFirewallVerification.g.cs","v1.0","Update-MgIdentityRiskPreventionWebApplicationFirewallVerification","PATCH","/identity/riskPrevention/webApplicationFirewallVerifications/{param}","matched","Update-MgIdentityRiskPreventionWebApplicationFirewallVerification" +"Identity.SignIns","UpdateMgIdentityUserFlowAttribute.g.cs","v1.0","Update-MgIdentityUserFlowAttribute","PATCH","/identity/userFlowAttributes/{param}","matched","Update-MgIdentityUserFlowAttribute" +"Identity.SignIns","UpdateMgIdentityVerifiedId.g.cs","v1.0","Update-MgIdentityVerifiedId","PATCH","/identity/verifiedId","matched","Update-MgIdentityVerifiedId" +"Identity.SignIns","UpdateMgIdentityVerifiedIdProfile.g.cs","v1.0","Update-MgIdentityVerifiedIdProfile","PATCH","/identity/verifiedId/profiles/{param}","matched","Update-MgIdentityVerifiedIdProfile" +"Identity.SignIns","UpdateMgInformationProtection.g.cs","v1.0","Update-MgInformationProtection","PATCH","/informationProtection","matched","Update-MgInformationProtection" +"Identity.SignIns","UpdateMgInformationProtectionThreatAssessmentRequest.g.cs","v1.0","Update-MgInformationProtectionThreatAssessmentRequest","PATCH","/informationProtection/threatAssessmentRequests/{param}","matched","Update-MgInformationProtectionThreatAssessmentRequest" +"Identity.SignIns","UpdateMgInformationProtectionThreatAssessmentRequestResult.g.cs","v1.0","Update-MgInformationProtectionThreatAssessmentRequestResult","PATCH","/informationProtection/threatAssessmentRequests/{param}/results/{param}","matched","Update-MgInformationProtectionThreatAssessmentRequestResult" +"Identity.SignIns","UpdateMgInvitationInvitedUserMailboxSetting.g.cs","v1.0","Update-MgInvitationInvitedUserMailboxSetting","PATCH","/invitations/invitedUser/mailboxSettings","matched","Update-MgInvitationInvitedUserMailboxSetting" +"Identity.SignIns","UpdateMgOauth2PermissionGrant.g.cs","v1.0","Update-MgOauth2PermissionGrant","PATCH","/oauth2PermissionGrants/{param}","matched","Update-MgOauth2PermissionGrant" +"Identity.SignIns","UpdateMgPolicy.g.cs","v1.0","Update-MgPolicy","PATCH","/policies","no-oracle","" +"Identity.SignIns","UpdateMgPolicyActivityBasedTimeoutPolicy.g.cs","v1.0","Update-MgPolicyActivityBasedTimeoutPolicy","PATCH","/policies/activityBasedTimeoutPolicies/{param}","matched","Update-MgPolicyActivityBasedTimeoutPolicy" +"Identity.SignIns","UpdateMgPolicyAdminConsentRequestPolicy.g.cs","v1.0","Update-MgPolicyAdminConsentRequestPolicy","PATCH","/policies/adminConsentRequestPolicy","matched","Update-MgPolicyAdminConsentRequestPolicy" +"Identity.SignIns","UpdateMgPolicyAppManagementPolicy.g.cs","v1.0","Update-MgPolicyAppManagementPolicy","PATCH","/policies/appManagementPolicies/{param}","matched","Update-MgPolicyAppManagementPolicy" +"Identity.SignIns","UpdateMgPolicyAuthenticationFlowPolicy.g.cs","v1.0","Update-MgPolicyAuthenticationFlowPolicy","PATCH","/policies/authenticationFlowsPolicy","matched","Update-MgPolicyAuthenticationFlowPolicy" +"Identity.SignIns","UpdateMgPolicyAuthenticationMethodPolicy.g.cs","v1.0","Update-MgPolicyAuthenticationMethodPolicy","PATCH","/policies/authenticationMethodsPolicy","matched","Update-MgPolicyAuthenticationMethodPolicy" +"Identity.SignIns","UpdateMgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration.g.cs","v1.0","Update-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration","PATCH","/policies/authenticationMethodsPolicy/authenticationMethodConfigurations/{param}","matched","Update-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration" +"Identity.SignIns","UpdateMgPolicyAuthenticationStrengthPolicy.g.cs","v1.0","Update-MgPolicyAuthenticationStrengthPolicy","PATCH","/policies/authenticationStrengthPolicies/{param}","matched","Update-MgPolicyAuthenticationStrengthPolicy" +"Identity.SignIns","UpdateMgPolicyAuthenticationStrengthPolicyCombinationConfiguration.g.cs","v1.0","Update-MgPolicyAuthenticationStrengthPolicyCombinationConfiguration","PATCH","/policies/authenticationStrengthPolicies/{param}/combinationConfigurations/{param}","matched","Update-MgPolicyAuthenticationStrengthPolicyCombinationConfiguration" +"Identity.SignIns","UpdateMgPolicyAuthorizationPolicy.g.cs","v1.0","Update-MgPolicyAuthorizationPolicy","PATCH","/policies/authorizationPolicy","matched","Update-MgPolicyAuthorizationPolicy" +"Identity.SignIns","UpdateMgPolicyClaimMappingPolicy.g.cs","v1.0","Update-MgPolicyClaimMappingPolicy","PATCH","/policies/claimsMappingPolicies/{param}","matched","Update-MgPolicyClaimMappingPolicy" +"Identity.SignIns","UpdateMgPolicyConditionalAccessPolicy.g.cs","v1.0","Update-MgPolicyConditionalAccessPolicy","PATCH","/policies/conditionalAccessPolicies/{param}","no-oracle","" +"Identity.SignIns","UpdateMgPolicyCrossTenantAccessPolicy.g.cs","v1.0","Update-MgPolicyCrossTenantAccessPolicy","PATCH","/policies/crossTenantAccessPolicy","matched","Update-MgPolicyCrossTenantAccessPolicy" +"Identity.SignIns","UpdateMgPolicyCrossTenantAccessPolicyDefault.g.cs","v1.0","Update-MgPolicyCrossTenantAccessPolicyDefault","PATCH","/policies/crossTenantAccessPolicy/default","matched","Update-MgPolicyCrossTenantAccessPolicyDefault" +"Identity.SignIns","UpdateMgPolicyCrossTenantAccessPolicyPartner.g.cs","v1.0","Update-MgPolicyCrossTenantAccessPolicyPartner","PATCH","/policies/crossTenantAccessPolicy/partners/{param}","matched","Update-MgPolicyCrossTenantAccessPolicyPartner" +"Identity.SignIns","UpdateMgPolicyCrossTenantAccessPolicyTemplate.g.cs","v1.0","Update-MgPolicyCrossTenantAccessPolicyTemplate","PATCH","/policies/crossTenantAccessPolicy/templates","matched","Update-MgPolicyCrossTenantAccessPolicyTemplate" +"Identity.SignIns","UpdateMgPolicyCrossTenantAccessPolicyTemplateMultiTenantOrganizationIdentitySynchronization.g.cs","v1.0","Update-MgPolicyCrossTenantAccessPolicyTemplateMultiTenantOrganizationIdentitySynchronization","PATCH","/policies/crossTenantAccessPolicy/templates/multiTenantOrganizationIdentitySynchronization","matched","Update-MgPolicyCrossTenantAccessPolicyTemplateMultiTenantOrganizationIdentitySynchronization" +"Identity.SignIns","UpdateMgPolicyCrossTenantAccessPolicyTemplateMultiTenantOrganizationPartnerConfiguration.g.cs","v1.0","Update-MgPolicyCrossTenantAccessPolicyTemplateMultiTenantOrganizationPartnerConfiguration","PATCH","/policies/crossTenantAccessPolicy/templates/multiTenantOrganizationPartnerConfiguration","matched","Update-MgPolicyCrossTenantAccessPolicyTemplateMultiTenantOrganizationPartnerConfiguration" +"Identity.SignIns","UpdateMgPolicyDefaultAppManagementPolicy.g.cs","v1.0","Update-MgPolicyDefaultAppManagementPolicy","PATCH","/policies/defaultAppManagementPolicy","matched","Update-MgPolicyDefaultAppManagementPolicy" +"Identity.SignIns","UpdateMgPolicyFeatureRolloutPolicy.g.cs","v1.0","Update-MgPolicyFeatureRolloutPolicy","PATCH","/policies/featureRolloutPolicies/{param}","matched","Update-MgPolicyFeatureRolloutPolicy" +"Identity.SignIns","UpdateMgPolicyFederatedTokenValidationPolicy.g.cs","v1.0","Update-MgPolicyFederatedTokenValidationPolicy","PATCH","/policies/federatedTokenValidationPolicy","matched","Update-MgPolicyFederatedTokenValidationPolicy" +"Identity.SignIns","UpdateMgPolicyHomeRealmDiscoveryPolicy.g.cs","v1.0","Update-MgPolicyHomeRealmDiscoveryPolicy","PATCH","/policies/homeRealmDiscoveryPolicies/{param}","matched","Update-MgPolicyHomeRealmDiscoveryPolicy" +"Identity.SignIns","UpdateMgPolicyIdentitySecurityDefaultEnforcementPolicy.g.cs","v1.0","Update-MgPolicyIdentitySecurityDefaultEnforcementPolicy","PATCH","/policies/identitySecurityDefaultsEnforcementPolicy","matched","Update-MgPolicyIdentitySecurityDefaultEnforcementPolicy" +"Identity.SignIns","UpdateMgPolicyOwnerlessGroupPolicy.g.cs","v1.0","Update-MgPolicyOwnerlessGroupPolicy","PATCH","/policies/ownerlessGroupPolicy","matched","Update-MgPolicyOwnerlessGroupPolicy" +"Identity.SignIns","UpdateMgPolicyPermissionGrantPolicy.g.cs","v1.0","Update-MgPolicyPermissionGrantPolicy","PATCH","/policies/permissionGrantPolicies/{param}","matched","Update-MgPolicyPermissionGrantPolicy" +"Identity.SignIns","UpdateMgPolicyPermissionGrantPolicyExclude.g.cs","v1.0","Update-MgPolicyPermissionGrantPolicyExclude","PATCH","/policies/permissionGrantPolicies/{param}/excludes/{param}","matched","Update-MgPolicyPermissionGrantPolicyExclude" +"Identity.SignIns","UpdateMgPolicyPermissionGrantPolicyInclude.g.cs","v1.0","Update-MgPolicyPermissionGrantPolicyInclude","PATCH","/policies/permissionGrantPolicies/{param}/includes/{param}","matched","Update-MgPolicyPermissionGrantPolicyInclude" +"Identity.SignIns","UpdateMgPolicyRoleManagementPolicy.g.cs","v1.0","Update-MgPolicyRoleManagementPolicy","PATCH","/policies/roleManagementPolicies/{param}","matched","Update-MgPolicyRoleManagementPolicy" +"Identity.SignIns","UpdateMgPolicyRoleManagementPolicyAssignment.g.cs","v1.0","Update-MgPolicyRoleManagementPolicyAssignment","PATCH","/policies/roleManagementPolicyAssignments/{param}","matched","Update-MgPolicyRoleManagementPolicyAssignment" +"Identity.SignIns","UpdateMgPolicyRoleManagementPolicyEffectiveRule.g.cs","v1.0","Update-MgPolicyRoleManagementPolicyEffectiveRule","PATCH","/policies/roleManagementPolicies/{param}/effectiveRules/{param}","matched","Update-MgPolicyRoleManagementPolicyEffectiveRule" +"Identity.SignIns","UpdateMgPolicyRoleManagementPolicyRule.g.cs","v1.0","Update-MgPolicyRoleManagementPolicyRule","PATCH","/policies/roleManagementPolicies/{param}/rules/{param}","matched","Update-MgPolicyRoleManagementPolicyRule" +"Identity.SignIns","UpdateMgPolicyTokenIssuancePolicy.g.cs","v1.0","Update-MgPolicyTokenIssuancePolicy","PATCH","/policies/tokenIssuancePolicies/{param}","matched","Update-MgPolicyTokenIssuancePolicy" +"Identity.SignIns","UpdateMgPolicyTokenLifetimePolicy.g.cs","v1.0","Update-MgPolicyTokenLifetimePolicy","PATCH","/policies/tokenLifetimePolicies/{param}","matched","Update-MgPolicyTokenLifetimePolicy" +"Identity.SignIns","UpdateMgTenantRelationshipMultiTenantOrganization.g.cs","v1.0","Update-MgTenantRelationshipMultiTenantOrganization","PATCH","/tenantRelationships/multiTenantOrganization","matched","Update-MgTenantRelationshipMultiTenantOrganization" +"Identity.SignIns","UpdateMgTenantRelationshipMultiTenantOrganizationJoinRequest.g.cs","v1.0","Update-MgTenantRelationshipMultiTenantOrganizationJoinRequest","PATCH","/tenantRelationships/multiTenantOrganization/joinRequest","matched","Update-MgTenantRelationshipMultiTenantOrganizationJoinRequest" +"Identity.SignIns","UpdateMgTenantRelationshipMultiTenantOrganizationTenant.g.cs","v1.0","Update-MgTenantRelationshipMultiTenantOrganizationTenant","PATCH","/tenantRelationships/multiTenantOrganization/tenants/{param}","matched","Update-MgTenantRelationshipMultiTenantOrganizationTenant" +"Identity.SignIns","UpdateMgUserAuthentication.g.cs","v1.0","Update-MgUserAuthentication","PATCH","/users/{param}/authentication","no-oracle","" +"Identity.SignIns","UpdateMgUserAuthenticationEmailMethod.g.cs","v1.0","Update-MgUserAuthenticationEmailMethod","PATCH","/users/{param}/authentication/emailMethods/{param}","matched","Update-MgUserAuthenticationEmailMethod" +"Identity.SignIns","UpdateMgUserAuthenticationExternalAuthenticationMethod.g.cs","v1.0","Update-MgUserAuthenticationExternalAuthenticationMethod","PATCH","/users/{param}/authentication/externalAuthenticationMethods/{param}","matched","Update-MgUserAuthenticationExternalAuthenticationMethod" +"Identity.SignIns","UpdateMgUserAuthenticationMethod.g.cs","v1.0","Update-MgUserAuthenticationMethod","PATCH","/users/{param}/authentication/methods/{param}","matched","Update-MgUserAuthenticationMethod" +"Identity.SignIns","UpdateMgUserAuthenticationOperation.g.cs","v1.0","Update-MgUserAuthenticationOperation","PATCH","/users/{param}/authentication/operations/{param}","matched","Update-MgUserAuthenticationOperation" +"Identity.SignIns","UpdateMgUserAuthenticationPhoneMethod.g.cs","v1.0","Update-MgUserAuthenticationPhoneMethod","PATCH","/users/{param}/authentication/phoneMethods/{param}","matched","Update-MgUserAuthenticationPhoneMethod" +"Mail","GetMgUserInferenceClassification.g.cs","v1.0","Get-MgUserInferenceClassification","GET","/users/{param}/inferenceClassification","matched","Get-MgUserInferenceClassification" +"Mail","GetMgUserInferenceClassificationOverride_Get.g.cs","v1.0","Get-MgUserInferenceClassificationOverride","GET","/users/{param}/inferenceClassification/overrides/{param}","matched","Get-MgUserInferenceClassificationOverride" +"Mail","GetMgUserInferenceClassificationOverride_List.g.cs","v1.0","Get-MgUserInferenceClassificationOverride","GET","/users/{param}/inferenceClassification/overrides","matched","Get-MgUserInferenceClassificationOverride" +"Mail","GetMgUserInferenceClassificationOverride.g.cs","v1.0","Get-MgUserInferenceClassificationOverride","","","dispatcher","" +"Mail","GetMgUserInferenceClassificationOverrideCount.g.cs","v1.0","Get-MgUserInferenceClassificationOverrideCount","GET","/users/{param}/inferenceClassification/overrides/$count","matched","Get-MgUserInferenceClassificationOverrideCount" +"Mail","GetMgUserMailFolder_Get.g.cs","v1.0","Get-MgUserMailFolder","GET","/users/{param}/mailFolders/{param}","matched","Get-MgUserMailFolder" +"Mail","GetMgUserMailFolder_List.g.cs","v1.0","Get-MgUserMailFolder","GET","/users/{param}/mailFolders","matched","Get-MgUserMailFolder" +"Mail","GetMgUserMailFolder.g.cs","v1.0","Get-MgUserMailFolder","","","dispatcher","" +"Mail","GetMgUserMailFolderChildFolder_Get.g.cs","v1.0","Get-MgUserMailFolderChildFolder","GET","/users/{param}/mailFolders/{param}/childFolders/{param}","matched","Get-MgUserMailFolderChildFolder" +"Mail","GetMgUserMailFolderChildFolder_List.g.cs","v1.0","Get-MgUserMailFolderChildFolder","GET","/users/{param}/mailFolders/{param}/childFolders","matched","Get-MgUserMailFolderChildFolder" +"Mail","GetMgUserMailFolderChildFolder.g.cs","v1.0","Get-MgUserMailFolderChildFolder","","","dispatcher","" +"Mail","GetMgUserMailFolderChildFolderCount.g.cs","v1.0","Get-MgUserMailFolderChildFolderCount","GET","/users/{param}/mailFolders/{param}/childFolders/$count","matched","Get-MgUserMailFolderChildFolderCount" +"Mail","GetMgUserMailFolderChildFolderDelta.g.cs","v1.0","Get-MgUserMailFolderChildFolderDelta","GET","/users/{param}/mailFolders/{param}/childFolders/delta","matched","Get-MgUserMailFolderChildFolderDelta" +"Mail","GetMgUserMailFolderChildFolderMessage_Get.g.cs","v1.0","Get-MgUserMailFolderChildFolderMessage","GET","/users/{param}/mailFolders/{param}/childFolders/{param}/messages/{param}","matched","Get-MgUserMailFolderChildFolderMessage" +"Mail","GetMgUserMailFolderChildFolderMessage_List.g.cs","v1.0","Get-MgUserMailFolderChildFolderMessage","GET","/users/{param}/mailFolders/{param}/childFolders/{param}/messages","matched","Get-MgUserMailFolderChildFolderMessage" +"Mail","GetMgUserMailFolderChildFolderMessage.g.cs","v1.0","Get-MgUserMailFolderChildFolderMessage","","","dispatcher","" +"Mail","GetMgUserMailFolderChildFolderMessageAttachment_Get.g.cs","v1.0","Get-MgUserMailFolderChildFolderMessageAttachment","GET","/users/{param}/mailFolders/{param}/childFolders/{param}/messages/{param}/attachments/{param}","matched","Get-MgUserMailFolderChildFolderMessageAttachment" +"Mail","GetMgUserMailFolderChildFolderMessageAttachment_List.g.cs","v1.0","Get-MgUserMailFolderChildFolderMessageAttachment","GET","/users/{param}/mailFolders/{param}/childFolders/{param}/messages/{param}/attachments","matched","Get-MgUserMailFolderChildFolderMessageAttachment" +"Mail","GetMgUserMailFolderChildFolderMessageAttachment.g.cs","v1.0","Get-MgUserMailFolderChildFolderMessageAttachment","","","dispatcher","" +"Mail","GetMgUserMailFolderChildFolderMessageAttachmentCount.g.cs","v1.0","Get-MgUserMailFolderChildFolderMessageAttachmentCount","GET","/users/{param}/mailFolders/{param}/childFolders/{param}/messages/{param}/attachments/$count","matched","Get-MgUserMailFolderChildFolderMessageAttachmentCount" +"Mail","GetMgUserMailFolderChildFolderMessageContent.g.cs","v1.0","Get-MgUserMailFolderChildFolderMessageContent","GET","/users/{param}/mailFolders/{param}/childFolders/{param}/messages/{param}/$value","matched","Get-MgUserMailFolderChildFolderMessageContent" +"Mail","GetMgUserMailFolderChildFolderMessageCount.g.cs","v1.0","Get-MgUserMailFolderChildFolderMessageCount","GET","/users/{param}/mailFolders/{param}/childFolders/{param}/messages/$count","matched","Get-MgUserMailFolderChildFolderMessageCount" +"Mail","GetMgUserMailFolderChildFolderMessageDelta.g.cs","v1.0","Get-MgUserMailFolderChildFolderMessageDelta","GET","/users/{param}/mailFolders/{param}/childFolders/{param}/messages/delta","matched","Get-MgUserMailFolderChildFolderMessageDelta" +"Mail","GetMgUserMailFolderChildFolderMessageExtension_Get.g.cs","v1.0","Get-MgUserMailFolderChildFolderMessageExtension","GET","/users/{param}/mailFolders/{param}/childFolders/{param}/messages/{param}/extensions/{param}","matched","Get-MgUserMailFolderChildFolderMessageExtension" +"Mail","GetMgUserMailFolderChildFolderMessageExtension_List.g.cs","v1.0","Get-MgUserMailFolderChildFolderMessageExtension","GET","/users/{param}/mailFolders/{param}/childFolders/{param}/messages/{param}/extensions","matched","Get-MgUserMailFolderChildFolderMessageExtension" +"Mail","GetMgUserMailFolderChildFolderMessageExtension.g.cs","v1.0","Get-MgUserMailFolderChildFolderMessageExtension","","","dispatcher","" +"Mail","GetMgUserMailFolderChildFolderMessageExtensionCount.g.cs","v1.0","Get-MgUserMailFolderChildFolderMessageExtensionCount","GET","/users/{param}/mailFolders/{param}/childFolders/{param}/messages/{param}/extensions/$count","matched","Get-MgUserMailFolderChildFolderMessageExtensionCount" +"Mail","GetMgUserMailFolderChildFolderMessageRule_Get.g.cs","v1.0","Get-MgUserMailFolderChildFolderMessageRule","GET","/users/{param}/mailFolders/{param}/childFolders/{param}/messageRules/{param}","matched","Get-MgUserMailFolderChildFolderMessageRule" +"Mail","GetMgUserMailFolderChildFolderMessageRule_List.g.cs","v1.0","Get-MgUserMailFolderChildFolderMessageRule","GET","/users/{param}/mailFolders/{param}/childFolders/{param}/messageRules","matched","Get-MgUserMailFolderChildFolderMessageRule" +"Mail","GetMgUserMailFolderChildFolderMessageRule.g.cs","v1.0","Get-MgUserMailFolderChildFolderMessageRule","","","dispatcher","" +"Mail","GetMgUserMailFolderChildFolderMessageRuleCount.g.cs","v1.0","Get-MgUserMailFolderChildFolderMessageRuleCount","GET","/users/{param}/mailFolders/{param}/childFolders/{param}/messageRules/$count","matched","Get-MgUserMailFolderChildFolderMessageRuleCount" +"Mail","GetMgUserMailFolderCount.g.cs","v1.0","Get-MgUserMailFolderCount","GET","/users/{param}/mailFolders/$count","matched","Get-MgUserMailFolderCount" +"Mail","GetMgUserMailFolderDelta.g.cs","v1.0","Get-MgUserMailFolderDelta","GET","/users/{param}/mailFolders/delta","matched","Get-MgUserMailFolderDelta" +"Mail","GetMgUserMailFolderMessage_Get.g.cs","v1.0","Get-MgUserMailFolderMessage","GET","/users/{param}/mailFolders/{param}/messages/{param}","matched","Get-MgUserMailFolderMessage" +"Mail","GetMgUserMailFolderMessage_List.g.cs","v1.0","Get-MgUserMailFolderMessage","GET","/users/{param}/mailFolders/{param}/messages","matched","Get-MgUserMailFolderMessage" +"Mail","GetMgUserMailFolderMessage.g.cs","v1.0","Get-MgUserMailFolderMessage","","","dispatcher","" +"Mail","GetMgUserMailFolderMessageAttachment_Get.g.cs","v1.0","Get-MgUserMailFolderMessageAttachment","GET","/users/{param}/mailFolders/{param}/messages/{param}/attachments/{param}","matched","Get-MgUserMailFolderMessageAttachment" +"Mail","GetMgUserMailFolderMessageAttachment_List.g.cs","v1.0","Get-MgUserMailFolderMessageAttachment","GET","/users/{param}/mailFolders/{param}/messages/{param}/attachments","matched","Get-MgUserMailFolderMessageAttachment" +"Mail","GetMgUserMailFolderMessageAttachment.g.cs","v1.0","Get-MgUserMailFolderMessageAttachment","","","dispatcher","" +"Mail","GetMgUserMailFolderMessageAttachmentCount.g.cs","v1.0","Get-MgUserMailFolderMessageAttachmentCount","GET","/users/{param}/mailFolders/{param}/messages/{param}/attachments/$count","matched","Get-MgUserMailFolderMessageAttachmentCount" +"Mail","GetMgUserMailFolderMessageContent.g.cs","v1.0","Get-MgUserMailFolderMessageContent","GET","/users/{param}/mailFolders/{param}/messages/{param}/$value","no-oracle","" +"Mail","GetMgUserMailFolderMessageCount.g.cs","v1.0","Get-MgUserMailFolderMessageCount","GET","/users/{param}/mailFolders/{param}/messages/$count","matched","Get-MgUserMailFolderMessageCount" +"Mail","GetMgUserMailFolderMessageDelta.g.cs","v1.0","Get-MgUserMailFolderMessageDelta","GET","/users/{param}/mailFolders/{param}/messages/delta","matched","Get-MgUserMailFolderMessageDelta" +"Mail","GetMgUserMailFolderMessageExtension_Get.g.cs","v1.0","Get-MgUserMailFolderMessageExtension","GET","/users/{param}/mailFolders/{param}/messages/{param}/extensions/{param}","matched","Get-MgUserMailFolderMessageExtension" +"Mail","GetMgUserMailFolderMessageExtension_List.g.cs","v1.0","Get-MgUserMailFolderMessageExtension","GET","/users/{param}/mailFolders/{param}/messages/{param}/extensions","matched","Get-MgUserMailFolderMessageExtension" +"Mail","GetMgUserMailFolderMessageExtension.g.cs","v1.0","Get-MgUserMailFolderMessageExtension","","","dispatcher","" +"Mail","GetMgUserMailFolderMessageExtensionCount.g.cs","v1.0","Get-MgUserMailFolderMessageExtensionCount","GET","/users/{param}/mailFolders/{param}/messages/{param}/extensions/$count","matched","Get-MgUserMailFolderMessageExtensionCount" +"Mail","GetMgUserMailFolderMessageRule_Get.g.cs","v1.0","Get-MgUserMailFolderMessageRule","GET","/users/{param}/mailFolders/{param}/messageRules/{param}","matched","Get-MgUserMailFolderMessageRule" +"Mail","GetMgUserMailFolderMessageRule_List.g.cs","v1.0","Get-MgUserMailFolderMessageRule","GET","/users/{param}/mailFolders/{param}/messageRules","matched","Get-MgUserMailFolderMessageRule" +"Mail","GetMgUserMailFolderMessageRule.g.cs","v1.0","Get-MgUserMailFolderMessageRule","","","dispatcher","" +"Mail","GetMgUserMailFolderMessageRuleCount.g.cs","v1.0","Get-MgUserMailFolderMessageRuleCount","GET","/users/{param}/mailFolders/{param}/messageRules/$count","matched","Get-MgUserMailFolderMessageRuleCount" +"Mail","GetMgUserMessage_Get.g.cs","v1.0","Get-MgUserMessage","GET","/users/{param}/messages/{param}","matched","Get-MgUserMessage" +"Mail","GetMgUserMessage_List.g.cs","v1.0","Get-MgUserMessage","GET","/users/{param}/messages","matched","Get-MgUserMessage" +"Mail","GetMgUserMessage.g.cs","v1.0","Get-MgUserMessage","","","dispatcher","" +"Mail","GetMgUserMessageAttachment_Get.g.cs","v1.0","Get-MgUserMessageAttachment","GET","/users/{param}/messages/{param}/attachments/{param}","matched","Get-MgUserMessageAttachment" +"Mail","GetMgUserMessageAttachment_List.g.cs","v1.0","Get-MgUserMessageAttachment","GET","/users/{param}/messages/{param}/attachments","matched","Get-MgUserMessageAttachment" +"Mail","GetMgUserMessageAttachment.g.cs","v1.0","Get-MgUserMessageAttachment","","","dispatcher","" +"Mail","GetMgUserMessageAttachmentCount.g.cs","v1.0","Get-MgUserMessageAttachmentCount","GET","/users/{param}/messages/{param}/attachments/$count","matched","Get-MgUserMessageAttachmentCount" +"Mail","GetMgUserMessageContent.g.cs","v1.0","Get-MgUserMessageContent","GET","/users/{param}/messages/{param}/$value","matched","Get-MgUserMessageContent" +"Mail","GetMgUserMessageCount.g.cs","v1.0","Get-MgUserMessageCount","GET","/users/{param}/messages/$count","matched","Get-MgUserMessageCount" +"Mail","GetMgUserMessageDelta.g.cs","v1.0","Get-MgUserMessageDelta","GET","/users/{param}/messages/delta","matched","Get-MgUserMessageDelta" +"Mail","GetMgUserMessageExtension_Get.g.cs","v1.0","Get-MgUserMessageExtension","GET","/users/{param}/messages/{param}/extensions/{param}","matched","Get-MgUserMessageExtension" +"Mail","GetMgUserMessageExtension_List.g.cs","v1.0","Get-MgUserMessageExtension","GET","/users/{param}/messages/{param}/extensions","matched","Get-MgUserMessageExtension" +"Mail","GetMgUserMessageExtension.g.cs","v1.0","Get-MgUserMessageExtension","","","dispatcher","" +"Mail","GetMgUserMessageExtensionCount.g.cs","v1.0","Get-MgUserMessageExtensionCount","GET","/users/{param}/messages/{param}/extensions/$count","matched","Get-MgUserMessageExtensionCount" +"Mail","InvokeMgUserMailFolderChildFolderCopy.g.cs","v1.0","Invoke-MgUserMailFolderChildFolderCopy","POST","/users/{param}/mailFolders/{param}/childFolders/{param}/copy","mismatch","Copy-MgUserMailFolderChildFolder" +"Mail","InvokeMgUserMailFolderChildFolderMessageAttachmentCreateUploadSession.g.cs","v1.0","Invoke-MgUserMailFolderChildFolderMessageAttachmentCreateUploadSession","POST","/users/{param}/mailFolders/{param}/childFolders/{param}/messages/{param}/attachments/createUploadSession","mismatch","New-MgUserMailFolderChildFolderMessageAttachmentUploadSession" +"Mail","InvokeMgUserMailFolderChildFolderMessageCopy.g.cs","v1.0","Invoke-MgUserMailFolderChildFolderMessageCopy","POST","/users/{param}/mailFolders/{param}/childFolders/{param}/messages/{param}/copy","mismatch","Copy-MgUserMailFolderChildFolderMessage" +"Mail","InvokeMgUserMailFolderChildFolderMessageCreateForward.g.cs","v1.0","Invoke-MgUserMailFolderChildFolderMessageCreateForward","POST","/users/{param}/mailFolders/{param}/childFolders/{param}/messages/{param}/createForward","mismatch","New-MgUserMailFolderChildFolderMessageForward" +"Mail","InvokeMgUserMailFolderChildFolderMessageCreateReply.g.cs","v1.0","Invoke-MgUserMailFolderChildFolderMessageCreateReply","POST","/users/{param}/mailFolders/{param}/childFolders/{param}/messages/{param}/createReply","mismatch","New-MgUserMailFolderChildFolderMessageReply" +"Mail","InvokeMgUserMailFolderChildFolderMessageCreateReplyAll.g.cs","v1.0","Invoke-MgUserMailFolderChildFolderMessageCreateReplyAll","POST","/users/{param}/mailFolders/{param}/childFolders/{param}/messages/{param}/createReplyAll","mismatch","New-MgUserMailFolderChildFolderMessageReplyAll" +"Mail","InvokeMgUserMailFolderChildFolderMessageForward.g.cs","v1.0","Invoke-MgUserMailFolderChildFolderMessageForward","POST","/users/{param}/mailFolders/{param}/childFolders/{param}/messages/{param}/forward","mismatch","Invoke-MgForwardUserMailFolderChildFolderMessage" +"Mail","InvokeMgUserMailFolderChildFolderMessageMove.g.cs","v1.0","Invoke-MgUserMailFolderChildFolderMessageMove","POST","/users/{param}/mailFolders/{param}/childFolders/{param}/messages/{param}/move","mismatch","Move-MgUserMailFolderChildFolderMessage" +"Mail","InvokeMgUserMailFolderChildFolderMessagePermanentDelete.g.cs","v1.0","Invoke-MgUserMailFolderChildFolderMessagePermanentDelete","POST","/users/{param}/mailFolders/{param}/childFolders/{param}/messages/{param}/permanentDelete","mismatch","Remove-MgUserMailFolderChildFolderMessagePermanent" +"Mail","InvokeMgUserMailFolderChildFolderMessageReply.g.cs","v1.0","Invoke-MgUserMailFolderChildFolderMessageReply","POST","/users/{param}/mailFolders/{param}/childFolders/{param}/messages/{param}/reply","mismatch","Invoke-MgReplyUserMailFolderChildFolderMessage" +"Mail","InvokeMgUserMailFolderChildFolderMessageReplyAll.g.cs","v1.0","Invoke-MgUserMailFolderChildFolderMessageReplyAll","POST","/users/{param}/mailFolders/{param}/childFolders/{param}/messages/{param}/replyAll","mismatch","Invoke-MgReplyAllUserMailFolderChildFolderMessage" +"Mail","InvokeMgUserMailFolderChildFolderMessageSend.g.cs","v1.0","Invoke-MgUserMailFolderChildFolderMessageSend","POST","/users/{param}/mailFolders/{param}/childFolders/{param}/messages/{param}/send","mismatch","Send-MgUserMailFolderChildFolderMessage" +"Mail","InvokeMgUserMailFolderChildFolderMove.g.cs","v1.0","Invoke-MgUserMailFolderChildFolderMove","POST","/users/{param}/mailFolders/{param}/childFolders/{param}/move","mismatch","Move-MgUserMailFolderChildFolder" +"Mail","InvokeMgUserMailFolderChildFolderPermanentDelete.g.cs","v1.0","Invoke-MgUserMailFolderChildFolderPermanentDelete","POST","/users/{param}/mailFolders/{param}/childFolders/{param}/permanentDelete","mismatch","Remove-MgUserMailFolderChildFolderPermanent" +"Mail","InvokeMgUserMailFolderCopy.g.cs","v1.0","Invoke-MgUserMailFolderCopy","POST","/users/{param}/mailFolders/{param}/copy","mismatch","Copy-MgUserMailFolder" +"Mail","InvokeMgUserMailFolderMessageAttachmentCreateUploadSession.g.cs","v1.0","Invoke-MgUserMailFolderMessageAttachmentCreateUploadSession","POST","/users/{param}/mailFolders/{param}/messages/{param}/attachments/createUploadSession","mismatch","New-MgUserMailFolderMessageAttachmentUploadSession" +"Mail","InvokeMgUserMailFolderMessageCopy.g.cs","v1.0","Invoke-MgUserMailFolderMessageCopy","POST","/users/{param}/mailFolders/{param}/messages/{param}/copy","mismatch","Copy-MgUserMailFolderMessage" +"Mail","InvokeMgUserMailFolderMessageCreateForward.g.cs","v1.0","Invoke-MgUserMailFolderMessageCreateForward","POST","/users/{param}/mailFolders/{param}/messages/{param}/createForward","mismatch","New-MgUserMailFolderMessageForward" +"Mail","InvokeMgUserMailFolderMessageCreateReply.g.cs","v1.0","Invoke-MgUserMailFolderMessageCreateReply","POST","/users/{param}/mailFolders/{param}/messages/{param}/createReply","mismatch","New-MgUserMailFolderMessageReply" +"Mail","InvokeMgUserMailFolderMessageCreateReplyAll.g.cs","v1.0","Invoke-MgUserMailFolderMessageCreateReplyAll","POST","/users/{param}/mailFolders/{param}/messages/{param}/createReplyAll","mismatch","New-MgUserMailFolderMessageReplyAll" +"Mail","InvokeMgUserMailFolderMessageForward.g.cs","v1.0","Invoke-MgUserMailFolderMessageForward","POST","/users/{param}/mailFolders/{param}/messages/{param}/forward","mismatch","Invoke-MgForwardUserMailFolderMessage" +"Mail","InvokeMgUserMailFolderMessageMove.g.cs","v1.0","Invoke-MgUserMailFolderMessageMove","POST","/users/{param}/mailFolders/{param}/messages/{param}/move","mismatch","Move-MgUserMailFolderMessage" +"Mail","InvokeMgUserMailFolderMessagePermanentDelete.g.cs","v1.0","Invoke-MgUserMailFolderMessagePermanentDelete","POST","/users/{param}/mailFolders/{param}/messages/{param}/permanentDelete","mismatch","Remove-MgUserMailFolderMessagePermanent" +"Mail","InvokeMgUserMailFolderMessageReply.g.cs","v1.0","Invoke-MgUserMailFolderMessageReply","POST","/users/{param}/mailFolders/{param}/messages/{param}/reply","mismatch","Invoke-MgReplyUserMailFolderMessage" +"Mail","InvokeMgUserMailFolderMessageReplyAll.g.cs","v1.0","Invoke-MgUserMailFolderMessageReplyAll","POST","/users/{param}/mailFolders/{param}/messages/{param}/replyAll","mismatch","Invoke-MgReplyAllUserMailFolderMessage" +"Mail","InvokeMgUserMailFolderMessageSend.g.cs","v1.0","Invoke-MgUserMailFolderMessageSend","POST","/users/{param}/mailFolders/{param}/messages/{param}/send","mismatch","Send-MgUserMailFolderMessage" +"Mail","InvokeMgUserMailFolderMove.g.cs","v1.0","Invoke-MgUserMailFolderMove","POST","/users/{param}/mailFolders/{param}/move","mismatch","Move-MgUserMailFolder" +"Mail","InvokeMgUserMailFolderPermanentDelete.g.cs","v1.0","Invoke-MgUserMailFolderPermanentDelete","POST","/users/{param}/mailFolders/{param}/permanentDelete","mismatch","Remove-MgUserMailFolderPermanent" +"Mail","InvokeMgUserMessageAttachmentCreateUploadSession.g.cs","v1.0","Invoke-MgUserMessageAttachmentCreateUploadSession","POST","/users/{param}/messages/{param}/attachments/createUploadSession","mismatch","New-MgUserMessageAttachmentUploadSession" +"Mail","InvokeMgUserMessageCopy.g.cs","v1.0","Invoke-MgUserMessageCopy","POST","/users/{param}/messages/{param}/copy","mismatch","Copy-MgUserMessage" +"Mail","InvokeMgUserMessageCreateForward.g.cs","v1.0","Invoke-MgUserMessageCreateForward","POST","/users/{param}/messages/{param}/createForward","mismatch","New-MgUserMessageForward" +"Mail","InvokeMgUserMessageCreateReply.g.cs","v1.0","Invoke-MgUserMessageCreateReply","POST","/users/{param}/messages/{param}/createReply","mismatch","New-MgUserMessageReply" +"Mail","InvokeMgUserMessageCreateReplyAll.g.cs","v1.0","Invoke-MgUserMessageCreateReplyAll","POST","/users/{param}/messages/{param}/createReplyAll","mismatch","New-MgUserMessageReplyAll" +"Mail","InvokeMgUserMessageForward.g.cs","v1.0","Invoke-MgUserMessageForward","POST","/users/{param}/messages/{param}/forward","mismatch","Invoke-MgForwardUserMessage" +"Mail","InvokeMgUserMessageMove.g.cs","v1.0","Invoke-MgUserMessageMove","POST","/users/{param}/messages/{param}/move","mismatch","Move-MgUserMessage" +"Mail","InvokeMgUserMessagePermanentDelete.g.cs","v1.0","Invoke-MgUserMessagePermanentDelete","POST","/users/{param}/messages/{param}/permanentDelete","mismatch","Remove-MgUserMessagePermanent" +"Mail","InvokeMgUserMessageReply.g.cs","v1.0","Invoke-MgUserMessageReply","POST","/users/{param}/messages/{param}/reply","mismatch","Invoke-MgReplyUserMessage" +"Mail","InvokeMgUserMessageReplyAll.g.cs","v1.0","Invoke-MgUserMessageReplyAll","POST","/users/{param}/messages/{param}/replyAll","mismatch","Invoke-MgReplyAllUserMessage" +"Mail","InvokeMgUserMessageSend.g.cs","v1.0","Invoke-MgUserMessageSend","POST","/users/{param}/messages/{param}/send","mismatch","Send-MgUserMessage" +"Mail","NewMgUserInferenceClassificationOverride.g.cs","v1.0","New-MgUserInferenceClassificationOverride","POST","/users/{param}/inferenceClassification/overrides","matched","New-MgUserInferenceClassificationOverride" +"Mail","NewMgUserMailFolder.g.cs","v1.0","New-MgUserMailFolder","POST","/users/{param}/mailFolders","matched","New-MgUserMailFolder" +"Mail","NewMgUserMailFolderChildFolder.g.cs","v1.0","New-MgUserMailFolderChildFolder","POST","/users/{param}/mailFolders/{param}/childFolders","matched","New-MgUserMailFolderChildFolder" +"Mail","NewMgUserMailFolderChildFolderMessage.g.cs","v1.0","New-MgUserMailFolderChildFolderMessage","POST","/users/{param}/mailFolders/{param}/childFolders/{param}/messages","matched","New-MgUserMailFolderChildFolderMessage" +"Mail","NewMgUserMailFolderChildFolderMessageAttachment.g.cs","v1.0","New-MgUserMailFolderChildFolderMessageAttachment","POST","/users/{param}/mailFolders/{param}/childFolders/{param}/messages/{param}/attachments","matched","New-MgUserMailFolderChildFolderMessageAttachment" +"Mail","NewMgUserMailFolderChildFolderMessageExtension.g.cs","v1.0","New-MgUserMailFolderChildFolderMessageExtension","POST","/users/{param}/mailFolders/{param}/childFolders/{param}/messages/{param}/extensions","matched","New-MgUserMailFolderChildFolderMessageExtension" +"Mail","NewMgUserMailFolderChildFolderMessageRule.g.cs","v1.0","New-MgUserMailFolderChildFolderMessageRule","POST","/users/{param}/mailFolders/{param}/childFolders/{param}/messageRules","matched","New-MgUserMailFolderChildFolderMessageRule" +"Mail","NewMgUserMailFolderMessage.g.cs","v1.0","New-MgUserMailFolderMessage","POST","/users/{param}/mailFolders/{param}/messages","matched","New-MgUserMailFolderMessage" +"Mail","NewMgUserMailFolderMessageAttachment.g.cs","v1.0","New-MgUserMailFolderMessageAttachment","POST","/users/{param}/mailFolders/{param}/messages/{param}/attachments","matched","New-MgUserMailFolderMessageAttachment" +"Mail","NewMgUserMailFolderMessageExtension.g.cs","v1.0","New-MgUserMailFolderMessageExtension","POST","/users/{param}/mailFolders/{param}/messages/{param}/extensions","matched","New-MgUserMailFolderMessageExtension" +"Mail","NewMgUserMailFolderMessageRule.g.cs","v1.0","New-MgUserMailFolderMessageRule","POST","/users/{param}/mailFolders/{param}/messageRules","matched","New-MgUserMailFolderMessageRule" +"Mail","NewMgUserMessage.g.cs","v1.0","New-MgUserMessage","POST","/users/{param}/messages","matched","New-MgUserMessage" +"Mail","NewMgUserMessageAttachment.g.cs","v1.0","New-MgUserMessageAttachment","POST","/users/{param}/messages/{param}/attachments","matched","New-MgUserMessageAttachment" +"Mail","NewMgUserMessageExtension.g.cs","v1.0","New-MgUserMessageExtension","POST","/users/{param}/messages/{param}/extensions","matched","New-MgUserMessageExtension" +"Mail","RemoveMgUserInferenceClassificationOverride.g.cs","v1.0","Remove-MgUserInferenceClassificationOverride","DELETE","/users/{param}/inferenceClassification/overrides/{param}","matched","Remove-MgUserInferenceClassificationOverride" +"Mail","RemoveMgUserMailFolder.g.cs","v1.0","Remove-MgUserMailFolder","DELETE","/users/{param}/mailFolders/{param}","matched","Remove-MgUserMailFolder" +"Mail","RemoveMgUserMailFolderChildFolder.g.cs","v1.0","Remove-MgUserMailFolderChildFolder","DELETE","/users/{param}/mailFolders/{param}/childFolders/{param}","matched","Remove-MgUserMailFolderChildFolder" +"Mail","RemoveMgUserMailFolderChildFolderMessage.g.cs","v1.0","Remove-MgUserMailFolderChildFolderMessage","DELETE","/users/{param}/mailFolders/{param}/childFolders/{param}/messages/{param}","matched","Remove-MgUserMailFolderChildFolderMessage" +"Mail","RemoveMgUserMailFolderChildFolderMessageAttachment.g.cs","v1.0","Remove-MgUserMailFolderChildFolderMessageAttachment","DELETE","/users/{param}/mailFolders/{param}/childFolders/{param}/messages/{param}/attachments/{param}","matched","Remove-MgUserMailFolderChildFolderMessageAttachment" +"Mail","RemoveMgUserMailFolderChildFolderMessageContent.g.cs","v1.0","Remove-MgUserMailFolderChildFolderMessageContent","DELETE","/users/{param}/mailFolders/{param}/childFolders/{param}/messages/{param}/$value","matched","Remove-MgUserMailFolderChildFolderMessageContent" +"Mail","RemoveMgUserMailFolderChildFolderMessageExtension.g.cs","v1.0","Remove-MgUserMailFolderChildFolderMessageExtension","DELETE","/users/{param}/mailFolders/{param}/childFolders/{param}/messages/{param}/extensions/{param}","matched","Remove-MgUserMailFolderChildFolderMessageExtension" +"Mail","RemoveMgUserMailFolderChildFolderMessageRule.g.cs","v1.0","Remove-MgUserMailFolderChildFolderMessageRule","DELETE","/users/{param}/mailFolders/{param}/childFolders/{param}/messageRules/{param}","matched","Remove-MgUserMailFolderChildFolderMessageRule" +"Mail","RemoveMgUserMailFolderMessage.g.cs","v1.0","Remove-MgUserMailFolderMessage","DELETE","/users/{param}/mailFolders/{param}/messages/{param}","matched","Remove-MgUserMailFolderMessage" +"Mail","RemoveMgUserMailFolderMessageAttachment.g.cs","v1.0","Remove-MgUserMailFolderMessageAttachment","DELETE","/users/{param}/mailFolders/{param}/messages/{param}/attachments/{param}","matched","Remove-MgUserMailFolderMessageAttachment" +"Mail","RemoveMgUserMailFolderMessageContent.g.cs","v1.0","Remove-MgUserMailFolderMessageContent","DELETE","/users/{param}/mailFolders/{param}/messages/{param}/$value","matched","Remove-MgUserMailFolderMessageContent" +"Mail","RemoveMgUserMailFolderMessageExtension.g.cs","v1.0","Remove-MgUserMailFolderMessageExtension","DELETE","/users/{param}/mailFolders/{param}/messages/{param}/extensions/{param}","matched","Remove-MgUserMailFolderMessageExtension" +"Mail","RemoveMgUserMailFolderMessageRule.g.cs","v1.0","Remove-MgUserMailFolderMessageRule","DELETE","/users/{param}/mailFolders/{param}/messageRules/{param}","matched","Remove-MgUserMailFolderMessageRule" +"Mail","RemoveMgUserMessage.g.cs","v1.0","Remove-MgUserMessage","DELETE","/users/{param}/messages/{param}","matched","Remove-MgUserMessage" +"Mail","RemoveMgUserMessageAttachment.g.cs","v1.0","Remove-MgUserMessageAttachment","DELETE","/users/{param}/messages/{param}/attachments/{param}","matched","Remove-MgUserMessageAttachment" +"Mail","RemoveMgUserMessageContent.g.cs","v1.0","Remove-MgUserMessageContent","DELETE","/users/{param}/messages/{param}/$value","matched","Remove-MgUserMessageContent" +"Mail","RemoveMgUserMessageExtension.g.cs","v1.0","Remove-MgUserMessageExtension","DELETE","/users/{param}/messages/{param}/extensions/{param}","matched","Remove-MgUserMessageExtension" +"Mail","UpdateMgUserInferenceClassification.g.cs","v1.0","Update-MgUserInferenceClassification","PATCH","/users/{param}/inferenceClassification","matched","Update-MgUserInferenceClassification" +"Mail","UpdateMgUserInferenceClassificationOverride.g.cs","v1.0","Update-MgUserInferenceClassificationOverride","PATCH","/users/{param}/inferenceClassification/overrides/{param}","matched","Update-MgUserInferenceClassificationOverride" +"Mail","UpdateMgUserMailFolder.g.cs","v1.0","Update-MgUserMailFolder","PATCH","/users/{param}/mailFolders/{param}","matched","Update-MgUserMailFolder" +"Mail","UpdateMgUserMailFolderChildFolder.g.cs","v1.0","Update-MgUserMailFolderChildFolder","PATCH","/users/{param}/mailFolders/{param}/childFolders/{param}","matched","Update-MgUserMailFolderChildFolder" +"Mail","UpdateMgUserMailFolderChildFolderMessage.g.cs","v1.0","Update-MgUserMailFolderChildFolderMessage","PATCH","/users/{param}/mailFolders/{param}/childFolders/{param}/messages/{param}","matched","Update-MgUserMailFolderChildFolderMessage" +"Mail","UpdateMgUserMailFolderChildFolderMessageExtension.g.cs","v1.0","Update-MgUserMailFolderChildFolderMessageExtension","PATCH","/users/{param}/mailFolders/{param}/childFolders/{param}/messages/{param}/extensions/{param}","matched","Update-MgUserMailFolderChildFolderMessageExtension" +"Mail","UpdateMgUserMailFolderChildFolderMessageRule.g.cs","v1.0","Update-MgUserMailFolderChildFolderMessageRule","PATCH","/users/{param}/mailFolders/{param}/childFolders/{param}/messageRules/{param}","matched","Update-MgUserMailFolderChildFolderMessageRule" +"Mail","UpdateMgUserMailFolderMessage.g.cs","v1.0","Update-MgUserMailFolderMessage","PATCH","/users/{param}/mailFolders/{param}/messages/{param}","matched","Update-MgUserMailFolderMessage" +"Mail","UpdateMgUserMailFolderMessageExtension.g.cs","v1.0","Update-MgUserMailFolderMessageExtension","PATCH","/users/{param}/mailFolders/{param}/messages/{param}/extensions/{param}","matched","Update-MgUserMailFolderMessageExtension" +"Mail","UpdateMgUserMailFolderMessageRule.g.cs","v1.0","Update-MgUserMailFolderMessageRule","PATCH","/users/{param}/mailFolders/{param}/messageRules/{param}","matched","Update-MgUserMailFolderMessageRule" +"Mail","UpdateMgUserMessage.g.cs","v1.0","Update-MgUserMessage","PATCH","/users/{param}/messages/{param}","matched","Update-MgUserMessage" +"Mail","UpdateMgUserMessageExtension.g.cs","v1.0","Update-MgUserMessageExtension","PATCH","/users/{param}/messages/{param}/extensions/{param}","matched","Update-MgUserMessageExtension" +"Notes","GetMgGroupOnenote.g.cs","v1.0","Get-MgGroupOnenote","GET","/groups/{param}/onenote","matched","Get-MgGroupOnenote" +"Notes","GetMgGroupOnenoteNotebook_Get.g.cs","v1.0","Get-MgGroupOnenoteNotebook","GET","/groups/{param}/onenote/notebooks/{param}","matched","Get-MgGroupOnenoteNotebook" +"Notes","GetMgGroupOnenoteNotebook_List.g.cs","v1.0","Get-MgGroupOnenoteNotebook","GET","/groups/{param}/onenote/notebooks","matched","Get-MgGroupOnenoteNotebook" +"Notes","GetMgGroupOnenoteNotebook.g.cs","v1.0","Get-MgGroupOnenoteNotebook","","","dispatcher","" +"Notes","GetMgGroupOnenoteNotebookCount.g.cs","v1.0","Get-MgGroupOnenoteNotebookCount","GET","/groups/{param}/onenote/notebooks/$count","matched","Get-MgGroupOnenoteNotebookCount" +"Notes","GetMgGroupOnenoteNotebookGetRecentNotebooksWithIncludePersonalNotebooks.g.cs","v1.0","Get-MgGroupOnenoteNotebookGetRecentNotebooksWithIncludePersonalNotebooks","","","parameterized-function","" +"Notes","GetMgGroupOnenoteNotebookSection_Get.g.cs","v1.0","Get-MgGroupOnenoteNotebookSection","GET","/groups/{param}/onenote/notebooks/{param}/sections/{param}","matched","Get-MgGroupOnenoteNotebookSection" +"Notes","GetMgGroupOnenoteNotebookSection_List.g.cs","v1.0","Get-MgGroupOnenoteNotebookSection","GET","/groups/{param}/onenote/notebooks/{param}/sections","matched","Get-MgGroupOnenoteNotebookSection" +"Notes","GetMgGroupOnenoteNotebookSection.g.cs","v1.0","Get-MgGroupOnenoteNotebookSection","","","dispatcher","" +"Notes","GetMgGroupOnenoteNotebookSectionCount.g.cs","v1.0","Get-MgGroupOnenoteNotebookSectionCount","GET","/groups/{param}/onenote/notebooks/{param}/sections/$count","matched","Get-MgGroupOnenoteNotebookSectionCount" +"Notes","GetMgGroupOnenoteNotebookSectionGroup.g.cs","v1.0","Get-MgGroupOnenoteNotebookSectionGroup","GET","/groups/{param}/onenote/notebooks/{param}/sectionGroups","matched","Get-MgGroupOnenoteNotebookSectionGroup" +"Notes","GetMgGroupOnenoteNotebookSectionGroupCount.g.cs","v1.0","Get-MgGroupOnenoteNotebookSectionGroupCount","GET","/groups/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sectionGroups/$count","matched","Get-MgGroupOnenoteNotebookSectionGroupCount" +"Notes","GetMgGroupOnenoteNotebookSectionGroupParentNotebook.g.cs","v1.0","Get-MgGroupOnenoteNotebookSectionGroupParentNotebook","GET","/groups/{param}/onenote/notebooks/{param}/sectionGroups/{param}/parentNotebook","matched","Get-MgGroupOnenoteNotebookSectionGroupParentNotebook" +"Notes","GetMgGroupOnenoteNotebookSectionGroupParentSectionGroup.g.cs","v1.0","Get-MgGroupOnenoteNotebookSectionGroupParentSectionGroup","GET","/groups/{param}/onenote/notebooks/{param}/sectionGroups/{param}/parentSectionGroup","matched","Get-MgGroupOnenoteNotebookSectionGroupParentSectionGroup" +"Notes","GetMgGroupOnenoteNotebookSectionGroupSection_Get.g.cs","v1.0","Get-MgGroupOnenoteNotebookSectionGroupSection","GET","/groups/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}","matched","Get-MgGroupOnenoteNotebookSectionGroupSection" +"Notes","GetMgGroupOnenoteNotebookSectionGroupSection_List.g.cs","v1.0","Get-MgGroupOnenoteNotebookSectionGroupSection","GET","/groups/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections","matched","Get-MgGroupOnenoteNotebookSectionGroupSection" +"Notes","GetMgGroupOnenoteNotebookSectionGroupSection.g.cs","v1.0","Get-MgGroupOnenoteNotebookSectionGroupSection","","","dispatcher","" +"Notes","GetMgGroupOnenoteNotebookSectionGroupSectionCount.g.cs","v1.0","Get-MgGroupOnenoteNotebookSectionGroupSectionCount","GET","/groups/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/$count","matched","Get-MgGroupOnenoteNotebookSectionGroupSectionCount" +"Notes","GetMgGroupOnenoteNotebookSectionGroupSectionPage_Get.g.cs","v1.0","Get-MgGroupOnenoteNotebookSectionGroupSectionPage","GET","/groups/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}","matched","Get-MgGroupOnenoteNotebookSectionGroupSectionPage" +"Notes","GetMgGroupOnenoteNotebookSectionGroupSectionPage_List.g.cs","v1.0","Get-MgGroupOnenoteNotebookSectionGroupSectionPage","GET","/groups/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages","matched","Get-MgGroupOnenoteNotebookSectionGroupSectionPage" +"Notes","GetMgGroupOnenoteNotebookSectionGroupSectionPage.g.cs","v1.0","Get-MgGroupOnenoteNotebookSectionGroupSectionPage","","","dispatcher","" +"Notes","GetMgGroupOnenoteNotebookSectionGroupSectionPageCount.g.cs","v1.0","Get-MgGroupOnenoteNotebookSectionGroupSectionPageCount","GET","/groups/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/$count","matched","Get-MgGroupOnenoteNotebookSectionGroupSectionPageCount" +"Notes","GetMgGroupOnenoteNotebookSectionGroupSectionPageParentNotebook.g.cs","v1.0","Get-MgGroupOnenoteNotebookSectionGroupSectionPageParentNotebook","GET","/groups/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}/parentNotebook","matched","Get-MgGroupOnenoteNotebookSectionGroupSectionPageParentNotebook" +"Notes","GetMgGroupOnenoteNotebookSectionGroupSectionPageParentSection.g.cs","v1.0","Get-MgGroupOnenoteNotebookSectionGroupSectionPageParentSection","GET","/groups/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}/parentSection","matched","Get-MgGroupOnenoteNotebookSectionGroupSectionPageParentSection" +"Notes","GetMgGroupOnenoteNotebookSectionGroupSectionPagePreview.g.cs","v1.0","Get-MgGroupOnenoteNotebookSectionGroupSectionPagePreview","GET","/groups/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}/preview","mismatch","Invoke-MgPreviewGroupOnenoteNotebookSectionGroupSectionPage" +"Notes","GetMgGroupOnenoteNotebookSectionGroupSectionParentNotebook.g.cs","v1.0","Get-MgGroupOnenoteNotebookSectionGroupSectionParentNotebook","GET","/groups/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/parentNotebook","matched","Get-MgGroupOnenoteNotebookSectionGroupSectionParentNotebook" +"Notes","GetMgGroupOnenoteNotebookSectionGroupSectionParentSectionGroup.g.cs","v1.0","Get-MgGroupOnenoteNotebookSectionGroupSectionParentSectionGroup","GET","/groups/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/parentSectionGroup","matched","Get-MgGroupOnenoteNotebookSectionGroupSectionParentSectionGroup" +"Notes","GetMgGroupOnenoteNotebookSectionPage_Get.g.cs","v1.0","Get-MgGroupOnenoteNotebookSectionPage","GET","/groups/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}","matched","Get-MgGroupOnenoteNotebookSectionPage" +"Notes","GetMgGroupOnenoteNotebookSectionPage_List.g.cs","v1.0","Get-MgGroupOnenoteNotebookSectionPage","GET","/groups/{param}/onenote/notebooks/{param}/sections/{param}/pages","matched","Get-MgGroupOnenoteNotebookSectionPage" +"Notes","GetMgGroupOnenoteNotebookSectionPage.g.cs","v1.0","Get-MgGroupOnenoteNotebookSectionPage","","","dispatcher","" +"Notes","GetMgGroupOnenoteNotebookSectionPageCount.g.cs","v1.0","Get-MgGroupOnenoteNotebookSectionPageCount","GET","/groups/{param}/onenote/notebooks/{param}/sections/{param}/pages/$count","matched","Get-MgGroupOnenoteNotebookSectionPageCount" +"Notes","GetMgGroupOnenoteNotebookSectionPageParentNotebook.g.cs","v1.0","Get-MgGroupOnenoteNotebookSectionPageParentNotebook","GET","/groups/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}/parentNotebook","matched","Get-MgGroupOnenoteNotebookSectionPageParentNotebook" +"Notes","GetMgGroupOnenoteNotebookSectionPageParentSection.g.cs","v1.0","Get-MgGroupOnenoteNotebookSectionPageParentSection","GET","/groups/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}/parentSection","matched","Get-MgGroupOnenoteNotebookSectionPageParentSection" +"Notes","GetMgGroupOnenoteNotebookSectionPagePreview.g.cs","v1.0","Get-MgGroupOnenoteNotebookSectionPagePreview","GET","/groups/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}/preview","mismatch","Invoke-MgPreviewGroupOnenoteNotebookSectionPage" +"Notes","GetMgGroupOnenoteNotebookSectionParentNotebook.g.cs","v1.0","Get-MgGroupOnenoteNotebookSectionParentNotebook","GET","/groups/{param}/onenote/notebooks/{param}/sections/{param}/parentNotebook","matched","Get-MgGroupOnenoteNotebookSectionParentNotebook" +"Notes","GetMgGroupOnenoteNotebookSectionParentSectionGroup.g.cs","v1.0","Get-MgGroupOnenoteNotebookSectionParentSectionGroup","GET","/groups/{param}/onenote/notebooks/{param}/sections/{param}/parentSectionGroup","matched","Get-MgGroupOnenoteNotebookSectionParentSectionGroup" +"Notes","GetMgGroupOnenoteOperation_Get.g.cs","v1.0","Get-MgGroupOnenoteOperation","GET","/groups/{param}/onenote/operations/{param}","matched","Get-MgGroupOnenoteOperation" +"Notes","GetMgGroupOnenoteOperation_List.g.cs","v1.0","Get-MgGroupOnenoteOperation","GET","/groups/{param}/onenote/operations","matched","Get-MgGroupOnenoteOperation" +"Notes","GetMgGroupOnenoteOperation.g.cs","v1.0","Get-MgGroupOnenoteOperation","","","dispatcher","" +"Notes","GetMgGroupOnenoteOperationCount.g.cs","v1.0","Get-MgGroupOnenoteOperationCount","GET","/groups/{param}/onenote/operations/$count","matched","Get-MgGroupOnenoteOperationCount" +"Notes","GetMgGroupOnenotePage_Get.g.cs","v1.0","Get-MgGroupOnenotePage","GET","/groups/{param}/onenote/pages/{param}","matched","Get-MgGroupOnenotePage" +"Notes","GetMgGroupOnenotePage_List.g.cs","v1.0","Get-MgGroupOnenotePage","GET","/groups/{param}/onenote/pages","matched","Get-MgGroupOnenotePage" +"Notes","GetMgGroupOnenotePage.g.cs","v1.0","Get-MgGroupOnenotePage","","","dispatcher","" +"Notes","GetMgGroupOnenotePageCount.g.cs","v1.0","Get-MgGroupOnenotePageCount","GET","/groups/{param}/onenote/pages/$count","matched","Get-MgGroupOnenotePageCount" +"Notes","GetMgGroupOnenotePageParentNotebook.g.cs","v1.0","Get-MgGroupOnenotePageParentNotebook","GET","/groups/{param}/onenote/pages/{param}/parentNotebook","matched","Get-MgGroupOnenotePageParentNotebook" +"Notes","GetMgGroupOnenotePageParentSection.g.cs","v1.0","Get-MgGroupOnenotePageParentSection","GET","/groups/{param}/onenote/pages/{param}/parentSection","matched","Get-MgGroupOnenotePageParentSection" +"Notes","GetMgGroupOnenotePagePreview.g.cs","v1.0","Get-MgGroupOnenotePagePreview","GET","/groups/{param}/onenote/pages/{param}/preview","mismatch","Invoke-MgPreviewGroupOnenotePage" +"Notes","GetMgGroupOnenoteResource_Get.g.cs","v1.0","Get-MgGroupOnenoteResource","GET","/groups/{param}/onenote/resources/{param}","matched","Get-MgGroupOnenoteResource" +"Notes","GetMgGroupOnenoteResource_List.g.cs","v1.0","Get-MgGroupOnenoteResource","GET","/groups/{param}/onenote/resources","matched","Get-MgGroupOnenoteResource" +"Notes","GetMgGroupOnenoteResource.g.cs","v1.0","Get-MgGroupOnenoteResource","","","dispatcher","" +"Notes","GetMgGroupOnenoteResourceCount.g.cs","v1.0","Get-MgGroupOnenoteResourceCount","GET","/groups/{param}/onenote/resources/$count","matched","Get-MgGroupOnenoteResourceCount" +"Notes","GetMgGroupOnenoteSection_Get.g.cs","v1.0","Get-MgGroupOnenoteSection","GET","/groups/{param}/onenote/sections/{param}","matched","Get-MgGroupOnenoteSection" +"Notes","GetMgGroupOnenoteSection_List.g.cs","v1.0","Get-MgGroupOnenoteSection","GET","/groups/{param}/onenote/sections","matched","Get-MgGroupOnenoteSection" +"Notes","GetMgGroupOnenoteSection.g.cs","v1.0","Get-MgGroupOnenoteSection","","","dispatcher","" +"Notes","GetMgGroupOnenoteSectionCount.g.cs","v1.0","Get-MgGroupOnenoteSectionCount","GET","/groups/{param}/onenote/sections/$count","matched","Get-MgGroupOnenoteSectionCount" +"Notes","GetMgGroupOnenoteSectionGroup.g.cs","v1.0","Get-MgGroupOnenoteSectionGroup","GET","/groups/{param}/onenote/sectionGroups","matched","Get-MgGroupOnenoteSectionGroup" +"Notes","GetMgGroupOnenoteSectionGroupCount.g.cs","v1.0","Get-MgGroupOnenoteSectionGroupCount","GET","/groups/{param}/onenote/sectionGroups/{param}/sectionGroups/$count","matched","Get-MgGroupOnenoteSectionGroupCount" +"Notes","GetMgGroupOnenoteSectionGroupParentNotebook.g.cs","v1.0","Get-MgGroupOnenoteSectionGroupParentNotebook","GET","/groups/{param}/onenote/sectionGroups/{param}/parentNotebook","matched","Get-MgGroupOnenoteSectionGroupParentNotebook" +"Notes","GetMgGroupOnenoteSectionGroupParentSectionGroup.g.cs","v1.0","Get-MgGroupOnenoteSectionGroupParentSectionGroup","GET","/groups/{param}/onenote/sectionGroups/{param}/parentSectionGroup","matched","Get-MgGroupOnenoteSectionGroupParentSectionGroup" +"Notes","GetMgGroupOnenoteSectionGroupSection_Get.g.cs","v1.0","Get-MgGroupOnenoteSectionGroupSection","GET","/groups/{param}/onenote/sectionGroups/{param}/sections/{param}","matched","Get-MgGroupOnenoteSectionGroupSection" +"Notes","GetMgGroupOnenoteSectionGroupSection_List.g.cs","v1.0","Get-MgGroupOnenoteSectionGroupSection","GET","/groups/{param}/onenote/sectionGroups/{param}/sections","matched","Get-MgGroupOnenoteSectionGroupSection" +"Notes","GetMgGroupOnenoteSectionGroupSection.g.cs","v1.0","Get-MgGroupOnenoteSectionGroupSection","","","dispatcher","" +"Notes","GetMgGroupOnenoteSectionGroupSectionCount.g.cs","v1.0","Get-MgGroupOnenoteSectionGroupSectionCount","GET","/groups/{param}/onenote/sectionGroups/{param}/sections/$count","matched","Get-MgGroupOnenoteSectionGroupSectionCount" +"Notes","GetMgGroupOnenoteSectionGroupSectionPage_Get.g.cs","v1.0","Get-MgGroupOnenoteSectionGroupSectionPage","GET","/groups/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}","matched","Get-MgGroupOnenoteSectionGroupSectionPage" +"Notes","GetMgGroupOnenoteSectionGroupSectionPage_List.g.cs","v1.0","Get-MgGroupOnenoteSectionGroupSectionPage","GET","/groups/{param}/onenote/sectionGroups/{param}/sections/{param}/pages","matched","Get-MgGroupOnenoteSectionGroupSectionPage" +"Notes","GetMgGroupOnenoteSectionGroupSectionPage.g.cs","v1.0","Get-MgGroupOnenoteSectionGroupSectionPage","","","dispatcher","" +"Notes","GetMgGroupOnenoteSectionGroupSectionPageCount.g.cs","v1.0","Get-MgGroupOnenoteSectionGroupSectionPageCount","GET","/groups/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/$count","matched","Get-MgGroupOnenoteSectionGroupSectionPageCount" +"Notes","GetMgGroupOnenoteSectionGroupSectionPageParentNotebook.g.cs","v1.0","Get-MgGroupOnenoteSectionGroupSectionPageParentNotebook","GET","/groups/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}/parentNotebook","matched","Get-MgGroupOnenoteSectionGroupSectionPageParentNotebook" +"Notes","GetMgGroupOnenoteSectionGroupSectionPageParentSection.g.cs","v1.0","Get-MgGroupOnenoteSectionGroupSectionPageParentSection","GET","/groups/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}/parentSection","matched","Get-MgGroupOnenoteSectionGroupSectionPageParentSection" +"Notes","GetMgGroupOnenoteSectionGroupSectionPagePreview.g.cs","v1.0","Get-MgGroupOnenoteSectionGroupSectionPagePreview","GET","/groups/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}/preview","mismatch","Invoke-MgPreviewGroupOnenoteSectionGroupSectionPage" +"Notes","GetMgGroupOnenoteSectionGroupSectionParentNotebook.g.cs","v1.0","Get-MgGroupOnenoteSectionGroupSectionParentNotebook","GET","/groups/{param}/onenote/sectionGroups/{param}/sections/{param}/parentNotebook","matched","Get-MgGroupOnenoteSectionGroupSectionParentNotebook" +"Notes","GetMgGroupOnenoteSectionGroupSectionParentSectionGroup.g.cs","v1.0","Get-MgGroupOnenoteSectionGroupSectionParentSectionGroup","GET","/groups/{param}/onenote/sectionGroups/{param}/sections/{param}/parentSectionGroup","matched","Get-MgGroupOnenoteSectionGroupSectionParentSectionGroup" +"Notes","GetMgGroupOnenoteSectionPage_Get.g.cs","v1.0","Get-MgGroupOnenoteSectionPage","GET","/groups/{param}/onenote/sections/{param}/pages/{param}","matched","Get-MgGroupOnenoteSectionPage" +"Notes","GetMgGroupOnenoteSectionPage_List.g.cs","v1.0","Get-MgGroupOnenoteSectionPage","GET","/groups/{param}/onenote/sections/{param}/pages","matched","Get-MgGroupOnenoteSectionPage" +"Notes","GetMgGroupOnenoteSectionPage.g.cs","v1.0","Get-MgGroupOnenoteSectionPage","","","dispatcher","" +"Notes","GetMgGroupOnenoteSectionPageCount.g.cs","v1.0","Get-MgGroupOnenoteSectionPageCount","GET","/groups/{param}/onenote/sections/{param}/pages/$count","matched","Get-MgGroupOnenoteSectionPageCount" +"Notes","GetMgGroupOnenoteSectionPageParentNotebook.g.cs","v1.0","Get-MgGroupOnenoteSectionPageParentNotebook","GET","/groups/{param}/onenote/sections/{param}/pages/{param}/parentNotebook","matched","Get-MgGroupOnenoteSectionPageParentNotebook" +"Notes","GetMgGroupOnenoteSectionPageParentSection.g.cs","v1.0","Get-MgGroupOnenoteSectionPageParentSection","GET","/groups/{param}/onenote/sections/{param}/pages/{param}/parentSection","matched","Get-MgGroupOnenoteSectionPageParentSection" +"Notes","GetMgGroupOnenoteSectionPagePreview.g.cs","v1.0","Get-MgGroupOnenoteSectionPagePreview","GET","/groups/{param}/onenote/sections/{param}/pages/{param}/preview","mismatch","Invoke-MgPreviewGroupOnenoteSectionPage" +"Notes","GetMgGroupOnenoteSectionParentNotebook.g.cs","v1.0","Get-MgGroupOnenoteSectionParentNotebook","GET","/groups/{param}/onenote/sections/{param}/parentNotebook","matched","Get-MgGroupOnenoteSectionParentNotebook" +"Notes","GetMgGroupOnenoteSectionParentSectionGroup.g.cs","v1.0","Get-MgGroupOnenoteSectionParentSectionGroup","GET","/groups/{param}/onenote/sections/{param}/parentSectionGroup","matched","Get-MgGroupOnenoteSectionParentSectionGroup" +"Notes","GetMgSiteOnenote.g.cs","v1.0","Get-MgSiteOnenote","GET","/sites/{param}/onenote","matched","Get-MgSiteOnenote" +"Notes","GetMgSiteOnenoteNotebook_Get.g.cs","v1.0","Get-MgSiteOnenoteNotebook","GET","/sites/{param}/onenote/notebooks/{param}","matched","Get-MgSiteOnenoteNotebook" +"Notes","GetMgSiteOnenoteNotebook_List.g.cs","v1.0","Get-MgSiteOnenoteNotebook","GET","/sites/{param}/onenote/notebooks","matched","Get-MgSiteOnenoteNotebook" +"Notes","GetMgSiteOnenoteNotebook.g.cs","v1.0","Get-MgSiteOnenoteNotebook","","","dispatcher","" +"Notes","GetMgSiteOnenoteNotebookCount.g.cs","v1.0","Get-MgSiteOnenoteNotebookCount","GET","/sites/{param}/onenote/notebooks/$count","matched","Get-MgSiteOnenoteNotebookCount" +"Notes","GetMgSiteOnenoteNotebookGetRecentNotebooksWithIncludePersonalNotebooks.g.cs","v1.0","Get-MgSiteOnenoteNotebookGetRecentNotebooksWithIncludePersonalNotebooks","","","parameterized-function","" +"Notes","GetMgSiteOnenoteNotebookSection_Get.g.cs","v1.0","Get-MgSiteOnenoteNotebookSection","GET","/sites/{param}/onenote/notebooks/{param}/sections/{param}","matched","Get-MgSiteOnenoteNotebookSection" +"Notes","GetMgSiteOnenoteNotebookSection_List.g.cs","v1.0","Get-MgSiteOnenoteNotebookSection","GET","/sites/{param}/onenote/notebooks/{param}/sections","matched","Get-MgSiteOnenoteNotebookSection" +"Notes","GetMgSiteOnenoteNotebookSection.g.cs","v1.0","Get-MgSiteOnenoteNotebookSection","","","dispatcher","" +"Notes","GetMgSiteOnenoteNotebookSectionCount.g.cs","v1.0","Get-MgSiteOnenoteNotebookSectionCount","GET","/sites/{param}/onenote/notebooks/{param}/sections/$count","matched","Get-MgSiteOnenoteNotebookSectionCount" +"Notes","GetMgSiteOnenoteNotebookSectionGroup.g.cs","v1.0","Get-MgSiteOnenoteNotebookSectionGroup","GET","/sites/{param}/onenote/notebooks/{param}/sectionGroups","matched","Get-MgSiteOnenoteNotebookSectionGroup" +"Notes","GetMgSiteOnenoteNotebookSectionGroupCount.g.cs","v1.0","Get-MgSiteOnenoteNotebookSectionGroupCount","GET","/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sectionGroups/$count","matched","Get-MgSiteOnenoteNotebookSectionGroupCount" +"Notes","GetMgSiteOnenoteNotebookSectionGroupParentNotebook.g.cs","v1.0","Get-MgSiteOnenoteNotebookSectionGroupParentNotebook","GET","/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/parentNotebook","matched","Get-MgSiteOnenoteNotebookSectionGroupParentNotebook" +"Notes","GetMgSiteOnenoteNotebookSectionGroupParentSectionGroup.g.cs","v1.0","Get-MgSiteOnenoteNotebookSectionGroupParentSectionGroup","GET","/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/parentSectionGroup","matched","Get-MgSiteOnenoteNotebookSectionGroupParentSectionGroup" +"Notes","GetMgSiteOnenoteNotebookSectionGroupSection_Get.g.cs","v1.0","Get-MgSiteOnenoteNotebookSectionGroupSection","GET","/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}","matched","Get-MgSiteOnenoteNotebookSectionGroupSection" +"Notes","GetMgSiteOnenoteNotebookSectionGroupSection_List.g.cs","v1.0","Get-MgSiteOnenoteNotebookSectionGroupSection","GET","/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections","matched","Get-MgSiteOnenoteNotebookSectionGroupSection" +"Notes","GetMgSiteOnenoteNotebookSectionGroupSection.g.cs","v1.0","Get-MgSiteOnenoteNotebookSectionGroupSection","","","dispatcher","" +"Notes","GetMgSiteOnenoteNotebookSectionGroupSectionCount.g.cs","v1.0","Get-MgSiteOnenoteNotebookSectionGroupSectionCount","GET","/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/$count","matched","Get-MgSiteOnenoteNotebookSectionGroupSectionCount" +"Notes","GetMgSiteOnenoteNotebookSectionGroupSectionPage_Get.g.cs","v1.0","Get-MgSiteOnenoteNotebookSectionGroupSectionPage","GET","/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}","matched","Get-MgSiteOnenoteNotebookSectionGroupSectionPage" +"Notes","GetMgSiteOnenoteNotebookSectionGroupSectionPage_List.g.cs","v1.0","Get-MgSiteOnenoteNotebookSectionGroupSectionPage","GET","/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages","matched","Get-MgSiteOnenoteNotebookSectionGroupSectionPage" +"Notes","GetMgSiteOnenoteNotebookSectionGroupSectionPage.g.cs","v1.0","Get-MgSiteOnenoteNotebookSectionGroupSectionPage","","","dispatcher","" +"Notes","GetMgSiteOnenoteNotebookSectionGroupSectionPageCount.g.cs","v1.0","Get-MgSiteOnenoteNotebookSectionGroupSectionPageCount","GET","/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/$count","matched","Get-MgSiteOnenoteNotebookSectionGroupSectionPageCount" +"Notes","GetMgSiteOnenoteNotebookSectionGroupSectionPageParentNotebook.g.cs","v1.0","Get-MgSiteOnenoteNotebookSectionGroupSectionPageParentNotebook","GET","/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}/parentNotebook","matched","Get-MgSiteOnenoteNotebookSectionGroupSectionPageParentNotebook" +"Notes","GetMgSiteOnenoteNotebookSectionGroupSectionPageParentSection.g.cs","v1.0","Get-MgSiteOnenoteNotebookSectionGroupSectionPageParentSection","GET","/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}/parentSection","matched","Get-MgSiteOnenoteNotebookSectionGroupSectionPageParentSection" +"Notes","GetMgSiteOnenoteNotebookSectionGroupSectionPagePreview.g.cs","v1.0","Get-MgSiteOnenoteNotebookSectionGroupSectionPagePreview","GET","/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}/preview","mismatch","Invoke-MgPreviewSiteOnenoteNotebookSectionGroupSectionPage" +"Notes","GetMgSiteOnenoteNotebookSectionGroupSectionParentNotebook.g.cs","v1.0","Get-MgSiteOnenoteNotebookSectionGroupSectionParentNotebook","GET","/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/parentNotebook","matched","Get-MgSiteOnenoteNotebookSectionGroupSectionParentNotebook" +"Notes","GetMgSiteOnenoteNotebookSectionGroupSectionParentSectionGroup.g.cs","v1.0","Get-MgSiteOnenoteNotebookSectionGroupSectionParentSectionGroup","GET","/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/parentSectionGroup","matched","Get-MgSiteOnenoteNotebookSectionGroupSectionParentSectionGroup" +"Notes","GetMgSiteOnenoteNotebookSectionPage_Get.g.cs","v1.0","Get-MgSiteOnenoteNotebookSectionPage","GET","/sites/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}","matched","Get-MgSiteOnenoteNotebookSectionPage" +"Notes","GetMgSiteOnenoteNotebookSectionPage_List.g.cs","v1.0","Get-MgSiteOnenoteNotebookSectionPage","GET","/sites/{param}/onenote/notebooks/{param}/sections/{param}/pages","matched","Get-MgSiteOnenoteNotebookSectionPage" +"Notes","GetMgSiteOnenoteNotebookSectionPage.g.cs","v1.0","Get-MgSiteOnenoteNotebookSectionPage","","","dispatcher","" +"Notes","GetMgSiteOnenoteNotebookSectionPageCount.g.cs","v1.0","Get-MgSiteOnenoteNotebookSectionPageCount","GET","/sites/{param}/onenote/notebooks/{param}/sections/{param}/pages/$count","matched","Get-MgSiteOnenoteNotebookSectionPageCount" +"Notes","GetMgSiteOnenoteNotebookSectionPageParentNotebook.g.cs","v1.0","Get-MgSiteOnenoteNotebookSectionPageParentNotebook","GET","/sites/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}/parentNotebook","matched","Get-MgSiteOnenoteNotebookSectionPageParentNotebook" +"Notes","GetMgSiteOnenoteNotebookSectionPageParentSection.g.cs","v1.0","Get-MgSiteOnenoteNotebookSectionPageParentSection","GET","/sites/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}/parentSection","matched","Get-MgSiteOnenoteNotebookSectionPageParentSection" +"Notes","GetMgSiteOnenoteNotebookSectionPagePreview.g.cs","v1.0","Get-MgSiteOnenoteNotebookSectionPagePreview","GET","/sites/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}/preview","mismatch","Invoke-MgPreviewSiteOnenoteNotebookSectionPage" +"Notes","GetMgSiteOnenoteNotebookSectionParentNotebook.g.cs","v1.0","Get-MgSiteOnenoteNotebookSectionParentNotebook","GET","/sites/{param}/onenote/notebooks/{param}/sections/{param}/parentNotebook","matched","Get-MgSiteOnenoteNotebookSectionParentNotebook" +"Notes","GetMgSiteOnenoteNotebookSectionParentSectionGroup.g.cs","v1.0","Get-MgSiteOnenoteNotebookSectionParentSectionGroup","GET","/sites/{param}/onenote/notebooks/{param}/sections/{param}/parentSectionGroup","matched","Get-MgSiteOnenoteNotebookSectionParentSectionGroup" +"Notes","GetMgSiteOnenoteOperation_Get.g.cs","v1.0","Get-MgSiteOnenoteOperation","GET","/sites/{param}/onenote/operations/{param}","matched","Get-MgSiteOnenoteOperation" +"Notes","GetMgSiteOnenoteOperation_List.g.cs","v1.0","Get-MgSiteOnenoteOperation","GET","/sites/{param}/onenote/operations","matched","Get-MgSiteOnenoteOperation" +"Notes","GetMgSiteOnenoteOperation.g.cs","v1.0","Get-MgSiteOnenoteOperation","","","dispatcher","" +"Notes","GetMgSiteOnenoteOperationCount.g.cs","v1.0","Get-MgSiteOnenoteOperationCount","GET","/sites/{param}/onenote/operations/$count","matched","Get-MgSiteOnenoteOperationCount" +"Notes","GetMgSiteOnenotePage_Get.g.cs","v1.0","Get-MgSiteOnenotePage","GET","/sites/{param}/onenote/pages/{param}","matched","Get-MgSiteOnenotePage" +"Notes","GetMgSiteOnenotePage_List.g.cs","v1.0","Get-MgSiteOnenotePage","GET","/sites/{param}/onenote/pages","matched","Get-MgSiteOnenotePage" +"Notes","GetMgSiteOnenotePage.g.cs","v1.0","Get-MgSiteOnenotePage","","","dispatcher","" +"Notes","GetMgSiteOnenotePageCount.g.cs","v1.0","Get-MgSiteOnenotePageCount","GET","/sites/{param}/onenote/pages/$count","matched","Get-MgSiteOnenotePageCount" +"Notes","GetMgSiteOnenotePageParentNotebook.g.cs","v1.0","Get-MgSiteOnenotePageParentNotebook","GET","/sites/{param}/onenote/pages/{param}/parentNotebook","matched","Get-MgSiteOnenotePageParentNotebook" +"Notes","GetMgSiteOnenotePageParentSection.g.cs","v1.0","Get-MgSiteOnenotePageParentSection","GET","/sites/{param}/onenote/pages/{param}/parentSection","matched","Get-MgSiteOnenotePageParentSection" +"Notes","GetMgSiteOnenotePagePreview.g.cs","v1.0","Get-MgSiteOnenotePagePreview","GET","/sites/{param}/onenote/pages/{param}/preview","mismatch","Invoke-MgPreviewSiteOnenotePage" +"Notes","GetMgSiteOnenoteResource_Get.g.cs","v1.0","Get-MgSiteOnenoteResource","GET","/sites/{param}/onenote/resources/{param}","matched","Get-MgSiteOnenoteResource" +"Notes","GetMgSiteOnenoteResource_List.g.cs","v1.0","Get-MgSiteOnenoteResource","GET","/sites/{param}/onenote/resources","matched","Get-MgSiteOnenoteResource" +"Notes","GetMgSiteOnenoteResource.g.cs","v1.0","Get-MgSiteOnenoteResource","","","dispatcher","" +"Notes","GetMgSiteOnenoteResourceCount.g.cs","v1.0","Get-MgSiteOnenoteResourceCount","GET","/sites/{param}/onenote/resources/$count","matched","Get-MgSiteOnenoteResourceCount" +"Notes","GetMgSiteOnenoteSection_Get.g.cs","v1.0","Get-MgSiteOnenoteSection","GET","/sites/{param}/onenote/sections/{param}","matched","Get-MgSiteOnenoteSection" +"Notes","GetMgSiteOnenoteSection_List.g.cs","v1.0","Get-MgSiteOnenoteSection","GET","/sites/{param}/onenote/sections","matched","Get-MgSiteOnenoteSection" +"Notes","GetMgSiteOnenoteSection.g.cs","v1.0","Get-MgSiteOnenoteSection","","","dispatcher","" +"Notes","GetMgSiteOnenoteSectionCount.g.cs","v1.0","Get-MgSiteOnenoteSectionCount","GET","/sites/{param}/onenote/sections/$count","matched","Get-MgSiteOnenoteSectionCount" +"Notes","GetMgSiteOnenoteSectionGroup.g.cs","v1.0","Get-MgSiteOnenoteSectionGroup","GET","/sites/{param}/onenote/sectionGroups","matched","Get-MgSiteOnenoteSectionGroup" +"Notes","GetMgSiteOnenoteSectionGroupCount.g.cs","v1.0","Get-MgSiteOnenoteSectionGroupCount","GET","/sites/{param}/onenote/sectionGroups/{param}/sectionGroups/$count","matched","Get-MgSiteOnenoteSectionGroupCount" +"Notes","GetMgSiteOnenoteSectionGroupParentNotebook.g.cs","v1.0","Get-MgSiteOnenoteSectionGroupParentNotebook","GET","/sites/{param}/onenote/sectionGroups/{param}/parentNotebook","matched","Get-MgSiteOnenoteSectionGroupParentNotebook" +"Notes","GetMgSiteOnenoteSectionGroupParentSectionGroup.g.cs","v1.0","Get-MgSiteOnenoteSectionGroupParentSectionGroup","GET","/sites/{param}/onenote/sectionGroups/{param}/parentSectionGroup","matched","Get-MgSiteOnenoteSectionGroupParentSectionGroup" +"Notes","GetMgSiteOnenoteSectionGroupSection_Get.g.cs","v1.0","Get-MgSiteOnenoteSectionGroupSection","GET","/sites/{param}/onenote/sectionGroups/{param}/sections/{param}","matched","Get-MgSiteOnenoteSectionGroupSection" +"Notes","GetMgSiteOnenoteSectionGroupSection_List.g.cs","v1.0","Get-MgSiteOnenoteSectionGroupSection","GET","/sites/{param}/onenote/sectionGroups/{param}/sections","matched","Get-MgSiteOnenoteSectionGroupSection" +"Notes","GetMgSiteOnenoteSectionGroupSection.g.cs","v1.0","Get-MgSiteOnenoteSectionGroupSection","","","dispatcher","" +"Notes","GetMgSiteOnenoteSectionGroupSectionCount.g.cs","v1.0","Get-MgSiteOnenoteSectionGroupSectionCount","GET","/sites/{param}/onenote/sectionGroups/{param}/sections/$count","matched","Get-MgSiteOnenoteSectionGroupSectionCount" +"Notes","GetMgSiteOnenoteSectionGroupSectionPage_Get.g.cs","v1.0","Get-MgSiteOnenoteSectionGroupSectionPage","GET","/sites/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}","matched","Get-MgSiteOnenoteSectionGroupSectionPage" +"Notes","GetMgSiteOnenoteSectionGroupSectionPage_List.g.cs","v1.0","Get-MgSiteOnenoteSectionGroupSectionPage","GET","/sites/{param}/onenote/sectionGroups/{param}/sections/{param}/pages","matched","Get-MgSiteOnenoteSectionGroupSectionPage" +"Notes","GetMgSiteOnenoteSectionGroupSectionPage.g.cs","v1.0","Get-MgSiteOnenoteSectionGroupSectionPage","","","dispatcher","" +"Notes","GetMgSiteOnenoteSectionGroupSectionPageCount.g.cs","v1.0","Get-MgSiteOnenoteSectionGroupSectionPageCount","GET","/sites/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/$count","matched","Get-MgSiteOnenoteSectionGroupSectionPageCount" +"Notes","GetMgSiteOnenoteSectionGroupSectionPageParentNotebook.g.cs","v1.0","Get-MgSiteOnenoteSectionGroupSectionPageParentNotebook","GET","/sites/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}/parentNotebook","matched","Get-MgSiteOnenoteSectionGroupSectionPageParentNotebook" +"Notes","GetMgSiteOnenoteSectionGroupSectionPageParentSection.g.cs","v1.0","Get-MgSiteOnenoteSectionGroupSectionPageParentSection","GET","/sites/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}/parentSection","matched","Get-MgSiteOnenoteSectionGroupSectionPageParentSection" +"Notes","GetMgSiteOnenoteSectionGroupSectionPagePreview.g.cs","v1.0","Get-MgSiteOnenoteSectionGroupSectionPagePreview","GET","/sites/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}/preview","mismatch","Invoke-MgPreviewSiteOnenoteSectionGroupSectionPage" +"Notes","GetMgSiteOnenoteSectionGroupSectionParentNotebook.g.cs","v1.0","Get-MgSiteOnenoteSectionGroupSectionParentNotebook","GET","/sites/{param}/onenote/sectionGroups/{param}/sections/{param}/parentNotebook","matched","Get-MgSiteOnenoteSectionGroupSectionParentNotebook" +"Notes","GetMgSiteOnenoteSectionGroupSectionParentSectionGroup.g.cs","v1.0","Get-MgSiteOnenoteSectionGroupSectionParentSectionGroup","GET","/sites/{param}/onenote/sectionGroups/{param}/sections/{param}/parentSectionGroup","matched","Get-MgSiteOnenoteSectionGroupSectionParentSectionGroup" +"Notes","GetMgSiteOnenoteSectionPage_Get.g.cs","v1.0","Get-MgSiteOnenoteSectionPage","GET","/sites/{param}/onenote/sections/{param}/pages/{param}","matched","Get-MgSiteOnenoteSectionPage" +"Notes","GetMgSiteOnenoteSectionPage_List.g.cs","v1.0","Get-MgSiteOnenoteSectionPage","GET","/sites/{param}/onenote/sections/{param}/pages","matched","Get-MgSiteOnenoteSectionPage" +"Notes","GetMgSiteOnenoteSectionPage.g.cs","v1.0","Get-MgSiteOnenoteSectionPage","","","dispatcher","" +"Notes","GetMgSiteOnenoteSectionPageCount.g.cs","v1.0","Get-MgSiteOnenoteSectionPageCount","GET","/sites/{param}/onenote/sections/{param}/pages/$count","matched","Get-MgSiteOnenoteSectionPageCount" +"Notes","GetMgSiteOnenoteSectionPageParentNotebook.g.cs","v1.0","Get-MgSiteOnenoteSectionPageParentNotebook","GET","/sites/{param}/onenote/sections/{param}/pages/{param}/parentNotebook","matched","Get-MgSiteOnenoteSectionPageParentNotebook" +"Notes","GetMgSiteOnenoteSectionPageParentSection.g.cs","v1.0","Get-MgSiteOnenoteSectionPageParentSection","GET","/sites/{param}/onenote/sections/{param}/pages/{param}/parentSection","matched","Get-MgSiteOnenoteSectionPageParentSection" +"Notes","GetMgSiteOnenoteSectionPagePreview.g.cs","v1.0","Get-MgSiteOnenoteSectionPagePreview","GET","/sites/{param}/onenote/sections/{param}/pages/{param}/preview","mismatch","Invoke-MgPreviewSiteOnenoteSectionPage" +"Notes","GetMgSiteOnenoteSectionParentNotebook.g.cs","v1.0","Get-MgSiteOnenoteSectionParentNotebook","GET","/sites/{param}/onenote/sections/{param}/parentNotebook","matched","Get-MgSiteOnenoteSectionParentNotebook" +"Notes","GetMgSiteOnenoteSectionParentSectionGroup.g.cs","v1.0","Get-MgSiteOnenoteSectionParentSectionGroup","GET","/sites/{param}/onenote/sections/{param}/parentSectionGroup","matched","Get-MgSiteOnenoteSectionParentSectionGroup" +"Notes","GetMgUserOnenote.g.cs","v1.0","Get-MgUserOnenote","GET","/users/{param}/onenote","matched","Get-MgUserOnenote" +"Notes","GetMgUserOnenoteNotebook_Get.g.cs","v1.0","Get-MgUserOnenoteNotebook","GET","/users/{param}/onenote/notebooks/{param}","matched","Get-MgUserOnenoteNotebook" +"Notes","GetMgUserOnenoteNotebook_List.g.cs","v1.0","Get-MgUserOnenoteNotebook","GET","/users/{param}/onenote/notebooks","matched","Get-MgUserOnenoteNotebook" +"Notes","GetMgUserOnenoteNotebook.g.cs","v1.0","Get-MgUserOnenoteNotebook","","","dispatcher","" +"Notes","GetMgUserOnenoteNotebookCount.g.cs","v1.0","Get-MgUserOnenoteNotebookCount","GET","/users/{param}/onenote/notebooks/$count","matched","Get-MgUserOnenoteNotebookCount" +"Notes","GetMgUserOnenoteNotebookGetRecentNotebooksWithIncludePersonalNotebooks.g.cs","v1.0","Get-MgUserOnenoteNotebookGetRecentNotebooksWithIncludePersonalNotebooks","","","parameterized-function","" +"Notes","GetMgUserOnenoteNotebookSection_Get.g.cs","v1.0","Get-MgUserOnenoteNotebookSection","GET","/users/{param}/onenote/notebooks/{param}/sections/{param}","matched","Get-MgUserOnenoteNotebookSection" +"Notes","GetMgUserOnenoteNotebookSection_List.g.cs","v1.0","Get-MgUserOnenoteNotebookSection","GET","/users/{param}/onenote/notebooks/{param}/sections","matched","Get-MgUserOnenoteNotebookSection" +"Notes","GetMgUserOnenoteNotebookSection.g.cs","v1.0","Get-MgUserOnenoteNotebookSection","","","dispatcher","" +"Notes","GetMgUserOnenoteNotebookSectionCount.g.cs","v1.0","Get-MgUserOnenoteNotebookSectionCount","GET","/users/{param}/onenote/notebooks/{param}/sections/$count","matched","Get-MgUserOnenoteNotebookSectionCount" +"Notes","GetMgUserOnenoteNotebookSectionGroup.g.cs","v1.0","Get-MgUserOnenoteNotebookSectionGroup","GET","/users/{param}/onenote/notebooks/{param}/sectionGroups","matched","Get-MgUserOnenoteNotebookSectionGroup" +"Notes","GetMgUserOnenoteNotebookSectionGroupCount.g.cs","v1.0","Get-MgUserOnenoteNotebookSectionGroupCount","GET","/users/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sectionGroups/$count","matched","Get-MgUserOnenoteNotebookSectionGroupCount" +"Notes","GetMgUserOnenoteNotebookSectionGroupParentNotebook.g.cs","v1.0","Get-MgUserOnenoteNotebookSectionGroupParentNotebook","GET","/users/{param}/onenote/notebooks/{param}/sectionGroups/{param}/parentNotebook","matched","Get-MgUserOnenoteNotebookSectionGroupParentNotebook" +"Notes","GetMgUserOnenoteNotebookSectionGroupParentSectionGroup.g.cs","v1.0","Get-MgUserOnenoteNotebookSectionGroupParentSectionGroup","GET","/users/{param}/onenote/notebooks/{param}/sectionGroups/{param}/parentSectionGroup","matched","Get-MgUserOnenoteNotebookSectionGroupParentSectionGroup" +"Notes","GetMgUserOnenoteNotebookSectionGroupSection_Get.g.cs","v1.0","Get-MgUserOnenoteNotebookSectionGroupSection","GET","/users/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}","matched","Get-MgUserOnenoteNotebookSectionGroupSection" +"Notes","GetMgUserOnenoteNotebookSectionGroupSection_List.g.cs","v1.0","Get-MgUserOnenoteNotebookSectionGroupSection","GET","/users/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections","matched","Get-MgUserOnenoteNotebookSectionGroupSection" +"Notes","GetMgUserOnenoteNotebookSectionGroupSection.g.cs","v1.0","Get-MgUserOnenoteNotebookSectionGroupSection","","","dispatcher","" +"Notes","GetMgUserOnenoteNotebookSectionGroupSectionCount.g.cs","v1.0","Get-MgUserOnenoteNotebookSectionGroupSectionCount","GET","/users/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/$count","matched","Get-MgUserOnenoteNotebookSectionGroupSectionCount" +"Notes","GetMgUserOnenoteNotebookSectionGroupSectionPage_Get.g.cs","v1.0","Get-MgUserOnenoteNotebookSectionGroupSectionPage","GET","/users/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}","matched","Get-MgUserOnenoteNotebookSectionGroupSectionPage" +"Notes","GetMgUserOnenoteNotebookSectionGroupSectionPage_List.g.cs","v1.0","Get-MgUserOnenoteNotebookSectionGroupSectionPage","GET","/users/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages","matched","Get-MgUserOnenoteNotebookSectionGroupSectionPage" +"Notes","GetMgUserOnenoteNotebookSectionGroupSectionPage.g.cs","v1.0","Get-MgUserOnenoteNotebookSectionGroupSectionPage","","","dispatcher","" +"Notes","GetMgUserOnenoteNotebookSectionGroupSectionPageCount.g.cs","v1.0","Get-MgUserOnenoteNotebookSectionGroupSectionPageCount","GET","/users/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/$count","matched","Get-MgUserOnenoteNotebookSectionGroupSectionPageCount" +"Notes","GetMgUserOnenoteNotebookSectionGroupSectionPageParentNotebook.g.cs","v1.0","Get-MgUserOnenoteNotebookSectionGroupSectionPageParentNotebook","GET","/users/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}/parentNotebook","matched","Get-MgUserOnenoteNotebookSectionGroupSectionPageParentNotebook" +"Notes","GetMgUserOnenoteNotebookSectionGroupSectionPageParentSection.g.cs","v1.0","Get-MgUserOnenoteNotebookSectionGroupSectionPageParentSection","GET","/users/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}/parentSection","matched","Get-MgUserOnenoteNotebookSectionGroupSectionPageParentSection" +"Notes","GetMgUserOnenoteNotebookSectionGroupSectionPagePreview.g.cs","v1.0","Get-MgUserOnenoteNotebookSectionGroupSectionPagePreview","GET","/users/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}/preview","mismatch","Invoke-MgPreviewUserOnenoteNotebookSectionGroupSectionPage" +"Notes","GetMgUserOnenoteNotebookSectionGroupSectionParentNotebook.g.cs","v1.0","Get-MgUserOnenoteNotebookSectionGroupSectionParentNotebook","GET","/users/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/parentNotebook","matched","Get-MgUserOnenoteNotebookSectionGroupSectionParentNotebook" +"Notes","GetMgUserOnenoteNotebookSectionGroupSectionParentSectionGroup.g.cs","v1.0","Get-MgUserOnenoteNotebookSectionGroupSectionParentSectionGroup","GET","/users/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/parentSectionGroup","matched","Get-MgUserOnenoteNotebookSectionGroupSectionParentSectionGroup" +"Notes","GetMgUserOnenoteNotebookSectionPage_Get.g.cs","v1.0","Get-MgUserOnenoteNotebookSectionPage","GET","/users/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}","matched","Get-MgUserOnenoteNotebookSectionPage" +"Notes","GetMgUserOnenoteNotebookSectionPage_List.g.cs","v1.0","Get-MgUserOnenoteNotebookSectionPage","GET","/users/{param}/onenote/notebooks/{param}/sections/{param}/pages","matched","Get-MgUserOnenoteNotebookSectionPage" +"Notes","GetMgUserOnenoteNotebookSectionPage.g.cs","v1.0","Get-MgUserOnenoteNotebookSectionPage","","","dispatcher","" +"Notes","GetMgUserOnenoteNotebookSectionPageCount.g.cs","v1.0","Get-MgUserOnenoteNotebookSectionPageCount","GET","/users/{param}/onenote/notebooks/{param}/sections/{param}/pages/$count","matched","Get-MgUserOnenoteNotebookSectionPageCount" +"Notes","GetMgUserOnenoteNotebookSectionPageParentNotebook.g.cs","v1.0","Get-MgUserOnenoteNotebookSectionPageParentNotebook","GET","/users/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}/parentNotebook","matched","Get-MgUserOnenoteNotebookSectionPageParentNotebook" +"Notes","GetMgUserOnenoteNotebookSectionPageParentSection.g.cs","v1.0","Get-MgUserOnenoteNotebookSectionPageParentSection","GET","/users/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}/parentSection","matched","Get-MgUserOnenoteNotebookSectionPageParentSection" +"Notes","GetMgUserOnenoteNotebookSectionPagePreview.g.cs","v1.0","Get-MgUserOnenoteNotebookSectionPagePreview","GET","/users/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}/preview","mismatch","Invoke-MgPreviewUserOnenoteNotebookSectionPage" +"Notes","GetMgUserOnenoteNotebookSectionParentNotebook.g.cs","v1.0","Get-MgUserOnenoteNotebookSectionParentNotebook","GET","/users/{param}/onenote/notebooks/{param}/sections/{param}/parentNotebook","matched","Get-MgUserOnenoteNotebookSectionParentNotebook" +"Notes","GetMgUserOnenoteNotebookSectionParentSectionGroup.g.cs","v1.0","Get-MgUserOnenoteNotebookSectionParentSectionGroup","GET","/users/{param}/onenote/notebooks/{param}/sections/{param}/parentSectionGroup","matched","Get-MgUserOnenoteNotebookSectionParentSectionGroup" +"Notes","GetMgUserOnenoteOperation_Get.g.cs","v1.0","Get-MgUserOnenoteOperation","GET","/users/{param}/onenote/operations/{param}","matched","Get-MgUserOnenoteOperation" +"Notes","GetMgUserOnenoteOperation_List.g.cs","v1.0","Get-MgUserOnenoteOperation","GET","/users/{param}/onenote/operations","matched","Get-MgUserOnenoteOperation" +"Notes","GetMgUserOnenoteOperation.g.cs","v1.0","Get-MgUserOnenoteOperation","","","dispatcher","" +"Notes","GetMgUserOnenoteOperationCount.g.cs","v1.0","Get-MgUserOnenoteOperationCount","GET","/users/{param}/onenote/operations/$count","matched","Get-MgUserOnenoteOperationCount" +"Notes","GetMgUserOnenotePage_Get.g.cs","v1.0","Get-MgUserOnenotePage","GET","/users/{param}/onenote/pages/{param}","matched","Get-MgUserOnenotePage" +"Notes","GetMgUserOnenotePage_List.g.cs","v1.0","Get-MgUserOnenotePage","GET","/users/{param}/onenote/pages","matched","Get-MgUserOnenotePage" +"Notes","GetMgUserOnenotePage.g.cs","v1.0","Get-MgUserOnenotePage","","","dispatcher","" +"Notes","GetMgUserOnenotePageCount.g.cs","v1.0","Get-MgUserOnenotePageCount","GET","/users/{param}/onenote/pages/$count","matched","Get-MgUserOnenotePageCount" +"Notes","GetMgUserOnenotePageParentNotebook.g.cs","v1.0","Get-MgUserOnenotePageParentNotebook","GET","/users/{param}/onenote/pages/{param}/parentNotebook","matched","Get-MgUserOnenotePageParentNotebook" +"Notes","GetMgUserOnenotePageParentSection.g.cs","v1.0","Get-MgUserOnenotePageParentSection","GET","/users/{param}/onenote/pages/{param}/parentSection","matched","Get-MgUserOnenotePageParentSection" +"Notes","GetMgUserOnenotePagePreview.g.cs","v1.0","Get-MgUserOnenotePagePreview","GET","/users/{param}/onenote/pages/{param}/preview","mismatch","Invoke-MgPreviewUserOnenotePage" +"Notes","GetMgUserOnenoteResource_Get.g.cs","v1.0","Get-MgUserOnenoteResource","GET","/users/{param}/onenote/resources/{param}","matched","Get-MgUserOnenoteResource" +"Notes","GetMgUserOnenoteResource_List.g.cs","v1.0","Get-MgUserOnenoteResource","GET","/users/{param}/onenote/resources","matched","Get-MgUserOnenoteResource" +"Notes","GetMgUserOnenoteResource.g.cs","v1.0","Get-MgUserOnenoteResource","","","dispatcher","" +"Notes","GetMgUserOnenoteResourceCount.g.cs","v1.0","Get-MgUserOnenoteResourceCount","GET","/users/{param}/onenote/resources/$count","matched","Get-MgUserOnenoteResourceCount" +"Notes","GetMgUserOnenoteSection_Get.g.cs","v1.0","Get-MgUserOnenoteSection","GET","/users/{param}/onenote/sections/{param}","matched","Get-MgUserOnenoteSection" +"Notes","GetMgUserOnenoteSection_List.g.cs","v1.0","Get-MgUserOnenoteSection","GET","/users/{param}/onenote/sections","matched","Get-MgUserOnenoteSection" +"Notes","GetMgUserOnenoteSection.g.cs","v1.0","Get-MgUserOnenoteSection","","","dispatcher","" +"Notes","GetMgUserOnenoteSectionCount.g.cs","v1.0","Get-MgUserOnenoteSectionCount","GET","/users/{param}/onenote/sections/$count","matched","Get-MgUserOnenoteSectionCount" +"Notes","GetMgUserOnenoteSectionGroup.g.cs","v1.0","Get-MgUserOnenoteSectionGroup","GET","/users/{param}/onenote/sectionGroups","matched","Get-MgUserOnenoteSectionGroup" +"Notes","GetMgUserOnenoteSectionGroupCount.g.cs","v1.0","Get-MgUserOnenoteSectionGroupCount","GET","/users/{param}/onenote/sectionGroups/{param}/sectionGroups/$count","matched","Get-MgUserOnenoteSectionGroupCount" +"Notes","GetMgUserOnenoteSectionGroupParentNotebook.g.cs","v1.0","Get-MgUserOnenoteSectionGroupParentNotebook","GET","/users/{param}/onenote/sectionGroups/{param}/parentNotebook","matched","Get-MgUserOnenoteSectionGroupParentNotebook" +"Notes","GetMgUserOnenoteSectionGroupParentSectionGroup.g.cs","v1.0","Get-MgUserOnenoteSectionGroupParentSectionGroup","GET","/users/{param}/onenote/sectionGroups/{param}/parentSectionGroup","matched","Get-MgUserOnenoteSectionGroupParentSectionGroup" +"Notes","GetMgUserOnenoteSectionGroupSection_Get.g.cs","v1.0","Get-MgUserOnenoteSectionGroupSection","GET","/users/{param}/onenote/sectionGroups/{param}/sections/{param}","matched","Get-MgUserOnenoteSectionGroupSection" +"Notes","GetMgUserOnenoteSectionGroupSection_List.g.cs","v1.0","Get-MgUserOnenoteSectionGroupSection","GET","/users/{param}/onenote/sectionGroups/{param}/sections","matched","Get-MgUserOnenoteSectionGroupSection" +"Notes","GetMgUserOnenoteSectionGroupSection.g.cs","v1.0","Get-MgUserOnenoteSectionGroupSection","","","dispatcher","" +"Notes","GetMgUserOnenoteSectionGroupSectionCount.g.cs","v1.0","Get-MgUserOnenoteSectionGroupSectionCount","GET","/users/{param}/onenote/sectionGroups/{param}/sections/$count","matched","Get-MgUserOnenoteSectionGroupSectionCount" +"Notes","GetMgUserOnenoteSectionGroupSectionPage_Get.g.cs","v1.0","Get-MgUserOnenoteSectionGroupSectionPage","GET","/users/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}","matched","Get-MgUserOnenoteSectionGroupSectionPage" +"Notes","GetMgUserOnenoteSectionGroupSectionPage_List.g.cs","v1.0","Get-MgUserOnenoteSectionGroupSectionPage","GET","/users/{param}/onenote/sectionGroups/{param}/sections/{param}/pages","matched","Get-MgUserOnenoteSectionGroupSectionPage" +"Notes","GetMgUserOnenoteSectionGroupSectionPage.g.cs","v1.0","Get-MgUserOnenoteSectionGroupSectionPage","","","dispatcher","" +"Notes","GetMgUserOnenoteSectionGroupSectionPageCount.g.cs","v1.0","Get-MgUserOnenoteSectionGroupSectionPageCount","GET","/users/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/$count","matched","Get-MgUserOnenoteSectionGroupSectionPageCount" +"Notes","GetMgUserOnenoteSectionGroupSectionPageParentNotebook.g.cs","v1.0","Get-MgUserOnenoteSectionGroupSectionPageParentNotebook","GET","/users/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}/parentNotebook","matched","Get-MgUserOnenoteSectionGroupSectionPageParentNotebook" +"Notes","GetMgUserOnenoteSectionGroupSectionPageParentSection.g.cs","v1.0","Get-MgUserOnenoteSectionGroupSectionPageParentSection","GET","/users/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}/parentSection","matched","Get-MgUserOnenoteSectionGroupSectionPageParentSection" +"Notes","GetMgUserOnenoteSectionGroupSectionPagePreview.g.cs","v1.0","Get-MgUserOnenoteSectionGroupSectionPagePreview","GET","/users/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}/preview","mismatch","Invoke-MgPreviewUserOnenoteSectionGroupSectionPage" +"Notes","GetMgUserOnenoteSectionGroupSectionParentNotebook.g.cs","v1.0","Get-MgUserOnenoteSectionGroupSectionParentNotebook","GET","/users/{param}/onenote/sectionGroups/{param}/sections/{param}/parentNotebook","matched","Get-MgUserOnenoteSectionGroupSectionParentNotebook" +"Notes","GetMgUserOnenoteSectionGroupSectionParentSectionGroup.g.cs","v1.0","Get-MgUserOnenoteSectionGroupSectionParentSectionGroup","GET","/users/{param}/onenote/sectionGroups/{param}/sections/{param}/parentSectionGroup","matched","Get-MgUserOnenoteSectionGroupSectionParentSectionGroup" +"Notes","GetMgUserOnenoteSectionPage_Get.g.cs","v1.0","Get-MgUserOnenoteSectionPage","GET","/users/{param}/onenote/sections/{param}/pages/{param}","matched","Get-MgUserOnenoteSectionPage" +"Notes","GetMgUserOnenoteSectionPage_List.g.cs","v1.0","Get-MgUserOnenoteSectionPage","GET","/users/{param}/onenote/sections/{param}/pages","matched","Get-MgUserOnenoteSectionPage" +"Notes","GetMgUserOnenoteSectionPage.g.cs","v1.0","Get-MgUserOnenoteSectionPage","","","dispatcher","" +"Notes","GetMgUserOnenoteSectionPageCount.g.cs","v1.0","Get-MgUserOnenoteSectionPageCount","GET","/users/{param}/onenote/sections/{param}/pages/$count","matched","Get-MgUserOnenoteSectionPageCount" +"Notes","GetMgUserOnenoteSectionPageParentNotebook.g.cs","v1.0","Get-MgUserOnenoteSectionPageParentNotebook","GET","/users/{param}/onenote/sections/{param}/pages/{param}/parentNotebook","matched","Get-MgUserOnenoteSectionPageParentNotebook" +"Notes","GetMgUserOnenoteSectionPageParentSection.g.cs","v1.0","Get-MgUserOnenoteSectionPageParentSection","GET","/users/{param}/onenote/sections/{param}/pages/{param}/parentSection","matched","Get-MgUserOnenoteSectionPageParentSection" +"Notes","GetMgUserOnenoteSectionPagePreview.g.cs","v1.0","Get-MgUserOnenoteSectionPagePreview","GET","/users/{param}/onenote/sections/{param}/pages/{param}/preview","mismatch","Invoke-MgPreviewUserOnenoteSectionPage" +"Notes","GetMgUserOnenoteSectionParentNotebook.g.cs","v1.0","Get-MgUserOnenoteSectionParentNotebook","GET","/users/{param}/onenote/sections/{param}/parentNotebook","matched","Get-MgUserOnenoteSectionParentNotebook" +"Notes","GetMgUserOnenoteSectionParentSectionGroup.g.cs","v1.0","Get-MgUserOnenoteSectionParentSectionGroup","GET","/users/{param}/onenote/sections/{param}/parentSectionGroup","matched","Get-MgUserOnenoteSectionParentSectionGroup" +"Notes","InvokeMgGroupOnenoteNotebookCopyNotebook.g.cs","v1.0","Invoke-MgGroupOnenoteNotebookCopyNotebook","POST","/groups/{param}/onenote/notebooks/{param}/copyNotebook","mismatch","Copy-MgGroupOnenoteNotebook" +"Notes","InvokeMgGroupOnenoteNotebookGetNotebookFromWebUrl.g.cs","v1.0","Invoke-MgGroupOnenoteNotebookGetNotebookFromWebUrl","POST","/groups/{param}/onenote/notebooks/getNotebookFromWebUrl","mismatch","Get-MgGroupOnenoteNotebookFromWebUrl" +"Notes","InvokeMgGroupOnenoteNotebookSectionCopyToNotebook.g.cs","v1.0","Invoke-MgGroupOnenoteNotebookSectionCopyToNotebook","POST","/groups/{param}/onenote/notebooks/{param}/sections/{param}/copyToNotebook","mismatch","Copy-MgGroupOnenoteNotebookSectionToNotebook" +"Notes","InvokeMgGroupOnenoteNotebookSectionCopyToSectionGroup.g.cs","v1.0","Invoke-MgGroupOnenoteNotebookSectionCopyToSectionGroup","POST","/groups/{param}/onenote/notebooks/{param}/sections/{param}/copyToSectionGroup","mismatch","Copy-MgGroupOnenoteNotebookSectionToSectionGroup" +"Notes","InvokeMgGroupOnenoteNotebookSectionGroupSectionCopyToNotebook.g.cs","v1.0","Invoke-MgGroupOnenoteNotebookSectionGroupSectionCopyToNotebook","POST","/groups/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/copyToNotebook","mismatch","Copy-MgGroupOnenoteNotebookSectionGroupSectionToNotebook" +"Notes","InvokeMgGroupOnenoteNotebookSectionGroupSectionCopyToSectionGroup.g.cs","v1.0","Invoke-MgGroupOnenoteNotebookSectionGroupSectionCopyToSectionGroup","POST","/groups/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/copyToSectionGroup","mismatch","Copy-MgGroupOnenoteNotebookSectionGroupSectionToSectionGroup" +"Notes","InvokeMgGroupOnenoteNotebookSectionGroupSectionPageCopyToSection.g.cs","v1.0","Invoke-MgGroupOnenoteNotebookSectionGroupSectionPageCopyToSection","POST","/groups/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}/copyToSection","mismatch","Copy-MgGroupOnenoteNotebookSectionGroupSectionPageToSection" +"Notes","InvokeMgGroupOnenoteNotebookSectionGroupSectionPageOnenotePatchContent.g.cs","v1.0","Invoke-MgGroupOnenoteNotebookSectionGroupSectionPageOnenotePatchContent","POST","/groups/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}/onenotePatchContent","mismatch","Update-MgGroupOnenoteNotebookSectionGroupSectionPageContent" +"Notes","InvokeMgGroupOnenoteNotebookSectionPageCopyToSection.g.cs","v1.0","Invoke-MgGroupOnenoteNotebookSectionPageCopyToSection","POST","/groups/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}/copyToSection","mismatch","Copy-MgGroupOnenoteNotebookSectionPageToSection" +"Notes","InvokeMgGroupOnenoteNotebookSectionPageOnenotePatchContent.g.cs","v1.0","Invoke-MgGroupOnenoteNotebookSectionPageOnenotePatchContent","POST","/groups/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}/onenotePatchContent","mismatch","Update-MgGroupOnenoteNotebookSectionPageContent" +"Notes","InvokeMgGroupOnenotePageCopyToSection.g.cs","v1.0","Invoke-MgGroupOnenotePageCopyToSection","POST","/groups/{param}/onenote/pages/{param}/copyToSection","mismatch","Copy-MgGroupOnenotePageToSection" +"Notes","InvokeMgGroupOnenotePageOnenotePatchContent.g.cs","v1.0","Invoke-MgGroupOnenotePageOnenotePatchContent","POST","/groups/{param}/onenote/pages/{param}/onenotePatchContent","mismatch","Update-MgGroupOnenotePageContent" +"Notes","InvokeMgGroupOnenoteSectionCopyToNotebook.g.cs","v1.0","Invoke-MgGroupOnenoteSectionCopyToNotebook","POST","/groups/{param}/onenote/sections/{param}/copyToNotebook","mismatch","Copy-MgGroupOnenoteSectionToNotebook" +"Notes","InvokeMgGroupOnenoteSectionCopyToSectionGroup.g.cs","v1.0","Invoke-MgGroupOnenoteSectionCopyToSectionGroup","POST","/groups/{param}/onenote/sections/{param}/copyToSectionGroup","mismatch","Copy-MgGroupOnenoteSectionToSectionGroup" +"Notes","InvokeMgGroupOnenoteSectionGroupSectionCopyToNotebook.g.cs","v1.0","Invoke-MgGroupOnenoteSectionGroupSectionCopyToNotebook","POST","/groups/{param}/onenote/sectionGroups/{param}/sections/{param}/copyToNotebook","mismatch","Copy-MgGroupOnenoteSectionGroupSectionToNotebook" +"Notes","InvokeMgGroupOnenoteSectionGroupSectionCopyToSectionGroup.g.cs","v1.0","Invoke-MgGroupOnenoteSectionGroupSectionCopyToSectionGroup","POST","/groups/{param}/onenote/sectionGroups/{param}/sections/{param}/copyToSectionGroup","mismatch","Copy-MgGroupOnenoteSectionGroupSectionToSectionGroup" +"Notes","InvokeMgGroupOnenoteSectionGroupSectionPageCopyToSection.g.cs","v1.0","Invoke-MgGroupOnenoteSectionGroupSectionPageCopyToSection","POST","/groups/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}/copyToSection","mismatch","Copy-MgGroupOnenoteSectionGroupSectionPageToSection" +"Notes","InvokeMgGroupOnenoteSectionGroupSectionPageOnenotePatchContent.g.cs","v1.0","Invoke-MgGroupOnenoteSectionGroupSectionPageOnenotePatchContent","POST","/groups/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}/onenotePatchContent","mismatch","Update-MgGroupOnenoteSectionGroupSectionPageContent" +"Notes","InvokeMgGroupOnenoteSectionPageCopyToSection.g.cs","v1.0","Invoke-MgGroupOnenoteSectionPageCopyToSection","POST","/groups/{param}/onenote/sections/{param}/pages/{param}/copyToSection","mismatch","Copy-MgGroupOnenoteSectionPageToSection" +"Notes","InvokeMgGroupOnenoteSectionPageOnenotePatchContent.g.cs","v1.0","Invoke-MgGroupOnenoteSectionPageOnenotePatchContent","POST","/groups/{param}/onenote/sections/{param}/pages/{param}/onenotePatchContent","mismatch","Update-MgGroupOnenoteSectionPageContent" +"Notes","InvokeMgSiteOnenoteNotebookCopyNotebook.g.cs","v1.0","Invoke-MgSiteOnenoteNotebookCopyNotebook","POST","/sites/{param}/onenote/notebooks/{param}/copyNotebook","mismatch","Copy-MgSiteOnenoteNotebook" +"Notes","InvokeMgSiteOnenoteNotebookGetNotebookFromWebUrl.g.cs","v1.0","Invoke-MgSiteOnenoteNotebookGetNotebookFromWebUrl","POST","/sites/{param}/onenote/notebooks/getNotebookFromWebUrl","mismatch","Get-MgSiteOnenoteNotebookFromWebUrl" +"Notes","InvokeMgSiteOnenoteNotebookSectionCopyToNotebook.g.cs","v1.0","Invoke-MgSiteOnenoteNotebookSectionCopyToNotebook","POST","/sites/{param}/onenote/notebooks/{param}/sections/{param}/copyToNotebook","mismatch","Copy-MgSiteOnenoteNotebookSectionToNotebook" +"Notes","InvokeMgSiteOnenoteNotebookSectionCopyToSectionGroup.g.cs","v1.0","Invoke-MgSiteOnenoteNotebookSectionCopyToSectionGroup","POST","/sites/{param}/onenote/notebooks/{param}/sections/{param}/copyToSectionGroup","mismatch","Copy-MgSiteOnenoteNotebookSectionToSectionGroup" +"Notes","InvokeMgSiteOnenoteNotebookSectionGroupSectionCopyToNotebook.g.cs","v1.0","Invoke-MgSiteOnenoteNotebookSectionGroupSectionCopyToNotebook","POST","/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/copyToNotebook","mismatch","Copy-MgSiteOnenoteNotebookSectionGroupSectionToNotebook" +"Notes","InvokeMgSiteOnenoteNotebookSectionGroupSectionCopyToSectionGroup.g.cs","v1.0","Invoke-MgSiteOnenoteNotebookSectionGroupSectionCopyToSectionGroup","POST","/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/copyToSectionGroup","mismatch","Copy-MgSiteOnenoteNotebookSectionGroupSectionToSectionGroup" +"Notes","InvokeMgSiteOnenoteNotebookSectionGroupSectionPageCopyToSection.g.cs","v1.0","Invoke-MgSiteOnenoteNotebookSectionGroupSectionPageCopyToSection","POST","/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}/copyToSection","mismatch","Copy-MgSiteOnenoteNotebookSectionGroupSectionPageToSection" +"Notes","InvokeMgSiteOnenoteNotebookSectionGroupSectionPageOnenotePatchContent.g.cs","v1.0","Invoke-MgSiteOnenoteNotebookSectionGroupSectionPageOnenotePatchContent","POST","/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}/onenotePatchContent","mismatch","Update-MgSiteOnenoteNotebookSectionGroupSectionPageContent" +"Notes","InvokeMgSiteOnenoteNotebookSectionPageCopyToSection.g.cs","v1.0","Invoke-MgSiteOnenoteNotebookSectionPageCopyToSection","POST","/sites/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}/copyToSection","mismatch","Copy-MgSiteOnenoteNotebookSectionPageToSection" +"Notes","InvokeMgSiteOnenoteNotebookSectionPageOnenotePatchContent.g.cs","v1.0","Invoke-MgSiteOnenoteNotebookSectionPageOnenotePatchContent","POST","/sites/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}/onenotePatchContent","mismatch","Update-MgSiteOnenoteNotebookSectionPageContent" +"Notes","InvokeMgSiteOnenotePageCopyToSection.g.cs","v1.0","Invoke-MgSiteOnenotePageCopyToSection","POST","/sites/{param}/onenote/pages/{param}/copyToSection","mismatch","Copy-MgSiteOnenotePageToSection" +"Notes","InvokeMgSiteOnenotePageOnenotePatchContent.g.cs","v1.0","Invoke-MgSiteOnenotePageOnenotePatchContent","POST","/sites/{param}/onenote/pages/{param}/onenotePatchContent","mismatch","Update-MgSiteOnenotePageContent" +"Notes","InvokeMgSiteOnenoteSectionCopyToNotebook.g.cs","v1.0","Invoke-MgSiteOnenoteSectionCopyToNotebook","POST","/sites/{param}/onenote/sections/{param}/copyToNotebook","mismatch","Copy-MgSiteOnenoteSectionToNotebook" +"Notes","InvokeMgSiteOnenoteSectionCopyToSectionGroup.g.cs","v1.0","Invoke-MgSiteOnenoteSectionCopyToSectionGroup","POST","/sites/{param}/onenote/sections/{param}/copyToSectionGroup","mismatch","Copy-MgSiteOnenoteSectionToSectionGroup" +"Notes","InvokeMgSiteOnenoteSectionGroupSectionCopyToNotebook.g.cs","v1.0","Invoke-MgSiteOnenoteSectionGroupSectionCopyToNotebook","POST","/sites/{param}/onenote/sectionGroups/{param}/sections/{param}/copyToNotebook","mismatch","Copy-MgSiteOnenoteSectionGroupSectionToNotebook" +"Notes","InvokeMgSiteOnenoteSectionGroupSectionCopyToSectionGroup.g.cs","v1.0","Invoke-MgSiteOnenoteSectionGroupSectionCopyToSectionGroup","POST","/sites/{param}/onenote/sectionGroups/{param}/sections/{param}/copyToSectionGroup","mismatch","Copy-MgSiteOnenoteSectionGroupSectionToSectionGroup" +"Notes","InvokeMgSiteOnenoteSectionGroupSectionPageCopyToSection.g.cs","v1.0","Invoke-MgSiteOnenoteSectionGroupSectionPageCopyToSection","POST","/sites/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}/copyToSection","mismatch","Copy-MgSiteOnenoteSectionGroupSectionPageToSection" +"Notes","InvokeMgSiteOnenoteSectionGroupSectionPageOnenotePatchContent.g.cs","v1.0","Invoke-MgSiteOnenoteSectionGroupSectionPageOnenotePatchContent","POST","/sites/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}/onenotePatchContent","mismatch","Update-MgSiteOnenoteSectionGroupSectionPageContent" +"Notes","InvokeMgSiteOnenoteSectionPageCopyToSection.g.cs","v1.0","Invoke-MgSiteOnenoteSectionPageCopyToSection","POST","/sites/{param}/onenote/sections/{param}/pages/{param}/copyToSection","mismatch","Copy-MgSiteOnenoteSectionPageToSection" +"Notes","InvokeMgSiteOnenoteSectionPageOnenotePatchContent.g.cs","v1.0","Invoke-MgSiteOnenoteSectionPageOnenotePatchContent","POST","/sites/{param}/onenote/sections/{param}/pages/{param}/onenotePatchContent","mismatch","Update-MgSiteOnenoteSectionPageContent" +"Notes","InvokeMgUserOnenoteNotebookCopyNotebook.g.cs","v1.0","Invoke-MgUserOnenoteNotebookCopyNotebook","POST","/users/{param}/onenote/notebooks/{param}/copyNotebook","mismatch","Copy-MgUserOnenoteNotebook" +"Notes","InvokeMgUserOnenoteNotebookGetNotebookFromWebUrl.g.cs","v1.0","Invoke-MgUserOnenoteNotebookGetNotebookFromWebUrl","POST","/users/{param}/onenote/notebooks/getNotebookFromWebUrl","mismatch","Get-MgUserOnenoteNotebookFromWebUrl" +"Notes","InvokeMgUserOnenoteNotebookSectionCopyToNotebook.g.cs","v1.0","Invoke-MgUserOnenoteNotebookSectionCopyToNotebook","POST","/users/{param}/onenote/notebooks/{param}/sections/{param}/copyToNotebook","mismatch","Copy-MgUserOnenoteNotebookSectionToNotebook" +"Notes","InvokeMgUserOnenoteNotebookSectionCopyToSectionGroup.g.cs","v1.0","Invoke-MgUserOnenoteNotebookSectionCopyToSectionGroup","POST","/users/{param}/onenote/notebooks/{param}/sections/{param}/copyToSectionGroup","mismatch","Copy-MgUserOnenoteNotebookSectionToSectionGroup" +"Notes","InvokeMgUserOnenoteNotebookSectionGroupSectionCopyToNotebook.g.cs","v1.0","Invoke-MgUserOnenoteNotebookSectionGroupSectionCopyToNotebook","POST","/users/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/copyToNotebook","mismatch","Copy-MgUserOnenoteNotebookSectionGroupSectionToNotebook" +"Notes","InvokeMgUserOnenoteNotebookSectionGroupSectionCopyToSectionGroup.g.cs","v1.0","Invoke-MgUserOnenoteNotebookSectionGroupSectionCopyToSectionGroup","POST","/users/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/copyToSectionGroup","mismatch","Copy-MgUserOnenoteNotebookSectionGroupSectionToSectionGroup" +"Notes","InvokeMgUserOnenoteNotebookSectionGroupSectionPageCopyToSection.g.cs","v1.0","Invoke-MgUserOnenoteNotebookSectionGroupSectionPageCopyToSection","POST","/users/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}/copyToSection","mismatch","Copy-MgUserOnenoteNotebookSectionGroupSectionPageToSection" +"Notes","InvokeMgUserOnenoteNotebookSectionGroupSectionPageOnenotePatchContent.g.cs","v1.0","Invoke-MgUserOnenoteNotebookSectionGroupSectionPageOnenotePatchContent","POST","/users/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}/onenotePatchContent","mismatch","Update-MgUserOnenoteNotebookSectionGroupSectionPage" +"Notes","InvokeMgUserOnenoteNotebookSectionPageCopyToSection.g.cs","v1.0","Invoke-MgUserOnenoteNotebookSectionPageCopyToSection","POST","/users/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}/copyToSection","mismatch","Copy-MgUserOnenoteNotebookSectionPageToSection" +"Notes","InvokeMgUserOnenoteNotebookSectionPageOnenotePatchContent.g.cs","v1.0","Invoke-MgUserOnenoteNotebookSectionPageOnenotePatchContent","POST","/users/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}/onenotePatchContent","mismatch","Update-MgUserOnenoteNotebookSectionPage" +"Notes","InvokeMgUserOnenotePageCopyToSection.g.cs","v1.0","Invoke-MgUserOnenotePageCopyToSection","POST","/users/{param}/onenote/pages/{param}/copyToSection","mismatch","Copy-MgUserOnenotePageToSection" +"Notes","InvokeMgUserOnenotePageOnenotePatchContent.g.cs","v1.0","Invoke-MgUserOnenotePageOnenotePatchContent","POST","/users/{param}/onenote/pages/{param}/onenotePatchContent","mismatch","Update-MgUserOnenotePage" +"Notes","InvokeMgUserOnenoteSectionCopyToNotebook.g.cs","v1.0","Invoke-MgUserOnenoteSectionCopyToNotebook","POST","/users/{param}/onenote/sections/{param}/copyToNotebook","mismatch","Copy-MgUserOnenoteSectionToNotebook" +"Notes","InvokeMgUserOnenoteSectionCopyToSectionGroup.g.cs","v1.0","Invoke-MgUserOnenoteSectionCopyToSectionGroup","POST","/users/{param}/onenote/sections/{param}/copyToSectionGroup","mismatch","Copy-MgUserOnenoteSectionToSectionGroup" +"Notes","InvokeMgUserOnenoteSectionGroupSectionCopyToNotebook.g.cs","v1.0","Invoke-MgUserOnenoteSectionGroupSectionCopyToNotebook","POST","/users/{param}/onenote/sectionGroups/{param}/sections/{param}/copyToNotebook","mismatch","Copy-MgUserOnenoteSectionGroupSectionToNotebook" +"Notes","InvokeMgUserOnenoteSectionGroupSectionCopyToSectionGroup.g.cs","v1.0","Invoke-MgUserOnenoteSectionGroupSectionCopyToSectionGroup","POST","/users/{param}/onenote/sectionGroups/{param}/sections/{param}/copyToSectionGroup","mismatch","Copy-MgUserOnenoteSectionGroupSectionToSectionGroup" +"Notes","InvokeMgUserOnenoteSectionGroupSectionPageCopyToSection.g.cs","v1.0","Invoke-MgUserOnenoteSectionGroupSectionPageCopyToSection","POST","/users/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}/copyToSection","mismatch","Copy-MgUserOnenoteSectionGroupSectionPageToSection" +"Notes","InvokeMgUserOnenoteSectionGroupSectionPageOnenotePatchContent.g.cs","v1.0","Invoke-MgUserOnenoteSectionGroupSectionPageOnenotePatchContent","POST","/users/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}/onenotePatchContent","mismatch","Update-MgUserOnenoteSectionGroupSectionPage" +"Notes","InvokeMgUserOnenoteSectionPageCopyToSection.g.cs","v1.0","Invoke-MgUserOnenoteSectionPageCopyToSection","POST","/users/{param}/onenote/sections/{param}/pages/{param}/copyToSection","mismatch","Copy-MgUserOnenoteSectionPageToSection" +"Notes","InvokeMgUserOnenoteSectionPageOnenotePatchContent.g.cs","v1.0","Invoke-MgUserOnenoteSectionPageOnenotePatchContent","POST","/users/{param}/onenote/sections/{param}/pages/{param}/onenotePatchContent","mismatch","Update-MgUserOnenoteSectionPage" +"Notes","NewMgGroupOnenoteNotebook.g.cs","v1.0","New-MgGroupOnenoteNotebook","POST","/groups/{param}/onenote/notebooks","matched","New-MgGroupOnenoteNotebook" +"Notes","NewMgGroupOnenoteNotebookSection.g.cs","v1.0","New-MgGroupOnenoteNotebookSection","POST","/groups/{param}/onenote/notebooks/{param}/sections","matched","New-MgGroupOnenoteNotebookSection" +"Notes","NewMgGroupOnenoteNotebookSectionGroup.g.cs","v1.0","New-MgGroupOnenoteNotebookSectionGroup","POST","/groups/{param}/onenote/notebooks/{param}/sectionGroups","matched","New-MgGroupOnenoteNotebookSectionGroup" +"Notes","NewMgGroupOnenoteNotebookSectionGroupSection.g.cs","v1.0","New-MgGroupOnenoteNotebookSectionGroupSection","POST","/groups/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections","matched","New-MgGroupOnenoteNotebookSectionGroupSection" +"Notes","NewMgGroupOnenoteNotebookSectionGroupSectionPage.g.cs","v1.0","New-MgGroupOnenoteNotebookSectionGroupSectionPage","POST","/groups/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages","matched","New-MgGroupOnenoteNotebookSectionGroupSectionPage" +"Notes","NewMgGroupOnenoteNotebookSectionPage.g.cs","v1.0","New-MgGroupOnenoteNotebookSectionPage","POST","/groups/{param}/onenote/notebooks/{param}/sections/{param}/pages","matched","New-MgGroupOnenoteNotebookSectionPage" +"Notes","NewMgGroupOnenoteOperation.g.cs","v1.0","New-MgGroupOnenoteOperation","POST","/groups/{param}/onenote/operations","matched","New-MgGroupOnenoteOperation" +"Notes","NewMgGroupOnenotePage.g.cs","v1.0","New-MgGroupOnenotePage","POST","/groups/{param}/onenote/pages","matched","New-MgGroupOnenotePage" +"Notes","NewMgGroupOnenoteResource.g.cs","v1.0","New-MgGroupOnenoteResource","POST","/groups/{param}/onenote/resources","matched","New-MgGroupOnenoteResource" +"Notes","NewMgGroupOnenoteSection.g.cs","v1.0","New-MgGroupOnenoteSection","POST","/groups/{param}/onenote/sections","matched","New-MgGroupOnenoteSection" +"Notes","NewMgGroupOnenoteSectionGroup.g.cs","v1.0","New-MgGroupOnenoteSectionGroup","POST","/groups/{param}/onenote/sectionGroups","matched","New-MgGroupOnenoteSectionGroup" +"Notes","NewMgGroupOnenoteSectionGroupSection.g.cs","v1.0","New-MgGroupOnenoteSectionGroupSection","POST","/groups/{param}/onenote/sectionGroups/{param}/sections","matched","New-MgGroupOnenoteSectionGroupSection" +"Notes","NewMgGroupOnenoteSectionGroupSectionPage.g.cs","v1.0","New-MgGroupOnenoteSectionGroupSectionPage","POST","/groups/{param}/onenote/sectionGroups/{param}/sections/{param}/pages","matched","New-MgGroupOnenoteSectionGroupSectionPage" +"Notes","NewMgGroupOnenoteSectionPage.g.cs","v1.0","New-MgGroupOnenoteSectionPage","POST","/groups/{param}/onenote/sections/{param}/pages","matched","New-MgGroupOnenoteSectionPage" +"Notes","NewMgSiteOnenoteNotebook.g.cs","v1.0","New-MgSiteOnenoteNotebook","POST","/sites/{param}/onenote/notebooks","matched","New-MgSiteOnenoteNotebook" +"Notes","NewMgSiteOnenoteNotebookSection.g.cs","v1.0","New-MgSiteOnenoteNotebookSection","POST","/sites/{param}/onenote/notebooks/{param}/sections","matched","New-MgSiteOnenoteNotebookSection" +"Notes","NewMgSiteOnenoteNotebookSectionGroup.g.cs","v1.0","New-MgSiteOnenoteNotebookSectionGroup","POST","/sites/{param}/onenote/notebooks/{param}/sectionGroups","matched","New-MgSiteOnenoteNotebookSectionGroup" +"Notes","NewMgSiteOnenoteNotebookSectionGroupSection.g.cs","v1.0","New-MgSiteOnenoteNotebookSectionGroupSection","POST","/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections","matched","New-MgSiteOnenoteNotebookSectionGroupSection" +"Notes","NewMgSiteOnenoteNotebookSectionGroupSectionPage.g.cs","v1.0","New-MgSiteOnenoteNotebookSectionGroupSectionPage","POST","/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages","matched","New-MgSiteOnenoteNotebookSectionGroupSectionPage" +"Notes","NewMgSiteOnenoteNotebookSectionPage.g.cs","v1.0","New-MgSiteOnenoteNotebookSectionPage","POST","/sites/{param}/onenote/notebooks/{param}/sections/{param}/pages","matched","New-MgSiteOnenoteNotebookSectionPage" +"Notes","NewMgSiteOnenoteOperation.g.cs","v1.0","New-MgSiteOnenoteOperation","POST","/sites/{param}/onenote/operations","matched","New-MgSiteOnenoteOperation" +"Notes","NewMgSiteOnenotePage.g.cs","v1.0","New-MgSiteOnenotePage","POST","/sites/{param}/onenote/pages","matched","New-MgSiteOnenotePage" +"Notes","NewMgSiteOnenoteResource.g.cs","v1.0","New-MgSiteOnenoteResource","POST","/sites/{param}/onenote/resources","matched","New-MgSiteOnenoteResource" +"Notes","NewMgSiteOnenoteSection.g.cs","v1.0","New-MgSiteOnenoteSection","POST","/sites/{param}/onenote/sections","matched","New-MgSiteOnenoteSection" +"Notes","NewMgSiteOnenoteSectionGroup.g.cs","v1.0","New-MgSiteOnenoteSectionGroup","POST","/sites/{param}/onenote/sectionGroups","matched","New-MgSiteOnenoteSectionGroup" +"Notes","NewMgSiteOnenoteSectionGroupSection.g.cs","v1.0","New-MgSiteOnenoteSectionGroupSection","POST","/sites/{param}/onenote/sectionGroups/{param}/sections","matched","New-MgSiteOnenoteSectionGroupSection" +"Notes","NewMgSiteOnenoteSectionGroupSectionPage.g.cs","v1.0","New-MgSiteOnenoteSectionGroupSectionPage","POST","/sites/{param}/onenote/sectionGroups/{param}/sections/{param}/pages","matched","New-MgSiteOnenoteSectionGroupSectionPage" +"Notes","NewMgSiteOnenoteSectionPage.g.cs","v1.0","New-MgSiteOnenoteSectionPage","POST","/sites/{param}/onenote/sections/{param}/pages","matched","New-MgSiteOnenoteSectionPage" +"Notes","NewMgUserOnenoteNotebook.g.cs","v1.0","New-MgUserOnenoteNotebook","POST","/users/{param}/onenote/notebooks","matched","New-MgUserOnenoteNotebook" +"Notes","NewMgUserOnenoteNotebookSection.g.cs","v1.0","New-MgUserOnenoteNotebookSection","POST","/users/{param}/onenote/notebooks/{param}/sections","matched","New-MgUserOnenoteNotebookSection" +"Notes","NewMgUserOnenoteNotebookSectionGroup.g.cs","v1.0","New-MgUserOnenoteNotebookSectionGroup","POST","/users/{param}/onenote/notebooks/{param}/sectionGroups","matched","New-MgUserOnenoteNotebookSectionGroup" +"Notes","NewMgUserOnenoteNotebookSectionGroupSection.g.cs","v1.0","New-MgUserOnenoteNotebookSectionGroupSection","POST","/users/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections","matched","New-MgUserOnenoteNotebookSectionGroupSection" +"Notes","NewMgUserOnenoteNotebookSectionGroupSectionPage.g.cs","v1.0","New-MgUserOnenoteNotebookSectionGroupSectionPage","POST","/users/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages","matched","New-MgUserOnenoteNotebookSectionGroupSectionPage" +"Notes","NewMgUserOnenoteNotebookSectionPage.g.cs","v1.0","New-MgUserOnenoteNotebookSectionPage","POST","/users/{param}/onenote/notebooks/{param}/sections/{param}/pages","matched","New-MgUserOnenoteNotebookSectionPage" +"Notes","NewMgUserOnenoteOperation.g.cs","v1.0","New-MgUserOnenoteOperation","POST","/users/{param}/onenote/operations","matched","New-MgUserOnenoteOperation" +"Notes","NewMgUserOnenotePage.g.cs","v1.0","New-MgUserOnenotePage","POST","/users/{param}/onenote/pages","matched","New-MgUserOnenotePage" +"Notes","NewMgUserOnenoteResource.g.cs","v1.0","New-MgUserOnenoteResource","POST","/users/{param}/onenote/resources","matched","New-MgUserOnenoteResource" +"Notes","NewMgUserOnenoteSection.g.cs","v1.0","New-MgUserOnenoteSection","POST","/users/{param}/onenote/sections","matched","New-MgUserOnenoteSection" +"Notes","NewMgUserOnenoteSectionGroup.g.cs","v1.0","New-MgUserOnenoteSectionGroup","POST","/users/{param}/onenote/sectionGroups","matched","New-MgUserOnenoteSectionGroup" +"Notes","NewMgUserOnenoteSectionGroupSection.g.cs","v1.0","New-MgUserOnenoteSectionGroupSection","POST","/users/{param}/onenote/sectionGroups/{param}/sections","matched","New-MgUserOnenoteSectionGroupSection" +"Notes","NewMgUserOnenoteSectionGroupSectionPage.g.cs","v1.0","New-MgUserOnenoteSectionGroupSectionPage","POST","/users/{param}/onenote/sectionGroups/{param}/sections/{param}/pages","matched","New-MgUserOnenoteSectionGroupSectionPage" +"Notes","NewMgUserOnenoteSectionPage.g.cs","v1.0","New-MgUserOnenoteSectionPage","POST","/users/{param}/onenote/sections/{param}/pages","matched","New-MgUserOnenoteSectionPage" +"Notes","RemoveMgGroupOnenote.g.cs","v1.0","Remove-MgGroupOnenote","DELETE","/groups/{param}/onenote","matched","Remove-MgGroupOnenote" +"Notes","RemoveMgGroupOnenoteNotebook.g.cs","v1.0","Remove-MgGroupOnenoteNotebook","DELETE","/groups/{param}/onenote/notebooks/{param}","matched","Remove-MgGroupOnenoteNotebook" +"Notes","RemoveMgGroupOnenoteNotebookSection.g.cs","v1.0","Remove-MgGroupOnenoteNotebookSection","DELETE","/groups/{param}/onenote/notebooks/{param}/sections/{param}","matched","Remove-MgGroupOnenoteNotebookSection" +"Notes","RemoveMgGroupOnenoteNotebookSectionGroup.g.cs","v1.0","Remove-MgGroupOnenoteNotebookSectionGroup","DELETE","/groups/{param}/onenote/notebooks/{param}/sectionGroups/{param}","matched","Remove-MgGroupOnenoteNotebookSectionGroup" +"Notes","RemoveMgGroupOnenoteNotebookSectionGroupSection.g.cs","v1.0","Remove-MgGroupOnenoteNotebookSectionGroupSection","DELETE","/groups/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}","matched","Remove-MgGroupOnenoteNotebookSectionGroupSection" +"Notes","RemoveMgGroupOnenoteNotebookSectionGroupSectionPage.g.cs","v1.0","Remove-MgGroupOnenoteNotebookSectionGroupSectionPage","DELETE","/groups/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}","matched","Remove-MgGroupOnenoteNotebookSectionGroupSectionPage" +"Notes","RemoveMgGroupOnenoteNotebookSectionGroupSectionPageContent.g.cs","v1.0","Remove-MgGroupOnenoteNotebookSectionGroupSectionPageContent","DELETE","/groups/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}/$value","matched","Remove-MgGroupOnenoteNotebookSectionGroupSectionPageContent" +"Notes","RemoveMgGroupOnenoteNotebookSectionPage.g.cs","v1.0","Remove-MgGroupOnenoteNotebookSectionPage","DELETE","/groups/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}","matched","Remove-MgGroupOnenoteNotebookSectionPage" +"Notes","RemoveMgGroupOnenoteNotebookSectionPageContent.g.cs","v1.0","Remove-MgGroupOnenoteNotebookSectionPageContent","DELETE","/groups/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}/$value","matched","Remove-MgGroupOnenoteNotebookSectionPageContent" +"Notes","RemoveMgGroupOnenoteOperation.g.cs","v1.0","Remove-MgGroupOnenoteOperation","DELETE","/groups/{param}/onenote/operations/{param}","matched","Remove-MgGroupOnenoteOperation" +"Notes","RemoveMgGroupOnenotePage.g.cs","v1.0","Remove-MgGroupOnenotePage","DELETE","/groups/{param}/onenote/pages/{param}","matched","Remove-MgGroupOnenotePage" +"Notes","RemoveMgGroupOnenotePageContent.g.cs","v1.0","Remove-MgGroupOnenotePageContent","DELETE","/groups/{param}/onenote/pages/{param}/$value","matched","Remove-MgGroupOnenotePageContent" +"Notes","RemoveMgGroupOnenoteResource.g.cs","v1.0","Remove-MgGroupOnenoteResource","DELETE","/groups/{param}/onenote/resources/{param}","matched","Remove-MgGroupOnenoteResource" +"Notes","RemoveMgGroupOnenoteResourceContent.g.cs","v1.0","Remove-MgGroupOnenoteResourceContent","DELETE","/groups/{param}/onenote/resources/{param}/$value","matched","Remove-MgGroupOnenoteResourceContent" +"Notes","RemoveMgGroupOnenoteSection.g.cs","v1.0","Remove-MgGroupOnenoteSection","DELETE","/groups/{param}/onenote/sections/{param}","matched","Remove-MgGroupOnenoteSection" +"Notes","RemoveMgGroupOnenoteSectionGroup.g.cs","v1.0","Remove-MgGroupOnenoteSectionGroup","DELETE","/groups/{param}/onenote/sectionGroups/{param}","matched","Remove-MgGroupOnenoteSectionGroup" +"Notes","RemoveMgGroupOnenoteSectionGroupSection.g.cs","v1.0","Remove-MgGroupOnenoteSectionGroupSection","DELETE","/groups/{param}/onenote/sectionGroups/{param}/sections/{param}","matched","Remove-MgGroupOnenoteSectionGroupSection" +"Notes","RemoveMgGroupOnenoteSectionGroupSectionPage.g.cs","v1.0","Remove-MgGroupOnenoteSectionGroupSectionPage","DELETE","/groups/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}","matched","Remove-MgGroupOnenoteSectionGroupSectionPage" +"Notes","RemoveMgGroupOnenoteSectionGroupSectionPageContent.g.cs","v1.0","Remove-MgGroupOnenoteSectionGroupSectionPageContent","DELETE","/groups/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}/$value","matched","Remove-MgGroupOnenoteSectionGroupSectionPageContent" +"Notes","RemoveMgGroupOnenoteSectionPage.g.cs","v1.0","Remove-MgGroupOnenoteSectionPage","DELETE","/groups/{param}/onenote/sections/{param}/pages/{param}","matched","Remove-MgGroupOnenoteSectionPage" +"Notes","RemoveMgGroupOnenoteSectionPageContent.g.cs","v1.0","Remove-MgGroupOnenoteSectionPageContent","DELETE","/groups/{param}/onenote/sections/{param}/pages/{param}/$value","matched","Remove-MgGroupOnenoteSectionPageContent" +"Notes","RemoveMgSiteOnenote.g.cs","v1.0","Remove-MgSiteOnenote","DELETE","/sites/{param}/onenote","matched","Remove-MgSiteOnenote" +"Notes","RemoveMgSiteOnenoteNotebook.g.cs","v1.0","Remove-MgSiteOnenoteNotebook","DELETE","/sites/{param}/onenote/notebooks/{param}","matched","Remove-MgSiteOnenoteNotebook" +"Notes","RemoveMgSiteOnenoteNotebookSection.g.cs","v1.0","Remove-MgSiteOnenoteNotebookSection","DELETE","/sites/{param}/onenote/notebooks/{param}/sections/{param}","matched","Remove-MgSiteOnenoteNotebookSection" +"Notes","RemoveMgSiteOnenoteNotebookSectionGroup.g.cs","v1.0","Remove-MgSiteOnenoteNotebookSectionGroup","DELETE","/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}","matched","Remove-MgSiteOnenoteNotebookSectionGroup" +"Notes","RemoveMgSiteOnenoteNotebookSectionGroupSection.g.cs","v1.0","Remove-MgSiteOnenoteNotebookSectionGroupSection","DELETE","/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}","matched","Remove-MgSiteOnenoteNotebookSectionGroupSection" +"Notes","RemoveMgSiteOnenoteNotebookSectionGroupSectionPage.g.cs","v1.0","Remove-MgSiteOnenoteNotebookSectionGroupSectionPage","DELETE","/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}","matched","Remove-MgSiteOnenoteNotebookSectionGroupSectionPage" +"Notes","RemoveMgSiteOnenoteNotebookSectionPage.g.cs","v1.0","Remove-MgSiteOnenoteNotebookSectionPage","DELETE","/sites/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}","matched","Remove-MgSiteOnenoteNotebookSectionPage" +"Notes","RemoveMgSiteOnenoteOperation.g.cs","v1.0","Remove-MgSiteOnenoteOperation","DELETE","/sites/{param}/onenote/operations/{param}","matched","Remove-MgSiteOnenoteOperation" +"Notes","RemoveMgSiteOnenotePage.g.cs","v1.0","Remove-MgSiteOnenotePage","DELETE","/sites/{param}/onenote/pages/{param}","matched","Remove-MgSiteOnenotePage" +"Notes","RemoveMgSiteOnenoteResource.g.cs","v1.0","Remove-MgSiteOnenoteResource","DELETE","/sites/{param}/onenote/resources/{param}","matched","Remove-MgSiteOnenoteResource" +"Notes","RemoveMgSiteOnenoteSection.g.cs","v1.0","Remove-MgSiteOnenoteSection","DELETE","/sites/{param}/onenote/sections/{param}","matched","Remove-MgSiteOnenoteSection" +"Notes","RemoveMgSiteOnenoteSectionGroup.g.cs","v1.0","Remove-MgSiteOnenoteSectionGroup","DELETE","/sites/{param}/onenote/sectionGroups/{param}","matched","Remove-MgSiteOnenoteSectionGroup" +"Notes","RemoveMgSiteOnenoteSectionGroupSection.g.cs","v1.0","Remove-MgSiteOnenoteSectionGroupSection","DELETE","/sites/{param}/onenote/sectionGroups/{param}/sections/{param}","matched","Remove-MgSiteOnenoteSectionGroupSection" +"Notes","RemoveMgSiteOnenoteSectionGroupSectionPage.g.cs","v1.0","Remove-MgSiteOnenoteSectionGroupSectionPage","DELETE","/sites/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}","matched","Remove-MgSiteOnenoteSectionGroupSectionPage" +"Notes","RemoveMgSiteOnenoteSectionPage.g.cs","v1.0","Remove-MgSiteOnenoteSectionPage","DELETE","/sites/{param}/onenote/sections/{param}/pages/{param}","matched","Remove-MgSiteOnenoteSectionPage" +"Notes","RemoveMgUserOnenote.g.cs","v1.0","Remove-MgUserOnenote","DELETE","/users/{param}/onenote","matched","Remove-MgUserOnenote" +"Notes","RemoveMgUserOnenoteNotebook.g.cs","v1.0","Remove-MgUserOnenoteNotebook","DELETE","/users/{param}/onenote/notebooks/{param}","matched","Remove-MgUserOnenoteNotebook" +"Notes","RemoveMgUserOnenoteNotebookSection.g.cs","v1.0","Remove-MgUserOnenoteNotebookSection","DELETE","/users/{param}/onenote/notebooks/{param}/sections/{param}","matched","Remove-MgUserOnenoteNotebookSection" +"Notes","RemoveMgUserOnenoteNotebookSectionGroup.g.cs","v1.0","Remove-MgUserOnenoteNotebookSectionGroup","DELETE","/users/{param}/onenote/notebooks/{param}/sectionGroups/{param}","matched","Remove-MgUserOnenoteNotebookSectionGroup" +"Notes","RemoveMgUserOnenoteNotebookSectionGroupSection.g.cs","v1.0","Remove-MgUserOnenoteNotebookSectionGroupSection","DELETE","/users/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}","matched","Remove-MgUserOnenoteNotebookSectionGroupSection" +"Notes","RemoveMgUserOnenoteNotebookSectionGroupSectionPage.g.cs","v1.0","Remove-MgUserOnenoteNotebookSectionGroupSectionPage","DELETE","/users/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}","matched","Remove-MgUserOnenoteNotebookSectionGroupSectionPage" +"Notes","RemoveMgUserOnenoteNotebookSectionGroupSectionPageContent.g.cs","v1.0","Remove-MgUserOnenoteNotebookSectionGroupSectionPageContent","DELETE","/users/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}/$value","matched","Remove-MgUserOnenoteNotebookSectionGroupSectionPageContent" +"Notes","RemoveMgUserOnenoteNotebookSectionPage.g.cs","v1.0","Remove-MgUserOnenoteNotebookSectionPage","DELETE","/users/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}","matched","Remove-MgUserOnenoteNotebookSectionPage" +"Notes","RemoveMgUserOnenoteNotebookSectionPageContent.g.cs","v1.0","Remove-MgUserOnenoteNotebookSectionPageContent","DELETE","/users/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}/$value","matched","Remove-MgUserOnenoteNotebookSectionPageContent" +"Notes","RemoveMgUserOnenoteOperation.g.cs","v1.0","Remove-MgUserOnenoteOperation","DELETE","/users/{param}/onenote/operations/{param}","matched","Remove-MgUserOnenoteOperation" +"Notes","RemoveMgUserOnenotePage.g.cs","v1.0","Remove-MgUserOnenotePage","DELETE","/users/{param}/onenote/pages/{param}","matched","Remove-MgUserOnenotePage" +"Notes","RemoveMgUserOnenotePageContent.g.cs","v1.0","Remove-MgUserOnenotePageContent","DELETE","/users/{param}/onenote/pages/{param}/$value","matched","Remove-MgUserOnenotePageContent" +"Notes","RemoveMgUserOnenoteResource.g.cs","v1.0","Remove-MgUserOnenoteResource","DELETE","/users/{param}/onenote/resources/{param}","matched","Remove-MgUserOnenoteResource" +"Notes","RemoveMgUserOnenoteResourceContent.g.cs","v1.0","Remove-MgUserOnenoteResourceContent","DELETE","/users/{param}/onenote/resources/{param}/$value","matched","Remove-MgUserOnenoteResourceContent" +"Notes","RemoveMgUserOnenoteSection.g.cs","v1.0","Remove-MgUserOnenoteSection","DELETE","/users/{param}/onenote/sections/{param}","matched","Remove-MgUserOnenoteSection" +"Notes","RemoveMgUserOnenoteSectionGroup.g.cs","v1.0","Remove-MgUserOnenoteSectionGroup","DELETE","/users/{param}/onenote/sectionGroups/{param}","matched","Remove-MgUserOnenoteSectionGroup" +"Notes","RemoveMgUserOnenoteSectionGroupSection.g.cs","v1.0","Remove-MgUserOnenoteSectionGroupSection","DELETE","/users/{param}/onenote/sectionGroups/{param}/sections/{param}","matched","Remove-MgUserOnenoteSectionGroupSection" +"Notes","RemoveMgUserOnenoteSectionGroupSectionPage.g.cs","v1.0","Remove-MgUserOnenoteSectionGroupSectionPage","DELETE","/users/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}","matched","Remove-MgUserOnenoteSectionGroupSectionPage" +"Notes","RemoveMgUserOnenoteSectionGroupSectionPageContent.g.cs","v1.0","Remove-MgUserOnenoteSectionGroupSectionPageContent","DELETE","/users/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}/$value","matched","Remove-MgUserOnenoteSectionGroupSectionPageContent" +"Notes","RemoveMgUserOnenoteSectionPage.g.cs","v1.0","Remove-MgUserOnenoteSectionPage","DELETE","/users/{param}/onenote/sections/{param}/pages/{param}","matched","Remove-MgUserOnenoteSectionPage" +"Notes","RemoveMgUserOnenoteSectionPageContent.g.cs","v1.0","Remove-MgUserOnenoteSectionPageContent","DELETE","/users/{param}/onenote/sections/{param}/pages/{param}/$value","matched","Remove-MgUserOnenoteSectionPageContent" +"Notes","SetMgGroupOnenoteNotebookSectionGroupSectionPageContent.g.cs","v1.0","Set-MgGroupOnenoteNotebookSectionGroupSectionPageContent","PUT","/groups/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}/$value","matched","Set-MgGroupOnenoteNotebookSectionGroupSectionPageContent" +"Notes","SetMgGroupOnenoteNotebookSectionPageContent.g.cs","v1.0","Set-MgGroupOnenoteNotebookSectionPageContent","PUT","/groups/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}/$value","matched","Set-MgGroupOnenoteNotebookSectionPageContent" +"Notes","SetMgGroupOnenotePageContent.g.cs","v1.0","Set-MgGroupOnenotePageContent","PUT","/groups/{param}/onenote/pages/{param}/$value","matched","Set-MgGroupOnenotePageContent" +"Notes","SetMgGroupOnenoteResourceContent.g.cs","v1.0","Set-MgGroupOnenoteResourceContent","PUT","/groups/{param}/onenote/resources/{param}/$value","matched","Set-MgGroupOnenoteResourceContent" +"Notes","SetMgGroupOnenoteSectionGroupSectionPageContent.g.cs","v1.0","Set-MgGroupOnenoteSectionGroupSectionPageContent","PUT","/groups/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}/$value","matched","Set-MgGroupOnenoteSectionGroupSectionPageContent" +"Notes","SetMgGroupOnenoteSectionPageContent.g.cs","v1.0","Set-MgGroupOnenoteSectionPageContent","PUT","/groups/{param}/onenote/sections/{param}/pages/{param}/$value","matched","Set-MgGroupOnenoteSectionPageContent" +"Notes","SetMgSiteOnenoteNotebookSectionGroupSectionPageContent.g.cs","v1.0","Set-MgSiteOnenoteNotebookSectionGroupSectionPageContent","PUT","/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}/$value","matched","Set-MgSiteOnenoteNotebookSectionGroupSectionPageContent" +"Notes","SetMgSiteOnenoteNotebookSectionPageContent.g.cs","v1.0","Set-MgSiteOnenoteNotebookSectionPageContent","PUT","/sites/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}/$value","matched","Set-MgSiteOnenoteNotebookSectionPageContent" +"Notes","SetMgSiteOnenotePageContent.g.cs","v1.0","Set-MgSiteOnenotePageContent","PUT","/sites/{param}/onenote/pages/{param}/$value","matched","Set-MgSiteOnenotePageContent" +"Notes","SetMgSiteOnenoteResourceContent.g.cs","v1.0","Set-MgSiteOnenoteResourceContent","PUT","/sites/{param}/onenote/resources/{param}/$value","matched","Set-MgSiteOnenoteResourceContent" +"Notes","SetMgSiteOnenoteSectionGroupSectionPageContent.g.cs","v1.0","Set-MgSiteOnenoteSectionGroupSectionPageContent","PUT","/sites/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}/$value","matched","Set-MgSiteOnenoteSectionGroupSectionPageContent" +"Notes","SetMgSiteOnenoteSectionPageContent.g.cs","v1.0","Set-MgSiteOnenoteSectionPageContent","PUT","/sites/{param}/onenote/sections/{param}/pages/{param}/$value","matched","Set-MgSiteOnenoteSectionPageContent" +"Notes","SetMgUserOnenoteNotebookSectionGroupSectionPageContent.g.cs","v1.0","Set-MgUserOnenoteNotebookSectionGroupSectionPageContent","PUT","/users/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}/$value","matched","Set-MgUserOnenoteNotebookSectionGroupSectionPageContent" +"Notes","SetMgUserOnenoteNotebookSectionPageContent.g.cs","v1.0","Set-MgUserOnenoteNotebookSectionPageContent","PUT","/users/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}/$value","matched","Set-MgUserOnenoteNotebookSectionPageContent" +"Notes","SetMgUserOnenotePageContent.g.cs","v1.0","Set-MgUserOnenotePageContent","PUT","/users/{param}/onenote/pages/{param}/$value","matched","Set-MgUserOnenotePageContent" +"Notes","SetMgUserOnenoteResourceContent.g.cs","v1.0","Set-MgUserOnenoteResourceContent","PUT","/users/{param}/onenote/resources/{param}/$value","matched","Set-MgUserOnenoteResourceContent" +"Notes","SetMgUserOnenoteSectionGroupSectionPageContent.g.cs","v1.0","Set-MgUserOnenoteSectionGroupSectionPageContent","PUT","/users/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}/$value","matched","Set-MgUserOnenoteSectionGroupSectionPageContent" +"Notes","SetMgUserOnenoteSectionPageContent.g.cs","v1.0","Set-MgUserOnenoteSectionPageContent","PUT","/users/{param}/onenote/sections/{param}/pages/{param}/$value","matched","Set-MgUserOnenoteSectionPageContent" +"Notes","UpdateMgGroupOnenote.g.cs","v1.0","Update-MgGroupOnenote","PATCH","/groups/{param}/onenote","matched","Update-MgGroupOnenote" +"Notes","UpdateMgGroupOnenoteNotebook.g.cs","v1.0","Update-MgGroupOnenoteNotebook","PATCH","/groups/{param}/onenote/notebooks/{param}","matched","Update-MgGroupOnenoteNotebook" +"Notes","UpdateMgGroupOnenoteNotebookSection.g.cs","v1.0","Update-MgGroupOnenoteNotebookSection","PATCH","/groups/{param}/onenote/notebooks/{param}/sections/{param}","matched","Update-MgGroupOnenoteNotebookSection" +"Notes","UpdateMgGroupOnenoteNotebookSectionGroup.g.cs","v1.0","Update-MgGroupOnenoteNotebookSectionGroup","PATCH","/groups/{param}/onenote/notebooks/{param}/sectionGroups/{param}","matched","Update-MgGroupOnenoteNotebookSectionGroup" +"Notes","UpdateMgGroupOnenoteNotebookSectionGroupSection.g.cs","v1.0","Update-MgGroupOnenoteNotebookSectionGroupSection","PATCH","/groups/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}","matched","Update-MgGroupOnenoteNotebookSectionGroupSection" +"Notes","UpdateMgGroupOnenoteNotebookSectionGroupSectionPage.g.cs","v1.0","Update-MgGroupOnenoteNotebookSectionGroupSectionPage","PATCH","/groups/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}","no-oracle","" +"Notes","UpdateMgGroupOnenoteNotebookSectionPage.g.cs","v1.0","Update-MgGroupOnenoteNotebookSectionPage","PATCH","/groups/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}","no-oracle","" +"Notes","UpdateMgGroupOnenoteOperation.g.cs","v1.0","Update-MgGroupOnenoteOperation","PATCH","/groups/{param}/onenote/operations/{param}","matched","Update-MgGroupOnenoteOperation" +"Notes","UpdateMgGroupOnenotePage.g.cs","v1.0","Update-MgGroupOnenotePage","PATCH","/groups/{param}/onenote/pages/{param}","no-oracle","" +"Notes","UpdateMgGroupOnenoteResource.g.cs","v1.0","Update-MgGroupOnenoteResource","PATCH","/groups/{param}/onenote/resources/{param}","matched","Update-MgGroupOnenoteResource" +"Notes","UpdateMgGroupOnenoteSection.g.cs","v1.0","Update-MgGroupOnenoteSection","PATCH","/groups/{param}/onenote/sections/{param}","matched","Update-MgGroupOnenoteSection" +"Notes","UpdateMgGroupOnenoteSectionGroup.g.cs","v1.0","Update-MgGroupOnenoteSectionGroup","PATCH","/groups/{param}/onenote/sectionGroups/{param}","matched","Update-MgGroupOnenoteSectionGroup" +"Notes","UpdateMgGroupOnenoteSectionGroupSection.g.cs","v1.0","Update-MgGroupOnenoteSectionGroupSection","PATCH","/groups/{param}/onenote/sectionGroups/{param}/sections/{param}","matched","Update-MgGroupOnenoteSectionGroupSection" +"Notes","UpdateMgGroupOnenoteSectionGroupSectionPage.g.cs","v1.0","Update-MgGroupOnenoteSectionGroupSectionPage","PATCH","/groups/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}","no-oracle","" +"Notes","UpdateMgGroupOnenoteSectionPage.g.cs","v1.0","Update-MgGroupOnenoteSectionPage","PATCH","/groups/{param}/onenote/sections/{param}/pages/{param}","no-oracle","" +"Notes","UpdateMgSiteOnenote.g.cs","v1.0","Update-MgSiteOnenote","PATCH","/sites/{param}/onenote","matched","Update-MgSiteOnenoteContent" +"Notes","UpdateMgSiteOnenoteNotebook.g.cs","v1.0","Update-MgSiteOnenoteNotebook","PATCH","/sites/{param}/onenote/notebooks/{param}","matched","Update-MgSiteOnenoteNotebookContent" +"Notes","UpdateMgSiteOnenoteNotebookSection.g.cs","v1.0","Update-MgSiteOnenoteNotebookSection","PATCH","/sites/{param}/onenote/notebooks/{param}/sections/{param}","matched","Update-MgSiteOnenoteNotebookSectionContent" +"Notes","UpdateMgSiteOnenoteNotebookSectionGroup.g.cs","v1.0","Update-MgSiteOnenoteNotebookSectionGroup","PATCH","/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}","matched","Update-MgSiteOnenoteNotebookSectionGroupContent" +"Notes","UpdateMgSiteOnenoteNotebookSectionGroupSection.g.cs","v1.0","Update-MgSiteOnenoteNotebookSectionGroupSection","PATCH","/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}","matched","Update-MgSiteOnenoteNotebookSectionGroupSectionContent" +"Notes","UpdateMgSiteOnenoteNotebookSectionGroupSectionPage.g.cs","v1.0","Update-MgSiteOnenoteNotebookSectionGroupSectionPage","PATCH","/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}","no-oracle","" +"Notes","UpdateMgSiteOnenoteNotebookSectionPage.g.cs","v1.0","Update-MgSiteOnenoteNotebookSectionPage","PATCH","/sites/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}","no-oracle","" +"Notes","UpdateMgSiteOnenoteOperation.g.cs","v1.0","Update-MgSiteOnenoteOperation","PATCH","/sites/{param}/onenote/operations/{param}","matched","Update-MgSiteOnenoteOperationContent" +"Notes","UpdateMgSiteOnenotePage.g.cs","v1.0","Update-MgSiteOnenotePage","PATCH","/sites/{param}/onenote/pages/{param}","no-oracle","" +"Notes","UpdateMgSiteOnenoteResource.g.cs","v1.0","Update-MgSiteOnenoteResource","PATCH","/sites/{param}/onenote/resources/{param}","matched","Update-MgSiteOnenoteResourceContent" +"Notes","UpdateMgSiteOnenoteSection.g.cs","v1.0","Update-MgSiteOnenoteSection","PATCH","/sites/{param}/onenote/sections/{param}","matched","Update-MgSiteOnenoteSectionContent" +"Notes","UpdateMgSiteOnenoteSectionGroup.g.cs","v1.0","Update-MgSiteOnenoteSectionGroup","PATCH","/sites/{param}/onenote/sectionGroups/{param}","matched","Update-MgSiteOnenoteSectionGroupContent" +"Notes","UpdateMgSiteOnenoteSectionGroupSection.g.cs","v1.0","Update-MgSiteOnenoteSectionGroupSection","PATCH","/sites/{param}/onenote/sectionGroups/{param}/sections/{param}","matched","Update-MgSiteOnenoteSectionGroupSectionContent" +"Notes","UpdateMgSiteOnenoteSectionGroupSectionPage.g.cs","v1.0","Update-MgSiteOnenoteSectionGroupSectionPage","PATCH","/sites/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}","no-oracle","" +"Notes","UpdateMgSiteOnenoteSectionPage.g.cs","v1.0","Update-MgSiteOnenoteSectionPage","PATCH","/sites/{param}/onenote/sections/{param}/pages/{param}","no-oracle","" +"Notes","UpdateMgUserOnenote.g.cs","v1.0","Update-MgUserOnenote","PATCH","/users/{param}/onenote","matched","Update-MgUserOnenote" +"Notes","UpdateMgUserOnenoteNotebook.g.cs","v1.0","Update-MgUserOnenoteNotebook","PATCH","/users/{param}/onenote/notebooks/{param}","matched","Update-MgUserOnenoteNotebook" +"Notes","UpdateMgUserOnenoteNotebookSection.g.cs","v1.0","Update-MgUserOnenoteNotebookSection","PATCH","/users/{param}/onenote/notebooks/{param}/sections/{param}","matched","Update-MgUserOnenoteNotebookSection" +"Notes","UpdateMgUserOnenoteNotebookSectionGroup.g.cs","v1.0","Update-MgUserOnenoteNotebookSectionGroup","PATCH","/users/{param}/onenote/notebooks/{param}/sectionGroups/{param}","matched","Update-MgUserOnenoteNotebookSectionGroup" +"Notes","UpdateMgUserOnenoteNotebookSectionGroupSection.g.cs","v1.0","Update-MgUserOnenoteNotebookSectionGroupSection","PATCH","/users/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}","matched","Update-MgUserOnenoteNotebookSectionGroupSection" +"Notes","UpdateMgUserOnenoteNotebookSectionGroupSectionPage.g.cs","v1.0","Update-MgUserOnenoteNotebookSectionGroupSectionPage","PATCH","/users/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}","no-oracle","" +"Notes","UpdateMgUserOnenoteNotebookSectionPage.g.cs","v1.0","Update-MgUserOnenoteNotebookSectionPage","PATCH","/users/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}","no-oracle","" +"Notes","UpdateMgUserOnenoteOperation.g.cs","v1.0","Update-MgUserOnenoteOperation","PATCH","/users/{param}/onenote/operations/{param}","matched","Update-MgUserOnenoteOperation" +"Notes","UpdateMgUserOnenotePage.g.cs","v1.0","Update-MgUserOnenotePage","PATCH","/users/{param}/onenote/pages/{param}","no-oracle","" +"Notes","UpdateMgUserOnenoteResource.g.cs","v1.0","Update-MgUserOnenoteResource","PATCH","/users/{param}/onenote/resources/{param}","matched","Update-MgUserOnenoteResource" +"Notes","UpdateMgUserOnenoteSection.g.cs","v1.0","Update-MgUserOnenoteSection","PATCH","/users/{param}/onenote/sections/{param}","matched","Update-MgUserOnenoteSection" +"Notes","UpdateMgUserOnenoteSectionGroup.g.cs","v1.0","Update-MgUserOnenoteSectionGroup","PATCH","/users/{param}/onenote/sectionGroups/{param}","matched","Update-MgUserOnenoteSectionGroup" +"Notes","UpdateMgUserOnenoteSectionGroupSection.g.cs","v1.0","Update-MgUserOnenoteSectionGroupSection","PATCH","/users/{param}/onenote/sectionGroups/{param}/sections/{param}","matched","Update-MgUserOnenoteSectionGroupSection" +"Notes","UpdateMgUserOnenoteSectionGroupSectionPage.g.cs","v1.0","Update-MgUserOnenoteSectionGroupSectionPage","PATCH","/users/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}","no-oracle","" +"Notes","UpdateMgUserOnenoteSectionPage.g.cs","v1.0","Update-MgUserOnenoteSectionPage","PATCH","/users/{param}/onenote/sections/{param}/pages/{param}","no-oracle","" +"People","GetMgUserPerson_Get.g.cs","v1.0","Get-MgUserPerson","GET","/users/{param}/people/{param}","matched","Get-MgUserPerson" +"People","GetMgUserPerson_List.g.cs","v1.0","Get-MgUserPerson","GET","/users/{param}/people","matched","Get-MgUserPerson" +"People","GetMgUserPerson.g.cs","v1.0","Get-MgUserPerson","","","dispatcher","" +"People","GetMgUserPersonCount.g.cs","v1.0","Get-MgUserPersonCount","GET","/users/{param}/people/$count","matched","Get-MgUserPersonCount" +"PersonalContacts","GetMgUserContact_Get.g.cs","v1.0","Get-MgUserContact","GET","/users/{param}/contacts/{param}","matched","Get-MgUserContact" +"PersonalContacts","GetMgUserContact_List.g.cs","v1.0","Get-MgUserContact","GET","/users/{param}/contacts","matched","Get-MgUserContact" +"PersonalContacts","GetMgUserContact.g.cs","v1.0","Get-MgUserContact","","","dispatcher","" +"PersonalContacts","GetMgUserContactCount.g.cs","v1.0","Get-MgUserContactCount","GET","/users/{param}/contacts/$count","matched","Get-MgUserContactCount" +"PersonalContacts","GetMgUserContactDelta.g.cs","v1.0","Get-MgUserContactDelta","GET","/users/{param}/contacts/delta","matched","Get-MgUserContactDelta" +"PersonalContacts","GetMgUserContactExtension_Get.g.cs","v1.0","Get-MgUserContactExtension","GET","/users/{param}/contacts/{param}/extensions/{param}","matched","Get-MgUserContactExtension" +"PersonalContacts","GetMgUserContactExtension_List.g.cs","v1.0","Get-MgUserContactExtension","GET","/users/{param}/contacts/{param}/extensions","matched","Get-MgUserContactExtension" +"PersonalContacts","GetMgUserContactExtension.g.cs","v1.0","Get-MgUserContactExtension","","","dispatcher","" +"PersonalContacts","GetMgUserContactExtensionCount.g.cs","v1.0","Get-MgUserContactExtensionCount","GET","/users/{param}/contacts/{param}/extensions/$count","matched","Get-MgUserContactExtensionCount" +"PersonalContacts","GetMgUserContactFolder_Get.g.cs","v1.0","Get-MgUserContactFolder","GET","/users/{param}/contactFolders/{param}","matched","Get-MgUserContactFolder" +"PersonalContacts","GetMgUserContactFolder_List.g.cs","v1.0","Get-MgUserContactFolder","GET","/users/{param}/contactFolders","matched","Get-MgUserContactFolder" +"PersonalContacts","GetMgUserContactFolder.g.cs","v1.0","Get-MgUserContactFolder","","","dispatcher","" +"PersonalContacts","GetMgUserContactFolderChildFolder_Get.g.cs","v1.0","Get-MgUserContactFolderChildFolder","GET","/users/{param}/contactFolders/{param}/childFolders/{param}","matched","Get-MgUserContactFolderChildFolder" +"PersonalContacts","GetMgUserContactFolderChildFolder_List.g.cs","v1.0","Get-MgUserContactFolderChildFolder","GET","/users/{param}/contactFolders/{param}/childFolders","matched","Get-MgUserContactFolderChildFolder" +"PersonalContacts","GetMgUserContactFolderChildFolder.g.cs","v1.0","Get-MgUserContactFolderChildFolder","","","dispatcher","" +"PersonalContacts","GetMgUserContactFolderChildFolderContact_Get.g.cs","v1.0","Get-MgUserContactFolderChildFolderContact","GET","/users/{param}/contactFolders/{param}/childFolders/{param}/contacts/{param}","matched","Get-MgUserContactFolderChildFolderContact" +"PersonalContacts","GetMgUserContactFolderChildFolderContact_List.g.cs","v1.0","Get-MgUserContactFolderChildFolderContact","GET","/users/{param}/contactFolders/{param}/childFolders/{param}/contacts","matched","Get-MgUserContactFolderChildFolderContact" +"PersonalContacts","GetMgUserContactFolderChildFolderContact.g.cs","v1.0","Get-MgUserContactFolderChildFolderContact","","","dispatcher","" +"PersonalContacts","GetMgUserContactFolderChildFolderContactCount.g.cs","v1.0","Get-MgUserContactFolderChildFolderContactCount","GET","/users/{param}/contactFolders/{param}/childFolders/{param}/contacts/$count","matched","Get-MgUserContactFolderChildFolderContactCount" +"PersonalContacts","GetMgUserContactFolderChildFolderContactDelta.g.cs","v1.0","Get-MgUserContactFolderChildFolderContactDelta","GET","/users/{param}/contactFolders/{param}/childFolders/{param}/contacts/delta","matched","Get-MgUserContactFolderChildFolderContactDelta" +"PersonalContacts","GetMgUserContactFolderChildFolderContactExtension_Get.g.cs","v1.0","Get-MgUserContactFolderChildFolderContactExtension","GET","/users/{param}/contactFolders/{param}/childFolders/{param}/contacts/{param}/extensions/{param}","matched","Get-MgUserContactFolderChildFolderContactExtension" +"PersonalContacts","GetMgUserContactFolderChildFolderContactExtension_List.g.cs","v1.0","Get-MgUserContactFolderChildFolderContactExtension","GET","/users/{param}/contactFolders/{param}/childFolders/{param}/contacts/{param}/extensions","matched","Get-MgUserContactFolderChildFolderContactExtension" +"PersonalContacts","GetMgUserContactFolderChildFolderContactExtension.g.cs","v1.0","Get-MgUserContactFolderChildFolderContactExtension","","","dispatcher","" +"PersonalContacts","GetMgUserContactFolderChildFolderContactExtensionCount.g.cs","v1.0","Get-MgUserContactFolderChildFolderContactExtensionCount","GET","/users/{param}/contactFolders/{param}/childFolders/{param}/contacts/{param}/extensions/$count","matched","Get-MgUserContactFolderChildFolderContactExtensionCount" +"PersonalContacts","GetMgUserContactFolderChildFolderContactPhoto.g.cs","v1.0","Get-MgUserContactFolderChildFolderContactPhoto","GET","/users/{param}/contactFolders/{param}/childFolders/{param}/contacts/{param}/photo","matched","Get-MgUserContactFolderChildFolderContactPhoto" +"PersonalContacts","GetMgUserContactFolderChildFolderContactPhotoContent.g.cs","v1.0","Get-MgUserContactFolderChildFolderContactPhotoContent","GET","/users/{param}/contactFolders/{param}/childFolders/{param}/contacts/{param}/photo/$value","matched","Get-MgUserContactFolderChildFolderContactPhotoContent" +"PersonalContacts","GetMgUserContactFolderChildFolderCount.g.cs","v1.0","Get-MgUserContactFolderChildFolderCount","GET","/users/{param}/contactFolders/{param}/childFolders/$count","matched","Get-MgUserContactFolderChildFolderCount" +"PersonalContacts","GetMgUserContactFolderChildFolderDelta.g.cs","v1.0","Get-MgUserContactFolderChildFolderDelta","GET","/users/{param}/contactFolders/{param}/childFolders/delta","matched","Get-MgUserContactFolderChildFolderDelta" +"PersonalContacts","GetMgUserContactFolderContact_Get.g.cs","v1.0","Get-MgUserContactFolderContact","GET","/users/{param}/contactFolders/{param}/contacts/{param}","matched","Get-MgUserContactFolderContact" +"PersonalContacts","GetMgUserContactFolderContact_List.g.cs","v1.0","Get-MgUserContactFolderContact","GET","/users/{param}/contactFolders/{param}/contacts","matched","Get-MgUserContactFolderContact" +"PersonalContacts","GetMgUserContactFolderContact.g.cs","v1.0","Get-MgUserContactFolderContact","","","dispatcher","" +"PersonalContacts","GetMgUserContactFolderContactCount.g.cs","v1.0","Get-MgUserContactFolderContactCount","GET","/users/{param}/contactFolders/{param}/contacts/$count","matched","Get-MgUserContactFolderContactCount" +"PersonalContacts","GetMgUserContactFolderContactDelta.g.cs","v1.0","Get-MgUserContactFolderContactDelta","GET","/users/{param}/contactFolders/{param}/contacts/delta","matched","Get-MgUserContactFolderContactDelta" +"PersonalContacts","GetMgUserContactFolderContactExtension_Get.g.cs","v1.0","Get-MgUserContactFolderContactExtension","GET","/users/{param}/contactFolders/{param}/contacts/{param}/extensions/{param}","matched","Get-MgUserContactFolderContactExtension" +"PersonalContacts","GetMgUserContactFolderContactExtension_List.g.cs","v1.0","Get-MgUserContactFolderContactExtension","GET","/users/{param}/contactFolders/{param}/contacts/{param}/extensions","matched","Get-MgUserContactFolderContactExtension" +"PersonalContacts","GetMgUserContactFolderContactExtension.g.cs","v1.0","Get-MgUserContactFolderContactExtension","","","dispatcher","" +"PersonalContacts","GetMgUserContactFolderContactExtensionCount.g.cs","v1.0","Get-MgUserContactFolderContactExtensionCount","GET","/users/{param}/contactFolders/{param}/contacts/{param}/extensions/$count","matched","Get-MgUserContactFolderContactExtensionCount" +"PersonalContacts","GetMgUserContactFolderContactPhoto.g.cs","v1.0","Get-MgUserContactFolderContactPhoto","GET","/users/{param}/contactFolders/{param}/contacts/{param}/photo","matched","Get-MgUserContactFolderContactPhoto" +"PersonalContacts","GetMgUserContactFolderContactPhotoContent.g.cs","v1.0","Get-MgUserContactFolderContactPhotoContent","GET","/users/{param}/contactFolders/{param}/contacts/{param}/photo/$value","matched","Get-MgUserContactFolderContactPhotoContent" +"PersonalContacts","GetMgUserContactFolderCount.g.cs","v1.0","Get-MgUserContactFolderCount","GET","/users/{param}/contactFolders/$count","matched","Get-MgUserContactFolderCount" +"PersonalContacts","GetMgUserContactFolderDelta.g.cs","v1.0","Get-MgUserContactFolderDelta","GET","/users/{param}/contactFolders/delta","matched","Get-MgUserContactFolderDelta" +"PersonalContacts","GetMgUserContactPhoto.g.cs","v1.0","Get-MgUserContactPhoto","GET","/users/{param}/contacts/{param}/photo","matched","Get-MgUserContactPhoto" +"PersonalContacts","GetMgUserContactPhotoContent.g.cs","v1.0","Get-MgUserContactPhotoContent","GET","/users/{param}/contacts/{param}/photo/$value","matched","Get-MgUserContactPhotoContent" +"PersonalContacts","InvokeMgUserContactFolderChildFolderContactPermanentDelete.g.cs","v1.0","Invoke-MgUserContactFolderChildFolderContactPermanentDelete","POST","/users/{param}/contactFolders/{param}/childFolders/{param}/contacts/{param}/permanentDelete","mismatch","Remove-MgUserContactFolderChildFolderContactPermanent" +"PersonalContacts","InvokeMgUserContactFolderChildFolderPermanentDelete.g.cs","v1.0","Invoke-MgUserContactFolderChildFolderPermanentDelete","POST","/users/{param}/contactFolders/{param}/childFolders/{param}/permanentDelete","mismatch","Remove-MgUserContactFolderChildFolderPermanent" +"PersonalContacts","InvokeMgUserContactFolderContactPermanentDelete.g.cs","v1.0","Invoke-MgUserContactFolderContactPermanentDelete","POST","/users/{param}/contactFolders/{param}/contacts/{param}/permanentDelete","mismatch","Remove-MgUserContactFolderContactPermanent" +"PersonalContacts","InvokeMgUserContactFolderPermanentDelete.g.cs","v1.0","Invoke-MgUserContactFolderPermanentDelete","POST","/users/{param}/contactFolders/{param}/permanentDelete","mismatch","Remove-MgUserContactFolderPermanent" +"PersonalContacts","InvokeMgUserContactPermanentDelete.g.cs","v1.0","Invoke-MgUserContactPermanentDelete","POST","/users/{param}/contacts/{param}/permanentDelete","mismatch","Remove-MgUserContactPermanent" +"PersonalContacts","NewMgUserContact.g.cs","v1.0","New-MgUserContact","POST","/users/{param}/contacts","matched","New-MgUserContact" +"PersonalContacts","NewMgUserContactExtension.g.cs","v1.0","New-MgUserContactExtension","POST","/users/{param}/contacts/{param}/extensions","matched","New-MgUserContactExtension" +"PersonalContacts","NewMgUserContactFolder.g.cs","v1.0","New-MgUserContactFolder","POST","/users/{param}/contactFolders","matched","New-MgUserContactFolder" +"PersonalContacts","NewMgUserContactFolderChildFolder.g.cs","v1.0","New-MgUserContactFolderChildFolder","POST","/users/{param}/contactFolders/{param}/childFolders","matched","New-MgUserContactFolderChildFolder" +"PersonalContacts","NewMgUserContactFolderChildFolderContact.g.cs","v1.0","New-MgUserContactFolderChildFolderContact","POST","/users/{param}/contactFolders/{param}/childFolders/{param}/contacts","matched","New-MgUserContactFolderChildFolderContact" +"PersonalContacts","NewMgUserContactFolderChildFolderContactExtension.g.cs","v1.0","New-MgUserContactFolderChildFolderContactExtension","POST","/users/{param}/contactFolders/{param}/childFolders/{param}/contacts/{param}/extensions","matched","New-MgUserContactFolderChildFolderContactExtension" +"PersonalContacts","NewMgUserContactFolderContact.g.cs","v1.0","New-MgUserContactFolderContact","POST","/users/{param}/contactFolders/{param}/contacts","matched","New-MgUserContactFolderContact" +"PersonalContacts","NewMgUserContactFolderContactExtension.g.cs","v1.0","New-MgUserContactFolderContactExtension","POST","/users/{param}/contactFolders/{param}/contacts/{param}/extensions","matched","New-MgUserContactFolderContactExtension" +"PersonalContacts","RemoveMgUserContact.g.cs","v1.0","Remove-MgUserContact","DELETE","/users/{param}/contacts/{param}","matched","Remove-MgUserContact" +"PersonalContacts","RemoveMgUserContactExtension.g.cs","v1.0","Remove-MgUserContactExtension","DELETE","/users/{param}/contacts/{param}/extensions/{param}","matched","Remove-MgUserContactExtension" +"PersonalContacts","RemoveMgUserContactFolder.g.cs","v1.0","Remove-MgUserContactFolder","DELETE","/users/{param}/contactFolders/{param}","matched","Remove-MgUserContactFolder" +"PersonalContacts","RemoveMgUserContactFolderChildFolder.g.cs","v1.0","Remove-MgUserContactFolderChildFolder","DELETE","/users/{param}/contactFolders/{param}/childFolders/{param}","matched","Remove-MgUserContactFolderChildFolder" +"PersonalContacts","RemoveMgUserContactFolderChildFolderContact.g.cs","v1.0","Remove-MgUserContactFolderChildFolderContact","DELETE","/users/{param}/contactFolders/{param}/childFolders/{param}/contacts/{param}","matched","Remove-MgUserContactFolderChildFolderContact" +"PersonalContacts","RemoveMgUserContactFolderChildFolderContactExtension.g.cs","v1.0","Remove-MgUserContactFolderChildFolderContactExtension","DELETE","/users/{param}/contactFolders/{param}/childFolders/{param}/contacts/{param}/extensions/{param}","matched","Remove-MgUserContactFolderChildFolderContactExtension" +"PersonalContacts","RemoveMgUserContactFolderChildFolderContactPhotoContent.g.cs","v1.0","Remove-MgUserContactFolderChildFolderContactPhotoContent","DELETE","/users/{param}/contactFolders/{param}/childFolders/{param}/contacts/{param}/photo/$value","matched","Remove-MgUserContactFolderChildFolderContactPhotoContent" +"PersonalContacts","RemoveMgUserContactFolderContact.g.cs","v1.0","Remove-MgUserContactFolderContact","DELETE","/users/{param}/contactFolders/{param}/contacts/{param}","matched","Remove-MgUserContactFolderContact" +"PersonalContacts","RemoveMgUserContactFolderContactExtension.g.cs","v1.0","Remove-MgUserContactFolderContactExtension","DELETE","/users/{param}/contactFolders/{param}/contacts/{param}/extensions/{param}","matched","Remove-MgUserContactFolderContactExtension" +"PersonalContacts","RemoveMgUserContactFolderContactPhotoContent.g.cs","v1.0","Remove-MgUserContactFolderContactPhotoContent","DELETE","/users/{param}/contactFolders/{param}/contacts/{param}/photo/$value","matched","Remove-MgUserContactFolderContactPhotoContent" +"PersonalContacts","RemoveMgUserContactPhotoContent.g.cs","v1.0","Remove-MgUserContactPhotoContent","DELETE","/users/{param}/contacts/{param}/photo/$value","matched","Remove-MgUserContactPhotoContent" +"PersonalContacts","UpdateMgUserContact.g.cs","v1.0","Update-MgUserContact","PATCH","/users/{param}/contacts/{param}","matched","Update-MgUserContact" +"PersonalContacts","UpdateMgUserContactExtension.g.cs","v1.0","Update-MgUserContactExtension","PATCH","/users/{param}/contacts/{param}/extensions/{param}","matched","Update-MgUserContactExtension" +"PersonalContacts","UpdateMgUserContactFolder.g.cs","v1.0","Update-MgUserContactFolder","PATCH","/users/{param}/contactFolders/{param}","matched","Update-MgUserContactFolder" +"PersonalContacts","UpdateMgUserContactFolderChildFolder.g.cs","v1.0","Update-MgUserContactFolderChildFolder","PATCH","/users/{param}/contactFolders/{param}/childFolders/{param}","matched","Update-MgUserContactFolderChildFolder" +"PersonalContacts","UpdateMgUserContactFolderChildFolderContact.g.cs","v1.0","Update-MgUserContactFolderChildFolderContact","PATCH","/users/{param}/contactFolders/{param}/childFolders/{param}/contacts/{param}","matched","Update-MgUserContactFolderChildFolderContact" +"PersonalContacts","UpdateMgUserContactFolderChildFolderContactExtension.g.cs","v1.0","Update-MgUserContactFolderChildFolderContactExtension","PATCH","/users/{param}/contactFolders/{param}/childFolders/{param}/contacts/{param}/extensions/{param}","matched","Update-MgUserContactFolderChildFolderContactExtension" +"PersonalContacts","UpdateMgUserContactFolderChildFolderContactPhoto.g.cs","v1.0","Update-MgUserContactFolderChildFolderContactPhoto","PATCH","/users/{param}/contactFolders/{param}/childFolders/{param}/contacts/{param}/photo","matched","Update-MgUserContactFolderChildFolderContactPhoto" +"PersonalContacts","UpdateMgUserContactFolderContact.g.cs","v1.0","Update-MgUserContactFolderContact","PATCH","/users/{param}/contactFolders/{param}/contacts/{param}","matched","Update-MgUserContactFolderContact" +"PersonalContacts","UpdateMgUserContactFolderContactExtension.g.cs","v1.0","Update-MgUserContactFolderContactExtension","PATCH","/users/{param}/contactFolders/{param}/contacts/{param}/extensions/{param}","matched","Update-MgUserContactFolderContactExtension" +"PersonalContacts","UpdateMgUserContactFolderContactPhoto.g.cs","v1.0","Update-MgUserContactFolderContactPhoto","PATCH","/users/{param}/contactFolders/{param}/contacts/{param}/photo","matched","Update-MgUserContactFolderContactPhoto" +"PersonalContacts","UpdateMgUserContactPhoto.g.cs","v1.0","Update-MgUserContactPhoto","PATCH","/users/{param}/contacts/{param}/photo","matched","Update-MgUserContactPhoto" +"Planner","GetMgGroupPlanner.g.cs","v1.0","Get-MgGroupPlanner","GET","/groups/{param}/planner","matched","Get-MgGroupPlanner" +"Planner","GetMgGroupPlannerPlan_Get.g.cs","v1.0","Get-MgGroupPlannerPlan","GET","/groups/{param}/planner/plans/{param}","matched","Get-MgGroupPlannerPlan" +"Planner","GetMgGroupPlannerPlan_List.g.cs","v1.0","Get-MgGroupPlannerPlan","GET","/groups/{param}/planner/plans","matched","Get-MgGroupPlannerPlan" +"Planner","GetMgGroupPlannerPlan.g.cs","v1.0","Get-MgGroupPlannerPlan","","","dispatcher","" +"Planner","GetMgGroupPlannerPlanBucket_Get.g.cs","v1.0","Get-MgGroupPlannerPlanBucket","GET","/groups/{param}/planner/plans/{param}/buckets/{param}","no-oracle","" +"Planner","GetMgGroupPlannerPlanBucket_List.g.cs","v1.0","Get-MgGroupPlannerPlanBucket","GET","/groups/{param}/planner/plans/{param}/buckets","matched","Get-MgGroupPlannerPlanBucket" +"Planner","GetMgGroupPlannerPlanBucket.g.cs","v1.0","Get-MgGroupPlannerPlanBucket","","","dispatcher","" +"Planner","GetMgGroupPlannerPlanBucketCount.g.cs","v1.0","Get-MgGroupPlannerPlanBucketCount","GET","/groups/{param}/planner/plans/{param}/buckets/$count","no-oracle","" +"Planner","GetMgGroupPlannerPlanBucketTask_Get.g.cs","v1.0","Get-MgGroupPlannerPlanBucketTask","GET","/groups/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}","no-oracle","" +"Planner","GetMgGroupPlannerPlanBucketTask_List.g.cs","v1.0","Get-MgGroupPlannerPlanBucketTask","GET","/groups/{param}/planner/plans/{param}/buckets/{param}/tasks","no-oracle","" +"Planner","GetMgGroupPlannerPlanBucketTask.g.cs","v1.0","Get-MgGroupPlannerPlanBucketTask","","","dispatcher","" +"Planner","GetMgGroupPlannerPlanBucketTaskAssignedToTaskBoardFormat.g.cs","v1.0","Get-MgGroupPlannerPlanBucketTaskAssignedToTaskBoardFormat","GET","/groups/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/assignedToTaskBoardFormat","no-oracle","" +"Planner","GetMgGroupPlannerPlanBucketTaskBucketTaskBoardFormat.g.cs","v1.0","Get-MgGroupPlannerPlanBucketTaskBucketTaskBoardFormat","GET","/groups/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/bucketTaskBoardFormat","no-oracle","" +"Planner","GetMgGroupPlannerPlanBucketTaskCount.g.cs","v1.0","Get-MgGroupPlannerPlanBucketTaskCount","GET","/groups/{param}/planner/plans/{param}/buckets/{param}/tasks/$count","no-oracle","" +"Planner","GetMgGroupPlannerPlanBucketTaskDetail.g.cs","v1.0","Get-MgGroupPlannerPlanBucketTaskDetail","GET","/groups/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/details","no-oracle","" +"Planner","GetMgGroupPlannerPlanBucketTaskProgressTaskBoardFormat.g.cs","v1.0","Get-MgGroupPlannerPlanBucketTaskProgressTaskBoardFormat","GET","/groups/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/progressTaskBoardFormat","no-oracle","" +"Planner","GetMgGroupPlannerPlanCount.g.cs","v1.0","Get-MgGroupPlannerPlanCount","GET","/groups/{param}/planner/plans/$count","matched","Get-MgGroupPlannerPlanCount" +"Planner","GetMgGroupPlannerPlanDetail.g.cs","v1.0","Get-MgGroupPlannerPlanDetail","GET","/groups/{param}/planner/plans/{param}/details","matched","Get-MgGroupPlannerPlanDetail" +"Planner","GetMgGroupPlannerPlanTask_Get.g.cs","v1.0","Get-MgGroupPlannerPlanTask","GET","/groups/{param}/planner/plans/{param}/tasks/{param}","no-oracle","" +"Planner","GetMgGroupPlannerPlanTask_List.g.cs","v1.0","Get-MgGroupPlannerPlanTask","GET","/groups/{param}/planner/plans/{param}/tasks","matched","Get-MgGroupPlannerPlanTask" +"Planner","GetMgGroupPlannerPlanTask.g.cs","v1.0","Get-MgGroupPlannerPlanTask","","","dispatcher","" +"Planner","GetMgGroupPlannerPlanTaskAssignedToTaskBoardFormat.g.cs","v1.0","Get-MgGroupPlannerPlanTaskAssignedToTaskBoardFormat","GET","/groups/{param}/planner/plans/{param}/tasks/{param}/assignedToTaskBoardFormat","no-oracle","" +"Planner","GetMgGroupPlannerPlanTaskBucketTaskBoardFormat.g.cs","v1.0","Get-MgGroupPlannerPlanTaskBucketTaskBoardFormat","GET","/groups/{param}/planner/plans/{param}/tasks/{param}/bucketTaskBoardFormat","no-oracle","" +"Planner","GetMgGroupPlannerPlanTaskCount.g.cs","v1.0","Get-MgGroupPlannerPlanTaskCount","GET","/groups/{param}/planner/plans/{param}/tasks/$count","no-oracle","" +"Planner","GetMgGroupPlannerPlanTaskDetail.g.cs","v1.0","Get-MgGroupPlannerPlanTaskDetail","GET","/groups/{param}/planner/plans/{param}/tasks/{param}/details","no-oracle","" +"Planner","GetMgGroupPlannerPlanTaskProgressTaskBoardFormat.g.cs","v1.0","Get-MgGroupPlannerPlanTaskProgressTaskBoardFormat","GET","/groups/{param}/planner/plans/{param}/tasks/{param}/progressTaskBoardFormat","no-oracle","" +"Planner","GetMgPlanner.g.cs","v1.0","Get-MgPlanner","GET","/planner","matched","Get-MgPlanner" +"Planner","GetMgPlannerBucket_Get.g.cs","v1.0","Get-MgPlannerBucket","GET","/planner/buckets/{param}","matched","Get-MgPlannerBucket" +"Planner","GetMgPlannerBucket_List.g.cs","v1.0","Get-MgPlannerBucket","GET","/planner/buckets","matched","Get-MgPlannerBucket" +"Planner","GetMgPlannerBucket.g.cs","v1.0","Get-MgPlannerBucket","","","dispatcher","" +"Planner","GetMgPlannerBucketCount.g.cs","v1.0","Get-MgPlannerBucketCount","GET","/planner/buckets/$count","matched","Get-MgPlannerBucketCount" +"Planner","GetMgPlannerBucketTask_Get.g.cs","v1.0","Get-MgPlannerBucketTask","GET","/planner/buckets/{param}/tasks/{param}","no-oracle","" +"Planner","GetMgPlannerBucketTask_List.g.cs","v1.0","Get-MgPlannerBucketTask","GET","/planner/buckets/{param}/tasks","matched","Get-MgPlannerBucketTask" +"Planner","GetMgPlannerBucketTask.g.cs","v1.0","Get-MgPlannerBucketTask","","","dispatcher","" +"Planner","GetMgPlannerBucketTaskAssignedToTaskBoardFormat.g.cs","v1.0","Get-MgPlannerBucketTaskAssignedToTaskBoardFormat","GET","/planner/buckets/{param}/tasks/{param}/assignedToTaskBoardFormat","no-oracle","" +"Planner","GetMgPlannerBucketTaskBucketTaskBoardFormat.g.cs","v1.0","Get-MgPlannerBucketTaskBucketTaskBoardFormat","GET","/planner/buckets/{param}/tasks/{param}/bucketTaskBoardFormat","no-oracle","" +"Planner","GetMgPlannerBucketTaskCount.g.cs","v1.0","Get-MgPlannerBucketTaskCount","GET","/planner/buckets/{param}/tasks/$count","no-oracle","" +"Planner","GetMgPlannerBucketTaskDetail.g.cs","v1.0","Get-MgPlannerBucketTaskDetail","GET","/planner/buckets/{param}/tasks/{param}/details","no-oracle","" +"Planner","GetMgPlannerBucketTaskProgressTaskBoardFormat.g.cs","v1.0","Get-MgPlannerBucketTaskProgressTaskBoardFormat","GET","/planner/buckets/{param}/tasks/{param}/progressTaskBoardFormat","no-oracle","" +"Planner","GetMgPlannerPlan_Get.g.cs","v1.0","Get-MgPlannerPlan","GET","/planner/plans/{param}","matched","Get-MgPlannerPlan" +"Planner","GetMgPlannerPlan_List.g.cs","v1.0","Get-MgPlannerPlan","GET","/planner/plans","matched","Get-MgPlannerPlan" +"Planner","GetMgPlannerPlan.g.cs","v1.0","Get-MgPlannerPlan","","","dispatcher","" +"Planner","GetMgPlannerPlanBucket_Get.g.cs","v1.0","Get-MgPlannerPlanBucket","GET","/planner/plans/{param}/buckets/{param}","no-oracle","" +"Planner","GetMgPlannerPlanBucket_List.g.cs","v1.0","Get-MgPlannerPlanBucket","GET","/planner/plans/{param}/buckets","matched","Get-MgPlannerPlanBucket" +"Planner","GetMgPlannerPlanBucket.g.cs","v1.0","Get-MgPlannerPlanBucket","","","dispatcher","" +"Planner","GetMgPlannerPlanBucketCount.g.cs","v1.0","Get-MgPlannerPlanBucketCount","GET","/planner/plans/{param}/buckets/$count","no-oracle","" +"Planner","GetMgPlannerPlanBucketTask_Get.g.cs","v1.0","Get-MgPlannerPlanBucketTask","GET","/planner/plans/{param}/buckets/{param}/tasks/{param}","no-oracle","" +"Planner","GetMgPlannerPlanBucketTask_List.g.cs","v1.0","Get-MgPlannerPlanBucketTask","GET","/planner/plans/{param}/buckets/{param}/tasks","no-oracle","" +"Planner","GetMgPlannerPlanBucketTask.g.cs","v1.0","Get-MgPlannerPlanBucketTask","","","dispatcher","" +"Planner","GetMgPlannerPlanBucketTaskAssignedToTaskBoardFormat.g.cs","v1.0","Get-MgPlannerPlanBucketTaskAssignedToTaskBoardFormat","GET","/planner/plans/{param}/buckets/{param}/tasks/{param}/assignedToTaskBoardFormat","no-oracle","" +"Planner","GetMgPlannerPlanBucketTaskBucketTaskBoardFormat.g.cs","v1.0","Get-MgPlannerPlanBucketTaskBucketTaskBoardFormat","GET","/planner/plans/{param}/buckets/{param}/tasks/{param}/bucketTaskBoardFormat","no-oracle","" +"Planner","GetMgPlannerPlanBucketTaskCount.g.cs","v1.0","Get-MgPlannerPlanBucketTaskCount","GET","/planner/plans/{param}/buckets/{param}/tasks/$count","no-oracle","" +"Planner","GetMgPlannerPlanBucketTaskDetail.g.cs","v1.0","Get-MgPlannerPlanBucketTaskDetail","GET","/planner/plans/{param}/buckets/{param}/tasks/{param}/details","no-oracle","" +"Planner","GetMgPlannerPlanBucketTaskProgressTaskBoardFormat.g.cs","v1.0","Get-MgPlannerPlanBucketTaskProgressTaskBoardFormat","GET","/planner/plans/{param}/buckets/{param}/tasks/{param}/progressTaskBoardFormat","no-oracle","" +"Planner","GetMgPlannerPlanCount.g.cs","v1.0","Get-MgPlannerPlanCount","GET","/planner/plans/$count","matched","Get-MgPlannerPlanCount" +"Planner","GetMgPlannerPlanDetail.g.cs","v1.0","Get-MgPlannerPlanDetail","GET","/planner/plans/{param}/details","matched","Get-MgPlannerPlanDetail" +"Planner","GetMgPlannerPlanTask_Get.g.cs","v1.0","Get-MgPlannerPlanTask","GET","/planner/plans/{param}/tasks/{param}","no-oracle","" +"Planner","GetMgPlannerPlanTask_List.g.cs","v1.0","Get-MgPlannerPlanTask","GET","/planner/plans/{param}/tasks","matched","Get-MgPlannerPlanTask" +"Planner","GetMgPlannerPlanTask.g.cs","v1.0","Get-MgPlannerPlanTask","","","dispatcher","" +"Planner","GetMgPlannerPlanTaskAssignedToTaskBoardFormat.g.cs","v1.0","Get-MgPlannerPlanTaskAssignedToTaskBoardFormat","GET","/planner/plans/{param}/tasks/{param}/assignedToTaskBoardFormat","no-oracle","" +"Planner","GetMgPlannerPlanTaskBucketTaskBoardFormat.g.cs","v1.0","Get-MgPlannerPlanTaskBucketTaskBoardFormat","GET","/planner/plans/{param}/tasks/{param}/bucketTaskBoardFormat","no-oracle","" +"Planner","GetMgPlannerPlanTaskCount.g.cs","v1.0","Get-MgPlannerPlanTaskCount","GET","/planner/plans/{param}/tasks/$count","no-oracle","" +"Planner","GetMgPlannerPlanTaskDetail.g.cs","v1.0","Get-MgPlannerPlanTaskDetail","GET","/planner/plans/{param}/tasks/{param}/details","no-oracle","" +"Planner","GetMgPlannerPlanTaskProgressTaskBoardFormat.g.cs","v1.0","Get-MgPlannerPlanTaskProgressTaskBoardFormat","GET","/planner/plans/{param}/tasks/{param}/progressTaskBoardFormat","no-oracle","" +"Planner","GetMgPlannerTask_Get.g.cs","v1.0","Get-MgPlannerTask","GET","/planner/tasks/{param}","matched","Get-MgPlannerTask" +"Planner","GetMgPlannerTask_List.g.cs","v1.0","Get-MgPlannerTask","GET","/planner/tasks","matched","Get-MgPlannerTask" +"Planner","GetMgPlannerTask.g.cs","v1.0","Get-MgPlannerTask","","","dispatcher","" +"Planner","GetMgPlannerTaskAssignedToTaskBoardFormat.g.cs","v1.0","Get-MgPlannerTaskAssignedToTaskBoardFormat","GET","/planner/tasks/{param}/assignedToTaskBoardFormat","matched","Get-MgPlannerTaskAssignedToTaskBoardFormat" +"Planner","GetMgPlannerTaskBucketTaskBoardFormat.g.cs","v1.0","Get-MgPlannerTaskBucketTaskBoardFormat","GET","/planner/tasks/{param}/bucketTaskBoardFormat","matched","Get-MgPlannerTaskBucketTaskBoardFormat" +"Planner","GetMgPlannerTaskCount.g.cs","v1.0","Get-MgPlannerTaskCount","GET","/planner/tasks/$count","matched","Get-MgPlannerTaskCount" +"Planner","GetMgPlannerTaskDetail.g.cs","v1.0","Get-MgPlannerTaskDetail","GET","/planner/tasks/{param}/details","matched","Get-MgPlannerTaskDetail" +"Planner","GetMgPlannerTaskProgressTaskBoardFormat.g.cs","v1.0","Get-MgPlannerTaskProgressTaskBoardFormat","GET","/planner/tasks/{param}/progressTaskBoardFormat","matched","Get-MgPlannerTaskProgressTaskBoardFormat" +"Planner","GetMgUserPlanner.g.cs","v1.0","Get-MgUserPlanner","GET","/users/{param}/planner","matched","Get-MgUserPlanner" +"Planner","GetMgUserPlannerPlan_Get.g.cs","v1.0","Get-MgUserPlannerPlan","GET","/users/{param}/planner/plans/{param}","no-oracle","" +"Planner","GetMgUserPlannerPlan_List.g.cs","v1.0","Get-MgUserPlannerPlan","GET","/users/{param}/planner/plans","matched","Get-MgUserPlannerPlan" +"Planner","GetMgUserPlannerPlan.g.cs","v1.0","Get-MgUserPlannerPlan","","","dispatcher","" +"Planner","GetMgUserPlannerPlanBucket_Get.g.cs","v1.0","Get-MgUserPlannerPlanBucket","GET","/users/{param}/planner/plans/{param}/buckets/{param}","no-oracle","" +"Planner","GetMgUserPlannerPlanBucket_List.g.cs","v1.0","Get-MgUserPlannerPlanBucket","GET","/users/{param}/planner/plans/{param}/buckets","no-oracle","" +"Planner","GetMgUserPlannerPlanBucket.g.cs","v1.0","Get-MgUserPlannerPlanBucket","","","dispatcher","" +"Planner","GetMgUserPlannerPlanBucketCount.g.cs","v1.0","Get-MgUserPlannerPlanBucketCount","GET","/users/{param}/planner/plans/{param}/buckets/$count","no-oracle","" +"Planner","GetMgUserPlannerPlanBucketTask_Get.g.cs","v1.0","Get-MgUserPlannerPlanBucketTask","GET","/users/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}","no-oracle","" +"Planner","GetMgUserPlannerPlanBucketTask_List.g.cs","v1.0","Get-MgUserPlannerPlanBucketTask","GET","/users/{param}/planner/plans/{param}/buckets/{param}/tasks","no-oracle","" +"Planner","GetMgUserPlannerPlanBucketTask.g.cs","v1.0","Get-MgUserPlannerPlanBucketTask","","","dispatcher","" +"Planner","GetMgUserPlannerPlanBucketTaskAssignedToTaskBoardFormat.g.cs","v1.0","Get-MgUserPlannerPlanBucketTaskAssignedToTaskBoardFormat","GET","/users/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/assignedToTaskBoardFormat","no-oracle","" +"Planner","GetMgUserPlannerPlanBucketTaskBucketTaskBoardFormat.g.cs","v1.0","Get-MgUserPlannerPlanBucketTaskBucketTaskBoardFormat","GET","/users/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/bucketTaskBoardFormat","no-oracle","" +"Planner","GetMgUserPlannerPlanBucketTaskCount.g.cs","v1.0","Get-MgUserPlannerPlanBucketTaskCount","GET","/users/{param}/planner/plans/{param}/buckets/{param}/tasks/$count","no-oracle","" +"Planner","GetMgUserPlannerPlanBucketTaskDetail.g.cs","v1.0","Get-MgUserPlannerPlanBucketTaskDetail","GET","/users/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/details","no-oracle","" +"Planner","GetMgUserPlannerPlanBucketTaskProgressTaskBoardFormat.g.cs","v1.0","Get-MgUserPlannerPlanBucketTaskProgressTaskBoardFormat","GET","/users/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/progressTaskBoardFormat","no-oracle","" +"Planner","GetMgUserPlannerPlanCount.g.cs","v1.0","Get-MgUserPlannerPlanCount","GET","/users/{param}/planner/plans/$count","no-oracle","" +"Planner","GetMgUserPlannerPlanDetail.g.cs","v1.0","Get-MgUserPlannerPlanDetail","GET","/users/{param}/planner/plans/{param}/details","no-oracle","" +"Planner","GetMgUserPlannerPlanTask_Get.g.cs","v1.0","Get-MgUserPlannerPlanTask","GET","/users/{param}/planner/plans/{param}/tasks/{param}","no-oracle","" +"Planner","GetMgUserPlannerPlanTask_List.g.cs","v1.0","Get-MgUserPlannerPlanTask","GET","/users/{param}/planner/plans/{param}/tasks","no-oracle","" +"Planner","GetMgUserPlannerPlanTask.g.cs","v1.0","Get-MgUserPlannerPlanTask","","","dispatcher","" +"Planner","GetMgUserPlannerPlanTaskAssignedToTaskBoardFormat.g.cs","v1.0","Get-MgUserPlannerPlanTaskAssignedToTaskBoardFormat","GET","/users/{param}/planner/plans/{param}/tasks/{param}/assignedToTaskBoardFormat","no-oracle","" +"Planner","GetMgUserPlannerPlanTaskBucketTaskBoardFormat.g.cs","v1.0","Get-MgUserPlannerPlanTaskBucketTaskBoardFormat","GET","/users/{param}/planner/plans/{param}/tasks/{param}/bucketTaskBoardFormat","no-oracle","" +"Planner","GetMgUserPlannerPlanTaskCount.g.cs","v1.0","Get-MgUserPlannerPlanTaskCount","GET","/users/{param}/planner/plans/{param}/tasks/$count","no-oracle","" +"Planner","GetMgUserPlannerPlanTaskDetail.g.cs","v1.0","Get-MgUserPlannerPlanTaskDetail","GET","/users/{param}/planner/plans/{param}/tasks/{param}/details","no-oracle","" +"Planner","GetMgUserPlannerPlanTaskProgressTaskBoardFormat.g.cs","v1.0","Get-MgUserPlannerPlanTaskProgressTaskBoardFormat","GET","/users/{param}/planner/plans/{param}/tasks/{param}/progressTaskBoardFormat","no-oracle","" +"Planner","GetMgUserPlannerTask_Get.g.cs","v1.0","Get-MgUserPlannerTask","GET","/users/{param}/planner/tasks/{param}","no-oracle","" +"Planner","GetMgUserPlannerTask_List.g.cs","v1.0","Get-MgUserPlannerTask","GET","/users/{param}/planner/tasks","matched","Get-MgUserPlannerTask" +"Planner","GetMgUserPlannerTask.g.cs","v1.0","Get-MgUserPlannerTask","","","dispatcher","" +"Planner","GetMgUserPlannerTaskAssignedToTaskBoardFormat.g.cs","v1.0","Get-MgUserPlannerTaskAssignedToTaskBoardFormat","GET","/users/{param}/planner/tasks/{param}/assignedToTaskBoardFormat","no-oracle","" +"Planner","GetMgUserPlannerTaskBucketTaskBoardFormat.g.cs","v1.0","Get-MgUserPlannerTaskBucketTaskBoardFormat","GET","/users/{param}/planner/tasks/{param}/bucketTaskBoardFormat","no-oracle","" +"Planner","GetMgUserPlannerTaskCount.g.cs","v1.0","Get-MgUserPlannerTaskCount","GET","/users/{param}/planner/tasks/$count","no-oracle","" +"Planner","GetMgUserPlannerTaskDetail.g.cs","v1.0","Get-MgUserPlannerTaskDetail","GET","/users/{param}/planner/tasks/{param}/details","no-oracle","" +"Planner","GetMgUserPlannerTaskProgressTaskBoardFormat.g.cs","v1.0","Get-MgUserPlannerTaskProgressTaskBoardFormat","GET","/users/{param}/planner/tasks/{param}/progressTaskBoardFormat","no-oracle","" +"Planner","NewMgGroupPlannerPlan.g.cs","v1.0","New-MgGroupPlannerPlan","POST","/groups/{param}/planner/plans","no-oracle","" +"Planner","NewMgGroupPlannerPlanBucket.g.cs","v1.0","New-MgGroupPlannerPlanBucket","POST","/groups/{param}/planner/plans/{param}/buckets","no-oracle","" +"Planner","NewMgGroupPlannerPlanBucketTask.g.cs","v1.0","New-MgGroupPlannerPlanBucketTask","POST","/groups/{param}/planner/plans/{param}/buckets/{param}/tasks","no-oracle","" +"Planner","NewMgGroupPlannerPlanTask.g.cs","v1.0","New-MgGroupPlannerPlanTask","POST","/groups/{param}/planner/plans/{param}/tasks","no-oracle","" +"Planner","NewMgPlannerBucket.g.cs","v1.0","New-MgPlannerBucket","POST","/planner/buckets","matched","New-MgPlannerBucket" +"Planner","NewMgPlannerBucketTask.g.cs","v1.0","New-MgPlannerBucketTask","POST","/planner/buckets/{param}/tasks","no-oracle","" +"Planner","NewMgPlannerPlan.g.cs","v1.0","New-MgPlannerPlan","POST","/planner/plans","matched","New-MgPlannerPlan" +"Planner","NewMgPlannerPlanBucket.g.cs","v1.0","New-MgPlannerPlanBucket","POST","/planner/plans/{param}/buckets","no-oracle","" +"Planner","NewMgPlannerPlanBucketTask.g.cs","v1.0","New-MgPlannerPlanBucketTask","POST","/planner/plans/{param}/buckets/{param}/tasks","no-oracle","" +"Planner","NewMgPlannerPlanTask.g.cs","v1.0","New-MgPlannerPlanTask","POST","/planner/plans/{param}/tasks","no-oracle","" +"Planner","NewMgPlannerTask.g.cs","v1.0","New-MgPlannerTask","POST","/planner/tasks","matched","New-MgPlannerTask" +"Planner","NewMgUserPlannerPlan.g.cs","v1.0","New-MgUserPlannerPlan","POST","/users/{param}/planner/plans","no-oracle","" +"Planner","NewMgUserPlannerPlanBucket.g.cs","v1.0","New-MgUserPlannerPlanBucket","POST","/users/{param}/planner/plans/{param}/buckets","no-oracle","" +"Planner","NewMgUserPlannerPlanBucketTask.g.cs","v1.0","New-MgUserPlannerPlanBucketTask","POST","/users/{param}/planner/plans/{param}/buckets/{param}/tasks","no-oracle","" +"Planner","NewMgUserPlannerPlanTask.g.cs","v1.0","New-MgUserPlannerPlanTask","POST","/users/{param}/planner/plans/{param}/tasks","no-oracle","" +"Planner","NewMgUserPlannerTask.g.cs","v1.0","New-MgUserPlannerTask","POST","/users/{param}/planner/tasks","no-oracle","" +"Planner","RemoveMgGroupPlanner.g.cs","v1.0","Remove-MgGroupPlanner","DELETE","/groups/{param}/planner","no-oracle","" +"Planner","RemoveMgGroupPlannerPlan.g.cs","v1.0","Remove-MgGroupPlannerPlan","DELETE","/groups/{param}/planner/plans/{param}","no-oracle","" +"Planner","RemoveMgGroupPlannerPlanBucket.g.cs","v1.0","Remove-MgGroupPlannerPlanBucket","DELETE","/groups/{param}/planner/plans/{param}/buckets/{param}","no-oracle","" +"Planner","RemoveMgGroupPlannerPlanBucketTask.g.cs","v1.0","Remove-MgGroupPlannerPlanBucketTask","DELETE","/groups/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}","no-oracle","" +"Planner","RemoveMgGroupPlannerPlanBucketTaskAssignedToTaskBoardFormat.g.cs","v1.0","Remove-MgGroupPlannerPlanBucketTaskAssignedToTaskBoardFormat","DELETE","/groups/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/assignedToTaskBoardFormat","no-oracle","" +"Planner","RemoveMgGroupPlannerPlanBucketTaskBucketTaskBoardFormat.g.cs","v1.0","Remove-MgGroupPlannerPlanBucketTaskBucketTaskBoardFormat","DELETE","/groups/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/bucketTaskBoardFormat","no-oracle","" +"Planner","RemoveMgGroupPlannerPlanBucketTaskDetail.g.cs","v1.0","Remove-MgGroupPlannerPlanBucketTaskDetail","DELETE","/groups/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/details","no-oracle","" +"Planner","RemoveMgGroupPlannerPlanBucketTaskProgressTaskBoardFormat.g.cs","v1.0","Remove-MgGroupPlannerPlanBucketTaskProgressTaskBoardFormat","DELETE","/groups/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/progressTaskBoardFormat","no-oracle","" +"Planner","RemoveMgGroupPlannerPlanDetail.g.cs","v1.0","Remove-MgGroupPlannerPlanDetail","DELETE","/groups/{param}/planner/plans/{param}/details","matched","Remove-MgGroupPlannerPlanDetail" +"Planner","RemoveMgGroupPlannerPlanTask.g.cs","v1.0","Remove-MgGroupPlannerPlanTask","DELETE","/groups/{param}/planner/plans/{param}/tasks/{param}","no-oracle","" +"Planner","RemoveMgGroupPlannerPlanTaskAssignedToTaskBoardFormat.g.cs","v1.0","Remove-MgGroupPlannerPlanTaskAssignedToTaskBoardFormat","DELETE","/groups/{param}/planner/plans/{param}/tasks/{param}/assignedToTaskBoardFormat","no-oracle","" +"Planner","RemoveMgGroupPlannerPlanTaskBucketTaskBoardFormat.g.cs","v1.0","Remove-MgGroupPlannerPlanTaskBucketTaskBoardFormat","DELETE","/groups/{param}/planner/plans/{param}/tasks/{param}/bucketTaskBoardFormat","no-oracle","" +"Planner","RemoveMgGroupPlannerPlanTaskDetail.g.cs","v1.0","Remove-MgGroupPlannerPlanTaskDetail","DELETE","/groups/{param}/planner/plans/{param}/tasks/{param}/details","no-oracle","" +"Planner","RemoveMgGroupPlannerPlanTaskProgressTaskBoardFormat.g.cs","v1.0","Remove-MgGroupPlannerPlanTaskProgressTaskBoardFormat","DELETE","/groups/{param}/planner/plans/{param}/tasks/{param}/progressTaskBoardFormat","no-oracle","" +"Planner","RemoveMgPlannerBucket.g.cs","v1.0","Remove-MgPlannerBucket","DELETE","/planner/buckets/{param}","matched","Remove-MgPlannerBucket" +"Planner","RemoveMgPlannerBucketTask.g.cs","v1.0","Remove-MgPlannerBucketTask","DELETE","/planner/buckets/{param}/tasks/{param}","no-oracle","" +"Planner","RemoveMgPlannerBucketTaskAssignedToTaskBoardFormat.g.cs","v1.0","Remove-MgPlannerBucketTaskAssignedToTaskBoardFormat","DELETE","/planner/buckets/{param}/tasks/{param}/assignedToTaskBoardFormat","no-oracle","" +"Planner","RemoveMgPlannerBucketTaskBucketTaskBoardFormat.g.cs","v1.0","Remove-MgPlannerBucketTaskBucketTaskBoardFormat","DELETE","/planner/buckets/{param}/tasks/{param}/bucketTaskBoardFormat","no-oracle","" +"Planner","RemoveMgPlannerBucketTaskDetail.g.cs","v1.0","Remove-MgPlannerBucketTaskDetail","DELETE","/planner/buckets/{param}/tasks/{param}/details","no-oracle","" +"Planner","RemoveMgPlannerBucketTaskProgressTaskBoardFormat.g.cs","v1.0","Remove-MgPlannerBucketTaskProgressTaskBoardFormat","DELETE","/planner/buckets/{param}/tasks/{param}/progressTaskBoardFormat","no-oracle","" +"Planner","RemoveMgPlannerPlan.g.cs","v1.0","Remove-MgPlannerPlan","DELETE","/planner/plans/{param}","matched","Remove-MgPlannerPlan" +"Planner","RemoveMgPlannerPlanBucket.g.cs","v1.0","Remove-MgPlannerPlanBucket","DELETE","/planner/plans/{param}/buckets/{param}","no-oracle","" +"Planner","RemoveMgPlannerPlanBucketTask.g.cs","v1.0","Remove-MgPlannerPlanBucketTask","DELETE","/planner/plans/{param}/buckets/{param}/tasks/{param}","no-oracle","" +"Planner","RemoveMgPlannerPlanBucketTaskAssignedToTaskBoardFormat.g.cs","v1.0","Remove-MgPlannerPlanBucketTaskAssignedToTaskBoardFormat","DELETE","/planner/plans/{param}/buckets/{param}/tasks/{param}/assignedToTaskBoardFormat","no-oracle","" +"Planner","RemoveMgPlannerPlanBucketTaskBucketTaskBoardFormat.g.cs","v1.0","Remove-MgPlannerPlanBucketTaskBucketTaskBoardFormat","DELETE","/planner/plans/{param}/buckets/{param}/tasks/{param}/bucketTaskBoardFormat","no-oracle","" +"Planner","RemoveMgPlannerPlanBucketTaskDetail.g.cs","v1.0","Remove-MgPlannerPlanBucketTaskDetail","DELETE","/planner/plans/{param}/buckets/{param}/tasks/{param}/details","no-oracle","" +"Planner","RemoveMgPlannerPlanBucketTaskProgressTaskBoardFormat.g.cs","v1.0","Remove-MgPlannerPlanBucketTaskProgressTaskBoardFormat","DELETE","/planner/plans/{param}/buckets/{param}/tasks/{param}/progressTaskBoardFormat","no-oracle","" +"Planner","RemoveMgPlannerPlanDetail.g.cs","v1.0","Remove-MgPlannerPlanDetail","DELETE","/planner/plans/{param}/details","no-oracle","" +"Planner","RemoveMgPlannerPlanTask.g.cs","v1.0","Remove-MgPlannerPlanTask","DELETE","/planner/plans/{param}/tasks/{param}","no-oracle","" +"Planner","RemoveMgPlannerPlanTaskAssignedToTaskBoardFormat.g.cs","v1.0","Remove-MgPlannerPlanTaskAssignedToTaskBoardFormat","DELETE","/planner/plans/{param}/tasks/{param}/assignedToTaskBoardFormat","no-oracle","" +"Planner","RemoveMgPlannerPlanTaskBucketTaskBoardFormat.g.cs","v1.0","Remove-MgPlannerPlanTaskBucketTaskBoardFormat","DELETE","/planner/plans/{param}/tasks/{param}/bucketTaskBoardFormat","no-oracle","" +"Planner","RemoveMgPlannerPlanTaskDetail.g.cs","v1.0","Remove-MgPlannerPlanTaskDetail","DELETE","/planner/plans/{param}/tasks/{param}/details","no-oracle","" +"Planner","RemoveMgPlannerPlanTaskProgressTaskBoardFormat.g.cs","v1.0","Remove-MgPlannerPlanTaskProgressTaskBoardFormat","DELETE","/planner/plans/{param}/tasks/{param}/progressTaskBoardFormat","no-oracle","" +"Planner","RemoveMgPlannerTask.g.cs","v1.0","Remove-MgPlannerTask","DELETE","/planner/tasks/{param}","matched","Remove-MgPlannerTask" +"Planner","RemoveMgPlannerTaskAssignedToTaskBoardFormat.g.cs","v1.0","Remove-MgPlannerTaskAssignedToTaskBoardFormat","DELETE","/planner/tasks/{param}/assignedToTaskBoardFormat","matched","Remove-MgPlannerTaskAssignedToTaskBoardFormat" +"Planner","RemoveMgPlannerTaskBucketTaskBoardFormat.g.cs","v1.0","Remove-MgPlannerTaskBucketTaskBoardFormat","DELETE","/planner/tasks/{param}/bucketTaskBoardFormat","matched","Remove-MgPlannerTaskBucketTaskBoardFormat" +"Planner","RemoveMgPlannerTaskDetail.g.cs","v1.0","Remove-MgPlannerTaskDetail","DELETE","/planner/tasks/{param}/details","no-oracle","" +"Planner","RemoveMgPlannerTaskProgressTaskBoardFormat.g.cs","v1.0","Remove-MgPlannerTaskProgressTaskBoardFormat","DELETE","/planner/tasks/{param}/progressTaskBoardFormat","matched","Remove-MgPlannerTaskProgressTaskBoardFormat" +"Planner","RemoveMgUserPlanner.g.cs","v1.0","Remove-MgUserPlanner","DELETE","/users/{param}/planner","no-oracle","" +"Planner","RemoveMgUserPlannerPlan.g.cs","v1.0","Remove-MgUserPlannerPlan","DELETE","/users/{param}/planner/plans/{param}","no-oracle","" +"Planner","RemoveMgUserPlannerPlanBucket.g.cs","v1.0","Remove-MgUserPlannerPlanBucket","DELETE","/users/{param}/planner/plans/{param}/buckets/{param}","no-oracle","" +"Planner","RemoveMgUserPlannerPlanBucketTask.g.cs","v1.0","Remove-MgUserPlannerPlanBucketTask","DELETE","/users/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}","no-oracle","" +"Planner","RemoveMgUserPlannerPlanBucketTaskAssignedToTaskBoardFormat.g.cs","v1.0","Remove-MgUserPlannerPlanBucketTaskAssignedToTaskBoardFormat","DELETE","/users/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/assignedToTaskBoardFormat","no-oracle","" +"Planner","RemoveMgUserPlannerPlanBucketTaskBucketTaskBoardFormat.g.cs","v1.0","Remove-MgUserPlannerPlanBucketTaskBucketTaskBoardFormat","DELETE","/users/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/bucketTaskBoardFormat","no-oracle","" +"Planner","RemoveMgUserPlannerPlanBucketTaskDetail.g.cs","v1.0","Remove-MgUserPlannerPlanBucketTaskDetail","DELETE","/users/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/details","no-oracle","" +"Planner","RemoveMgUserPlannerPlanBucketTaskProgressTaskBoardFormat.g.cs","v1.0","Remove-MgUserPlannerPlanBucketTaskProgressTaskBoardFormat","DELETE","/users/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/progressTaskBoardFormat","no-oracle","" +"Planner","RemoveMgUserPlannerPlanDetail.g.cs","v1.0","Remove-MgUserPlannerPlanDetail","DELETE","/users/{param}/planner/plans/{param}/details","no-oracle","" +"Planner","RemoveMgUserPlannerPlanTask.g.cs","v1.0","Remove-MgUserPlannerPlanTask","DELETE","/users/{param}/planner/plans/{param}/tasks/{param}","no-oracle","" +"Planner","RemoveMgUserPlannerPlanTaskAssignedToTaskBoardFormat.g.cs","v1.0","Remove-MgUserPlannerPlanTaskAssignedToTaskBoardFormat","DELETE","/users/{param}/planner/plans/{param}/tasks/{param}/assignedToTaskBoardFormat","no-oracle","" +"Planner","RemoveMgUserPlannerPlanTaskBucketTaskBoardFormat.g.cs","v1.0","Remove-MgUserPlannerPlanTaskBucketTaskBoardFormat","DELETE","/users/{param}/planner/plans/{param}/tasks/{param}/bucketTaskBoardFormat","no-oracle","" +"Planner","RemoveMgUserPlannerPlanTaskDetail.g.cs","v1.0","Remove-MgUserPlannerPlanTaskDetail","DELETE","/users/{param}/planner/plans/{param}/tasks/{param}/details","no-oracle","" +"Planner","RemoveMgUserPlannerPlanTaskProgressTaskBoardFormat.g.cs","v1.0","Remove-MgUserPlannerPlanTaskProgressTaskBoardFormat","DELETE","/users/{param}/planner/plans/{param}/tasks/{param}/progressTaskBoardFormat","no-oracle","" +"Planner","RemoveMgUserPlannerTask.g.cs","v1.0","Remove-MgUserPlannerTask","DELETE","/users/{param}/planner/tasks/{param}","no-oracle","" +"Planner","RemoveMgUserPlannerTaskAssignedToTaskBoardFormat.g.cs","v1.0","Remove-MgUserPlannerTaskAssignedToTaskBoardFormat","DELETE","/users/{param}/planner/tasks/{param}/assignedToTaskBoardFormat","no-oracle","" +"Planner","RemoveMgUserPlannerTaskBucketTaskBoardFormat.g.cs","v1.0","Remove-MgUserPlannerTaskBucketTaskBoardFormat","DELETE","/users/{param}/planner/tasks/{param}/bucketTaskBoardFormat","no-oracle","" +"Planner","RemoveMgUserPlannerTaskDetail.g.cs","v1.0","Remove-MgUserPlannerTaskDetail","DELETE","/users/{param}/planner/tasks/{param}/details","no-oracle","" +"Planner","RemoveMgUserPlannerTaskProgressTaskBoardFormat.g.cs","v1.0","Remove-MgUserPlannerTaskProgressTaskBoardFormat","DELETE","/users/{param}/planner/tasks/{param}/progressTaskBoardFormat","no-oracle","" +"Planner","UpdateMgGroupPlanner.g.cs","v1.0","Update-MgGroupPlanner","PATCH","/groups/{param}/planner","matched","Update-MgGroupPlanner" +"Planner","UpdateMgGroupPlannerPlan.g.cs","v1.0","Update-MgGroupPlannerPlan","PATCH","/groups/{param}/planner/plans/{param}","no-oracle","" +"Planner","UpdateMgGroupPlannerPlanBucket.g.cs","v1.0","Update-MgGroupPlannerPlanBucket","PATCH","/groups/{param}/planner/plans/{param}/buckets/{param}","no-oracle","" +"Planner","UpdateMgGroupPlannerPlanBucketTask.g.cs","v1.0","Update-MgGroupPlannerPlanBucketTask","PATCH","/groups/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}","no-oracle","" +"Planner","UpdateMgGroupPlannerPlanBucketTaskAssignedToTaskBoardFormat.g.cs","v1.0","Update-MgGroupPlannerPlanBucketTaskAssignedToTaskBoardFormat","PATCH","/groups/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/assignedToTaskBoardFormat","no-oracle","" +"Planner","UpdateMgGroupPlannerPlanBucketTaskBucketTaskBoardFormat.g.cs","v1.0","Update-MgGroupPlannerPlanBucketTaskBucketTaskBoardFormat","PATCH","/groups/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/bucketTaskBoardFormat","no-oracle","" +"Planner","UpdateMgGroupPlannerPlanBucketTaskDetail.g.cs","v1.0","Update-MgGroupPlannerPlanBucketTaskDetail","PATCH","/groups/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/details","no-oracle","" +"Planner","UpdateMgGroupPlannerPlanBucketTaskProgressTaskBoardFormat.g.cs","v1.0","Update-MgGroupPlannerPlanBucketTaskProgressTaskBoardFormat","PATCH","/groups/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/progressTaskBoardFormat","no-oracle","" +"Planner","UpdateMgGroupPlannerPlanDetail.g.cs","v1.0","Update-MgGroupPlannerPlanDetail","PATCH","/groups/{param}/planner/plans/{param}/details","matched","Update-MgGroupPlannerPlanDetail" +"Planner","UpdateMgGroupPlannerPlanTask.g.cs","v1.0","Update-MgGroupPlannerPlanTask","PATCH","/groups/{param}/planner/plans/{param}/tasks/{param}","no-oracle","" +"Planner","UpdateMgGroupPlannerPlanTaskAssignedToTaskBoardFormat.g.cs","v1.0","Update-MgGroupPlannerPlanTaskAssignedToTaskBoardFormat","PATCH","/groups/{param}/planner/plans/{param}/tasks/{param}/assignedToTaskBoardFormat","no-oracle","" +"Planner","UpdateMgGroupPlannerPlanTaskBucketTaskBoardFormat.g.cs","v1.0","Update-MgGroupPlannerPlanTaskBucketTaskBoardFormat","PATCH","/groups/{param}/planner/plans/{param}/tasks/{param}/bucketTaskBoardFormat","no-oracle","" +"Planner","UpdateMgGroupPlannerPlanTaskDetail.g.cs","v1.0","Update-MgGroupPlannerPlanTaskDetail","PATCH","/groups/{param}/planner/plans/{param}/tasks/{param}/details","no-oracle","" +"Planner","UpdateMgGroupPlannerPlanTaskProgressTaskBoardFormat.g.cs","v1.0","Update-MgGroupPlannerPlanTaskProgressTaskBoardFormat","PATCH","/groups/{param}/planner/plans/{param}/tasks/{param}/progressTaskBoardFormat","no-oracle","" +"Planner","UpdateMgPlanner.g.cs","v1.0","Update-MgPlanner","PATCH","/planner","matched","Update-MgPlanner" +"Planner","UpdateMgPlannerBucket.g.cs","v1.0","Update-MgPlannerBucket","PATCH","/planner/buckets/{param}","matched","Update-MgPlannerBucket" +"Planner","UpdateMgPlannerBucketTask.g.cs","v1.0","Update-MgPlannerBucketTask","PATCH","/planner/buckets/{param}/tasks/{param}","no-oracle","" +"Planner","UpdateMgPlannerBucketTaskAssignedToTaskBoardFormat.g.cs","v1.0","Update-MgPlannerBucketTaskAssignedToTaskBoardFormat","PATCH","/planner/buckets/{param}/tasks/{param}/assignedToTaskBoardFormat","no-oracle","" +"Planner","UpdateMgPlannerBucketTaskBucketTaskBoardFormat.g.cs","v1.0","Update-MgPlannerBucketTaskBucketTaskBoardFormat","PATCH","/planner/buckets/{param}/tasks/{param}/bucketTaskBoardFormat","no-oracle","" +"Planner","UpdateMgPlannerBucketTaskDetail.g.cs","v1.0","Update-MgPlannerBucketTaskDetail","PATCH","/planner/buckets/{param}/tasks/{param}/details","no-oracle","" +"Planner","UpdateMgPlannerBucketTaskProgressTaskBoardFormat.g.cs","v1.0","Update-MgPlannerBucketTaskProgressTaskBoardFormat","PATCH","/planner/buckets/{param}/tasks/{param}/progressTaskBoardFormat","no-oracle","" +"Planner","UpdateMgPlannerPlan.g.cs","v1.0","Update-MgPlannerPlan","PATCH","/planner/plans/{param}","matched","Update-MgPlannerPlan" +"Planner","UpdateMgPlannerPlanBucket.g.cs","v1.0","Update-MgPlannerPlanBucket","PATCH","/planner/plans/{param}/buckets/{param}","no-oracle","" +"Planner","UpdateMgPlannerPlanBucketTask.g.cs","v1.0","Update-MgPlannerPlanBucketTask","PATCH","/planner/plans/{param}/buckets/{param}/tasks/{param}","no-oracle","" +"Planner","UpdateMgPlannerPlanBucketTaskAssignedToTaskBoardFormat.g.cs","v1.0","Update-MgPlannerPlanBucketTaskAssignedToTaskBoardFormat","PATCH","/planner/plans/{param}/buckets/{param}/tasks/{param}/assignedToTaskBoardFormat","no-oracle","" +"Planner","UpdateMgPlannerPlanBucketTaskBucketTaskBoardFormat.g.cs","v1.0","Update-MgPlannerPlanBucketTaskBucketTaskBoardFormat","PATCH","/planner/plans/{param}/buckets/{param}/tasks/{param}/bucketTaskBoardFormat","no-oracle","" +"Planner","UpdateMgPlannerPlanBucketTaskDetail.g.cs","v1.0","Update-MgPlannerPlanBucketTaskDetail","PATCH","/planner/plans/{param}/buckets/{param}/tasks/{param}/details","no-oracle","" +"Planner","UpdateMgPlannerPlanBucketTaskProgressTaskBoardFormat.g.cs","v1.0","Update-MgPlannerPlanBucketTaskProgressTaskBoardFormat","PATCH","/planner/plans/{param}/buckets/{param}/tasks/{param}/progressTaskBoardFormat","no-oracle","" +"Planner","UpdateMgPlannerPlanDetail.g.cs","v1.0","Update-MgPlannerPlanDetail","PATCH","/planner/plans/{param}/details","matched","Update-MgPlannerPlanDetail" +"Planner","UpdateMgPlannerPlanTask.g.cs","v1.0","Update-MgPlannerPlanTask","PATCH","/planner/plans/{param}/tasks/{param}","no-oracle","" +"Planner","UpdateMgPlannerPlanTaskAssignedToTaskBoardFormat.g.cs","v1.0","Update-MgPlannerPlanTaskAssignedToTaskBoardFormat","PATCH","/planner/plans/{param}/tasks/{param}/assignedToTaskBoardFormat","no-oracle","" +"Planner","UpdateMgPlannerPlanTaskBucketTaskBoardFormat.g.cs","v1.0","Update-MgPlannerPlanTaskBucketTaskBoardFormat","PATCH","/planner/plans/{param}/tasks/{param}/bucketTaskBoardFormat","no-oracle","" +"Planner","UpdateMgPlannerPlanTaskDetail.g.cs","v1.0","Update-MgPlannerPlanTaskDetail","PATCH","/planner/plans/{param}/tasks/{param}/details","no-oracle","" +"Planner","UpdateMgPlannerPlanTaskProgressTaskBoardFormat.g.cs","v1.0","Update-MgPlannerPlanTaskProgressTaskBoardFormat","PATCH","/planner/plans/{param}/tasks/{param}/progressTaskBoardFormat","no-oracle","" +"Planner","UpdateMgPlannerTask.g.cs","v1.0","Update-MgPlannerTask","PATCH","/planner/tasks/{param}","matched","Update-MgPlannerTask" +"Planner","UpdateMgPlannerTaskAssignedToTaskBoardFormat.g.cs","v1.0","Update-MgPlannerTaskAssignedToTaskBoardFormat","PATCH","/planner/tasks/{param}/assignedToTaskBoardFormat","matched","Update-MgPlannerTaskAssignedToTaskBoardFormat" +"Planner","UpdateMgPlannerTaskBucketTaskBoardFormat.g.cs","v1.0","Update-MgPlannerTaskBucketTaskBoardFormat","PATCH","/planner/tasks/{param}/bucketTaskBoardFormat","matched","Update-MgPlannerTaskBucketTaskBoardFormat" +"Planner","UpdateMgPlannerTaskDetail.g.cs","v1.0","Update-MgPlannerTaskDetail","PATCH","/planner/tasks/{param}/details","matched","Update-MgPlannerTaskDetail" +"Planner","UpdateMgPlannerTaskProgressTaskBoardFormat.g.cs","v1.0","Update-MgPlannerTaskProgressTaskBoardFormat","PATCH","/planner/tasks/{param}/progressTaskBoardFormat","matched","Update-MgPlannerTaskProgressTaskBoardFormat" +"Planner","UpdateMgUserPlanner.g.cs","v1.0","Update-MgUserPlanner","PATCH","/users/{param}/planner","matched","Update-MgUserPlanner" +"Planner","UpdateMgUserPlannerPlan.g.cs","v1.0","Update-MgUserPlannerPlan","PATCH","/users/{param}/planner/plans/{param}","no-oracle","" +"Planner","UpdateMgUserPlannerPlanBucket.g.cs","v1.0","Update-MgUserPlannerPlanBucket","PATCH","/users/{param}/planner/plans/{param}/buckets/{param}","no-oracle","" +"Planner","UpdateMgUserPlannerPlanBucketTask.g.cs","v1.0","Update-MgUserPlannerPlanBucketTask","PATCH","/users/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}","no-oracle","" +"Planner","UpdateMgUserPlannerPlanBucketTaskAssignedToTaskBoardFormat.g.cs","v1.0","Update-MgUserPlannerPlanBucketTaskAssignedToTaskBoardFormat","PATCH","/users/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/assignedToTaskBoardFormat","no-oracle","" +"Planner","UpdateMgUserPlannerPlanBucketTaskBucketTaskBoardFormat.g.cs","v1.0","Update-MgUserPlannerPlanBucketTaskBucketTaskBoardFormat","PATCH","/users/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/bucketTaskBoardFormat","no-oracle","" +"Planner","UpdateMgUserPlannerPlanBucketTaskDetail.g.cs","v1.0","Update-MgUserPlannerPlanBucketTaskDetail","PATCH","/users/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/details","no-oracle","" +"Planner","UpdateMgUserPlannerPlanBucketTaskProgressTaskBoardFormat.g.cs","v1.0","Update-MgUserPlannerPlanBucketTaskProgressTaskBoardFormat","PATCH","/users/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/progressTaskBoardFormat","no-oracle","" +"Planner","UpdateMgUserPlannerPlanDetail.g.cs","v1.0","Update-MgUserPlannerPlanDetail","PATCH","/users/{param}/planner/plans/{param}/details","no-oracle","" +"Planner","UpdateMgUserPlannerPlanTask.g.cs","v1.0","Update-MgUserPlannerPlanTask","PATCH","/users/{param}/planner/plans/{param}/tasks/{param}","no-oracle","" +"Planner","UpdateMgUserPlannerPlanTaskAssignedToTaskBoardFormat.g.cs","v1.0","Update-MgUserPlannerPlanTaskAssignedToTaskBoardFormat","PATCH","/users/{param}/planner/plans/{param}/tasks/{param}/assignedToTaskBoardFormat","no-oracle","" +"Planner","UpdateMgUserPlannerPlanTaskBucketTaskBoardFormat.g.cs","v1.0","Update-MgUserPlannerPlanTaskBucketTaskBoardFormat","PATCH","/users/{param}/planner/plans/{param}/tasks/{param}/bucketTaskBoardFormat","no-oracle","" +"Planner","UpdateMgUserPlannerPlanTaskDetail.g.cs","v1.0","Update-MgUserPlannerPlanTaskDetail","PATCH","/users/{param}/planner/plans/{param}/tasks/{param}/details","no-oracle","" +"Planner","UpdateMgUserPlannerPlanTaskProgressTaskBoardFormat.g.cs","v1.0","Update-MgUserPlannerPlanTaskProgressTaskBoardFormat","PATCH","/users/{param}/planner/plans/{param}/tasks/{param}/progressTaskBoardFormat","no-oracle","" +"Planner","UpdateMgUserPlannerTask.g.cs","v1.0","Update-MgUserPlannerTask","PATCH","/users/{param}/planner/tasks/{param}","no-oracle","" +"Planner","UpdateMgUserPlannerTaskAssignedToTaskBoardFormat.g.cs","v1.0","Update-MgUserPlannerTaskAssignedToTaskBoardFormat","PATCH","/users/{param}/planner/tasks/{param}/assignedToTaskBoardFormat","no-oracle","" +"Planner","UpdateMgUserPlannerTaskBucketTaskBoardFormat.g.cs","v1.0","Update-MgUserPlannerTaskBucketTaskBoardFormat","PATCH","/users/{param}/planner/tasks/{param}/bucketTaskBoardFormat","no-oracle","" +"Planner","UpdateMgUserPlannerTaskDetail.g.cs","v1.0","Update-MgUserPlannerTaskDetail","PATCH","/users/{param}/planner/tasks/{param}/details","no-oracle","" +"Planner","UpdateMgUserPlannerTaskProgressTaskBoardFormat.g.cs","v1.0","Update-MgUserPlannerTaskProgressTaskBoardFormat","PATCH","/users/{param}/planner/tasks/{param}/progressTaskBoardFormat","no-oracle","" +"Reports","GetMgAdminReportSetting.g.cs","v1.0","Get-MgAdminReportSetting","GET","/admin/reportSettings","matched","Get-MgAdminReportSetting" +"Reports","GetMgAuditLog.g.cs","v1.0","Get-MgAuditLog","GET","/auditLogs","no-oracle","" +"Reports","GetMgAuditLogDirectoryAudit_Get.g.cs","v1.0","Get-MgAuditLogDirectoryAudit","GET","/auditLogs/directoryAudits/{param}","matched","Get-MgAuditLogDirectoryAudit" +"Reports","GetMgAuditLogDirectoryAudit_List.g.cs","v1.0","Get-MgAuditLogDirectoryAudit","GET","/auditLogs/directoryAudits","matched","Get-MgAuditLogDirectoryAudit" +"Reports","GetMgAuditLogDirectoryAudit.g.cs","v1.0","Get-MgAuditLogDirectoryAudit","","","dispatcher","" +"Reports","GetMgAuditLogDirectoryAuditCount.g.cs","v1.0","Get-MgAuditLogDirectoryAuditCount","GET","/auditLogs/directoryAudits/$count","matched","Get-MgAuditLogDirectoryAuditCount" +"Reports","GetMgAuditLogProvisioning_Get.g.cs","v1.0","Get-MgAuditLogProvisioning","GET","/auditLogs/provisioning/{param}","matched","Get-MgAuditLogProvisioning" +"Reports","GetMgAuditLogProvisioning_List.g.cs","v1.0","Get-MgAuditLogProvisioning","GET","/auditLogs/provisioning","matched","Get-MgAuditLogProvisioning" +"Reports","GetMgAuditLogProvisioning.g.cs","v1.0","Get-MgAuditLogProvisioning","","","dispatcher","" +"Reports","GetMgAuditLogProvisioningCount.g.cs","v1.0","Get-MgAuditLogProvisioningCount","GET","/auditLogs/provisioning/$count","matched","Get-MgAuditLogProvisioningCount" +"Reports","GetMgAuditLogSignIn_Get.g.cs","v1.0","Get-MgAuditLogSignIn","GET","/auditLogs/signIns/{param}","matched","Get-MgAuditLogSignIn" +"Reports","GetMgAuditLogSignIn_List.g.cs","v1.0","Get-MgAuditLogSignIn","GET","/auditLogs/signIns","matched","Get-MgAuditLogSignIn" +"Reports","GetMgAuditLogSignIn.g.cs","v1.0","Get-MgAuditLogSignIn","","","dispatcher","" +"Reports","GetMgAuditLogSignInCount.g.cs","v1.0","Get-MgAuditLogSignInCount","GET","/auditLogs/signIns/$count","matched","Get-MgAuditLogSignInCount" +"Reports","GetMgDeviceManagementReport.g.cs","v1.0","Get-MgDeviceManagementReport","GET","/deviceManagement/reports","matched","Get-MgDeviceManagementReport" +"Reports","GetMgDeviceManagementReportExportJob_Get.g.cs","v1.0","Get-MgDeviceManagementReportExportJob","GET","/deviceManagement/reports/exportJobs/{param}","matched","Get-MgDeviceManagementReportExportJob" +"Reports","GetMgDeviceManagementReportExportJob_List.g.cs","v1.0","Get-MgDeviceManagementReportExportJob","GET","/deviceManagement/reports/exportJobs","matched","Get-MgDeviceManagementReportExportJob" +"Reports","GetMgDeviceManagementReportExportJob.g.cs","v1.0","Get-MgDeviceManagementReportExportJob","","","dispatcher","" +"Reports","GetMgDeviceManagementReportExportJobCount.g.cs","v1.0","Get-MgDeviceManagementReportExportJobCount","GET","/deviceManagement/reports/exportJobs/$count","matched","Get-MgDeviceManagementReportExportJobCount" +"Reports","GetMgReport.g.cs","v1.0","Get-MgReport","GET","/reports","no-oracle","" +"Reports","GetMgReportAuthenticationMethod.g.cs","v1.0","Get-MgReportAuthenticationMethod","GET","/reports/authenticationMethods","matched","Get-MgReportAuthenticationMethod" +"Reports","GetMgReportAuthenticationMethodUserRegistrationDetail_Get.g.cs","v1.0","Get-MgReportAuthenticationMethodUserRegistrationDetail","GET","/reports/authenticationMethods/userRegistrationDetails/{param}","matched","Get-MgReportAuthenticationMethodUserRegistrationDetail" +"Reports","GetMgReportAuthenticationMethodUserRegistrationDetail_List.g.cs","v1.0","Get-MgReportAuthenticationMethodUserRegistrationDetail","GET","/reports/authenticationMethods/userRegistrationDetails","matched","Get-MgReportAuthenticationMethodUserRegistrationDetail" +"Reports","GetMgReportAuthenticationMethodUserRegistrationDetail.g.cs","v1.0","Get-MgReportAuthenticationMethodUserRegistrationDetail","","","dispatcher","" +"Reports","GetMgReportAuthenticationMethodUserRegistrationDetailCount.g.cs","v1.0","Get-MgReportAuthenticationMethodUserRegistrationDetailCount","GET","/reports/authenticationMethods/userRegistrationDetails/$count","matched","Get-MgReportAuthenticationMethodUserRegistrationDetailCount" +"Reports","GetMgReportAuthenticationMethodUsersRegisteredByFeature.g.cs","v1.0","Get-MgReportAuthenticationMethodUsersRegisteredByFeature","GET","/reports/authenticationMethods/usersRegisteredByFeature","mismatch","Invoke-MgGraphReportAuthenticationMethod" +"Reports","GetMgReportAuthenticationMethodUsersRegisteredByFeatureWithIncludedUserTypesWithIncludedUserRoles.g.cs","v1.0","Get-MgReportAuthenticationMethodUsersRegisteredByFeatureWithIncludedUserTypesWithIncludedUserRoles","","","parameterized-function","" +"Reports","GetMgReportAuthenticationMethodUsersRegisteredByMethod.g.cs","v1.0","Get-MgReportAuthenticationMethodUsersRegisteredByMethod","GET","/reports/authenticationMethods/usersRegisteredByMethod","no-oracle","" +"Reports","GetMgReportAuthenticationMethodUsersRegisteredByMethodWithIncludedUserTypesWithIncludedUserRoles.g.cs","v1.0","Get-MgReportAuthenticationMethodUsersRegisteredByMethodWithIncludedUserTypesWithIncludedUserRoles","","","parameterized-function","" +"Reports","GetMgReportDailyPrintUsageByPrinter_Get.g.cs","v1.0","Get-MgReportDailyPrintUsageByPrinter","GET","/reports/dailyPrintUsageByPrinter/{param}","matched","Get-MgReportDailyPrintUsageByPrinter" +"Reports","GetMgReportDailyPrintUsageByPrinter_List.g.cs","v1.0","Get-MgReportDailyPrintUsageByPrinter","GET","/reports/dailyPrintUsageByPrinter","matched","Get-MgReportDailyPrintUsageByPrinter" +"Reports","GetMgReportDailyPrintUsageByPrinter.g.cs","v1.0","Get-MgReportDailyPrintUsageByPrinter","","","dispatcher","" +"Reports","GetMgReportDailyPrintUsageByPrinterCount.g.cs","v1.0","Get-MgReportDailyPrintUsageByPrinterCount","GET","/reports/dailyPrintUsageByPrinter/$count","matched","Get-MgReportDailyPrintUsageByPrinterCount" +"Reports","GetMgReportDailyPrintUsageByUser_Get.g.cs","v1.0","Get-MgReportDailyPrintUsageByUser","GET","/reports/dailyPrintUsageByUser/{param}","matched","Get-MgReportDailyPrintUsageByUser" +"Reports","GetMgReportDailyPrintUsageByUser_List.g.cs","v1.0","Get-MgReportDailyPrintUsageByUser","GET","/reports/dailyPrintUsageByUser","matched","Get-MgReportDailyPrintUsageByUser" +"Reports","GetMgReportDailyPrintUsageByUser.g.cs","v1.0","Get-MgReportDailyPrintUsageByUser","","","dispatcher","" +"Reports","GetMgReportDailyPrintUsageByUserCount.g.cs","v1.0","Get-MgReportDailyPrintUsageByUserCount","GET","/reports/dailyPrintUsageByUser/$count","matched","Get-MgReportDailyPrintUsageByUserCount" +"Reports","GetMgReportDeviceConfigurationDeviceActivity.g.cs","v1.0","Get-MgReportDeviceConfigurationDeviceActivity","GET","/reports/deviceConfigurationDeviceActivity","matched","Get-MgReportDeviceConfigurationDeviceActivity" +"Reports","GetMgReportDeviceConfigurationUserActivity.g.cs","v1.0","Get-MgReportDeviceConfigurationUserActivity","GET","/reports/deviceConfigurationUserActivity","matched","Get-MgReportDeviceConfigurationUserActivity" +"Reports","GetMgReportGetEmailActivityCountsWithPeriod.g.cs","v1.0","Get-MgReportGetEmailActivityCountsWithPeriod","","","parameterized-function","" +"Reports","GetMgReportGetEmailActivityUserCountsWithPeriod.g.cs","v1.0","Get-MgReportGetEmailActivityUserCountsWithPeriod","","","parameterized-function","" +"Reports","GetMgReportGetEmailActivityUserDetailWithDate.g.cs","v1.0","Get-MgReportGetEmailActivityUserDetailWithDate","","","parameterized-function","" +"Reports","GetMgReportGetEmailActivityUserDetailWithPeriod.g.cs","v1.0","Get-MgReportGetEmailActivityUserDetailWithPeriod","","","parameterized-function","" +"Reports","GetMgReportGetEmailAppUsageAppsUserCountsWithPeriod.g.cs","v1.0","Get-MgReportGetEmailAppUsageAppsUserCountsWithPeriod","","","parameterized-function","" +"Reports","GetMgReportGetEmailAppUsageUserCountsWithPeriod.g.cs","v1.0","Get-MgReportGetEmailAppUsageUserCountsWithPeriod","","","parameterized-function","" +"Reports","GetMgReportGetEmailAppUsageUserDetailWithDate.g.cs","v1.0","Get-MgReportGetEmailAppUsageUserDetailWithDate","","","parameterized-function","" +"Reports","GetMgReportGetEmailAppUsageUserDetailWithPeriod.g.cs","v1.0","Get-MgReportGetEmailAppUsageUserDetailWithPeriod","","","parameterized-function","" +"Reports","GetMgReportGetEmailAppUsageVersionsUserCountsWithPeriod.g.cs","v1.0","Get-MgReportGetEmailAppUsageVersionsUserCountsWithPeriod","","","parameterized-function","" +"Reports","GetMgReportGetGroupArchivedPrintJobsWithGroupIdWithStartDateTimeWithEndDateTime.g.cs","v1.0","Get-MgReportGetGroupArchivedPrintJobsWithGroupIdWithStartDateTimeWithEndDateTime","","","parameterized-function","" +"Reports","GetMgReportGetM365AppPlatformUserCountsWithPeriod.g.cs","v1.0","Get-MgReportGetM365AppPlatformUserCountsWithPeriod","","","parameterized-function","" +"Reports","GetMgReportGetM365AppUserCountsWithPeriod.g.cs","v1.0","Get-MgReportGetM365AppUserCountsWithPeriod","","","parameterized-function","" +"Reports","GetMgReportGetM365AppUserDetailWithDate.g.cs","v1.0","Get-MgReportGetM365AppUserDetailWithDate","","","parameterized-function","" +"Reports","GetMgReportGetM365AppUserDetailWithPeriod.g.cs","v1.0","Get-MgReportGetM365AppUserDetailWithPeriod","","","parameterized-function","" +"Reports","GetMgReportGetMailboxUsageDetailWithPeriod.g.cs","v1.0","Get-MgReportGetMailboxUsageDetailWithPeriod","","","parameterized-function","" +"Reports","GetMgReportGetMailboxUsageMailboxCountsWithPeriod.g.cs","v1.0","Get-MgReportGetMailboxUsageMailboxCountsWithPeriod","","","parameterized-function","" +"Reports","GetMgReportGetMailboxUsageQuotaStatusMailboxCountsWithPeriod.g.cs","v1.0","Get-MgReportGetMailboxUsageQuotaStatusMailboxCountsWithPeriod","","","parameterized-function","" +"Reports","GetMgReportGetMailboxUsageStorageWithPeriod.g.cs","v1.0","Get-MgReportGetMailboxUsageStorageWithPeriod","","","parameterized-function","" +"Reports","GetMgReportGetOffice365ActivationCounts.g.cs","v1.0","Get-MgReportGetOffice365ActivationCounts","GET","/reports/getOffice365ActivationCounts","mismatch","Get-MgReportOffice365ActivationCount" +"Reports","GetMgReportGetOffice365ActivationsUserCounts.g.cs","v1.0","Get-MgReportGetOffice365ActivationsUserCounts","GET","/reports/getOffice365ActivationsUserCounts","mismatch","Get-MgReportOffice365ActivationUserCount" +"Reports","GetMgReportGetOffice365ActivationsUserDetail.g.cs","v1.0","Get-MgReportGetOffice365ActivationsUserDetail","GET","/reports/getOffice365ActivationsUserDetail","mismatch","Get-MgReportOffice365ActivationUserDetail" +"Reports","GetMgReportGetOffice365ActiveUserCountsWithPeriod.g.cs","v1.0","Get-MgReportGetOffice365ActiveUserCountsWithPeriod","","","parameterized-function","" +"Reports","GetMgReportGetOffice365ActiveUserDetailWithDate.g.cs","v1.0","Get-MgReportGetOffice365ActiveUserDetailWithDate","","","parameterized-function","" +"Reports","GetMgReportGetOffice365ActiveUserDetailWithPeriod.g.cs","v1.0","Get-MgReportGetOffice365ActiveUserDetailWithPeriod","","","parameterized-function","" +"Reports","GetMgReportGetOffice365GroupsActivityCountsWithPeriod.g.cs","v1.0","Get-MgReportGetOffice365GroupsActivityCountsWithPeriod","","","parameterized-function","" +"Reports","GetMgReportGetOffice365GroupsActivityDetailWithDate.g.cs","v1.0","Get-MgReportGetOffice365GroupsActivityDetailWithDate","","","parameterized-function","" +"Reports","GetMgReportGetOffice365GroupsActivityDetailWithPeriod.g.cs","v1.0","Get-MgReportGetOffice365GroupsActivityDetailWithPeriod","","","parameterized-function","" +"Reports","GetMgReportGetOffice365GroupsActivityFileCountsWithPeriod.g.cs","v1.0","Get-MgReportGetOffice365GroupsActivityFileCountsWithPeriod","","","parameterized-function","" +"Reports","GetMgReportGetOffice365GroupsActivityGroupCountsWithPeriod.g.cs","v1.0","Get-MgReportGetOffice365GroupsActivityGroupCountsWithPeriod","","","parameterized-function","" +"Reports","GetMgReportGetOffice365GroupsActivityStorageWithPeriod.g.cs","v1.0","Get-MgReportGetOffice365GroupsActivityStorageWithPeriod","","","parameterized-function","" +"Reports","GetMgReportGetOffice365ServicesUserCountsWithPeriod.g.cs","v1.0","Get-MgReportGetOffice365ServicesUserCountsWithPeriod","","","parameterized-function","" +"Reports","GetMgReportGetOneDriveActivityFileCountsWithPeriod.g.cs","v1.0","Get-MgReportGetOneDriveActivityFileCountsWithPeriod","","","parameterized-function","" +"Reports","GetMgReportGetOneDriveActivityUserCountsWithPeriod.g.cs","v1.0","Get-MgReportGetOneDriveActivityUserCountsWithPeriod","","","parameterized-function","" +"Reports","GetMgReportGetOneDriveActivityUserDetailWithDate.g.cs","v1.0","Get-MgReportGetOneDriveActivityUserDetailWithDate","","","parameterized-function","" +"Reports","GetMgReportGetOneDriveActivityUserDetailWithPeriod.g.cs","v1.0","Get-MgReportGetOneDriveActivityUserDetailWithPeriod","","","parameterized-function","" +"Reports","GetMgReportGetOneDriveUsageAccountCountsWithPeriod.g.cs","v1.0","Get-MgReportGetOneDriveUsageAccountCountsWithPeriod","","","parameterized-function","" +"Reports","GetMgReportGetOneDriveUsageAccountDetailWithDate.g.cs","v1.0","Get-MgReportGetOneDriveUsageAccountDetailWithDate","","","parameterized-function","" +"Reports","GetMgReportGetOneDriveUsageAccountDetailWithPeriod.g.cs","v1.0","Get-MgReportGetOneDriveUsageAccountDetailWithPeriod","","","parameterized-function","" +"Reports","GetMgReportGetOneDriveUsageFileCountsWithPeriod.g.cs","v1.0","Get-MgReportGetOneDriveUsageFileCountsWithPeriod","","","parameterized-function","" +"Reports","GetMgReportGetOneDriveUsageStorageWithPeriod.g.cs","v1.0","Get-MgReportGetOneDriveUsageStorageWithPeriod","","","parameterized-function","" +"Reports","GetMgReportGetPrinterArchivedPrintJobsWithPrinterIdWithStartDateTimeWithEndDateTime.g.cs","v1.0","Get-MgReportGetPrinterArchivedPrintJobsWithPrinterIdWithStartDateTimeWithEndDateTime","","","parameterized-function","" +"Reports","GetMgReportGetRelyingPartyDetailedSummaryWithPeriod.g.cs","v1.0","Get-MgReportGetRelyingPartyDetailedSummaryWithPeriod","","","parameterized-function","" +"Reports","GetMgReportGetSharePointActivityFileCountsWithPeriod.g.cs","v1.0","Get-MgReportGetSharePointActivityFileCountsWithPeriod","","","parameterized-function","" +"Reports","GetMgReportGetSharePointActivityPagesWithPeriod.g.cs","v1.0","Get-MgReportGetSharePointActivityPagesWithPeriod","","","parameterized-function","" +"Reports","GetMgReportGetSharePointActivityUserCountsWithPeriod.g.cs","v1.0","Get-MgReportGetSharePointActivityUserCountsWithPeriod","","","parameterized-function","" +"Reports","GetMgReportGetSharePointActivityUserDetailWithDate.g.cs","v1.0","Get-MgReportGetSharePointActivityUserDetailWithDate","","","parameterized-function","" +"Reports","GetMgReportGetSharePointActivityUserDetailWithPeriod.g.cs","v1.0","Get-MgReportGetSharePointActivityUserDetailWithPeriod","","","parameterized-function","" +"Reports","GetMgReportGetSharePointSiteUsageDetailWithDate.g.cs","v1.0","Get-MgReportGetSharePointSiteUsageDetailWithDate","","","parameterized-function","" +"Reports","GetMgReportGetSharePointSiteUsageDetailWithPeriod.g.cs","v1.0","Get-MgReportGetSharePointSiteUsageDetailWithPeriod","","","parameterized-function","" +"Reports","GetMgReportGetSharePointSiteUsageFileCountsWithPeriod.g.cs","v1.0","Get-MgReportGetSharePointSiteUsageFileCountsWithPeriod","","","parameterized-function","" +"Reports","GetMgReportGetSharePointSiteUsagePagesWithPeriod.g.cs","v1.0","Get-MgReportGetSharePointSiteUsagePagesWithPeriod","","","parameterized-function","" +"Reports","GetMgReportGetSharePointSiteUsageSiteCountsWithPeriod.g.cs","v1.0","Get-MgReportGetSharePointSiteUsageSiteCountsWithPeriod","","","parameterized-function","" +"Reports","GetMgReportGetSharePointSiteUsageStorageWithPeriod.g.cs","v1.0","Get-MgReportGetSharePointSiteUsageStorageWithPeriod","","","parameterized-function","" +"Reports","GetMgReportGetSkypeForBusinessActivityCountsWithPeriod.g.cs","v1.0","Get-MgReportGetSkypeForBusinessActivityCountsWithPeriod","","","parameterized-function","" +"Reports","GetMgReportGetSkypeForBusinessActivityUserCountsWithPeriod.g.cs","v1.0","Get-MgReportGetSkypeForBusinessActivityUserCountsWithPeriod","","","parameterized-function","" +"Reports","GetMgReportGetSkypeForBusinessActivityUserDetailWithDate.g.cs","v1.0","Get-MgReportGetSkypeForBusinessActivityUserDetailWithDate","","","parameterized-function","" +"Reports","GetMgReportGetSkypeForBusinessActivityUserDetailWithPeriod.g.cs","v1.0","Get-MgReportGetSkypeForBusinessActivityUserDetailWithPeriod","","","parameterized-function","" +"Reports","GetMgReportGetSkypeForBusinessDeviceUsageDistributionUserCountsWithPeriod.g.cs","v1.0","Get-MgReportGetSkypeForBusinessDeviceUsageDistributionUserCountsWithPeriod","","","parameterized-function","" +"Reports","GetMgReportGetSkypeForBusinessDeviceUsageUserCountsWithPeriod.g.cs","v1.0","Get-MgReportGetSkypeForBusinessDeviceUsageUserCountsWithPeriod","","","parameterized-function","" +"Reports","GetMgReportGetSkypeForBusinessDeviceUsageUserDetailWithDate.g.cs","v1.0","Get-MgReportGetSkypeForBusinessDeviceUsageUserDetailWithDate","","","parameterized-function","" +"Reports","GetMgReportGetSkypeForBusinessDeviceUsageUserDetailWithPeriod.g.cs","v1.0","Get-MgReportGetSkypeForBusinessDeviceUsageUserDetailWithPeriod","","","parameterized-function","" +"Reports","GetMgReportGetSkypeForBusinessOrganizerActivityCountsWithPeriod.g.cs","v1.0","Get-MgReportGetSkypeForBusinessOrganizerActivityCountsWithPeriod","","","parameterized-function","" +"Reports","GetMgReportGetSkypeForBusinessOrganizerActivityMinuteCountsWithPeriod.g.cs","v1.0","Get-MgReportGetSkypeForBusinessOrganizerActivityMinuteCountsWithPeriod","","","parameterized-function","" +"Reports","GetMgReportGetSkypeForBusinessOrganizerActivityUserCountsWithPeriod.g.cs","v1.0","Get-MgReportGetSkypeForBusinessOrganizerActivityUserCountsWithPeriod","","","parameterized-function","" +"Reports","GetMgReportGetSkypeForBusinessParticipantActivityCountsWithPeriod.g.cs","v1.0","Get-MgReportGetSkypeForBusinessParticipantActivityCountsWithPeriod","","","parameterized-function","" +"Reports","GetMgReportGetSkypeForBusinessParticipantActivityMinuteCountsWithPeriod.g.cs","v1.0","Get-MgReportGetSkypeForBusinessParticipantActivityMinuteCountsWithPeriod","","","parameterized-function","" +"Reports","GetMgReportGetSkypeForBusinessParticipantActivityUserCountsWithPeriod.g.cs","v1.0","Get-MgReportGetSkypeForBusinessParticipantActivityUserCountsWithPeriod","","","parameterized-function","" +"Reports","GetMgReportGetSkypeForBusinessPeerToPeerActivityCountsWithPeriod.g.cs","v1.0","Get-MgReportGetSkypeForBusinessPeerToPeerActivityCountsWithPeriod","","","parameterized-function","" +"Reports","GetMgReportGetSkypeForBusinessPeerToPeerActivityMinuteCountsWithPeriod.g.cs","v1.0","Get-MgReportGetSkypeForBusinessPeerToPeerActivityMinuteCountsWithPeriod","","","parameterized-function","" +"Reports","GetMgReportGetSkypeForBusinessPeerToPeerActivityUserCountsWithPeriod.g.cs","v1.0","Get-MgReportGetSkypeForBusinessPeerToPeerActivityUserCountsWithPeriod","","","parameterized-function","" +"Reports","GetMgReportGetTeamsDeviceUsageDistributionUserCountsWithPeriod.g.cs","v1.0","Get-MgReportGetTeamsDeviceUsageDistributionUserCountsWithPeriod","","","parameterized-function","" +"Reports","GetMgReportGetTeamsDeviceUsageUserCountsWithPeriod.g.cs","v1.0","Get-MgReportGetTeamsDeviceUsageUserCountsWithPeriod","","","parameterized-function","" +"Reports","GetMgReportGetTeamsDeviceUsageUserDetailWithDate.g.cs","v1.0","Get-MgReportGetTeamsDeviceUsageUserDetailWithDate","","","parameterized-function","" +"Reports","GetMgReportGetTeamsDeviceUsageUserDetailWithPeriod.g.cs","v1.0","Get-MgReportGetTeamsDeviceUsageUserDetailWithPeriod","","","parameterized-function","" +"Reports","GetMgReportGetTeamsTeamActivityCountsWithPeriod.g.cs","v1.0","Get-MgReportGetTeamsTeamActivityCountsWithPeriod","","","parameterized-function","" +"Reports","GetMgReportGetTeamsTeamActivityDetailWithDate.g.cs","v1.0","Get-MgReportGetTeamsTeamActivityDetailWithDate","","","parameterized-function","" +"Reports","GetMgReportGetTeamsTeamActivityDetailWithPeriod.g.cs","v1.0","Get-MgReportGetTeamsTeamActivityDetailWithPeriod","","","parameterized-function","" +"Reports","GetMgReportGetTeamsTeamActivityDistributionCountsWithPeriod.g.cs","v1.0","Get-MgReportGetTeamsTeamActivityDistributionCountsWithPeriod","","","parameterized-function","" +"Reports","GetMgReportGetTeamsTeamCountsWithPeriod.g.cs","v1.0","Get-MgReportGetTeamsTeamCountsWithPeriod","","","parameterized-function","" +"Reports","GetMgReportGetTeamsUserActivityCountsWithPeriod.g.cs","v1.0","Get-MgReportGetTeamsUserActivityCountsWithPeriod","","","parameterized-function","" +"Reports","GetMgReportGetTeamsUserActivityUserCountsWithPeriod.g.cs","v1.0","Get-MgReportGetTeamsUserActivityUserCountsWithPeriod","","","parameterized-function","" +"Reports","GetMgReportGetTeamsUserActivityUserDetailWithDate.g.cs","v1.0","Get-MgReportGetTeamsUserActivityUserDetailWithDate","","","parameterized-function","" +"Reports","GetMgReportGetTeamsUserActivityUserDetailWithPeriod.g.cs","v1.0","Get-MgReportGetTeamsUserActivityUserDetailWithPeriod","","","parameterized-function","" +"Reports","GetMgReportGetUserArchivedPrintJobsWithUserIdWithStartDateTimeWithEndDateTime.g.cs","v1.0","Get-MgReportGetUserArchivedPrintJobsWithUserIdWithStartDateTimeWithEndDateTime","","","parameterized-function","" +"Reports","GetMgReportGetYammerActivityCountsWithPeriod.g.cs","v1.0","Get-MgReportGetYammerActivityCountsWithPeriod","","","parameterized-function","" +"Reports","GetMgReportGetYammerActivityUserCountsWithPeriod.g.cs","v1.0","Get-MgReportGetYammerActivityUserCountsWithPeriod","","","parameterized-function","" +"Reports","GetMgReportGetYammerActivityUserDetailWithDate.g.cs","v1.0","Get-MgReportGetYammerActivityUserDetailWithDate","","","parameterized-function","" +"Reports","GetMgReportGetYammerActivityUserDetailWithPeriod.g.cs","v1.0","Get-MgReportGetYammerActivityUserDetailWithPeriod","","","parameterized-function","" +"Reports","GetMgReportGetYammerDeviceUsageDistributionUserCountsWithPeriod.g.cs","v1.0","Get-MgReportGetYammerDeviceUsageDistributionUserCountsWithPeriod","","","parameterized-function","" +"Reports","GetMgReportGetYammerDeviceUsageUserCountsWithPeriod.g.cs","v1.0","Get-MgReportGetYammerDeviceUsageUserCountsWithPeriod","","","parameterized-function","" +"Reports","GetMgReportGetYammerDeviceUsageUserDetailWithDate.g.cs","v1.0","Get-MgReportGetYammerDeviceUsageUserDetailWithDate","","","parameterized-function","" +"Reports","GetMgReportGetYammerDeviceUsageUserDetailWithPeriod.g.cs","v1.0","Get-MgReportGetYammerDeviceUsageUserDetailWithPeriod","","","parameterized-function","" +"Reports","GetMgReportGetYammerGroupsActivityCountsWithPeriod.g.cs","v1.0","Get-MgReportGetYammerGroupsActivityCountsWithPeriod","","","parameterized-function","" +"Reports","GetMgReportGetYammerGroupsActivityDetailWithDate.g.cs","v1.0","Get-MgReportGetYammerGroupsActivityDetailWithDate","","","parameterized-function","" +"Reports","GetMgReportGetYammerGroupsActivityDetailWithPeriod.g.cs","v1.0","Get-MgReportGetYammerGroupsActivityDetailWithPeriod","","","parameterized-function","" +"Reports","GetMgReportGetYammerGroupsActivityGroupCountsWithPeriod.g.cs","v1.0","Get-MgReportGetYammerGroupsActivityGroupCountsWithPeriod","","","parameterized-function","" +"Reports","GetMgReportManagedDeviceEnrollmentFailureDetails.g.cs","v1.0","Get-MgReportManagedDeviceEnrollmentFailureDetails","GET","/reports/managedDeviceEnrollmentFailureDetails","mismatch","Get-MgReportManagedDeviceEnrollmentFailureDetail" +"Reports","GetMgReportManagedDeviceEnrollmentFailureDetailsWithSkipWithTopWithFilterWithSkipToken.g.cs","v1.0","Get-MgReportManagedDeviceEnrollmentFailureDetailsWithSkipWithTopWithFilterWithSkipToken","","","parameterized-function","" +"Reports","GetMgReportManagedDeviceEnrollmentTopFailures.g.cs","v1.0","Get-MgReportManagedDeviceEnrollmentTopFailures","GET","/reports/managedDeviceEnrollmentTopFailures","mismatch","Get-MgReportManagedDeviceEnrollmentTopFailure" +"Reports","GetMgReportManagedDeviceEnrollmentTopFailuresWithPeriod.g.cs","v1.0","Get-MgReportManagedDeviceEnrollmentTopFailuresWithPeriod","","","parameterized-function","" +"Reports","GetMgReportMonthlyPrintUsageByPrinter_Get.g.cs","v1.0","Get-MgReportMonthlyPrintUsageByPrinter","GET","/reports/monthlyPrintUsageByPrinter/{param}","matched","Get-MgReportMonthlyPrintUsageByPrinter" +"Reports","GetMgReportMonthlyPrintUsageByPrinter_List.g.cs","v1.0","Get-MgReportMonthlyPrintUsageByPrinter","GET","/reports/monthlyPrintUsageByPrinter","matched","Get-MgReportMonthlyPrintUsageByPrinter" +"Reports","GetMgReportMonthlyPrintUsageByPrinter.g.cs","v1.0","Get-MgReportMonthlyPrintUsageByPrinter","","","dispatcher","" +"Reports","GetMgReportMonthlyPrintUsageByPrinterCount.g.cs","v1.0","Get-MgReportMonthlyPrintUsageByPrinterCount","GET","/reports/monthlyPrintUsageByPrinter/$count","matched","Get-MgReportMonthlyPrintUsageByPrinterCount" +"Reports","GetMgReportMonthlyPrintUsageByUser_Get.g.cs","v1.0","Get-MgReportMonthlyPrintUsageByUser","GET","/reports/monthlyPrintUsageByUser/{param}","matched","Get-MgReportMonthlyPrintUsageByUser" +"Reports","GetMgReportMonthlyPrintUsageByUser_List.g.cs","v1.0","Get-MgReportMonthlyPrintUsageByUser","GET","/reports/monthlyPrintUsageByUser","matched","Get-MgReportMonthlyPrintUsageByUser" +"Reports","GetMgReportMonthlyPrintUsageByUser.g.cs","v1.0","Get-MgReportMonthlyPrintUsageByUser","","","dispatcher","" +"Reports","GetMgReportMonthlyPrintUsageByUserCount.g.cs","v1.0","Get-MgReportMonthlyPrintUsageByUserCount","GET","/reports/monthlyPrintUsageByUser/$count","matched","Get-MgReportMonthlyPrintUsageByUserCount" +"Reports","GetMgReportPartner.g.cs","v1.0","Get-MgReportPartner","GET","/reports/partners","matched","Get-MgReportPartner" +"Reports","GetMgReportPartnerBilling.g.cs","v1.0","Get-MgReportPartnerBilling","GET","/reports/partners/billing","matched","Get-MgReportPartnerBilling" +"Reports","GetMgReportPartnerBillingManifest_Get.g.cs","v1.0","Get-MgReportPartnerBillingManifest","GET","/reports/partners/billing/manifests/{param}","matched","Get-MgReportPartnerBillingManifest" +"Reports","GetMgReportPartnerBillingManifest_List.g.cs","v1.0","Get-MgReportPartnerBillingManifest","GET","/reports/partners/billing/manifests","matched","Get-MgReportPartnerBillingManifest" +"Reports","GetMgReportPartnerBillingManifest.g.cs","v1.0","Get-MgReportPartnerBillingManifest","","","dispatcher","" +"Reports","GetMgReportPartnerBillingManifestCount.g.cs","v1.0","Get-MgReportPartnerBillingManifestCount","GET","/reports/partners/billing/manifests/$count","matched","Get-MgReportPartnerBillingManifestCount" +"Reports","GetMgReportPartnerBillingOperation_Get.g.cs","v1.0","Get-MgReportPartnerBillingOperation","GET","/reports/partners/billing/operations/{param}","matched","Get-MgReportPartnerBillingOperation" +"Reports","GetMgReportPartnerBillingOperation_List.g.cs","v1.0","Get-MgReportPartnerBillingOperation","GET","/reports/partners/billing/operations","matched","Get-MgReportPartnerBillingOperation" +"Reports","GetMgReportPartnerBillingOperation.g.cs","v1.0","Get-MgReportPartnerBillingOperation","","","dispatcher","" +"Reports","GetMgReportPartnerBillingOperationCount.g.cs","v1.0","Get-MgReportPartnerBillingOperationCount","GET","/reports/partners/billing/operations/$count","matched","Get-MgReportPartnerBillingOperationCount" +"Reports","GetMgReportPartnerBillingReconciliation.g.cs","v1.0","Get-MgReportPartnerBillingReconciliation","GET","/reports/partners/billing/reconciliation","matched","Get-MgReportPartnerBillingReconciliation" +"Reports","GetMgReportPartnerBillingReconciliationBilled.g.cs","v1.0","Get-MgReportPartnerBillingReconciliationBilled","GET","/reports/partners/billing/reconciliation/billed","matched","Get-MgReportPartnerBillingReconciliationBilled" +"Reports","GetMgReportPartnerBillingReconciliationUnbilled.g.cs","v1.0","Get-MgReportPartnerBillingReconciliationUnbilled","GET","/reports/partners/billing/reconciliation/unbilled","matched","Get-MgReportPartnerBillingReconciliationUnbilled" +"Reports","GetMgReportPartnerBillingUsage.g.cs","v1.0","Get-MgReportPartnerBillingUsage","GET","/reports/partners/billing/usage","matched","Get-MgReportPartnerBillingUsage" +"Reports","GetMgReportPartnerBillingUsageBilled.g.cs","v1.0","Get-MgReportPartnerBillingUsageBilled","GET","/reports/partners/billing/usage/billed","matched","Get-MgReportPartnerBillingUsageBilled" +"Reports","GetMgReportPartnerBillingUsageUnbilled.g.cs","v1.0","Get-MgReportPartnerBillingUsageUnbilled","GET","/reports/partners/billing/usage/unbilled","matched","Get-MgReportPartnerBillingUsageUnbilled" +"Reports","GetMgReportSecurity.g.cs","v1.0","Get-MgReportSecurity","GET","/reports/security","matched","Get-MgReportSecurity" +"Reports","GetMgReportSecurityGetAttackSimulationRepeatOffenders.g.cs","v1.0","Get-MgReportSecurityGetAttackSimulationRepeatOffenders","GET","/reports/security/getAttackSimulationRepeatOffenders","mismatch","Get-MgReportSecurityAttackSimulationRepeatOffender" +"Reports","GetMgReportSecurityGetAttackSimulationSimulationUserCoverage.g.cs","v1.0","Get-MgReportSecurityGetAttackSimulationSimulationUserCoverage","GET","/reports/security/getAttackSimulationSimulationUserCoverage","mismatch","Get-MgReportSecurityAttackSimulationUserCoverage" +"Reports","GetMgReportSecurityGetAttackSimulationTrainingUserCoverage.g.cs","v1.0","Get-MgReportSecurityGetAttackSimulationTrainingUserCoverage","GET","/reports/security/getAttackSimulationTrainingUserCoverage","mismatch","Get-MgReportSecurityAttackSimulationTrainingUserCoverage" +"Reports","InvokeMgAuditLogSignInConfirmCompromised.g.cs","v1.0","Invoke-MgAuditLogSignInConfirmCompromised","POST","/auditLogs/signIns/confirmCompromised","mismatch","Confirm-MgAuditLogSignInCompromised" +"Reports","InvokeMgAuditLogSignInConfirmSafe.g.cs","v1.0","Invoke-MgAuditLogSignInConfirmSafe","POST","/auditLogs/signIns/confirmSafe","mismatch","Confirm-MgAuditLogSignInSafe" +"Reports","InvokeMgAuditLogSignInDismiss.g.cs","v1.0","Invoke-MgAuditLogSignInDismiss","POST","/auditLogs/signIns/dismiss","mismatch","Invoke-MgDismissAuditLogSignIn" +"Reports","InvokeMgDeviceManagementReportGetCachedReport.g.cs","v1.0","Invoke-MgDeviceManagementReportGetCachedReport","POST","/deviceManagement/reports/getCachedReport","mismatch","Get-MgDeviceManagementReportCachedReport" +"Reports","InvokeMgDeviceManagementReportGetCompliancePolicyNonComplianceReport.g.cs","v1.0","Invoke-MgDeviceManagementReportGetCompliancePolicyNonComplianceReport","POST","/deviceManagement/reports/getCompliancePolicyNonComplianceReport","mismatch","Get-MgDeviceManagementReportCompliancePolicyNonComplianceReport" +"Reports","InvokeMgDeviceManagementReportGetCompliancePolicyNonComplianceSummaryReport.g.cs","v1.0","Invoke-MgDeviceManagementReportGetCompliancePolicyNonComplianceSummaryReport","POST","/deviceManagement/reports/getCompliancePolicyNonComplianceSummaryReport","mismatch","Get-MgDeviceManagementReportCompliancePolicyNonComplianceSummaryReport" +"Reports","InvokeMgDeviceManagementReportGetComplianceSettingNonComplianceReport.g.cs","v1.0","Invoke-MgDeviceManagementReportGetComplianceSettingNonComplianceReport","POST","/deviceManagement/reports/getComplianceSettingNonComplianceReport","mismatch","Get-MgDeviceManagementReportComplianceSettingNonComplianceReport" +"Reports","InvokeMgDeviceManagementReportGetConfigurationPolicyNonComplianceReport.g.cs","v1.0","Invoke-MgDeviceManagementReportGetConfigurationPolicyNonComplianceReport","POST","/deviceManagement/reports/getConfigurationPolicyNonComplianceReport","mismatch","Get-MgDeviceManagementReportConfigurationPolicyNonComplianceReport" +"Reports","InvokeMgDeviceManagementReportGetConfigurationPolicyNonComplianceSummaryReport.g.cs","v1.0","Invoke-MgDeviceManagementReportGetConfigurationPolicyNonComplianceSummaryReport","POST","/deviceManagement/reports/getConfigurationPolicyNonComplianceSummaryReport","mismatch","Get-MgDeviceManagementReportConfigurationPolicyNonComplianceSummaryReport" +"Reports","InvokeMgDeviceManagementReportGetConfigurationSettingNonComplianceReport.g.cs","v1.0","Invoke-MgDeviceManagementReportGetConfigurationSettingNonComplianceReport","POST","/deviceManagement/reports/getConfigurationSettingNonComplianceReport","mismatch","Get-MgDeviceManagementReportConfigurationSettingNonComplianceReport" +"Reports","InvokeMgDeviceManagementReportGetDeviceManagementIntentPerSettingContributingProfiles.g.cs","v1.0","Invoke-MgDeviceManagementReportGetDeviceManagementIntentPerSettingContributingProfiles","POST","/deviceManagement/reports/getDeviceManagementIntentPerSettingContributingProfiles","mismatch","Get-MgDeviceManagementReportDeviceManagementIntentPerSettingContributingProfile" +"Reports","InvokeMgDeviceManagementReportGetDeviceManagementIntentSettingsReport.g.cs","v1.0","Invoke-MgDeviceManagementReportGetDeviceManagementIntentSettingsReport","POST","/deviceManagement/reports/getDeviceManagementIntentSettingsReport","mismatch","Get-MgDeviceManagementReportDeviceManagementIntentSettingReport" +"Reports","InvokeMgDeviceManagementReportGetDeviceNonComplianceReport.g.cs","v1.0","Invoke-MgDeviceManagementReportGetDeviceNonComplianceReport","POST","/deviceManagement/reports/getDeviceNonComplianceReport","mismatch","Get-MgDeviceManagementReportDeviceNonComplianceReport" +"Reports","InvokeMgDeviceManagementReportGetDevicesWithoutCompliancePolicyReport.g.cs","v1.0","Invoke-MgDeviceManagementReportGetDevicesWithoutCompliancePolicyReport","POST","/deviceManagement/reports/getDevicesWithoutCompliancePolicyReport","mismatch","Get-MgDeviceManagementReportDeviceWithoutCompliancePolicyReport" +"Reports","InvokeMgDeviceManagementReportGetHistoricalReport.g.cs","v1.0","Invoke-MgDeviceManagementReportGetHistoricalReport","POST","/deviceManagement/reports/getHistoricalReport","mismatch","Get-MgDeviceManagementReportHistoricalReport" +"Reports","InvokeMgDeviceManagementReportGetNoncompliantDevicesAndSettingsReport.g.cs","v1.0","Invoke-MgDeviceManagementReportGetNoncompliantDevicesAndSettingsReport","POST","/deviceManagement/reports/getNoncompliantDevicesAndSettingsReport","mismatch","Get-MgDeviceManagementReportNoncompliantDeviceAndSettingReport" +"Reports","InvokeMgDeviceManagementReportGetPolicyNonComplianceMetadata.g.cs","v1.0","Invoke-MgDeviceManagementReportGetPolicyNonComplianceMetadata","POST","/deviceManagement/reports/getPolicyNonComplianceMetadata","mismatch","Get-MgDeviceManagementReportPolicyNonComplianceMetadata" +"Reports","InvokeMgDeviceManagementReportGetPolicyNonComplianceReport.g.cs","v1.0","Invoke-MgDeviceManagementReportGetPolicyNonComplianceReport","POST","/deviceManagement/reports/getPolicyNonComplianceReport","mismatch","Get-MgDeviceManagementReportPolicyNonComplianceReport" +"Reports","InvokeMgDeviceManagementReportGetPolicyNonComplianceSummaryReport.g.cs","v1.0","Invoke-MgDeviceManagementReportGetPolicyNonComplianceSummaryReport","POST","/deviceManagement/reports/getPolicyNonComplianceSummaryReport","mismatch","Get-MgDeviceManagementReportPolicyNonComplianceSummaryReport" +"Reports","InvokeMgDeviceManagementReportGetReportFilters.g.cs","v1.0","Invoke-MgDeviceManagementReportGetReportFilters","POST","/deviceManagement/reports/getReportFilters","mismatch","Get-MgDeviceManagementReportFilter" +"Reports","InvokeMgDeviceManagementReportGetSettingNonComplianceReport.g.cs","v1.0","Invoke-MgDeviceManagementReportGetSettingNonComplianceReport","POST","/deviceManagement/reports/getSettingNonComplianceReport","mismatch","Get-MgDeviceManagementReportSettingNonComplianceReport" +"Reports","InvokeMgDeviceManagementReportRetrieveDeviceAppInstallationStatusReport.g.cs","v1.0","Invoke-MgDeviceManagementReportRetrieveDeviceAppInstallationStatusReport","POST","/deviceManagement/reports/retrieveDeviceAppInstallationStatusReport","mismatch","Get-MgDeviceManagementReportDeviceAppInstallationStatusReport" +"Reports","InvokeMgReportPartnerBillingReconciliationBilledExport.g.cs","v1.0","Invoke-MgReportPartnerBillingReconciliationBilledExport","POST","","cast","" +"Reports","InvokeMgReportPartnerBillingReconciliationUnbilledExport.g.cs","v1.0","Invoke-MgReportPartnerBillingReconciliationUnbilledExport","POST","","cast","" +"Reports","InvokeMgReportPartnerBillingUsageBilledExport.g.cs","v1.0","Invoke-MgReportPartnerBillingUsageBilledExport","POST","","cast","" +"Reports","InvokeMgReportPartnerBillingUsageUnbilledExport.g.cs","v1.0","Invoke-MgReportPartnerBillingUsageUnbilledExport","POST","","cast","" +"Reports","NewMgAuditLogDirectoryAudit.g.cs","v1.0","New-MgAuditLogDirectoryAudit","POST","/auditLogs/directoryAudits","no-oracle","" +"Reports","NewMgAuditLogProvisioning.g.cs","v1.0","New-MgAuditLogProvisioning","POST","/auditLogs/provisioning","no-oracle","" +"Reports","NewMgAuditLogSignIn.g.cs","v1.0","New-MgAuditLogSignIn","POST","/auditLogs/signIns","no-oracle","" +"Reports","NewMgDeviceManagementReportExportJob.g.cs","v1.0","New-MgDeviceManagementReportExportJob","POST","/deviceManagement/reports/exportJobs","no-oracle","" +"Reports","NewMgReportAuthenticationMethodUserRegistrationDetail.g.cs","v1.0","New-MgReportAuthenticationMethodUserRegistrationDetail","POST","/reports/authenticationMethods/userRegistrationDetails","matched","New-MgReportAuthenticationMethodUserRegistrationDetail" +"Reports","NewMgReportDailyPrintUsageByPrinter.g.cs","v1.0","New-MgReportDailyPrintUsageByPrinter","POST","/reports/dailyPrintUsageByPrinter","no-oracle","" +"Reports","NewMgReportDailyPrintUsageByUser.g.cs","v1.0","New-MgReportDailyPrintUsageByUser","POST","/reports/dailyPrintUsageByUser","no-oracle","" +"Reports","NewMgReportMonthlyPrintUsageByPrinter.g.cs","v1.0","New-MgReportMonthlyPrintUsageByPrinter","POST","/reports/monthlyPrintUsageByPrinter","no-oracle","" +"Reports","NewMgReportMonthlyPrintUsageByUser.g.cs","v1.0","New-MgReportMonthlyPrintUsageByUser","POST","/reports/monthlyPrintUsageByUser","no-oracle","" +"Reports","NewMgReportPartnerBillingManifest.g.cs","v1.0","New-MgReportPartnerBillingManifest","POST","/reports/partners/billing/manifests","matched","New-MgReportPartnerBillingManifest" +"Reports","NewMgReportPartnerBillingOperation.g.cs","v1.0","New-MgReportPartnerBillingOperation","POST","/reports/partners/billing/operations","matched","New-MgReportPartnerBillingOperation" +"Reports","RemoveMgAdminReportSetting.g.cs","v1.0","Remove-MgAdminReportSetting","DELETE","/admin/reportSettings","matched","Remove-MgAdminReportSetting" +"Reports","RemoveMgAuditLogDirectoryAudit.g.cs","v1.0","Remove-MgAuditLogDirectoryAudit","DELETE","/auditLogs/directoryAudits/{param}","no-oracle","" +"Reports","RemoveMgAuditLogProvisioning.g.cs","v1.0","Remove-MgAuditLogProvisioning","DELETE","/auditLogs/provisioning/{param}","no-oracle","" +"Reports","RemoveMgAuditLogSignIn.g.cs","v1.0","Remove-MgAuditLogSignIn","DELETE","/auditLogs/signIns/{param}","no-oracle","" +"Reports","RemoveMgDeviceManagementReport.g.cs","v1.0","Remove-MgDeviceManagementReport","DELETE","/deviceManagement/reports","matched","Remove-MgDeviceManagementReport" +"Reports","RemoveMgDeviceManagementReportExportJob.g.cs","v1.0","Remove-MgDeviceManagementReportExportJob","DELETE","/deviceManagement/reports/exportJobs/{param}","no-oracle","" +"Reports","RemoveMgReportAuthenticationMethod.g.cs","v1.0","Remove-MgReportAuthenticationMethod","DELETE","/reports/authenticationMethods","no-oracle","" +"Reports","RemoveMgReportAuthenticationMethodUserRegistrationDetail.g.cs","v1.0","Remove-MgReportAuthenticationMethodUserRegistrationDetail","DELETE","/reports/authenticationMethods/userRegistrationDetails/{param}","matched","Remove-MgReportAuthenticationMethodUserRegistrationDetail" +"Reports","RemoveMgReportDailyPrintUsageByPrinter.g.cs","v1.0","Remove-MgReportDailyPrintUsageByPrinter","DELETE","/reports/dailyPrintUsageByPrinter/{param}","no-oracle","" +"Reports","RemoveMgReportDailyPrintUsageByUser.g.cs","v1.0","Remove-MgReportDailyPrintUsageByUser","DELETE","/reports/dailyPrintUsageByUser/{param}","no-oracle","" +"Reports","RemoveMgReportMonthlyPrintUsageByPrinter.g.cs","v1.0","Remove-MgReportMonthlyPrintUsageByPrinter","DELETE","/reports/monthlyPrintUsageByPrinter/{param}","no-oracle","" +"Reports","RemoveMgReportMonthlyPrintUsageByUser.g.cs","v1.0","Remove-MgReportMonthlyPrintUsageByUser","DELETE","/reports/monthlyPrintUsageByUser/{param}","no-oracle","" +"Reports","RemoveMgReportPartner.g.cs","v1.0","Remove-MgReportPartner","DELETE","/reports/partners","no-oracle","" +"Reports","RemoveMgReportPartnerBilling.g.cs","v1.0","Remove-MgReportPartnerBilling","DELETE","/reports/partners/billing","matched","Remove-MgReportPartnerBilling" +"Reports","RemoveMgReportPartnerBillingManifest.g.cs","v1.0","Remove-MgReportPartnerBillingManifest","DELETE","/reports/partners/billing/manifests/{param}","matched","Remove-MgReportPartnerBillingManifest" +"Reports","RemoveMgReportPartnerBillingOperation.g.cs","v1.0","Remove-MgReportPartnerBillingOperation","DELETE","/reports/partners/billing/operations/{param}","matched","Remove-MgReportPartnerBillingOperation" +"Reports","RemoveMgReportPartnerBillingReconciliation.g.cs","v1.0","Remove-MgReportPartnerBillingReconciliation","DELETE","/reports/partners/billing/reconciliation","matched","Remove-MgReportPartnerBillingReconciliation" +"Reports","RemoveMgReportPartnerBillingReconciliationBilled.g.cs","v1.0","Remove-MgReportPartnerBillingReconciliationBilled","DELETE","/reports/partners/billing/reconciliation/billed","matched","Remove-MgReportPartnerBillingReconciliationBilled" +"Reports","RemoveMgReportPartnerBillingReconciliationUnbilled.g.cs","v1.0","Remove-MgReportPartnerBillingReconciliationUnbilled","DELETE","/reports/partners/billing/reconciliation/unbilled","matched","Remove-MgReportPartnerBillingReconciliationUnbilled" +"Reports","RemoveMgReportPartnerBillingUsage.g.cs","v1.0","Remove-MgReportPartnerBillingUsage","DELETE","/reports/partners/billing/usage","matched","Remove-MgReportPartnerBillingUsage" +"Reports","RemoveMgReportPartnerBillingUsageBilled.g.cs","v1.0","Remove-MgReportPartnerBillingUsageBilled","DELETE","/reports/partners/billing/usage/billed","matched","Remove-MgReportPartnerBillingUsageBilled" +"Reports","RemoveMgReportPartnerBillingUsageUnbilled.g.cs","v1.0","Remove-MgReportPartnerBillingUsageUnbilled","DELETE","/reports/partners/billing/usage/unbilled","matched","Remove-MgReportPartnerBillingUsageUnbilled" +"Reports","RemoveMgReportSecurity.g.cs","v1.0","Remove-MgReportSecurity","DELETE","/reports/security","no-oracle","" +"Reports","UpdateMgAdminReportSetting.g.cs","v1.0","Update-MgAdminReportSetting","PATCH","/admin/reportSettings","matched","Update-MgAdminReportSetting" +"Reports","UpdateMgAuditLog.g.cs","v1.0","Update-MgAuditLog","PATCH","/auditLogs","no-oracle","" +"Reports","UpdateMgAuditLogDirectoryAudit.g.cs","v1.0","Update-MgAuditLogDirectoryAudit","PATCH","/auditLogs/directoryAudits/{param}","no-oracle","" +"Reports","UpdateMgAuditLogProvisioning.g.cs","v1.0","Update-MgAuditLogProvisioning","PATCH","/auditLogs/provisioning/{param}","no-oracle","" +"Reports","UpdateMgAuditLogSignIn.g.cs","v1.0","Update-MgAuditLogSignIn","PATCH","/auditLogs/signIns/{param}","no-oracle","" +"Reports","UpdateMgDeviceManagementReport.g.cs","v1.0","Update-MgDeviceManagementReport","PATCH","/deviceManagement/reports","matched","Update-MgDeviceManagementReport" +"Reports","UpdateMgDeviceManagementReportExportJob.g.cs","v1.0","Update-MgDeviceManagementReportExportJob","PATCH","/deviceManagement/reports/exportJobs/{param}","no-oracle","" +"Reports","UpdateMgReport.g.cs","v1.0","Update-MgReport","PATCH","/reports","no-oracle","" +"Reports","UpdateMgReportAuthenticationMethod.g.cs","v1.0","Update-MgReportAuthenticationMethod","PATCH","/reports/authenticationMethods","no-oracle","" +"Reports","UpdateMgReportAuthenticationMethodUserRegistrationDetail.g.cs","v1.0","Update-MgReportAuthenticationMethodUserRegistrationDetail","PATCH","/reports/authenticationMethods/userRegistrationDetails/{param}","matched","Update-MgReportAuthenticationMethodUserRegistrationDetail" +"Reports","UpdateMgReportDailyPrintUsageByPrinter.g.cs","v1.0","Update-MgReportDailyPrintUsageByPrinter","PATCH","/reports/dailyPrintUsageByPrinter/{param}","no-oracle","" +"Reports","UpdateMgReportDailyPrintUsageByUser.g.cs","v1.0","Update-MgReportDailyPrintUsageByUser","PATCH","/reports/dailyPrintUsageByUser/{param}","no-oracle","" +"Reports","UpdateMgReportMonthlyPrintUsageByPrinter.g.cs","v1.0","Update-MgReportMonthlyPrintUsageByPrinter","PATCH","/reports/monthlyPrintUsageByPrinter/{param}","no-oracle","" +"Reports","UpdateMgReportMonthlyPrintUsageByUser.g.cs","v1.0","Update-MgReportMonthlyPrintUsageByUser","PATCH","/reports/monthlyPrintUsageByUser/{param}","no-oracle","" +"Reports","UpdateMgReportPartner.g.cs","v1.0","Update-MgReportPartner","PATCH","/reports/partners","no-oracle","" +"Reports","UpdateMgReportPartnerBilling.g.cs","v1.0","Update-MgReportPartnerBilling","PATCH","/reports/partners/billing","matched","Update-MgReportPartnerBilling" +"Reports","UpdateMgReportPartnerBillingManifest.g.cs","v1.0","Update-MgReportPartnerBillingManifest","PATCH","/reports/partners/billing/manifests/{param}","matched","Update-MgReportPartnerBillingManifest" +"Reports","UpdateMgReportPartnerBillingOperation.g.cs","v1.0","Update-MgReportPartnerBillingOperation","PATCH","/reports/partners/billing/operations/{param}","matched","Update-MgReportPartnerBillingOperation" +"Reports","UpdateMgReportPartnerBillingReconciliation.g.cs","v1.0","Update-MgReportPartnerBillingReconciliation","PATCH","/reports/partners/billing/reconciliation","matched","Update-MgReportPartnerBillingReconciliation" +"Reports","UpdateMgReportPartnerBillingReconciliationBilled.g.cs","v1.0","Update-MgReportPartnerBillingReconciliationBilled","PATCH","/reports/partners/billing/reconciliation/billed","matched","Update-MgReportPartnerBillingReconciliationBilled" +"Reports","UpdateMgReportPartnerBillingReconciliationUnbilled.g.cs","v1.0","Update-MgReportPartnerBillingReconciliationUnbilled","PATCH","/reports/partners/billing/reconciliation/unbilled","matched","Update-MgReportPartnerBillingReconciliationUnbilled" +"Reports","UpdateMgReportPartnerBillingUsage.g.cs","v1.0","Update-MgReportPartnerBillingUsage","PATCH","/reports/partners/billing/usage","matched","Update-MgReportPartnerBillingUsage" +"Reports","UpdateMgReportPartnerBillingUsageBilled.g.cs","v1.0","Update-MgReportPartnerBillingUsageBilled","PATCH","/reports/partners/billing/usage/billed","matched","Update-MgReportPartnerBillingUsageBilled" +"Reports","UpdateMgReportPartnerBillingUsageUnbilled.g.cs","v1.0","Update-MgReportPartnerBillingUsageUnbilled","PATCH","/reports/partners/billing/usage/unbilled","matched","Update-MgReportPartnerBillingUsageUnbilled" +"Reports","UpdateMgReportSecurity.g.cs","v1.0","Update-MgReportSecurity","PATCH","/reports/security","no-oracle","" +"SchemaExtensions","GetMgSchemaExtension_Get.g.cs","v1.0","Get-MgSchemaExtension","GET","/schemaExtensions/{param}","matched","Get-MgSchemaExtension" +"SchemaExtensions","GetMgSchemaExtension_List.g.cs","v1.0","Get-MgSchemaExtension","GET","/schemaExtensions","matched","Get-MgSchemaExtension" +"SchemaExtensions","GetMgSchemaExtension.g.cs","v1.0","Get-MgSchemaExtension","","","dispatcher","" +"SchemaExtensions","GetMgSchemaExtensionCount.g.cs","v1.0","Get-MgSchemaExtensionCount","GET","/schemaExtensions/$count","matched","Get-MgSchemaExtensionCount" +"SchemaExtensions","NewMgSchemaExtension.g.cs","v1.0","New-MgSchemaExtension","POST","/schemaExtensions","matched","New-MgSchemaExtension" +"SchemaExtensions","RemoveMgSchemaExtension.g.cs","v1.0","Remove-MgSchemaExtension","DELETE","/schemaExtensions/{param}","matched","Remove-MgSchemaExtension" +"SchemaExtensions","UpdateMgSchemaExtension.g.cs","v1.0","Update-MgSchemaExtension","PATCH","/schemaExtensions/{param}","matched","Update-MgSchemaExtension" +"Search","GetMgExternal.g.cs","v1.0","Get-MgExternal","GET","/external","matched","Get-MgExternal" +"Search","GetMgExternalConnection_Get.g.cs","v1.0","Get-MgExternalConnection","GET","/external/connections/{param}","matched","Get-MgExternalConnection" +"Search","GetMgExternalConnection_List.g.cs","v1.0","Get-MgExternalConnection","GET","/external/connections","matched","Get-MgExternalConnection" +"Search","GetMgExternalConnection.g.cs","v1.0","Get-MgExternalConnection","","","dispatcher","" +"Search","GetMgExternalConnectionCount.g.cs","v1.0","Get-MgExternalConnectionCount","GET","/external/connections/$count","matched","Get-MgExternalConnectionCount" +"Search","GetMgExternalConnectionGroup_Get.g.cs","v1.0","Get-MgExternalConnectionGroup","GET","/external/connections/{param}/groups/{param}","matched","Get-MgExternalConnectionGroup" +"Search","GetMgExternalConnectionGroup_List.g.cs","v1.0","Get-MgExternalConnectionGroup","GET","/external/connections/{param}/groups","matched","Get-MgExternalConnectionGroup" +"Search","GetMgExternalConnectionGroup.g.cs","v1.0","Get-MgExternalConnectionGroup","","","dispatcher","" +"Search","GetMgExternalConnectionGroupCount.g.cs","v1.0","Get-MgExternalConnectionGroupCount","GET","/external/connections/{param}/groups/$count","matched","Get-MgExternalConnectionGroupCount" +"Search","GetMgExternalConnectionGroupMember_Get.g.cs","v1.0","Get-MgExternalConnectionGroupMember","GET","/external/connections/{param}/groups/{param}/members/{param}","matched","Get-MgExternalConnectionGroupMember" +"Search","GetMgExternalConnectionGroupMember_List.g.cs","v1.0","Get-MgExternalConnectionGroupMember","GET","/external/connections/{param}/groups/{param}/members","matched","Get-MgExternalConnectionGroupMember" +"Search","GetMgExternalConnectionGroupMember.g.cs","v1.0","Get-MgExternalConnectionGroupMember","","","dispatcher","" +"Search","GetMgExternalConnectionGroupMemberCount.g.cs","v1.0","Get-MgExternalConnectionGroupMemberCount","GET","/external/connections/{param}/groups/{param}/members/$count","matched","Get-MgExternalConnectionGroupMemberCount" +"Search","GetMgExternalConnectionItem_Get.g.cs","v1.0","Get-MgExternalConnectionItem","GET","/external/connections/{param}/items/{param}","matched","Get-MgExternalConnectionItem" +"Search","GetMgExternalConnectionItem_List.g.cs","v1.0","Get-MgExternalConnectionItem","GET","/external/connections/{param}/items","matched","Get-MgExternalConnectionItem" +"Search","GetMgExternalConnectionItem.g.cs","v1.0","Get-MgExternalConnectionItem","","","dispatcher","" +"Search","GetMgExternalConnectionItemActivity_Get.g.cs","v1.0","Get-MgExternalConnectionItemActivity","GET","/external/connections/{param}/items/{param}/activities/{param}","matched","Get-MgExternalConnectionItemActivity" +"Search","GetMgExternalConnectionItemActivity_List.g.cs","v1.0","Get-MgExternalConnectionItemActivity","GET","/external/connections/{param}/items/{param}/activities","matched","Get-MgExternalConnectionItemActivity" +"Search","GetMgExternalConnectionItemActivity.g.cs","v1.0","Get-MgExternalConnectionItemActivity","","","dispatcher","" +"Search","GetMgExternalConnectionItemActivityCount.g.cs","v1.0","Get-MgExternalConnectionItemActivityCount","GET","/external/connections/{param}/items/{param}/activities/$count","matched","Get-MgExternalConnectionItemActivityCount" +"Search","GetMgExternalConnectionItemActivityPerformedBy.g.cs","v1.0","Get-MgExternalConnectionItemActivityPerformedBy","GET","/external/connections/{param}/items/{param}/activities/{param}/performedBy","matched","Get-MgExternalConnectionItemActivityPerformedBy" +"Search","GetMgExternalConnectionItemCount.g.cs","v1.0","Get-MgExternalConnectionItemCount","GET","/external/connections/{param}/items/$count","matched","Get-MgExternalConnectionItemCount" +"Search","GetMgExternalConnectionOperation_Get.g.cs","v1.0","Get-MgExternalConnectionOperation","GET","/external/connections/{param}/operations/{param}","matched","Get-MgExternalConnectionOperation" +"Search","GetMgExternalConnectionOperation_List.g.cs","v1.0","Get-MgExternalConnectionOperation","GET","/external/connections/{param}/operations","matched","Get-MgExternalConnectionOperation" +"Search","GetMgExternalConnectionOperation.g.cs","v1.0","Get-MgExternalConnectionOperation","","","dispatcher","" +"Search","GetMgExternalConnectionOperationCount.g.cs","v1.0","Get-MgExternalConnectionOperationCount","GET","/external/connections/{param}/operations/$count","matched","Get-MgExternalConnectionOperationCount" +"Search","GetMgExternalConnectionSchema.g.cs","v1.0","Get-MgExternalConnectionSchema","GET","/external/connections/{param}/schema","matched","Get-MgExternalConnectionSchema" +"Search","GetMgSearch.g.cs","v1.0","Get-MgSearch","GET","/search","matched","Get-MgSearchEntity" +"Search","GetMgSearchAcronym_Get.g.cs","v1.0","Get-MgSearchAcronym","GET","/search/acronyms/{param}","matched","Get-MgSearchAcronym" +"Search","GetMgSearchAcronym_List.g.cs","v1.0","Get-MgSearchAcronym","GET","/search/acronyms","matched","Get-MgSearchAcronym" +"Search","GetMgSearchAcronym.g.cs","v1.0","Get-MgSearchAcronym","","","dispatcher","" +"Search","GetMgSearchAcronymCount.g.cs","v1.0","Get-MgSearchAcronymCount","GET","/search/acronyms/$count","matched","Get-MgSearchAcronymCount" +"Search","GetMgSearchBookmark_Get.g.cs","v1.0","Get-MgSearchBookmark","GET","/search/bookmarks/{param}","matched","Get-MgSearchBookmark" +"Search","GetMgSearchBookmark_List.g.cs","v1.0","Get-MgSearchBookmark","GET","/search/bookmarks","matched","Get-MgSearchBookmark" +"Search","GetMgSearchBookmark.g.cs","v1.0","Get-MgSearchBookmark","","","dispatcher","" +"Search","GetMgSearchBookmarkCount.g.cs","v1.0","Get-MgSearchBookmarkCount","GET","/search/bookmarks/$count","matched","Get-MgSearchBookmarkCount" +"Search","GetMgSearchQna_Get.g.cs","v1.0","Get-MgSearchQna","GET","/search/qnas/{param}","matched","Get-MgSearchQna" +"Search","GetMgSearchQna_List.g.cs","v1.0","Get-MgSearchQna","GET","/search/qnas","matched","Get-MgSearchQna" +"Search","GetMgSearchQna.g.cs","v1.0","Get-MgSearchQna","","","dispatcher","" +"Search","GetMgSearchQnaCount.g.cs","v1.0","Get-MgSearchQnaCount","GET","/search/qnas/$count","matched","Get-MgSearchQnaCount" +"Search","InvokeMgExternalConnectionItemAddActivities.g.cs","v1.0","Invoke-MgExternalConnectionItemAddActivities","POST","","cast","" +"Search","InvokeMgSearchQuery.g.cs","v1.0","Invoke-MgSearchQuery","POST","/search/query","mismatch","Invoke-MgQuerySearch" +"Search","NewMgExternalConnection.g.cs","v1.0","New-MgExternalConnection","POST","/external/connections","matched","New-MgExternalConnection" +"Search","NewMgExternalConnectionGroup.g.cs","v1.0","New-MgExternalConnectionGroup","POST","/external/connections/{param}/groups","matched","New-MgExternalConnectionGroup" +"Search","NewMgExternalConnectionGroupMember.g.cs","v1.0","New-MgExternalConnectionGroupMember","POST","/external/connections/{param}/groups/{param}/members","matched","New-MgExternalConnectionGroupMember" +"Search","NewMgExternalConnectionItem.g.cs","v1.0","New-MgExternalConnectionItem","POST","/external/connections/{param}/items","matched","New-MgExternalConnectionItem" +"Search","NewMgExternalConnectionItemActivity.g.cs","v1.0","New-MgExternalConnectionItemActivity","POST","/external/connections/{param}/items/{param}/activities","matched","New-MgExternalConnectionItemActivity" +"Search","NewMgExternalConnectionOperation.g.cs","v1.0","New-MgExternalConnectionOperation","POST","/external/connections/{param}/operations","matched","New-MgExternalConnectionOperation" +"Search","NewMgSearchAcronym.g.cs","v1.0","New-MgSearchAcronym","POST","/search/acronyms","matched","New-MgSearchAcronym" +"Search","NewMgSearchBookmark.g.cs","v1.0","New-MgSearchBookmark","POST","/search/bookmarks","matched","New-MgSearchBookmark" +"Search","NewMgSearchQna.g.cs","v1.0","New-MgSearchQna","POST","/search/qnas","matched","New-MgSearchQna" +"Search","RemoveMgExternalConnection.g.cs","v1.0","Remove-MgExternalConnection","DELETE","/external/connections/{param}","matched","Remove-MgExternalConnection" +"Search","RemoveMgExternalConnectionGroup.g.cs","v1.0","Remove-MgExternalConnectionGroup","DELETE","/external/connections/{param}/groups/{param}","matched","Remove-MgExternalConnectionGroup" +"Search","RemoveMgExternalConnectionGroupMember.g.cs","v1.0","Remove-MgExternalConnectionGroupMember","DELETE","/external/connections/{param}/groups/{param}/members/{param}","matched","Remove-MgExternalConnectionGroupMember" +"Search","RemoveMgExternalConnectionItem.g.cs","v1.0","Remove-MgExternalConnectionItem","DELETE","/external/connections/{param}/items/{param}","matched","Remove-MgExternalConnectionItem" +"Search","RemoveMgExternalConnectionItemActivity.g.cs","v1.0","Remove-MgExternalConnectionItemActivity","DELETE","/external/connections/{param}/items/{param}/activities/{param}","matched","Remove-MgExternalConnectionItemActivity" +"Search","RemoveMgExternalConnectionOperation.g.cs","v1.0","Remove-MgExternalConnectionOperation","DELETE","/external/connections/{param}/operations/{param}","matched","Remove-MgExternalConnectionOperation" +"Search","RemoveMgSearchAcronym.g.cs","v1.0","Remove-MgSearchAcronym","DELETE","/search/acronyms/{param}","matched","Remove-MgSearchAcronym" +"Search","RemoveMgSearchBookmark.g.cs","v1.0","Remove-MgSearchBookmark","DELETE","/search/bookmarks/{param}","matched","Remove-MgSearchBookmark" +"Search","RemoveMgSearchQna.g.cs","v1.0","Remove-MgSearchQna","DELETE","/search/qnas/{param}","matched","Remove-MgSearchQna" +"Search","SetMgExternalConnectionItem.g.cs","v1.0","Set-MgExternalConnectionItem","PUT","/external/connections/{param}/items/{param}","matched","Set-MgExternalConnectionItem" +"Search","UpdateMgExternal.g.cs","v1.0","Update-MgExternal","PATCH","/external","matched","Update-MgExternal" +"Search","UpdateMgExternalConnection.g.cs","v1.0","Update-MgExternalConnection","PATCH","/external/connections/{param}","matched","Update-MgExternalConnection" +"Search","UpdateMgExternalConnectionGroup.g.cs","v1.0","Update-MgExternalConnectionGroup","PATCH","/external/connections/{param}/groups/{param}","matched","Update-MgExternalConnectionGroup" +"Search","UpdateMgExternalConnectionGroupMember.g.cs","v1.0","Update-MgExternalConnectionGroupMember","PATCH","/external/connections/{param}/groups/{param}/members/{param}","matched","Update-MgExternalConnectionGroupMember" +"Search","UpdateMgExternalConnectionItemActivity.g.cs","v1.0","Update-MgExternalConnectionItemActivity","PATCH","/external/connections/{param}/items/{param}/activities/{param}","matched","Update-MgExternalConnectionItemActivity" +"Search","UpdateMgExternalConnectionOperation.g.cs","v1.0","Update-MgExternalConnectionOperation","PATCH","/external/connections/{param}/operations/{param}","matched","Update-MgExternalConnectionOperation" +"Search","UpdateMgExternalConnectionSchema.g.cs","v1.0","Update-MgExternalConnectionSchema","PATCH","/external/connections/{param}/schema","matched","Update-MgExternalConnectionSchema" +"Search","UpdateMgSearch.g.cs","v1.0","Update-MgSearch","PATCH","/search","matched","Update-MgSearchEntity" +"Search","UpdateMgSearchAcronym.g.cs","v1.0","Update-MgSearchAcronym","PATCH","/search/acronyms/{param}","matched","Update-MgSearchAcronym" +"Search","UpdateMgSearchBookmark.g.cs","v1.0","Update-MgSearchBookmark","PATCH","/search/bookmarks/{param}","matched","Update-MgSearchBookmark" +"Search","UpdateMgSearchQna.g.cs","v1.0","Update-MgSearchQna","PATCH","/search/qnas/{param}","matched","Update-MgSearchQna" +"Security","GetMgSecurity.g.cs","v1.0","Get-MgSecurity","GET","/security","no-oracle","" +"Security","GetMgSecurityAlert_Get.g.cs","v1.0","Get-MgSecurityAlert","GET","/security/alerts/{param}","matched","Get-MgSecurityAlert" +"Security","GetMgSecurityAlert_List.g.cs","v1.0","Get-MgSecurityAlert","GET","/security/alerts","matched","Get-MgSecurityAlert" +"Security","GetMgSecurityAlert.g.cs","v1.0","Get-MgSecurityAlert","","","dispatcher","" +"Security","GetMgSecurityAlertCount.g.cs","v1.0","Get-MgSecurityAlertCount","GET","/security/alerts/$count","matched","Get-MgSecurityAlertCount" +"Security","GetMgSecurityAlertV2_Get.g.cs","v1.0","Get-MgSecurityAlertV2","GET","","cast","" +"Security","GetMgSecurityAlertV2_List.g.cs","v1.0","Get-MgSecurityAlertV2","GET","","cast","" +"Security","GetMgSecurityAlertV2.g.cs","v1.0","Get-MgSecurityAlertV2","","","dispatcher","" +"Security","GetMgSecurityAlertV2CommentCount.g.cs","v1.0","Get-MgSecurityAlertV2CommentCount","GET","","cast","" +"Security","GetMgSecurityAlertV2Count.g.cs","v1.0","Get-MgSecurityAlertV2Count","GET","","cast","" +"Security","GetMgSecurityAttackSimulation_Get.g.cs","v1.0","Get-MgSecurityAttackSimulation","GET","/security/attackSimulation/simulations/{param}","matched","Get-MgSecurityAttackSimulation" +"Security","GetMgSecurityAttackSimulation_List.g.cs","v1.0","Get-MgSecurityAttackSimulation","GET","/security/attackSimulation/simulations","matched","Get-MgSecurityAttackSimulation" +"Security","GetMgSecurityAttackSimulation.g.cs","v1.0","Get-MgSecurityAttackSimulation","","","dispatcher","" +"Security","GetMgSecurityAttackSimulationAutomation_Get.g.cs","v1.0","Get-MgSecurityAttackSimulationAutomation","GET","/security/attackSimulation/simulationAutomations/{param}","matched","Get-MgSecurityAttackSimulationAutomation" +"Security","GetMgSecurityAttackSimulationAutomation_List.g.cs","v1.0","Get-MgSecurityAttackSimulationAutomation","GET","/security/attackSimulation/simulationAutomations","matched","Get-MgSecurityAttackSimulationAutomation" +"Security","GetMgSecurityAttackSimulationAutomation.g.cs","v1.0","Get-MgSecurityAttackSimulationAutomation","","","dispatcher","" +"Security","GetMgSecurityAttackSimulationAutomationCount.g.cs","v1.0","Get-MgSecurityAttackSimulationAutomationCount","GET","/security/attackSimulation/simulationAutomations/$count","matched","Get-MgSecurityAttackSimulationAutomationCount" +"Security","GetMgSecurityAttackSimulationAutomationRun_Get.g.cs","v1.0","Get-MgSecurityAttackSimulationAutomationRun","GET","/security/attackSimulation/simulationAutomations/{param}/runs/{param}","matched","Get-MgSecurityAttackSimulationAutomationRun" +"Security","GetMgSecurityAttackSimulationAutomationRun_List.g.cs","v1.0","Get-MgSecurityAttackSimulationAutomationRun","GET","/security/attackSimulation/simulationAutomations/{param}/runs","matched","Get-MgSecurityAttackSimulationAutomationRun" +"Security","GetMgSecurityAttackSimulationAutomationRun.g.cs","v1.0","Get-MgSecurityAttackSimulationAutomationRun","","","dispatcher","" +"Security","GetMgSecurityAttackSimulationAutomationRunCount.g.cs","v1.0","Get-MgSecurityAttackSimulationAutomationRunCount","GET","/security/attackSimulation/simulationAutomations/{param}/runs/$count","matched","Get-MgSecurityAttackSimulationAutomationRunCount" +"Security","GetMgSecurityAttackSimulationCount.g.cs","v1.0","Get-MgSecurityAttackSimulationCount","GET","/security/attackSimulation/simulations/$count","matched","Get-MgSecurityAttackSimulationCount" +"Security","GetMgSecurityAttackSimulationEndUserNotification_Get.g.cs","v1.0","Get-MgSecurityAttackSimulationEndUserNotification","GET","/security/attackSimulation/endUserNotifications/{param}","matched","Get-MgSecurityAttackSimulationEndUserNotification" +"Security","GetMgSecurityAttackSimulationEndUserNotification_List.g.cs","v1.0","Get-MgSecurityAttackSimulationEndUserNotification","GET","/security/attackSimulation/endUserNotifications","matched","Get-MgSecurityAttackSimulationEndUserNotification" +"Security","GetMgSecurityAttackSimulationEndUserNotification.g.cs","v1.0","Get-MgSecurityAttackSimulationEndUserNotification","","","dispatcher","" +"Security","GetMgSecurityAttackSimulationEndUserNotificationCount.g.cs","v1.0","Get-MgSecurityAttackSimulationEndUserNotificationCount","GET","/security/attackSimulation/endUserNotifications/$count","matched","Get-MgSecurityAttackSimulationEndUserNotificationCount" +"Security","GetMgSecurityAttackSimulationEndUserNotificationDetail_Get.g.cs","v1.0","Get-MgSecurityAttackSimulationEndUserNotificationDetail","GET","/security/attackSimulation/endUserNotifications/{param}/details/{param}","matched","Get-MgSecurityAttackSimulationEndUserNotificationDetail" +"Security","GetMgSecurityAttackSimulationEndUserNotificationDetail_List.g.cs","v1.0","Get-MgSecurityAttackSimulationEndUserNotificationDetail","GET","/security/attackSimulation/endUserNotifications/{param}/details","matched","Get-MgSecurityAttackSimulationEndUserNotificationDetail" +"Security","GetMgSecurityAttackSimulationEndUserNotificationDetail.g.cs","v1.0","Get-MgSecurityAttackSimulationEndUserNotificationDetail","","","dispatcher","" +"Security","GetMgSecurityAttackSimulationEndUserNotificationDetailCount.g.cs","v1.0","Get-MgSecurityAttackSimulationEndUserNotificationDetailCount","GET","/security/attackSimulation/endUserNotifications/{param}/details/$count","matched","Get-MgSecurityAttackSimulationEndUserNotificationDetailCount" +"Security","GetMgSecurityAttackSimulationLandingPage_Get.g.cs","v1.0","Get-MgSecurityAttackSimulationLandingPage","GET","/security/attackSimulation/landingPages/{param}","matched","Get-MgSecurityAttackSimulationLandingPage" +"Security","GetMgSecurityAttackSimulationLandingPage_List.g.cs","v1.0","Get-MgSecurityAttackSimulationLandingPage","GET","/security/attackSimulation/landingPages","matched","Get-MgSecurityAttackSimulationLandingPage" +"Security","GetMgSecurityAttackSimulationLandingPage.g.cs","v1.0","Get-MgSecurityAttackSimulationLandingPage","","","dispatcher","" +"Security","GetMgSecurityAttackSimulationLandingPageCount.g.cs","v1.0","Get-MgSecurityAttackSimulationLandingPageCount","GET","/security/attackSimulation/landingPages/$count","matched","Get-MgSecurityAttackSimulationLandingPageCount" +"Security","GetMgSecurityAttackSimulationLandingPageDetail_Get.g.cs","v1.0","Get-MgSecurityAttackSimulationLandingPageDetail","GET","/security/attackSimulation/landingPages/{param}/details/{param}","matched","Get-MgSecurityAttackSimulationLandingPageDetail" +"Security","GetMgSecurityAttackSimulationLandingPageDetail_List.g.cs","v1.0","Get-MgSecurityAttackSimulationLandingPageDetail","GET","/security/attackSimulation/landingPages/{param}/details","matched","Get-MgSecurityAttackSimulationLandingPageDetail" +"Security","GetMgSecurityAttackSimulationLandingPageDetail.g.cs","v1.0","Get-MgSecurityAttackSimulationLandingPageDetail","","","dispatcher","" +"Security","GetMgSecurityAttackSimulationLandingPageDetailCount.g.cs","v1.0","Get-MgSecurityAttackSimulationLandingPageDetailCount","GET","/security/attackSimulation/landingPages/{param}/details/$count","matched","Get-MgSecurityAttackSimulationLandingPageDetailCount" +"Security","GetMgSecurityAttackSimulationLoginPage_Get.g.cs","v1.0","Get-MgSecurityAttackSimulationLoginPage","GET","/security/attackSimulation/loginPages/{param}","matched","Get-MgSecurityAttackSimulationLoginPage" +"Security","GetMgSecurityAttackSimulationLoginPage_List.g.cs","v1.0","Get-MgSecurityAttackSimulationLoginPage","GET","/security/attackSimulation/loginPages","matched","Get-MgSecurityAttackSimulationLoginPage" +"Security","GetMgSecurityAttackSimulationLoginPage.g.cs","v1.0","Get-MgSecurityAttackSimulationLoginPage","","","dispatcher","" +"Security","GetMgSecurityAttackSimulationLoginPageCount.g.cs","v1.0","Get-MgSecurityAttackSimulationLoginPageCount","GET","/security/attackSimulation/loginPages/$count","matched","Get-MgSecurityAttackSimulationLoginPageCount" +"Security","GetMgSecurityAttackSimulationOperation_Get.g.cs","v1.0","Get-MgSecurityAttackSimulationOperation","GET","/security/attackSimulation/operations/{param}","matched","Get-MgSecurityAttackSimulationOperation" +"Security","GetMgSecurityAttackSimulationOperation_List.g.cs","v1.0","Get-MgSecurityAttackSimulationOperation","GET","/security/attackSimulation/operations","matched","Get-MgSecurityAttackSimulationOperation" +"Security","GetMgSecurityAttackSimulationOperation.g.cs","v1.0","Get-MgSecurityAttackSimulationOperation","","","dispatcher","" +"Security","GetMgSecurityAttackSimulationOperationCount.g.cs","v1.0","Get-MgSecurityAttackSimulationOperationCount","GET","/security/attackSimulation/operations/$count","matched","Get-MgSecurityAttackSimulationOperationCount" +"Security","GetMgSecurityAttackSimulationPayload_Get.g.cs","v1.0","Get-MgSecurityAttackSimulationPayload","GET","/security/attackSimulation/payloads/{param}","matched","Get-MgSecurityAttackSimulationPayload" +"Security","GetMgSecurityAttackSimulationPayload_List.g.cs","v1.0","Get-MgSecurityAttackSimulationPayload","GET","/security/attackSimulation/payloads","matched","Get-MgSecurityAttackSimulationPayload" +"Security","GetMgSecurityAttackSimulationPayload.g.cs","v1.0","Get-MgSecurityAttackSimulationPayload","","","dispatcher","" +"Security","GetMgSecurityAttackSimulationPayloadCount.g.cs","v1.0","Get-MgSecurityAttackSimulationPayloadCount","GET","/security/attackSimulation/payloads/$count","matched","Get-MgSecurityAttackSimulationPayloadCount" +"Security","GetMgSecurityAttackSimulationTraining_Get.g.cs","v1.0","Get-MgSecurityAttackSimulationTraining","GET","/security/attackSimulation/trainings/{param}","matched","Get-MgSecurityAttackSimulationTraining" +"Security","GetMgSecurityAttackSimulationTraining_List.g.cs","v1.0","Get-MgSecurityAttackSimulationTraining","GET","/security/attackSimulation/trainings","matched","Get-MgSecurityAttackSimulationTraining" +"Security","GetMgSecurityAttackSimulationTraining.g.cs","v1.0","Get-MgSecurityAttackSimulationTraining","","","dispatcher","" +"Security","GetMgSecurityAttackSimulationTrainingCount.g.cs","v1.0","Get-MgSecurityAttackSimulationTrainingCount","GET","/security/attackSimulation/trainings/$count","matched","Get-MgSecurityAttackSimulationTrainingCount" +"Security","GetMgSecurityAttackSimulationTrainingLanguageDetail_Get.g.cs","v1.0","Get-MgSecurityAttackSimulationTrainingLanguageDetail","GET","/security/attackSimulation/trainings/{param}/languageDetails/{param}","matched","Get-MgSecurityAttackSimulationTrainingLanguageDetail" +"Security","GetMgSecurityAttackSimulationTrainingLanguageDetail_List.g.cs","v1.0","Get-MgSecurityAttackSimulationTrainingLanguageDetail","GET","/security/attackSimulation/trainings/{param}/languageDetails","matched","Get-MgSecurityAttackSimulationTrainingLanguageDetail" +"Security","GetMgSecurityAttackSimulationTrainingLanguageDetail.g.cs","v1.0","Get-MgSecurityAttackSimulationTrainingLanguageDetail","","","dispatcher","" +"Security","GetMgSecurityAttackSimulationTrainingLanguageDetailCount.g.cs","v1.0","Get-MgSecurityAttackSimulationTrainingLanguageDetailCount","GET","/security/attackSimulation/trainings/{param}/languageDetails/$count","matched","Get-MgSecurityAttackSimulationTrainingLanguageDetailCount" +"Security","GetMgSecurityAuditLog.g.cs","v1.0","Get-MgSecurityAuditLog","GET","/security/auditLog","matched","Get-MgSecurityAuditLog" +"Security","GetMgSecurityAuditLogQuery_Get.g.cs","v1.0","Get-MgSecurityAuditLogQuery","GET","/security/auditLog/queries/{param}","matched","Get-MgSecurityAuditLogQuery" +"Security","GetMgSecurityAuditLogQuery_List.g.cs","v1.0","Get-MgSecurityAuditLogQuery","GET","/security/auditLog/queries","matched","Get-MgSecurityAuditLogQuery" +"Security","GetMgSecurityAuditLogQuery.g.cs","v1.0","Get-MgSecurityAuditLogQuery","","","dispatcher","" +"Security","GetMgSecurityAuditLogQueryCount.g.cs","v1.0","Get-MgSecurityAuditLogQueryCount","GET","/security/auditLog/queries/$count","matched","Get-MgSecurityAuditLogQueryCount" +"Security","GetMgSecurityAuditLogQueryRecord_Get.g.cs","v1.0","Get-MgSecurityAuditLogQueryRecord","GET","/security/auditLog/queries/{param}/records/{param}","matched","Get-MgSecurityAuditLogQueryRecord" +"Security","GetMgSecurityAuditLogQueryRecord_List.g.cs","v1.0","Get-MgSecurityAuditLogQueryRecord","GET","/security/auditLog/queries/{param}/records","matched","Get-MgSecurityAuditLogQueryRecord" +"Security","GetMgSecurityAuditLogQueryRecord.g.cs","v1.0","Get-MgSecurityAuditLogQueryRecord","","","dispatcher","" +"Security","GetMgSecurityAuditLogQueryRecordCount.g.cs","v1.0","Get-MgSecurityAuditLogQueryRecordCount","GET","/security/auditLog/queries/{param}/records/$count","matched","Get-MgSecurityAuditLogQueryRecordCount" +"Security","GetMgSecurityCase.g.cs","v1.0","Get-MgSecurityCase","GET","/security/cases","matched","Get-MgSecurityCase" +"Security","GetMgSecurityCaseEdiscoveryCase_Get.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCase","GET","/security/cases/ediscoveryCases/{param}","matched","Get-MgSecurityCaseEdiscoveryCase" +"Security","GetMgSecurityCaseEdiscoveryCase_List.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCase","GET","/security/cases/ediscoveryCases","matched","Get-MgSecurityCaseEdiscoveryCase" +"Security","GetMgSecurityCaseEdiscoveryCase.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCase","","","dispatcher","" +"Security","GetMgSecurityCaseEdiscoveryCaseCount.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseCount","GET","/security/cases/ediscoveryCases/$count","matched","Get-MgSecurityCaseEdiscoveryCaseCount" +"Security","GetMgSecurityCaseEdiscoveryCaseCustodian_Get.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseCustodian","GET","/security/cases/ediscoveryCases/{param}/custodians/{param}","matched","Get-MgSecurityCaseEdiscoveryCaseCustodian" +"Security","GetMgSecurityCaseEdiscoveryCaseCustodian_List.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseCustodian","GET","/security/cases/ediscoveryCases/{param}/custodians","matched","Get-MgSecurityCaseEdiscoveryCaseCustodian" +"Security","GetMgSecurityCaseEdiscoveryCaseCustodian.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseCustodian","","","dispatcher","" +"Security","GetMgSecurityCaseEdiscoveryCaseCustodianCount.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseCustodianCount","GET","/security/cases/ediscoveryCases/{param}/custodians/$count","matched","Get-MgSecurityCaseEdiscoveryCaseCustodianCount" +"Security","GetMgSecurityCaseEdiscoveryCaseCustodianLastIndexOperation.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseCustodianLastIndexOperation","GET","/security/cases/ediscoveryCases/{param}/custodians/{param}/lastIndexOperation","matched","Get-MgSecurityCaseEdiscoveryCaseCustodianLastIndexOperation" +"Security","GetMgSecurityCaseEdiscoveryCaseCustodianSiteSource_Get.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseCustodianSiteSource","GET","/security/cases/ediscoveryCases/{param}/custodians/{param}/siteSources/{param}","matched","Get-MgSecurityCaseEdiscoveryCaseCustodianSiteSource" +"Security","GetMgSecurityCaseEdiscoveryCaseCustodianSiteSource_List.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseCustodianSiteSource","GET","/security/cases/ediscoveryCases/{param}/custodians/{param}/siteSources","matched","Get-MgSecurityCaseEdiscoveryCaseCustodianSiteSource" +"Security","GetMgSecurityCaseEdiscoveryCaseCustodianSiteSource.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseCustodianSiteSource","","","dispatcher","" +"Security","GetMgSecurityCaseEdiscoveryCaseCustodianSiteSourceCount.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseCustodianSiteSourceCount","GET","/security/cases/ediscoveryCases/{param}/custodians/{param}/siteSources/$count","matched","Get-MgSecurityCaseEdiscoveryCaseCustodianSiteSourceCount" +"Security","GetMgSecurityCaseEdiscoveryCaseCustodianSiteSourceSite.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseCustodianSiteSourceSite","GET","/security/cases/ediscoveryCases/{param}/custodians/{param}/siteSources/{param}/site","matched","Get-MgSecurityCaseEdiscoveryCaseCustodianSiteSourceSite" +"Security","GetMgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource_Get.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource","GET","/security/cases/ediscoveryCases/{param}/custodians/{param}/unifiedGroupSources/{param}","matched","Get-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource" +"Security","GetMgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource_List.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource","GET","/security/cases/ediscoveryCases/{param}/custodians/{param}/unifiedGroupSources","matched","Get-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource" +"Security","GetMgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource","","","dispatcher","" +"Security","GetMgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSourceCount.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSourceCount","GET","/security/cases/ediscoveryCases/{param}/custodians/{param}/unifiedGroupSources/$count","matched","Get-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSourceCount" +"Security","GetMgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSourceGroup.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSourceGroup","GET","/security/cases/ediscoveryCases/{param}/custodians/{param}/unifiedGroupSources/{param}/group","matched","Get-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSourceGroup" +"Security","GetMgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSourceGroupServiceProvisioningError.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSourceGroupServiceProvisioningError","GET","/security/cases/ediscoveryCases/{param}/custodians/{param}/unifiedGroupSources/{param}/group/serviceProvisioningErrors","matched","Get-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSourceGroupServiceProvisioningError" +"Security","GetMgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSourceGroupServiceProvisioningErrorCount.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSourceGroupServiceProvisioningErrorCount","GET","/security/cases/ediscoveryCases/{param}/custodians/{param}/unifiedGroupSources/{param}/group/serviceProvisioningErrors/$count","matched","Get-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSourceGroupServiceProvisioningErrorCount" +"Security","GetMgSecurityCaseEdiscoveryCaseCustodianUserSource_Get.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseCustodianUserSource","GET","/security/cases/ediscoveryCases/{param}/custodians/{param}/userSources/{param}","matched","Get-MgSecurityCaseEdiscoveryCaseCustodianUserSource" +"Security","GetMgSecurityCaseEdiscoveryCaseCustodianUserSource_List.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseCustodianUserSource","GET","/security/cases/ediscoveryCases/{param}/custodians/{param}/userSources","matched","Get-MgSecurityCaseEdiscoveryCaseCustodianUserSource" +"Security","GetMgSecurityCaseEdiscoveryCaseCustodianUserSource.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseCustodianUserSource","","","dispatcher","" +"Security","GetMgSecurityCaseEdiscoveryCaseCustodianUserSourceCount.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseCustodianUserSourceCount","GET","/security/cases/ediscoveryCases/{param}/custodians/{param}/userSources/$count","matched","Get-MgSecurityCaseEdiscoveryCaseCustodianUserSourceCount" +"Security","GetMgSecurityCaseEdiscoveryCaseMember_Get.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseMember","GET","/security/cases/ediscoveryCases/{param}/caseMembers/{param}","matched","Get-MgSecurityCaseEdiscoveryCaseMember" +"Security","GetMgSecurityCaseEdiscoveryCaseMember_List.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseMember","GET","/security/cases/ediscoveryCases/{param}/caseMembers","matched","Get-MgSecurityCaseEdiscoveryCaseMember" +"Security","GetMgSecurityCaseEdiscoveryCaseMember.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseMember","","","dispatcher","" +"Security","GetMgSecurityCaseEdiscoveryCaseMemberCount.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseMemberCount","GET","/security/cases/ediscoveryCases/{param}/caseMembers/$count","matched","Get-MgSecurityCaseEdiscoveryCaseMemberCount" +"Security","GetMgSecurityCaseEdiscoveryCaseNoncustodialDataSource_Get.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource","GET","/security/cases/ediscoveryCases/{param}/noncustodialDataSources/{param}","matched","Get-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource" +"Security","GetMgSecurityCaseEdiscoveryCaseNoncustodialDataSource_List.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource","GET","/security/cases/ediscoveryCases/{param}/noncustodialDataSources","matched","Get-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource" +"Security","GetMgSecurityCaseEdiscoveryCaseNoncustodialDataSource.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource","","","dispatcher","" +"Security","GetMgSecurityCaseEdiscoveryCaseNoncustodialDataSourceCount.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceCount","GET","/security/cases/ediscoveryCases/{param}/noncustodialDataSources/$count","matched","Get-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceCount" +"Security","GetMgSecurityCaseEdiscoveryCaseNoncustodialDataSourceDataSource.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceDataSource","GET","/security/cases/ediscoveryCases/{param}/noncustodialDataSources/{param}/dataSource","no-oracle","" +"Security","GetMgSecurityCaseEdiscoveryCaseNoncustodialDataSourceLastIndexOperation.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceLastIndexOperation","GET","/security/cases/ediscoveryCases/{param}/noncustodialDataSources/{param}/lastIndexOperation","matched","Get-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceLastIndexOperation" +"Security","GetMgSecurityCaseEdiscoveryCaseOperation_Get.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseOperation","GET","/security/cases/ediscoveryCases/{param}/operations/{param}","matched","Get-MgSecurityCaseEdiscoveryCaseOperation" +"Security","GetMgSecurityCaseEdiscoveryCaseOperation_List.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseOperation","GET","/security/cases/ediscoveryCases/{param}/operations","matched","Get-MgSecurityCaseEdiscoveryCaseOperation" +"Security","GetMgSecurityCaseEdiscoveryCaseOperation.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseOperation","","","dispatcher","" +"Security","GetMgSecurityCaseEdiscoveryCaseOperationCount.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseOperationCount","GET","/security/cases/ediscoveryCases/{param}/operations/$count","matched","Get-MgSecurityCaseEdiscoveryCaseOperationCount" +"Security","GetMgSecurityCaseEdiscoveryCaseReviewSet_Get.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseReviewSet","GET","/security/cases/ediscoveryCases/{param}/reviewSets/{param}","matched","Get-MgSecurityCaseEdiscoveryCaseReviewSet" +"Security","GetMgSecurityCaseEdiscoveryCaseReviewSet_List.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseReviewSet","GET","/security/cases/ediscoveryCases/{param}/reviewSets","matched","Get-MgSecurityCaseEdiscoveryCaseReviewSet" +"Security","GetMgSecurityCaseEdiscoveryCaseReviewSet.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseReviewSet","","","dispatcher","" +"Security","GetMgSecurityCaseEdiscoveryCaseReviewSetCount.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseReviewSetCount","GET","/security/cases/ediscoveryCases/{param}/reviewSets/$count","matched","Get-MgSecurityCaseEdiscoveryCaseReviewSetCount" +"Security","GetMgSecurityCaseEdiscoveryCaseReviewSetQuery_Get.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseReviewSetQuery","GET","/security/cases/ediscoveryCases/{param}/reviewSets/{param}/queries/{param}","matched","Get-MgSecurityCaseEdiscoveryCaseReviewSetQuery" +"Security","GetMgSecurityCaseEdiscoveryCaseReviewSetQuery_List.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseReviewSetQuery","GET","/security/cases/ediscoveryCases/{param}/reviewSets/{param}/queries","matched","Get-MgSecurityCaseEdiscoveryCaseReviewSetQuery" +"Security","GetMgSecurityCaseEdiscoveryCaseReviewSetQuery.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseReviewSetQuery","","","dispatcher","" +"Security","GetMgSecurityCaseEdiscoveryCaseReviewSetQueryCount.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseReviewSetQueryCount","GET","/security/cases/ediscoveryCases/{param}/reviewSets/{param}/queries/$count","matched","Get-MgSecurityCaseEdiscoveryCaseReviewSetQueryCount" +"Security","GetMgSecurityCaseEdiscoveryCaseSearch_Get.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseSearch","GET","/security/cases/ediscoveryCases/{param}/searches/{param}","matched","Get-MgSecurityCaseEdiscoveryCaseSearch" +"Security","GetMgSecurityCaseEdiscoveryCaseSearch_List.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseSearch","GET","/security/cases/ediscoveryCases/{param}/searches","matched","Get-MgSecurityCaseEdiscoveryCaseSearch" +"Security","GetMgSecurityCaseEdiscoveryCaseSearch.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseSearch","","","dispatcher","" +"Security","GetMgSecurityCaseEdiscoveryCaseSearchAdditionalSource_Get.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseSearchAdditionalSource","GET","/security/cases/ediscoveryCases/{param}/searches/{param}/additionalSources/{param}","matched","Get-MgSecurityCaseEdiscoveryCaseSearchAdditionalSource" +"Security","GetMgSecurityCaseEdiscoveryCaseSearchAdditionalSource_List.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseSearchAdditionalSource","GET","/security/cases/ediscoveryCases/{param}/searches/{param}/additionalSources","matched","Get-MgSecurityCaseEdiscoveryCaseSearchAdditionalSource" +"Security","GetMgSecurityCaseEdiscoveryCaseSearchAdditionalSource.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseSearchAdditionalSource","","","dispatcher","" +"Security","GetMgSecurityCaseEdiscoveryCaseSearchAdditionalSourceCount.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseSearchAdditionalSourceCount","GET","/security/cases/ediscoveryCases/{param}/searches/{param}/additionalSources/$count","matched","Get-MgSecurityCaseEdiscoveryCaseSearchAdditionalSourceCount" +"Security","GetMgSecurityCaseEdiscoveryCaseSearchAddToReviewSetOperation.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseSearchAddToReviewSetOperation","GET","/security/cases/ediscoveryCases/{param}/searches/{param}/addToReviewSetOperation","matched","Get-MgSecurityCaseEdiscoveryCaseSearchAddToReviewSetOperation" +"Security","GetMgSecurityCaseEdiscoveryCaseSearchCount.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseSearchCount","GET","/security/cases/ediscoveryCases/{param}/searches/$count","matched","Get-MgSecurityCaseEdiscoveryCaseSearchCount" +"Security","GetMgSecurityCaseEdiscoveryCaseSearchCustodianSource_Get.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseSearchCustodianSource","GET","/security/cases/ediscoveryCases/{param}/searches/{param}/custodianSources/{param}","matched","Get-MgSecurityCaseEdiscoveryCaseSearchCustodianSource" +"Security","GetMgSecurityCaseEdiscoveryCaseSearchCustodianSource_List.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseSearchCustodianSource","GET","/security/cases/ediscoveryCases/{param}/searches/{param}/custodianSources","matched","Get-MgSecurityCaseEdiscoveryCaseSearchCustodianSource" +"Security","GetMgSecurityCaseEdiscoveryCaseSearchCustodianSource.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseSearchCustodianSource","","","dispatcher","" +"Security","GetMgSecurityCaseEdiscoveryCaseSearchCustodianSourceCount.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseSearchCustodianSourceCount","GET","/security/cases/ediscoveryCases/{param}/searches/{param}/custodianSources/$count","matched","Get-MgSecurityCaseEdiscoveryCaseSearchCustodianSourceCount" +"Security","GetMgSecurityCaseEdiscoveryCaseSearchLastEstimateStatisticsOperation.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseSearchLastEstimateStatisticsOperation","GET","/security/cases/ediscoveryCases/{param}/searches/{param}/lastEstimateStatisticsOperation","matched","Get-MgSecurityCaseEdiscoveryCaseSearchLastEstimateStatisticsOperation" +"Security","GetMgSecurityCaseEdiscoveryCaseSearchNoncustodialSource_Get.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseSearchNoncustodialSource","GET","/security/cases/ediscoveryCases/{param}/searches/{param}/noncustodialSources/{param}","matched","Get-MgSecurityCaseEdiscoveryCaseSearchNoncustodialSource" +"Security","GetMgSecurityCaseEdiscoveryCaseSearchNoncustodialSource_List.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseSearchNoncustodialSource","GET","/security/cases/ediscoveryCases/{param}/searches/{param}/noncustodialSources","matched","Get-MgSecurityCaseEdiscoveryCaseSearchNoncustodialSource" +"Security","GetMgSecurityCaseEdiscoveryCaseSearchNoncustodialSource.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseSearchNoncustodialSource","","","dispatcher","" +"Security","GetMgSecurityCaseEdiscoveryCaseSearchNoncustodialSourceCount.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseSearchNoncustodialSourceCount","GET","/security/cases/ediscoveryCases/{param}/searches/{param}/noncustodialSources/$count","matched","Get-MgSecurityCaseEdiscoveryCaseSearchNoncustodialSourceCount" +"Security","GetMgSecurityCaseEdiscoveryCaseSetting.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseSetting","GET","/security/cases/ediscoveryCases/{param}/settings","matched","Get-MgSecurityCaseEdiscoveryCaseSetting" +"Security","GetMgSecurityCaseEdiscoveryCaseTag_Get.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseTag","GET","/security/cases/ediscoveryCases/{param}/tags/{param}","matched","Get-MgSecurityCaseEdiscoveryCaseTag" +"Security","GetMgSecurityCaseEdiscoveryCaseTag_List.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseTag","GET","/security/cases/ediscoveryCases/{param}/tags","matched","Get-MgSecurityCaseEdiscoveryCaseTag" +"Security","GetMgSecurityCaseEdiscoveryCaseTag.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseTag","","","dispatcher","" +"Security","GetMgSecurityCaseEdiscoveryCaseTagAsHierarchy.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseTagAsHierarchy","GET","","cast","" +"Security","GetMgSecurityCaseEdiscoveryCaseTagChildTag_Get.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseTagChildTag","GET","/security/cases/ediscoveryCases/{param}/tags/{param}/childTags/{param}","matched","Get-MgSecurityCaseEdiscoveryCaseTagChildTag" +"Security","GetMgSecurityCaseEdiscoveryCaseTagChildTag_List.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseTagChildTag","GET","/security/cases/ediscoveryCases/{param}/tags/{param}/childTags","matched","Get-MgSecurityCaseEdiscoveryCaseTagChildTag" +"Security","GetMgSecurityCaseEdiscoveryCaseTagChildTag.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseTagChildTag","","","dispatcher","" +"Security","GetMgSecurityCaseEdiscoveryCaseTagChildTagCount.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseTagChildTagCount","GET","/security/cases/ediscoveryCases/{param}/tags/{param}/childTags/$count","matched","Get-MgSecurityCaseEdiscoveryCaseTagChildTagCount" +"Security","GetMgSecurityCaseEdiscoveryCaseTagCount.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseTagCount","GET","/security/cases/ediscoveryCases/{param}/tags/$count","matched","Get-MgSecurityCaseEdiscoveryCaseTagCount" +"Security","GetMgSecurityCaseEdiscoveryCaseTagParent.g.cs","v1.0","Get-MgSecurityCaseEdiscoveryCaseTagParent","GET","/security/cases/ediscoveryCases/{param}/tags/{param}/parent","matched","Get-MgSecurityCaseEdiscoveryCaseTagParent" +"Security","GetMgSecurityCollaboration.g.cs","v1.0","Get-MgSecurityCollaboration","GET","/security/collaboration","matched","Get-MgSecurityCollaboration" +"Security","GetMgSecurityCollaborationAnalyzedEmail_Get.g.cs","v1.0","Get-MgSecurityCollaborationAnalyzedEmail","GET","/security/collaboration/analyzedEmails/{param}","matched","Get-MgSecurityCollaborationAnalyzedEmail" +"Security","GetMgSecurityCollaborationAnalyzedEmail_List.g.cs","v1.0","Get-MgSecurityCollaborationAnalyzedEmail","GET","/security/collaboration/analyzedEmails","matched","Get-MgSecurityCollaborationAnalyzedEmail" +"Security","GetMgSecurityCollaborationAnalyzedEmail.g.cs","v1.0","Get-MgSecurityCollaborationAnalyzedEmail","","","dispatcher","" +"Security","GetMgSecurityCollaborationAnalyzedEmailCount.g.cs","v1.0","Get-MgSecurityCollaborationAnalyzedEmailCount","GET","/security/collaboration/analyzedEmails/$count","matched","Get-MgSecurityCollaborationAnalyzedEmailCount" +"Security","GetMgSecurityDataSecurityAndGovernance.g.cs","v1.0","Get-MgSecurityDataSecurityAndGovernance","GET","/security/dataSecurityAndGovernance","matched","Get-MgSecurityDataSecurityAndGovernance" +"Security","GetMgSecurityDataSecurityAndGovernanceProtectionScope.g.cs","v1.0","Get-MgSecurityDataSecurityAndGovernanceProtectionScope","GET","/security/dataSecurityAndGovernance/protectionScopes","matched","Get-MgSecurityDataSecurityAndGovernanceProtectionScope" +"Security","GetMgSecurityDataSecurityAndGovernanceSensitivityLabel_Get.g.cs","v1.0","Get-MgSecurityDataSecurityAndGovernanceSensitivityLabel","GET","/security/dataSecurityAndGovernance/sensitivityLabels/{param}","matched","Get-MgSecurityDataSecurityAndGovernanceSensitivityLabel" +"Security","GetMgSecurityDataSecurityAndGovernanceSensitivityLabel_List.g.cs","v1.0","Get-MgSecurityDataSecurityAndGovernanceSensitivityLabel","GET","/security/dataSecurityAndGovernance/sensitivityLabels","matched","Get-MgSecurityDataSecurityAndGovernanceSensitivityLabel" +"Security","GetMgSecurityDataSecurityAndGovernanceSensitivityLabel.g.cs","v1.0","Get-MgSecurityDataSecurityAndGovernanceSensitivityLabel","","","dispatcher","" +"Security","GetMgSecurityDataSecurityAndGovernanceSensitivityLabelComputeInheritanceWithLabelIdsWithLocaleWithContentFormats.g.cs","v1.0","Get-MgSecurityDataSecurityAndGovernanceSensitivityLabelComputeInheritanceWithLabelIdsWithLocaleWithContentFormats","","","parameterized-function","" +"Security","GetMgSecurityDataSecurityAndGovernanceSensitivityLabelCount.g.cs","v1.0","Get-MgSecurityDataSecurityAndGovernanceSensitivityLabelCount","GET","/security/dataSecurityAndGovernance/sensitivityLabels/$count","matched","Get-MgSecurityDataSecurityAndGovernanceSensitivityLabelCount" +"Security","GetMgSecurityDataSecurityAndGovernanceSensitivityLabelSublabel_Get.g.cs","v1.0","Get-MgSecurityDataSecurityAndGovernanceSensitivityLabelSublabel","GET","/security/dataSecurityAndGovernance/sensitivityLabels/{param}/sublabels/{param}","matched","Get-MgSecurityDataSecurityAndGovernanceSensitivityLabelSublabel" +"Security","GetMgSecurityDataSecurityAndGovernanceSensitivityLabelSublabel_List.g.cs","v1.0","Get-MgSecurityDataSecurityAndGovernanceSensitivityLabelSublabel","GET","/security/dataSecurityAndGovernance/sensitivityLabels/{param}/sublabels","matched","Get-MgSecurityDataSecurityAndGovernanceSensitivityLabelSublabel" +"Security","GetMgSecurityDataSecurityAndGovernanceSensitivityLabelSublabel.g.cs","v1.0","Get-MgSecurityDataSecurityAndGovernanceSensitivityLabelSublabel","","","dispatcher","" +"Security","GetMgSecurityDataSecurityAndGovernanceSensitivityLabelSublabelComputeInheritanceWithLabelIdsWithLocaleWithContentFormats.g.cs","v1.0","Get-MgSecurityDataSecurityAndGovernanceSensitivityLabelSublabelComputeInheritanceWithLabelIdsWithLocaleWithContentFormats","","","parameterized-function","" +"Security","GetMgSecurityDataSecurityAndGovernanceSensitivityLabelSublabelCount.g.cs","v1.0","Get-MgSecurityDataSecurityAndGovernanceSensitivityLabelSublabelCount","GET","/security/dataSecurityAndGovernance/sensitivityLabels/{param}/sublabels/$count","matched","Get-MgSecurityDataSecurityAndGovernanceSensitivityLabelSublabelCount" +"Security","GetMgSecurityIdentity.g.cs","v1.0","Get-MgSecurityIdentity","GET","/security/identities","matched","Get-MgSecurityIdentity" +"Security","GetMgSecurityIdentityAccount_Get.g.cs","v1.0","Get-MgSecurityIdentityAccount","GET","/security/identities/identityAccounts/{param}","matched","Get-MgSecurityIdentityAccount" +"Security","GetMgSecurityIdentityAccount_List.g.cs","v1.0","Get-MgSecurityIdentityAccount","GET","/security/identities/identityAccounts","matched","Get-MgSecurityIdentityAccount" +"Security","GetMgSecurityIdentityAccount.g.cs","v1.0","Get-MgSecurityIdentityAccount","","","dispatcher","" +"Security","GetMgSecurityIdentityAccountCount.g.cs","v1.0","Get-MgSecurityIdentityAccountCount","GET","/security/identities/identityAccounts/$count","matched","Get-MgSecurityIdentityAccountCount" +"Security","GetMgSecurityIdentityHealthIssue_Get.g.cs","v1.0","Get-MgSecurityIdentityHealthIssue","GET","/security/identities/healthIssues/{param}","matched","Get-MgSecurityIdentityHealthIssue" +"Security","GetMgSecurityIdentityHealthIssue_List.g.cs","v1.0","Get-MgSecurityIdentityHealthIssue","GET","/security/identities/healthIssues","matched","Get-MgSecurityIdentityHealthIssue" +"Security","GetMgSecurityIdentityHealthIssue.g.cs","v1.0","Get-MgSecurityIdentityHealthIssue","","","dispatcher","" +"Security","GetMgSecurityIdentityHealthIssueCount.g.cs","v1.0","Get-MgSecurityIdentityHealthIssueCount","GET","/security/identities/healthIssues/$count","matched","Get-MgSecurityIdentityHealthIssueCount" +"Security","GetMgSecurityIdentitySensor_Get.g.cs","v1.0","Get-MgSecurityIdentitySensor","GET","/security/identities/sensors/{param}","matched","Get-MgSecurityIdentitySensor" +"Security","GetMgSecurityIdentitySensor_List.g.cs","v1.0","Get-MgSecurityIdentitySensor","GET","/security/identities/sensors","matched","Get-MgSecurityIdentitySensor" +"Security","GetMgSecurityIdentitySensor.g.cs","v1.0","Get-MgSecurityIdentitySensor","","","dispatcher","" +"Security","GetMgSecurityIdentitySensorCandidate_Get.g.cs","v1.0","Get-MgSecurityIdentitySensorCandidate","GET","/security/identities/sensorCandidates/{param}","matched","Get-MgSecurityIdentitySensorCandidate" +"Security","GetMgSecurityIdentitySensorCandidate_List.g.cs","v1.0","Get-MgSecurityIdentitySensorCandidate","GET","/security/identities/sensorCandidates","matched","Get-MgSecurityIdentitySensorCandidate" +"Security","GetMgSecurityIdentitySensorCandidate.g.cs","v1.0","Get-MgSecurityIdentitySensorCandidate","","","dispatcher","" +"Security","GetMgSecurityIdentitySensorCandidateActivationConfiguration.g.cs","v1.0","Get-MgSecurityIdentitySensorCandidateActivationConfiguration","GET","/security/identities/sensorCandidateActivationConfiguration","matched","Get-MgSecurityIdentitySensorCandidateActivationConfiguration" +"Security","GetMgSecurityIdentitySensorCandidateCount.g.cs","v1.0","Get-MgSecurityIdentitySensorCandidateCount","GET","/security/identities/sensorCandidates/$count","matched","Get-MgSecurityIdentitySensorCandidateCount" +"Security","GetMgSecurityIdentitySensorCount.g.cs","v1.0","Get-MgSecurityIdentitySensorCount","GET","/security/identities/sensors/$count","matched","Get-MgSecurityIdentitySensorCount" +"Security","GetMgSecurityIdentitySensorGetDeploymentAccessKey.g.cs","v1.0","Get-MgSecurityIdentitySensorGetDeploymentAccessKey","GET","","cast","" +"Security","GetMgSecurityIdentitySensorGetDeploymentPackageUri.g.cs","v1.0","Get-MgSecurityIdentitySensorGetDeploymentPackageUri","GET","","cast","" +"Security","GetMgSecurityIdentitySensorHealthIssue_Get.g.cs","v1.0","Get-MgSecurityIdentitySensorHealthIssue","GET","/security/identities/sensors/{param}/healthIssues/{param}","matched","Get-MgSecurityIdentitySensorHealthIssue" +"Security","GetMgSecurityIdentitySensorHealthIssue_List.g.cs","v1.0","Get-MgSecurityIdentitySensorHealthIssue","GET","/security/identities/sensors/{param}/healthIssues","matched","Get-MgSecurityIdentitySensorHealthIssue" +"Security","GetMgSecurityIdentitySensorHealthIssue.g.cs","v1.0","Get-MgSecurityIdentitySensorHealthIssue","","","dispatcher","" +"Security","GetMgSecurityIdentitySensorHealthIssueCount.g.cs","v1.0","Get-MgSecurityIdentitySensorHealthIssueCount","GET","/security/identities/sensors/{param}/healthIssues/$count","matched","Get-MgSecurityIdentitySensorHealthIssueCount" +"Security","GetMgSecurityIdentitySetting.g.cs","v1.0","Get-MgSecurityIdentitySetting","GET","/security/identities/settings","matched","Get-MgSecurityIdentitySetting" +"Security","GetMgSecurityIdentitySettingAutoAuditingConfiguration.g.cs","v1.0","Get-MgSecurityIdentitySettingAutoAuditingConfiguration","GET","/security/identities/settings/autoAuditingConfiguration","matched","Get-MgSecurityIdentitySettingAutoAuditingConfiguration" +"Security","GetMgSecurityIncident_Get.g.cs","v1.0","Get-MgSecurityIncident","GET","/security/incidents/{param}","matched","Get-MgSecurityIncident" +"Security","GetMgSecurityIncident_List.g.cs","v1.0","Get-MgSecurityIncident","GET","/security/incidents","matched","Get-MgSecurityIncident" +"Security","GetMgSecurityIncident.g.cs","v1.0","Get-MgSecurityIncident","","","dispatcher","" +"Security","GetMgSecurityIncidentAlert_Get.g.cs","v1.0","Get-MgSecurityIncidentAlert","GET","/security/incidents/{param}/alerts/{param}","matched","Get-MgSecurityIncidentAlert" +"Security","GetMgSecurityIncidentAlert_List.g.cs","v1.0","Get-MgSecurityIncidentAlert","GET","/security/incidents/{param}/alerts","matched","Get-MgSecurityIncidentAlert" +"Security","GetMgSecurityIncidentAlert.g.cs","v1.0","Get-MgSecurityIncidentAlert","","","dispatcher","" +"Security","GetMgSecurityIncidentAlertCommentCount.g.cs","v1.0","Get-MgSecurityIncidentAlertCommentCount","GET","/security/incidents/{param}/alerts/{param}/comments/$count","matched","Get-MgSecurityIncidentAlertCommentCount" +"Security","GetMgSecurityIncidentAlertCount.g.cs","v1.0","Get-MgSecurityIncidentAlertCount","GET","/security/incidents/{param}/alerts/$count","matched","Get-MgSecurityIncidentAlertCount" +"Security","GetMgSecurityIncidentCount.g.cs","v1.0","Get-MgSecurityIncidentCount","GET","/security/incidents/$count","matched","Get-MgSecurityIncidentCount" +"Security","GetMgSecurityLabel.g.cs","v1.0","Get-MgSecurityLabel","GET","/security/labels","matched","Get-MgSecurityLabel" +"Security","GetMgSecurityLabelAuthority_Get.g.cs","v1.0","Get-MgSecurityLabelAuthority","GET","/security/labels/authorities/{param}","matched","Get-MgSecurityLabelAuthority" +"Security","GetMgSecurityLabelAuthority_List.g.cs","v1.0","Get-MgSecurityLabelAuthority","GET","/security/labels/authorities","matched","Get-MgSecurityLabelAuthority" +"Security","GetMgSecurityLabelAuthority.g.cs","v1.0","Get-MgSecurityLabelAuthority","","","dispatcher","" +"Security","GetMgSecurityLabelAuthorityCount.g.cs","v1.0","Get-MgSecurityLabelAuthorityCount","GET","/security/labels/authorities/$count","matched","Get-MgSecurityLabelAuthorityCount" +"Security","GetMgSecurityLabelCategory_Get.g.cs","v1.0","Get-MgSecurityLabelCategory","GET","/security/labels/categories/{param}","matched","Get-MgSecurityLabelCategory" +"Security","GetMgSecurityLabelCategory_List.g.cs","v1.0","Get-MgSecurityLabelCategory","GET","/security/labels/categories","matched","Get-MgSecurityLabelCategory" +"Security","GetMgSecurityLabelCategory.g.cs","v1.0","Get-MgSecurityLabelCategory","","","dispatcher","" +"Security","GetMgSecurityLabelCategoryCount.g.cs","v1.0","Get-MgSecurityLabelCategoryCount","GET","/security/labels/categories/$count","matched","Get-MgSecurityLabelCategoryCount" +"Security","GetMgSecurityLabelCategorySubcategory_Get.g.cs","v1.0","Get-MgSecurityLabelCategorySubcategory","GET","/security/labels/categories/{param}/subcategories/{param}","matched","Get-MgSecurityLabelCategorySubcategory" +"Security","GetMgSecurityLabelCategorySubcategory_List.g.cs","v1.0","Get-MgSecurityLabelCategorySubcategory","GET","/security/labels/categories/{param}/subcategories","matched","Get-MgSecurityLabelCategorySubcategory" +"Security","GetMgSecurityLabelCategorySubcategory.g.cs","v1.0","Get-MgSecurityLabelCategorySubcategory","","","dispatcher","" +"Security","GetMgSecurityLabelCategorySubcategoryCount.g.cs","v1.0","Get-MgSecurityLabelCategorySubcategoryCount","GET","/security/labels/categories/{param}/subcategories/$count","matched","Get-MgSecurityLabelCategorySubcategoryCount" +"Security","GetMgSecurityLabelCitation_Get.g.cs","v1.0","Get-MgSecurityLabelCitation","GET","/security/labels/citations/{param}","matched","Get-MgSecurityLabelCitation" +"Security","GetMgSecurityLabelCitation_List.g.cs","v1.0","Get-MgSecurityLabelCitation","GET","/security/labels/citations","matched","Get-MgSecurityLabelCitation" +"Security","GetMgSecurityLabelCitation.g.cs","v1.0","Get-MgSecurityLabelCitation","","","dispatcher","" +"Security","GetMgSecurityLabelCitationCount.g.cs","v1.0","Get-MgSecurityLabelCitationCount","GET","/security/labels/citations/$count","matched","Get-MgSecurityLabelCitationCount" +"Security","GetMgSecurityLabelDepartment_Get.g.cs","v1.0","Get-MgSecurityLabelDepartment","GET","/security/labels/departments/{param}","matched","Get-MgSecurityLabelDepartment" +"Security","GetMgSecurityLabelDepartment_List.g.cs","v1.0","Get-MgSecurityLabelDepartment","GET","/security/labels/departments","matched","Get-MgSecurityLabelDepartment" +"Security","GetMgSecurityLabelDepartment.g.cs","v1.0","Get-MgSecurityLabelDepartment","","","dispatcher","" +"Security","GetMgSecurityLabelDepartmentCount.g.cs","v1.0","Get-MgSecurityLabelDepartmentCount","GET","/security/labels/departments/$count","matched","Get-MgSecurityLabelDepartmentCount" +"Security","GetMgSecurityLabelFilePlanReference_Get.g.cs","v1.0","Get-MgSecurityLabelFilePlanReference","GET","/security/labels/filePlanReferences/{param}","matched","Get-MgSecurityLabelFilePlanReference" +"Security","GetMgSecurityLabelFilePlanReference_List.g.cs","v1.0","Get-MgSecurityLabelFilePlanReference","GET","/security/labels/filePlanReferences","matched","Get-MgSecurityLabelFilePlanReference" +"Security","GetMgSecurityLabelFilePlanReference.g.cs","v1.0","Get-MgSecurityLabelFilePlanReference","","","dispatcher","" +"Security","GetMgSecurityLabelFilePlanReferenceCount.g.cs","v1.0","Get-MgSecurityLabelFilePlanReferenceCount","GET","/security/labels/filePlanReferences/$count","matched","Get-MgSecurityLabelFilePlanReferenceCount" +"Security","GetMgSecurityLabelRetentionLabel_Get.g.cs","v1.0","Get-MgSecurityLabelRetentionLabel","GET","/security/labels/retentionLabels/{param}","matched","Get-MgSecurityLabelRetentionLabel" +"Security","GetMgSecurityLabelRetentionLabel_List.g.cs","v1.0","Get-MgSecurityLabelRetentionLabel","GET","/security/labels/retentionLabels","matched","Get-MgSecurityLabelRetentionLabel" +"Security","GetMgSecurityLabelRetentionLabel.g.cs","v1.0","Get-MgSecurityLabelRetentionLabel","","","dispatcher","" +"Security","GetMgSecurityLabelRetentionLabelCount.g.cs","v1.0","Get-MgSecurityLabelRetentionLabelCount","GET","/security/labels/retentionLabels/$count","matched","Get-MgSecurityLabelRetentionLabelCount" +"Security","GetMgSecurityLabelRetentionLabelDescriptor.g.cs","v1.0","Get-MgSecurityLabelRetentionLabelDescriptor","GET","/security/labels/retentionLabels/{param}/descriptors","matched","Get-MgSecurityLabelRetentionLabelDescriptor" +"Security","GetMgSecurityLabelRetentionLabelDescriptorAuthorityTemplate.g.cs","v1.0","Get-MgSecurityLabelRetentionLabelDescriptorAuthorityTemplate","GET","/security/labels/retentionLabels/{param}/descriptors/authorityTemplate","matched","Get-MgSecurityLabelRetentionLabelDescriptorAuthorityTemplate" +"Security","GetMgSecurityLabelRetentionLabelDescriptorCategoryTemplate.g.cs","v1.0","Get-MgSecurityLabelRetentionLabelDescriptorCategoryTemplate","GET","/security/labels/retentionLabels/{param}/descriptors/categoryTemplate","matched","Get-MgSecurityLabelRetentionLabelDescriptorCategoryTemplate" +"Security","GetMgSecurityLabelRetentionLabelDescriptorCitationTemplate.g.cs","v1.0","Get-MgSecurityLabelRetentionLabelDescriptorCitationTemplate","GET","/security/labels/retentionLabels/{param}/descriptors/citationTemplate","matched","Get-MgSecurityLabelRetentionLabelDescriptorCitationTemplate" +"Security","GetMgSecurityLabelRetentionLabelDescriptorDepartmentTemplate.g.cs","v1.0","Get-MgSecurityLabelRetentionLabelDescriptorDepartmentTemplate","GET","/security/labels/retentionLabels/{param}/descriptors/departmentTemplate","matched","Get-MgSecurityLabelRetentionLabelDescriptorDepartmentTemplate" +"Security","GetMgSecurityLabelRetentionLabelDescriptorFilePlanReferenceTemplate.g.cs","v1.0","Get-MgSecurityLabelRetentionLabelDescriptorFilePlanReferenceTemplate","GET","/security/labels/retentionLabels/{param}/descriptors/filePlanReferenceTemplate","matched","Get-MgSecurityLabelRetentionLabelDescriptorFilePlanReferenceTemplate" +"Security","GetMgSecurityLabelRetentionLabelDispositionReviewStage_Get.g.cs","v1.0","Get-MgSecurityLabelRetentionLabelDispositionReviewStage","GET","/security/labels/retentionLabels/{param}/dispositionReviewStages/{param}","matched","Get-MgSecurityLabelRetentionLabelDispositionReviewStage" +"Security","GetMgSecurityLabelRetentionLabelDispositionReviewStage_List.g.cs","v1.0","Get-MgSecurityLabelRetentionLabelDispositionReviewStage","GET","/security/labels/retentionLabels/{param}/dispositionReviewStages","matched","Get-MgSecurityLabelRetentionLabelDispositionReviewStage" +"Security","GetMgSecurityLabelRetentionLabelDispositionReviewStage.g.cs","v1.0","Get-MgSecurityLabelRetentionLabelDispositionReviewStage","","","dispatcher","" +"Security","GetMgSecurityLabelRetentionLabelDispositionReviewStageCount.g.cs","v1.0","Get-MgSecurityLabelRetentionLabelDispositionReviewStageCount","GET","/security/labels/retentionLabels/{param}/dispositionReviewStages/$count","matched","Get-MgSecurityLabelRetentionLabelDispositionReviewStageCount" +"Security","GetMgSecurityLabelRetentionLabelRetentionEventType.g.cs","v1.0","Get-MgSecurityLabelRetentionLabelRetentionEventType","GET","/security/labels/retentionLabels/{param}/retentionEventType","mismatch","Get-MgSecurityLabelRetentionEventType" +"Security","GetMgSecuritySecureScore_Get.g.cs","v1.0","Get-MgSecuritySecureScore","GET","/security/secureScores/{param}","matched","Get-MgSecuritySecureScore" +"Security","GetMgSecuritySecureScore_List.g.cs","v1.0","Get-MgSecuritySecureScore","GET","/security/secureScores","matched","Get-MgSecuritySecureScore" +"Security","GetMgSecuritySecureScore.g.cs","v1.0","Get-MgSecuritySecureScore","","","dispatcher","" +"Security","GetMgSecuritySecureScoreControlProfile_Get.g.cs","v1.0","Get-MgSecuritySecureScoreControlProfile","GET","/security/secureScoreControlProfiles/{param}","matched","Get-MgSecuritySecureScoreControlProfile" +"Security","GetMgSecuritySecureScoreControlProfile_List.g.cs","v1.0","Get-MgSecuritySecureScoreControlProfile","GET","/security/secureScoreControlProfiles","matched","Get-MgSecuritySecureScoreControlProfile" +"Security","GetMgSecuritySecureScoreControlProfile.g.cs","v1.0","Get-MgSecuritySecureScoreControlProfile","","","dispatcher","" +"Security","GetMgSecuritySecureScoreControlProfileCount.g.cs","v1.0","Get-MgSecuritySecureScoreControlProfileCount","GET","/security/secureScoreControlProfiles/$count","matched","Get-MgSecuritySecureScoreControlProfileCount" +"Security","GetMgSecuritySecureScoreCount.g.cs","v1.0","Get-MgSecuritySecureScoreCount","GET","/security/secureScores/$count","matched","Get-MgSecuritySecureScoreCount" +"Security","GetMgSecuritySubjectRightsRequest_Get.g.cs","v1.0","Get-MgSecuritySubjectRightsRequest","GET","/security/subjectRightsRequests/{param}","matched","Get-MgSecuritySubjectRightsRequest" +"Security","GetMgSecuritySubjectRightsRequest_List.g.cs","v1.0","Get-MgSecuritySubjectRightsRequest","GET","/security/subjectRightsRequests","matched","Get-MgSecuritySubjectRightsRequest" +"Security","GetMgSecuritySubjectRightsRequest.g.cs","v1.0","Get-MgSecuritySubjectRightsRequest","","","dispatcher","" +"Security","GetMgSecuritySubjectRightsRequestApprover_Get.g.cs","v1.0","Get-MgSecuritySubjectRightsRequestApprover","GET","/security/subjectRightsRequests/{param}/approvers/{param}","matched","Get-MgSecuritySubjectRightsRequestApprover" +"Security","GetMgSecuritySubjectRightsRequestApprover_List.g.cs","v1.0","Get-MgSecuritySubjectRightsRequestApprover","GET","/security/subjectRightsRequests/{param}/approvers","matched","Get-MgSecuritySubjectRightsRequestApprover" +"Security","GetMgSecuritySubjectRightsRequestApprover.g.cs","v1.0","Get-MgSecuritySubjectRightsRequestApprover","","","dispatcher","" +"Security","GetMgSecuritySubjectRightsRequestApproverCount.g.cs","v1.0","Get-MgSecuritySubjectRightsRequestApproverCount","GET","/security/subjectRightsRequests/{param}/approvers/$count","matched","Get-MgSecuritySubjectRightsRequestApproverCount" +"Security","GetMgSecuritySubjectRightsRequestApproverMailboxSetting.g.cs","v1.0","Get-MgSecuritySubjectRightsRequestApproverMailboxSetting","GET","/security/subjectRightsRequests/{param}/approvers/{param}/mailboxSettings","matched","Get-MgSecuritySubjectRightsRequestApproverMailboxSetting" +"Security","GetMgSecuritySubjectRightsRequestApproverServiceProvisioningError.g.cs","v1.0","Get-MgSecuritySubjectRightsRequestApproverServiceProvisioningError","GET","/security/subjectRightsRequests/{param}/approvers/{param}/serviceProvisioningErrors","matched","Get-MgSecuritySubjectRightsRequestApproverServiceProvisioningError" +"Security","GetMgSecuritySubjectRightsRequestApproverServiceProvisioningErrorCount.g.cs","v1.0","Get-MgSecuritySubjectRightsRequestApproverServiceProvisioningErrorCount","GET","/security/subjectRightsRequests/{param}/approvers/{param}/serviceProvisioningErrors/$count","matched","Get-MgSecuritySubjectRightsRequestApproverServiceProvisioningErrorCount" +"Security","GetMgSecuritySubjectRightsRequestCollaborator_Get.g.cs","v1.0","Get-MgSecuritySubjectRightsRequestCollaborator","GET","/security/subjectRightsRequests/{param}/collaborators/{param}","matched","Get-MgSecuritySubjectRightsRequestCollaborator" +"Security","GetMgSecuritySubjectRightsRequestCollaborator_List.g.cs","v1.0","Get-MgSecuritySubjectRightsRequestCollaborator","GET","/security/subjectRightsRequests/{param}/collaborators","matched","Get-MgSecuritySubjectRightsRequestCollaborator" +"Security","GetMgSecuritySubjectRightsRequestCollaborator.g.cs","v1.0","Get-MgSecuritySubjectRightsRequestCollaborator","","","dispatcher","" +"Security","GetMgSecuritySubjectRightsRequestCollaboratorCount.g.cs","v1.0","Get-MgSecuritySubjectRightsRequestCollaboratorCount","GET","/security/subjectRightsRequests/{param}/collaborators/$count","matched","Get-MgSecuritySubjectRightsRequestCollaboratorCount" +"Security","GetMgSecuritySubjectRightsRequestCollaboratorMailboxSetting.g.cs","v1.0","Get-MgSecuritySubjectRightsRequestCollaboratorMailboxSetting","GET","/security/subjectRightsRequests/{param}/collaborators/{param}/mailboxSettings","matched","Get-MgSecuritySubjectRightsRequestCollaboratorMailboxSetting" +"Security","GetMgSecuritySubjectRightsRequestCollaboratorServiceProvisioningError.g.cs","v1.0","Get-MgSecuritySubjectRightsRequestCollaboratorServiceProvisioningError","GET","/security/subjectRightsRequests/{param}/collaborators/{param}/serviceProvisioningErrors","matched","Get-MgSecuritySubjectRightsRequestCollaboratorServiceProvisioningError" +"Security","GetMgSecuritySubjectRightsRequestCollaboratorServiceProvisioningErrorCount.g.cs","v1.0","Get-MgSecuritySubjectRightsRequestCollaboratorServiceProvisioningErrorCount","GET","/security/subjectRightsRequests/{param}/collaborators/{param}/serviceProvisioningErrors/$count","matched","Get-MgSecuritySubjectRightsRequestCollaboratorServiceProvisioningErrorCount" +"Security","GetMgSecuritySubjectRightsRequestCount.g.cs","v1.0","Get-MgSecuritySubjectRightsRequestCount","GET","/security/subjectRightsRequests/$count","matched","Get-MgSecuritySubjectRightsRequestCount" +"Security","GetMgSecuritySubjectRightsRequestGetFinalAttachment.g.cs","v1.0","Get-MgSecuritySubjectRightsRequestGetFinalAttachment","GET","/security/subjectRightsRequests/{param}/getFinalAttachment","mismatch","Get-MgSecuritySubjectRightsRequestFinalAttachment" +"Security","GetMgSecuritySubjectRightsRequestGetFinalReport.g.cs","v1.0","Get-MgSecuritySubjectRightsRequestGetFinalReport","GET","/security/subjectRightsRequests/{param}/getFinalReport","mismatch","Get-MgSecuritySubjectRightsRequestFinalReport" +"Security","GetMgSecuritySubjectRightsRequestNote_Get.g.cs","v1.0","Get-MgSecuritySubjectRightsRequestNote","GET","/security/subjectRightsRequests/{param}/notes/{param}","matched","Get-MgSecuritySubjectRightsRequestNote" +"Security","GetMgSecuritySubjectRightsRequestNote_List.g.cs","v1.0","Get-MgSecuritySubjectRightsRequestNote","GET","/security/subjectRightsRequests/{param}/notes","matched","Get-MgSecuritySubjectRightsRequestNote" +"Security","GetMgSecuritySubjectRightsRequestNote.g.cs","v1.0","Get-MgSecuritySubjectRightsRequestNote","","","dispatcher","" +"Security","GetMgSecuritySubjectRightsRequestNoteCount.g.cs","v1.0","Get-MgSecuritySubjectRightsRequestNoteCount","GET","/security/subjectRightsRequests/{param}/notes/$count","matched","Get-MgSecuritySubjectRightsRequestNoteCount" +"Security","GetMgSecuritySubjectRightsRequestTeam.g.cs","v1.0","Get-MgSecuritySubjectRightsRequestTeam","GET","/security/subjectRightsRequests/{param}/team","matched","Get-MgSecuritySubjectRightsRequestTeam" +"Security","GetMgSecurityThreatIntelligence.g.cs","v1.0","Get-MgSecurityThreatIntelligence","GET","/security/threatIntelligence","matched","Get-MgSecurityThreatIntelligence" +"Security","GetMgSecurityThreatIntelligenceArticle_Get.g.cs","v1.0","Get-MgSecurityThreatIntelligenceArticle","GET","/security/threatIntelligence/articles/{param}","matched","Get-MgSecurityThreatIntelligenceArticle" +"Security","GetMgSecurityThreatIntelligenceArticle_List.g.cs","v1.0","Get-MgSecurityThreatIntelligenceArticle","GET","/security/threatIntelligence/articles","matched","Get-MgSecurityThreatIntelligenceArticle" +"Security","GetMgSecurityThreatIntelligenceArticle.g.cs","v1.0","Get-MgSecurityThreatIntelligenceArticle","","","dispatcher","" +"Security","GetMgSecurityThreatIntelligenceArticleCount.g.cs","v1.0","Get-MgSecurityThreatIntelligenceArticleCount","GET","/security/threatIntelligence/articles/$count","matched","Get-MgSecurityThreatIntelligenceArticleCount" +"Security","GetMgSecurityThreatIntelligenceArticleIndicator_Get.g.cs","v1.0","Get-MgSecurityThreatIntelligenceArticleIndicator","GET","/security/threatIntelligence/articleIndicators/{param}","matched","Get-MgSecurityThreatIntelligenceArticleIndicator" +"Security","GetMgSecurityThreatIntelligenceArticleIndicator_List.g.cs","v1.0","Get-MgSecurityThreatIntelligenceArticleIndicator","GET","/security/threatIntelligence/articleIndicators","matched","Get-MgSecurityThreatIntelligenceArticleIndicator" +"Security","GetMgSecurityThreatIntelligenceArticleIndicator.g.cs","v1.0","Get-MgSecurityThreatIntelligenceArticleIndicator","","","dispatcher","" +"Security","GetMgSecurityThreatIntelligenceArticleIndicatorArtifact.g.cs","v1.0","Get-MgSecurityThreatIntelligenceArticleIndicatorArtifact","GET","/security/threatIntelligence/articleIndicators/{param}/artifact","matched","Get-MgSecurityThreatIntelligenceArticleIndicatorArtifact" +"Security","GetMgSecurityThreatIntelligenceArticleIndicatorCount.g.cs","v1.0","Get-MgSecurityThreatIntelligenceArticleIndicatorCount","GET","/security/threatIntelligence/articleIndicators/$count","matched","Get-MgSecurityThreatIntelligenceArticleIndicatorCount" +"Security","GetMgSecurityThreatIntelligenceHost_Get.g.cs","v1.0","Get-MgSecurityThreatIntelligenceHost","GET","/security/threatIntelligence/hosts/{param}","matched","Get-MgSecurityThreatIntelligenceHost" +"Security","GetMgSecurityThreatIntelligenceHost_List.g.cs","v1.0","Get-MgSecurityThreatIntelligenceHost","GET","/security/threatIntelligence/hosts","matched","Get-MgSecurityThreatIntelligenceHost" +"Security","GetMgSecurityThreatIntelligenceHost.g.cs","v1.0","Get-MgSecurityThreatIntelligenceHost","","","dispatcher","" +"Security","GetMgSecurityThreatIntelligenceHostChildHostPair_Get.g.cs","v1.0","Get-MgSecurityThreatIntelligenceHostChildHostPair","GET","/security/threatIntelligence/hosts/{param}/childHostPairs/{param}","matched","Get-MgSecurityThreatIntelligenceHostChildHostPair" +"Security","GetMgSecurityThreatIntelligenceHostChildHostPair_List.g.cs","v1.0","Get-MgSecurityThreatIntelligenceHostChildHostPair","GET","/security/threatIntelligence/hosts/{param}/childHostPairs","matched","Get-MgSecurityThreatIntelligenceHostChildHostPair" +"Security","GetMgSecurityThreatIntelligenceHostChildHostPair.g.cs","v1.0","Get-MgSecurityThreatIntelligenceHostChildHostPair","","","dispatcher","" +"Security","GetMgSecurityThreatIntelligenceHostChildHostPairCount.g.cs","v1.0","Get-MgSecurityThreatIntelligenceHostChildHostPairCount","GET","/security/threatIntelligence/hosts/{param}/childHostPairs/$count","matched","Get-MgSecurityThreatIntelligenceHostChildHostPairCount" +"Security","GetMgSecurityThreatIntelligenceHostComponent_Get.g.cs","v1.0","Get-MgSecurityThreatIntelligenceHostComponent","GET","/security/threatIntelligence/hostComponents/{param}","matched","Get-MgSecurityThreatIntelligenceHostComponent" +"Security","GetMgSecurityThreatIntelligenceHostComponent_List.g.cs","v1.0","Get-MgSecurityThreatIntelligenceHostComponent","GET","/security/threatIntelligence/hostComponents","matched","Get-MgSecurityThreatIntelligenceHostComponent" +"Security","GetMgSecurityThreatIntelligenceHostComponent.g.cs","v1.0","Get-MgSecurityThreatIntelligenceHostComponent","","","dispatcher","" +"Security","GetMgSecurityThreatIntelligenceHostComponentCount.g.cs","v1.0","Get-MgSecurityThreatIntelligenceHostComponentCount","GET","/security/threatIntelligence/hostComponents/$count","matched","Get-MgSecurityThreatIntelligenceHostComponentCount" +"Security","GetMgSecurityThreatIntelligenceHostComponentHost.g.cs","v1.0","Get-MgSecurityThreatIntelligenceHostComponentHost","GET","/security/threatIntelligence/hostComponents/{param}/host","matched","Get-MgSecurityThreatIntelligenceHostComponentHost" +"Security","GetMgSecurityThreatIntelligenceHostCookie_Get.g.cs","v1.0","Get-MgSecurityThreatIntelligenceHostCookie","GET","/security/threatIntelligence/hostCookies/{param}","matched","Get-MgSecurityThreatIntelligenceHostCookie" +"Security","GetMgSecurityThreatIntelligenceHostCookie_List.g.cs","v1.0","Get-MgSecurityThreatIntelligenceHostCookie","GET","/security/threatIntelligence/hostCookies","matched","Get-MgSecurityThreatIntelligenceHostCookie" +"Security","GetMgSecurityThreatIntelligenceHostCookie.g.cs","v1.0","Get-MgSecurityThreatIntelligenceHostCookie","","","dispatcher","" +"Security","GetMgSecurityThreatIntelligenceHostCookieCount.g.cs","v1.0","Get-MgSecurityThreatIntelligenceHostCookieCount","GET","/security/threatIntelligence/hostCookies/$count","matched","Get-MgSecurityThreatIntelligenceHostCookieCount" +"Security","GetMgSecurityThreatIntelligenceHostCookieHost.g.cs","v1.0","Get-MgSecurityThreatIntelligenceHostCookieHost","GET","/security/threatIntelligence/hostCookies/{param}/host","matched","Get-MgSecurityThreatIntelligenceHostCookieHost" +"Security","GetMgSecurityThreatIntelligenceHostCount.g.cs","v1.0","Get-MgSecurityThreatIntelligenceHostCount","GET","/security/threatIntelligence/hosts/$count","matched","Get-MgSecurityThreatIntelligenceHostCount" +"Security","GetMgSecurityThreatIntelligenceHostPair_Get.g.cs","v1.0","Get-MgSecurityThreatIntelligenceHostPair","GET","/security/threatIntelligence/hostPairs/{param}","matched","Get-MgSecurityThreatIntelligenceHostPair" +"Security","GetMgSecurityThreatIntelligenceHostPair_List.g.cs","v1.0","Get-MgSecurityThreatIntelligenceHostPair","GET","/security/threatIntelligence/hostPairs","matched","Get-MgSecurityThreatIntelligenceHostPair" +"Security","GetMgSecurityThreatIntelligenceHostPair.g.cs","v1.0","Get-MgSecurityThreatIntelligenceHostPair","","","dispatcher","" +"Security","GetMgSecurityThreatIntelligenceHostPairChildHost.g.cs","v1.0","Get-MgSecurityThreatIntelligenceHostPairChildHost","GET","/security/threatIntelligence/hostPairs/{param}/childHost","matched","Get-MgSecurityThreatIntelligenceHostPairChildHost" +"Security","GetMgSecurityThreatIntelligenceHostPairCount.g.cs","v1.0","Get-MgSecurityThreatIntelligenceHostPairCount","GET","/security/threatIntelligence/hostPairs/$count","matched","Get-MgSecurityThreatIntelligenceHostPairCount" +"Security","GetMgSecurityThreatIntelligenceHostPairParentHost.g.cs","v1.0","Get-MgSecurityThreatIntelligenceHostPairParentHost","GET","/security/threatIntelligence/hostPairs/{param}/parentHost","matched","Get-MgSecurityThreatIntelligenceHostPairParentHost" +"Security","GetMgSecurityThreatIntelligenceHostParentHostPair_Get.g.cs","v1.0","Get-MgSecurityThreatIntelligenceHostParentHostPair","GET","/security/threatIntelligence/hosts/{param}/parentHostPairs/{param}","matched","Get-MgSecurityThreatIntelligenceHostParentHostPair" +"Security","GetMgSecurityThreatIntelligenceHostParentHostPair_List.g.cs","v1.0","Get-MgSecurityThreatIntelligenceHostParentHostPair","GET","/security/threatIntelligence/hosts/{param}/parentHostPairs","matched","Get-MgSecurityThreatIntelligenceHostParentHostPair" +"Security","GetMgSecurityThreatIntelligenceHostParentHostPair.g.cs","v1.0","Get-MgSecurityThreatIntelligenceHostParentHostPair","","","dispatcher","" +"Security","GetMgSecurityThreatIntelligenceHostParentHostPairCount.g.cs","v1.0","Get-MgSecurityThreatIntelligenceHostParentHostPairCount","GET","/security/threatIntelligence/hosts/{param}/parentHostPairs/$count","matched","Get-MgSecurityThreatIntelligenceHostParentHostPairCount" +"Security","GetMgSecurityThreatIntelligenceHostPassiveDns_Get.g.cs","v1.0","Get-MgSecurityThreatIntelligenceHostPassiveDns","GET","/security/threatIntelligence/hosts/{param}/passiveDns/{param}","matched","Get-MgSecurityThreatIntelligenceHostPassiveDns" +"Security","GetMgSecurityThreatIntelligenceHostPassiveDns_List.g.cs","v1.0","Get-MgSecurityThreatIntelligenceHostPassiveDns","GET","/security/threatIntelligence/hosts/{param}/passiveDns","matched","Get-MgSecurityThreatIntelligenceHostPassiveDns" +"Security","GetMgSecurityThreatIntelligenceHostPassiveDns.g.cs","v1.0","Get-MgSecurityThreatIntelligenceHostPassiveDns","","","dispatcher","" +"Security","GetMgSecurityThreatIntelligenceHostPassiveDnsCount.g.cs","v1.0","Get-MgSecurityThreatIntelligenceHostPassiveDnsCount","GET","/security/threatIntelligence/hosts/{param}/passiveDns/$count","matched","Get-MgSecurityThreatIntelligenceHostPassiveDnsCount" +"Security","GetMgSecurityThreatIntelligenceHostPassiveDnsReverse_Get.g.cs","v1.0","Get-MgSecurityThreatIntelligenceHostPassiveDnsReverse","GET","/security/threatIntelligence/hosts/{param}/passiveDnsReverse/{param}","matched","Get-MgSecurityThreatIntelligenceHostPassiveDnsReverse" +"Security","GetMgSecurityThreatIntelligenceHostPassiveDnsReverse_List.g.cs","v1.0","Get-MgSecurityThreatIntelligenceHostPassiveDnsReverse","GET","/security/threatIntelligence/hosts/{param}/passiveDnsReverse","matched","Get-MgSecurityThreatIntelligenceHostPassiveDnsReverse" +"Security","GetMgSecurityThreatIntelligenceHostPassiveDnsReverse.g.cs","v1.0","Get-MgSecurityThreatIntelligenceHostPassiveDnsReverse","","","dispatcher","" +"Security","GetMgSecurityThreatIntelligenceHostPassiveDnsReverseCount.g.cs","v1.0","Get-MgSecurityThreatIntelligenceHostPassiveDnsReverseCount","GET","/security/threatIntelligence/hosts/{param}/passiveDnsReverse/$count","matched","Get-MgSecurityThreatIntelligenceHostPassiveDnsReverseCount" +"Security","GetMgSecurityThreatIntelligenceHostPort_Get.g.cs","v1.0","Get-MgSecurityThreatIntelligenceHostPort","GET","/security/threatIntelligence/hostPorts/{param}","matched","Get-MgSecurityThreatIntelligenceHostPort" +"Security","GetMgSecurityThreatIntelligenceHostPort_List.g.cs","v1.0","Get-MgSecurityThreatIntelligenceHostPort","GET","/security/threatIntelligence/hostPorts","matched","Get-MgSecurityThreatIntelligenceHostPort" +"Security","GetMgSecurityThreatIntelligenceHostPort.g.cs","v1.0","Get-MgSecurityThreatIntelligenceHostPort","","","dispatcher","" +"Security","GetMgSecurityThreatIntelligenceHostPortCount.g.cs","v1.0","Get-MgSecurityThreatIntelligenceHostPortCount","GET","/security/threatIntelligence/hostPorts/$count","matched","Get-MgSecurityThreatIntelligenceHostPortCount" +"Security","GetMgSecurityThreatIntelligenceHostPortHost.g.cs","v1.0","Get-MgSecurityThreatIntelligenceHostPortHost","GET","/security/threatIntelligence/hostPorts/{param}/host","matched","Get-MgSecurityThreatIntelligenceHostPortHost" +"Security","GetMgSecurityThreatIntelligenceHostPortMostRecentSslCertificate.g.cs","v1.0","Get-MgSecurityThreatIntelligenceHostPortMostRecentSslCertificate","GET","/security/threatIntelligence/hostPorts/{param}/mostRecentSslCertificate","matched","Get-MgSecurityThreatIntelligenceHostPortMostRecentSslCertificate" +"Security","GetMgSecurityThreatIntelligenceHostReputation.g.cs","v1.0","Get-MgSecurityThreatIntelligenceHostReputation","GET","/security/threatIntelligence/hosts/{param}/reputation","matched","Get-MgSecurityThreatIntelligenceHostReputation" +"Security","GetMgSecurityThreatIntelligenceHostSslCertificate_Get.g.cs","v1.0","Get-MgSecurityThreatIntelligenceHostSslCertificate","GET","/security/threatIntelligence/hostSslCertificates/{param}","matched","Get-MgSecurityThreatIntelligenceHostSslCertificate" +"Security","GetMgSecurityThreatIntelligenceHostSslCertificate_List.g.cs","v1.0","Get-MgSecurityThreatIntelligenceHostSslCertificate","GET","/security/threatIntelligence/hostSslCertificates","matched","Get-MgSecurityThreatIntelligenceHostSslCertificate" +"Security","GetMgSecurityThreatIntelligenceHostSslCertificate.g.cs","v1.0","Get-MgSecurityThreatIntelligenceHostSslCertificate","","","dispatcher","" +"Security","GetMgSecurityThreatIntelligenceHostSslCertificateCount.g.cs","v1.0","Get-MgSecurityThreatIntelligenceHostSslCertificateCount","GET","/security/threatIntelligence/hosts/{param}/sslCertificates/$count","matched","Get-MgSecurityThreatIntelligenceHostSslCertificateCount" +"Security","GetMgSecurityThreatIntelligenceHostSslCertificateHost.g.cs","v1.0","Get-MgSecurityThreatIntelligenceHostSslCertificateHost","GET","/security/threatIntelligence/hostSslCertificates/{param}/host","matched","Get-MgSecurityThreatIntelligenceHostSslCertificateHost" +"Security","GetMgSecurityThreatIntelligenceHostSslCertificateSslCertificate.g.cs","v1.0","Get-MgSecurityThreatIntelligenceHostSslCertificateSslCertificate","GET","/security/threatIntelligence/hostSslCertificates/{param}/sslCertificate","no-oracle","" +"Security","GetMgSecurityThreatIntelligenceHostSubdomain_Get.g.cs","v1.0","Get-MgSecurityThreatIntelligenceHostSubdomain","GET","/security/threatIntelligence/hosts/{param}/subdomains/{param}","matched","Get-MgSecurityThreatIntelligenceHostSubdomain" +"Security","GetMgSecurityThreatIntelligenceHostSubdomain_List.g.cs","v1.0","Get-MgSecurityThreatIntelligenceHostSubdomain","GET","/security/threatIntelligence/hosts/{param}/subdomains","matched","Get-MgSecurityThreatIntelligenceHostSubdomain" +"Security","GetMgSecurityThreatIntelligenceHostSubdomain.g.cs","v1.0","Get-MgSecurityThreatIntelligenceHostSubdomain","","","dispatcher","" +"Security","GetMgSecurityThreatIntelligenceHostSubdomainCount.g.cs","v1.0","Get-MgSecurityThreatIntelligenceHostSubdomainCount","GET","/security/threatIntelligence/hosts/{param}/subdomains/$count","matched","Get-MgSecurityThreatIntelligenceHostSubdomainCount" +"Security","GetMgSecurityThreatIntelligenceHostTracker.g.cs","v1.0","Get-MgSecurityThreatIntelligenceHostTracker","GET","/security/threatIntelligence/hostTrackers","matched","Get-MgSecurityThreatIntelligenceHostTracker" +"Security","GetMgSecurityThreatIntelligenceHostTrackerCount.g.cs","v1.0","Get-MgSecurityThreatIntelligenceHostTrackerCount","GET","/security/threatIntelligence/hosts/{param}/trackers/$count","matched","Get-MgSecurityThreatIntelligenceHostTrackerCount" +"Security","GetMgSecurityThreatIntelligenceHostTrackerHost.g.cs","v1.0","Get-MgSecurityThreatIntelligenceHostTrackerHost","GET","/security/threatIntelligence/hostTrackers/{param}/host","matched","Get-MgSecurityThreatIntelligenceHostTrackerHost" +"Security","GetMgSecurityThreatIntelligenceHostWhois.g.cs","v1.0","Get-MgSecurityThreatIntelligenceHostWhois","GET","/security/threatIntelligence/hosts/{param}/whois","corrected","Get-MgSecurityThreatIntelligenceHostWhoi" +"Security","GetMgSecurityThreatIntelligenceIntelProfile_Get.g.cs","v1.0","Get-MgSecurityThreatIntelligenceIntelProfile","GET","/security/threatIntelligence/intelProfiles/{param}","matched","Get-MgSecurityThreatIntelligenceIntelProfile" +"Security","GetMgSecurityThreatIntelligenceIntelProfile_List.g.cs","v1.0","Get-MgSecurityThreatIntelligenceIntelProfile","GET","/security/threatIntelligence/intelProfiles","matched","Get-MgSecurityThreatIntelligenceIntelProfile" +"Security","GetMgSecurityThreatIntelligenceIntelProfile.g.cs","v1.0","Get-MgSecurityThreatIntelligenceIntelProfile","","","dispatcher","" +"Security","GetMgSecurityThreatIntelligenceIntelProfileCount.g.cs","v1.0","Get-MgSecurityThreatIntelligenceIntelProfileCount","GET","/security/threatIntelligence/intelProfiles/$count","matched","Get-MgSecurityThreatIntelligenceIntelProfileCount" +"Security","GetMgSecurityThreatIntelligenceIntelProfileIndicator_Get.g.cs","v1.0","Get-MgSecurityThreatIntelligenceIntelProfileIndicator","GET","/security/threatIntelligence/intelProfiles/{param}/indicators/{param}","matched","Get-MgSecurityThreatIntelligenceIntelProfileIndicator" +"Security","GetMgSecurityThreatIntelligenceIntelProfileIndicator_List.g.cs","v1.0","Get-MgSecurityThreatIntelligenceIntelProfileIndicator","GET","/security/threatIntelligence/intelProfiles/{param}/indicators","matched","Get-MgSecurityThreatIntelligenceIntelProfileIndicator" +"Security","GetMgSecurityThreatIntelligenceIntelProfileIndicator.g.cs","v1.0","Get-MgSecurityThreatIntelligenceIntelProfileIndicator","","","dispatcher","" +"Security","GetMgSecurityThreatIntelligenceIntelProfileIndicatorCount.g.cs","v1.0","Get-MgSecurityThreatIntelligenceIntelProfileIndicatorCount","GET","/security/threatIntelligence/intelProfiles/{param}/indicators/$count","matched","Get-MgSecurityThreatIntelligenceIntelProfileIndicatorCount" +"Security","GetMgSecurityThreatIntelligencePassiveDnsRecord_Get.g.cs","v1.0","Get-MgSecurityThreatIntelligencePassiveDnsRecord","GET","/security/threatIntelligence/passiveDnsRecords/{param}","matched","Get-MgSecurityThreatIntelligencePassiveDnsRecord" +"Security","GetMgSecurityThreatIntelligencePassiveDnsRecord_List.g.cs","v1.0","Get-MgSecurityThreatIntelligencePassiveDnsRecord","GET","/security/threatIntelligence/passiveDnsRecords","matched","Get-MgSecurityThreatIntelligencePassiveDnsRecord" +"Security","GetMgSecurityThreatIntelligencePassiveDnsRecord.g.cs","v1.0","Get-MgSecurityThreatIntelligencePassiveDnsRecord","","","dispatcher","" +"Security","GetMgSecurityThreatIntelligencePassiveDnsRecordArtifact.g.cs","v1.0","Get-MgSecurityThreatIntelligencePassiveDnsRecordArtifact","GET","/security/threatIntelligence/passiveDnsRecords/{param}/artifact","matched","Get-MgSecurityThreatIntelligencePassiveDnsRecordArtifact" +"Security","GetMgSecurityThreatIntelligencePassiveDnsRecordCount.g.cs","v1.0","Get-MgSecurityThreatIntelligencePassiveDnsRecordCount","GET","/security/threatIntelligence/passiveDnsRecords/$count","matched","Get-MgSecurityThreatIntelligencePassiveDnsRecordCount" +"Security","GetMgSecurityThreatIntelligencePassiveDnsRecordParentHost.g.cs","v1.0","Get-MgSecurityThreatIntelligencePassiveDnsRecordParentHost","GET","/security/threatIntelligence/passiveDnsRecords/{param}/parentHost","matched","Get-MgSecurityThreatIntelligencePassiveDnsRecordParentHost" +"Security","GetMgSecurityThreatIntelligenceProfileIndicator_Get.g.cs","v1.0","Get-MgSecurityThreatIntelligenceProfileIndicator","GET","/security/threatIntelligence/intelligenceProfileIndicators/{param}","matched","Get-MgSecurityThreatIntelligenceProfileIndicator" +"Security","GetMgSecurityThreatIntelligenceProfileIndicator_List.g.cs","v1.0","Get-MgSecurityThreatIntelligenceProfileIndicator","GET","/security/threatIntelligence/intelligenceProfileIndicators","matched","Get-MgSecurityThreatIntelligenceProfileIndicator" +"Security","GetMgSecurityThreatIntelligenceProfileIndicator.g.cs","v1.0","Get-MgSecurityThreatIntelligenceProfileIndicator","","","dispatcher","" +"Security","GetMgSecurityThreatIntelligenceProfileIndicatorArtifact.g.cs","v1.0","Get-MgSecurityThreatIntelligenceProfileIndicatorArtifact","GET","/security/threatIntelligence/intelligenceProfileIndicators/{param}/artifact","matched","Get-MgSecurityThreatIntelligenceProfileIndicatorArtifact" +"Security","GetMgSecurityThreatIntelligenceProfileIndicatorCount.g.cs","v1.0","Get-MgSecurityThreatIntelligenceProfileIndicatorCount","GET","/security/threatIntelligence/intelligenceProfileIndicators/$count","matched","Get-MgSecurityThreatIntelligenceProfileIndicatorCount" +"Security","GetMgSecurityThreatIntelligenceSslCertificate_Get.g.cs","v1.0","Get-MgSecurityThreatIntelligenceSslCertificate","GET","/security/threatIntelligence/sslCertificates/{param}","matched","Get-MgSecurityThreatIntelligenceSslCertificate" +"Security","GetMgSecurityThreatIntelligenceSslCertificate_List.g.cs","v1.0","Get-MgSecurityThreatIntelligenceSslCertificate","GET","/security/threatIntelligence/sslCertificates","matched","Get-MgSecurityThreatIntelligenceSslCertificate" +"Security","GetMgSecurityThreatIntelligenceSslCertificate.g.cs","v1.0","Get-MgSecurityThreatIntelligenceSslCertificate","","","dispatcher","" +"Security","GetMgSecurityThreatIntelligenceSslCertificateCount.g.cs","v1.0","Get-MgSecurityThreatIntelligenceSslCertificateCount","GET","/security/threatIntelligence/sslCertificates/$count","matched","Get-MgSecurityThreatIntelligenceSslCertificateCount" +"Security","GetMgSecurityThreatIntelligenceSslCertificateRelatedHost_Get.g.cs","v1.0","Get-MgSecurityThreatIntelligenceSslCertificateRelatedHost","GET","/security/threatIntelligence/sslCertificates/{param}/relatedHosts/{param}","matched","Get-MgSecurityThreatIntelligenceSslCertificateRelatedHost" +"Security","GetMgSecurityThreatIntelligenceSslCertificateRelatedHost_List.g.cs","v1.0","Get-MgSecurityThreatIntelligenceSslCertificateRelatedHost","GET","/security/threatIntelligence/sslCertificates/{param}/relatedHosts","matched","Get-MgSecurityThreatIntelligenceSslCertificateRelatedHost" +"Security","GetMgSecurityThreatIntelligenceSslCertificateRelatedHost.g.cs","v1.0","Get-MgSecurityThreatIntelligenceSslCertificateRelatedHost","","","dispatcher","" +"Security","GetMgSecurityThreatIntelligenceSslCertificateRelatedHostCount.g.cs","v1.0","Get-MgSecurityThreatIntelligenceSslCertificateRelatedHostCount","GET","/security/threatIntelligence/sslCertificates/{param}/relatedHosts/$count","matched","Get-MgSecurityThreatIntelligenceSslCertificateRelatedHostCount" +"Security","GetMgSecurityThreatIntelligenceSubdomain_Get.g.cs","v1.0","Get-MgSecurityThreatIntelligenceSubdomain","GET","/security/threatIntelligence/subdomains/{param}","matched","Get-MgSecurityThreatIntelligenceSubdomain" +"Security","GetMgSecurityThreatIntelligenceSubdomain_List.g.cs","v1.0","Get-MgSecurityThreatIntelligenceSubdomain","GET","/security/threatIntelligence/subdomains","matched","Get-MgSecurityThreatIntelligenceSubdomain" +"Security","GetMgSecurityThreatIntelligenceSubdomain.g.cs","v1.0","Get-MgSecurityThreatIntelligenceSubdomain","","","dispatcher","" +"Security","GetMgSecurityThreatIntelligenceSubdomainCount.g.cs","v1.0","Get-MgSecurityThreatIntelligenceSubdomainCount","GET","/security/threatIntelligence/subdomains/$count","matched","Get-MgSecurityThreatIntelligenceSubdomainCount" +"Security","GetMgSecurityThreatIntelligenceSubdomainHost.g.cs","v1.0","Get-MgSecurityThreatIntelligenceSubdomainHost","GET","/security/threatIntelligence/subdomains/{param}/host","matched","Get-MgSecurityThreatIntelligenceSubdomainHost" +"Security","GetMgSecurityThreatIntelligenceVulnerability_Get.g.cs","v1.0","Get-MgSecurityThreatIntelligenceVulnerability","GET","/security/threatIntelligence/vulnerabilities/{param}","matched","Get-MgSecurityThreatIntelligenceVulnerability" +"Security","GetMgSecurityThreatIntelligenceVulnerability_List.g.cs","v1.0","Get-MgSecurityThreatIntelligenceVulnerability","GET","/security/threatIntelligence/vulnerabilities","matched","Get-MgSecurityThreatIntelligenceVulnerability" +"Security","GetMgSecurityThreatIntelligenceVulnerability.g.cs","v1.0","Get-MgSecurityThreatIntelligenceVulnerability","","","dispatcher","" +"Security","GetMgSecurityThreatIntelligenceVulnerabilityArticle_Get.g.cs","v1.0","Get-MgSecurityThreatIntelligenceVulnerabilityArticle","GET","/security/threatIntelligence/vulnerabilities/{param}/articles/{param}","matched","Get-MgSecurityThreatIntelligenceVulnerabilityArticle" +"Security","GetMgSecurityThreatIntelligenceVulnerabilityArticle_List.g.cs","v1.0","Get-MgSecurityThreatIntelligenceVulnerabilityArticle","GET","/security/threatIntelligence/vulnerabilities/{param}/articles","matched","Get-MgSecurityThreatIntelligenceVulnerabilityArticle" +"Security","GetMgSecurityThreatIntelligenceVulnerabilityArticle.g.cs","v1.0","Get-MgSecurityThreatIntelligenceVulnerabilityArticle","","","dispatcher","" +"Security","GetMgSecurityThreatIntelligenceVulnerabilityArticleCount.g.cs","v1.0","Get-MgSecurityThreatIntelligenceVulnerabilityArticleCount","GET","/security/threatIntelligence/vulnerabilities/{param}/articles/$count","matched","Get-MgSecurityThreatIntelligenceVulnerabilityArticleCount" +"Security","GetMgSecurityThreatIntelligenceVulnerabilityComponent_Get.g.cs","v1.0","Get-MgSecurityThreatIntelligenceVulnerabilityComponent","GET","/security/threatIntelligence/vulnerabilities/{param}/components/{param}","matched","Get-MgSecurityThreatIntelligenceVulnerabilityComponent" +"Security","GetMgSecurityThreatIntelligenceVulnerabilityComponent_List.g.cs","v1.0","Get-MgSecurityThreatIntelligenceVulnerabilityComponent","GET","/security/threatIntelligence/vulnerabilities/{param}/components","matched","Get-MgSecurityThreatIntelligenceVulnerabilityComponent" +"Security","GetMgSecurityThreatIntelligenceVulnerabilityComponent.g.cs","v1.0","Get-MgSecurityThreatIntelligenceVulnerabilityComponent","","","dispatcher","" +"Security","GetMgSecurityThreatIntelligenceVulnerabilityComponentCount.g.cs","v1.0","Get-MgSecurityThreatIntelligenceVulnerabilityComponentCount","GET","/security/threatIntelligence/vulnerabilities/{param}/components/$count","matched","Get-MgSecurityThreatIntelligenceVulnerabilityComponentCount" +"Security","GetMgSecurityThreatIntelligenceVulnerabilityCount.g.cs","v1.0","Get-MgSecurityThreatIntelligenceVulnerabilityCount","GET","/security/threatIntelligence/vulnerabilities/$count","matched","Get-MgSecurityThreatIntelligenceVulnerabilityCount" +"Security","GetMgSecurityThreatIntelligenceWhoisHistoryRecord_Get.g.cs","v1.0","Get-MgSecurityThreatIntelligenceWhoisHistoryRecord","GET","/security/threatIntelligence/whoisHistoryRecords/{param}","matched","Get-MgSecurityThreatIntelligenceWhoisHistoryRecord" +"Security","GetMgSecurityThreatIntelligenceWhoisHistoryRecord_List.g.cs","v1.0","Get-MgSecurityThreatIntelligenceWhoisHistoryRecord","GET","/security/threatIntelligence/whoisHistoryRecords","matched","Get-MgSecurityThreatIntelligenceWhoisHistoryRecord" +"Security","GetMgSecurityThreatIntelligenceWhoisHistoryRecord.g.cs","v1.0","Get-MgSecurityThreatIntelligenceWhoisHistoryRecord","","","dispatcher","" +"Security","GetMgSecurityThreatIntelligenceWhoisHistoryRecordCount.g.cs","v1.0","Get-MgSecurityThreatIntelligenceWhoisHistoryRecordCount","GET","/security/threatIntelligence/whoisHistoryRecords/$count","matched","Get-MgSecurityThreatIntelligenceWhoisHistoryRecordCount" +"Security","GetMgSecurityThreatIntelligenceWhoisHistoryRecordHost.g.cs","v1.0","Get-MgSecurityThreatIntelligenceWhoisHistoryRecordHost","GET","/security/threatIntelligence/whoisHistoryRecords/{param}/host","matched","Get-MgSecurityThreatIntelligenceWhoisHistoryRecordHost" +"Security","GetMgSecurityThreatIntelligenceWhoisRecord_Get.g.cs","v1.0","Get-MgSecurityThreatIntelligenceWhoisRecord","GET","/security/threatIntelligence/whoisRecords/{param}","matched","Get-MgSecurityThreatIntelligenceWhoisRecord" +"Security","GetMgSecurityThreatIntelligenceWhoisRecord_List.g.cs","v1.0","Get-MgSecurityThreatIntelligenceWhoisRecord","GET","/security/threatIntelligence/whoisRecords","matched","Get-MgSecurityThreatIntelligenceWhoisRecord" +"Security","GetMgSecurityThreatIntelligenceWhoisRecord.g.cs","v1.0","Get-MgSecurityThreatIntelligenceWhoisRecord","","","dispatcher","" +"Security","GetMgSecurityThreatIntelligenceWhoisRecordCount.g.cs","v1.0","Get-MgSecurityThreatIntelligenceWhoisRecordCount","GET","/security/threatIntelligence/whoisRecords/$count","matched","Get-MgSecurityThreatIntelligenceWhoisRecordCount" +"Security","GetMgSecurityThreatIntelligenceWhoisRecordHistory_Get.g.cs","v1.0","Get-MgSecurityThreatIntelligenceWhoisRecordHistory","GET","/security/threatIntelligence/whoisRecords/{param}/history/{param}","matched","Get-MgSecurityThreatIntelligenceWhoisRecordHistory" +"Security","GetMgSecurityThreatIntelligenceWhoisRecordHistory_List.g.cs","v1.0","Get-MgSecurityThreatIntelligenceWhoisRecordHistory","GET","/security/threatIntelligence/whoisRecords/{param}/history","matched","Get-MgSecurityThreatIntelligenceWhoisRecordHistory" +"Security","GetMgSecurityThreatIntelligenceWhoisRecordHistory.g.cs","v1.0","Get-MgSecurityThreatIntelligenceWhoisRecordHistory","","","dispatcher","" +"Security","GetMgSecurityThreatIntelligenceWhoisRecordHistoryCount.g.cs","v1.0","Get-MgSecurityThreatIntelligenceWhoisRecordHistoryCount","GET","/security/threatIntelligence/whoisRecords/{param}/history/$count","matched","Get-MgSecurityThreatIntelligenceWhoisRecordHistoryCount" +"Security","GetMgSecurityThreatIntelligenceWhoisRecordHost.g.cs","v1.0","Get-MgSecurityThreatIntelligenceWhoisRecordHost","GET","/security/threatIntelligence/whoisRecords/{param}/host","matched","Get-MgSecurityThreatIntelligenceWhoisRecordHost" +"Security","GetMgSecurityTrigger.g.cs","v1.0","Get-MgSecurityTrigger","GET","/security/triggers","matched","Get-MgSecurityTrigger" +"Security","GetMgSecurityTriggerRetentionEvent_Get.g.cs","v1.0","Get-MgSecurityTriggerRetentionEvent","GET","/security/triggers/retentionEvents/{param}","matched","Get-MgSecurityTriggerRetentionEvent" +"Security","GetMgSecurityTriggerRetentionEvent_List.g.cs","v1.0","Get-MgSecurityTriggerRetentionEvent","GET","/security/triggers/retentionEvents","matched","Get-MgSecurityTriggerRetentionEvent" +"Security","GetMgSecurityTriggerRetentionEvent.g.cs","v1.0","Get-MgSecurityTriggerRetentionEvent","","","dispatcher","" +"Security","GetMgSecurityTriggerRetentionEventCount.g.cs","v1.0","Get-MgSecurityTriggerRetentionEventCount","GET","/security/triggers/retentionEvents/$count","matched","Get-MgSecurityTriggerRetentionEventCount" +"Security","GetMgSecurityTriggerRetentionEventRetentionEventType.g.cs","v1.0","Get-MgSecurityTriggerRetentionEventRetentionEventType","GET","/security/triggers/retentionEvents/{param}/retentionEventType","mismatch","Get-MgSecurityTriggerRetentionEventType" +"Security","GetMgSecurityTriggerType.g.cs","v1.0","Get-MgSecurityTriggerType","GET","/security/triggerTypes","matched","Get-MgSecurityTriggerType" +"Security","GetMgSecurityTriggerTypeRetentionEventType_Get.g.cs","v1.0","Get-MgSecurityTriggerTypeRetentionEventType","GET","/security/triggerTypes/retentionEventTypes/{param}","matched","Get-MgSecurityTriggerTypeRetentionEventType" +"Security","GetMgSecurityTriggerTypeRetentionEventType_List.g.cs","v1.0","Get-MgSecurityTriggerTypeRetentionEventType","GET","/security/triggerTypes/retentionEventTypes","matched","Get-MgSecurityTriggerTypeRetentionEventType" +"Security","GetMgSecurityTriggerTypeRetentionEventType.g.cs","v1.0","Get-MgSecurityTriggerTypeRetentionEventType","","","dispatcher","" +"Security","GetMgSecurityTriggerTypeRetentionEventTypeCount.g.cs","v1.0","Get-MgSecurityTriggerTypeRetentionEventTypeCount","GET","/security/triggerTypes/retentionEventTypes/$count","matched","Get-MgSecurityTriggerTypeRetentionEventTypeCount" +"Security","InvokeMgSecurityAlertV2MoveAlerts.g.cs","v1.0","Invoke-MgSecurityAlertV2MoveAlerts","POST","","cast","" +"Security","InvokeMgSecurityCaseEdiscoveryCaseClose.g.cs","v1.0","Invoke-MgSecurityCaseEdiscoveryCaseClose","POST","","cast","" +"Security","InvokeMgSecurityCaseEdiscoveryCaseCustodianActivate.g.cs","v1.0","Invoke-MgSecurityCaseEdiscoveryCaseCustodianActivate","POST","","cast","" +"Security","InvokeMgSecurityCaseEdiscoveryCaseCustodianApplyHold.g.cs","v1.0","Invoke-MgSecurityCaseEdiscoveryCaseCustodianApplyHold","POST","","cast","" +"Security","InvokeMgSecurityCaseEdiscoveryCaseCustodianRelease.g.cs","v1.0","Invoke-MgSecurityCaseEdiscoveryCaseCustodianRelease","POST","","cast","" +"Security","InvokeMgSecurityCaseEdiscoveryCaseCustodianRemoveHold.g.cs","v1.0","Invoke-MgSecurityCaseEdiscoveryCaseCustodianRemoveHold","POST","","cast","" +"Security","InvokeMgSecurityCaseEdiscoveryCaseCustodianUpdateIndex.g.cs","v1.0","Invoke-MgSecurityCaseEdiscoveryCaseCustodianUpdateIndex","POST","","cast","" +"Security","InvokeMgSecurityCaseEdiscoveryCaseNoncustodialDataSourceApplyHold.g.cs","v1.0","Invoke-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceApplyHold","POST","","cast","" +"Security","InvokeMgSecurityCaseEdiscoveryCaseNoncustodialDataSourceRelease.g.cs","v1.0","Invoke-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceRelease","POST","","cast","" +"Security","InvokeMgSecurityCaseEdiscoveryCaseNoncustodialDataSourceRemoveHold.g.cs","v1.0","Invoke-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceRemoveHold","POST","","cast","" +"Security","InvokeMgSecurityCaseEdiscoveryCaseNoncustodialDataSourceUpdateIndex.g.cs","v1.0","Invoke-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceUpdateIndex","POST","","cast","" +"Security","InvokeMgSecurityCaseEdiscoveryCaseReopen.g.cs","v1.0","Invoke-MgSecurityCaseEdiscoveryCaseReopen","POST","","cast","" +"Security","InvokeMgSecurityCaseEdiscoveryCaseReviewSetAddToReviewSet.g.cs","v1.0","Invoke-MgSecurityCaseEdiscoveryCaseReviewSetAddToReviewSet","POST","","cast","" +"Security","InvokeMgSecurityCaseEdiscoveryCaseReviewSetExport.g.cs","v1.0","Invoke-MgSecurityCaseEdiscoveryCaseReviewSetExport","POST","","cast","" +"Security","InvokeMgSecurityCaseEdiscoveryCaseReviewSetQueryApplyTags.g.cs","v1.0","Invoke-MgSecurityCaseEdiscoveryCaseReviewSetQueryApplyTags","POST","","cast","" +"Security","InvokeMgSecurityCaseEdiscoveryCaseReviewSetQueryExport.g.cs","v1.0","Invoke-MgSecurityCaseEdiscoveryCaseReviewSetQueryExport","POST","","cast","" +"Security","InvokeMgSecurityCaseEdiscoveryCaseSearchEstimateStatistics.g.cs","v1.0","Invoke-MgSecurityCaseEdiscoveryCaseSearchEstimateStatistics","POST","","cast","" +"Security","InvokeMgSecurityCaseEdiscoveryCaseSearchExportReport.g.cs","v1.0","Invoke-MgSecurityCaseEdiscoveryCaseSearchExportReport","POST","","cast","" +"Security","InvokeMgSecurityCaseEdiscoveryCaseSearchExportResult.g.cs","v1.0","Invoke-MgSecurityCaseEdiscoveryCaseSearchExportResult","POST","","cast","" +"Security","InvokeMgSecurityCaseEdiscoveryCaseSearchPurgeData.g.cs","v1.0","Invoke-MgSecurityCaseEdiscoveryCaseSearchPurgeData","POST","","cast","" +"Security","InvokeMgSecurityCaseEdiscoveryCaseSettingResetToDefault.g.cs","v1.0","Invoke-MgSecurityCaseEdiscoveryCaseSettingResetToDefault","POST","","cast","" +"Security","InvokeMgSecurityCollaborationAnalyzedEmailRemediate.g.cs","v1.0","Invoke-MgSecurityCollaborationAnalyzedEmailRemediate","POST","","cast","" +"Security","InvokeMgSecurityDataSecurityAndGovernanceProcessContentAsync.g.cs","v1.0","Invoke-MgSecurityDataSecurityAndGovernanceProcessContentAsync","POST","/security/dataSecurityAndGovernance/processContentAsync","mismatch","Invoke-MgProcessSecurityDataSecurityAndGovernanceContentAsync" +"Security","InvokeMgSecurityDataSecurityAndGovernanceProtectionScopeCompute.g.cs","v1.0","Invoke-MgSecurityDataSecurityAndGovernanceProtectionScopeCompute","POST","/security/dataSecurityAndGovernance/protectionScopes/compute","mismatch","Invoke-MgComputeSecurityDataSecurityAndGovernanceProtectionScope" +"Security","InvokeMgSecurityDataSecurityAndGovernanceSensitivityLabelComputeRightsAndInheritance.g.cs","v1.0","Invoke-MgSecurityDataSecurityAndGovernanceSensitivityLabelComputeRightsAndInheritance","POST","/security/dataSecurityAndGovernance/sensitivityLabels/computeRightsAndInheritance","mismatch","Invoke-MgAndSecurityDataSecurityAndGovernanceSensitivityLabel" +"Security","InvokeMgSecurityDataSecurityAndGovernanceSensitivityLabelSublabelComputeRightsAndInheritance.g.cs","v1.0","Invoke-MgSecurityDataSecurityAndGovernanceSensitivityLabelSublabelComputeRightsAndInheritance","POST","/security/dataSecurityAndGovernance/sensitivityLabels/{param}/sublabels/computeRightsAndInheritance","mismatch","Invoke-MgAndSecurityDataSecurityAndGovernanceSensitivityLabelSublabel" +"Security","InvokeMgSecurityIdentityAccountInvokeAction.g.cs","v1.0","Invoke-MgSecurityIdentityAccountInvokeAction","POST","","cast","" +"Security","InvokeMgSecurityIdentitySensorCandidateActivate.g.cs","v1.0","Invoke-MgSecurityIdentitySensorCandidateActivate","POST","","cast","" +"Security","InvokeMgSecurityIdentitySensorRegenerateDeploymentAccessKey.g.cs","v1.0","Invoke-MgSecurityIdentitySensorRegenerateDeploymentAccessKey","POST","","cast","" +"Security","InvokeMgSecurityIncidentMergeIncidents.g.cs","v1.0","Invoke-MgSecurityIncidentMergeIncidents","POST","","cast","" +"Security","InvokeMgSecurityRunHuntingQuery.g.cs","v1.0","Invoke-MgSecurityRunHuntingQuery","POST","","cast","" +"Security","NewMgSecurityAlert.g.cs","v1.0","New-MgSecurityAlert","POST","/security/alerts","matched","New-MgSecurityAlert" +"Security","NewMgSecurityAlertV2.g.cs","v1.0","New-MgSecurityAlertV2","POST","","cast","" +"Security","NewMgSecurityAttackSimulation.g.cs","v1.0","New-MgSecurityAttackSimulation","POST","/security/attackSimulation/simulations","matched","New-MgSecurityAttackSimulation" +"Security","NewMgSecurityAttackSimulationAutomation.g.cs","v1.0","New-MgSecurityAttackSimulationAutomation","POST","/security/attackSimulation/simulationAutomations","matched","New-MgSecurityAttackSimulationAutomation" +"Security","NewMgSecurityAttackSimulationAutomationRun.g.cs","v1.0","New-MgSecurityAttackSimulationAutomationRun","POST","/security/attackSimulation/simulationAutomations/{param}/runs","matched","New-MgSecurityAttackSimulationAutomationRun" +"Security","NewMgSecurityAttackSimulationEndUserNotification.g.cs","v1.0","New-MgSecurityAttackSimulationEndUserNotification","POST","/security/attackSimulation/endUserNotifications","matched","New-MgSecurityAttackSimulationEndUserNotification" +"Security","NewMgSecurityAttackSimulationEndUserNotificationDetail.g.cs","v1.0","New-MgSecurityAttackSimulationEndUserNotificationDetail","POST","/security/attackSimulation/endUserNotifications/{param}/details","matched","New-MgSecurityAttackSimulationEndUserNotificationDetail" +"Security","NewMgSecurityAttackSimulationLandingPage.g.cs","v1.0","New-MgSecurityAttackSimulationLandingPage","POST","/security/attackSimulation/landingPages","matched","New-MgSecurityAttackSimulationLandingPage" +"Security","NewMgSecurityAttackSimulationLandingPageDetail.g.cs","v1.0","New-MgSecurityAttackSimulationLandingPageDetail","POST","/security/attackSimulation/landingPages/{param}/details","matched","New-MgSecurityAttackSimulationLandingPageDetail" +"Security","NewMgSecurityAttackSimulationLoginPage.g.cs","v1.0","New-MgSecurityAttackSimulationLoginPage","POST","/security/attackSimulation/loginPages","matched","New-MgSecurityAttackSimulationLoginPage" +"Security","NewMgSecurityAttackSimulationOperation.g.cs","v1.0","New-MgSecurityAttackSimulationOperation","POST","/security/attackSimulation/operations","matched","New-MgSecurityAttackSimulationOperation" +"Security","NewMgSecurityAttackSimulationPayload.g.cs","v1.0","New-MgSecurityAttackSimulationPayload","POST","/security/attackSimulation/payloads","matched","New-MgSecurityAttackSimulationPayload" +"Security","NewMgSecurityAttackSimulationTraining.g.cs","v1.0","New-MgSecurityAttackSimulationTraining","POST","/security/attackSimulation/trainings","matched","New-MgSecurityAttackSimulationTraining" +"Security","NewMgSecurityAttackSimulationTrainingLanguageDetail.g.cs","v1.0","New-MgSecurityAttackSimulationTrainingLanguageDetail","POST","/security/attackSimulation/trainings/{param}/languageDetails","matched","New-MgSecurityAttackSimulationTrainingLanguageDetail" +"Security","NewMgSecurityAuditLogQuery.g.cs","v1.0","New-MgSecurityAuditLogQuery","POST","/security/auditLog/queries","matched","New-MgSecurityAuditLogQuery" +"Security","NewMgSecurityCaseEdiscoveryCase.g.cs","v1.0","New-MgSecurityCaseEdiscoveryCase","POST","/security/cases/ediscoveryCases","matched","New-MgSecurityCaseEdiscoveryCase" +"Security","NewMgSecurityCaseEdiscoveryCaseCustodian.g.cs","v1.0","New-MgSecurityCaseEdiscoveryCaseCustodian","POST","/security/cases/ediscoveryCases/{param}/custodians","matched","New-MgSecurityCaseEdiscoveryCaseCustodian" +"Security","NewMgSecurityCaseEdiscoveryCaseCustodianSiteSource.g.cs","v1.0","New-MgSecurityCaseEdiscoveryCaseCustodianSiteSource","POST","/security/cases/ediscoveryCases/{param}/custodians/{param}/siteSources","matched","New-MgSecurityCaseEdiscoveryCaseCustodianSiteSource" +"Security","NewMgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource.g.cs","v1.0","New-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource","POST","/security/cases/ediscoveryCases/{param}/custodians/{param}/unifiedGroupSources","matched","New-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource" +"Security","NewMgSecurityCaseEdiscoveryCaseCustodianUserSource.g.cs","v1.0","New-MgSecurityCaseEdiscoveryCaseCustodianUserSource","POST","/security/cases/ediscoveryCases/{param}/custodians/{param}/userSources","matched","New-MgSecurityCaseEdiscoveryCaseCustodianUserSource" +"Security","NewMgSecurityCaseEdiscoveryCaseMember.g.cs","v1.0","New-MgSecurityCaseEdiscoveryCaseMember","POST","/security/cases/ediscoveryCases/{param}/caseMembers","matched","New-MgSecurityCaseEdiscoveryCaseMember" +"Security","NewMgSecurityCaseEdiscoveryCaseNoncustodialDataSource.g.cs","v1.0","New-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource","POST","/security/cases/ediscoveryCases/{param}/noncustodialDataSources","matched","New-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource" +"Security","NewMgSecurityCaseEdiscoveryCaseOperation.g.cs","v1.0","New-MgSecurityCaseEdiscoveryCaseOperation","POST","/security/cases/ediscoveryCases/{param}/operations","matched","New-MgSecurityCaseEdiscoveryCaseOperation" +"Security","NewMgSecurityCaseEdiscoveryCaseReviewSet.g.cs","v1.0","New-MgSecurityCaseEdiscoveryCaseReviewSet","POST","/security/cases/ediscoveryCases/{param}/reviewSets","matched","New-MgSecurityCaseEdiscoveryCaseReviewSet" +"Security","NewMgSecurityCaseEdiscoveryCaseReviewSetQuery.g.cs","v1.0","New-MgSecurityCaseEdiscoveryCaseReviewSetQuery","POST","/security/cases/ediscoveryCases/{param}/reviewSets/{param}/queries","matched","New-MgSecurityCaseEdiscoveryCaseReviewSetQuery" +"Security","NewMgSecurityCaseEdiscoveryCaseSearch.g.cs","v1.0","New-MgSecurityCaseEdiscoveryCaseSearch","POST","/security/cases/ediscoveryCases/{param}/searches","matched","New-MgSecurityCaseEdiscoveryCaseSearch" +"Security","NewMgSecurityCaseEdiscoveryCaseSearchAdditionalSource.g.cs","v1.0","New-MgSecurityCaseEdiscoveryCaseSearchAdditionalSource","POST","/security/cases/ediscoveryCases/{param}/searches/{param}/additionalSources","matched","New-MgSecurityCaseEdiscoveryCaseSearchAdditionalSource" +"Security","NewMgSecurityCaseEdiscoveryCaseTag.g.cs","v1.0","New-MgSecurityCaseEdiscoveryCaseTag","POST","/security/cases/ediscoveryCases/{param}/tags","matched","New-MgSecurityCaseEdiscoveryCaseTag" +"Security","NewMgSecurityCollaborationAnalyzedEmail.g.cs","v1.0","New-MgSecurityCollaborationAnalyzedEmail","POST","/security/collaboration/analyzedEmails","matched","New-MgSecurityCollaborationAnalyzedEmail" +"Security","NewMgSecurityDataSecurityAndGovernanceSensitivityLabel.g.cs","v1.0","New-MgSecurityDataSecurityAndGovernanceSensitivityLabel","POST","/security/dataSecurityAndGovernance/sensitivityLabels","matched","New-MgSecurityDataSecurityAndGovernanceSensitivityLabel" +"Security","NewMgSecurityDataSecurityAndGovernanceSensitivityLabelSublabel.g.cs","v1.0","New-MgSecurityDataSecurityAndGovernanceSensitivityLabelSublabel","POST","/security/dataSecurityAndGovernance/sensitivityLabels/{param}/sublabels","matched","New-MgSecurityDataSecurityAndGovernanceSensitivityLabelSublabel" +"Security","NewMgSecurityIdentityAccount.g.cs","v1.0","New-MgSecurityIdentityAccount","POST","/security/identities/identityAccounts","matched","New-MgSecurityIdentityAccount" +"Security","NewMgSecurityIdentityHealthIssue.g.cs","v1.0","New-MgSecurityIdentityHealthIssue","POST","/security/identities/healthIssues","matched","New-MgSecurityIdentityHealthIssue" +"Security","NewMgSecurityIdentitySensor.g.cs","v1.0","New-MgSecurityIdentitySensor","POST","/security/identities/sensors","matched","New-MgSecurityIdentitySensor" +"Security","NewMgSecurityIdentitySensorCandidate.g.cs","v1.0","New-MgSecurityIdentitySensorCandidate","POST","/security/identities/sensorCandidates","matched","New-MgSecurityIdentitySensorCandidate" +"Security","NewMgSecurityIncident.g.cs","v1.0","New-MgSecurityIncident","POST","/security/incidents","matched","New-MgSecurityIncident" +"Security","NewMgSecurityLabelAuthority.g.cs","v1.0","New-MgSecurityLabelAuthority","POST","/security/labels/authorities","matched","New-MgSecurityLabelAuthority" +"Security","NewMgSecurityLabelCategory.g.cs","v1.0","New-MgSecurityLabelCategory","POST","/security/labels/categories","matched","New-MgSecurityLabelCategory" +"Security","NewMgSecurityLabelCategorySubcategory.g.cs","v1.0","New-MgSecurityLabelCategorySubcategory","POST","/security/labels/categories/{param}/subcategories","matched","New-MgSecurityLabelCategorySubcategory" +"Security","NewMgSecurityLabelCitation.g.cs","v1.0","New-MgSecurityLabelCitation","POST","/security/labels/citations","matched","New-MgSecurityLabelCitation" +"Security","NewMgSecurityLabelDepartment.g.cs","v1.0","New-MgSecurityLabelDepartment","POST","/security/labels/departments","matched","New-MgSecurityLabelDepartment" +"Security","NewMgSecurityLabelFilePlanReference.g.cs","v1.0","New-MgSecurityLabelFilePlanReference","POST","/security/labels/filePlanReferences","matched","New-MgSecurityLabelFilePlanReference" +"Security","NewMgSecurityLabelRetentionLabel.g.cs","v1.0","New-MgSecurityLabelRetentionLabel","POST","/security/labels/retentionLabels","matched","New-MgSecurityLabelRetentionLabel" +"Security","NewMgSecurityLabelRetentionLabelDispositionReviewStage.g.cs","v1.0","New-MgSecurityLabelRetentionLabelDispositionReviewStage","POST","/security/labels/retentionLabels/{param}/dispositionReviewStages","matched","New-MgSecurityLabelRetentionLabelDispositionReviewStage" +"Security","NewMgSecuritySecureScore.g.cs","v1.0","New-MgSecuritySecureScore","POST","/security/secureScores","matched","New-MgSecuritySecureScore" +"Security","NewMgSecuritySecureScoreControlProfile.g.cs","v1.0","New-MgSecuritySecureScoreControlProfile","POST","/security/secureScoreControlProfiles","matched","New-MgSecuritySecureScoreControlProfile" +"Security","NewMgSecuritySubjectRightsRequest.g.cs","v1.0","New-MgSecuritySubjectRightsRequest","POST","/security/subjectRightsRequests","matched","New-MgSecuritySubjectRightsRequest" +"Security","NewMgSecuritySubjectRightsRequestNote.g.cs","v1.0","New-MgSecuritySubjectRightsRequestNote","POST","/security/subjectRightsRequests/{param}/notes","matched","New-MgSecuritySubjectRightsRequestNote" +"Security","NewMgSecurityThreatIntelligenceArticle.g.cs","v1.0","New-MgSecurityThreatIntelligenceArticle","POST","/security/threatIntelligence/articles","matched","New-MgSecurityThreatIntelligenceArticle" +"Security","NewMgSecurityThreatIntelligenceArticleIndicator.g.cs","v1.0","New-MgSecurityThreatIntelligenceArticleIndicator","POST","/security/threatIntelligence/articleIndicators","matched","New-MgSecurityThreatIntelligenceArticleIndicator" +"Security","NewMgSecurityThreatIntelligenceHost.g.cs","v1.0","New-MgSecurityThreatIntelligenceHost","POST","/security/threatIntelligence/hosts","matched","New-MgSecurityThreatIntelligenceHost" +"Security","NewMgSecurityThreatIntelligenceHostComponent.g.cs","v1.0","New-MgSecurityThreatIntelligenceHostComponent","POST","/security/threatIntelligence/hostComponents","matched","New-MgSecurityThreatIntelligenceHostComponent" +"Security","NewMgSecurityThreatIntelligenceHostCookie.g.cs","v1.0","New-MgSecurityThreatIntelligenceHostCookie","POST","/security/threatIntelligence/hostCookies","matched","New-MgSecurityThreatIntelligenceHostCookie" +"Security","NewMgSecurityThreatIntelligenceHostPair.g.cs","v1.0","New-MgSecurityThreatIntelligenceHostPair","POST","/security/threatIntelligence/hostPairs","matched","New-MgSecurityThreatIntelligenceHostPair" +"Security","NewMgSecurityThreatIntelligenceHostPort.g.cs","v1.0","New-MgSecurityThreatIntelligenceHostPort","POST","/security/threatIntelligence/hostPorts","matched","New-MgSecurityThreatIntelligenceHostPort" +"Security","NewMgSecurityThreatIntelligenceHostSslCertificate.g.cs","v1.0","New-MgSecurityThreatIntelligenceHostSslCertificate","POST","/security/threatIntelligence/hostSslCertificates","matched","New-MgSecurityThreatIntelligenceHostSslCertificate" +"Security","NewMgSecurityThreatIntelligenceHostTracker.g.cs","v1.0","New-MgSecurityThreatIntelligenceHostTracker","POST","/security/threatIntelligence/hostTrackers","matched","New-MgSecurityThreatIntelligenceHostTracker" +"Security","NewMgSecurityThreatIntelligenceIntelProfile.g.cs","v1.0","New-MgSecurityThreatIntelligenceIntelProfile","POST","/security/threatIntelligence/intelProfiles","matched","New-MgSecurityThreatIntelligenceIntelProfile" +"Security","NewMgSecurityThreatIntelligencePassiveDnsRecord.g.cs","v1.0","New-MgSecurityThreatIntelligencePassiveDnsRecord","POST","/security/threatIntelligence/passiveDnsRecords","matched","New-MgSecurityThreatIntelligencePassiveDnsRecord" +"Security","NewMgSecurityThreatIntelligenceProfileIndicator.g.cs","v1.0","New-MgSecurityThreatIntelligenceProfileIndicator","POST","/security/threatIntelligence/intelligenceProfileIndicators","matched","New-MgSecurityThreatIntelligenceProfileIndicator" +"Security","NewMgSecurityThreatIntelligenceSslCertificate.g.cs","v1.0","New-MgSecurityThreatIntelligenceSslCertificate","POST","/security/threatIntelligence/sslCertificates","matched","New-MgSecurityThreatIntelligenceSslCertificate" +"Security","NewMgSecurityThreatIntelligenceSubdomain.g.cs","v1.0","New-MgSecurityThreatIntelligenceSubdomain","POST","/security/threatIntelligence/subdomains","matched","New-MgSecurityThreatIntelligenceSubdomain" +"Security","NewMgSecurityThreatIntelligenceVulnerability.g.cs","v1.0","New-MgSecurityThreatIntelligenceVulnerability","POST","/security/threatIntelligence/vulnerabilities","matched","New-MgSecurityThreatIntelligenceVulnerability" +"Security","NewMgSecurityThreatIntelligenceVulnerabilityComponent.g.cs","v1.0","New-MgSecurityThreatIntelligenceVulnerabilityComponent","POST","/security/threatIntelligence/vulnerabilities/{param}/components","matched","New-MgSecurityThreatIntelligenceVulnerabilityComponent" +"Security","NewMgSecurityThreatIntelligenceWhoisHistoryRecord.g.cs","v1.0","New-MgSecurityThreatIntelligenceWhoisHistoryRecord","POST","/security/threatIntelligence/whoisHistoryRecords","matched","New-MgSecurityThreatIntelligenceWhoisHistoryRecord" +"Security","NewMgSecurityThreatIntelligenceWhoisRecord.g.cs","v1.0","New-MgSecurityThreatIntelligenceWhoisRecord","POST","/security/threatIntelligence/whoisRecords","matched","New-MgSecurityThreatIntelligenceWhoisRecord" +"Security","NewMgSecurityTriggerRetentionEvent.g.cs","v1.0","New-MgSecurityTriggerRetentionEvent","POST","/security/triggers/retentionEvents","matched","New-MgSecurityTriggerRetentionEvent" +"Security","NewMgSecurityTriggerTypeRetentionEventType.g.cs","v1.0","New-MgSecurityTriggerTypeRetentionEventType","POST","/security/triggerTypes/retentionEventTypes","matched","New-MgSecurityTriggerTypeRetentionEventType" +"Security","RemoveMgSecurityAlertV2.g.cs","v1.0","Remove-MgSecurityAlertV2","DELETE","","cast","" +"Security","RemoveMgSecurityAttackSimulation.g.cs","v1.0","Remove-MgSecurityAttackSimulation","DELETE","/security/attackSimulation/simulations/{param}","matched","Remove-MgSecurityAttackSimulation" +"Security","RemoveMgSecurityAttackSimulationAutomation.g.cs","v1.0","Remove-MgSecurityAttackSimulationAutomation","DELETE","/security/attackSimulation/simulationAutomations/{param}","matched","Remove-MgSecurityAttackSimulationAutomation" +"Security","RemoveMgSecurityAttackSimulationAutomationRun.g.cs","v1.0","Remove-MgSecurityAttackSimulationAutomationRun","DELETE","/security/attackSimulation/simulationAutomations/{param}/runs/{param}","matched","Remove-MgSecurityAttackSimulationAutomationRun" +"Security","RemoveMgSecurityAttackSimulationEndUserNotification.g.cs","v1.0","Remove-MgSecurityAttackSimulationEndUserNotification","DELETE","/security/attackSimulation/endUserNotifications/{param}","matched","Remove-MgSecurityAttackSimulationEndUserNotification" +"Security","RemoveMgSecurityAttackSimulationEndUserNotificationDetail.g.cs","v1.0","Remove-MgSecurityAttackSimulationEndUserNotificationDetail","DELETE","/security/attackSimulation/endUserNotifications/{param}/details/{param}","matched","Remove-MgSecurityAttackSimulationEndUserNotificationDetail" +"Security","RemoveMgSecurityAttackSimulationLandingPage.g.cs","v1.0","Remove-MgSecurityAttackSimulationLandingPage","DELETE","/security/attackSimulation/landingPages/{param}","matched","Remove-MgSecurityAttackSimulationLandingPage" +"Security","RemoveMgSecurityAttackSimulationLandingPageDetail.g.cs","v1.0","Remove-MgSecurityAttackSimulationLandingPageDetail","DELETE","/security/attackSimulation/landingPages/{param}/details/{param}","matched","Remove-MgSecurityAttackSimulationLandingPageDetail" +"Security","RemoveMgSecurityAttackSimulationLoginPage.g.cs","v1.0","Remove-MgSecurityAttackSimulationLoginPage","DELETE","/security/attackSimulation/loginPages/{param}","matched","Remove-MgSecurityAttackSimulationLoginPage" +"Security","RemoveMgSecurityAttackSimulationOperation.g.cs","v1.0","Remove-MgSecurityAttackSimulationOperation","DELETE","/security/attackSimulation/operations/{param}","matched","Remove-MgSecurityAttackSimulationOperation" +"Security","RemoveMgSecurityAttackSimulationPayload.g.cs","v1.0","Remove-MgSecurityAttackSimulationPayload","DELETE","/security/attackSimulation/payloads/{param}","matched","Remove-MgSecurityAttackSimulationPayload" +"Security","RemoveMgSecurityAttackSimulationTraining.g.cs","v1.0","Remove-MgSecurityAttackSimulationTraining","DELETE","/security/attackSimulation/trainings/{param}","matched","Remove-MgSecurityAttackSimulationTraining" +"Security","RemoveMgSecurityAttackSimulationTrainingLanguageDetail.g.cs","v1.0","Remove-MgSecurityAttackSimulationTrainingLanguageDetail","DELETE","/security/attackSimulation/trainings/{param}/languageDetails/{param}","matched","Remove-MgSecurityAttackSimulationTrainingLanguageDetail" +"Security","RemoveMgSecurityAuditLog.g.cs","v1.0","Remove-MgSecurityAuditLog","DELETE","/security/auditLog","matched","Remove-MgSecurityAuditLog" +"Security","RemoveMgSecurityAuditLogQuery.g.cs","v1.0","Remove-MgSecurityAuditLogQuery","DELETE","/security/auditLog/queries/{param}","matched","Remove-MgSecurityAuditLogQuery" +"Security","RemoveMgSecurityCase.g.cs","v1.0","Remove-MgSecurityCase","DELETE","/security/cases","matched","Remove-MgSecurityCase" +"Security","RemoveMgSecurityCaseEdiscoveryCase.g.cs","v1.0","Remove-MgSecurityCaseEdiscoveryCase","DELETE","/security/cases/ediscoveryCases/{param}","matched","Remove-MgSecurityCaseEdiscoveryCase" +"Security","RemoveMgSecurityCaseEdiscoveryCaseCustodian.g.cs","v1.0","Remove-MgSecurityCaseEdiscoveryCaseCustodian","DELETE","/security/cases/ediscoveryCases/{param}/custodians/{param}","matched","Remove-MgSecurityCaseEdiscoveryCaseCustodian" +"Security","RemoveMgSecurityCaseEdiscoveryCaseCustodianSiteSource.g.cs","v1.0","Remove-MgSecurityCaseEdiscoveryCaseCustodianSiteSource","DELETE","/security/cases/ediscoveryCases/{param}/custodians/{param}/siteSources/{param}","matched","Remove-MgSecurityCaseEdiscoveryCaseCustodianSiteSource" +"Security","RemoveMgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource.g.cs","v1.0","Remove-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource","DELETE","/security/cases/ediscoveryCases/{param}/custodians/{param}/unifiedGroupSources/{param}","matched","Remove-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource" +"Security","RemoveMgSecurityCaseEdiscoveryCaseCustodianUserSource.g.cs","v1.0","Remove-MgSecurityCaseEdiscoveryCaseCustodianUserSource","DELETE","/security/cases/ediscoveryCases/{param}/custodians/{param}/userSources/{param}","matched","Remove-MgSecurityCaseEdiscoveryCaseCustodianUserSource" +"Security","RemoveMgSecurityCaseEdiscoveryCaseMember.g.cs","v1.0","Remove-MgSecurityCaseEdiscoveryCaseMember","DELETE","/security/cases/ediscoveryCases/{param}/caseMembers/{param}","matched","Remove-MgSecurityCaseEdiscoveryCaseMember" +"Security","RemoveMgSecurityCaseEdiscoveryCaseNoncustodialDataSource.g.cs","v1.0","Remove-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource","DELETE","/security/cases/ediscoveryCases/{param}/noncustodialDataSources/{param}","matched","Remove-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource" +"Security","RemoveMgSecurityCaseEdiscoveryCaseNoncustodialDataSourceDataSource.g.cs","v1.0","Remove-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceDataSource","DELETE","/security/cases/ediscoveryCases/{param}/noncustodialDataSources/{param}/dataSource","no-oracle","" +"Security","RemoveMgSecurityCaseEdiscoveryCaseOperation.g.cs","v1.0","Remove-MgSecurityCaseEdiscoveryCaseOperation","DELETE","/security/cases/ediscoveryCases/{param}/operations/{param}","matched","Remove-MgSecurityCaseEdiscoveryCaseOperation" +"Security","RemoveMgSecurityCaseEdiscoveryCaseReviewSet.g.cs","v1.0","Remove-MgSecurityCaseEdiscoveryCaseReviewSet","DELETE","/security/cases/ediscoveryCases/{param}/reviewSets/{param}","matched","Remove-MgSecurityCaseEdiscoveryCaseReviewSet" +"Security","RemoveMgSecurityCaseEdiscoveryCaseReviewSetQuery.g.cs","v1.0","Remove-MgSecurityCaseEdiscoveryCaseReviewSetQuery","DELETE","/security/cases/ediscoveryCases/{param}/reviewSets/{param}/queries/{param}","matched","Remove-MgSecurityCaseEdiscoveryCaseReviewSetQuery" +"Security","RemoveMgSecurityCaseEdiscoveryCaseSearch.g.cs","v1.0","Remove-MgSecurityCaseEdiscoveryCaseSearch","DELETE","/security/cases/ediscoveryCases/{param}/searches/{param}","matched","Remove-MgSecurityCaseEdiscoveryCaseSearch" +"Security","RemoveMgSecurityCaseEdiscoveryCaseSearchAdditionalSource.g.cs","v1.0","Remove-MgSecurityCaseEdiscoveryCaseSearchAdditionalSource","DELETE","/security/cases/ediscoveryCases/{param}/searches/{param}/additionalSources/{param}","matched","Remove-MgSecurityCaseEdiscoveryCaseSearchAdditionalSource" +"Security","RemoveMgSecurityCaseEdiscoveryCaseSetting.g.cs","v1.0","Remove-MgSecurityCaseEdiscoveryCaseSetting","DELETE","/security/cases/ediscoveryCases/{param}/settings","matched","Remove-MgSecurityCaseEdiscoveryCaseSetting" +"Security","RemoveMgSecurityCaseEdiscoveryCaseTag.g.cs","v1.0","Remove-MgSecurityCaseEdiscoveryCaseTag","DELETE","/security/cases/ediscoveryCases/{param}/tags/{param}","matched","Remove-MgSecurityCaseEdiscoveryCaseTag" +"Security","RemoveMgSecurityCollaboration.g.cs","v1.0","Remove-MgSecurityCollaboration","DELETE","/security/collaboration","matched","Remove-MgSecurityCollaboration" +"Security","RemoveMgSecurityCollaborationAnalyzedEmail.g.cs","v1.0","Remove-MgSecurityCollaborationAnalyzedEmail","DELETE","/security/collaboration/analyzedEmails/{param}","matched","Remove-MgSecurityCollaborationAnalyzedEmail" +"Security","RemoveMgSecurityDataSecurityAndGovernance.g.cs","v1.0","Remove-MgSecurityDataSecurityAndGovernance","DELETE","/security/dataSecurityAndGovernance","matched","Remove-MgSecurityDataSecurityAndGovernance" +"Security","RemoveMgSecurityDataSecurityAndGovernanceProtectionScope.g.cs","v1.0","Remove-MgSecurityDataSecurityAndGovernanceProtectionScope","DELETE","/security/dataSecurityAndGovernance/protectionScopes","matched","Remove-MgSecurityDataSecurityAndGovernanceProtectionScope" +"Security","RemoveMgSecurityDataSecurityAndGovernanceSensitivityLabel.g.cs","v1.0","Remove-MgSecurityDataSecurityAndGovernanceSensitivityLabel","DELETE","/security/dataSecurityAndGovernance/sensitivityLabels/{param}","matched","Remove-MgSecurityDataSecurityAndGovernanceSensitivityLabel" +"Security","RemoveMgSecurityDataSecurityAndGovernanceSensitivityLabelSublabel.g.cs","v1.0","Remove-MgSecurityDataSecurityAndGovernanceSensitivityLabelSublabel","DELETE","/security/dataSecurityAndGovernance/sensitivityLabels/{param}/sublabels/{param}","matched","Remove-MgSecurityDataSecurityAndGovernanceSensitivityLabelSublabel" +"Security","RemoveMgSecurityIdentity.g.cs","v1.0","Remove-MgSecurityIdentity","DELETE","/security/identities","matched","Remove-MgSecurityIdentity" +"Security","RemoveMgSecurityIdentityAccount.g.cs","v1.0","Remove-MgSecurityIdentityAccount","DELETE","/security/identities/identityAccounts/{param}","matched","Remove-MgSecurityIdentityAccount" +"Security","RemoveMgSecurityIdentityHealthIssue.g.cs","v1.0","Remove-MgSecurityIdentityHealthIssue","DELETE","/security/identities/healthIssues/{param}","matched","Remove-MgSecurityIdentityHealthIssue" +"Security","RemoveMgSecurityIdentitySensor.g.cs","v1.0","Remove-MgSecurityIdentitySensor","DELETE","/security/identities/sensors/{param}","matched","Remove-MgSecurityIdentitySensor" +"Security","RemoveMgSecurityIdentitySensorCandidate.g.cs","v1.0","Remove-MgSecurityIdentitySensorCandidate","DELETE","/security/identities/sensorCandidates/{param}","matched","Remove-MgSecurityIdentitySensorCandidate" +"Security","RemoveMgSecurityIdentitySensorCandidateActivationConfiguration.g.cs","v1.0","Remove-MgSecurityIdentitySensorCandidateActivationConfiguration","DELETE","/security/identities/sensorCandidateActivationConfiguration","matched","Remove-MgSecurityIdentitySensorCandidateActivationConfiguration" +"Security","RemoveMgSecurityIdentitySetting.g.cs","v1.0","Remove-MgSecurityIdentitySetting","DELETE","/security/identities/settings","matched","Remove-MgSecurityIdentitySetting" +"Security","RemoveMgSecurityIdentitySettingAutoAuditingConfiguration.g.cs","v1.0","Remove-MgSecurityIdentitySettingAutoAuditingConfiguration","DELETE","/security/identities/settings/autoAuditingConfiguration","matched","Remove-MgSecurityIdentitySettingAutoAuditingConfiguration" +"Security","RemoveMgSecurityIncident.g.cs","v1.0","Remove-MgSecurityIncident","DELETE","/security/incidents/{param}","matched","Remove-MgSecurityIncident" +"Security","RemoveMgSecurityLabel.g.cs","v1.0","Remove-MgSecurityLabel","DELETE","/security/labels","matched","Remove-MgSecurityLabel" +"Security","RemoveMgSecurityLabelAuthority.g.cs","v1.0","Remove-MgSecurityLabelAuthority","DELETE","/security/labels/authorities/{param}","matched","Remove-MgSecurityLabelAuthority" +"Security","RemoveMgSecurityLabelCategory.g.cs","v1.0","Remove-MgSecurityLabelCategory","DELETE","/security/labels/categories/{param}","matched","Remove-MgSecurityLabelCategory" +"Security","RemoveMgSecurityLabelCategorySubcategory.g.cs","v1.0","Remove-MgSecurityLabelCategorySubcategory","DELETE","/security/labels/categories/{param}/subcategories/{param}","matched","Remove-MgSecurityLabelCategorySubcategory" +"Security","RemoveMgSecurityLabelCitation.g.cs","v1.0","Remove-MgSecurityLabelCitation","DELETE","/security/labels/citations/{param}","matched","Remove-MgSecurityLabelCitation" +"Security","RemoveMgSecurityLabelDepartment.g.cs","v1.0","Remove-MgSecurityLabelDepartment","DELETE","/security/labels/departments/{param}","matched","Remove-MgSecurityLabelDepartment" +"Security","RemoveMgSecurityLabelFilePlanReference.g.cs","v1.0","Remove-MgSecurityLabelFilePlanReference","DELETE","/security/labels/filePlanReferences/{param}","matched","Remove-MgSecurityLabelFilePlanReference" +"Security","RemoveMgSecurityLabelRetentionLabel.g.cs","v1.0","Remove-MgSecurityLabelRetentionLabel","DELETE","/security/labels/retentionLabels/{param}","matched","Remove-MgSecurityLabelRetentionLabel" +"Security","RemoveMgSecurityLabelRetentionLabelDescriptor.g.cs","v1.0","Remove-MgSecurityLabelRetentionLabelDescriptor","DELETE","/security/labels/retentionLabels/{param}/descriptors","matched","Remove-MgSecurityLabelRetentionLabelDescriptor" +"Security","RemoveMgSecurityLabelRetentionLabelDispositionReviewStage.g.cs","v1.0","Remove-MgSecurityLabelRetentionLabelDispositionReviewStage","DELETE","/security/labels/retentionLabels/{param}/dispositionReviewStages/{param}","matched","Remove-MgSecurityLabelRetentionLabelDispositionReviewStage" +"Security","RemoveMgSecuritySecureScore.g.cs","v1.0","Remove-MgSecuritySecureScore","DELETE","/security/secureScores/{param}","matched","Remove-MgSecuritySecureScore" +"Security","RemoveMgSecuritySecureScoreControlProfile.g.cs","v1.0","Remove-MgSecuritySecureScoreControlProfile","DELETE","/security/secureScoreControlProfiles/{param}","matched","Remove-MgSecuritySecureScoreControlProfile" +"Security","RemoveMgSecuritySubjectRightsRequest.g.cs","v1.0","Remove-MgSecuritySubjectRightsRequest","DELETE","/security/subjectRightsRequests/{param}","matched","Remove-MgSecuritySubjectRightsRequest" +"Security","RemoveMgSecuritySubjectRightsRequestNote.g.cs","v1.0","Remove-MgSecuritySubjectRightsRequestNote","DELETE","/security/subjectRightsRequests/{param}/notes/{param}","matched","Remove-MgSecuritySubjectRightsRequestNote" +"Security","RemoveMgSecurityThreatIntelligence.g.cs","v1.0","Remove-MgSecurityThreatIntelligence","DELETE","/security/threatIntelligence","matched","Remove-MgSecurityThreatIntelligence" +"Security","RemoveMgSecurityThreatIntelligenceArticle.g.cs","v1.0","Remove-MgSecurityThreatIntelligenceArticle","DELETE","/security/threatIntelligence/articles/{param}","matched","Remove-MgSecurityThreatIntelligenceArticle" +"Security","RemoveMgSecurityThreatIntelligenceArticleIndicator.g.cs","v1.0","Remove-MgSecurityThreatIntelligenceArticleIndicator","DELETE","/security/threatIntelligence/articleIndicators/{param}","matched","Remove-MgSecurityThreatIntelligenceArticleIndicator" +"Security","RemoveMgSecurityThreatIntelligenceHost.g.cs","v1.0","Remove-MgSecurityThreatIntelligenceHost","DELETE","/security/threatIntelligence/hosts/{param}","matched","Remove-MgSecurityThreatIntelligenceHost" +"Security","RemoveMgSecurityThreatIntelligenceHostComponent.g.cs","v1.0","Remove-MgSecurityThreatIntelligenceHostComponent","DELETE","/security/threatIntelligence/hostComponents/{param}","matched","Remove-MgSecurityThreatIntelligenceHostComponent" +"Security","RemoveMgSecurityThreatIntelligenceHostCookie.g.cs","v1.0","Remove-MgSecurityThreatIntelligenceHostCookie","DELETE","/security/threatIntelligence/hostCookies/{param}","matched","Remove-MgSecurityThreatIntelligenceHostCookie" +"Security","RemoveMgSecurityThreatIntelligenceHostPair.g.cs","v1.0","Remove-MgSecurityThreatIntelligenceHostPair","DELETE","/security/threatIntelligence/hostPairs/{param}","matched","Remove-MgSecurityThreatIntelligenceHostPair" +"Security","RemoveMgSecurityThreatIntelligenceHostPort.g.cs","v1.0","Remove-MgSecurityThreatIntelligenceHostPort","DELETE","/security/threatIntelligence/hostPorts/{param}","matched","Remove-MgSecurityThreatIntelligenceHostPort" +"Security","RemoveMgSecurityThreatIntelligenceHostReputation.g.cs","v1.0","Remove-MgSecurityThreatIntelligenceHostReputation","DELETE","/security/threatIntelligence/hosts/{param}/reputation","matched","Remove-MgSecurityThreatIntelligenceHostReputation" +"Security","RemoveMgSecurityThreatIntelligenceHostSslCertificate.g.cs","v1.0","Remove-MgSecurityThreatIntelligenceHostSslCertificate","DELETE","/security/threatIntelligence/hostSslCertificates/{param}","matched","Remove-MgSecurityThreatIntelligenceHostSslCertificate" +"Security","RemoveMgSecurityThreatIntelligenceHostTracker.g.cs","v1.0","Remove-MgSecurityThreatIntelligenceHostTracker","DELETE","/security/threatIntelligence/hostTrackers/{param}","matched","Remove-MgSecurityThreatIntelligenceHostTracker" +"Security","RemoveMgSecurityThreatIntelligenceIntelProfile.g.cs","v1.0","Remove-MgSecurityThreatIntelligenceIntelProfile","DELETE","/security/threatIntelligence/intelProfiles/{param}","matched","Remove-MgSecurityThreatIntelligenceIntelProfile" +"Security","RemoveMgSecurityThreatIntelligencePassiveDnsRecord.g.cs","v1.0","Remove-MgSecurityThreatIntelligencePassiveDnsRecord","DELETE","/security/threatIntelligence/passiveDnsRecords/{param}","matched","Remove-MgSecurityThreatIntelligencePassiveDnsRecord" +"Security","RemoveMgSecurityThreatIntelligenceProfileIndicator.g.cs","v1.0","Remove-MgSecurityThreatIntelligenceProfileIndicator","DELETE","/security/threatIntelligence/intelligenceProfileIndicators/{param}","matched","Remove-MgSecurityThreatIntelligenceProfileIndicator" +"Security","RemoveMgSecurityThreatIntelligenceSslCertificate.g.cs","v1.0","Remove-MgSecurityThreatIntelligenceSslCertificate","DELETE","/security/threatIntelligence/sslCertificates/{param}","matched","Remove-MgSecurityThreatIntelligenceSslCertificate" +"Security","RemoveMgSecurityThreatIntelligenceSubdomain.g.cs","v1.0","Remove-MgSecurityThreatIntelligenceSubdomain","DELETE","/security/threatIntelligence/subdomains/{param}","matched","Remove-MgSecurityThreatIntelligenceSubdomain" +"Security","RemoveMgSecurityThreatIntelligenceVulnerability.g.cs","v1.0","Remove-MgSecurityThreatIntelligenceVulnerability","DELETE","/security/threatIntelligence/vulnerabilities/{param}","matched","Remove-MgSecurityThreatIntelligenceVulnerability" +"Security","RemoveMgSecurityThreatIntelligenceVulnerabilityComponent.g.cs","v1.0","Remove-MgSecurityThreatIntelligenceVulnerabilityComponent","DELETE","/security/threatIntelligence/vulnerabilities/{param}/components/{param}","matched","Remove-MgSecurityThreatIntelligenceVulnerabilityComponent" +"Security","RemoveMgSecurityThreatIntelligenceWhoisHistoryRecord.g.cs","v1.0","Remove-MgSecurityThreatIntelligenceWhoisHistoryRecord","DELETE","/security/threatIntelligence/whoisHistoryRecords/{param}","matched","Remove-MgSecurityThreatIntelligenceWhoisHistoryRecord" +"Security","RemoveMgSecurityThreatIntelligenceWhoisRecord.g.cs","v1.0","Remove-MgSecurityThreatIntelligenceWhoisRecord","DELETE","/security/threatIntelligence/whoisRecords/{param}","matched","Remove-MgSecurityThreatIntelligenceWhoisRecord" +"Security","RemoveMgSecurityTrigger.g.cs","v1.0","Remove-MgSecurityTrigger","DELETE","/security/triggers","matched","Remove-MgSecurityTrigger" +"Security","RemoveMgSecurityTriggerRetentionEvent.g.cs","v1.0","Remove-MgSecurityTriggerRetentionEvent","DELETE","/security/triggers/retentionEvents/{param}","matched","Remove-MgSecurityTriggerRetentionEvent" +"Security","RemoveMgSecurityTriggerType.g.cs","v1.0","Remove-MgSecurityTriggerType","DELETE","/security/triggerTypes","matched","Remove-MgSecurityTriggerType" +"Security","RemoveMgSecurityTriggerTypeRetentionEventType.g.cs","v1.0","Remove-MgSecurityTriggerTypeRetentionEventType","DELETE","/security/triggerTypes/retentionEventTypes/{param}","matched","Remove-MgSecurityTriggerTypeRetentionEventType" +"Security","UpdateMgSecurity.g.cs","v1.0","Update-MgSecurity","PATCH","/security","no-oracle","" +"Security","UpdateMgSecurityAlert.g.cs","v1.0","Update-MgSecurityAlert","PATCH","/security/alerts/{param}","matched","Update-MgSecurityAlert" +"Security","UpdateMgSecurityAlertV2.g.cs","v1.0","Update-MgSecurityAlertV2","PATCH","","cast","" +"Security","UpdateMgSecurityAttackSimulation.g.cs","v1.0","Update-MgSecurityAttackSimulation","PATCH","/security/attackSimulation/simulations/{param}","no-oracle","" +"Security","UpdateMgSecurityAttackSimulationAutomation.g.cs","v1.0","Update-MgSecurityAttackSimulationAutomation","PATCH","/security/attackSimulation/simulationAutomations/{param}","matched","Update-MgSecurityAttackSimulationAutomation" +"Security","UpdateMgSecurityAttackSimulationAutomationRun.g.cs","v1.0","Update-MgSecurityAttackSimulationAutomationRun","PATCH","/security/attackSimulation/simulationAutomations/{param}/runs/{param}","matched","Update-MgSecurityAttackSimulationAutomationRun" +"Security","UpdateMgSecurityAttackSimulationEndUserNotification.g.cs","v1.0","Update-MgSecurityAttackSimulationEndUserNotification","PATCH","/security/attackSimulation/endUserNotifications/{param}","matched","Update-MgSecurityAttackSimulationEndUserNotification" +"Security","UpdateMgSecurityAttackSimulationEndUserNotificationDetail.g.cs","v1.0","Update-MgSecurityAttackSimulationEndUserNotificationDetail","PATCH","/security/attackSimulation/endUserNotifications/{param}/details/{param}","matched","Update-MgSecurityAttackSimulationEndUserNotificationDetail" +"Security","UpdateMgSecurityAttackSimulationLandingPage.g.cs","v1.0","Update-MgSecurityAttackSimulationLandingPage","PATCH","/security/attackSimulation/landingPages/{param}","matched","Update-MgSecurityAttackSimulationLandingPage" +"Security","UpdateMgSecurityAttackSimulationLandingPageDetail.g.cs","v1.0","Update-MgSecurityAttackSimulationLandingPageDetail","PATCH","/security/attackSimulation/landingPages/{param}/details/{param}","matched","Update-MgSecurityAttackSimulationLandingPageDetail" +"Security","UpdateMgSecurityAttackSimulationLoginPage.g.cs","v1.0","Update-MgSecurityAttackSimulationLoginPage","PATCH","/security/attackSimulation/loginPages/{param}","matched","Update-MgSecurityAttackSimulationLoginPage" +"Security","UpdateMgSecurityAttackSimulationOperation.g.cs","v1.0","Update-MgSecurityAttackSimulationOperation","PATCH","/security/attackSimulation/operations/{param}","matched","Update-MgSecurityAttackSimulationOperation" +"Security","UpdateMgSecurityAttackSimulationPayload.g.cs","v1.0","Update-MgSecurityAttackSimulationPayload","PATCH","/security/attackSimulation/payloads/{param}","matched","Update-MgSecurityAttackSimulationPayload" +"Security","UpdateMgSecurityAttackSimulationTraining.g.cs","v1.0","Update-MgSecurityAttackSimulationTraining","PATCH","/security/attackSimulation/trainings/{param}","matched","Update-MgSecurityAttackSimulationTraining" +"Security","UpdateMgSecurityAttackSimulationTrainingLanguageDetail.g.cs","v1.0","Update-MgSecurityAttackSimulationTrainingLanguageDetail","PATCH","/security/attackSimulation/trainings/{param}/languageDetails/{param}","matched","Update-MgSecurityAttackSimulationTrainingLanguageDetail" +"Security","UpdateMgSecurityAuditLog.g.cs","v1.0","Update-MgSecurityAuditLog","PATCH","/security/auditLog","matched","Update-MgSecurityAuditLog" +"Security","UpdateMgSecurityCase.g.cs","v1.0","Update-MgSecurityCase","PATCH","/security/cases","matched","Update-MgSecurityCase" +"Security","UpdateMgSecurityCaseEdiscoveryCase.g.cs","v1.0","Update-MgSecurityCaseEdiscoveryCase","PATCH","/security/cases/ediscoveryCases/{param}","matched","Update-MgSecurityCaseEdiscoveryCase" +"Security","UpdateMgSecurityCaseEdiscoveryCaseCustodian.g.cs","v1.0","Update-MgSecurityCaseEdiscoveryCaseCustodian","PATCH","/security/cases/ediscoveryCases/{param}/custodians/{param}","matched","Update-MgSecurityCaseEdiscoveryCaseCustodian" +"Security","UpdateMgSecurityCaseEdiscoveryCaseCustodianSiteSource.g.cs","v1.0","Update-MgSecurityCaseEdiscoveryCaseCustodianSiteSource","PATCH","/security/cases/ediscoveryCases/{param}/custodians/{param}/siteSources/{param}","matched","Update-MgSecurityCaseEdiscoveryCaseCustodianSiteSource" +"Security","UpdateMgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource.g.cs","v1.0","Update-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource","PATCH","/security/cases/ediscoveryCases/{param}/custodians/{param}/unifiedGroupSources/{param}","matched","Update-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource" +"Security","UpdateMgSecurityCaseEdiscoveryCaseCustodianUserSource.g.cs","v1.0","Update-MgSecurityCaseEdiscoveryCaseCustodianUserSource","PATCH","/security/cases/ediscoveryCases/{param}/custodians/{param}/userSources/{param}","matched","Update-MgSecurityCaseEdiscoveryCaseCustodianUserSource" +"Security","UpdateMgSecurityCaseEdiscoveryCaseMember.g.cs","v1.0","Update-MgSecurityCaseEdiscoveryCaseMember","PATCH","/security/cases/ediscoveryCases/{param}/caseMembers/{param}","matched","Update-MgSecurityCaseEdiscoveryCaseMember" +"Security","UpdateMgSecurityCaseEdiscoveryCaseNoncustodialDataSource.g.cs","v1.0","Update-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource","PATCH","/security/cases/ediscoveryCases/{param}/noncustodialDataSources/{param}","matched","Update-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource" +"Security","UpdateMgSecurityCaseEdiscoveryCaseNoncustodialDataSourceDataSource.g.cs","v1.0","Update-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceDataSource","PATCH","/security/cases/ediscoveryCases/{param}/noncustodialDataSources/{param}/dataSource","no-oracle","" +"Security","UpdateMgSecurityCaseEdiscoveryCaseOperation.g.cs","v1.0","Update-MgSecurityCaseEdiscoveryCaseOperation","PATCH","/security/cases/ediscoveryCases/{param}/operations/{param}","matched","Update-MgSecurityCaseEdiscoveryCaseOperation" +"Security","UpdateMgSecurityCaseEdiscoveryCaseReviewSet.g.cs","v1.0","Update-MgSecurityCaseEdiscoveryCaseReviewSet","PATCH","/security/cases/ediscoveryCases/{param}/reviewSets/{param}","matched","Update-MgSecurityCaseEdiscoveryCaseReviewSet" +"Security","UpdateMgSecurityCaseEdiscoveryCaseReviewSetQuery.g.cs","v1.0","Update-MgSecurityCaseEdiscoveryCaseReviewSetQuery","PATCH","/security/cases/ediscoveryCases/{param}/reviewSets/{param}/queries/{param}","matched","Update-MgSecurityCaseEdiscoveryCaseReviewSetQuery" +"Security","UpdateMgSecurityCaseEdiscoveryCaseSearch.g.cs","v1.0","Update-MgSecurityCaseEdiscoveryCaseSearch","PATCH","/security/cases/ediscoveryCases/{param}/searches/{param}","matched","Update-MgSecurityCaseEdiscoveryCaseSearch" +"Security","UpdateMgSecurityCaseEdiscoveryCaseSearchAdditionalSource.g.cs","v1.0","Update-MgSecurityCaseEdiscoveryCaseSearchAdditionalSource","PATCH","/security/cases/ediscoveryCases/{param}/searches/{param}/additionalSources/{param}","matched","Update-MgSecurityCaseEdiscoveryCaseSearchAdditionalSource" +"Security","UpdateMgSecurityCaseEdiscoveryCaseSetting.g.cs","v1.0","Update-MgSecurityCaseEdiscoveryCaseSetting","PATCH","/security/cases/ediscoveryCases/{param}/settings","matched","Update-MgSecurityCaseEdiscoveryCaseSetting" +"Security","UpdateMgSecurityCaseEdiscoveryCaseTag.g.cs","v1.0","Update-MgSecurityCaseEdiscoveryCaseTag","PATCH","/security/cases/ediscoveryCases/{param}/tags/{param}","matched","Update-MgSecurityCaseEdiscoveryCaseTag" +"Security","UpdateMgSecurityCollaboration.g.cs","v1.0","Update-MgSecurityCollaboration","PATCH","/security/collaboration","matched","Update-MgSecurityCollaboration" +"Security","UpdateMgSecurityCollaborationAnalyzedEmail.g.cs","v1.0","Update-MgSecurityCollaborationAnalyzedEmail","PATCH","/security/collaboration/analyzedEmails/{param}","matched","Update-MgSecurityCollaborationAnalyzedEmail" +"Security","UpdateMgSecurityDataSecurityAndGovernance.g.cs","v1.0","Update-MgSecurityDataSecurityAndGovernance","PATCH","/security/dataSecurityAndGovernance","matched","Update-MgSecurityDataSecurityAndGovernance" +"Security","UpdateMgSecurityDataSecurityAndGovernanceProtectionScope.g.cs","v1.0","Update-MgSecurityDataSecurityAndGovernanceProtectionScope","PATCH","/security/dataSecurityAndGovernance/protectionScopes","matched","Update-MgSecurityDataSecurityAndGovernanceProtectionScope" +"Security","UpdateMgSecurityDataSecurityAndGovernanceSensitivityLabel.g.cs","v1.0","Update-MgSecurityDataSecurityAndGovernanceSensitivityLabel","PATCH","/security/dataSecurityAndGovernance/sensitivityLabels/{param}","matched","Update-MgSecurityDataSecurityAndGovernanceSensitivityLabel" +"Security","UpdateMgSecurityDataSecurityAndGovernanceSensitivityLabelSublabel.g.cs","v1.0","Update-MgSecurityDataSecurityAndGovernanceSensitivityLabelSublabel","PATCH","/security/dataSecurityAndGovernance/sensitivityLabels/{param}/sublabels/{param}","matched","Update-MgSecurityDataSecurityAndGovernanceSensitivityLabelSublabel" +"Security","UpdateMgSecurityIdentity.g.cs","v1.0","Update-MgSecurityIdentity","PATCH","/security/identities","matched","Update-MgSecurityIdentity" +"Security","UpdateMgSecurityIdentityAccount.g.cs","v1.0","Update-MgSecurityIdentityAccount","PATCH","/security/identities/identityAccounts/{param}","matched","Update-MgSecurityIdentityAccount" +"Security","UpdateMgSecurityIdentityHealthIssue.g.cs","v1.0","Update-MgSecurityIdentityHealthIssue","PATCH","/security/identities/healthIssues/{param}","matched","Update-MgSecurityIdentityHealthIssue" +"Security","UpdateMgSecurityIdentitySensor.g.cs","v1.0","Update-MgSecurityIdentitySensor","PATCH","/security/identities/sensors/{param}","matched","Update-MgSecurityIdentitySensor" +"Security","UpdateMgSecurityIdentitySensorCandidate.g.cs","v1.0","Update-MgSecurityIdentitySensorCandidate","PATCH","/security/identities/sensorCandidates/{param}","matched","Update-MgSecurityIdentitySensorCandidate" +"Security","UpdateMgSecurityIdentitySensorCandidateActivationConfiguration.g.cs","v1.0","Update-MgSecurityIdentitySensorCandidateActivationConfiguration","PATCH","/security/identities/sensorCandidateActivationConfiguration","matched","Update-MgSecurityIdentitySensorCandidateActivationConfiguration" +"Security","UpdateMgSecurityIdentitySetting.g.cs","v1.0","Update-MgSecurityIdentitySetting","PATCH","/security/identities/settings","matched","Update-MgSecurityIdentitySetting" +"Security","UpdateMgSecurityIdentitySettingAutoAuditingConfiguration.g.cs","v1.0","Update-MgSecurityIdentitySettingAutoAuditingConfiguration","PATCH","/security/identities/settings/autoAuditingConfiguration","matched","Update-MgSecurityIdentitySettingAutoAuditingConfiguration" +"Security","UpdateMgSecurityIncident.g.cs","v1.0","Update-MgSecurityIncident","PATCH","/security/incidents/{param}","matched","Update-MgSecurityIncident" +"Security","UpdateMgSecurityLabel.g.cs","v1.0","Update-MgSecurityLabel","PATCH","/security/labels","matched","Update-MgSecurityLabel" +"Security","UpdateMgSecurityLabelAuthority.g.cs","v1.0","Update-MgSecurityLabelAuthority","PATCH","/security/labels/authorities/{param}","matched","Update-MgSecurityLabelAuthority" +"Security","UpdateMgSecurityLabelCategory.g.cs","v1.0","Update-MgSecurityLabelCategory","PATCH","/security/labels/categories/{param}","matched","Update-MgSecurityLabelCategory" +"Security","UpdateMgSecurityLabelCategorySubcategory.g.cs","v1.0","Update-MgSecurityLabelCategorySubcategory","PATCH","/security/labels/categories/{param}/subcategories/{param}","matched","Update-MgSecurityLabelCategorySubcategory" +"Security","UpdateMgSecurityLabelCitation.g.cs","v1.0","Update-MgSecurityLabelCitation","PATCH","/security/labels/citations/{param}","matched","Update-MgSecurityLabelCitation" +"Security","UpdateMgSecurityLabelDepartment.g.cs","v1.0","Update-MgSecurityLabelDepartment","PATCH","/security/labels/departments/{param}","matched","Update-MgSecurityLabelDepartment" +"Security","UpdateMgSecurityLabelFilePlanReference.g.cs","v1.0","Update-MgSecurityLabelFilePlanReference","PATCH","/security/labels/filePlanReferences/{param}","matched","Update-MgSecurityLabelFilePlanReference" +"Security","UpdateMgSecurityLabelRetentionLabel.g.cs","v1.0","Update-MgSecurityLabelRetentionLabel","PATCH","/security/labels/retentionLabels/{param}","matched","Update-MgSecurityLabelRetentionLabel" +"Security","UpdateMgSecurityLabelRetentionLabelDescriptor.g.cs","v1.0","Update-MgSecurityLabelRetentionLabelDescriptor","PATCH","/security/labels/retentionLabels/{param}/descriptors","matched","Update-MgSecurityLabelRetentionLabelDescriptor" +"Security","UpdateMgSecurityLabelRetentionLabelDispositionReviewStage.g.cs","v1.0","Update-MgSecurityLabelRetentionLabelDispositionReviewStage","PATCH","/security/labels/retentionLabels/{param}/dispositionReviewStages/{param}","matched","Update-MgSecurityLabelRetentionLabelDispositionReviewStage" +"Security","UpdateMgSecuritySecureScore.g.cs","v1.0","Update-MgSecuritySecureScore","PATCH","/security/secureScores/{param}","matched","Update-MgSecuritySecureScore" +"Security","UpdateMgSecuritySecureScoreControlProfile.g.cs","v1.0","Update-MgSecuritySecureScoreControlProfile","PATCH","/security/secureScoreControlProfiles/{param}","matched","Update-MgSecuritySecureScoreControlProfile" +"Security","UpdateMgSecuritySubjectRightsRequest.g.cs","v1.0","Update-MgSecuritySubjectRightsRequest","PATCH","/security/subjectRightsRequests/{param}","matched","Update-MgSecuritySubjectRightsRequest" +"Security","UpdateMgSecuritySubjectRightsRequestApproverMailboxSetting.g.cs","v1.0","Update-MgSecuritySubjectRightsRequestApproverMailboxSetting","PATCH","/security/subjectRightsRequests/{param}/approvers/{param}/mailboxSettings","matched","Update-MgSecuritySubjectRightsRequestApproverMailboxSetting" +"Security","UpdateMgSecuritySubjectRightsRequestCollaboratorMailboxSetting.g.cs","v1.0","Update-MgSecuritySubjectRightsRequestCollaboratorMailboxSetting","PATCH","/security/subjectRightsRequests/{param}/collaborators/{param}/mailboxSettings","matched","Update-MgSecuritySubjectRightsRequestCollaboratorMailboxSetting" +"Security","UpdateMgSecuritySubjectRightsRequestNote.g.cs","v1.0","Update-MgSecuritySubjectRightsRequestNote","PATCH","/security/subjectRightsRequests/{param}/notes/{param}","matched","Update-MgSecuritySubjectRightsRequestNote" +"Security","UpdateMgSecurityThreatIntelligence.g.cs","v1.0","Update-MgSecurityThreatIntelligence","PATCH","/security/threatIntelligence","matched","Update-MgSecurityThreatIntelligence" +"Security","UpdateMgSecurityThreatIntelligenceArticle.g.cs","v1.0","Update-MgSecurityThreatIntelligenceArticle","PATCH","/security/threatIntelligence/articles/{param}","matched","Update-MgSecurityThreatIntelligenceArticle" +"Security","UpdateMgSecurityThreatIntelligenceArticleIndicator.g.cs","v1.0","Update-MgSecurityThreatIntelligenceArticleIndicator","PATCH","/security/threatIntelligence/articleIndicators/{param}","matched","Update-MgSecurityThreatIntelligenceArticleIndicator" +"Security","UpdateMgSecurityThreatIntelligenceHost.g.cs","v1.0","Update-MgSecurityThreatIntelligenceHost","PATCH","/security/threatIntelligence/hosts/{param}","matched","Update-MgSecurityThreatIntelligenceHost" +"Security","UpdateMgSecurityThreatIntelligenceHostComponent.g.cs","v1.0","Update-MgSecurityThreatIntelligenceHostComponent","PATCH","/security/threatIntelligence/hostComponents/{param}","matched","Update-MgSecurityThreatIntelligenceHostComponent" +"Security","UpdateMgSecurityThreatIntelligenceHostCookie.g.cs","v1.0","Update-MgSecurityThreatIntelligenceHostCookie","PATCH","/security/threatIntelligence/hostCookies/{param}","matched","Update-MgSecurityThreatIntelligenceHostCookie" +"Security","UpdateMgSecurityThreatIntelligenceHostPair.g.cs","v1.0","Update-MgSecurityThreatIntelligenceHostPair","PATCH","/security/threatIntelligence/hostPairs/{param}","matched","Update-MgSecurityThreatIntelligenceHostPair" +"Security","UpdateMgSecurityThreatIntelligenceHostPort.g.cs","v1.0","Update-MgSecurityThreatIntelligenceHostPort","PATCH","/security/threatIntelligence/hostPorts/{param}","matched","Update-MgSecurityThreatIntelligenceHostPort" +"Security","UpdateMgSecurityThreatIntelligenceHostReputation.g.cs","v1.0","Update-MgSecurityThreatIntelligenceHostReputation","PATCH","/security/threatIntelligence/hosts/{param}/reputation","matched","Update-MgSecurityThreatIntelligenceHostReputation" +"Security","UpdateMgSecurityThreatIntelligenceHostSslCertificate.g.cs","v1.0","Update-MgSecurityThreatIntelligenceHostSslCertificate","PATCH","/security/threatIntelligence/hostSslCertificates/{param}","matched","Update-MgSecurityThreatIntelligenceHostSslCertificate" +"Security","UpdateMgSecurityThreatIntelligenceHostTracker.g.cs","v1.0","Update-MgSecurityThreatIntelligenceHostTracker","PATCH","/security/threatIntelligence/hostTrackers/{param}","matched","Update-MgSecurityThreatIntelligenceHostTracker" +"Security","UpdateMgSecurityThreatIntelligenceIntelProfile.g.cs","v1.0","Update-MgSecurityThreatIntelligenceIntelProfile","PATCH","/security/threatIntelligence/intelProfiles/{param}","matched","Update-MgSecurityThreatIntelligenceIntelProfile" +"Security","UpdateMgSecurityThreatIntelligencePassiveDnsRecord.g.cs","v1.0","Update-MgSecurityThreatIntelligencePassiveDnsRecord","PATCH","/security/threatIntelligence/passiveDnsRecords/{param}","matched","Update-MgSecurityThreatIntelligencePassiveDnsRecord" +"Security","UpdateMgSecurityThreatIntelligenceProfileIndicator.g.cs","v1.0","Update-MgSecurityThreatIntelligenceProfileIndicator","PATCH","/security/threatIntelligence/intelligenceProfileIndicators/{param}","matched","Update-MgSecurityThreatIntelligenceProfileIndicator" +"Security","UpdateMgSecurityThreatIntelligenceSslCertificate.g.cs","v1.0","Update-MgSecurityThreatIntelligenceSslCertificate","PATCH","/security/threatIntelligence/sslCertificates/{param}","matched","Update-MgSecurityThreatIntelligenceSslCertificate" +"Security","UpdateMgSecurityThreatIntelligenceSubdomain.g.cs","v1.0","Update-MgSecurityThreatIntelligenceSubdomain","PATCH","/security/threatIntelligence/subdomains/{param}","matched","Update-MgSecurityThreatIntelligenceSubdomain" +"Security","UpdateMgSecurityThreatIntelligenceVulnerability.g.cs","v1.0","Update-MgSecurityThreatIntelligenceVulnerability","PATCH","/security/threatIntelligence/vulnerabilities/{param}","matched","Update-MgSecurityThreatIntelligenceVulnerability" +"Security","UpdateMgSecurityThreatIntelligenceVulnerabilityComponent.g.cs","v1.0","Update-MgSecurityThreatIntelligenceVulnerabilityComponent","PATCH","/security/threatIntelligence/vulnerabilities/{param}/components/{param}","matched","Update-MgSecurityThreatIntelligenceVulnerabilityComponent" +"Security","UpdateMgSecurityThreatIntelligenceWhoisHistoryRecord.g.cs","v1.0","Update-MgSecurityThreatIntelligenceWhoisHistoryRecord","PATCH","/security/threatIntelligence/whoisHistoryRecords/{param}","matched","Update-MgSecurityThreatIntelligenceWhoisHistoryRecord" +"Security","UpdateMgSecurityThreatIntelligenceWhoisRecord.g.cs","v1.0","Update-MgSecurityThreatIntelligenceWhoisRecord","PATCH","/security/threatIntelligence/whoisRecords/{param}","matched","Update-MgSecurityThreatIntelligenceWhoisRecord" +"Security","UpdateMgSecurityTrigger.g.cs","v1.0","Update-MgSecurityTrigger","PATCH","/security/triggers","matched","Update-MgSecurityTrigger" +"Security","UpdateMgSecurityTriggerRetentionEvent.g.cs","v1.0","Update-MgSecurityTriggerRetentionEvent","PATCH","/security/triggers/retentionEvents/{param}","matched","Update-MgSecurityTriggerRetentionEvent" +"Security","UpdateMgSecurityTriggerType.g.cs","v1.0","Update-MgSecurityTriggerType","PATCH","/security/triggerTypes","matched","Update-MgSecurityTriggerType" +"Security","UpdateMgSecurityTriggerTypeRetentionEventType.g.cs","v1.0","Update-MgSecurityTriggerTypeRetentionEventType","PATCH","/security/triggerTypes/retentionEventTypes/{param}","matched","Update-MgSecurityTriggerTypeRetentionEventType" +"Sites","GetMgAdminSharepoint.g.cs","v1.0","Get-MgAdminSharepoint","GET","/admin/sharepoint","matched","Get-MgAdminSharepoint" +"Sites","GetMgAdminSharepointSetting.g.cs","v1.0","Get-MgAdminSharepointSetting","GET","/admin/sharepoint/settings","matched","Get-MgAdminSharepointSetting" +"Sites","GetMgGroupSite_Get.g.cs","v1.0","Get-MgGroupSite","GET","/groups/{param}/sites/{param}","matched","Get-MgGroupSite" +"Sites","GetMgGroupSite_List.g.cs","v1.0","Get-MgGroupSite","GET","/groups/{param}/sites","matched","Get-MgGroupSite" +"Sites","GetMgGroupSite.g.cs","v1.0","Get-MgGroupSite","","","dispatcher","" +"Sites","GetMgGroupSiteAnalytic.g.cs","v1.0","Get-MgGroupSiteAnalytic","GET","/groups/{param}/sites/{param}/analytics","matched","Get-MgGroupSiteAnalytic" +"Sites","GetMgGroupSiteAnalyticAllTime.g.cs","v1.0","Get-MgGroupSiteAnalyticAllTime","GET","/groups/{param}/sites/{param}/analytics/allTime","mismatch","Get-MgGroupSiteAnalyticTime" +"Sites","GetMgGroupSiteAnalyticItemActivityStat_Get.g.cs","v1.0","Get-MgGroupSiteAnalyticItemActivityStat","GET","/groups/{param}/sites/{param}/analytics/itemActivityStats/{param}","matched","Get-MgGroupSiteAnalyticItemActivityStat" +"Sites","GetMgGroupSiteAnalyticItemActivityStat_List.g.cs","v1.0","Get-MgGroupSiteAnalyticItemActivityStat","GET","/groups/{param}/sites/{param}/analytics/itemActivityStats","matched","Get-MgGroupSiteAnalyticItemActivityStat" +"Sites","GetMgGroupSiteAnalyticItemActivityStat.g.cs","v1.0","Get-MgGroupSiteAnalyticItemActivityStat","","","dispatcher","" +"Sites","GetMgGroupSiteAnalyticItemActivityStatActivity_Get.g.cs","v1.0","Get-MgGroupSiteAnalyticItemActivityStatActivity","GET","/groups/{param}/sites/{param}/analytics/itemActivityStats/{param}/activities/{param}","matched","Get-MgGroupSiteAnalyticItemActivityStatActivity" +"Sites","GetMgGroupSiteAnalyticItemActivityStatActivity_List.g.cs","v1.0","Get-MgGroupSiteAnalyticItemActivityStatActivity","GET","/groups/{param}/sites/{param}/analytics/itemActivityStats/{param}/activities","matched","Get-MgGroupSiteAnalyticItemActivityStatActivity" +"Sites","GetMgGroupSiteAnalyticItemActivityStatActivity.g.cs","v1.0","Get-MgGroupSiteAnalyticItemActivityStatActivity","","","dispatcher","" +"Sites","GetMgGroupSiteAnalyticItemActivityStatActivityCount.g.cs","v1.0","Get-MgGroupSiteAnalyticItemActivityStatActivityCount","GET","/groups/{param}/sites/{param}/analytics/itemActivityStats/{param}/activities/$count","matched","Get-MgGroupSiteAnalyticItemActivityStatActivityCount" +"Sites","GetMgGroupSiteAnalyticItemActivityStatActivityDriveItem.g.cs","v1.0","Get-MgGroupSiteAnalyticItemActivityStatActivityDriveItem","GET","/groups/{param}/sites/{param}/analytics/itemActivityStats/{param}/activities/{param}/driveItem","matched","Get-MgGroupSiteAnalyticItemActivityStatActivityDriveItem" +"Sites","GetMgGroupSiteAnalyticItemActivityStatCount.g.cs","v1.0","Get-MgGroupSiteAnalyticItemActivityStatCount","GET","/groups/{param}/sites/{param}/analytics/itemActivityStats/$count","matched","Get-MgGroupSiteAnalyticItemActivityStatCount" +"Sites","GetMgGroupSiteAnalyticLastSevenDay.g.cs","v1.0","Get-MgGroupSiteAnalyticLastSevenDay","GET","/groups/{param}/sites/{param}/analytics/lastSevenDays","matched","Get-MgGroupSiteAnalyticLastSevenDay" +"Sites","GetMgGroupSiteColumn_Get.g.cs","v1.0","Get-MgGroupSiteColumn","GET","/groups/{param}/sites/{param}/columns/{param}","matched","Get-MgGroupSiteColumn" +"Sites","GetMgGroupSiteColumn_List.g.cs","v1.0","Get-MgGroupSiteColumn","GET","/groups/{param}/sites/{param}/columns","matched","Get-MgGroupSiteColumn" +"Sites","GetMgGroupSiteColumn.g.cs","v1.0","Get-MgGroupSiteColumn","","","dispatcher","" +"Sites","GetMgGroupSiteColumnCount.g.cs","v1.0","Get-MgGroupSiteColumnCount","GET","/groups/{param}/sites/{param}/columns/$count","matched","Get-MgGroupSiteColumnCount" +"Sites","GetMgGroupSiteColumnSourceColumn.g.cs","v1.0","Get-MgGroupSiteColumnSourceColumn","GET","/groups/{param}/sites/{param}/columns/{param}/sourceColumn","matched","Get-MgGroupSiteColumnSourceColumn" +"Sites","GetMgGroupSiteContentType_Get.g.cs","v1.0","Get-MgGroupSiteContentType","GET","/groups/{param}/sites/{param}/contentTypes/{param}","matched","Get-MgGroupSiteContentType" +"Sites","GetMgGroupSiteContentType_List.g.cs","v1.0","Get-MgGroupSiteContentType","GET","/groups/{param}/sites/{param}/contentTypes","matched","Get-MgGroupSiteContentType" +"Sites","GetMgGroupSiteContentType.g.cs","v1.0","Get-MgGroupSiteContentType","","","dispatcher","" +"Sites","GetMgGroupSiteContentTypeBase.g.cs","v1.0","Get-MgGroupSiteContentTypeBase","GET","/groups/{param}/sites/{param}/contentTypes/{param}/base","matched","Get-MgGroupSiteContentTypeBase" +"Sites","GetMgGroupSiteContentTypeBaseType_Get.g.cs","v1.0","Get-MgGroupSiteContentTypeBaseType","GET","/groups/{param}/sites/{param}/contentTypes/{param}/baseTypes/{param}","matched","Get-MgGroupSiteContentTypeBaseType" +"Sites","GetMgGroupSiteContentTypeBaseType_List.g.cs","v1.0","Get-MgGroupSiteContentTypeBaseType","GET","/groups/{param}/sites/{param}/contentTypes/{param}/baseTypes","matched","Get-MgGroupSiteContentTypeBaseType" +"Sites","GetMgGroupSiteContentTypeBaseType.g.cs","v1.0","Get-MgGroupSiteContentTypeBaseType","","","dispatcher","" +"Sites","GetMgGroupSiteContentTypeBaseTypeCount.g.cs","v1.0","Get-MgGroupSiteContentTypeBaseTypeCount","GET","/groups/{param}/sites/{param}/contentTypes/{param}/baseTypes/$count","matched","Get-MgGroupSiteContentTypeBaseTypeCount" +"Sites","GetMgGroupSiteContentTypeColumn_Get.g.cs","v1.0","Get-MgGroupSiteContentTypeColumn","GET","/groups/{param}/sites/{param}/contentTypes/{param}/columns/{param}","matched","Get-MgGroupSiteContentTypeColumn" +"Sites","GetMgGroupSiteContentTypeColumn_List.g.cs","v1.0","Get-MgGroupSiteContentTypeColumn","GET","/groups/{param}/sites/{param}/contentTypes/{param}/columns","matched","Get-MgGroupSiteContentTypeColumn" +"Sites","GetMgGroupSiteContentTypeColumn.g.cs","v1.0","Get-MgGroupSiteContentTypeColumn","","","dispatcher","" +"Sites","GetMgGroupSiteContentTypeColumnCount.g.cs","v1.0","Get-MgGroupSiteContentTypeColumnCount","GET","/groups/{param}/sites/{param}/contentTypes/{param}/columns/$count","matched","Get-MgGroupSiteContentTypeColumnCount" +"Sites","GetMgGroupSiteContentTypeColumnLink_Get.g.cs","v1.0","Get-MgGroupSiteContentTypeColumnLink","GET","/groups/{param}/sites/{param}/contentTypes/{param}/columnLinks/{param}","matched","Get-MgGroupSiteContentTypeColumnLink" +"Sites","GetMgGroupSiteContentTypeColumnLink_List.g.cs","v1.0","Get-MgGroupSiteContentTypeColumnLink","GET","/groups/{param}/sites/{param}/contentTypes/{param}/columnLinks","matched","Get-MgGroupSiteContentTypeColumnLink" +"Sites","GetMgGroupSiteContentTypeColumnLink.g.cs","v1.0","Get-MgGroupSiteContentTypeColumnLink","","","dispatcher","" +"Sites","GetMgGroupSiteContentTypeColumnLinkCount.g.cs","v1.0","Get-MgGroupSiteContentTypeColumnLinkCount","GET","/groups/{param}/sites/{param}/contentTypes/{param}/columnLinks/$count","matched","Get-MgGroupSiteContentTypeColumnLinkCount" +"Sites","GetMgGroupSiteContentTypeColumnPosition_Get.g.cs","v1.0","Get-MgGroupSiteContentTypeColumnPosition","GET","/groups/{param}/sites/{param}/contentTypes/{param}/columnPositions/{param}","matched","Get-MgGroupSiteContentTypeColumnPosition" +"Sites","GetMgGroupSiteContentTypeColumnPosition_List.g.cs","v1.0","Get-MgGroupSiteContentTypeColumnPosition","GET","/groups/{param}/sites/{param}/contentTypes/{param}/columnPositions","matched","Get-MgGroupSiteContentTypeColumnPosition" +"Sites","GetMgGroupSiteContentTypeColumnPosition.g.cs","v1.0","Get-MgGroupSiteContentTypeColumnPosition","","","dispatcher","" +"Sites","GetMgGroupSiteContentTypeColumnPositionCount.g.cs","v1.0","Get-MgGroupSiteContentTypeColumnPositionCount","GET","/groups/{param}/sites/{param}/contentTypes/{param}/columnPositions/$count","matched","Get-MgGroupSiteContentTypeColumnPositionCount" +"Sites","GetMgGroupSiteContentTypeColumnSourceColumn.g.cs","v1.0","Get-MgGroupSiteContentTypeColumnSourceColumn","GET","/groups/{param}/sites/{param}/contentTypes/{param}/columns/{param}/sourceColumn","matched","Get-MgGroupSiteContentTypeColumnSourceColumn" +"Sites","GetMgGroupSiteContentTypeCount.g.cs","v1.0","Get-MgGroupSiteContentTypeCount","GET","/groups/{param}/sites/{param}/contentTypes/$count","matched","Get-MgGroupSiteContentTypeCount" +"Sites","GetMgGroupSiteContentTypeGetCompatibleHubContentTypes.g.cs","v1.0","Get-MgGroupSiteContentTypeGetCompatibleHubContentTypes","GET","/groups/{param}/sites/{param}/contentTypes/getCompatibleHubContentTypes","mismatch","Get-MgGroupSiteContentTypeCompatibleHubContentType" +"Sites","GetMgGroupSiteContentTypeIsPublished.g.cs","v1.0","Get-MgGroupSiteContentTypeIsPublished","GET","/groups/{param}/sites/{param}/contentTypes/{param}/isPublished","mismatch","Test-MgGroupSiteContentTypePublished" +"Sites","GetMgGroupSiteCount.g.cs","v1.0","Get-MgGroupSiteCount","GET","/groups/{param}/sites/{param}/sites/$count","mismatch","Get-MgGroupSubSiteCount" +"Sites","GetMgGroupSiteCreatedByUser.g.cs","v1.0","Get-MgGroupSiteCreatedByUser","GET","/groups/{param}/sites/{param}/createdByUser","matched","Get-MgGroupSiteCreatedByUser" +"Sites","GetMgGroupSiteCreatedByUserMailboxSetting.g.cs","v1.0","Get-MgGroupSiteCreatedByUserMailboxSetting","GET","/groups/{param}/sites/{param}/createdByUser/mailboxSettings","matched","Get-MgGroupSiteCreatedByUserMailboxSetting" +"Sites","GetMgGroupSiteCreatedByUserServiceProvisioningError.g.cs","v1.0","Get-MgGroupSiteCreatedByUserServiceProvisioningError","GET","/groups/{param}/sites/{param}/createdByUser/serviceProvisioningErrors","matched","Get-MgGroupSiteCreatedByUserServiceProvisioningError" +"Sites","GetMgGroupSiteCreatedByUserServiceProvisioningErrorCount.g.cs","v1.0","Get-MgGroupSiteCreatedByUserServiceProvisioningErrorCount","GET","/groups/{param}/sites/{param}/createdByUser/serviceProvisioningErrors/$count","matched","Get-MgGroupSiteCreatedByUserServiceProvisioningErrorCount" +"Sites","GetMgGroupSiteDefaultDrive.g.cs","v1.0","Get-MgGroupSiteDefaultDrive","GET","/groups/{param}/sites/{param}/drive","matched","Get-MgGroupSiteDefaultDrive" +"Sites","GetMgGroupSiteDelta.g.cs","v1.0","Get-MgGroupSiteDelta","GET","/groups/{param}/sites/delta","matched","Get-MgGroupSiteDelta" +"Sites","GetMgGroupSiteDrive_Get.g.cs","v1.0","Get-MgGroupSiteDrive","GET","/groups/{param}/sites/{param}/drives/{param}","matched","Get-MgGroupSiteDrive" +"Sites","GetMgGroupSiteDrive_List.g.cs","v1.0","Get-MgGroupSiteDrive","GET","/groups/{param}/sites/{param}/drives","matched","Get-MgGroupSiteDrive" +"Sites","GetMgGroupSiteDrive.g.cs","v1.0","Get-MgGroupSiteDrive","","","dispatcher","" +"Sites","GetMgGroupSiteDriveCount.g.cs","v1.0","Get-MgGroupSiteDriveCount","GET","/groups/{param}/sites/{param}/drives/$count","matched","Get-MgGroupSiteDriveCount" +"Sites","GetMgGroupSiteExternalColumn_Get.g.cs","v1.0","Get-MgGroupSiteExternalColumn","GET","/groups/{param}/sites/{param}/externalColumns/{param}","matched","Get-MgGroupSiteExternalColumn" +"Sites","GetMgGroupSiteExternalColumn_List.g.cs","v1.0","Get-MgGroupSiteExternalColumn","GET","/groups/{param}/sites/{param}/externalColumns","matched","Get-MgGroupSiteExternalColumn" +"Sites","GetMgGroupSiteExternalColumn.g.cs","v1.0","Get-MgGroupSiteExternalColumn","","","dispatcher","" +"Sites","GetMgGroupSiteExternalColumnCount.g.cs","v1.0","Get-MgGroupSiteExternalColumnCount","GET","/groups/{param}/sites/{param}/externalColumns/$count","matched","Get-MgGroupSiteExternalColumnCount" +"Sites","GetMgGroupSiteGetActivitiesByInterval.g.cs","v1.0","Get-MgGroupSiteGetActivitiesByInterval","GET","/groups/{param}/sites/{param}/getActivitiesByInterval","mismatch","Get-MgGroupSiteActivityByInterval" +"Sites","GetMgGroupSiteGetActivitiesByIntervalWithStartDateTimeWithEndDateTimeWithInterval.g.cs","v1.0","Get-MgGroupSiteGetActivitiesByIntervalWithStartDateTimeWithEndDateTimeWithInterval","","","parameterized-function","" +"Sites","GetMgGroupSiteGetAllSites.g.cs","v1.0","Get-MgGroupSiteGetAllSites","GET","/groups/{param}/sites/getAllSites","no-oracle","" +"Sites","GetMgGroupSiteGetApplicableContentTypesForListWithListId.g.cs","v1.0","Get-MgGroupSiteGetApplicableContentTypesForListWithListId","","","parameterized-function","" +"Sites","GetMgGroupSiteGetByPathWithPath.g.cs","v1.0","Get-MgGroupSiteGetByPathWithPath","","","parameterized-function","" +"Sites","GetMgGroupSiteItem_Get.g.cs","v1.0","Get-MgGroupSiteItem","GET","/groups/{param}/sites/{param}/items/{param}","matched","Get-MgGroupSiteItem" +"Sites","GetMgGroupSiteItem_List.g.cs","v1.0","Get-MgGroupSiteItem","GET","/groups/{param}/sites/{param}/items","matched","Get-MgGroupSiteItem" +"Sites","GetMgGroupSiteItem.g.cs","v1.0","Get-MgGroupSiteItem","","","dispatcher","" +"Sites","GetMgGroupSiteItemCount.g.cs","v1.0","Get-MgGroupSiteItemCount","GET","/groups/{param}/sites/{param}/items/$count","matched","Get-MgGroupSiteItemCount" +"Sites","GetMgGroupSiteLastModifiedByUser.g.cs","v1.0","Get-MgGroupSiteLastModifiedByUser","GET","/groups/{param}/sites/{param}/lastModifiedByUser","matched","Get-MgGroupSiteLastModifiedByUser" +"Sites","GetMgGroupSiteLastModifiedByUserMailboxSetting.g.cs","v1.0","Get-MgGroupSiteLastModifiedByUserMailboxSetting","GET","/groups/{param}/sites/{param}/lastModifiedByUser/mailboxSettings","matched","Get-MgGroupSiteLastModifiedByUserMailboxSetting" +"Sites","GetMgGroupSiteLastModifiedByUserServiceProvisioningError.g.cs","v1.0","Get-MgGroupSiteLastModifiedByUserServiceProvisioningError","GET","/groups/{param}/sites/{param}/lastModifiedByUser/serviceProvisioningErrors","matched","Get-MgGroupSiteLastModifiedByUserServiceProvisioningError" +"Sites","GetMgGroupSiteLastModifiedByUserServiceProvisioningErrorCount.g.cs","v1.0","Get-MgGroupSiteLastModifiedByUserServiceProvisioningErrorCount","GET","/groups/{param}/sites/{param}/lastModifiedByUser/serviceProvisioningErrors/$count","matched","Get-MgGroupSiteLastModifiedByUserServiceProvisioningErrorCount" +"Sites","GetMgGroupSiteList_Get.g.cs","v1.0","Get-MgGroupSiteList","GET","/groups/{param}/sites/{param}/lists/{param}","matched","Get-MgGroupSiteList" +"Sites","GetMgGroupSiteList_List.g.cs","v1.0","Get-MgGroupSiteList","GET","/groups/{param}/sites/{param}/lists","matched","Get-MgGroupSiteList" +"Sites","GetMgGroupSiteList.g.cs","v1.0","Get-MgGroupSiteList","","","dispatcher","" +"Sites","GetMgGroupSiteListColumn_Get.g.cs","v1.0","Get-MgGroupSiteListColumn","GET","/groups/{param}/sites/{param}/lists/{param}/columns/{param}","matched","Get-MgGroupSiteListColumn" +"Sites","GetMgGroupSiteListColumn_List.g.cs","v1.0","Get-MgGroupSiteListColumn","GET","/groups/{param}/sites/{param}/lists/{param}/columns","matched","Get-MgGroupSiteListColumn" +"Sites","GetMgGroupSiteListColumn.g.cs","v1.0","Get-MgGroupSiteListColumn","","","dispatcher","" +"Sites","GetMgGroupSiteListColumnCount.g.cs","v1.0","Get-MgGroupSiteListColumnCount","GET","/groups/{param}/sites/{param}/lists/{param}/columns/$count","matched","Get-MgGroupSiteListColumnCount" +"Sites","GetMgGroupSiteListColumnSourceColumn.g.cs","v1.0","Get-MgGroupSiteListColumnSourceColumn","GET","/groups/{param}/sites/{param}/lists/{param}/columns/{param}/sourceColumn","matched","Get-MgGroupSiteListColumnSourceColumn" +"Sites","GetMgGroupSiteListContentType_Get.g.cs","v1.0","Get-MgGroupSiteListContentType","GET","/groups/{param}/sites/{param}/lists/{param}/contentTypes/{param}","matched","Get-MgGroupSiteListContentType" +"Sites","GetMgGroupSiteListContentType_List.g.cs","v1.0","Get-MgGroupSiteListContentType","GET","/groups/{param}/sites/{param}/lists/{param}/contentTypes","matched","Get-MgGroupSiteListContentType" +"Sites","GetMgGroupSiteListContentType.g.cs","v1.0","Get-MgGroupSiteListContentType","","","dispatcher","" +"Sites","GetMgGroupSiteListContentTypeBase.g.cs","v1.0","Get-MgGroupSiteListContentTypeBase","GET","/groups/{param}/sites/{param}/lists/{param}/contentTypes/{param}/base","no-oracle","" +"Sites","GetMgGroupSiteListContentTypeBaseType_Get.g.cs","v1.0","Get-MgGroupSiteListContentTypeBaseType","GET","/groups/{param}/sites/{param}/lists/{param}/contentTypes/{param}/baseTypes/{param}","no-oracle","" +"Sites","GetMgGroupSiteListContentTypeBaseType_List.g.cs","v1.0","Get-MgGroupSiteListContentTypeBaseType","GET","/groups/{param}/sites/{param}/lists/{param}/contentTypes/{param}/baseTypes","no-oracle","" +"Sites","GetMgGroupSiteListContentTypeBaseType.g.cs","v1.0","Get-MgGroupSiteListContentTypeBaseType","","","dispatcher","" +"Sites","GetMgGroupSiteListContentTypeBaseTypeCount.g.cs","v1.0","Get-MgGroupSiteListContentTypeBaseTypeCount","GET","/groups/{param}/sites/{param}/lists/{param}/contentTypes/{param}/baseTypes/$count","no-oracle","" +"Sites","GetMgGroupSiteListContentTypeColumn_Get.g.cs","v1.0","Get-MgGroupSiteListContentTypeColumn","GET","/groups/{param}/sites/{param}/lists/{param}/contentTypes/{param}/columns/{param}","matched","Get-MgGroupSiteListContentTypeColumn" +"Sites","GetMgGroupSiteListContentTypeColumn_List.g.cs","v1.0","Get-MgGroupSiteListContentTypeColumn","GET","/groups/{param}/sites/{param}/lists/{param}/contentTypes/{param}/columns","matched","Get-MgGroupSiteListContentTypeColumn" +"Sites","GetMgGroupSiteListContentTypeColumn.g.cs","v1.0","Get-MgGroupSiteListContentTypeColumn","","","dispatcher","" +"Sites","GetMgGroupSiteListContentTypeColumnCount.g.cs","v1.0","Get-MgGroupSiteListContentTypeColumnCount","GET","/groups/{param}/sites/{param}/lists/{param}/contentTypes/{param}/columns/$count","matched","Get-MgGroupSiteListContentTypeColumnCount" +"Sites","GetMgGroupSiteListContentTypeColumnLink_Get.g.cs","v1.0","Get-MgGroupSiteListContentTypeColumnLink","GET","/groups/{param}/sites/{param}/lists/{param}/contentTypes/{param}/columnLinks/{param}","matched","Get-MgGroupSiteListContentTypeColumnLink" +"Sites","GetMgGroupSiteListContentTypeColumnLink_List.g.cs","v1.0","Get-MgGroupSiteListContentTypeColumnLink","GET","/groups/{param}/sites/{param}/lists/{param}/contentTypes/{param}/columnLinks","matched","Get-MgGroupSiteListContentTypeColumnLink" +"Sites","GetMgGroupSiteListContentTypeColumnLink.g.cs","v1.0","Get-MgGroupSiteListContentTypeColumnLink","","","dispatcher","" +"Sites","GetMgGroupSiteListContentTypeColumnLinkCount.g.cs","v1.0","Get-MgGroupSiteListContentTypeColumnLinkCount","GET","/groups/{param}/sites/{param}/lists/{param}/contentTypes/{param}/columnLinks/$count","matched","Get-MgGroupSiteListContentTypeColumnLinkCount" +"Sites","GetMgGroupSiteListContentTypeColumnPosition_Get.g.cs","v1.0","Get-MgGroupSiteListContentTypeColumnPosition","GET","/groups/{param}/sites/{param}/lists/{param}/contentTypes/{param}/columnPositions/{param}","matched","Get-MgGroupSiteListContentTypeColumnPosition" +"Sites","GetMgGroupSiteListContentTypeColumnPosition_List.g.cs","v1.0","Get-MgGroupSiteListContentTypeColumnPosition","GET","/groups/{param}/sites/{param}/lists/{param}/contentTypes/{param}/columnPositions","matched","Get-MgGroupSiteListContentTypeColumnPosition" +"Sites","GetMgGroupSiteListContentTypeColumnPosition.g.cs","v1.0","Get-MgGroupSiteListContentTypeColumnPosition","","","dispatcher","" +"Sites","GetMgGroupSiteListContentTypeColumnPositionCount.g.cs","v1.0","Get-MgGroupSiteListContentTypeColumnPositionCount","GET","/groups/{param}/sites/{param}/lists/{param}/contentTypes/{param}/columnPositions/$count","matched","Get-MgGroupSiteListContentTypeColumnPositionCount" +"Sites","GetMgGroupSiteListContentTypeColumnSourceColumn.g.cs","v1.0","Get-MgGroupSiteListContentTypeColumnSourceColumn","GET","/groups/{param}/sites/{param}/lists/{param}/contentTypes/{param}/columns/{param}/sourceColumn","matched","Get-MgGroupSiteListContentTypeColumnSourceColumn" +"Sites","GetMgGroupSiteListContentTypeCount.g.cs","v1.0","Get-MgGroupSiteListContentTypeCount","GET","/groups/{param}/sites/{param}/lists/{param}/contentTypes/$count","matched","Get-MgGroupSiteListContentTypeCount" +"Sites","GetMgGroupSiteListContentTypeGetCompatibleHubContentTypes.g.cs","v1.0","Get-MgGroupSiteListContentTypeGetCompatibleHubContentTypes","GET","/groups/{param}/sites/{param}/lists/{param}/contentTypes/getCompatibleHubContentTypes","mismatch","Get-MgGroupSiteListContentTypeCompatibleHubContentType" +"Sites","GetMgGroupSiteListContentTypeIsPublished.g.cs","v1.0","Get-MgGroupSiteListContentTypeIsPublished","GET","/groups/{param}/sites/{param}/lists/{param}/contentTypes/{param}/isPublished","mismatch","Test-MgGroupSiteListContentTypePublished" +"Sites","GetMgGroupSiteListCount.g.cs","v1.0","Get-MgGroupSiteListCount","GET","/groups/{param}/sites/{param}/lists/$count","matched","Get-MgGroupSiteListCount" +"Sites","GetMgGroupSiteListCreatedByUser.g.cs","v1.0","Get-MgGroupSiteListCreatedByUser","GET","/groups/{param}/sites/{param}/lists/{param}/createdByUser","matched","Get-MgGroupSiteListCreatedByUser" +"Sites","GetMgGroupSiteListCreatedByUserMailboxSetting.g.cs","v1.0","Get-MgGroupSiteListCreatedByUserMailboxSetting","GET","/groups/{param}/sites/{param}/lists/{param}/createdByUser/mailboxSettings","matched","Get-MgGroupSiteListCreatedByUserMailboxSetting" +"Sites","GetMgGroupSiteListCreatedByUserServiceProvisioningError.g.cs","v1.0","Get-MgGroupSiteListCreatedByUserServiceProvisioningError","GET","/groups/{param}/sites/{param}/lists/{param}/createdByUser/serviceProvisioningErrors","matched","Get-MgGroupSiteListCreatedByUserServiceProvisioningError" +"Sites","GetMgGroupSiteListCreatedByUserServiceProvisioningErrorCount.g.cs","v1.0","Get-MgGroupSiteListCreatedByUserServiceProvisioningErrorCount","GET","/groups/{param}/sites/{param}/lists/{param}/createdByUser/serviceProvisioningErrors/$count","matched","Get-MgGroupSiteListCreatedByUserServiceProvisioningErrorCount" +"Sites","GetMgGroupSiteListDrive.g.cs","v1.0","Get-MgGroupSiteListDrive","GET","/groups/{param}/sites/{param}/lists/{param}/drive","matched","Get-MgGroupSiteListDrive" +"Sites","GetMgGroupSiteListItem_Get.g.cs","v1.0","Get-MgGroupSiteListItem","GET","/groups/{param}/sites/{param}/lists/{param}/items/{param}","matched","Get-MgGroupSiteListItem" +"Sites","GetMgGroupSiteListItem_List.g.cs","v1.0","Get-MgGroupSiteListItem","GET","/groups/{param}/sites/{param}/lists/{param}/items","matched","Get-MgGroupSiteListItem" +"Sites","GetMgGroupSiteListItem.g.cs","v1.0","Get-MgGroupSiteListItem","","","dispatcher","" +"Sites","GetMgGroupSiteListItemAnalytic.g.cs","v1.0","Get-MgGroupSiteListItemAnalytic","GET","/groups/{param}/sites/{param}/lists/{param}/items/{param}/analytics","matched","Get-MgGroupSiteListItemAnalytic" +"Sites","GetMgGroupSiteListItemCreatedByUser.g.cs","v1.0","Get-MgGroupSiteListItemCreatedByUser","GET","/groups/{param}/sites/{param}/lists/{param}/items/{param}/createdByUser","matched","Get-MgGroupSiteListItemCreatedByUser" +"Sites","GetMgGroupSiteListItemCreatedByUserMailboxSetting.g.cs","v1.0","Get-MgGroupSiteListItemCreatedByUserMailboxSetting","GET","/groups/{param}/sites/{param}/lists/{param}/items/{param}/createdByUser/mailboxSettings","matched","Get-MgGroupSiteListItemCreatedByUserMailboxSetting" +"Sites","GetMgGroupSiteListItemCreatedByUserServiceProvisioningError.g.cs","v1.0","Get-MgGroupSiteListItemCreatedByUserServiceProvisioningError","GET","/groups/{param}/sites/{param}/lists/{param}/items/{param}/createdByUser/serviceProvisioningErrors","matched","Get-MgGroupSiteListItemCreatedByUserServiceProvisioningError" +"Sites","GetMgGroupSiteListItemCreatedByUserServiceProvisioningErrorCount.g.cs","v1.0","Get-MgGroupSiteListItemCreatedByUserServiceProvisioningErrorCount","GET","/groups/{param}/sites/{param}/lists/{param}/items/{param}/createdByUser/serviceProvisioningErrors/$count","matched","Get-MgGroupSiteListItemCreatedByUserServiceProvisioningErrorCount" +"Sites","GetMgGroupSiteListItemDelta.g.cs","v1.0","Get-MgGroupSiteListItemDelta","GET","/groups/{param}/sites/{param}/lists/{param}/items/delta","matched","Get-MgGroupSiteListItemDelta" +"Sites","GetMgGroupSiteListItemDeltaWithToken.g.cs","v1.0","Get-MgGroupSiteListItemDeltaWithToken","","","parameterized-function","" +"Sites","GetMgGroupSiteListItemDocumentSetVersion_Get.g.cs","v1.0","Get-MgGroupSiteListItemDocumentSetVersion","GET","/groups/{param}/sites/{param}/lists/{param}/items/{param}/documentSetVersions/{param}","matched","Get-MgGroupSiteListItemDocumentSetVersion" +"Sites","GetMgGroupSiteListItemDocumentSetVersion_List.g.cs","v1.0","Get-MgGroupSiteListItemDocumentSetVersion","GET","/groups/{param}/sites/{param}/lists/{param}/items/{param}/documentSetVersions","matched","Get-MgGroupSiteListItemDocumentSetVersion" +"Sites","GetMgGroupSiteListItemDocumentSetVersion.g.cs","v1.0","Get-MgGroupSiteListItemDocumentSetVersion","","","dispatcher","" +"Sites","GetMgGroupSiteListItemDocumentSetVersionCount.g.cs","v1.0","Get-MgGroupSiteListItemDocumentSetVersionCount","GET","/groups/{param}/sites/{param}/lists/{param}/items/{param}/documentSetVersions/$count","matched","Get-MgGroupSiteListItemDocumentSetVersionCount" +"Sites","GetMgGroupSiteListItemDocumentSetVersionField.g.cs","v1.0","Get-MgGroupSiteListItemDocumentSetVersionField","GET","/groups/{param}/sites/{param}/lists/{param}/items/{param}/documentSetVersions/{param}/fields","matched","Get-MgGroupSiteListItemDocumentSetVersionField" +"Sites","GetMgGroupSiteListItemDriveItem.g.cs","v1.0","Get-MgGroupSiteListItemDriveItem","GET","/groups/{param}/sites/{param}/lists/{param}/items/{param}/driveItem","matched","Get-MgGroupSiteListItemDriveItem" +"Sites","GetMgGroupSiteListItemField.g.cs","v1.0","Get-MgGroupSiteListItemField","GET","/groups/{param}/sites/{param}/lists/{param}/items/{param}/fields","matched","Get-MgGroupSiteListItemField" +"Sites","GetMgGroupSiteListItemGetActivitiesByInterval.g.cs","v1.0","Get-MgGroupSiteListItemGetActivitiesByInterval","GET","/groups/{param}/sites/{param}/lists/{param}/items/{param}/getActivitiesByInterval","mismatch","Get-MgGroupSiteListItemActivityByInterval" +"Sites","GetMgGroupSiteListItemGetActivitiesByIntervalWithStartDateTimeWithEndDateTimeWithInterval.g.cs","v1.0","Get-MgGroupSiteListItemGetActivitiesByIntervalWithStartDateTimeWithEndDateTimeWithInterval","","","parameterized-function","" +"Sites","GetMgGroupSiteListItemLastModifiedByUser.g.cs","v1.0","Get-MgGroupSiteListItemLastModifiedByUser","GET","/groups/{param}/sites/{param}/lists/{param}/items/{param}/lastModifiedByUser","mismatch","Get-MgGroupSiteItemLastModifiedByUser" +"Sites","GetMgGroupSiteListItemLastModifiedByUserMailboxSetting.g.cs","v1.0","Get-MgGroupSiteListItemLastModifiedByUserMailboxSetting","GET","/groups/{param}/sites/{param}/lists/{param}/items/{param}/lastModifiedByUser/mailboxSettings","mismatch","Get-MgGroupSiteItemLastModifiedByUserMailboxSetting" +"Sites","GetMgGroupSiteListItemLastModifiedByUserServiceProvisioningError.g.cs","v1.0","Get-MgGroupSiteListItemLastModifiedByUserServiceProvisioningError","GET","/groups/{param}/sites/{param}/lists/{param}/items/{param}/lastModifiedByUser/serviceProvisioningErrors","mismatch","Get-MgGroupSiteItemLastModifiedByUserServiceProvisioningError" +"Sites","GetMgGroupSiteListItemLastModifiedByUserServiceProvisioningErrorCount.g.cs","v1.0","Get-MgGroupSiteListItemLastModifiedByUserServiceProvisioningErrorCount","GET","/groups/{param}/sites/{param}/lists/{param}/items/{param}/lastModifiedByUser/serviceProvisioningErrors/$count","mismatch","Get-MgGroupSiteItemLastModifiedByUserServiceProvisioningErrorCount" +"Sites","GetMgGroupSiteListItemPermission_Get.g.cs","v1.0","Get-MgGroupSiteListItemPermission","GET","/groups/{param}/sites/{param}/lists/{param}/items/{param}/permissions/{param}","matched","Get-MgGroupSiteListItemPermission" +"Sites","GetMgGroupSiteListItemPermission_List.g.cs","v1.0","Get-MgGroupSiteListItemPermission","GET","/groups/{param}/sites/{param}/lists/{param}/items/{param}/permissions","matched","Get-MgGroupSiteListItemPermission" +"Sites","GetMgGroupSiteListItemPermission.g.cs","v1.0","Get-MgGroupSiteListItemPermission","","","dispatcher","" +"Sites","GetMgGroupSiteListItemPermissionCount.g.cs","v1.0","Get-MgGroupSiteListItemPermissionCount","GET","/groups/{param}/sites/{param}/lists/{param}/items/{param}/permissions/$count","matched","Get-MgGroupSiteListItemPermissionCount" +"Sites","GetMgGroupSiteListItemVersion_Get.g.cs","v1.0","Get-MgGroupSiteListItemVersion","GET","/groups/{param}/sites/{param}/lists/{param}/items/{param}/versions/{param}","matched","Get-MgGroupSiteListItemVersion" +"Sites","GetMgGroupSiteListItemVersion_List.g.cs","v1.0","Get-MgGroupSiteListItemVersion","GET","/groups/{param}/sites/{param}/lists/{param}/items/{param}/versions","matched","Get-MgGroupSiteListItemVersion" +"Sites","GetMgGroupSiteListItemVersion.g.cs","v1.0","Get-MgGroupSiteListItemVersion","","","dispatcher","" +"Sites","GetMgGroupSiteListItemVersionCount.g.cs","v1.0","Get-MgGroupSiteListItemVersionCount","GET","/groups/{param}/sites/{param}/lists/{param}/items/{param}/versions/$count","matched","Get-MgGroupSiteListItemVersionCount" +"Sites","GetMgGroupSiteListItemVersionField.g.cs","v1.0","Get-MgGroupSiteListItemVersionField","GET","/groups/{param}/sites/{param}/lists/{param}/items/{param}/versions/{param}/fields","matched","Get-MgGroupSiteListItemVersionField" +"Sites","GetMgGroupSiteListLastModifiedByUser.g.cs","v1.0","Get-MgGroupSiteListLastModifiedByUser","GET","/groups/{param}/sites/{param}/lists/{param}/lastModifiedByUser","no-oracle","" +"Sites","GetMgGroupSiteListLastModifiedByUserMailboxSetting.g.cs","v1.0","Get-MgGroupSiteListLastModifiedByUserMailboxSetting","GET","/groups/{param}/sites/{param}/lists/{param}/lastModifiedByUser/mailboxSettings","no-oracle","" +"Sites","GetMgGroupSiteListLastModifiedByUserServiceProvisioningError.g.cs","v1.0","Get-MgGroupSiteListLastModifiedByUserServiceProvisioningError","GET","/groups/{param}/sites/{param}/lists/{param}/lastModifiedByUser/serviceProvisioningErrors","no-oracle","" +"Sites","GetMgGroupSiteListLastModifiedByUserServiceProvisioningErrorCount.g.cs","v1.0","Get-MgGroupSiteListLastModifiedByUserServiceProvisioningErrorCount","GET","/groups/{param}/sites/{param}/lists/{param}/lastModifiedByUser/serviceProvisioningErrors/$count","no-oracle","" +"Sites","GetMgGroupSiteListOperation_Get.g.cs","v1.0","Get-MgGroupSiteListOperation","GET","/groups/{param}/sites/{param}/lists/{param}/operations/{param}","matched","Get-MgGroupSiteListOperation" +"Sites","GetMgGroupSiteListOperation_List.g.cs","v1.0","Get-MgGroupSiteListOperation","GET","/groups/{param}/sites/{param}/lists/{param}/operations","matched","Get-MgGroupSiteListOperation" +"Sites","GetMgGroupSiteListOperation.g.cs","v1.0","Get-MgGroupSiteListOperation","","","dispatcher","" +"Sites","GetMgGroupSiteListOperationCount.g.cs","v1.0","Get-MgGroupSiteListOperationCount","GET","/groups/{param}/sites/{param}/lists/{param}/operations/$count","matched","Get-MgGroupSiteListOperationCount" +"Sites","GetMgGroupSiteListPermission_Get.g.cs","v1.0","Get-MgGroupSiteListPermission","GET","/groups/{param}/sites/{param}/lists/{param}/permissions/{param}","matched","Get-MgGroupSiteListPermission" +"Sites","GetMgGroupSiteListPermission_List.g.cs","v1.0","Get-MgGroupSiteListPermission","GET","/groups/{param}/sites/{param}/lists/{param}/permissions","matched","Get-MgGroupSiteListPermission" +"Sites","GetMgGroupSiteListPermission.g.cs","v1.0","Get-MgGroupSiteListPermission","","","dispatcher","" +"Sites","GetMgGroupSiteListPermissionCount.g.cs","v1.0","Get-MgGroupSiteListPermissionCount","GET","/groups/{param}/sites/{param}/lists/{param}/permissions/$count","matched","Get-MgGroupSiteListPermissionCount" +"Sites","GetMgGroupSiteListSubscription_Get.g.cs","v1.0","Get-MgGroupSiteListSubscription","GET","/groups/{param}/sites/{param}/lists/{param}/subscriptions/{param}","matched","Get-MgGroupSiteListSubscription" +"Sites","GetMgGroupSiteListSubscription_List.g.cs","v1.0","Get-MgGroupSiteListSubscription","GET","/groups/{param}/sites/{param}/lists/{param}/subscriptions","matched","Get-MgGroupSiteListSubscription" +"Sites","GetMgGroupSiteListSubscription.g.cs","v1.0","Get-MgGroupSiteListSubscription","","","dispatcher","" +"Sites","GetMgGroupSiteListSubscriptionCount.g.cs","v1.0","Get-MgGroupSiteListSubscriptionCount","GET","/groups/{param}/sites/{param}/lists/{param}/subscriptions/$count","matched","Get-MgGroupSiteListSubscriptionCount" +"Sites","GetMgGroupSiteOnenote.g.cs","v1.0","Get-MgGroupSiteOnenote","GET","/groups/{param}/sites/{param}/onenote","matched","Get-MgGroupSiteOnenote" +"Sites","GetMgGroupSiteOnenoteNotebook_Get.g.cs","v1.0","Get-MgGroupSiteOnenoteNotebook","GET","/groups/{param}/sites/{param}/onenote/notebooks/{param}","matched","Get-MgGroupSiteOnenoteNotebook" +"Sites","GetMgGroupSiteOnenoteNotebook_List.g.cs","v1.0","Get-MgGroupSiteOnenoteNotebook","GET","/groups/{param}/sites/{param}/onenote/notebooks","matched","Get-MgGroupSiteOnenoteNotebook" +"Sites","GetMgGroupSiteOnenoteNotebook.g.cs","v1.0","Get-MgGroupSiteOnenoteNotebook","","","dispatcher","" +"Sites","GetMgGroupSiteOnenoteNotebookCount.g.cs","v1.0","Get-MgGroupSiteOnenoteNotebookCount","GET","/groups/{param}/sites/{param}/onenote/notebooks/$count","matched","Get-MgGroupSiteOnenoteNotebookCount" +"Sites","GetMgGroupSiteOnenoteNotebookGetRecentNotebooksWithIncludePersonalNotebooks.g.cs","v1.0","Get-MgGroupSiteOnenoteNotebookGetRecentNotebooksWithIncludePersonalNotebooks","","","parameterized-function","" +"Sites","GetMgGroupSiteOnenoteNotebookSection_Get.g.cs","v1.0","Get-MgGroupSiteOnenoteNotebookSection","GET","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sections/{param}","matched","Get-MgGroupSiteOnenoteNotebookSection" +"Sites","GetMgGroupSiteOnenoteNotebookSection_List.g.cs","v1.0","Get-MgGroupSiteOnenoteNotebookSection","GET","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sections","matched","Get-MgGroupSiteOnenoteNotebookSection" +"Sites","GetMgGroupSiteOnenoteNotebookSection.g.cs","v1.0","Get-MgGroupSiteOnenoteNotebookSection","","","dispatcher","" +"Sites","GetMgGroupSiteOnenoteNotebookSectionCount.g.cs","v1.0","Get-MgGroupSiteOnenoteNotebookSectionCount","GET","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sections/$count","matched","Get-MgGroupSiteOnenoteNotebookSectionCount" +"Sites","GetMgGroupSiteOnenoteNotebookSectionGroup.g.cs","v1.0","Get-MgGroupSiteOnenoteNotebookSectionGroup","GET","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sectionGroups","matched","Get-MgGroupSiteOnenoteNotebookSectionGroup" +"Sites","GetMgGroupSiteOnenoteNotebookSectionGroupCount.g.cs","v1.0","Get-MgGroupSiteOnenoteNotebookSectionGroupCount","GET","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sectionGroups/$count","matched","Get-MgGroupSiteOnenoteNotebookSectionGroupCount" +"Sites","GetMgGroupSiteOnenoteNotebookSectionGroupParentNotebook.g.cs","v1.0","Get-MgGroupSiteOnenoteNotebookSectionGroupParentNotebook","GET","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/parentNotebook","matched","Get-MgGroupSiteOnenoteNotebookSectionGroupParentNotebook" +"Sites","GetMgGroupSiteOnenoteNotebookSectionGroupParentSectionGroup.g.cs","v1.0","Get-MgGroupSiteOnenoteNotebookSectionGroupParentSectionGroup","GET","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/parentSectionGroup","matched","Get-MgGroupSiteOnenoteNotebookSectionGroupParentSectionGroup" +"Sites","GetMgGroupSiteOnenoteNotebookSectionGroupSection_Get.g.cs","v1.0","Get-MgGroupSiteOnenoteNotebookSectionGroupSection","GET","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}","matched","Get-MgGroupSiteOnenoteNotebookSectionGroupSection" +"Sites","GetMgGroupSiteOnenoteNotebookSectionGroupSection_List.g.cs","v1.0","Get-MgGroupSiteOnenoteNotebookSectionGroupSection","GET","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections","matched","Get-MgGroupSiteOnenoteNotebookSectionGroupSection" +"Sites","GetMgGroupSiteOnenoteNotebookSectionGroupSection.g.cs","v1.0","Get-MgGroupSiteOnenoteNotebookSectionGroupSection","","","dispatcher","" +"Sites","GetMgGroupSiteOnenoteNotebookSectionGroupSectionCount.g.cs","v1.0","Get-MgGroupSiteOnenoteNotebookSectionGroupSectionCount","GET","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/$count","matched","Get-MgGroupSiteOnenoteNotebookSectionGroupSectionCount" +"Sites","GetMgGroupSiteOnenoteNotebookSectionGroupSectionPage_Get.g.cs","v1.0","Get-MgGroupSiteOnenoteNotebookSectionGroupSectionPage","GET","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}","matched","Get-MgGroupSiteOnenoteNotebookSectionGroupSectionPage" +"Sites","GetMgGroupSiteOnenoteNotebookSectionGroupSectionPage_List.g.cs","v1.0","Get-MgGroupSiteOnenoteNotebookSectionGroupSectionPage","GET","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages","matched","Get-MgGroupSiteOnenoteNotebookSectionGroupSectionPage" +"Sites","GetMgGroupSiteOnenoteNotebookSectionGroupSectionPage.g.cs","v1.0","Get-MgGroupSiteOnenoteNotebookSectionGroupSectionPage","","","dispatcher","" +"Sites","GetMgGroupSiteOnenoteNotebookSectionGroupSectionPageCount.g.cs","v1.0","Get-MgGroupSiteOnenoteNotebookSectionGroupSectionPageCount","GET","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/$count","matched","Get-MgGroupSiteOnenoteNotebookSectionGroupSectionPageCount" +"Sites","GetMgGroupSiteOnenoteNotebookSectionGroupSectionPageParentNotebook.g.cs","v1.0","Get-MgGroupSiteOnenoteNotebookSectionGroupSectionPageParentNotebook","GET","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}/parentNotebook","matched","Get-MgGroupSiteOnenoteNotebookSectionGroupSectionPageParentNotebook" +"Sites","GetMgGroupSiteOnenoteNotebookSectionGroupSectionPageParentSection.g.cs","v1.0","Get-MgGroupSiteOnenoteNotebookSectionGroupSectionPageParentSection","GET","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}/parentSection","matched","Get-MgGroupSiteOnenoteNotebookSectionGroupSectionPageParentSection" +"Sites","GetMgGroupSiteOnenoteNotebookSectionGroupSectionPagePreview.g.cs","v1.0","Get-MgGroupSiteOnenoteNotebookSectionGroupSectionPagePreview","GET","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}/preview","mismatch","Invoke-MgPreviewGroupSiteOnenoteNotebookSectionGroupSectionPage" +"Sites","GetMgGroupSiteOnenoteNotebookSectionGroupSectionParentNotebook.g.cs","v1.0","Get-MgGroupSiteOnenoteNotebookSectionGroupSectionParentNotebook","GET","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/parentNotebook","matched","Get-MgGroupSiteOnenoteNotebookSectionGroupSectionParentNotebook" +"Sites","GetMgGroupSiteOnenoteNotebookSectionGroupSectionParentSectionGroup.g.cs","v1.0","Get-MgGroupSiteOnenoteNotebookSectionGroupSectionParentSectionGroup","GET","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/parentSectionGroup","matched","Get-MgGroupSiteOnenoteNotebookSectionGroupSectionParentSectionGroup" +"Sites","GetMgGroupSiteOnenoteNotebookSectionPage_Get.g.cs","v1.0","Get-MgGroupSiteOnenoteNotebookSectionPage","GET","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}","matched","Get-MgGroupSiteOnenoteNotebookSectionPage" +"Sites","GetMgGroupSiteOnenoteNotebookSectionPage_List.g.cs","v1.0","Get-MgGroupSiteOnenoteNotebookSectionPage","GET","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sections/{param}/pages","matched","Get-MgGroupSiteOnenoteNotebookSectionPage" +"Sites","GetMgGroupSiteOnenoteNotebookSectionPage.g.cs","v1.0","Get-MgGroupSiteOnenoteNotebookSectionPage","","","dispatcher","" +"Sites","GetMgGroupSiteOnenoteNotebookSectionPageCount.g.cs","v1.0","Get-MgGroupSiteOnenoteNotebookSectionPageCount","GET","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sections/{param}/pages/$count","matched","Get-MgGroupSiteOnenoteNotebookSectionPageCount" +"Sites","GetMgGroupSiteOnenoteNotebookSectionPageParentNotebook.g.cs","v1.0","Get-MgGroupSiteOnenoteNotebookSectionPageParentNotebook","GET","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}/parentNotebook","matched","Get-MgGroupSiteOnenoteNotebookSectionPageParentNotebook" +"Sites","GetMgGroupSiteOnenoteNotebookSectionPageParentSection.g.cs","v1.0","Get-MgGroupSiteOnenoteNotebookSectionPageParentSection","GET","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}/parentSection","matched","Get-MgGroupSiteOnenoteNotebookSectionPageParentSection" +"Sites","GetMgGroupSiteOnenoteNotebookSectionPagePreview.g.cs","v1.0","Get-MgGroupSiteOnenoteNotebookSectionPagePreview","GET","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}/preview","mismatch","Invoke-MgPreviewGroupSiteOnenoteNotebookSectionPage" +"Sites","GetMgGroupSiteOnenoteNotebookSectionParentNotebook.g.cs","v1.0","Get-MgGroupSiteOnenoteNotebookSectionParentNotebook","GET","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sections/{param}/parentNotebook","matched","Get-MgGroupSiteOnenoteNotebookSectionParentNotebook" +"Sites","GetMgGroupSiteOnenoteNotebookSectionParentSectionGroup.g.cs","v1.0","Get-MgGroupSiteOnenoteNotebookSectionParentSectionGroup","GET","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sections/{param}/parentSectionGroup","matched","Get-MgGroupSiteOnenoteNotebookSectionParentSectionGroup" +"Sites","GetMgGroupSiteOnenoteOperation_Get.g.cs","v1.0","Get-MgGroupSiteOnenoteOperation","GET","/groups/{param}/sites/{param}/onenote/operations/{param}","matched","Get-MgGroupSiteOnenoteOperation" +"Sites","GetMgGroupSiteOnenoteOperation_List.g.cs","v1.0","Get-MgGroupSiteOnenoteOperation","GET","/groups/{param}/sites/{param}/onenote/operations","matched","Get-MgGroupSiteOnenoteOperation" +"Sites","GetMgGroupSiteOnenoteOperation.g.cs","v1.0","Get-MgGroupSiteOnenoteOperation","","","dispatcher","" +"Sites","GetMgGroupSiteOnenoteOperationCount.g.cs","v1.0","Get-MgGroupSiteOnenoteOperationCount","GET","/groups/{param}/sites/{param}/onenote/operations/$count","matched","Get-MgGroupSiteOnenoteOperationCount" +"Sites","GetMgGroupSiteOnenotePage_Get.g.cs","v1.0","Get-MgGroupSiteOnenotePage","GET","/groups/{param}/sites/{param}/onenote/pages/{param}","matched","Get-MgGroupSiteOnenotePage" +"Sites","GetMgGroupSiteOnenotePage_List.g.cs","v1.0","Get-MgGroupSiteOnenotePage","GET","/groups/{param}/sites/{param}/onenote/pages","matched","Get-MgGroupSiteOnenotePage" +"Sites","GetMgGroupSiteOnenotePage.g.cs","v1.0","Get-MgGroupSiteOnenotePage","","","dispatcher","" +"Sites","GetMgGroupSiteOnenotePageCount.g.cs","v1.0","Get-MgGroupSiteOnenotePageCount","GET","/groups/{param}/sites/{param}/onenote/pages/$count","matched","Get-MgGroupSiteOnenotePageCount" +"Sites","GetMgGroupSiteOnenotePageParentNotebook.g.cs","v1.0","Get-MgGroupSiteOnenotePageParentNotebook","GET","/groups/{param}/sites/{param}/onenote/pages/{param}/parentNotebook","matched","Get-MgGroupSiteOnenotePageParentNotebook" +"Sites","GetMgGroupSiteOnenotePageParentSection.g.cs","v1.0","Get-MgGroupSiteOnenotePageParentSection","GET","/groups/{param}/sites/{param}/onenote/pages/{param}/parentSection","matched","Get-MgGroupSiteOnenotePageParentSection" +"Sites","GetMgGroupSiteOnenotePagePreview.g.cs","v1.0","Get-MgGroupSiteOnenotePagePreview","GET","/groups/{param}/sites/{param}/onenote/pages/{param}/preview","mismatch","Invoke-MgPreviewGroupSiteOnenotePage" +"Sites","GetMgGroupSiteOnenoteResource_Get.g.cs","v1.0","Get-MgGroupSiteOnenoteResource","GET","/groups/{param}/sites/{param}/onenote/resources/{param}","matched","Get-MgGroupSiteOnenoteResource" +"Sites","GetMgGroupSiteOnenoteResource_List.g.cs","v1.0","Get-MgGroupSiteOnenoteResource","GET","/groups/{param}/sites/{param}/onenote/resources","matched","Get-MgGroupSiteOnenoteResource" +"Sites","GetMgGroupSiteOnenoteResource.g.cs","v1.0","Get-MgGroupSiteOnenoteResource","","","dispatcher","" +"Sites","GetMgGroupSiteOnenoteResourceCount.g.cs","v1.0","Get-MgGroupSiteOnenoteResourceCount","GET","/groups/{param}/sites/{param}/onenote/resources/$count","matched","Get-MgGroupSiteOnenoteResourceCount" +"Sites","GetMgGroupSiteOnenoteSection_Get.g.cs","v1.0","Get-MgGroupSiteOnenoteSection","GET","/groups/{param}/sites/{param}/onenote/sections/{param}","matched","Get-MgGroupSiteOnenoteSection" +"Sites","GetMgGroupSiteOnenoteSection_List.g.cs","v1.0","Get-MgGroupSiteOnenoteSection","GET","/groups/{param}/sites/{param}/onenote/sections","matched","Get-MgGroupSiteOnenoteSection" +"Sites","GetMgGroupSiteOnenoteSection.g.cs","v1.0","Get-MgGroupSiteOnenoteSection","","","dispatcher","" +"Sites","GetMgGroupSiteOnenoteSectionCount.g.cs","v1.0","Get-MgGroupSiteOnenoteSectionCount","GET","/groups/{param}/sites/{param}/onenote/sections/$count","matched","Get-MgGroupSiteOnenoteSectionCount" +"Sites","GetMgGroupSiteOnenoteSectionGroup.g.cs","v1.0","Get-MgGroupSiteOnenoteSectionGroup","GET","/groups/{param}/sites/{param}/onenote/sectionGroups","matched","Get-MgGroupSiteOnenoteSectionGroup" +"Sites","GetMgGroupSiteOnenoteSectionGroupCount.g.cs","v1.0","Get-MgGroupSiteOnenoteSectionGroupCount","GET","/groups/{param}/sites/{param}/onenote/sectionGroups/{param}/sectionGroups/$count","matched","Get-MgGroupSiteOnenoteSectionGroupCount" +"Sites","GetMgGroupSiteOnenoteSectionGroupParentNotebook.g.cs","v1.0","Get-MgGroupSiteOnenoteSectionGroupParentNotebook","GET","/groups/{param}/sites/{param}/onenote/sectionGroups/{param}/parentNotebook","matched","Get-MgGroupSiteOnenoteSectionGroupParentNotebook" +"Sites","GetMgGroupSiteOnenoteSectionGroupParentSectionGroup.g.cs","v1.0","Get-MgGroupSiteOnenoteSectionGroupParentSectionGroup","GET","/groups/{param}/sites/{param}/onenote/sectionGroups/{param}/parentSectionGroup","matched","Get-MgGroupSiteOnenoteSectionGroupParentSectionGroup" +"Sites","GetMgGroupSiteOnenoteSectionGroupSection_Get.g.cs","v1.0","Get-MgGroupSiteOnenoteSectionGroupSection","GET","/groups/{param}/sites/{param}/onenote/sectionGroups/{param}/sections/{param}","matched","Get-MgGroupSiteOnenoteSectionGroupSection" +"Sites","GetMgGroupSiteOnenoteSectionGroupSection_List.g.cs","v1.0","Get-MgGroupSiteOnenoteSectionGroupSection","GET","/groups/{param}/sites/{param}/onenote/sectionGroups/{param}/sections","matched","Get-MgGroupSiteOnenoteSectionGroupSection" +"Sites","GetMgGroupSiteOnenoteSectionGroupSection.g.cs","v1.0","Get-MgGroupSiteOnenoteSectionGroupSection","","","dispatcher","" +"Sites","GetMgGroupSiteOnenoteSectionGroupSectionCount.g.cs","v1.0","Get-MgGroupSiteOnenoteSectionGroupSectionCount","GET","/groups/{param}/sites/{param}/onenote/sectionGroups/{param}/sections/$count","matched","Get-MgGroupSiteOnenoteSectionGroupSectionCount" +"Sites","GetMgGroupSiteOnenoteSectionGroupSectionPage_Get.g.cs","v1.0","Get-MgGroupSiteOnenoteSectionGroupSectionPage","GET","/groups/{param}/sites/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}","matched","Get-MgGroupSiteOnenoteSectionGroupSectionPage" +"Sites","GetMgGroupSiteOnenoteSectionGroupSectionPage_List.g.cs","v1.0","Get-MgGroupSiteOnenoteSectionGroupSectionPage","GET","/groups/{param}/sites/{param}/onenote/sectionGroups/{param}/sections/{param}/pages","matched","Get-MgGroupSiteOnenoteSectionGroupSectionPage" +"Sites","GetMgGroupSiteOnenoteSectionGroupSectionPage.g.cs","v1.0","Get-MgGroupSiteOnenoteSectionGroupSectionPage","","","dispatcher","" +"Sites","GetMgGroupSiteOnenoteSectionGroupSectionPageCount.g.cs","v1.0","Get-MgGroupSiteOnenoteSectionGroupSectionPageCount","GET","/groups/{param}/sites/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/$count","matched","Get-MgGroupSiteOnenoteSectionGroupSectionPageCount" +"Sites","GetMgGroupSiteOnenoteSectionGroupSectionPageParentNotebook.g.cs","v1.0","Get-MgGroupSiteOnenoteSectionGroupSectionPageParentNotebook","GET","/groups/{param}/sites/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}/parentNotebook","matched","Get-MgGroupSiteOnenoteSectionGroupSectionPageParentNotebook" +"Sites","GetMgGroupSiteOnenoteSectionGroupSectionPageParentSection.g.cs","v1.0","Get-MgGroupSiteOnenoteSectionGroupSectionPageParentSection","GET","/groups/{param}/sites/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}/parentSection","matched","Get-MgGroupSiteOnenoteSectionGroupSectionPageParentSection" +"Sites","GetMgGroupSiteOnenoteSectionGroupSectionPagePreview.g.cs","v1.0","Get-MgGroupSiteOnenoteSectionGroupSectionPagePreview","GET","/groups/{param}/sites/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}/preview","mismatch","Invoke-MgPreviewGroupSiteOnenoteSectionGroupSectionPage" +"Sites","GetMgGroupSiteOnenoteSectionGroupSectionParentNotebook.g.cs","v1.0","Get-MgGroupSiteOnenoteSectionGroupSectionParentNotebook","GET","/groups/{param}/sites/{param}/onenote/sectionGroups/{param}/sections/{param}/parentNotebook","matched","Get-MgGroupSiteOnenoteSectionGroupSectionParentNotebook" +"Sites","GetMgGroupSiteOnenoteSectionGroupSectionParentSectionGroup.g.cs","v1.0","Get-MgGroupSiteOnenoteSectionGroupSectionParentSectionGroup","GET","/groups/{param}/sites/{param}/onenote/sectionGroups/{param}/sections/{param}/parentSectionGroup","matched","Get-MgGroupSiteOnenoteSectionGroupSectionParentSectionGroup" +"Sites","GetMgGroupSiteOnenoteSectionPage_Get.g.cs","v1.0","Get-MgGroupSiteOnenoteSectionPage","GET","/groups/{param}/sites/{param}/onenote/sections/{param}/pages/{param}","matched","Get-MgGroupSiteOnenoteSectionPage" +"Sites","GetMgGroupSiteOnenoteSectionPage_List.g.cs","v1.0","Get-MgGroupSiteOnenoteSectionPage","GET","/groups/{param}/sites/{param}/onenote/sections/{param}/pages","matched","Get-MgGroupSiteOnenoteSectionPage" +"Sites","GetMgGroupSiteOnenoteSectionPage.g.cs","v1.0","Get-MgGroupSiteOnenoteSectionPage","","","dispatcher","" +"Sites","GetMgGroupSiteOnenoteSectionPageCount.g.cs","v1.0","Get-MgGroupSiteOnenoteSectionPageCount","GET","/groups/{param}/sites/{param}/onenote/sections/{param}/pages/$count","matched","Get-MgGroupSiteOnenoteSectionPageCount" +"Sites","GetMgGroupSiteOnenoteSectionPageParentNotebook.g.cs","v1.0","Get-MgGroupSiteOnenoteSectionPageParentNotebook","GET","/groups/{param}/sites/{param}/onenote/sections/{param}/pages/{param}/parentNotebook","matched","Get-MgGroupSiteOnenoteSectionPageParentNotebook" +"Sites","GetMgGroupSiteOnenoteSectionPageParentSection.g.cs","v1.0","Get-MgGroupSiteOnenoteSectionPageParentSection","GET","/groups/{param}/sites/{param}/onenote/sections/{param}/pages/{param}/parentSection","matched","Get-MgGroupSiteOnenoteSectionPageParentSection" +"Sites","GetMgGroupSiteOnenoteSectionPagePreview.g.cs","v1.0","Get-MgGroupSiteOnenoteSectionPagePreview","GET","/groups/{param}/sites/{param}/onenote/sections/{param}/pages/{param}/preview","mismatch","Invoke-MgPreviewGroupSiteOnenoteSectionPage" +"Sites","GetMgGroupSiteOnenoteSectionParentNotebook.g.cs","v1.0","Get-MgGroupSiteOnenoteSectionParentNotebook","GET","/groups/{param}/sites/{param}/onenote/sections/{param}/parentNotebook","matched","Get-MgGroupSiteOnenoteSectionParentNotebook" +"Sites","GetMgGroupSiteOnenoteSectionParentSectionGroup.g.cs","v1.0","Get-MgGroupSiteOnenoteSectionParentSectionGroup","GET","/groups/{param}/sites/{param}/onenote/sections/{param}/parentSectionGroup","matched","Get-MgGroupSiteOnenoteSectionParentSectionGroup" +"Sites","GetMgGroupSiteOperation_Get.g.cs","v1.0","Get-MgGroupSiteOperation","GET","/groups/{param}/sites/{param}/operations/{param}","matched","Get-MgGroupSiteOperation" +"Sites","GetMgGroupSiteOperation_List.g.cs","v1.0","Get-MgGroupSiteOperation","GET","/groups/{param}/sites/{param}/operations","matched","Get-MgGroupSiteOperation" +"Sites","GetMgGroupSiteOperation.g.cs","v1.0","Get-MgGroupSiteOperation","","","dispatcher","" +"Sites","GetMgGroupSiteOperationCount.g.cs","v1.0","Get-MgGroupSiteOperationCount","GET","/groups/{param}/sites/{param}/operations/$count","matched","Get-MgGroupSiteOperationCount" +"Sites","GetMgGroupSitePage_Get.g.cs","v1.0","Get-MgGroupSitePage","GET","/groups/{param}/sites/{param}/pages/{param}","matched","Get-MgGroupSitePage" +"Sites","GetMgGroupSitePage_List.g.cs","v1.0","Get-MgGroupSitePage","GET","/groups/{param}/sites/{param}/pages","matched","Get-MgGroupSitePage" +"Sites","GetMgGroupSitePage.g.cs","v1.0","Get-MgGroupSitePage","","","dispatcher","" +"Sites","GetMgGroupSitePageAsSitePage_Get.g.cs","v1.0","Get-MgGroupSitePageAsSitePage","GET","","cast","" +"Sites","GetMgGroupSitePageAsSitePage_List.g.cs","v1.0","Get-MgGroupSitePageAsSitePage","GET","","cast","" +"Sites","GetMgGroupSitePageAsSitePage.g.cs","v1.0","Get-MgGroupSitePageAsSitePage","","","dispatcher","" +"Sites","GetMgGroupSitePageAsSitePageCanvaLayout.g.cs","v1.0","Get-MgGroupSitePageAsSitePageCanvaLayout","GET","","cast","" +"Sites","GetMgGroupSitePageAsSitePageCanvaLayoutHorizontalSection_Get.g.cs","v1.0","Get-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSection","GET","","cast","" +"Sites","GetMgGroupSitePageAsSitePageCanvaLayoutHorizontalSection_List.g.cs","v1.0","Get-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSection","GET","","cast","" +"Sites","GetMgGroupSitePageAsSitePageCanvaLayoutHorizontalSection.g.cs","v1.0","Get-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSection","","","dispatcher","" +"Sites","GetMgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumn_Get.g.cs","v1.0","Get-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumn","GET","","cast","" +"Sites","GetMgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumn_List.g.cs","v1.0","Get-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumn","GET","","cast","" +"Sites","GetMgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumn.g.cs","v1.0","Get-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumn","","","dispatcher","" +"Sites","GetMgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumnCount.g.cs","v1.0","Get-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumnCount","GET","","cast","" +"Sites","GetMgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart_Get.g.cs","v1.0","Get-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart","GET","","cast","" +"Sites","GetMgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart_List.g.cs","v1.0","Get-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart","GET","","cast","" +"Sites","GetMgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart.g.cs","v1.0","Get-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart","","","dispatcher","" +"Sites","GetMgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpartCount.g.cs","v1.0","Get-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpartCount","GET","","cast","" +"Sites","GetMgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionCount.g.cs","v1.0","Get-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionCount","GET","","cast","" +"Sites","GetMgGroupSitePageAsSitePageCanvaLayoutVerticalSection.g.cs","v1.0","Get-MgGroupSitePageAsSitePageCanvaLayoutVerticalSection","GET","","cast","" +"Sites","GetMgGroupSitePageAsSitePageCanvaLayoutVerticalSectionWebpart_Get.g.cs","v1.0","Get-MgGroupSitePageAsSitePageCanvaLayoutVerticalSectionWebpart","GET","","cast","" +"Sites","GetMgGroupSitePageAsSitePageCanvaLayoutVerticalSectionWebpart_List.g.cs","v1.0","Get-MgGroupSitePageAsSitePageCanvaLayoutVerticalSectionWebpart","GET","","cast","" +"Sites","GetMgGroupSitePageAsSitePageCanvaLayoutVerticalSectionWebpart.g.cs","v1.0","Get-MgGroupSitePageAsSitePageCanvaLayoutVerticalSectionWebpart","","","dispatcher","" +"Sites","GetMgGroupSitePageAsSitePageCanvaLayoutVerticalSectionWebpartCount.g.cs","v1.0","Get-MgGroupSitePageAsSitePageCanvaLayoutVerticalSectionWebpartCount","GET","","cast","" +"Sites","GetMgGroupSitePageAsSitePageCount.g.cs","v1.0","Get-MgGroupSitePageAsSitePageCount","GET","","cast","" +"Sites","GetMgGroupSitePageAsSitePageCreatedByUser.g.cs","v1.0","Get-MgGroupSitePageAsSitePageCreatedByUser","GET","","cast","" +"Sites","GetMgGroupSitePageAsSitePageCreatedByUserMailboxSetting.g.cs","v1.0","Get-MgGroupSitePageAsSitePageCreatedByUserMailboxSetting","GET","","cast","" +"Sites","GetMgGroupSitePageAsSitePageCreatedByUserServiceProvisioningError.g.cs","v1.0","Get-MgGroupSitePageAsSitePageCreatedByUserServiceProvisioningError","GET","","cast","" +"Sites","GetMgGroupSitePageAsSitePageCreatedByUserServiceProvisioningErrorCount.g.cs","v1.0","Get-MgGroupSitePageAsSitePageCreatedByUserServiceProvisioningErrorCount","GET","","cast","" +"Sites","GetMgGroupSitePageAsSitePageLastModifiedByUser.g.cs","v1.0","Get-MgGroupSitePageAsSitePageLastModifiedByUser","GET","","cast","" +"Sites","GetMgGroupSitePageAsSitePageLastModifiedByUserMailboxSetting.g.cs","v1.0","Get-MgGroupSitePageAsSitePageLastModifiedByUserMailboxSetting","GET","","cast","" +"Sites","GetMgGroupSitePageAsSitePageLastModifiedByUserServiceProvisioningError.g.cs","v1.0","Get-MgGroupSitePageAsSitePageLastModifiedByUserServiceProvisioningError","GET","","cast","" +"Sites","GetMgGroupSitePageAsSitePageLastModifiedByUserServiceProvisioningErrorCount.g.cs","v1.0","Get-MgGroupSitePageAsSitePageLastModifiedByUserServiceProvisioningErrorCount","GET","","cast","" +"Sites","GetMgGroupSitePageAsSitePageWebPart_Get.g.cs","v1.0","Get-MgGroupSitePageAsSitePageWebPart","GET","","cast","" +"Sites","GetMgGroupSitePageAsSitePageWebPart_List.g.cs","v1.0","Get-MgGroupSitePageAsSitePageWebPart","GET","","cast","" +"Sites","GetMgGroupSitePageAsSitePageWebPart.g.cs","v1.0","Get-MgGroupSitePageAsSitePageWebPart","","","dispatcher","" +"Sites","GetMgGroupSitePageAsSitePageWebPartCount.g.cs","v1.0","Get-MgGroupSitePageAsSitePageWebPartCount","GET","","cast","" +"Sites","GetMgGroupSitePageCount.g.cs","v1.0","Get-MgGroupSitePageCount","GET","/groups/{param}/sites/{param}/pages/$count","matched","Get-MgGroupSitePageCount" +"Sites","GetMgGroupSitePageCreatedByUser.g.cs","v1.0","Get-MgGroupSitePageCreatedByUser","GET","/groups/{param}/sites/{param}/pages/{param}/createdByUser","matched","Get-MgGroupSitePageCreatedByUser" +"Sites","GetMgGroupSitePageCreatedByUserMailboxSetting.g.cs","v1.0","Get-MgGroupSitePageCreatedByUserMailboxSetting","GET","/groups/{param}/sites/{param}/pages/{param}/createdByUser/mailboxSettings","matched","Get-MgGroupSitePageCreatedByUserMailboxSetting" +"Sites","GetMgGroupSitePageCreatedByUserServiceProvisioningError.g.cs","v1.0","Get-MgGroupSitePageCreatedByUserServiceProvisioningError","GET","/groups/{param}/sites/{param}/pages/{param}/createdByUser/serviceProvisioningErrors","matched","Get-MgGroupSitePageCreatedByUserServiceProvisioningError" +"Sites","GetMgGroupSitePageCreatedByUserServiceProvisioningErrorCount.g.cs","v1.0","Get-MgGroupSitePageCreatedByUserServiceProvisioningErrorCount","GET","/groups/{param}/sites/{param}/pages/{param}/createdByUser/serviceProvisioningErrors/$count","matched","Get-MgGroupSitePageCreatedByUserServiceProvisioningErrorCount" +"Sites","GetMgGroupSitePageLastModifiedByUser.g.cs","v1.0","Get-MgGroupSitePageLastModifiedByUser","GET","/groups/{param}/sites/{param}/pages/{param}/lastModifiedByUser","matched","Get-MgGroupSitePageLastModifiedByUser" +"Sites","GetMgGroupSitePageLastModifiedByUserMailboxSetting.g.cs","v1.0","Get-MgGroupSitePageLastModifiedByUserMailboxSetting","GET","/groups/{param}/sites/{param}/pages/{param}/lastModifiedByUser/mailboxSettings","matched","Get-MgGroupSitePageLastModifiedByUserMailboxSetting" +"Sites","GetMgGroupSitePageLastModifiedByUserServiceProvisioningError.g.cs","v1.0","Get-MgGroupSitePageLastModifiedByUserServiceProvisioningError","GET","/groups/{param}/sites/{param}/pages/{param}/lastModifiedByUser/serviceProvisioningErrors","matched","Get-MgGroupSitePageLastModifiedByUserServiceProvisioningError" +"Sites","GetMgGroupSitePageLastModifiedByUserServiceProvisioningErrorCount.g.cs","v1.0","Get-MgGroupSitePageLastModifiedByUserServiceProvisioningErrorCount","GET","/groups/{param}/sites/{param}/pages/{param}/lastModifiedByUser/serviceProvisioningErrors/$count","matched","Get-MgGroupSitePageLastModifiedByUserServiceProvisioningErrorCount" +"Sites","GetMgGroupSitePermission_Get.g.cs","v1.0","Get-MgGroupSitePermission","GET","/groups/{param}/sites/{param}/permissions/{param}","matched","Get-MgGroupSitePermission" +"Sites","GetMgGroupSitePermission_List.g.cs","v1.0","Get-MgGroupSitePermission","GET","/groups/{param}/sites/{param}/permissions","matched","Get-MgGroupSitePermission" +"Sites","GetMgGroupSitePermission.g.cs","v1.0","Get-MgGroupSitePermission","","","dispatcher","" +"Sites","GetMgGroupSitePermissionCount.g.cs","v1.0","Get-MgGroupSitePermissionCount","GET","/groups/{param}/sites/{param}/permissions/$count","matched","Get-MgGroupSitePermissionCount" +"Sites","GetMgGroupSiteTermStore.g.cs","v1.0","Get-MgGroupSiteTermStore","GET","/groups/{param}/sites/{param}/termStores","matched","Get-MgGroupSiteTermStore" +"Sites","GetMgGroupSiteTermStoreCount.g.cs","v1.0","Get-MgGroupSiteTermStoreCount","GET","/groups/{param}/sites/{param}/termStores/$count","matched","Get-MgGroupSiteTermStoreCount" +"Sites","GetMgGroupSiteTermStoreGroup_Get.g.cs","v1.0","Get-MgGroupSiteTermStoreGroup","GET","/groups/{param}/sites/{param}/termStore/groups/{param}","matched","Get-MgGroupSiteTermStoreGroup" +"Sites","GetMgGroupSiteTermStoreGroup_List.g.cs","v1.0","Get-MgGroupSiteTermStoreGroup","GET","/groups/{param}/sites/{param}/termStore/groups","matched","Get-MgGroupSiteTermStoreGroup" +"Sites","GetMgGroupSiteTermStoreGroup.g.cs","v1.0","Get-MgGroupSiteTermStoreGroup","","","dispatcher","" +"Sites","GetMgGroupSiteTermStoreGroupCount.g.cs","v1.0","Get-MgGroupSiteTermStoreGroupCount","GET","/groups/{param}/sites/{param}/termStore/groups/$count","matched","Get-MgGroupSiteTermStoreGroupCount" +"Sites","GetMgGroupSiteTermStoreGroupSet_Get.g.cs","v1.0","Get-MgGroupSiteTermStoreGroupSet","GET","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}","matched","Get-MgGroupSiteTermStoreGroupSet" +"Sites","GetMgGroupSiteTermStoreGroupSet_List.g.cs","v1.0","Get-MgGroupSiteTermStoreGroupSet","GET","/groups/{param}/sites/{param}/termStore/groups/{param}/sets","matched","Get-MgGroupSiteTermStoreGroupSet" +"Sites","GetMgGroupSiteTermStoreGroupSet.g.cs","v1.0","Get-MgGroupSiteTermStoreGroupSet","","","dispatcher","" +"Sites","GetMgGroupSiteTermStoreGroupSetChild.g.cs","v1.0","Get-MgGroupSiteTermStoreGroupSetChild","GET","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/children","matched","Get-MgGroupSiteTermStoreGroupSetChild" +"Sites","GetMgGroupSiteTermStoreGroupSetChildCount.g.cs","v1.0","Get-MgGroupSiteTermStoreGroupSetChildCount","GET","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/children/{param}/children/$count","matched","Get-MgGroupSiteTermStoreGroupSetChildCount" +"Sites","GetMgGroupSiteTermStoreGroupSetChildRelation.g.cs","v1.0","Get-MgGroupSiteTermStoreGroupSetChildRelation","GET","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/children/{param}/children/{param}/relations","matched","Get-MgGroupSiteTermStoreGroupSetChildRelation" +"Sites","GetMgGroupSiteTermStoreGroupSetChildRelationCount.g.cs","v1.0","Get-MgGroupSiteTermStoreGroupSetChildRelationCount","GET","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/children/{param}/children/{param}/relations/$count","matched","Get-MgGroupSiteTermStoreGroupSetChildRelationCount" +"Sites","GetMgGroupSiteTermStoreGroupSetChildRelationFromTerm.g.cs","v1.0","Get-MgGroupSiteTermStoreGroupSetChildRelationFromTerm","GET","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/children/{param}/children/{param}/relations/{param}/fromTerm","matched","Get-MgGroupSiteTermStoreGroupSetChildRelationFromTerm" +"Sites","GetMgGroupSiteTermStoreGroupSetChildRelationSet.g.cs","v1.0","Get-MgGroupSiteTermStoreGroupSetChildRelationSet","GET","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/children/{param}/children/{param}/relations/{param}/set","matched","Get-MgGroupSiteTermStoreGroupSetChildRelationSet" +"Sites","GetMgGroupSiteTermStoreGroupSetChildRelationToTerm.g.cs","v1.0","Get-MgGroupSiteTermStoreGroupSetChildRelationToTerm","GET","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/children/{param}/children/{param}/relations/{param}/toTerm","matched","Get-MgGroupSiteTermStoreGroupSetChildRelationToTerm" +"Sites","GetMgGroupSiteTermStoreGroupSetChildSet.g.cs","v1.0","Get-MgGroupSiteTermStoreGroupSetChildSet","GET","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/children/{param}/children/{param}/set","matched","Get-MgGroupSiteTermStoreGroupSetChildSet" +"Sites","GetMgGroupSiteTermStoreGroupSetCount.g.cs","v1.0","Get-MgGroupSiteTermStoreGroupSetCount","GET","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/$count","matched","Get-MgGroupSiteTermStoreGroupSetCount" +"Sites","GetMgGroupSiteTermStoreGroupSetParentGroup.g.cs","v1.0","Get-MgGroupSiteTermStoreGroupSetParentGroup","GET","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/parentGroup","matched","Get-MgGroupSiteTermStoreGroupSetParentGroup" +"Sites","GetMgGroupSiteTermStoreGroupSetRelation_Get.g.cs","v1.0","Get-MgGroupSiteTermStoreGroupSetRelation","GET","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/relations/{param}","matched","Get-MgGroupSiteTermStoreGroupSetRelation" +"Sites","GetMgGroupSiteTermStoreGroupSetRelation_List.g.cs","v1.0","Get-MgGroupSiteTermStoreGroupSetRelation","GET","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/relations","matched","Get-MgGroupSiteTermStoreGroupSetRelation" +"Sites","GetMgGroupSiteTermStoreGroupSetRelation.g.cs","v1.0","Get-MgGroupSiteTermStoreGroupSetRelation","","","dispatcher","" +"Sites","GetMgGroupSiteTermStoreGroupSetRelationCount.g.cs","v1.0","Get-MgGroupSiteTermStoreGroupSetRelationCount","GET","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/relations/$count","matched","Get-MgGroupSiteTermStoreGroupSetRelationCount" +"Sites","GetMgGroupSiteTermStoreGroupSetRelationFromTerm.g.cs","v1.0","Get-MgGroupSiteTermStoreGroupSetRelationFromTerm","GET","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/relations/{param}/fromTerm","matched","Get-MgGroupSiteTermStoreGroupSetRelationFromTerm" +"Sites","GetMgGroupSiteTermStoreGroupSetRelationSet.g.cs","v1.0","Get-MgGroupSiteTermStoreGroupSetRelationSet","GET","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/relations/{param}/set","matched","Get-MgGroupSiteTermStoreGroupSetRelationSet" +"Sites","GetMgGroupSiteTermStoreGroupSetRelationToTerm.g.cs","v1.0","Get-MgGroupSiteTermStoreGroupSetRelationToTerm","GET","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/relations/{param}/toTerm","matched","Get-MgGroupSiteTermStoreGroupSetRelationToTerm" +"Sites","GetMgGroupSiteTermStoreGroupSetTerm_Get.g.cs","v1.0","Get-MgGroupSiteTermStoreGroupSetTerm","GET","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}","matched","Get-MgGroupSiteTermStoreGroupSetTerm" +"Sites","GetMgGroupSiteTermStoreGroupSetTerm_List.g.cs","v1.0","Get-MgGroupSiteTermStoreGroupSetTerm","GET","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/terms","matched","Get-MgGroupSiteTermStoreGroupSetTerm" +"Sites","GetMgGroupSiteTermStoreGroupSetTerm.g.cs","v1.0","Get-MgGroupSiteTermStoreGroupSetTerm","","","dispatcher","" +"Sites","GetMgGroupSiteTermStoreGroupSetTermChild_Get.g.cs","v1.0","Get-MgGroupSiteTermStoreGroupSetTermChild","GET","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/children/{param}","matched","Get-MgGroupSiteTermStoreGroupSetTermChild" +"Sites","GetMgGroupSiteTermStoreGroupSetTermChild_List.g.cs","v1.0","Get-MgGroupSiteTermStoreGroupSetTermChild","GET","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/children","matched","Get-MgGroupSiteTermStoreGroupSetTermChild" +"Sites","GetMgGroupSiteTermStoreGroupSetTermChild.g.cs","v1.0","Get-MgGroupSiteTermStoreGroupSetTermChild","","","dispatcher","" +"Sites","GetMgGroupSiteTermStoreGroupSetTermChildCount.g.cs","v1.0","Get-MgGroupSiteTermStoreGroupSetTermChildCount","GET","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/children/$count","matched","Get-MgGroupSiteTermStoreGroupSetTermChildCount" +"Sites","GetMgGroupSiteTermStoreGroupSetTermChildRelation_Get.g.cs","v1.0","Get-MgGroupSiteTermStoreGroupSetTermChildRelation","GET","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/children/{param}/relations/{param}","matched","Get-MgGroupSiteTermStoreGroupSetTermChildRelation" +"Sites","GetMgGroupSiteTermStoreGroupSetTermChildRelation_List.g.cs","v1.0","Get-MgGroupSiteTermStoreGroupSetTermChildRelation","GET","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/children/{param}/relations","matched","Get-MgGroupSiteTermStoreGroupSetTermChildRelation" +"Sites","GetMgGroupSiteTermStoreGroupSetTermChildRelation.g.cs","v1.0","Get-MgGroupSiteTermStoreGroupSetTermChildRelation","","","dispatcher","" +"Sites","GetMgGroupSiteTermStoreGroupSetTermChildRelationCount.g.cs","v1.0","Get-MgGroupSiteTermStoreGroupSetTermChildRelationCount","GET","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/children/{param}/relations/$count","matched","Get-MgGroupSiteTermStoreGroupSetTermChildRelationCount" +"Sites","GetMgGroupSiteTermStoreGroupSetTermChildRelationFromTerm.g.cs","v1.0","Get-MgGroupSiteTermStoreGroupSetTermChildRelationFromTerm","GET","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/children/{param}/relations/{param}/fromTerm","matched","Get-MgGroupSiteTermStoreGroupSetTermChildRelationFromTerm" +"Sites","GetMgGroupSiteTermStoreGroupSetTermChildRelationSet.g.cs","v1.0","Get-MgGroupSiteTermStoreGroupSetTermChildRelationSet","GET","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/children/{param}/relations/{param}/set","matched","Get-MgGroupSiteTermStoreGroupSetTermChildRelationSet" +"Sites","GetMgGroupSiteTermStoreGroupSetTermChildRelationToTerm.g.cs","v1.0","Get-MgGroupSiteTermStoreGroupSetTermChildRelationToTerm","GET","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/children/{param}/relations/{param}/toTerm","matched","Get-MgGroupSiteTermStoreGroupSetTermChildRelationToTerm" +"Sites","GetMgGroupSiteTermStoreGroupSetTermChildSet.g.cs","v1.0","Get-MgGroupSiteTermStoreGroupSetTermChildSet","GET","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/children/{param}/set","matched","Get-MgGroupSiteTermStoreGroupSetTermChildSet" +"Sites","GetMgGroupSiteTermStoreGroupSetTermCount.g.cs","v1.0","Get-MgGroupSiteTermStoreGroupSetTermCount","GET","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/terms/$count","matched","Get-MgGroupSiteTermStoreGroupSetTermCount" +"Sites","GetMgGroupSiteTermStoreGroupSetTermRelation_Get.g.cs","v1.0","Get-MgGroupSiteTermStoreGroupSetTermRelation","GET","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/relations/{param}","matched","Get-MgGroupSiteTermStoreGroupSetTermRelation" +"Sites","GetMgGroupSiteTermStoreGroupSetTermRelation_List.g.cs","v1.0","Get-MgGroupSiteTermStoreGroupSetTermRelation","GET","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/relations","matched","Get-MgGroupSiteTermStoreGroupSetTermRelation" +"Sites","GetMgGroupSiteTermStoreGroupSetTermRelation.g.cs","v1.0","Get-MgGroupSiteTermStoreGroupSetTermRelation","","","dispatcher","" +"Sites","GetMgGroupSiteTermStoreGroupSetTermRelationCount.g.cs","v1.0","Get-MgGroupSiteTermStoreGroupSetTermRelationCount","GET","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/relations/$count","matched","Get-MgGroupSiteTermStoreGroupSetTermRelationCount" +"Sites","GetMgGroupSiteTermStoreGroupSetTermRelationFromTerm.g.cs","v1.0","Get-MgGroupSiteTermStoreGroupSetTermRelationFromTerm","GET","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/relations/{param}/fromTerm","matched","Get-MgGroupSiteTermStoreGroupSetTermRelationFromTerm" +"Sites","GetMgGroupSiteTermStoreGroupSetTermRelationSet.g.cs","v1.0","Get-MgGroupSiteTermStoreGroupSetTermRelationSet","GET","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/relations/{param}/set","matched","Get-MgGroupSiteTermStoreGroupSetTermRelationSet" +"Sites","GetMgGroupSiteTermStoreGroupSetTermRelationToTerm.g.cs","v1.0","Get-MgGroupSiteTermStoreGroupSetTermRelationToTerm","GET","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/relations/{param}/toTerm","matched","Get-MgGroupSiteTermStoreGroupSetTermRelationToTerm" +"Sites","GetMgGroupSiteTermStoreGroupSetTermSet.g.cs","v1.0","Get-MgGroupSiteTermStoreGroupSetTermSet","GET","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/set","matched","Get-MgGroupSiteTermStoreGroupSetTermSet" +"Sites","GetMgGroupSiteTermStoreSet_Get.g.cs","v1.0","Get-MgGroupSiteTermStoreSet","GET","/groups/{param}/sites/{param}/termStore/sets/{param}","matched","Get-MgGroupSiteTermStoreSet" +"Sites","GetMgGroupSiteTermStoreSet_List.g.cs","v1.0","Get-MgGroupSiteTermStoreSet","GET","/groups/{param}/sites/{param}/termStore/sets","matched","Get-MgGroupSiteTermStoreSet" +"Sites","GetMgGroupSiteTermStoreSet.g.cs","v1.0","Get-MgGroupSiteTermStoreSet","","","dispatcher","" +"Sites","GetMgGroupSiteTermStoreSetChild.g.cs","v1.0","Get-MgGroupSiteTermStoreSetChild","GET","/groups/{param}/sites/{param}/termStore/sets/{param}/children","matched","Get-MgGroupSiteTermStoreSetChild" +"Sites","GetMgGroupSiteTermStoreSetChildCount.g.cs","v1.0","Get-MgGroupSiteTermStoreSetChildCount","GET","/groups/{param}/sites/{param}/termStore/sets/{param}/children/{param}/children/$count","matched","Get-MgGroupSiteTermStoreSetChildCount" +"Sites","GetMgGroupSiteTermStoreSetChildRelation.g.cs","v1.0","Get-MgGroupSiteTermStoreSetChildRelation","GET","/groups/{param}/sites/{param}/termStore/sets/{param}/children/{param}/children/{param}/relations","matched","Get-MgGroupSiteTermStoreSetChildRelation" +"Sites","GetMgGroupSiteTermStoreSetChildRelationCount.g.cs","v1.0","Get-MgGroupSiteTermStoreSetChildRelationCount","GET","/groups/{param}/sites/{param}/termStore/sets/{param}/children/{param}/children/{param}/relations/$count","matched","Get-MgGroupSiteTermStoreSetChildRelationCount" +"Sites","GetMgGroupSiteTermStoreSetChildRelationFromTerm.g.cs","v1.0","Get-MgGroupSiteTermStoreSetChildRelationFromTerm","GET","/groups/{param}/sites/{param}/termStore/sets/{param}/children/{param}/children/{param}/relations/{param}/fromTerm","matched","Get-MgGroupSiteTermStoreSetChildRelationFromTerm" +"Sites","GetMgGroupSiteTermStoreSetChildRelationSet.g.cs","v1.0","Get-MgGroupSiteTermStoreSetChildRelationSet","GET","/groups/{param}/sites/{param}/termStore/sets/{param}/children/{param}/children/{param}/relations/{param}/set","matched","Get-MgGroupSiteTermStoreSetChildRelationSet" +"Sites","GetMgGroupSiteTermStoreSetChildRelationToTerm.g.cs","v1.0","Get-MgGroupSiteTermStoreSetChildRelationToTerm","GET","/groups/{param}/sites/{param}/termStore/sets/{param}/children/{param}/children/{param}/relations/{param}/toTerm","matched","Get-MgGroupSiteTermStoreSetChildRelationToTerm" +"Sites","GetMgGroupSiteTermStoreSetChildSet.g.cs","v1.0","Get-MgGroupSiteTermStoreSetChildSet","GET","/groups/{param}/sites/{param}/termStore/sets/{param}/children/{param}/children/{param}/set","matched","Get-MgGroupSiteTermStoreSetChildSet" +"Sites","GetMgGroupSiteTermStoreSetCount.g.cs","v1.0","Get-MgGroupSiteTermStoreSetCount","GET","/groups/{param}/sites/{param}/termStore/sets/$count","matched","Get-MgGroupSiteTermStoreSetCount" +"Sites","GetMgGroupSiteTermStoreSetParentGroup.g.cs","v1.0","Get-MgGroupSiteTermStoreSetParentGroup","GET","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup","matched","Get-MgGroupSiteTermStoreSetParentGroup" +"Sites","GetMgGroupSiteTermStoreSetParentGroupSet_Get.g.cs","v1.0","Get-MgGroupSiteTermStoreSetParentGroupSet","GET","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}","matched","Get-MgGroupSiteTermStoreSetParentGroupSet" +"Sites","GetMgGroupSiteTermStoreSetParentGroupSet_List.g.cs","v1.0","Get-MgGroupSiteTermStoreSetParentGroupSet","GET","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets","matched","Get-MgGroupSiteTermStoreSetParentGroupSet" +"Sites","GetMgGroupSiteTermStoreSetParentGroupSet.g.cs","v1.0","Get-MgGroupSiteTermStoreSetParentGroupSet","","","dispatcher","" +"Sites","GetMgGroupSiteTermStoreSetParentGroupSetChild.g.cs","v1.0","Get-MgGroupSiteTermStoreSetParentGroupSetChild","GET","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/children","matched","Get-MgGroupSiteTermStoreSetParentGroupSetChild" +"Sites","GetMgGroupSiteTermStoreSetParentGroupSetChildCount.g.cs","v1.0","Get-MgGroupSiteTermStoreSetParentGroupSetChildCount","GET","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/children/{param}/children/$count","matched","Get-MgGroupSiteTermStoreSetParentGroupSetChildCount" +"Sites","GetMgGroupSiteTermStoreSetParentGroupSetChildRelation.g.cs","v1.0","Get-MgGroupSiteTermStoreSetParentGroupSetChildRelation","GET","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/children/{param}/children/{param}/relations","matched","Get-MgGroupSiteTermStoreSetParentGroupSetChildRelation" +"Sites","GetMgGroupSiteTermStoreSetParentGroupSetChildRelationCount.g.cs","v1.0","Get-MgGroupSiteTermStoreSetParentGroupSetChildRelationCount","GET","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/children/{param}/children/{param}/relations/$count","matched","Get-MgGroupSiteTermStoreSetParentGroupSetChildRelationCount" +"Sites","GetMgGroupSiteTermStoreSetParentGroupSetChildRelationFromTerm.g.cs","v1.0","Get-MgGroupSiteTermStoreSetParentGroupSetChildRelationFromTerm","GET","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/children/{param}/children/{param}/relations/{param}/fromTerm","matched","Get-MgGroupSiteTermStoreSetParentGroupSetChildRelationFromTerm" +"Sites","GetMgGroupSiteTermStoreSetParentGroupSetChildRelationSet.g.cs","v1.0","Get-MgGroupSiteTermStoreSetParentGroupSetChildRelationSet","GET","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/children/{param}/children/{param}/relations/{param}/set","matched","Get-MgGroupSiteTermStoreSetParentGroupSetChildRelationSet" +"Sites","GetMgGroupSiteTermStoreSetParentGroupSetChildRelationToTerm.g.cs","v1.0","Get-MgGroupSiteTermStoreSetParentGroupSetChildRelationToTerm","GET","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/children/{param}/children/{param}/relations/{param}/toTerm","matched","Get-MgGroupSiteTermStoreSetParentGroupSetChildRelationToTerm" +"Sites","GetMgGroupSiteTermStoreSetParentGroupSetChildSet.g.cs","v1.0","Get-MgGroupSiteTermStoreSetParentGroupSetChildSet","GET","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/children/{param}/children/{param}/set","matched","Get-MgGroupSiteTermStoreSetParentGroupSetChildSet" +"Sites","GetMgGroupSiteTermStoreSetParentGroupSetCount.g.cs","v1.0","Get-MgGroupSiteTermStoreSetParentGroupSetCount","GET","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/$count","matched","Get-MgGroupSiteTermStoreSetParentGroupSetCount" +"Sites","GetMgGroupSiteTermStoreSetParentGroupSetRelation_Get.g.cs","v1.0","Get-MgGroupSiteTermStoreSetParentGroupSetRelation","GET","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/relations/{param}","matched","Get-MgGroupSiteTermStoreSetParentGroupSetRelation" +"Sites","GetMgGroupSiteTermStoreSetParentGroupSetRelation_List.g.cs","v1.0","Get-MgGroupSiteTermStoreSetParentGroupSetRelation","GET","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/relations","matched","Get-MgGroupSiteTermStoreSetParentGroupSetRelation" +"Sites","GetMgGroupSiteTermStoreSetParentGroupSetRelation.g.cs","v1.0","Get-MgGroupSiteTermStoreSetParentGroupSetRelation","","","dispatcher","" +"Sites","GetMgGroupSiteTermStoreSetParentGroupSetRelationCount.g.cs","v1.0","Get-MgGroupSiteTermStoreSetParentGroupSetRelationCount","GET","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/relations/$count","matched","Get-MgGroupSiteTermStoreSetParentGroupSetRelationCount" +"Sites","GetMgGroupSiteTermStoreSetParentGroupSetRelationFromTerm.g.cs","v1.0","Get-MgGroupSiteTermStoreSetParentGroupSetRelationFromTerm","GET","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/relations/{param}/fromTerm","matched","Get-MgGroupSiteTermStoreSetParentGroupSetRelationFromTerm" +"Sites","GetMgGroupSiteTermStoreSetParentGroupSetRelationSet.g.cs","v1.0","Get-MgGroupSiteTermStoreSetParentGroupSetRelationSet","GET","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/relations/{param}/set","matched","Get-MgGroupSiteTermStoreSetParentGroupSetRelationSet" +"Sites","GetMgGroupSiteTermStoreSetParentGroupSetRelationToTerm.g.cs","v1.0","Get-MgGroupSiteTermStoreSetParentGroupSetRelationToTerm","GET","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/relations/{param}/toTerm","matched","Get-MgGroupSiteTermStoreSetParentGroupSetRelationToTerm" +"Sites","GetMgGroupSiteTermStoreSetParentGroupSetTerm_Get.g.cs","v1.0","Get-MgGroupSiteTermStoreSetParentGroupSetTerm","GET","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}","matched","Get-MgGroupSiteTermStoreSetParentGroupSetTerm" +"Sites","GetMgGroupSiteTermStoreSetParentGroupSetTerm_List.g.cs","v1.0","Get-MgGroupSiteTermStoreSetParentGroupSetTerm","GET","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms","matched","Get-MgGroupSiteTermStoreSetParentGroupSetTerm" +"Sites","GetMgGroupSiteTermStoreSetParentGroupSetTerm.g.cs","v1.0","Get-MgGroupSiteTermStoreSetParentGroupSetTerm","","","dispatcher","" +"Sites","GetMgGroupSiteTermStoreSetParentGroupSetTermChild_Get.g.cs","v1.0","Get-MgGroupSiteTermStoreSetParentGroupSetTermChild","GET","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/children/{param}","matched","Get-MgGroupSiteTermStoreSetParentGroupSetTermChild" +"Sites","GetMgGroupSiteTermStoreSetParentGroupSetTermChild_List.g.cs","v1.0","Get-MgGroupSiteTermStoreSetParentGroupSetTermChild","GET","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/children","matched","Get-MgGroupSiteTermStoreSetParentGroupSetTermChild" +"Sites","GetMgGroupSiteTermStoreSetParentGroupSetTermChild.g.cs","v1.0","Get-MgGroupSiteTermStoreSetParentGroupSetTermChild","","","dispatcher","" +"Sites","GetMgGroupSiteTermStoreSetParentGroupSetTermChildCount.g.cs","v1.0","Get-MgGroupSiteTermStoreSetParentGroupSetTermChildCount","GET","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/children/$count","matched","Get-MgGroupSiteTermStoreSetParentGroupSetTermChildCount" +"Sites","GetMgGroupSiteTermStoreSetParentGroupSetTermChildRelation_Get.g.cs","v1.0","Get-MgGroupSiteTermStoreSetParentGroupSetTermChildRelation","GET","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/children/{param}/relations/{param}","matched","Get-MgGroupSiteTermStoreSetParentGroupSetTermChildRelation" +"Sites","GetMgGroupSiteTermStoreSetParentGroupSetTermChildRelation_List.g.cs","v1.0","Get-MgGroupSiteTermStoreSetParentGroupSetTermChildRelation","GET","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/children/{param}/relations","matched","Get-MgGroupSiteTermStoreSetParentGroupSetTermChildRelation" +"Sites","GetMgGroupSiteTermStoreSetParentGroupSetTermChildRelation.g.cs","v1.0","Get-MgGroupSiteTermStoreSetParentGroupSetTermChildRelation","","","dispatcher","" +"Sites","GetMgGroupSiteTermStoreSetParentGroupSetTermChildRelationCount.g.cs","v1.0","Get-MgGroupSiteTermStoreSetParentGroupSetTermChildRelationCount","GET","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/children/{param}/relations/$count","matched","Get-MgGroupSiteTermStoreSetParentGroupSetTermChildRelationCount" +"Sites","GetMgGroupSiteTermStoreSetParentGroupSetTermChildRelationFromTerm.g.cs","v1.0","Get-MgGroupSiteTermStoreSetParentGroupSetTermChildRelationFromTerm","GET","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/children/{param}/relations/{param}/fromTerm","matched","Get-MgGroupSiteTermStoreSetParentGroupSetTermChildRelationFromTerm" +"Sites","GetMgGroupSiteTermStoreSetParentGroupSetTermChildRelationSet.g.cs","v1.0","Get-MgGroupSiteTermStoreSetParentGroupSetTermChildRelationSet","GET","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/children/{param}/relations/{param}/set","matched","Get-MgGroupSiteTermStoreSetParentGroupSetTermChildRelationSet" +"Sites","GetMgGroupSiteTermStoreSetParentGroupSetTermChildRelationToTerm.g.cs","v1.0","Get-MgGroupSiteTermStoreSetParentGroupSetTermChildRelationToTerm","GET","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/children/{param}/relations/{param}/toTerm","matched","Get-MgGroupSiteTermStoreSetParentGroupSetTermChildRelationToTerm" +"Sites","GetMgGroupSiteTermStoreSetParentGroupSetTermChildSet.g.cs","v1.0","Get-MgGroupSiteTermStoreSetParentGroupSetTermChildSet","GET","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/children/{param}/set","matched","Get-MgGroupSiteTermStoreSetParentGroupSetTermChildSet" +"Sites","GetMgGroupSiteTermStoreSetParentGroupSetTermCount.g.cs","v1.0","Get-MgGroupSiteTermStoreSetParentGroupSetTermCount","GET","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/$count","matched","Get-MgGroupSiteTermStoreSetParentGroupSetTermCount" +"Sites","GetMgGroupSiteTermStoreSetParentGroupSetTermRelation_Get.g.cs","v1.0","Get-MgGroupSiteTermStoreSetParentGroupSetTermRelation","GET","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/relations/{param}","matched","Get-MgGroupSiteTermStoreSetParentGroupSetTermRelation" +"Sites","GetMgGroupSiteTermStoreSetParentGroupSetTermRelation_List.g.cs","v1.0","Get-MgGroupSiteTermStoreSetParentGroupSetTermRelation","GET","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/relations","matched","Get-MgGroupSiteTermStoreSetParentGroupSetTermRelation" +"Sites","GetMgGroupSiteTermStoreSetParentGroupSetTermRelation.g.cs","v1.0","Get-MgGroupSiteTermStoreSetParentGroupSetTermRelation","","","dispatcher","" +"Sites","GetMgGroupSiteTermStoreSetParentGroupSetTermRelationCount.g.cs","v1.0","Get-MgGroupSiteTermStoreSetParentGroupSetTermRelationCount","GET","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/relations/$count","matched","Get-MgGroupSiteTermStoreSetParentGroupSetTermRelationCount" +"Sites","GetMgGroupSiteTermStoreSetParentGroupSetTermRelationFromTerm.g.cs","v1.0","Get-MgGroupSiteTermStoreSetParentGroupSetTermRelationFromTerm","GET","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/relations/{param}/fromTerm","matched","Get-MgGroupSiteTermStoreSetParentGroupSetTermRelationFromTerm" +"Sites","GetMgGroupSiteTermStoreSetParentGroupSetTermRelationSet.g.cs","v1.0","Get-MgGroupSiteTermStoreSetParentGroupSetTermRelationSet","GET","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/relations/{param}/set","matched","Get-MgGroupSiteTermStoreSetParentGroupSetTermRelationSet" +"Sites","GetMgGroupSiteTermStoreSetParentGroupSetTermRelationToTerm.g.cs","v1.0","Get-MgGroupSiteTermStoreSetParentGroupSetTermRelationToTerm","GET","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/relations/{param}/toTerm","matched","Get-MgGroupSiteTermStoreSetParentGroupSetTermRelationToTerm" +"Sites","GetMgGroupSiteTermStoreSetParentGroupSetTermSet.g.cs","v1.0","Get-MgGroupSiteTermStoreSetParentGroupSetTermSet","GET","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/set","matched","Get-MgGroupSiteTermStoreSetParentGroupSetTermSet" +"Sites","GetMgGroupSiteTermStoreSetRelation_Get.g.cs","v1.0","Get-MgGroupSiteTermStoreSetRelation","GET","/groups/{param}/sites/{param}/termStore/sets/{param}/relations/{param}","matched","Get-MgGroupSiteTermStoreSetRelation" +"Sites","GetMgGroupSiteTermStoreSetRelation_List.g.cs","v1.0","Get-MgGroupSiteTermStoreSetRelation","GET","/groups/{param}/sites/{param}/termStore/sets/{param}/relations","matched","Get-MgGroupSiteTermStoreSetRelation" +"Sites","GetMgGroupSiteTermStoreSetRelation.g.cs","v1.0","Get-MgGroupSiteTermStoreSetRelation","","","dispatcher","" +"Sites","GetMgGroupSiteTermStoreSetRelationCount.g.cs","v1.0","Get-MgGroupSiteTermStoreSetRelationCount","GET","/groups/{param}/sites/{param}/termStore/sets/{param}/relations/$count","matched","Get-MgGroupSiteTermStoreSetRelationCount" +"Sites","GetMgGroupSiteTermStoreSetRelationFromTerm.g.cs","v1.0","Get-MgGroupSiteTermStoreSetRelationFromTerm","GET","/groups/{param}/sites/{param}/termStore/sets/{param}/relations/{param}/fromTerm","matched","Get-MgGroupSiteTermStoreSetRelationFromTerm" +"Sites","GetMgGroupSiteTermStoreSetRelationSet.g.cs","v1.0","Get-MgGroupSiteTermStoreSetRelationSet","GET","/groups/{param}/sites/{param}/termStore/sets/{param}/relations/{param}/set","matched","Get-MgGroupSiteTermStoreSetRelationSet" +"Sites","GetMgGroupSiteTermStoreSetRelationToTerm.g.cs","v1.0","Get-MgGroupSiteTermStoreSetRelationToTerm","GET","/groups/{param}/sites/{param}/termStore/sets/{param}/relations/{param}/toTerm","matched","Get-MgGroupSiteTermStoreSetRelationToTerm" +"Sites","GetMgGroupSiteTermStoreSetTerm_Get.g.cs","v1.0","Get-MgGroupSiteTermStoreSetTerm","GET","/groups/{param}/sites/{param}/termStore/sets/{param}/terms/{param}","matched","Get-MgGroupSiteTermStoreSetTerm" +"Sites","GetMgGroupSiteTermStoreSetTerm_List.g.cs","v1.0","Get-MgGroupSiteTermStoreSetTerm","GET","/groups/{param}/sites/{param}/termStore/sets/{param}/terms","matched","Get-MgGroupSiteTermStoreSetTerm" +"Sites","GetMgGroupSiteTermStoreSetTerm.g.cs","v1.0","Get-MgGroupSiteTermStoreSetTerm","","","dispatcher","" +"Sites","GetMgGroupSiteTermStoreSetTermChild_Get.g.cs","v1.0","Get-MgGroupSiteTermStoreSetTermChild","GET","/groups/{param}/sites/{param}/termStore/sets/{param}/terms/{param}/children/{param}","matched","Get-MgGroupSiteTermStoreSetTermChild" +"Sites","GetMgGroupSiteTermStoreSetTermChild_List.g.cs","v1.0","Get-MgGroupSiteTermStoreSetTermChild","GET","/groups/{param}/sites/{param}/termStore/sets/{param}/terms/{param}/children","matched","Get-MgGroupSiteTermStoreSetTermChild" +"Sites","GetMgGroupSiteTermStoreSetTermChild.g.cs","v1.0","Get-MgGroupSiteTermStoreSetTermChild","","","dispatcher","" +"Sites","GetMgGroupSiteTermStoreSetTermChildCount.g.cs","v1.0","Get-MgGroupSiteTermStoreSetTermChildCount","GET","/groups/{param}/sites/{param}/termStore/sets/{param}/terms/{param}/children/$count","matched","Get-MgGroupSiteTermStoreSetTermChildCount" +"Sites","GetMgGroupSiteTermStoreSetTermChildRelation_Get.g.cs","v1.0","Get-MgGroupSiteTermStoreSetTermChildRelation","GET","/groups/{param}/sites/{param}/termStore/sets/{param}/terms/{param}/children/{param}/relations/{param}","matched","Get-MgGroupSiteTermStoreSetTermChildRelation" +"Sites","GetMgGroupSiteTermStoreSetTermChildRelation_List.g.cs","v1.0","Get-MgGroupSiteTermStoreSetTermChildRelation","GET","/groups/{param}/sites/{param}/termStore/sets/{param}/terms/{param}/children/{param}/relations","matched","Get-MgGroupSiteTermStoreSetTermChildRelation" +"Sites","GetMgGroupSiteTermStoreSetTermChildRelation.g.cs","v1.0","Get-MgGroupSiteTermStoreSetTermChildRelation","","","dispatcher","" +"Sites","GetMgGroupSiteTermStoreSetTermChildRelationCount.g.cs","v1.0","Get-MgGroupSiteTermStoreSetTermChildRelationCount","GET","/groups/{param}/sites/{param}/termStore/sets/{param}/terms/{param}/children/{param}/relations/$count","matched","Get-MgGroupSiteTermStoreSetTermChildRelationCount" +"Sites","GetMgGroupSiteTermStoreSetTermChildRelationFromTerm.g.cs","v1.0","Get-MgGroupSiteTermStoreSetTermChildRelationFromTerm","GET","/groups/{param}/sites/{param}/termStore/sets/{param}/terms/{param}/children/{param}/relations/{param}/fromTerm","matched","Get-MgGroupSiteTermStoreSetTermChildRelationFromTerm" +"Sites","GetMgGroupSiteTermStoreSetTermChildRelationSet.g.cs","v1.0","Get-MgGroupSiteTermStoreSetTermChildRelationSet","GET","/groups/{param}/sites/{param}/termStore/sets/{param}/terms/{param}/children/{param}/relations/{param}/set","matched","Get-MgGroupSiteTermStoreSetTermChildRelationSet" +"Sites","GetMgGroupSiteTermStoreSetTermChildRelationToTerm.g.cs","v1.0","Get-MgGroupSiteTermStoreSetTermChildRelationToTerm","GET","/groups/{param}/sites/{param}/termStore/sets/{param}/terms/{param}/children/{param}/relations/{param}/toTerm","matched","Get-MgGroupSiteTermStoreSetTermChildRelationToTerm" +"Sites","GetMgGroupSiteTermStoreSetTermChildSet.g.cs","v1.0","Get-MgGroupSiteTermStoreSetTermChildSet","GET","/groups/{param}/sites/{param}/termStore/sets/{param}/terms/{param}/children/{param}/set","matched","Get-MgGroupSiteTermStoreSetTermChildSet" +"Sites","GetMgGroupSiteTermStoreSetTermCount.g.cs","v1.0","Get-MgGroupSiteTermStoreSetTermCount","GET","/groups/{param}/sites/{param}/termStore/sets/{param}/terms/$count","matched","Get-MgGroupSiteTermStoreSetTermCount" +"Sites","GetMgGroupSiteTermStoreSetTermRelation_Get.g.cs","v1.0","Get-MgGroupSiteTermStoreSetTermRelation","GET","/groups/{param}/sites/{param}/termStore/sets/{param}/terms/{param}/relations/{param}","matched","Get-MgGroupSiteTermStoreSetTermRelation" +"Sites","GetMgGroupSiteTermStoreSetTermRelation_List.g.cs","v1.0","Get-MgGroupSiteTermStoreSetTermRelation","GET","/groups/{param}/sites/{param}/termStore/sets/{param}/terms/{param}/relations","matched","Get-MgGroupSiteTermStoreSetTermRelation" +"Sites","GetMgGroupSiteTermStoreSetTermRelation.g.cs","v1.0","Get-MgGroupSiteTermStoreSetTermRelation","","","dispatcher","" +"Sites","GetMgGroupSiteTermStoreSetTermRelationCount.g.cs","v1.0","Get-MgGroupSiteTermStoreSetTermRelationCount","GET","/groups/{param}/sites/{param}/termStore/sets/{param}/terms/{param}/relations/$count","matched","Get-MgGroupSiteTermStoreSetTermRelationCount" +"Sites","GetMgGroupSiteTermStoreSetTermRelationFromTerm.g.cs","v1.0","Get-MgGroupSiteTermStoreSetTermRelationFromTerm","GET","/groups/{param}/sites/{param}/termStore/sets/{param}/terms/{param}/relations/{param}/fromTerm","matched","Get-MgGroupSiteTermStoreSetTermRelationFromTerm" +"Sites","GetMgGroupSiteTermStoreSetTermRelationSet.g.cs","v1.0","Get-MgGroupSiteTermStoreSetTermRelationSet","GET","/groups/{param}/sites/{param}/termStore/sets/{param}/terms/{param}/relations/{param}/set","matched","Get-MgGroupSiteTermStoreSetTermRelationSet" +"Sites","GetMgGroupSiteTermStoreSetTermRelationToTerm.g.cs","v1.0","Get-MgGroupSiteTermStoreSetTermRelationToTerm","GET","/groups/{param}/sites/{param}/termStore/sets/{param}/terms/{param}/relations/{param}/toTerm","matched","Get-MgGroupSiteTermStoreSetTermRelationToTerm" +"Sites","GetMgGroupSiteTermStoreSetTermSet.g.cs","v1.0","Get-MgGroupSiteTermStoreSetTermSet","GET","/groups/{param}/sites/{param}/termStore/sets/{param}/terms/{param}/set","matched","Get-MgGroupSiteTermStoreSetTermSet" +"Sites","GetMgGroupSubSite_Get.g.cs","v1.0","Get-MgGroupSubSite","GET","/groups/{param}/sites/{param}/sites/{param}","matched","Get-MgGroupSubSite" +"Sites","GetMgGroupSubSite_List.g.cs","v1.0","Get-MgGroupSubSite","GET","/groups/{param}/sites/{param}/sites","matched","Get-MgGroupSubSite" +"Sites","GetMgGroupSubSite.g.cs","v1.0","Get-MgGroupSubSite","","","dispatcher","" +"Sites","GetMgSite_Get.g.cs","v1.0","Get-MgSite","GET","/sites/{param}","matched","Get-MgSite" +"Sites","GetMgSite_List.g.cs","v1.0","Get-MgSite","GET","/sites","matched","Get-MgSite" +"Sites","GetMgSite.g.cs","v1.0","Get-MgSite","","","dispatcher","" +"Sites","GetMgSiteAnalytic.g.cs","v1.0","Get-MgSiteAnalytic","GET","/sites/{param}/analytics","matched","Get-MgSiteAnalytic" +"Sites","GetMgSiteAnalyticAllTime.g.cs","v1.0","Get-MgSiteAnalyticAllTime","GET","/sites/{param}/analytics/allTime","mismatch","Get-MgSiteAnalyticTime" +"Sites","GetMgSiteAnalyticItemActivityStat_Get.g.cs","v1.0","Get-MgSiteAnalyticItemActivityStat","GET","/sites/{param}/analytics/itemActivityStats/{param}","matched","Get-MgSiteAnalyticItemActivityStat" +"Sites","GetMgSiteAnalyticItemActivityStat_List.g.cs","v1.0","Get-MgSiteAnalyticItemActivityStat","GET","/sites/{param}/analytics/itemActivityStats","matched","Get-MgSiteAnalyticItemActivityStat" +"Sites","GetMgSiteAnalyticItemActivityStat.g.cs","v1.0","Get-MgSiteAnalyticItemActivityStat","","","dispatcher","" +"Sites","GetMgSiteAnalyticItemActivityStatActivity_Get.g.cs","v1.0","Get-MgSiteAnalyticItemActivityStatActivity","GET","/sites/{param}/analytics/itemActivityStats/{param}/activities/{param}","matched","Get-MgSiteAnalyticItemActivityStatActivity" +"Sites","GetMgSiteAnalyticItemActivityStatActivity_List.g.cs","v1.0","Get-MgSiteAnalyticItemActivityStatActivity","GET","/sites/{param}/analytics/itemActivityStats/{param}/activities","matched","Get-MgSiteAnalyticItemActivityStatActivity" +"Sites","GetMgSiteAnalyticItemActivityStatActivity.g.cs","v1.0","Get-MgSiteAnalyticItemActivityStatActivity","","","dispatcher","" +"Sites","GetMgSiteAnalyticItemActivityStatActivityCount.g.cs","v1.0","Get-MgSiteAnalyticItemActivityStatActivityCount","GET","/sites/{param}/analytics/itemActivityStats/{param}/activities/$count","matched","Get-MgSiteAnalyticItemActivityStatActivityCount" +"Sites","GetMgSiteAnalyticItemActivityStatActivityDriveItem.g.cs","v1.0","Get-MgSiteAnalyticItemActivityStatActivityDriveItem","GET","/sites/{param}/analytics/itemActivityStats/{param}/activities/{param}/driveItem","matched","Get-MgSiteAnalyticItemActivityStatActivityDriveItem" +"Sites","GetMgSiteAnalyticItemActivityStatCount.g.cs","v1.0","Get-MgSiteAnalyticItemActivityStatCount","GET","/sites/{param}/analytics/itemActivityStats/$count","matched","Get-MgSiteAnalyticItemActivityStatCount" +"Sites","GetMgSiteAnalyticLastSevenDay.g.cs","v1.0","Get-MgSiteAnalyticLastSevenDay","GET","/sites/{param}/analytics/lastSevenDays","matched","Get-MgSiteAnalyticLastSevenDay" +"Sites","GetMgSiteColumn_Get.g.cs","v1.0","Get-MgSiteColumn","GET","/sites/{param}/columns/{param}","matched","Get-MgSiteColumn" +"Sites","GetMgSiteColumn_List.g.cs","v1.0","Get-MgSiteColumn","GET","/sites/{param}/columns","matched","Get-MgSiteColumn" +"Sites","GetMgSiteColumn.g.cs","v1.0","Get-MgSiteColumn","","","dispatcher","" +"Sites","GetMgSiteColumnCount.g.cs","v1.0","Get-MgSiteColumnCount","GET","/sites/{param}/columns/$count","matched","Get-MgSiteColumnCount" +"Sites","GetMgSiteColumnSourceColumn.g.cs","v1.0","Get-MgSiteColumnSourceColumn","GET","/sites/{param}/columns/{param}/sourceColumn","matched","Get-MgSiteColumnSourceColumn" +"Sites","GetMgSiteContentType_Get.g.cs","v1.0","Get-MgSiteContentType","GET","/sites/{param}/contentTypes/{param}","matched","Get-MgSiteContentType" +"Sites","GetMgSiteContentType_List.g.cs","v1.0","Get-MgSiteContentType","GET","/sites/{param}/contentTypes","matched","Get-MgSiteContentType" +"Sites","GetMgSiteContentType.g.cs","v1.0","Get-MgSiteContentType","","","dispatcher","" +"Sites","GetMgSiteContentTypeBase.g.cs","v1.0","Get-MgSiteContentTypeBase","GET","/sites/{param}/contentTypes/{param}/base","matched","Get-MgSiteContentTypeBase" +"Sites","GetMgSiteContentTypeBaseType_Get.g.cs","v1.0","Get-MgSiteContentTypeBaseType","GET","/sites/{param}/contentTypes/{param}/baseTypes/{param}","matched","Get-MgSiteContentTypeBaseType" +"Sites","GetMgSiteContentTypeBaseType_List.g.cs","v1.0","Get-MgSiteContentTypeBaseType","GET","/sites/{param}/contentTypes/{param}/baseTypes","matched","Get-MgSiteContentTypeBaseType" +"Sites","GetMgSiteContentTypeBaseType.g.cs","v1.0","Get-MgSiteContentTypeBaseType","","","dispatcher","" +"Sites","GetMgSiteContentTypeBaseTypeCount.g.cs","v1.0","Get-MgSiteContentTypeBaseTypeCount","GET","/sites/{param}/contentTypes/{param}/baseTypes/$count","matched","Get-MgSiteContentTypeBaseTypeCount" +"Sites","GetMgSiteContentTypeColumn_Get.g.cs","v1.0","Get-MgSiteContentTypeColumn","GET","/sites/{param}/contentTypes/{param}/columns/{param}","matched","Get-MgSiteContentTypeColumn" +"Sites","GetMgSiteContentTypeColumn_List.g.cs","v1.0","Get-MgSiteContentTypeColumn","GET","/sites/{param}/contentTypes/{param}/columns","matched","Get-MgSiteContentTypeColumn" +"Sites","GetMgSiteContentTypeColumn.g.cs","v1.0","Get-MgSiteContentTypeColumn","","","dispatcher","" +"Sites","GetMgSiteContentTypeColumnCount.g.cs","v1.0","Get-MgSiteContentTypeColumnCount","GET","/sites/{param}/contentTypes/{param}/columns/$count","matched","Get-MgSiteContentTypeColumnCount" +"Sites","GetMgSiteContentTypeColumnLink_Get.g.cs","v1.0","Get-MgSiteContentTypeColumnLink","GET","/sites/{param}/contentTypes/{param}/columnLinks/{param}","matched","Get-MgSiteContentTypeColumnLink" +"Sites","GetMgSiteContentTypeColumnLink_List.g.cs","v1.0","Get-MgSiteContentTypeColumnLink","GET","/sites/{param}/contentTypes/{param}/columnLinks","matched","Get-MgSiteContentTypeColumnLink" +"Sites","GetMgSiteContentTypeColumnLink.g.cs","v1.0","Get-MgSiteContentTypeColumnLink","","","dispatcher","" +"Sites","GetMgSiteContentTypeColumnLinkCount.g.cs","v1.0","Get-MgSiteContentTypeColumnLinkCount","GET","/sites/{param}/contentTypes/{param}/columnLinks/$count","matched","Get-MgSiteContentTypeColumnLinkCount" +"Sites","GetMgSiteContentTypeColumnPosition_Get.g.cs","v1.0","Get-MgSiteContentTypeColumnPosition","GET","/sites/{param}/contentTypes/{param}/columnPositions/{param}","matched","Get-MgSiteContentTypeColumnPosition" +"Sites","GetMgSiteContentTypeColumnPosition_List.g.cs","v1.0","Get-MgSiteContentTypeColumnPosition","GET","/sites/{param}/contentTypes/{param}/columnPositions","matched","Get-MgSiteContentTypeColumnPosition" +"Sites","GetMgSiteContentTypeColumnPosition.g.cs","v1.0","Get-MgSiteContentTypeColumnPosition","","","dispatcher","" +"Sites","GetMgSiteContentTypeColumnPositionCount.g.cs","v1.0","Get-MgSiteContentTypeColumnPositionCount","GET","/sites/{param}/contentTypes/{param}/columnPositions/$count","matched","Get-MgSiteContentTypeColumnPositionCount" +"Sites","GetMgSiteContentTypeColumnSourceColumn.g.cs","v1.0","Get-MgSiteContentTypeColumnSourceColumn","GET","/sites/{param}/contentTypes/{param}/columns/{param}/sourceColumn","matched","Get-MgSiteContentTypeColumnSourceColumn" +"Sites","GetMgSiteContentTypeCount.g.cs","v1.0","Get-MgSiteContentTypeCount","GET","/sites/{param}/contentTypes/$count","matched","Get-MgSiteContentTypeCount" +"Sites","GetMgSiteContentTypeGetCompatibleHubContentTypes.g.cs","v1.0","Get-MgSiteContentTypeGetCompatibleHubContentTypes","GET","/sites/{param}/contentTypes/getCompatibleHubContentTypes","mismatch","Get-MgSiteContentTypeCompatibleHubContentType" +"Sites","GetMgSiteContentTypeIsPublished.g.cs","v1.0","Get-MgSiteContentTypeIsPublished","GET","/sites/{param}/contentTypes/{param}/isPublished","mismatch","Test-MgSiteContentTypePublished" +"Sites","GetMgSiteCount.g.cs","v1.0","Get-MgSiteCount","GET","/sites/{param}/sites/$count","mismatch","Get-MgSubSiteCount" +"Sites","GetMgSiteDefaultDrive.g.cs","v1.0","Get-MgSiteDefaultDrive","GET","/sites/{param}/drive","matched","Get-MgSiteDefaultDrive" +"Sites","GetMgSiteDelta.g.cs","v1.0","Get-MgSiteDelta","GET","/sites/delta","matched","Get-MgSiteDelta" +"Sites","GetMgSiteDrive_Get.g.cs","v1.0","Get-MgSiteDrive","GET","/sites/{param}/drives/{param}","matched","Get-MgSiteDrive" +"Sites","GetMgSiteDrive_List.g.cs","v1.0","Get-MgSiteDrive","GET","/sites/{param}/drives","matched","Get-MgSiteDrive" +"Sites","GetMgSiteDrive.g.cs","v1.0","Get-MgSiteDrive","","","dispatcher","" +"Sites","GetMgSiteDriveCount.g.cs","v1.0","Get-MgSiteDriveCount","GET","/sites/{param}/drives/$count","matched","Get-MgSiteDriveCount" +"Sites","GetMgSiteExternalColumn_Get.g.cs","v1.0","Get-MgSiteExternalColumn","GET","/sites/{param}/externalColumns/{param}","matched","Get-MgSiteExternalColumn" +"Sites","GetMgSiteExternalColumn_List.g.cs","v1.0","Get-MgSiteExternalColumn","GET","/sites/{param}/externalColumns","matched","Get-MgSiteExternalColumn" +"Sites","GetMgSiteExternalColumn.g.cs","v1.0","Get-MgSiteExternalColumn","","","dispatcher","" +"Sites","GetMgSiteExternalColumnCount.g.cs","v1.0","Get-MgSiteExternalColumnCount","GET","/sites/{param}/externalColumns/$count","matched","Get-MgSiteExternalColumnCount" +"Sites","GetMgSiteGetActivitiesByInterval.g.cs","v1.0","Get-MgSiteGetActivitiesByInterval","GET","/sites/{param}/getActivitiesByInterval","mismatch","Get-MgSiteActivityByInterval" +"Sites","GetMgSiteGetActivitiesByIntervalWithStartDateTimeWithEndDateTimeWithInterval.g.cs","v1.0","Get-MgSiteGetActivitiesByIntervalWithStartDateTimeWithEndDateTimeWithInterval","","","parameterized-function","" +"Sites","GetMgSiteGetAllSites.g.cs","v1.0","Get-MgSiteGetAllSites","GET","/sites/getAllSites","mismatch","Get-MgAllSite" +"Sites","GetMgSiteGetApplicableContentTypesForListWithListId.g.cs","v1.0","Get-MgSiteGetApplicableContentTypesForListWithListId","","","parameterized-function","" +"Sites","GetMgSiteGetByPathWithPath.g.cs","v1.0","Get-MgSiteGetByPathWithPath","","","parameterized-function","" +"Sites","GetMgSiteList_Get.g.cs","v1.0","Get-MgSiteList","GET","/sites/{param}/lists/{param}","matched","Get-MgSiteList" +"Sites","GetMgSiteList_List.g.cs","v1.0","Get-MgSiteList","GET","/sites/{param}/lists","matched","Get-MgSiteList" +"Sites","GetMgSiteList.g.cs","v1.0","Get-MgSiteList","","","dispatcher","" +"Sites","GetMgSiteListColumn_Get.g.cs","v1.0","Get-MgSiteListColumn","GET","/sites/{param}/lists/{param}/columns/{param}","matched","Get-MgSiteListColumn" +"Sites","GetMgSiteListColumn_List.g.cs","v1.0","Get-MgSiteListColumn","GET","/sites/{param}/lists/{param}/columns","matched","Get-MgSiteListColumn" +"Sites","GetMgSiteListColumn.g.cs","v1.0","Get-MgSiteListColumn","","","dispatcher","" +"Sites","GetMgSiteListColumnCount.g.cs","v1.0","Get-MgSiteListColumnCount","GET","/sites/{param}/lists/{param}/columns/$count","matched","Get-MgSiteListColumnCount" +"Sites","GetMgSiteListColumnSourceColumn.g.cs","v1.0","Get-MgSiteListColumnSourceColumn","GET","/sites/{param}/lists/{param}/columns/{param}/sourceColumn","matched","Get-MgSiteListColumnSourceColumn" +"Sites","GetMgSiteListContentType_Get.g.cs","v1.0","Get-MgSiteListContentType","GET","/sites/{param}/lists/{param}/contentTypes/{param}","matched","Get-MgSiteListContentType" +"Sites","GetMgSiteListContentType_List.g.cs","v1.0","Get-MgSiteListContentType","GET","/sites/{param}/lists/{param}/contentTypes","matched","Get-MgSiteListContentType" +"Sites","GetMgSiteListContentType.g.cs","v1.0","Get-MgSiteListContentType","","","dispatcher","" +"Sites","GetMgSiteListContentTypeBase.g.cs","v1.0","Get-MgSiteListContentTypeBase","GET","/sites/{param}/lists/{param}/contentTypes/{param}/base","no-oracle","" +"Sites","GetMgSiteListContentTypeBaseType_Get.g.cs","v1.0","Get-MgSiteListContentTypeBaseType","GET","/sites/{param}/lists/{param}/contentTypes/{param}/baseTypes/{param}","no-oracle","" +"Sites","GetMgSiteListContentTypeBaseType_List.g.cs","v1.0","Get-MgSiteListContentTypeBaseType","GET","/sites/{param}/lists/{param}/contentTypes/{param}/baseTypes","no-oracle","" +"Sites","GetMgSiteListContentTypeBaseType.g.cs","v1.0","Get-MgSiteListContentTypeBaseType","","","dispatcher","" +"Sites","GetMgSiteListContentTypeBaseTypeCount.g.cs","v1.0","Get-MgSiteListContentTypeBaseTypeCount","GET","/sites/{param}/lists/{param}/contentTypes/{param}/baseTypes/$count","no-oracle","" +"Sites","GetMgSiteListContentTypeColumn_Get.g.cs","v1.0","Get-MgSiteListContentTypeColumn","GET","/sites/{param}/lists/{param}/contentTypes/{param}/columns/{param}","matched","Get-MgSiteListContentTypeColumn" +"Sites","GetMgSiteListContentTypeColumn_List.g.cs","v1.0","Get-MgSiteListContentTypeColumn","GET","/sites/{param}/lists/{param}/contentTypes/{param}/columns","matched","Get-MgSiteListContentTypeColumn" +"Sites","GetMgSiteListContentTypeColumn.g.cs","v1.0","Get-MgSiteListContentTypeColumn","","","dispatcher","" +"Sites","GetMgSiteListContentTypeColumnCount.g.cs","v1.0","Get-MgSiteListContentTypeColumnCount","GET","/sites/{param}/lists/{param}/contentTypes/{param}/columns/$count","matched","Get-MgSiteListContentTypeColumnCount" +"Sites","GetMgSiteListContentTypeColumnLink_Get.g.cs","v1.0","Get-MgSiteListContentTypeColumnLink","GET","/sites/{param}/lists/{param}/contentTypes/{param}/columnLinks/{param}","matched","Get-MgSiteListContentTypeColumnLink" +"Sites","GetMgSiteListContentTypeColumnLink_List.g.cs","v1.0","Get-MgSiteListContentTypeColumnLink","GET","/sites/{param}/lists/{param}/contentTypes/{param}/columnLinks","matched","Get-MgSiteListContentTypeColumnLink" +"Sites","GetMgSiteListContentTypeColumnLink.g.cs","v1.0","Get-MgSiteListContentTypeColumnLink","","","dispatcher","" +"Sites","GetMgSiteListContentTypeColumnLinkCount.g.cs","v1.0","Get-MgSiteListContentTypeColumnLinkCount","GET","/sites/{param}/lists/{param}/contentTypes/{param}/columnLinks/$count","matched","Get-MgSiteListContentTypeColumnLinkCount" +"Sites","GetMgSiteListContentTypeColumnPosition_Get.g.cs","v1.0","Get-MgSiteListContentTypeColumnPosition","GET","/sites/{param}/lists/{param}/contentTypes/{param}/columnPositions/{param}","matched","Get-MgSiteListContentTypeColumnPosition" +"Sites","GetMgSiteListContentTypeColumnPosition_List.g.cs","v1.0","Get-MgSiteListContentTypeColumnPosition","GET","/sites/{param}/lists/{param}/contentTypes/{param}/columnPositions","matched","Get-MgSiteListContentTypeColumnPosition" +"Sites","GetMgSiteListContentTypeColumnPosition.g.cs","v1.0","Get-MgSiteListContentTypeColumnPosition","","","dispatcher","" +"Sites","GetMgSiteListContentTypeColumnPositionCount.g.cs","v1.0","Get-MgSiteListContentTypeColumnPositionCount","GET","/sites/{param}/lists/{param}/contentTypes/{param}/columnPositions/$count","matched","Get-MgSiteListContentTypeColumnPositionCount" +"Sites","GetMgSiteListContentTypeColumnSourceColumn.g.cs","v1.0","Get-MgSiteListContentTypeColumnSourceColumn","GET","/sites/{param}/lists/{param}/contentTypes/{param}/columns/{param}/sourceColumn","matched","Get-MgSiteListContentTypeColumnSourceColumn" +"Sites","GetMgSiteListContentTypeCount.g.cs","v1.0","Get-MgSiteListContentTypeCount","GET","/sites/{param}/lists/{param}/contentTypes/$count","matched","Get-MgSiteListContentTypeCount" +"Sites","GetMgSiteListContentTypeGetCompatibleHubContentTypes.g.cs","v1.0","Get-MgSiteListContentTypeGetCompatibleHubContentTypes","GET","/sites/{param}/lists/{param}/contentTypes/getCompatibleHubContentTypes","mismatch","Get-MgSiteListContentTypeCompatibleHubContentType" +"Sites","GetMgSiteListContentTypeIsPublished.g.cs","v1.0","Get-MgSiteListContentTypeIsPublished","GET","/sites/{param}/lists/{param}/contentTypes/{param}/isPublished","mismatch","Test-MgSiteListContentTypePublished" +"Sites","GetMgSiteListCount.g.cs","v1.0","Get-MgSiteListCount","GET","/sites/{param}/lists/$count","matched","Get-MgSiteListCount" +"Sites","GetMgSiteListCreatedByUser.g.cs","v1.0","Get-MgSiteListCreatedByUser","GET","/sites/{param}/lists/{param}/createdByUser","matched","Get-MgSiteListCreatedByUser" +"Sites","GetMgSiteListCreatedByUserMailboxSetting.g.cs","v1.0","Get-MgSiteListCreatedByUserMailboxSetting","GET","/sites/{param}/lists/{param}/createdByUser/mailboxSettings","matched","Get-MgSiteListCreatedByUserMailboxSetting" +"Sites","GetMgSiteListCreatedByUserServiceProvisioningError.g.cs","v1.0","Get-MgSiteListCreatedByUserServiceProvisioningError","GET","/sites/{param}/lists/{param}/createdByUser/serviceProvisioningErrors","matched","Get-MgSiteListCreatedByUserServiceProvisioningError" +"Sites","GetMgSiteListCreatedByUserServiceProvisioningErrorCount.g.cs","v1.0","Get-MgSiteListCreatedByUserServiceProvisioningErrorCount","GET","/sites/{param}/lists/{param}/createdByUser/serviceProvisioningErrors/$count","matched","Get-MgSiteListCreatedByUserServiceProvisioningErrorCount" +"Sites","GetMgSiteListDrive.g.cs","v1.0","Get-MgSiteListDrive","GET","/sites/{param}/lists/{param}/drive","matched","Get-MgSiteListDrive" +"Sites","GetMgSiteListItem_Get.g.cs","v1.0","Get-MgSiteListItem","GET","/sites/{param}/lists/{param}/items/{param}","matched","Get-MgSiteListItem" +"Sites","GetMgSiteListItem_List.g.cs","v1.0","Get-MgSiteListItem","GET","/sites/{param}/lists/{param}/items","matched","Get-MgSiteListItem" +"Sites","GetMgSiteListItem.g.cs","v1.0","Get-MgSiteListItem","","","dispatcher","" +"Sites","GetMgSiteListItemAnalytic.g.cs","v1.0","Get-MgSiteListItemAnalytic","GET","/sites/{param}/lists/{param}/items/{param}/analytics","matched","Get-MgSiteListItemAnalytic" +"Sites","GetMgSiteListItemCreatedByUser.g.cs","v1.0","Get-MgSiteListItemCreatedByUser","GET","/sites/{param}/lists/{param}/items/{param}/createdByUser","matched","Get-MgSiteListItemCreatedByUser" +"Sites","GetMgSiteListItemCreatedByUserMailboxSetting.g.cs","v1.0","Get-MgSiteListItemCreatedByUserMailboxSetting","GET","/sites/{param}/lists/{param}/items/{param}/createdByUser/mailboxSettings","matched","Get-MgSiteListItemCreatedByUserMailboxSetting" +"Sites","GetMgSiteListItemCreatedByUserServiceProvisioningError.g.cs","v1.0","Get-MgSiteListItemCreatedByUserServiceProvisioningError","GET","/sites/{param}/lists/{param}/items/{param}/createdByUser/serviceProvisioningErrors","matched","Get-MgSiteListItemCreatedByUserServiceProvisioningError" +"Sites","GetMgSiteListItemCreatedByUserServiceProvisioningErrorCount.g.cs","v1.0","Get-MgSiteListItemCreatedByUserServiceProvisioningErrorCount","GET","/sites/{param}/lists/{param}/items/{param}/createdByUser/serviceProvisioningErrors/$count","matched","Get-MgSiteListItemCreatedByUserServiceProvisioningErrorCount" +"Sites","GetMgSiteListItemDelta.g.cs","v1.0","Get-MgSiteListItemDelta","GET","/sites/{param}/lists/{param}/items/delta","matched","Get-MgSiteListItemDelta" +"Sites","GetMgSiteListItemDeltaWithToken.g.cs","v1.0","Get-MgSiteListItemDeltaWithToken","","","parameterized-function","" +"Sites","GetMgSiteListItemDocumentSetVersion_Get.g.cs","v1.0","Get-MgSiteListItemDocumentSetVersion","GET","/sites/{param}/lists/{param}/items/{param}/documentSetVersions/{param}","matched","Get-MgSiteListItemDocumentSetVersion" +"Sites","GetMgSiteListItemDocumentSetVersion_List.g.cs","v1.0","Get-MgSiteListItemDocumentSetVersion","GET","/sites/{param}/lists/{param}/items/{param}/documentSetVersions","matched","Get-MgSiteListItemDocumentSetVersion" +"Sites","GetMgSiteListItemDocumentSetVersion.g.cs","v1.0","Get-MgSiteListItemDocumentSetVersion","","","dispatcher","" +"Sites","GetMgSiteListItemDocumentSetVersionCount.g.cs","v1.0","Get-MgSiteListItemDocumentSetVersionCount","GET","/sites/{param}/lists/{param}/items/{param}/documentSetVersions/$count","matched","Get-MgSiteListItemDocumentSetVersionCount" +"Sites","GetMgSiteListItemDocumentSetVersionField.g.cs","v1.0","Get-MgSiteListItemDocumentSetVersionField","GET","/sites/{param}/lists/{param}/items/{param}/documentSetVersions/{param}/fields","matched","Get-MgSiteListItemDocumentSetVersionField" +"Sites","GetMgSiteListItemDriveItem.g.cs","v1.0","Get-MgSiteListItemDriveItem","GET","/sites/{param}/lists/{param}/items/{param}/driveItem","matched","Get-MgSiteListItemDriveItem" +"Sites","GetMgSiteListItemField.g.cs","v1.0","Get-MgSiteListItemField","GET","/sites/{param}/lists/{param}/items/{param}/fields","matched","Get-MgSiteListItemField" +"Sites","GetMgSiteListItemGetActivitiesByInterval.g.cs","v1.0","Get-MgSiteListItemGetActivitiesByInterval","GET","/sites/{param}/lists/{param}/items/{param}/getActivitiesByInterval","mismatch","Get-MgSiteListItemActivityByInterval" +"Sites","GetMgSiteListItemGetActivitiesByIntervalWithStartDateTimeWithEndDateTimeWithInterval.g.cs","v1.0","Get-MgSiteListItemGetActivitiesByIntervalWithStartDateTimeWithEndDateTimeWithInterval","","","parameterized-function","" +"Sites","GetMgSiteListItemLastModifiedByUser.g.cs","v1.0","Get-MgSiteListItemLastModifiedByUser","GET","/sites/{param}/lists/{param}/items/{param}/lastModifiedByUser","mismatch","Get-MgSiteItemLastModifiedByUser" +"Sites","GetMgSiteListItemLastModifiedByUserMailboxSetting.g.cs","v1.0","Get-MgSiteListItemLastModifiedByUserMailboxSetting","GET","/sites/{param}/lists/{param}/items/{param}/lastModifiedByUser/mailboxSettings","mismatch","Get-MgSiteItemLastModifiedByUserMailboxSetting" +"Sites","GetMgSiteListItemLastModifiedByUserServiceProvisioningError.g.cs","v1.0","Get-MgSiteListItemLastModifiedByUserServiceProvisioningError","GET","/sites/{param}/lists/{param}/items/{param}/lastModifiedByUser/serviceProvisioningErrors","mismatch","Get-MgSiteItemLastModifiedByUserServiceProvisioningError" +"Sites","GetMgSiteListItemLastModifiedByUserServiceProvisioningErrorCount.g.cs","v1.0","Get-MgSiteListItemLastModifiedByUserServiceProvisioningErrorCount","GET","/sites/{param}/lists/{param}/items/{param}/lastModifiedByUser/serviceProvisioningErrors/$count","mismatch","Get-MgSiteItemLastModifiedByUserServiceProvisioningErrorCount" +"Sites","GetMgSiteListItemPermission_Get.g.cs","v1.0","Get-MgSiteListItemPermission","GET","/sites/{param}/lists/{param}/items/{param}/permissions/{param}","matched","Get-MgSiteListItemPermission" +"Sites","GetMgSiteListItemPermission_List.g.cs","v1.0","Get-MgSiteListItemPermission","GET","/sites/{param}/lists/{param}/items/{param}/permissions","matched","Get-MgSiteListItemPermission" +"Sites","GetMgSiteListItemPermission.g.cs","v1.0","Get-MgSiteListItemPermission","","","dispatcher","" +"Sites","GetMgSiteListItemPermissionCount.g.cs","v1.0","Get-MgSiteListItemPermissionCount","GET","/sites/{param}/lists/{param}/items/{param}/permissions/$count","matched","Get-MgSiteListItemPermissionCount" +"Sites","GetMgSiteListItemVersion_Get.g.cs","v1.0","Get-MgSiteListItemVersion","GET","/sites/{param}/lists/{param}/items/{param}/versions/{param}","matched","Get-MgSiteListItemVersion" +"Sites","GetMgSiteListItemVersion_List.g.cs","v1.0","Get-MgSiteListItemVersion","GET","/sites/{param}/lists/{param}/items/{param}/versions","matched","Get-MgSiteListItemVersion" +"Sites","GetMgSiteListItemVersion.g.cs","v1.0","Get-MgSiteListItemVersion","","","dispatcher","" +"Sites","GetMgSiteListItemVersionCount.g.cs","v1.0","Get-MgSiteListItemVersionCount","GET","/sites/{param}/lists/{param}/items/{param}/versions/$count","matched","Get-MgSiteListItemVersionCount" +"Sites","GetMgSiteListItemVersionField.g.cs","v1.0","Get-MgSiteListItemVersionField","GET","/sites/{param}/lists/{param}/items/{param}/versions/{param}/fields","matched","Get-MgSiteListItemVersionField" +"Sites","GetMgSiteListLastModifiedByUser.g.cs","v1.0","Get-MgSiteListLastModifiedByUser","GET","/sites/{param}/lists/{param}/lastModifiedByUser","mismatch","Get-MgSiteLastModifiedByUser" +"Sites","GetMgSiteListLastModifiedByUserMailboxSetting.g.cs","v1.0","Get-MgSiteListLastModifiedByUserMailboxSetting","GET","/sites/{param}/lists/{param}/lastModifiedByUser/mailboxSettings","mismatch","Get-MgSiteLastModifiedByUserMailboxSetting" +"Sites","GetMgSiteListLastModifiedByUserServiceProvisioningError.g.cs","v1.0","Get-MgSiteListLastModifiedByUserServiceProvisioningError","GET","/sites/{param}/lists/{param}/lastModifiedByUser/serviceProvisioningErrors","mismatch","Get-MgSiteLastModifiedByUserServiceProvisioningError" +"Sites","GetMgSiteListLastModifiedByUserServiceProvisioningErrorCount.g.cs","v1.0","Get-MgSiteListLastModifiedByUserServiceProvisioningErrorCount","GET","/sites/{param}/lists/{param}/lastModifiedByUser/serviceProvisioningErrors/$count","mismatch","Get-MgSiteLastModifiedByUserServiceProvisioningErrorCount" +"Sites","GetMgSiteListOperation_Get.g.cs","v1.0","Get-MgSiteListOperation","GET","/sites/{param}/lists/{param}/operations/{param}","matched","Get-MgSiteListOperation" +"Sites","GetMgSiteListOperation_List.g.cs","v1.0","Get-MgSiteListOperation","GET","/sites/{param}/lists/{param}/operations","matched","Get-MgSiteListOperation" +"Sites","GetMgSiteListOperation.g.cs","v1.0","Get-MgSiteListOperation","","","dispatcher","" +"Sites","GetMgSiteListOperationCount.g.cs","v1.0","Get-MgSiteListOperationCount","GET","/sites/{param}/lists/{param}/operations/$count","matched","Get-MgSiteListOperationCount" +"Sites","GetMgSiteListPermission_Get.g.cs","v1.0","Get-MgSiteListPermission","GET","/sites/{param}/lists/{param}/permissions/{param}","matched","Get-MgSiteListPermission" +"Sites","GetMgSiteListPermission_List.g.cs","v1.0","Get-MgSiteListPermission","GET","/sites/{param}/lists/{param}/permissions","matched","Get-MgSiteListPermission" +"Sites","GetMgSiteListPermission.g.cs","v1.0","Get-MgSiteListPermission","","","dispatcher","" +"Sites","GetMgSiteListPermissionCount.g.cs","v1.0","Get-MgSiteListPermissionCount","GET","/sites/{param}/lists/{param}/permissions/$count","matched","Get-MgSiteListPermissionCount" +"Sites","GetMgSiteListSubscription_Get.g.cs","v1.0","Get-MgSiteListSubscription","GET","/sites/{param}/lists/{param}/subscriptions/{param}","matched","Get-MgSiteListSubscription" +"Sites","GetMgSiteListSubscription_List.g.cs","v1.0","Get-MgSiteListSubscription","GET","/sites/{param}/lists/{param}/subscriptions","matched","Get-MgSiteListSubscription" +"Sites","GetMgSiteListSubscription.g.cs","v1.0","Get-MgSiteListSubscription","","","dispatcher","" +"Sites","GetMgSiteListSubscriptionCount.g.cs","v1.0","Get-MgSiteListSubscriptionCount","GET","/sites/{param}/lists/{param}/subscriptions/$count","matched","Get-MgSiteListSubscriptionCount" +"Sites","GetMgSiteOperation_Get.g.cs","v1.0","Get-MgSiteOperation","GET","/sites/{param}/operations/{param}","matched","Get-MgSiteOperation" +"Sites","GetMgSiteOperation_List.g.cs","v1.0","Get-MgSiteOperation","GET","/sites/{param}/operations","matched","Get-MgSiteOperation" +"Sites","GetMgSiteOperation.g.cs","v1.0","Get-MgSiteOperation","","","dispatcher","" +"Sites","GetMgSiteOperationCount.g.cs","v1.0","Get-MgSiteOperationCount","GET","/sites/{param}/operations/$count","matched","Get-MgSiteOperationCount" +"Sites","GetMgSitePage_Get.g.cs","v1.0","Get-MgSitePage","GET","/sites/{param}/pages/{param}","matched","Get-MgSitePage" +"Sites","GetMgSitePage_List.g.cs","v1.0","Get-MgSitePage","GET","/sites/{param}/pages","matched","Get-MgSitePage" +"Sites","GetMgSitePage.g.cs","v1.0","Get-MgSitePage","","","dispatcher","" +"Sites","GetMgSitePageAsSitePage_Get.g.cs","v1.0","Get-MgSitePageAsSitePage","GET","","cast","" +"Sites","GetMgSitePageAsSitePage_List.g.cs","v1.0","Get-MgSitePageAsSitePage","GET","","cast","" +"Sites","GetMgSitePageAsSitePage.g.cs","v1.0","Get-MgSitePageAsSitePage","","","dispatcher","" +"Sites","GetMgSitePageAsSitePageCanvaLayout.g.cs","v1.0","Get-MgSitePageAsSitePageCanvaLayout","GET","","cast","" +"Sites","GetMgSitePageAsSitePageCanvaLayoutHorizontalSection_Get.g.cs","v1.0","Get-MgSitePageAsSitePageCanvaLayoutHorizontalSection","GET","","cast","" +"Sites","GetMgSitePageAsSitePageCanvaLayoutHorizontalSection_List.g.cs","v1.0","Get-MgSitePageAsSitePageCanvaLayoutHorizontalSection","GET","","cast","" +"Sites","GetMgSitePageAsSitePageCanvaLayoutHorizontalSection.g.cs","v1.0","Get-MgSitePageAsSitePageCanvaLayoutHorizontalSection","","","dispatcher","" +"Sites","GetMgSitePageAsSitePageCanvaLayoutHorizontalSectionColumn_Get.g.cs","v1.0","Get-MgSitePageAsSitePageCanvaLayoutHorizontalSectionColumn","GET","","cast","" +"Sites","GetMgSitePageAsSitePageCanvaLayoutHorizontalSectionColumn_List.g.cs","v1.0","Get-MgSitePageAsSitePageCanvaLayoutHorizontalSectionColumn","GET","","cast","" +"Sites","GetMgSitePageAsSitePageCanvaLayoutHorizontalSectionColumn.g.cs","v1.0","Get-MgSitePageAsSitePageCanvaLayoutHorizontalSectionColumn","","","dispatcher","" +"Sites","GetMgSitePageAsSitePageCanvaLayoutHorizontalSectionColumnCount.g.cs","v1.0","Get-MgSitePageAsSitePageCanvaLayoutHorizontalSectionColumnCount","GET","","cast","" +"Sites","GetMgSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart_Get.g.cs","v1.0","Get-MgSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart","GET","","cast","" +"Sites","GetMgSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart_List.g.cs","v1.0","Get-MgSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart","GET","","cast","" +"Sites","GetMgSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart.g.cs","v1.0","Get-MgSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart","","","dispatcher","" +"Sites","GetMgSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpartCount.g.cs","v1.0","Get-MgSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpartCount","GET","","cast","" +"Sites","GetMgSitePageAsSitePageCanvaLayoutHorizontalSectionCount.g.cs","v1.0","Get-MgSitePageAsSitePageCanvaLayoutHorizontalSectionCount","GET","","cast","" +"Sites","GetMgSitePageAsSitePageCanvaLayoutVerticalSection.g.cs","v1.0","Get-MgSitePageAsSitePageCanvaLayoutVerticalSection","GET","","cast","" +"Sites","GetMgSitePageAsSitePageCanvaLayoutVerticalSectionWebpart_Get.g.cs","v1.0","Get-MgSitePageAsSitePageCanvaLayoutVerticalSectionWebpart","GET","","cast","" +"Sites","GetMgSitePageAsSitePageCanvaLayoutVerticalSectionWebpart_List.g.cs","v1.0","Get-MgSitePageAsSitePageCanvaLayoutVerticalSectionWebpart","GET","","cast","" +"Sites","GetMgSitePageAsSitePageCanvaLayoutVerticalSectionWebpart.g.cs","v1.0","Get-MgSitePageAsSitePageCanvaLayoutVerticalSectionWebpart","","","dispatcher","" +"Sites","GetMgSitePageAsSitePageCanvaLayoutVerticalSectionWebpartCount.g.cs","v1.0","Get-MgSitePageAsSitePageCanvaLayoutVerticalSectionWebpartCount","GET","","cast","" +"Sites","GetMgSitePageAsSitePageCount.g.cs","v1.0","Get-MgSitePageAsSitePageCount","GET","","cast","" +"Sites","GetMgSitePageAsSitePageCreatedByUser.g.cs","v1.0","Get-MgSitePageAsSitePageCreatedByUser","GET","","cast","" +"Sites","GetMgSitePageAsSitePageCreatedByUserMailboxSetting.g.cs","v1.0","Get-MgSitePageAsSitePageCreatedByUserMailboxSetting","GET","","cast","" +"Sites","GetMgSitePageAsSitePageCreatedByUserServiceProvisioningError.g.cs","v1.0","Get-MgSitePageAsSitePageCreatedByUserServiceProvisioningError","GET","","cast","" +"Sites","GetMgSitePageAsSitePageCreatedByUserServiceProvisioningErrorCount.g.cs","v1.0","Get-MgSitePageAsSitePageCreatedByUserServiceProvisioningErrorCount","GET","","cast","" +"Sites","GetMgSitePageAsSitePageLastModifiedByUser.g.cs","v1.0","Get-MgSitePageAsSitePageLastModifiedByUser","GET","","cast","" +"Sites","GetMgSitePageAsSitePageLastModifiedByUserMailboxSetting.g.cs","v1.0","Get-MgSitePageAsSitePageLastModifiedByUserMailboxSetting","GET","","cast","" +"Sites","GetMgSitePageAsSitePageLastModifiedByUserServiceProvisioningError.g.cs","v1.0","Get-MgSitePageAsSitePageLastModifiedByUserServiceProvisioningError","GET","","cast","" +"Sites","GetMgSitePageAsSitePageLastModifiedByUserServiceProvisioningErrorCount.g.cs","v1.0","Get-MgSitePageAsSitePageLastModifiedByUserServiceProvisioningErrorCount","GET","","cast","" +"Sites","GetMgSitePageAsSitePageWebPart_Get.g.cs","v1.0","Get-MgSitePageAsSitePageWebPart","GET","","cast","" +"Sites","GetMgSitePageAsSitePageWebPart_List.g.cs","v1.0","Get-MgSitePageAsSitePageWebPart","GET","","cast","" +"Sites","GetMgSitePageAsSitePageWebPart.g.cs","v1.0","Get-MgSitePageAsSitePageWebPart","","","dispatcher","" +"Sites","GetMgSitePageAsSitePageWebPartCount.g.cs","v1.0","Get-MgSitePageAsSitePageWebPartCount","GET","","cast","" +"Sites","GetMgSitePageCount.g.cs","v1.0","Get-MgSitePageCount","GET","/sites/{param}/pages/$count","matched","Get-MgSitePageCount" +"Sites","GetMgSitePageCreatedByUser.g.cs","v1.0","Get-MgSitePageCreatedByUser","GET","/sites/{param}/pages/{param}/createdByUser","matched","Get-MgSitePageCreatedByUser" +"Sites","GetMgSitePageCreatedByUserMailboxSetting.g.cs","v1.0","Get-MgSitePageCreatedByUserMailboxSetting","GET","/sites/{param}/pages/{param}/createdByUser/mailboxSettings","matched","Get-MgSitePageCreatedByUserMailboxSetting" +"Sites","GetMgSitePageCreatedByUserServiceProvisioningError.g.cs","v1.0","Get-MgSitePageCreatedByUserServiceProvisioningError","GET","/sites/{param}/pages/{param}/createdByUser/serviceProvisioningErrors","matched","Get-MgSitePageCreatedByUserServiceProvisioningError" +"Sites","GetMgSitePageCreatedByUserServiceProvisioningErrorCount.g.cs","v1.0","Get-MgSitePageCreatedByUserServiceProvisioningErrorCount","GET","/sites/{param}/pages/{param}/createdByUser/serviceProvisioningErrors/$count","matched","Get-MgSitePageCreatedByUserServiceProvisioningErrorCount" +"Sites","GetMgSitePageLastModifiedByUser.g.cs","v1.0","Get-MgSitePageLastModifiedByUser","GET","/sites/{param}/pages/{param}/lastModifiedByUser","matched","Get-MgSitePageLastModifiedByUser" +"Sites","GetMgSitePageLastModifiedByUserMailboxSetting.g.cs","v1.0","Get-MgSitePageLastModifiedByUserMailboxSetting","GET","/sites/{param}/pages/{param}/lastModifiedByUser/mailboxSettings","matched","Get-MgSitePageLastModifiedByUserMailboxSetting" +"Sites","GetMgSitePageLastModifiedByUserServiceProvisioningError.g.cs","v1.0","Get-MgSitePageLastModifiedByUserServiceProvisioningError","GET","/sites/{param}/pages/{param}/lastModifiedByUser/serviceProvisioningErrors","matched","Get-MgSitePageLastModifiedByUserServiceProvisioningError" +"Sites","GetMgSitePageLastModifiedByUserServiceProvisioningErrorCount.g.cs","v1.0","Get-MgSitePageLastModifiedByUserServiceProvisioningErrorCount","GET","/sites/{param}/pages/{param}/lastModifiedByUser/serviceProvisioningErrors/$count","matched","Get-MgSitePageLastModifiedByUserServiceProvisioningErrorCount" +"Sites","GetMgSitePermission_Get.g.cs","v1.0","Get-MgSitePermission","GET","/sites/{param}/permissions/{param}","matched","Get-MgSitePermission" +"Sites","GetMgSitePermission_List.g.cs","v1.0","Get-MgSitePermission","GET","/sites/{param}/permissions","matched","Get-MgSitePermission" +"Sites","GetMgSitePermission.g.cs","v1.0","Get-MgSitePermission","","","dispatcher","" +"Sites","GetMgSitePermissionCount.g.cs","v1.0","Get-MgSitePermissionCount","GET","/sites/{param}/permissions/$count","matched","Get-MgSitePermissionCount" +"Sites","GetMgSiteTermStore.g.cs","v1.0","Get-MgSiteTermStore","GET","/sites/{param}/termStores","matched","Get-MgSiteTermStore" +"Sites","GetMgSiteTermStoreCount.g.cs","v1.0","Get-MgSiteTermStoreCount","GET","/sites/{param}/termStores/$count","matched","Get-MgSiteTermStoreCount" +"Sites","GetMgSiteTermStoreGroup_Get.g.cs","v1.0","Get-MgSiteTermStoreGroup","GET","/sites/{param}/termStore/groups/{param}","matched","Get-MgSiteTermStoreGroup" +"Sites","GetMgSiteTermStoreGroup_List.g.cs","v1.0","Get-MgSiteTermStoreGroup","GET","/sites/{param}/termStore/groups","matched","Get-MgSiteTermStoreGroup" +"Sites","GetMgSiteTermStoreGroup.g.cs","v1.0","Get-MgSiteTermStoreGroup","","","dispatcher","" +"Sites","GetMgSiteTermStoreGroupCount.g.cs","v1.0","Get-MgSiteTermStoreGroupCount","GET","/sites/{param}/termStore/groups/$count","matched","Get-MgSiteTermStoreGroupCount" +"Sites","GetMgSiteTermStoreGroupSet_Get.g.cs","v1.0","Get-MgSiteTermStoreGroupSet","GET","/sites/{param}/termStore/groups/{param}/sets/{param}","matched","Get-MgSiteTermStoreGroupSet" +"Sites","GetMgSiteTermStoreGroupSet_List.g.cs","v1.0","Get-MgSiteTermStoreGroupSet","GET","/sites/{param}/termStore/groups/{param}/sets","matched","Get-MgSiteTermStoreGroupSet" +"Sites","GetMgSiteTermStoreGroupSet.g.cs","v1.0","Get-MgSiteTermStoreGroupSet","","","dispatcher","" +"Sites","GetMgSiteTermStoreGroupSetChild.g.cs","v1.0","Get-MgSiteTermStoreGroupSetChild","GET","/sites/{param}/termStore/groups/{param}/sets/{param}/children","matched","Get-MgSiteTermStoreGroupSetChild" +"Sites","GetMgSiteTermStoreGroupSetChildCount.g.cs","v1.0","Get-MgSiteTermStoreGroupSetChildCount","GET","/sites/{param}/termStore/groups/{param}/sets/{param}/children/{param}/children/$count","matched","Get-MgSiteTermStoreGroupSetChildCount" +"Sites","GetMgSiteTermStoreGroupSetChildRelation.g.cs","v1.0","Get-MgSiteTermStoreGroupSetChildRelation","GET","/sites/{param}/termStore/groups/{param}/sets/{param}/children/{param}/children/{param}/relations","matched","Get-MgSiteTermStoreGroupSetChildRelation" +"Sites","GetMgSiteTermStoreGroupSetChildRelationCount.g.cs","v1.0","Get-MgSiteTermStoreGroupSetChildRelationCount","GET","/sites/{param}/termStore/groups/{param}/sets/{param}/children/{param}/children/{param}/relations/$count","matched","Get-MgSiteTermStoreGroupSetChildRelationCount" +"Sites","GetMgSiteTermStoreGroupSetChildRelationFromTerm.g.cs","v1.0","Get-MgSiteTermStoreGroupSetChildRelationFromTerm","GET","/sites/{param}/termStore/groups/{param}/sets/{param}/children/{param}/children/{param}/relations/{param}/fromTerm","matched","Get-MgSiteTermStoreGroupSetChildRelationFromTerm" +"Sites","GetMgSiteTermStoreGroupSetChildRelationSet.g.cs","v1.0","Get-MgSiteTermStoreGroupSetChildRelationSet","GET","/sites/{param}/termStore/groups/{param}/sets/{param}/children/{param}/children/{param}/relations/{param}/set","matched","Get-MgSiteTermStoreGroupSetChildRelationSet" +"Sites","GetMgSiteTermStoreGroupSetChildRelationToTerm.g.cs","v1.0","Get-MgSiteTermStoreGroupSetChildRelationToTerm","GET","/sites/{param}/termStore/groups/{param}/sets/{param}/children/{param}/children/{param}/relations/{param}/toTerm","matched","Get-MgSiteTermStoreGroupSetChildRelationToTerm" +"Sites","GetMgSiteTermStoreGroupSetChildSet.g.cs","v1.0","Get-MgSiteTermStoreGroupSetChildSet","GET","/sites/{param}/termStore/groups/{param}/sets/{param}/children/{param}/children/{param}/set","matched","Get-MgSiteTermStoreGroupSetChildSet" +"Sites","GetMgSiteTermStoreGroupSetCount.g.cs","v1.0","Get-MgSiteTermStoreGroupSetCount","GET","/sites/{param}/termStore/groups/{param}/sets/$count","matched","Get-MgSiteTermStoreGroupSetCount" +"Sites","GetMgSiteTermStoreGroupSetParentGroup.g.cs","v1.0","Get-MgSiteTermStoreGroupSetParentGroup","GET","/sites/{param}/termStore/groups/{param}/sets/{param}/parentGroup","matched","Get-MgSiteTermStoreGroupSetParentGroup" +"Sites","GetMgSiteTermStoreGroupSetRelation_Get.g.cs","v1.0","Get-MgSiteTermStoreGroupSetRelation","GET","/sites/{param}/termStore/groups/{param}/sets/{param}/relations/{param}","matched","Get-MgSiteTermStoreGroupSetRelation" +"Sites","GetMgSiteTermStoreGroupSetRelation_List.g.cs","v1.0","Get-MgSiteTermStoreGroupSetRelation","GET","/sites/{param}/termStore/groups/{param}/sets/{param}/relations","matched","Get-MgSiteTermStoreGroupSetRelation" +"Sites","GetMgSiteTermStoreGroupSetRelation.g.cs","v1.0","Get-MgSiteTermStoreGroupSetRelation","","","dispatcher","" +"Sites","GetMgSiteTermStoreGroupSetRelationCount.g.cs","v1.0","Get-MgSiteTermStoreGroupSetRelationCount","GET","/sites/{param}/termStore/groups/{param}/sets/{param}/relations/$count","matched","Get-MgSiteTermStoreGroupSetRelationCount" +"Sites","GetMgSiteTermStoreGroupSetRelationFromTerm.g.cs","v1.0","Get-MgSiteTermStoreGroupSetRelationFromTerm","GET","/sites/{param}/termStore/groups/{param}/sets/{param}/relations/{param}/fromTerm","matched","Get-MgSiteTermStoreGroupSetRelationFromTerm" +"Sites","GetMgSiteTermStoreGroupSetRelationSet.g.cs","v1.0","Get-MgSiteTermStoreGroupSetRelationSet","GET","/sites/{param}/termStore/groups/{param}/sets/{param}/relations/{param}/set","matched","Get-MgSiteTermStoreGroupSetRelationSet" +"Sites","GetMgSiteTermStoreGroupSetRelationToTerm.g.cs","v1.0","Get-MgSiteTermStoreGroupSetRelationToTerm","GET","/sites/{param}/termStore/groups/{param}/sets/{param}/relations/{param}/toTerm","matched","Get-MgSiteTermStoreGroupSetRelationToTerm" +"Sites","GetMgSiteTermStoreGroupSetTerm_Get.g.cs","v1.0","Get-MgSiteTermStoreGroupSetTerm","GET","/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}","matched","Get-MgSiteTermStoreGroupSetTerm" +"Sites","GetMgSiteTermStoreGroupSetTerm_List.g.cs","v1.0","Get-MgSiteTermStoreGroupSetTerm","GET","/sites/{param}/termStore/groups/{param}/sets/{param}/terms","matched","Get-MgSiteTermStoreGroupSetTerm" +"Sites","GetMgSiteTermStoreGroupSetTerm.g.cs","v1.0","Get-MgSiteTermStoreGroupSetTerm","","","dispatcher","" +"Sites","GetMgSiteTermStoreGroupSetTermChild_Get.g.cs","v1.0","Get-MgSiteTermStoreGroupSetTermChild","GET","/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/children/{param}","matched","Get-MgSiteTermStoreGroupSetTermChild" +"Sites","GetMgSiteTermStoreGroupSetTermChild_List.g.cs","v1.0","Get-MgSiteTermStoreGroupSetTermChild","GET","/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/children","matched","Get-MgSiteTermStoreGroupSetTermChild" +"Sites","GetMgSiteTermStoreGroupSetTermChild.g.cs","v1.0","Get-MgSiteTermStoreGroupSetTermChild","","","dispatcher","" +"Sites","GetMgSiteTermStoreGroupSetTermChildCount.g.cs","v1.0","Get-MgSiteTermStoreGroupSetTermChildCount","GET","/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/children/$count","matched","Get-MgSiteTermStoreGroupSetTermChildCount" +"Sites","GetMgSiteTermStoreGroupSetTermChildRelation_Get.g.cs","v1.0","Get-MgSiteTermStoreGroupSetTermChildRelation","GET","/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/children/{param}/relations/{param}","matched","Get-MgSiteTermStoreGroupSetTermChildRelation" +"Sites","GetMgSiteTermStoreGroupSetTermChildRelation_List.g.cs","v1.0","Get-MgSiteTermStoreGroupSetTermChildRelation","GET","/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/children/{param}/relations","matched","Get-MgSiteTermStoreGroupSetTermChildRelation" +"Sites","GetMgSiteTermStoreGroupSetTermChildRelation.g.cs","v1.0","Get-MgSiteTermStoreGroupSetTermChildRelation","","","dispatcher","" +"Sites","GetMgSiteTermStoreGroupSetTermChildRelationCount.g.cs","v1.0","Get-MgSiteTermStoreGroupSetTermChildRelationCount","GET","/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/children/{param}/relations/$count","matched","Get-MgSiteTermStoreGroupSetTermChildRelationCount" +"Sites","GetMgSiteTermStoreGroupSetTermChildRelationFromTerm.g.cs","v1.0","Get-MgSiteTermStoreGroupSetTermChildRelationFromTerm","GET","/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/children/{param}/relations/{param}/fromTerm","matched","Get-MgSiteTermStoreGroupSetTermChildRelationFromTerm" +"Sites","GetMgSiteTermStoreGroupSetTermChildRelationSet.g.cs","v1.0","Get-MgSiteTermStoreGroupSetTermChildRelationSet","GET","/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/children/{param}/relations/{param}/set","matched","Get-MgSiteTermStoreGroupSetTermChildRelationSet" +"Sites","GetMgSiteTermStoreGroupSetTermChildRelationToTerm.g.cs","v1.0","Get-MgSiteTermStoreGroupSetTermChildRelationToTerm","GET","/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/children/{param}/relations/{param}/toTerm","matched","Get-MgSiteTermStoreGroupSetTermChildRelationToTerm" +"Sites","GetMgSiteTermStoreGroupSetTermChildSet.g.cs","v1.0","Get-MgSiteTermStoreGroupSetTermChildSet","GET","/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/children/{param}/set","matched","Get-MgSiteTermStoreGroupSetTermChildSet" +"Sites","GetMgSiteTermStoreGroupSetTermCount.g.cs","v1.0","Get-MgSiteTermStoreGroupSetTermCount","GET","/sites/{param}/termStore/groups/{param}/sets/{param}/terms/$count","matched","Get-MgSiteTermStoreGroupSetTermCount" +"Sites","GetMgSiteTermStoreGroupSetTermRelation_Get.g.cs","v1.0","Get-MgSiteTermStoreGroupSetTermRelation","GET","/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/relations/{param}","matched","Get-MgSiteTermStoreGroupSetTermRelation" +"Sites","GetMgSiteTermStoreGroupSetTermRelation_List.g.cs","v1.0","Get-MgSiteTermStoreGroupSetTermRelation","GET","/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/relations","matched","Get-MgSiteTermStoreGroupSetTermRelation" +"Sites","GetMgSiteTermStoreGroupSetTermRelation.g.cs","v1.0","Get-MgSiteTermStoreGroupSetTermRelation","","","dispatcher","" +"Sites","GetMgSiteTermStoreGroupSetTermRelationCount.g.cs","v1.0","Get-MgSiteTermStoreGroupSetTermRelationCount","GET","/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/relations/$count","matched","Get-MgSiteTermStoreGroupSetTermRelationCount" +"Sites","GetMgSiteTermStoreGroupSetTermRelationFromTerm.g.cs","v1.0","Get-MgSiteTermStoreGroupSetTermRelationFromTerm","GET","/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/relations/{param}/fromTerm","matched","Get-MgSiteTermStoreGroupSetTermRelationFromTerm" +"Sites","GetMgSiteTermStoreGroupSetTermRelationSet.g.cs","v1.0","Get-MgSiteTermStoreGroupSetTermRelationSet","GET","/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/relations/{param}/set","matched","Get-MgSiteTermStoreGroupSetTermRelationSet" +"Sites","GetMgSiteTermStoreGroupSetTermRelationToTerm.g.cs","v1.0","Get-MgSiteTermStoreGroupSetTermRelationToTerm","GET","/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/relations/{param}/toTerm","matched","Get-MgSiteTermStoreGroupSetTermRelationToTerm" +"Sites","GetMgSiteTermStoreGroupSetTermSet.g.cs","v1.0","Get-MgSiteTermStoreGroupSetTermSet","GET","/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/set","matched","Get-MgSiteTermStoreGroupSetTermSet" +"Sites","GetMgSiteTermStoreSet_Get.g.cs","v1.0","Get-MgSiteTermStoreSet","GET","/sites/{param}/termStore/sets/{param}","matched","Get-MgSiteTermStoreSet" +"Sites","GetMgSiteTermStoreSet_List.g.cs","v1.0","Get-MgSiteTermStoreSet","GET","/sites/{param}/termStore/sets","matched","Get-MgSiteTermStoreSet" +"Sites","GetMgSiteTermStoreSet.g.cs","v1.0","Get-MgSiteTermStoreSet","","","dispatcher","" +"Sites","GetMgSiteTermStoreSetChild.g.cs","v1.0","Get-MgSiteTermStoreSetChild","GET","/sites/{param}/termStore/sets/{param}/children","matched","Get-MgSiteTermStoreSetChild" +"Sites","GetMgSiteTermStoreSetChildCount.g.cs","v1.0","Get-MgSiteTermStoreSetChildCount","GET","/sites/{param}/termStore/sets/{param}/children/{param}/children/$count","matched","Get-MgSiteTermStoreSetChildCount" +"Sites","GetMgSiteTermStoreSetChildRelation.g.cs","v1.0","Get-MgSiteTermStoreSetChildRelation","GET","/sites/{param}/termStore/sets/{param}/children/{param}/children/{param}/relations","matched","Get-MgSiteTermStoreSetChildRelation" +"Sites","GetMgSiteTermStoreSetChildRelationCount.g.cs","v1.0","Get-MgSiteTermStoreSetChildRelationCount","GET","/sites/{param}/termStore/sets/{param}/children/{param}/children/{param}/relations/$count","matched","Get-MgSiteTermStoreSetChildRelationCount" +"Sites","GetMgSiteTermStoreSetChildRelationFromTerm.g.cs","v1.0","Get-MgSiteTermStoreSetChildRelationFromTerm","GET","/sites/{param}/termStore/sets/{param}/children/{param}/children/{param}/relations/{param}/fromTerm","matched","Get-MgSiteTermStoreSetChildRelationFromTerm" +"Sites","GetMgSiteTermStoreSetChildRelationSet.g.cs","v1.0","Get-MgSiteTermStoreSetChildRelationSet","GET","/sites/{param}/termStore/sets/{param}/children/{param}/children/{param}/relations/{param}/set","matched","Get-MgSiteTermStoreSetChildRelationSet" +"Sites","GetMgSiteTermStoreSetChildRelationToTerm.g.cs","v1.0","Get-MgSiteTermStoreSetChildRelationToTerm","GET","/sites/{param}/termStore/sets/{param}/children/{param}/children/{param}/relations/{param}/toTerm","matched","Get-MgSiteTermStoreSetChildRelationToTerm" +"Sites","GetMgSiteTermStoreSetChildSet.g.cs","v1.0","Get-MgSiteTermStoreSetChildSet","GET","/sites/{param}/termStore/sets/{param}/children/{param}/children/{param}/set","matched","Get-MgSiteTermStoreSetChildSet" +"Sites","GetMgSiteTermStoreSetCount.g.cs","v1.0","Get-MgSiteTermStoreSetCount","GET","/sites/{param}/termStore/sets/$count","matched","Get-MgSiteTermStoreSetCount" +"Sites","GetMgSiteTermStoreSetParentGroup.g.cs","v1.0","Get-MgSiteTermStoreSetParentGroup","GET","/sites/{param}/termStore/sets/{param}/parentGroup","matched","Get-MgSiteTermStoreSetParentGroup" +"Sites","GetMgSiteTermStoreSetParentGroupSet_Get.g.cs","v1.0","Get-MgSiteTermStoreSetParentGroupSet","GET","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}","matched","Get-MgSiteTermStoreSetParentGroupSet" +"Sites","GetMgSiteTermStoreSetParentGroupSet_List.g.cs","v1.0","Get-MgSiteTermStoreSetParentGroupSet","GET","/sites/{param}/termStore/sets/{param}/parentGroup/sets","matched","Get-MgSiteTermStoreSetParentGroupSet" +"Sites","GetMgSiteTermStoreSetParentGroupSet.g.cs","v1.0","Get-MgSiteTermStoreSetParentGroupSet","","","dispatcher","" +"Sites","GetMgSiteTermStoreSetParentGroupSetChild.g.cs","v1.0","Get-MgSiteTermStoreSetParentGroupSetChild","GET","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/children","matched","Get-MgSiteTermStoreSetParentGroupSetChild" +"Sites","GetMgSiteTermStoreSetParentGroupSetChildCount.g.cs","v1.0","Get-MgSiteTermStoreSetParentGroupSetChildCount","GET","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/children/{param}/children/$count","matched","Get-MgSiteTermStoreSetParentGroupSetChildCount" +"Sites","GetMgSiteTermStoreSetParentGroupSetChildRelation.g.cs","v1.0","Get-MgSiteTermStoreSetParentGroupSetChildRelation","GET","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/children/{param}/children/{param}/relations","matched","Get-MgSiteTermStoreSetParentGroupSetChildRelation" +"Sites","GetMgSiteTermStoreSetParentGroupSetChildRelationCount.g.cs","v1.0","Get-MgSiteTermStoreSetParentGroupSetChildRelationCount","GET","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/children/{param}/children/{param}/relations/$count","matched","Get-MgSiteTermStoreSetParentGroupSetChildRelationCount" +"Sites","GetMgSiteTermStoreSetParentGroupSetChildRelationFromTerm.g.cs","v1.0","Get-MgSiteTermStoreSetParentGroupSetChildRelationFromTerm","GET","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/children/{param}/children/{param}/relations/{param}/fromTerm","matched","Get-MgSiteTermStoreSetParentGroupSetChildRelationFromTerm" +"Sites","GetMgSiteTermStoreSetParentGroupSetChildRelationSet.g.cs","v1.0","Get-MgSiteTermStoreSetParentGroupSetChildRelationSet","GET","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/children/{param}/children/{param}/relations/{param}/set","matched","Get-MgSiteTermStoreSetParentGroupSetChildRelationSet" +"Sites","GetMgSiteTermStoreSetParentGroupSetChildRelationToTerm.g.cs","v1.0","Get-MgSiteTermStoreSetParentGroupSetChildRelationToTerm","GET","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/children/{param}/children/{param}/relations/{param}/toTerm","matched","Get-MgSiteTermStoreSetParentGroupSetChildRelationToTerm" +"Sites","GetMgSiteTermStoreSetParentGroupSetChildSet.g.cs","v1.0","Get-MgSiteTermStoreSetParentGroupSetChildSet","GET","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/children/{param}/children/{param}/set","matched","Get-MgSiteTermStoreSetParentGroupSetChildSet" +"Sites","GetMgSiteTermStoreSetParentGroupSetCount.g.cs","v1.0","Get-MgSiteTermStoreSetParentGroupSetCount","GET","/sites/{param}/termStore/sets/{param}/parentGroup/sets/$count","matched","Get-MgSiteTermStoreSetParentGroupSetCount" +"Sites","GetMgSiteTermStoreSetParentGroupSetRelation_Get.g.cs","v1.0","Get-MgSiteTermStoreSetParentGroupSetRelation","GET","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/relations/{param}","matched","Get-MgSiteTermStoreSetParentGroupSetRelation" +"Sites","GetMgSiteTermStoreSetParentGroupSetRelation_List.g.cs","v1.0","Get-MgSiteTermStoreSetParentGroupSetRelation","GET","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/relations","matched","Get-MgSiteTermStoreSetParentGroupSetRelation" +"Sites","GetMgSiteTermStoreSetParentGroupSetRelation.g.cs","v1.0","Get-MgSiteTermStoreSetParentGroupSetRelation","","","dispatcher","" +"Sites","GetMgSiteTermStoreSetParentGroupSetRelationCount.g.cs","v1.0","Get-MgSiteTermStoreSetParentGroupSetRelationCount","GET","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/relations/$count","matched","Get-MgSiteTermStoreSetParentGroupSetRelationCount" +"Sites","GetMgSiteTermStoreSetParentGroupSetRelationFromTerm.g.cs","v1.0","Get-MgSiteTermStoreSetParentGroupSetRelationFromTerm","GET","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/relations/{param}/fromTerm","matched","Get-MgSiteTermStoreSetParentGroupSetRelationFromTerm" +"Sites","GetMgSiteTermStoreSetParentGroupSetRelationSet.g.cs","v1.0","Get-MgSiteTermStoreSetParentGroupSetRelationSet","GET","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/relations/{param}/set","matched","Get-MgSiteTermStoreSetParentGroupSetRelationSet" +"Sites","GetMgSiteTermStoreSetParentGroupSetRelationToTerm.g.cs","v1.0","Get-MgSiteTermStoreSetParentGroupSetRelationToTerm","GET","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/relations/{param}/toTerm","matched","Get-MgSiteTermStoreSetParentGroupSetRelationToTerm" +"Sites","GetMgSiteTermStoreSetParentGroupSetTerm_Get.g.cs","v1.0","Get-MgSiteTermStoreSetParentGroupSetTerm","GET","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}","matched","Get-MgSiteTermStoreSetParentGroupSetTerm" +"Sites","GetMgSiteTermStoreSetParentGroupSetTerm_List.g.cs","v1.0","Get-MgSiteTermStoreSetParentGroupSetTerm","GET","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms","matched","Get-MgSiteTermStoreSetParentGroupSetTerm" +"Sites","GetMgSiteTermStoreSetParentGroupSetTerm.g.cs","v1.0","Get-MgSiteTermStoreSetParentGroupSetTerm","","","dispatcher","" +"Sites","GetMgSiteTermStoreSetParentGroupSetTermChild_Get.g.cs","v1.0","Get-MgSiteTermStoreSetParentGroupSetTermChild","GET","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/children/{param}","matched","Get-MgSiteTermStoreSetParentGroupSetTermChild" +"Sites","GetMgSiteTermStoreSetParentGroupSetTermChild_List.g.cs","v1.0","Get-MgSiteTermStoreSetParentGroupSetTermChild","GET","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/children","matched","Get-MgSiteTermStoreSetParentGroupSetTermChild" +"Sites","GetMgSiteTermStoreSetParentGroupSetTermChild.g.cs","v1.0","Get-MgSiteTermStoreSetParentGroupSetTermChild","","","dispatcher","" +"Sites","GetMgSiteTermStoreSetParentGroupSetTermChildCount.g.cs","v1.0","Get-MgSiteTermStoreSetParentGroupSetTermChildCount","GET","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/children/$count","matched","Get-MgSiteTermStoreSetParentGroupSetTermChildCount" +"Sites","GetMgSiteTermStoreSetParentGroupSetTermChildRelation_Get.g.cs","v1.0","Get-MgSiteTermStoreSetParentGroupSetTermChildRelation","GET","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/children/{param}/relations/{param}","matched","Get-MgSiteTermStoreSetParentGroupSetTermChildRelation" +"Sites","GetMgSiteTermStoreSetParentGroupSetTermChildRelation_List.g.cs","v1.0","Get-MgSiteTermStoreSetParentGroupSetTermChildRelation","GET","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/children/{param}/relations","matched","Get-MgSiteTermStoreSetParentGroupSetTermChildRelation" +"Sites","GetMgSiteTermStoreSetParentGroupSetTermChildRelation.g.cs","v1.0","Get-MgSiteTermStoreSetParentGroupSetTermChildRelation","","","dispatcher","" +"Sites","GetMgSiteTermStoreSetParentGroupSetTermChildRelationCount.g.cs","v1.0","Get-MgSiteTermStoreSetParentGroupSetTermChildRelationCount","GET","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/children/{param}/relations/$count","matched","Get-MgSiteTermStoreSetParentGroupSetTermChildRelationCount" +"Sites","GetMgSiteTermStoreSetParentGroupSetTermChildRelationFromTerm.g.cs","v1.0","Get-MgSiteTermStoreSetParentGroupSetTermChildRelationFromTerm","GET","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/children/{param}/relations/{param}/fromTerm","matched","Get-MgSiteTermStoreSetParentGroupSetTermChildRelationFromTerm" +"Sites","GetMgSiteTermStoreSetParentGroupSetTermChildRelationSet.g.cs","v1.0","Get-MgSiteTermStoreSetParentGroupSetTermChildRelationSet","GET","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/children/{param}/relations/{param}/set","matched","Get-MgSiteTermStoreSetParentGroupSetTermChildRelationSet" +"Sites","GetMgSiteTermStoreSetParentGroupSetTermChildRelationToTerm.g.cs","v1.0","Get-MgSiteTermStoreSetParentGroupSetTermChildRelationToTerm","GET","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/children/{param}/relations/{param}/toTerm","matched","Get-MgSiteTermStoreSetParentGroupSetTermChildRelationToTerm" +"Sites","GetMgSiteTermStoreSetParentGroupSetTermChildSet.g.cs","v1.0","Get-MgSiteTermStoreSetParentGroupSetTermChildSet","GET","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/children/{param}/set","matched","Get-MgSiteTermStoreSetParentGroupSetTermChildSet" +"Sites","GetMgSiteTermStoreSetParentGroupSetTermCount.g.cs","v1.0","Get-MgSiteTermStoreSetParentGroupSetTermCount","GET","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/$count","matched","Get-MgSiteTermStoreSetParentGroupSetTermCount" +"Sites","GetMgSiteTermStoreSetParentGroupSetTermRelation_Get.g.cs","v1.0","Get-MgSiteTermStoreSetParentGroupSetTermRelation","GET","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/relations/{param}","matched","Get-MgSiteTermStoreSetParentGroupSetTermRelation" +"Sites","GetMgSiteTermStoreSetParentGroupSetTermRelation_List.g.cs","v1.0","Get-MgSiteTermStoreSetParentGroupSetTermRelation","GET","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/relations","matched","Get-MgSiteTermStoreSetParentGroupSetTermRelation" +"Sites","GetMgSiteTermStoreSetParentGroupSetTermRelation.g.cs","v1.0","Get-MgSiteTermStoreSetParentGroupSetTermRelation","","","dispatcher","" +"Sites","GetMgSiteTermStoreSetParentGroupSetTermRelationCount.g.cs","v1.0","Get-MgSiteTermStoreSetParentGroupSetTermRelationCount","GET","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/relations/$count","matched","Get-MgSiteTermStoreSetParentGroupSetTermRelationCount" +"Sites","GetMgSiteTermStoreSetParentGroupSetTermRelationFromTerm.g.cs","v1.0","Get-MgSiteTermStoreSetParentGroupSetTermRelationFromTerm","GET","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/relations/{param}/fromTerm","matched","Get-MgSiteTermStoreSetParentGroupSetTermRelationFromTerm" +"Sites","GetMgSiteTermStoreSetParentGroupSetTermRelationSet.g.cs","v1.0","Get-MgSiteTermStoreSetParentGroupSetTermRelationSet","GET","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/relations/{param}/set","matched","Get-MgSiteTermStoreSetParentGroupSetTermRelationSet" +"Sites","GetMgSiteTermStoreSetParentGroupSetTermRelationToTerm.g.cs","v1.0","Get-MgSiteTermStoreSetParentGroupSetTermRelationToTerm","GET","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/relations/{param}/toTerm","matched","Get-MgSiteTermStoreSetParentGroupSetTermRelationToTerm" +"Sites","GetMgSiteTermStoreSetParentGroupSetTermSet.g.cs","v1.0","Get-MgSiteTermStoreSetParentGroupSetTermSet","GET","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/set","matched","Get-MgSiteTermStoreSetParentGroupSetTermSet" +"Sites","GetMgSiteTermStoreSetRelation_Get.g.cs","v1.0","Get-MgSiteTermStoreSetRelation","GET","/sites/{param}/termStore/sets/{param}/relations/{param}","matched","Get-MgSiteTermStoreSetRelation" +"Sites","GetMgSiteTermStoreSetRelation_List.g.cs","v1.0","Get-MgSiteTermStoreSetRelation","GET","/sites/{param}/termStore/sets/{param}/relations","matched","Get-MgSiteTermStoreSetRelation" +"Sites","GetMgSiteTermStoreSetRelation.g.cs","v1.0","Get-MgSiteTermStoreSetRelation","","","dispatcher","" +"Sites","GetMgSiteTermStoreSetRelationCount.g.cs","v1.0","Get-MgSiteTermStoreSetRelationCount","GET","/sites/{param}/termStore/sets/{param}/relations/$count","matched","Get-MgSiteTermStoreSetRelationCount" +"Sites","GetMgSiteTermStoreSetRelationFromTerm.g.cs","v1.0","Get-MgSiteTermStoreSetRelationFromTerm","GET","/sites/{param}/termStore/sets/{param}/relations/{param}/fromTerm","matched","Get-MgSiteTermStoreSetRelationFromTerm" +"Sites","GetMgSiteTermStoreSetRelationSet.g.cs","v1.0","Get-MgSiteTermStoreSetRelationSet","GET","/sites/{param}/termStore/sets/{param}/relations/{param}/set","matched","Get-MgSiteTermStoreSetRelationSet" +"Sites","GetMgSiteTermStoreSetRelationToTerm.g.cs","v1.0","Get-MgSiteTermStoreSetRelationToTerm","GET","/sites/{param}/termStore/sets/{param}/relations/{param}/toTerm","matched","Get-MgSiteTermStoreSetRelationToTerm" +"Sites","GetMgSiteTermStoreSetTerm_Get.g.cs","v1.0","Get-MgSiteTermStoreSetTerm","GET","/sites/{param}/termStore/sets/{param}/terms/{param}","matched","Get-MgSiteTermStoreSetTerm" +"Sites","GetMgSiteTermStoreSetTerm_List.g.cs","v1.0","Get-MgSiteTermStoreSetTerm","GET","/sites/{param}/termStore/sets/{param}/terms","matched","Get-MgSiteTermStoreSetTerm" +"Sites","GetMgSiteTermStoreSetTerm.g.cs","v1.0","Get-MgSiteTermStoreSetTerm","","","dispatcher","" +"Sites","GetMgSiteTermStoreSetTermChild_Get.g.cs","v1.0","Get-MgSiteTermStoreSetTermChild","GET","/sites/{param}/termStore/sets/{param}/terms/{param}/children/{param}","matched","Get-MgSiteTermStoreSetTermChild" +"Sites","GetMgSiteTermStoreSetTermChild_List.g.cs","v1.0","Get-MgSiteTermStoreSetTermChild","GET","/sites/{param}/termStore/sets/{param}/terms/{param}/children","matched","Get-MgSiteTermStoreSetTermChild" +"Sites","GetMgSiteTermStoreSetTermChild.g.cs","v1.0","Get-MgSiteTermStoreSetTermChild","","","dispatcher","" +"Sites","GetMgSiteTermStoreSetTermChildCount.g.cs","v1.0","Get-MgSiteTermStoreSetTermChildCount","GET","/sites/{param}/termStore/sets/{param}/terms/{param}/children/$count","matched","Get-MgSiteTermStoreSetTermChildCount" +"Sites","GetMgSiteTermStoreSetTermChildRelation_Get.g.cs","v1.0","Get-MgSiteTermStoreSetTermChildRelation","GET","/sites/{param}/termStore/sets/{param}/terms/{param}/children/{param}/relations/{param}","matched","Get-MgSiteTermStoreSetTermChildRelation" +"Sites","GetMgSiteTermStoreSetTermChildRelation_List.g.cs","v1.0","Get-MgSiteTermStoreSetTermChildRelation","GET","/sites/{param}/termStore/sets/{param}/terms/{param}/children/{param}/relations","matched","Get-MgSiteTermStoreSetTermChildRelation" +"Sites","GetMgSiteTermStoreSetTermChildRelation.g.cs","v1.0","Get-MgSiteTermStoreSetTermChildRelation","","","dispatcher","" +"Sites","GetMgSiteTermStoreSetTermChildRelationCount.g.cs","v1.0","Get-MgSiteTermStoreSetTermChildRelationCount","GET","/sites/{param}/termStore/sets/{param}/terms/{param}/children/{param}/relations/$count","matched","Get-MgSiteTermStoreSetTermChildRelationCount" +"Sites","GetMgSiteTermStoreSetTermChildRelationFromTerm.g.cs","v1.0","Get-MgSiteTermStoreSetTermChildRelationFromTerm","GET","/sites/{param}/termStore/sets/{param}/terms/{param}/children/{param}/relations/{param}/fromTerm","matched","Get-MgSiteTermStoreSetTermChildRelationFromTerm" +"Sites","GetMgSiteTermStoreSetTermChildRelationSet.g.cs","v1.0","Get-MgSiteTermStoreSetTermChildRelationSet","GET","/sites/{param}/termStore/sets/{param}/terms/{param}/children/{param}/relations/{param}/set","matched","Get-MgSiteTermStoreSetTermChildRelationSet" +"Sites","GetMgSiteTermStoreSetTermChildRelationToTerm.g.cs","v1.0","Get-MgSiteTermStoreSetTermChildRelationToTerm","GET","/sites/{param}/termStore/sets/{param}/terms/{param}/children/{param}/relations/{param}/toTerm","matched","Get-MgSiteTermStoreSetTermChildRelationToTerm" +"Sites","GetMgSiteTermStoreSetTermChildSet.g.cs","v1.0","Get-MgSiteTermStoreSetTermChildSet","GET","/sites/{param}/termStore/sets/{param}/terms/{param}/children/{param}/set","matched","Get-MgSiteTermStoreSetTermChildSet" +"Sites","GetMgSiteTermStoreSetTermCount.g.cs","v1.0","Get-MgSiteTermStoreSetTermCount","GET","/sites/{param}/termStore/sets/{param}/terms/$count","matched","Get-MgSiteTermStoreSetTermCount" +"Sites","GetMgSiteTermStoreSetTermRelation_Get.g.cs","v1.0","Get-MgSiteTermStoreSetTermRelation","GET","/sites/{param}/termStore/sets/{param}/terms/{param}/relations/{param}","matched","Get-MgSiteTermStoreSetTermRelation" +"Sites","GetMgSiteTermStoreSetTermRelation_List.g.cs","v1.0","Get-MgSiteTermStoreSetTermRelation","GET","/sites/{param}/termStore/sets/{param}/terms/{param}/relations","matched","Get-MgSiteTermStoreSetTermRelation" +"Sites","GetMgSiteTermStoreSetTermRelation.g.cs","v1.0","Get-MgSiteTermStoreSetTermRelation","","","dispatcher","" +"Sites","GetMgSiteTermStoreSetTermRelationCount.g.cs","v1.0","Get-MgSiteTermStoreSetTermRelationCount","GET","/sites/{param}/termStore/sets/{param}/terms/{param}/relations/$count","matched","Get-MgSiteTermStoreSetTermRelationCount" +"Sites","GetMgSiteTermStoreSetTermRelationFromTerm.g.cs","v1.0","Get-MgSiteTermStoreSetTermRelationFromTerm","GET","/sites/{param}/termStore/sets/{param}/terms/{param}/relations/{param}/fromTerm","matched","Get-MgSiteTermStoreSetTermRelationFromTerm" +"Sites","GetMgSiteTermStoreSetTermRelationSet.g.cs","v1.0","Get-MgSiteTermStoreSetTermRelationSet","GET","/sites/{param}/termStore/sets/{param}/terms/{param}/relations/{param}/set","matched","Get-MgSiteTermStoreSetTermRelationSet" +"Sites","GetMgSiteTermStoreSetTermRelationToTerm.g.cs","v1.0","Get-MgSiteTermStoreSetTermRelationToTerm","GET","/sites/{param}/termStore/sets/{param}/terms/{param}/relations/{param}/toTerm","matched","Get-MgSiteTermStoreSetTermRelationToTerm" +"Sites","GetMgSiteTermStoreSetTermSet.g.cs","v1.0","Get-MgSiteTermStoreSetTermSet","GET","/sites/{param}/termStore/sets/{param}/terms/{param}/set","matched","Get-MgSiteTermStoreSetTermSet" +"Sites","GetMgSubSite_Get.g.cs","v1.0","Get-MgSubSite","GET","/sites/{param}/sites/{param}","matched","Get-MgSubSite" +"Sites","GetMgSubSite_List.g.cs","v1.0","Get-MgSubSite","GET","/sites/{param}/sites","matched","Get-MgSubSite" +"Sites","GetMgSubSite.g.cs","v1.0","Get-MgSubSite","","","dispatcher","" +"Sites","GetMgUserFollowedSite_Get.g.cs","v1.0","Get-MgUserFollowedSite","GET","/users/{param}/followedSites/{param}","matched","Get-MgUserFollowedSite" +"Sites","GetMgUserFollowedSite_List.g.cs","v1.0","Get-MgUserFollowedSite","GET","/users/{param}/followedSites","matched","Get-MgUserFollowedSite" +"Sites","GetMgUserFollowedSite.g.cs","v1.0","Get-MgUserFollowedSite","","","dispatcher","" +"Sites","GetMgUserFollowedSiteCount.g.cs","v1.0","Get-MgUserFollowedSiteCount","GET","/users/{param}/followedSites/$count","matched","Get-MgUserFollowedSiteCount" +"Sites","InvokeMgGroupSiteAdd.g.cs","v1.0","Invoke-MgGroupSiteAdd","POST","/groups/{param}/sites/add","mismatch","Add-MgGroupSite" +"Sites","InvokeMgGroupSiteContentTypeAddCopy.g.cs","v1.0","Invoke-MgGroupSiteContentTypeAddCopy","POST","/groups/{param}/sites/{param}/contentTypes/addCopy","mismatch","Add-MgGroupSiteContentTypeCopy" +"Sites","InvokeMgGroupSiteContentTypeAddCopyFromContentTypeHub.g.cs","v1.0","Invoke-MgGroupSiteContentTypeAddCopyFromContentTypeHub","POST","/groups/{param}/sites/{param}/contentTypes/addCopyFromContentTypeHub","mismatch","Add-MgGroupSiteContentTypeCopyFromContentTypeHub" +"Sites","InvokeMgGroupSiteContentTypeAssociateWithHubSites.g.cs","v1.0","Invoke-MgGroupSiteContentTypeAssociateWithHubSites","POST","/groups/{param}/sites/{param}/contentTypes/{param}/associateWithHubSites","mismatch","Join-MgGroupSiteContentTypeWithHubSite" +"Sites","InvokeMgGroupSiteContentTypeCopyToDefaultContentLocation.g.cs","v1.0","Invoke-MgGroupSiteContentTypeCopyToDefaultContentLocation","POST","/groups/{param}/sites/{param}/contentTypes/{param}/copyToDefaultContentLocation","mismatch","Copy-MgGroupSiteContentTypeToDefaultContentLocation" +"Sites","InvokeMgGroupSiteContentTypePublish.g.cs","v1.0","Invoke-MgGroupSiteContentTypePublish","POST","/groups/{param}/sites/{param}/contentTypes/{param}/publish","mismatch","Publish-MgGroupSiteContentType" +"Sites","InvokeMgGroupSiteContentTypeUnpublish.g.cs","v1.0","Invoke-MgGroupSiteContentTypeUnpublish","POST","/groups/{param}/sites/{param}/contentTypes/{param}/unpublish","mismatch","Unpublish-MgGroupSiteContentType" +"Sites","InvokeMgGroupSiteListContentTypeAddCopy.g.cs","v1.0","Invoke-MgGroupSiteListContentTypeAddCopy","POST","/groups/{param}/sites/{param}/lists/{param}/contentTypes/addCopy","mismatch","Add-MgGroupSiteListContentTypeCopy" +"Sites","InvokeMgGroupSiteListContentTypeAddCopyFromContentTypeHub.g.cs","v1.0","Invoke-MgGroupSiteListContentTypeAddCopyFromContentTypeHub","POST","/groups/{param}/sites/{param}/lists/{param}/contentTypes/addCopyFromContentTypeHub","mismatch","Add-MgGroupSiteListContentTypeCopyFromContentTypeHub" +"Sites","InvokeMgGroupSiteListContentTypeAssociateWithHubSites.g.cs","v1.0","Invoke-MgGroupSiteListContentTypeAssociateWithHubSites","POST","/groups/{param}/sites/{param}/lists/{param}/contentTypes/{param}/associateWithHubSites","mismatch","Join-MgGroupSiteListContentTypeWithHubSite" +"Sites","InvokeMgGroupSiteListContentTypeCopyToDefaultContentLocation.g.cs","v1.0","Invoke-MgGroupSiteListContentTypeCopyToDefaultContentLocation","POST","/groups/{param}/sites/{param}/lists/{param}/contentTypes/{param}/copyToDefaultContentLocation","mismatch","Copy-MgGroupSiteListContentTypeToDefaultContentLocation" +"Sites","InvokeMgGroupSiteListContentTypePublish.g.cs","v1.0","Invoke-MgGroupSiteListContentTypePublish","POST","/groups/{param}/sites/{param}/lists/{param}/contentTypes/{param}/publish","mismatch","Publish-MgGroupSiteListContentType" +"Sites","InvokeMgGroupSiteListContentTypeUnpublish.g.cs","v1.0","Invoke-MgGroupSiteListContentTypeUnpublish","POST","/groups/{param}/sites/{param}/lists/{param}/contentTypes/{param}/unpublish","mismatch","Unpublish-MgGroupSiteListContentType" +"Sites","InvokeMgGroupSiteListItemCreateLink.g.cs","v1.0","Invoke-MgGroupSiteListItemCreateLink","POST","/groups/{param}/sites/{param}/lists/{param}/items/{param}/createLink","mismatch","New-MgGroupSiteListItemLink" +"Sites","InvokeMgGroupSiteListItemDocumentSetVersionRestore.g.cs","v1.0","Invoke-MgGroupSiteListItemDocumentSetVersionRestore","POST","/groups/{param}/sites/{param}/lists/{param}/items/{param}/documentSetVersions/{param}/restore","mismatch","Restore-MgGroupSiteListItemDocumentSetVersion" +"Sites","InvokeMgGroupSiteListItemPermissionGrant.g.cs","v1.0","Invoke-MgGroupSiteListItemPermissionGrant","POST","/groups/{param}/sites/{param}/lists/{param}/items/{param}/permissions/{param}/grant","mismatch","Grant-MgGroupSiteListItemPermission" +"Sites","InvokeMgGroupSiteListItemVersionRestoreVersion.g.cs","v1.0","Invoke-MgGroupSiteListItemVersionRestoreVersion","POST","/groups/{param}/sites/{param}/lists/{param}/items/{param}/versions/{param}/restoreVersion","mismatch","Restore-MgGroupSiteListItemVersion" +"Sites","InvokeMgGroupSiteListPermissionGrant.g.cs","v1.0","Invoke-MgGroupSiteListPermissionGrant","POST","/groups/{param}/sites/{param}/lists/{param}/permissions/{param}/grant","mismatch","Grant-MgGroupSiteListPermission" +"Sites","InvokeMgGroupSiteListSubscriptionReauthorize.g.cs","v1.0","Invoke-MgGroupSiteListSubscriptionReauthorize","POST","/groups/{param}/sites/{param}/lists/{param}/subscriptions/{param}/reauthorize","mismatch","Invoke-MgReauthorizeGroupSiteListSubscription" +"Sites","InvokeMgGroupSiteOnenoteNotebookCopyNotebook.g.cs","v1.0","Invoke-MgGroupSiteOnenoteNotebookCopyNotebook","POST","/groups/{param}/sites/{param}/onenote/notebooks/{param}/copyNotebook","mismatch","Copy-MgGroupSiteOnenoteNotebook" +"Sites","InvokeMgGroupSiteOnenoteNotebookGetNotebookFromWebUrl.g.cs","v1.0","Invoke-MgGroupSiteOnenoteNotebookGetNotebookFromWebUrl","POST","/groups/{param}/sites/{param}/onenote/notebooks/getNotebookFromWebUrl","mismatch","Get-MgGroupSiteOnenoteNotebookFromWebUrl" +"Sites","InvokeMgGroupSiteOnenoteNotebookSectionCopyToNotebook.g.cs","v1.0","Invoke-MgGroupSiteOnenoteNotebookSectionCopyToNotebook","POST","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sections/{param}/copyToNotebook","mismatch","Copy-MgGroupSiteOnenoteNotebookSectionToNotebook" +"Sites","InvokeMgGroupSiteOnenoteNotebookSectionCopyToSectionGroup.g.cs","v1.0","Invoke-MgGroupSiteOnenoteNotebookSectionCopyToSectionGroup","POST","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sections/{param}/copyToSectionGroup","mismatch","Copy-MgGroupSiteOnenoteNotebookSectionToSectionGroup" +"Sites","InvokeMgGroupSiteOnenoteNotebookSectionGroupSectionCopyToNotebook.g.cs","v1.0","Invoke-MgGroupSiteOnenoteNotebookSectionGroupSectionCopyToNotebook","POST","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/copyToNotebook","mismatch","Copy-MgGroupSiteOnenoteNotebookSectionGroupSectionToNotebook" +"Sites","InvokeMgGroupSiteOnenoteNotebookSectionGroupSectionCopyToSectionGroup.g.cs","v1.0","Invoke-MgGroupSiteOnenoteNotebookSectionGroupSectionCopyToSectionGroup","POST","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/copyToSectionGroup","mismatch","Copy-MgGroupSiteOnenoteNotebookSectionGroupSectionToSectionGroup" +"Sites","InvokeMgGroupSiteOnenoteNotebookSectionGroupSectionPageCopyToSection.g.cs","v1.0","Invoke-MgGroupSiteOnenoteNotebookSectionGroupSectionPageCopyToSection","POST","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}/copyToSection","mismatch","Copy-MgGroupSiteOnenoteNotebookSectionGroupSectionPageToSection" +"Sites","InvokeMgGroupSiteOnenoteNotebookSectionGroupSectionPageOnenotePatchContent.g.cs","v1.0","Invoke-MgGroupSiteOnenoteNotebookSectionGroupSectionPageOnenotePatchContent","POST","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}/onenotePatchContent","no-oracle","" +"Sites","InvokeMgGroupSiteOnenoteNotebookSectionPageCopyToSection.g.cs","v1.0","Invoke-MgGroupSiteOnenoteNotebookSectionPageCopyToSection","POST","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}/copyToSection","mismatch","Copy-MgGroupSiteOnenoteNotebookSectionPageToSection" +"Sites","InvokeMgGroupSiteOnenoteNotebookSectionPageOnenotePatchContent.g.cs","v1.0","Invoke-MgGroupSiteOnenoteNotebookSectionPageOnenotePatchContent","POST","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}/onenotePatchContent","no-oracle","" +"Sites","InvokeMgGroupSiteOnenotePageCopyToSection.g.cs","v1.0","Invoke-MgGroupSiteOnenotePageCopyToSection","POST","/groups/{param}/sites/{param}/onenote/pages/{param}/copyToSection","mismatch","Copy-MgGroupSiteOnenotePageToSection" +"Sites","InvokeMgGroupSiteOnenotePageOnenotePatchContent.g.cs","v1.0","Invoke-MgGroupSiteOnenotePageOnenotePatchContent","POST","/groups/{param}/sites/{param}/onenote/pages/{param}/onenotePatchContent","no-oracle","" +"Sites","InvokeMgGroupSiteOnenoteSectionCopyToNotebook.g.cs","v1.0","Invoke-MgGroupSiteOnenoteSectionCopyToNotebook","POST","/groups/{param}/sites/{param}/onenote/sections/{param}/copyToNotebook","mismatch","Copy-MgGroupSiteOnenoteSectionToNotebook" +"Sites","InvokeMgGroupSiteOnenoteSectionCopyToSectionGroup.g.cs","v1.0","Invoke-MgGroupSiteOnenoteSectionCopyToSectionGroup","POST","/groups/{param}/sites/{param}/onenote/sections/{param}/copyToSectionGroup","mismatch","Copy-MgGroupSiteOnenoteSectionToSectionGroup" +"Sites","InvokeMgGroupSiteOnenoteSectionGroupSectionCopyToNotebook.g.cs","v1.0","Invoke-MgGroupSiteOnenoteSectionGroupSectionCopyToNotebook","POST","/groups/{param}/sites/{param}/onenote/sectionGroups/{param}/sections/{param}/copyToNotebook","mismatch","Copy-MgGroupSiteOnenoteSectionGroupSectionToNotebook" +"Sites","InvokeMgGroupSiteOnenoteSectionGroupSectionCopyToSectionGroup.g.cs","v1.0","Invoke-MgGroupSiteOnenoteSectionGroupSectionCopyToSectionGroup","POST","/groups/{param}/sites/{param}/onenote/sectionGroups/{param}/sections/{param}/copyToSectionGroup","mismatch","Copy-MgGroupSiteOnenoteSectionGroupSectionToSectionGroup" +"Sites","InvokeMgGroupSiteOnenoteSectionGroupSectionPageCopyToSection.g.cs","v1.0","Invoke-MgGroupSiteOnenoteSectionGroupSectionPageCopyToSection","POST","/groups/{param}/sites/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}/copyToSection","mismatch","Copy-MgGroupSiteOnenoteSectionGroupSectionPageToSection" +"Sites","InvokeMgGroupSiteOnenoteSectionGroupSectionPageOnenotePatchContent.g.cs","v1.0","Invoke-MgGroupSiteOnenoteSectionGroupSectionPageOnenotePatchContent","POST","/groups/{param}/sites/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}/onenotePatchContent","no-oracle","" +"Sites","InvokeMgGroupSiteOnenoteSectionPageCopyToSection.g.cs","v1.0","Invoke-MgGroupSiteOnenoteSectionPageCopyToSection","POST","/groups/{param}/sites/{param}/onenote/sections/{param}/pages/{param}/copyToSection","mismatch","Copy-MgGroupSiteOnenoteSectionPageToSection" +"Sites","InvokeMgGroupSiteOnenoteSectionPageOnenotePatchContent.g.cs","v1.0","Invoke-MgGroupSiteOnenoteSectionPageOnenotePatchContent","POST","/groups/{param}/sites/{param}/onenote/sections/{param}/pages/{param}/onenotePatchContent","no-oracle","" +"Sites","InvokeMgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpartGetPositionOfWebPart.g.cs","v1.0","Invoke-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpartGetPositionOfWebPart","POST","","cast","" +"Sites","InvokeMgGroupSitePageAsSitePageCanvaLayoutVerticalSectionWebpartGetPositionOfWebPart.g.cs","v1.0","Invoke-MgGroupSitePageAsSitePageCanvaLayoutVerticalSectionWebpartGetPositionOfWebPart","POST","","cast","" +"Sites","InvokeMgGroupSitePageAsSitePageWebPartGetPositionOfWebPart.g.cs","v1.0","Invoke-MgGroupSitePageAsSitePageWebPartGetPositionOfWebPart","POST","","cast","" +"Sites","InvokeMgGroupSitePermissionGrant.g.cs","v1.0","Invoke-MgGroupSitePermissionGrant","POST","/groups/{param}/sites/{param}/permissions/{param}/grant","mismatch","Grant-MgGroupSitePermission" +"Sites","InvokeMgGroupSiteRemove.g.cs","v1.0","Invoke-MgGroupSiteRemove","POST","/groups/{param}/sites/remove","mismatch","Remove-MgGroupSite" +"Sites","InvokeMgSiteAdd.g.cs","v1.0","Invoke-MgSiteAdd","POST","/sites/add","mismatch","Add-MgSite" +"Sites","InvokeMgSiteContentTypeAddCopy.g.cs","v1.0","Invoke-MgSiteContentTypeAddCopy","POST","/sites/{param}/contentTypes/addCopy","mismatch","Add-MgSiteContentTypeCopy" +"Sites","InvokeMgSiteContentTypeAddCopyFromContentTypeHub.g.cs","v1.0","Invoke-MgSiteContentTypeAddCopyFromContentTypeHub","POST","/sites/{param}/contentTypes/addCopyFromContentTypeHub","mismatch","Add-MgSiteContentTypeCopyFromContentTypeHub" +"Sites","InvokeMgSiteContentTypeAssociateWithHubSites.g.cs","v1.0","Invoke-MgSiteContentTypeAssociateWithHubSites","POST","/sites/{param}/contentTypes/{param}/associateWithHubSites","mismatch","Join-MgSiteContentTypeWithHubSite" +"Sites","InvokeMgSiteContentTypeCopyToDefaultContentLocation.g.cs","v1.0","Invoke-MgSiteContentTypeCopyToDefaultContentLocation","POST","/sites/{param}/contentTypes/{param}/copyToDefaultContentLocation","mismatch","Copy-MgSiteContentTypeToDefaultContentLocation" +"Sites","InvokeMgSiteContentTypePublish.g.cs","v1.0","Invoke-MgSiteContentTypePublish","POST","/sites/{param}/contentTypes/{param}/publish","mismatch","Publish-MgSiteContentType" +"Sites","InvokeMgSiteContentTypeUnpublish.g.cs","v1.0","Invoke-MgSiteContentTypeUnpublish","POST","/sites/{param}/contentTypes/{param}/unpublish","mismatch","Unpublish-MgSiteContentType" +"Sites","InvokeMgSiteListContentTypeAddCopy.g.cs","v1.0","Invoke-MgSiteListContentTypeAddCopy","POST","/sites/{param}/lists/{param}/contentTypes/addCopy","mismatch","Add-MgSiteListContentTypeCopy" +"Sites","InvokeMgSiteListContentTypeAddCopyFromContentTypeHub.g.cs","v1.0","Invoke-MgSiteListContentTypeAddCopyFromContentTypeHub","POST","/sites/{param}/lists/{param}/contentTypes/addCopyFromContentTypeHub","mismatch","Add-MgSiteListContentTypeCopyFromContentTypeHub" +"Sites","InvokeMgSiteListContentTypeAssociateWithHubSites.g.cs","v1.0","Invoke-MgSiteListContentTypeAssociateWithHubSites","POST","/sites/{param}/lists/{param}/contentTypes/{param}/associateWithHubSites","mismatch","Join-MgSiteListContentTypeWithHubSite" +"Sites","InvokeMgSiteListContentTypeCopyToDefaultContentLocation.g.cs","v1.0","Invoke-MgSiteListContentTypeCopyToDefaultContentLocation","POST","/sites/{param}/lists/{param}/contentTypes/{param}/copyToDefaultContentLocation","mismatch","Copy-MgSiteListContentTypeToDefaultContentLocation" +"Sites","InvokeMgSiteListContentTypePublish.g.cs","v1.0","Invoke-MgSiteListContentTypePublish","POST","/sites/{param}/lists/{param}/contentTypes/{param}/publish","mismatch","Publish-MgSiteListContentType" +"Sites","InvokeMgSiteListContentTypeUnpublish.g.cs","v1.0","Invoke-MgSiteListContentTypeUnpublish","POST","/sites/{param}/lists/{param}/contentTypes/{param}/unpublish","mismatch","Unpublish-MgSiteListContentType" +"Sites","InvokeMgSiteListItemCreateLink.g.cs","v1.0","Invoke-MgSiteListItemCreateLink","POST","/sites/{param}/lists/{param}/items/{param}/createLink","mismatch","New-MgSiteListItemLink" +"Sites","InvokeMgSiteListItemDocumentSetVersionRestore.g.cs","v1.0","Invoke-MgSiteListItemDocumentSetVersionRestore","POST","/sites/{param}/lists/{param}/items/{param}/documentSetVersions/{param}/restore","mismatch","Restore-MgSiteListItemDocumentSetVersion" +"Sites","InvokeMgSiteListItemPermissionGrant.g.cs","v1.0","Invoke-MgSiteListItemPermissionGrant","POST","/sites/{param}/lists/{param}/items/{param}/permissions/{param}/grant","mismatch","Grant-MgSiteListItemPermission" +"Sites","InvokeMgSiteListItemVersionRestoreVersion.g.cs","v1.0","Invoke-MgSiteListItemVersionRestoreVersion","POST","/sites/{param}/lists/{param}/items/{param}/versions/{param}/restoreVersion","mismatch","Restore-MgSiteListItemVersion" +"Sites","InvokeMgSiteListPermissionGrant.g.cs","v1.0","Invoke-MgSiteListPermissionGrant","POST","/sites/{param}/lists/{param}/permissions/{param}/grant","mismatch","Grant-MgSiteListPermission" +"Sites","InvokeMgSiteListSubscriptionReauthorize.g.cs","v1.0","Invoke-MgSiteListSubscriptionReauthorize","POST","/sites/{param}/lists/{param}/subscriptions/{param}/reauthorize","mismatch","Invoke-MgReauthorizeSiteListSubscription" +"Sites","InvokeMgSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpartGetPositionOfWebPart.g.cs","v1.0","Invoke-MgSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpartGetPositionOfWebPart","POST","","cast","" +"Sites","InvokeMgSitePageAsSitePageCanvaLayoutVerticalSectionWebpartGetPositionOfWebPart.g.cs","v1.0","Invoke-MgSitePageAsSitePageCanvaLayoutVerticalSectionWebpartGetPositionOfWebPart","POST","","cast","" +"Sites","InvokeMgSitePageAsSitePageWebPartGetPositionOfWebPart.g.cs","v1.0","Invoke-MgSitePageAsSitePageWebPartGetPositionOfWebPart","POST","","cast","" +"Sites","InvokeMgSitePermissionGrant.g.cs","v1.0","Invoke-MgSitePermissionGrant","POST","/sites/{param}/permissions/{param}/grant","mismatch","Grant-MgSitePermission" +"Sites","InvokeMgSiteRemove.g.cs","v1.0","Invoke-MgSiteRemove","POST","/sites/remove","no-oracle","" +"Sites","InvokeMgUserFollowedSiteAdd.g.cs","v1.0","Invoke-MgUserFollowedSiteAdd","POST","/users/{param}/followedSites/add","mismatch","Add-MgUserFollowedSite" +"Sites","InvokeMgUserFollowedSiteRemove.g.cs","v1.0","Invoke-MgUserFollowedSiteRemove","POST","/users/{param}/followedSites/remove","mismatch","Remove-MgUserFollowedSite" +"Sites","NewMgGroupSiteAnalyticItemActivityStat.g.cs","v1.0","New-MgGroupSiteAnalyticItemActivityStat","POST","/groups/{param}/sites/{param}/analytics/itemActivityStats","matched","New-MgGroupSiteAnalyticItemActivityStat" +"Sites","NewMgGroupSiteAnalyticItemActivityStatActivity.g.cs","v1.0","New-MgGroupSiteAnalyticItemActivityStatActivity","POST","/groups/{param}/sites/{param}/analytics/itemActivityStats/{param}/activities","matched","New-MgGroupSiteAnalyticItemActivityStatActivity" +"Sites","NewMgGroupSiteColumn.g.cs","v1.0","New-MgGroupSiteColumn","POST","/groups/{param}/sites/{param}/columns","matched","New-MgGroupSiteColumn" +"Sites","NewMgGroupSiteContentType.g.cs","v1.0","New-MgGroupSiteContentType","POST","/groups/{param}/sites/{param}/contentTypes","matched","New-MgGroupSiteContentType" +"Sites","NewMgGroupSiteContentTypeColumn.g.cs","v1.0","New-MgGroupSiteContentTypeColumn","POST","/groups/{param}/sites/{param}/contentTypes/{param}/columns","matched","New-MgGroupSiteContentTypeColumn" +"Sites","NewMgGroupSiteContentTypeColumnLink.g.cs","v1.0","New-MgGroupSiteContentTypeColumnLink","POST","/groups/{param}/sites/{param}/contentTypes/{param}/columnLinks","matched","New-MgGroupSiteContentTypeColumnLink" +"Sites","NewMgGroupSiteList.g.cs","v1.0","New-MgGroupSiteList","POST","/groups/{param}/sites/{param}/lists","matched","New-MgGroupSiteList" +"Sites","NewMgGroupSiteListColumn.g.cs","v1.0","New-MgGroupSiteListColumn","POST","/groups/{param}/sites/{param}/lists/{param}/columns","matched","New-MgGroupSiteListColumn" +"Sites","NewMgGroupSiteListContentType.g.cs","v1.0","New-MgGroupSiteListContentType","POST","/groups/{param}/sites/{param}/lists/{param}/contentTypes","matched","New-MgGroupSiteListContentType" +"Sites","NewMgGroupSiteListContentTypeColumn.g.cs","v1.0","New-MgGroupSiteListContentTypeColumn","POST","/groups/{param}/sites/{param}/lists/{param}/contentTypes/{param}/columns","matched","New-MgGroupSiteListContentTypeColumn" +"Sites","NewMgGroupSiteListContentTypeColumnLink.g.cs","v1.0","New-MgGroupSiteListContentTypeColumnLink","POST","/groups/{param}/sites/{param}/lists/{param}/contentTypes/{param}/columnLinks","matched","New-MgGroupSiteListContentTypeColumnLink" +"Sites","NewMgGroupSiteListItem.g.cs","v1.0","New-MgGroupSiteListItem","POST","/groups/{param}/sites/{param}/lists/{param}/items","matched","New-MgGroupSiteListItem" +"Sites","NewMgGroupSiteListItemDocumentSetVersion.g.cs","v1.0","New-MgGroupSiteListItemDocumentSetVersion","POST","/groups/{param}/sites/{param}/lists/{param}/items/{param}/documentSetVersions","matched","New-MgGroupSiteListItemDocumentSetVersion" +"Sites","NewMgGroupSiteListItemPermission.g.cs","v1.0","New-MgGroupSiteListItemPermission","POST","/groups/{param}/sites/{param}/lists/{param}/items/{param}/permissions","matched","New-MgGroupSiteListItemPermission" +"Sites","NewMgGroupSiteListItemVersion.g.cs","v1.0","New-MgGroupSiteListItemVersion","POST","/groups/{param}/sites/{param}/lists/{param}/items/{param}/versions","matched","New-MgGroupSiteListItemVersion" +"Sites","NewMgGroupSiteListOperation.g.cs","v1.0","New-MgGroupSiteListOperation","POST","/groups/{param}/sites/{param}/lists/{param}/operations","matched","New-MgGroupSiteListOperation" +"Sites","NewMgGroupSiteListPermission.g.cs","v1.0","New-MgGroupSiteListPermission","POST","/groups/{param}/sites/{param}/lists/{param}/permissions","matched","New-MgGroupSiteListPermission" +"Sites","NewMgGroupSiteListSubscription.g.cs","v1.0","New-MgGroupSiteListSubscription","POST","/groups/{param}/sites/{param}/lists/{param}/subscriptions","matched","New-MgGroupSiteListSubscription" +"Sites","NewMgGroupSiteOnenoteNotebook.g.cs","v1.0","New-MgGroupSiteOnenoteNotebook","POST","/groups/{param}/sites/{param}/onenote/notebooks","matched","New-MgGroupSiteOnenoteNotebook" +"Sites","NewMgGroupSiteOnenoteNotebookSection.g.cs","v1.0","New-MgGroupSiteOnenoteNotebookSection","POST","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sections","matched","New-MgGroupSiteOnenoteNotebookSection" +"Sites","NewMgGroupSiteOnenoteNotebookSectionGroup.g.cs","v1.0","New-MgGroupSiteOnenoteNotebookSectionGroup","POST","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sectionGroups","matched","New-MgGroupSiteOnenoteNotebookSectionGroup" +"Sites","NewMgGroupSiteOnenoteNotebookSectionGroupSection.g.cs","v1.0","New-MgGroupSiteOnenoteNotebookSectionGroupSection","POST","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections","matched","New-MgGroupSiteOnenoteNotebookSectionGroupSection" +"Sites","NewMgGroupSiteOnenoteNotebookSectionGroupSectionPage.g.cs","v1.0","New-MgGroupSiteOnenoteNotebookSectionGroupSectionPage","POST","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages","matched","New-MgGroupSiteOnenoteNotebookSectionGroupSectionPage" +"Sites","NewMgGroupSiteOnenoteNotebookSectionPage.g.cs","v1.0","New-MgGroupSiteOnenoteNotebookSectionPage","POST","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sections/{param}/pages","matched","New-MgGroupSiteOnenoteNotebookSectionPage" +"Sites","NewMgGroupSiteOnenoteOperation.g.cs","v1.0","New-MgGroupSiteOnenoteOperation","POST","/groups/{param}/sites/{param}/onenote/operations","matched","New-MgGroupSiteOnenoteOperation" +"Sites","NewMgGroupSiteOnenotePage.g.cs","v1.0","New-MgGroupSiteOnenotePage","POST","/groups/{param}/sites/{param}/onenote/pages","matched","New-MgGroupSiteOnenotePage" +"Sites","NewMgGroupSiteOnenoteResource.g.cs","v1.0","New-MgGroupSiteOnenoteResource","POST","/groups/{param}/sites/{param}/onenote/resources","matched","New-MgGroupSiteOnenoteResource" +"Sites","NewMgGroupSiteOnenoteSection.g.cs","v1.0","New-MgGroupSiteOnenoteSection","POST","/groups/{param}/sites/{param}/onenote/sections","matched","New-MgGroupSiteOnenoteSection" +"Sites","NewMgGroupSiteOnenoteSectionGroup.g.cs","v1.0","New-MgGroupSiteOnenoteSectionGroup","POST","/groups/{param}/sites/{param}/onenote/sectionGroups","matched","New-MgGroupSiteOnenoteSectionGroup" +"Sites","NewMgGroupSiteOnenoteSectionGroupSection.g.cs","v1.0","New-MgGroupSiteOnenoteSectionGroupSection","POST","/groups/{param}/sites/{param}/onenote/sectionGroups/{param}/sections","matched","New-MgGroupSiteOnenoteSectionGroupSection" +"Sites","NewMgGroupSiteOnenoteSectionGroupSectionPage.g.cs","v1.0","New-MgGroupSiteOnenoteSectionGroupSectionPage","POST","/groups/{param}/sites/{param}/onenote/sectionGroups/{param}/sections/{param}/pages","matched","New-MgGroupSiteOnenoteSectionGroupSectionPage" +"Sites","NewMgGroupSiteOnenoteSectionPage.g.cs","v1.0","New-MgGroupSiteOnenoteSectionPage","POST","/groups/{param}/sites/{param}/onenote/sections/{param}/pages","matched","New-MgGroupSiteOnenoteSectionPage" +"Sites","NewMgGroupSiteOperation.g.cs","v1.0","New-MgGroupSiteOperation","POST","/groups/{param}/sites/{param}/operations","matched","New-MgGroupSiteOperation" +"Sites","NewMgGroupSitePage.g.cs","v1.0","New-MgGroupSitePage","POST","/groups/{param}/sites/{param}/pages","matched","New-MgGroupSitePage" +"Sites","NewMgGroupSitePageAsSitePageCanvaLayoutHorizontalSection.g.cs","v1.0","New-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSection","POST","","cast","" +"Sites","NewMgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumn.g.cs","v1.0","New-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumn","POST","","cast","" +"Sites","NewMgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart.g.cs","v1.0","New-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart","POST","","cast","" +"Sites","NewMgGroupSitePageAsSitePageCanvaLayoutVerticalSectionWebpart.g.cs","v1.0","New-MgGroupSitePageAsSitePageCanvaLayoutVerticalSectionWebpart","POST","","cast","" +"Sites","NewMgGroupSitePageAsSitePageWebPart.g.cs","v1.0","New-MgGroupSitePageAsSitePageWebPart","POST","","cast","" +"Sites","NewMgGroupSitePermission.g.cs","v1.0","New-MgGroupSitePermission","POST","/groups/{param}/sites/{param}/permissions","matched","New-MgGroupSitePermission" +"Sites","NewMgGroupSiteTermStore.g.cs","v1.0","New-MgGroupSiteTermStore","POST","/groups/{param}/sites/{param}/termStores","matched","New-MgGroupSiteTermStore" +"Sites","NewMgGroupSiteTermStoreGroup.g.cs","v1.0","New-MgGroupSiteTermStoreGroup","POST","/groups/{param}/sites/{param}/termStore/groups","matched","New-MgGroupSiteTermStoreGroup" +"Sites","NewMgGroupSiteTermStoreGroupSet.g.cs","v1.0","New-MgGroupSiteTermStoreGroupSet","POST","/groups/{param}/sites/{param}/termStore/groups/{param}/sets","matched","New-MgGroupSiteTermStoreGroupSet" +"Sites","NewMgGroupSiteTermStoreGroupSetChild.g.cs","v1.0","New-MgGroupSiteTermStoreGroupSetChild","POST","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/children","matched","New-MgGroupSiteTermStoreGroupSetChild" +"Sites","NewMgGroupSiteTermStoreGroupSetChildRelation.g.cs","v1.0","New-MgGroupSiteTermStoreGroupSetChildRelation","POST","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/children/{param}/children/{param}/relations","matched","New-MgGroupSiteTermStoreGroupSetChildRelation" +"Sites","NewMgGroupSiteTermStoreGroupSetRelation.g.cs","v1.0","New-MgGroupSiteTermStoreGroupSetRelation","POST","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/relations","matched","New-MgGroupSiteTermStoreGroupSetRelation" +"Sites","NewMgGroupSiteTermStoreGroupSetTerm.g.cs","v1.0","New-MgGroupSiteTermStoreGroupSetTerm","POST","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/terms","matched","New-MgGroupSiteTermStoreGroupSetTerm" +"Sites","NewMgGroupSiteTermStoreGroupSetTermChild.g.cs","v1.0","New-MgGroupSiteTermStoreGroupSetTermChild","POST","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/children","matched","New-MgGroupSiteTermStoreGroupSetTermChild" +"Sites","NewMgGroupSiteTermStoreGroupSetTermChildRelation.g.cs","v1.0","New-MgGroupSiteTermStoreGroupSetTermChildRelation","POST","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/children/{param}/relations","matched","New-MgGroupSiteTermStoreGroupSetTermChildRelation" +"Sites","NewMgGroupSiteTermStoreGroupSetTermRelation.g.cs","v1.0","New-MgGroupSiteTermStoreGroupSetTermRelation","POST","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/relations","matched","New-MgGroupSiteTermStoreGroupSetTermRelation" +"Sites","NewMgGroupSiteTermStoreSet.g.cs","v1.0","New-MgGroupSiteTermStoreSet","POST","/groups/{param}/sites/{param}/termStore/sets","matched","New-MgGroupSiteTermStoreSet" +"Sites","NewMgGroupSiteTermStoreSetChild.g.cs","v1.0","New-MgGroupSiteTermStoreSetChild","POST","/groups/{param}/sites/{param}/termStore/sets/{param}/children","matched","New-MgGroupSiteTermStoreSetChild" +"Sites","NewMgGroupSiteTermStoreSetChildRelation.g.cs","v1.0","New-MgGroupSiteTermStoreSetChildRelation","POST","/groups/{param}/sites/{param}/termStore/sets/{param}/children/{param}/children/{param}/relations","matched","New-MgGroupSiteTermStoreSetChildRelation" +"Sites","NewMgGroupSiteTermStoreSetParentGroupSet.g.cs","v1.0","New-MgGroupSiteTermStoreSetParentGroupSet","POST","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets","matched","New-MgGroupSiteTermStoreSetParentGroupSet" +"Sites","NewMgGroupSiteTermStoreSetParentGroupSetChild.g.cs","v1.0","New-MgGroupSiteTermStoreSetParentGroupSetChild","POST","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/children","matched","New-MgGroupSiteTermStoreSetParentGroupSetChild" +"Sites","NewMgGroupSiteTermStoreSetParentGroupSetChildRelation.g.cs","v1.0","New-MgGroupSiteTermStoreSetParentGroupSetChildRelation","POST","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/children/{param}/children/{param}/relations","matched","New-MgGroupSiteTermStoreSetParentGroupSetChildRelation" +"Sites","NewMgGroupSiteTermStoreSetParentGroupSetRelation.g.cs","v1.0","New-MgGroupSiteTermStoreSetParentGroupSetRelation","POST","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/relations","matched","New-MgGroupSiteTermStoreSetParentGroupSetRelation" +"Sites","NewMgGroupSiteTermStoreSetParentGroupSetTerm.g.cs","v1.0","New-MgGroupSiteTermStoreSetParentGroupSetTerm","POST","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms","matched","New-MgGroupSiteTermStoreSetParentGroupSetTerm" +"Sites","NewMgGroupSiteTermStoreSetParentGroupSetTermChild.g.cs","v1.0","New-MgGroupSiteTermStoreSetParentGroupSetTermChild","POST","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/children","matched","New-MgGroupSiteTermStoreSetParentGroupSetTermChild" +"Sites","NewMgGroupSiteTermStoreSetParentGroupSetTermChildRelation.g.cs","v1.0","New-MgGroupSiteTermStoreSetParentGroupSetTermChildRelation","POST","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/children/{param}/relations","matched","New-MgGroupSiteTermStoreSetParentGroupSetTermChildRelation" +"Sites","NewMgGroupSiteTermStoreSetParentGroupSetTermRelation.g.cs","v1.0","New-MgGroupSiteTermStoreSetParentGroupSetTermRelation","POST","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/relations","matched","New-MgGroupSiteTermStoreSetParentGroupSetTermRelation" +"Sites","NewMgGroupSiteTermStoreSetRelation.g.cs","v1.0","New-MgGroupSiteTermStoreSetRelation","POST","/groups/{param}/sites/{param}/termStore/sets/{param}/relations","matched","New-MgGroupSiteTermStoreSetRelation" +"Sites","NewMgGroupSiteTermStoreSetTerm.g.cs","v1.0","New-MgGroupSiteTermStoreSetTerm","POST","/groups/{param}/sites/{param}/termStore/sets/{param}/terms","matched","New-MgGroupSiteTermStoreSetTerm" +"Sites","NewMgGroupSiteTermStoreSetTermChild.g.cs","v1.0","New-MgGroupSiteTermStoreSetTermChild","POST","/groups/{param}/sites/{param}/termStore/sets/{param}/terms/{param}/children","matched","New-MgGroupSiteTermStoreSetTermChild" +"Sites","NewMgGroupSiteTermStoreSetTermChildRelation.g.cs","v1.0","New-MgGroupSiteTermStoreSetTermChildRelation","POST","/groups/{param}/sites/{param}/termStore/sets/{param}/terms/{param}/children/{param}/relations","matched","New-MgGroupSiteTermStoreSetTermChildRelation" +"Sites","NewMgGroupSiteTermStoreSetTermRelation.g.cs","v1.0","New-MgGroupSiteTermStoreSetTermRelation","POST","/groups/{param}/sites/{param}/termStore/sets/{param}/terms/{param}/relations","matched","New-MgGroupSiteTermStoreSetTermRelation" +"Sites","NewMgSiteAnalyticItemActivityStat.g.cs","v1.0","New-MgSiteAnalyticItemActivityStat","POST","/sites/{param}/analytics/itemActivityStats","matched","New-MgSiteAnalyticItemActivityStat" +"Sites","NewMgSiteAnalyticItemActivityStatActivity.g.cs","v1.0","New-MgSiteAnalyticItemActivityStatActivity","POST","/sites/{param}/analytics/itemActivityStats/{param}/activities","matched","New-MgSiteAnalyticItemActivityStatActivity" +"Sites","NewMgSiteColumn.g.cs","v1.0","New-MgSiteColumn","POST","/sites/{param}/columns","matched","New-MgSiteColumn" +"Sites","NewMgSiteContentType.g.cs","v1.0","New-MgSiteContentType","POST","/sites/{param}/contentTypes","matched","New-MgSiteContentType" +"Sites","NewMgSiteContentTypeColumn.g.cs","v1.0","New-MgSiteContentTypeColumn","POST","/sites/{param}/contentTypes/{param}/columns","matched","New-MgSiteContentTypeColumn" +"Sites","NewMgSiteContentTypeColumnLink.g.cs","v1.0","New-MgSiteContentTypeColumnLink","POST","/sites/{param}/contentTypes/{param}/columnLinks","matched","New-MgSiteContentTypeColumnLink" +"Sites","NewMgSiteList.g.cs","v1.0","New-MgSiteList","POST","/sites/{param}/lists","matched","New-MgSiteList" +"Sites","NewMgSiteListColumn.g.cs","v1.0","New-MgSiteListColumn","POST","/sites/{param}/lists/{param}/columns","matched","New-MgSiteListColumn" +"Sites","NewMgSiteListContentType.g.cs","v1.0","New-MgSiteListContentType","POST","/sites/{param}/lists/{param}/contentTypes","matched","New-MgSiteListContentType" +"Sites","NewMgSiteListContentTypeColumn.g.cs","v1.0","New-MgSiteListContentTypeColumn","POST","/sites/{param}/lists/{param}/contentTypes/{param}/columns","matched","New-MgSiteListContentTypeColumn" +"Sites","NewMgSiteListContentTypeColumnLink.g.cs","v1.0","New-MgSiteListContentTypeColumnLink","POST","/sites/{param}/lists/{param}/contentTypes/{param}/columnLinks","matched","New-MgSiteListContentTypeColumnLink" +"Sites","NewMgSiteListItem.g.cs","v1.0","New-MgSiteListItem","POST","/sites/{param}/lists/{param}/items","matched","New-MgSiteListItem" +"Sites","NewMgSiteListItemDocumentSetVersion.g.cs","v1.0","New-MgSiteListItemDocumentSetVersion","POST","/sites/{param}/lists/{param}/items/{param}/documentSetVersions","matched","New-MgSiteListItemDocumentSetVersion" +"Sites","NewMgSiteListItemPermission.g.cs","v1.0","New-MgSiteListItemPermission","POST","/sites/{param}/lists/{param}/items/{param}/permissions","matched","New-MgSiteListItemPermission" +"Sites","NewMgSiteListItemVersion.g.cs","v1.0","New-MgSiteListItemVersion","POST","/sites/{param}/lists/{param}/items/{param}/versions","matched","New-MgSiteListItemVersion" +"Sites","NewMgSiteListOperation.g.cs","v1.0","New-MgSiteListOperation","POST","/sites/{param}/lists/{param}/operations","matched","New-MgSiteListOperation" +"Sites","NewMgSiteListPermission.g.cs","v1.0","New-MgSiteListPermission","POST","/sites/{param}/lists/{param}/permissions","matched","New-MgSiteListPermission" +"Sites","NewMgSiteListSubscription.g.cs","v1.0","New-MgSiteListSubscription","POST","/sites/{param}/lists/{param}/subscriptions","matched","New-MgSiteListSubscription" +"Sites","NewMgSiteOperation.g.cs","v1.0","New-MgSiteOperation","POST","/sites/{param}/operations","matched","New-MgSiteOperation" +"Sites","NewMgSitePage.g.cs","v1.0","New-MgSitePage","POST","/sites/{param}/pages","matched","New-MgSitePage" +"Sites","NewMgSitePageAsSitePageCanvaLayoutHorizontalSection.g.cs","v1.0","New-MgSitePageAsSitePageCanvaLayoutHorizontalSection","POST","","cast","" +"Sites","NewMgSitePageAsSitePageCanvaLayoutHorizontalSectionColumn.g.cs","v1.0","New-MgSitePageAsSitePageCanvaLayoutHorizontalSectionColumn","POST","","cast","" +"Sites","NewMgSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart.g.cs","v1.0","New-MgSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart","POST","","cast","" +"Sites","NewMgSitePageAsSitePageCanvaLayoutVerticalSectionWebpart.g.cs","v1.0","New-MgSitePageAsSitePageCanvaLayoutVerticalSectionWebpart","POST","","cast","" +"Sites","NewMgSitePageAsSitePageWebPart.g.cs","v1.0","New-MgSitePageAsSitePageWebPart","POST","","cast","" +"Sites","NewMgSitePermission.g.cs","v1.0","New-MgSitePermission","POST","/sites/{param}/permissions","matched","New-MgSitePermission" +"Sites","NewMgSiteTermStore.g.cs","v1.0","New-MgSiteTermStore","POST","/sites/{param}/termStores","matched","New-MgSiteTermStore" +"Sites","NewMgSiteTermStoreGroup.g.cs","v1.0","New-MgSiteTermStoreGroup","POST","/sites/{param}/termStore/groups","matched","New-MgSiteTermStoreGroup" +"Sites","NewMgSiteTermStoreGroupSet.g.cs","v1.0","New-MgSiteTermStoreGroupSet","POST","/sites/{param}/termStore/groups/{param}/sets","matched","New-MgSiteTermStoreGroupSet" +"Sites","NewMgSiteTermStoreGroupSetChild.g.cs","v1.0","New-MgSiteTermStoreGroupSetChild","POST","/sites/{param}/termStore/groups/{param}/sets/{param}/children","matched","New-MgSiteTermStoreGroupSetChild" +"Sites","NewMgSiteTermStoreGroupSetChildRelation.g.cs","v1.0","New-MgSiteTermStoreGroupSetChildRelation","POST","/sites/{param}/termStore/groups/{param}/sets/{param}/children/{param}/children/{param}/relations","matched","New-MgSiteTermStoreGroupSetChildRelation" +"Sites","NewMgSiteTermStoreGroupSetRelation.g.cs","v1.0","New-MgSiteTermStoreGroupSetRelation","POST","/sites/{param}/termStore/groups/{param}/sets/{param}/relations","matched","New-MgSiteTermStoreGroupSetRelation" +"Sites","NewMgSiteTermStoreGroupSetTerm.g.cs","v1.0","New-MgSiteTermStoreGroupSetTerm","POST","/sites/{param}/termStore/groups/{param}/sets/{param}/terms","matched","New-MgSiteTermStoreGroupSetTerm" +"Sites","NewMgSiteTermStoreGroupSetTermChild.g.cs","v1.0","New-MgSiteTermStoreGroupSetTermChild","POST","/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/children","matched","New-MgSiteTermStoreGroupSetTermChild" +"Sites","NewMgSiteTermStoreGroupSetTermChildRelation.g.cs","v1.0","New-MgSiteTermStoreGroupSetTermChildRelation","POST","/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/children/{param}/relations","matched","New-MgSiteTermStoreGroupSetTermChildRelation" +"Sites","NewMgSiteTermStoreGroupSetTermRelation.g.cs","v1.0","New-MgSiteTermStoreGroupSetTermRelation","POST","/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/relations","matched","New-MgSiteTermStoreGroupSetTermRelation" +"Sites","NewMgSiteTermStoreSet.g.cs","v1.0","New-MgSiteTermStoreSet","POST","/sites/{param}/termStore/sets","matched","New-MgSiteTermStoreSet" +"Sites","NewMgSiteTermStoreSetChild.g.cs","v1.0","New-MgSiteTermStoreSetChild","POST","/sites/{param}/termStore/sets/{param}/children","matched","New-MgSiteTermStoreSetChild" +"Sites","NewMgSiteTermStoreSetChildRelation.g.cs","v1.0","New-MgSiteTermStoreSetChildRelation","POST","/sites/{param}/termStore/sets/{param}/children/{param}/children/{param}/relations","matched","New-MgSiteTermStoreSetChildRelation" +"Sites","NewMgSiteTermStoreSetParentGroupSet.g.cs","v1.0","New-MgSiteTermStoreSetParentGroupSet","POST","/sites/{param}/termStore/sets/{param}/parentGroup/sets","matched","New-MgSiteTermStoreSetParentGroupSet" +"Sites","NewMgSiteTermStoreSetParentGroupSetChild.g.cs","v1.0","New-MgSiteTermStoreSetParentGroupSetChild","POST","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/children","matched","New-MgSiteTermStoreSetParentGroupSetChild" +"Sites","NewMgSiteTermStoreSetParentGroupSetChildRelation.g.cs","v1.0","New-MgSiteTermStoreSetParentGroupSetChildRelation","POST","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/children/{param}/children/{param}/relations","matched","New-MgSiteTermStoreSetParentGroupSetChildRelation" +"Sites","NewMgSiteTermStoreSetParentGroupSetRelation.g.cs","v1.0","New-MgSiteTermStoreSetParentGroupSetRelation","POST","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/relations","matched","New-MgSiteTermStoreSetParentGroupSetRelation" +"Sites","NewMgSiteTermStoreSetParentGroupSetTerm.g.cs","v1.0","New-MgSiteTermStoreSetParentGroupSetTerm","POST","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms","matched","New-MgSiteTermStoreSetParentGroupSetTerm" +"Sites","NewMgSiteTermStoreSetParentGroupSetTermChild.g.cs","v1.0","New-MgSiteTermStoreSetParentGroupSetTermChild","POST","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/children","matched","New-MgSiteTermStoreSetParentGroupSetTermChild" +"Sites","NewMgSiteTermStoreSetParentGroupSetTermChildRelation.g.cs","v1.0","New-MgSiteTermStoreSetParentGroupSetTermChildRelation","POST","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/children/{param}/relations","matched","New-MgSiteTermStoreSetParentGroupSetTermChildRelation" +"Sites","NewMgSiteTermStoreSetParentGroupSetTermRelation.g.cs","v1.0","New-MgSiteTermStoreSetParentGroupSetTermRelation","POST","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/relations","matched","New-MgSiteTermStoreSetParentGroupSetTermRelation" +"Sites","NewMgSiteTermStoreSetRelation.g.cs","v1.0","New-MgSiteTermStoreSetRelation","POST","/sites/{param}/termStore/sets/{param}/relations","matched","New-MgSiteTermStoreSetRelation" +"Sites","NewMgSiteTermStoreSetTerm.g.cs","v1.0","New-MgSiteTermStoreSetTerm","POST","/sites/{param}/termStore/sets/{param}/terms","matched","New-MgSiteTermStoreSetTerm" +"Sites","NewMgSiteTermStoreSetTermChild.g.cs","v1.0","New-MgSiteTermStoreSetTermChild","POST","/sites/{param}/termStore/sets/{param}/terms/{param}/children","matched","New-MgSiteTermStoreSetTermChild" +"Sites","NewMgSiteTermStoreSetTermChildRelation.g.cs","v1.0","New-MgSiteTermStoreSetTermChildRelation","POST","/sites/{param}/termStore/sets/{param}/terms/{param}/children/{param}/relations","matched","New-MgSiteTermStoreSetTermChildRelation" +"Sites","NewMgSiteTermStoreSetTermRelation.g.cs","v1.0","New-MgSiteTermStoreSetTermRelation","POST","/sites/{param}/termStore/sets/{param}/terms/{param}/relations","matched","New-MgSiteTermStoreSetTermRelation" +"Sites","RemoveMgAdminSharepoint.g.cs","v1.0","Remove-MgAdminSharepoint","DELETE","/admin/sharepoint","matched","Remove-MgAdminSharepoint" +"Sites","RemoveMgAdminSharepointSetting.g.cs","v1.0","Remove-MgAdminSharepointSetting","DELETE","/admin/sharepoint/settings","matched","Remove-MgAdminSharepointSetting" +"Sites","RemoveMgGroupSiteAnalytic.g.cs","v1.0","Remove-MgGroupSiteAnalytic","DELETE","/groups/{param}/sites/{param}/analytics","matched","Remove-MgGroupSiteAnalytic" +"Sites","RemoveMgGroupSiteAnalyticItemActivityStat.g.cs","v1.0","Remove-MgGroupSiteAnalyticItemActivityStat","DELETE","/groups/{param}/sites/{param}/analytics/itemActivityStats/{param}","matched","Remove-MgGroupSiteAnalyticItemActivityStat" +"Sites","RemoveMgGroupSiteAnalyticItemActivityStatActivity.g.cs","v1.0","Remove-MgGroupSiteAnalyticItemActivityStatActivity","DELETE","/groups/{param}/sites/{param}/analytics/itemActivityStats/{param}/activities/{param}","matched","Remove-MgGroupSiteAnalyticItemActivityStatActivity" +"Sites","RemoveMgGroupSiteAnalyticItemActivityStatActivityDriveItemContent.g.cs","v1.0","Remove-MgGroupSiteAnalyticItemActivityStatActivityDriveItemContent","DELETE","/groups/{param}/sites/{param}/analytics/itemActivityStats/{param}/activities/{param}/driveItem/$value","matched","Remove-MgGroupSiteAnalyticItemActivityStatActivityDriveItemContent" +"Sites","RemoveMgGroupSiteColumn.g.cs","v1.0","Remove-MgGroupSiteColumn","DELETE","/groups/{param}/sites/{param}/columns/{param}","matched","Remove-MgGroupSiteColumn" +"Sites","RemoveMgGroupSiteContentType.g.cs","v1.0","Remove-MgGroupSiteContentType","DELETE","/groups/{param}/sites/{param}/contentTypes/{param}","matched","Remove-MgGroupSiteContentType" +"Sites","RemoveMgGroupSiteContentTypeColumn.g.cs","v1.0","Remove-MgGroupSiteContentTypeColumn","DELETE","/groups/{param}/sites/{param}/contentTypes/{param}/columns/{param}","matched","Remove-MgGroupSiteContentTypeColumn" +"Sites","RemoveMgGroupSiteContentTypeColumnLink.g.cs","v1.0","Remove-MgGroupSiteContentTypeColumnLink","DELETE","/groups/{param}/sites/{param}/contentTypes/{param}/columnLinks/{param}","matched","Remove-MgGroupSiteContentTypeColumnLink" +"Sites","RemoveMgGroupSiteList.g.cs","v1.0","Remove-MgGroupSiteList","DELETE","/groups/{param}/sites/{param}/lists/{param}","matched","Remove-MgGroupSiteList" +"Sites","RemoveMgGroupSiteListColumn.g.cs","v1.0","Remove-MgGroupSiteListColumn","DELETE","/groups/{param}/sites/{param}/lists/{param}/columns/{param}","matched","Remove-MgGroupSiteListColumn" +"Sites","RemoveMgGroupSiteListContentType.g.cs","v1.0","Remove-MgGroupSiteListContentType","DELETE","/groups/{param}/sites/{param}/lists/{param}/contentTypes/{param}","matched","Remove-MgGroupSiteListContentType" +"Sites","RemoveMgGroupSiteListContentTypeColumn.g.cs","v1.0","Remove-MgGroupSiteListContentTypeColumn","DELETE","/groups/{param}/sites/{param}/lists/{param}/contentTypes/{param}/columns/{param}","matched","Remove-MgGroupSiteListContentTypeColumn" +"Sites","RemoveMgGroupSiteListContentTypeColumnLink.g.cs","v1.0","Remove-MgGroupSiteListContentTypeColumnLink","DELETE","/groups/{param}/sites/{param}/lists/{param}/contentTypes/{param}/columnLinks/{param}","matched","Remove-MgGroupSiteListContentTypeColumnLink" +"Sites","RemoveMgGroupSiteListItem.g.cs","v1.0","Remove-MgGroupSiteListItem","DELETE","/groups/{param}/sites/{param}/lists/{param}/items/{param}","matched","Remove-MgGroupSiteListItem" +"Sites","RemoveMgGroupSiteListItemDocumentSetVersion.g.cs","v1.0","Remove-MgGroupSiteListItemDocumentSetVersion","DELETE","/groups/{param}/sites/{param}/lists/{param}/items/{param}/documentSetVersions/{param}","matched","Remove-MgGroupSiteListItemDocumentSetVersion" +"Sites","RemoveMgGroupSiteListItemDocumentSetVersionField.g.cs","v1.0","Remove-MgGroupSiteListItemDocumentSetVersionField","DELETE","/groups/{param}/sites/{param}/lists/{param}/items/{param}/documentSetVersions/{param}/fields","matched","Remove-MgGroupSiteListItemDocumentSetVersionField" +"Sites","RemoveMgGroupSiteListItemDriveItemContent.g.cs","v1.0","Remove-MgGroupSiteListItemDriveItemContent","DELETE","/groups/{param}/sites/{param}/lists/{param}/items/{param}/driveItem/$value","matched","Remove-MgGroupSiteListItemDriveItemContent" +"Sites","RemoveMgGroupSiteListItemField.g.cs","v1.0","Remove-MgGroupSiteListItemField","DELETE","/groups/{param}/sites/{param}/lists/{param}/items/{param}/fields","matched","Remove-MgGroupSiteListItemField" +"Sites","RemoveMgGroupSiteListItemPermission.g.cs","v1.0","Remove-MgGroupSiteListItemPermission","DELETE","/groups/{param}/sites/{param}/lists/{param}/items/{param}/permissions/{param}","matched","Remove-MgGroupSiteListItemPermission" +"Sites","RemoveMgGroupSiteListItemVersion.g.cs","v1.0","Remove-MgGroupSiteListItemVersion","DELETE","/groups/{param}/sites/{param}/lists/{param}/items/{param}/versions/{param}","matched","Remove-MgGroupSiteListItemVersion" +"Sites","RemoveMgGroupSiteListItemVersionField.g.cs","v1.0","Remove-MgGroupSiteListItemVersionField","DELETE","/groups/{param}/sites/{param}/lists/{param}/items/{param}/versions/{param}/fields","matched","Remove-MgGroupSiteListItemVersionField" +"Sites","RemoveMgGroupSiteListOperation.g.cs","v1.0","Remove-MgGroupSiteListOperation","DELETE","/groups/{param}/sites/{param}/lists/{param}/operations/{param}","matched","Remove-MgGroupSiteListOperation" +"Sites","RemoveMgGroupSiteListPermission.g.cs","v1.0","Remove-MgGroupSiteListPermission","DELETE","/groups/{param}/sites/{param}/lists/{param}/permissions/{param}","matched","Remove-MgGroupSiteListPermission" +"Sites","RemoveMgGroupSiteListSubscription.g.cs","v1.0","Remove-MgGroupSiteListSubscription","DELETE","/groups/{param}/sites/{param}/lists/{param}/subscriptions/{param}","matched","Remove-MgGroupSiteListSubscription" +"Sites","RemoveMgGroupSiteOnenote.g.cs","v1.0","Remove-MgGroupSiteOnenote","DELETE","/groups/{param}/sites/{param}/onenote","matched","Remove-MgGroupSiteOnenote" +"Sites","RemoveMgGroupSiteOnenoteNotebook.g.cs","v1.0","Remove-MgGroupSiteOnenoteNotebook","DELETE","/groups/{param}/sites/{param}/onenote/notebooks/{param}","matched","Remove-MgGroupSiteOnenoteNotebook" +"Sites","RemoveMgGroupSiteOnenoteNotebookSection.g.cs","v1.0","Remove-MgGroupSiteOnenoteNotebookSection","DELETE","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sections/{param}","matched","Remove-MgGroupSiteOnenoteNotebookSection" +"Sites","RemoveMgGroupSiteOnenoteNotebookSectionGroup.g.cs","v1.0","Remove-MgGroupSiteOnenoteNotebookSectionGroup","DELETE","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}","matched","Remove-MgGroupSiteOnenoteNotebookSectionGroup" +"Sites","RemoveMgGroupSiteOnenoteNotebookSectionGroupSection.g.cs","v1.0","Remove-MgGroupSiteOnenoteNotebookSectionGroupSection","DELETE","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}","matched","Remove-MgGroupSiteOnenoteNotebookSectionGroupSection" +"Sites","RemoveMgGroupSiteOnenoteNotebookSectionGroupSectionPage.g.cs","v1.0","Remove-MgGroupSiteOnenoteNotebookSectionGroupSectionPage","DELETE","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}","matched","Remove-MgGroupSiteOnenoteNotebookSectionGroupSectionPage" +"Sites","RemoveMgGroupSiteOnenoteNotebookSectionGroupSectionPageContent.g.cs","v1.0","Remove-MgGroupSiteOnenoteNotebookSectionGroupSectionPageContent","DELETE","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}/$value","matched","Remove-MgGroupSiteOnenoteNotebookSectionGroupSectionPageContent" +"Sites","RemoveMgGroupSiteOnenoteNotebookSectionPage.g.cs","v1.0","Remove-MgGroupSiteOnenoteNotebookSectionPage","DELETE","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}","matched","Remove-MgGroupSiteOnenoteNotebookSectionPage" +"Sites","RemoveMgGroupSiteOnenoteNotebookSectionPageContent.g.cs","v1.0","Remove-MgGroupSiteOnenoteNotebookSectionPageContent","DELETE","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}/$value","matched","Remove-MgGroupSiteOnenoteNotebookSectionPageContent" +"Sites","RemoveMgGroupSiteOnenoteOperation.g.cs","v1.0","Remove-MgGroupSiteOnenoteOperation","DELETE","/groups/{param}/sites/{param}/onenote/operations/{param}","matched","Remove-MgGroupSiteOnenoteOperation" +"Sites","RemoveMgGroupSiteOnenotePage.g.cs","v1.0","Remove-MgGroupSiteOnenotePage","DELETE","/groups/{param}/sites/{param}/onenote/pages/{param}","matched","Remove-MgGroupSiteOnenotePage" +"Sites","RemoveMgGroupSiteOnenotePageContent.g.cs","v1.0","Remove-MgGroupSiteOnenotePageContent","DELETE","/groups/{param}/sites/{param}/onenote/pages/{param}/$value","matched","Remove-MgGroupSiteOnenotePageContent" +"Sites","RemoveMgGroupSiteOnenoteResource.g.cs","v1.0","Remove-MgGroupSiteOnenoteResource","DELETE","/groups/{param}/sites/{param}/onenote/resources/{param}","matched","Remove-MgGroupSiteOnenoteResource" +"Sites","RemoveMgGroupSiteOnenoteResourceContent.g.cs","v1.0","Remove-MgGroupSiteOnenoteResourceContent","DELETE","/groups/{param}/sites/{param}/onenote/resources/{param}/$value","matched","Remove-MgGroupSiteOnenoteResourceContent" +"Sites","RemoveMgGroupSiteOnenoteSection.g.cs","v1.0","Remove-MgGroupSiteOnenoteSection","DELETE","/groups/{param}/sites/{param}/onenote/sections/{param}","matched","Remove-MgGroupSiteOnenoteSection" +"Sites","RemoveMgGroupSiteOnenoteSectionGroup.g.cs","v1.0","Remove-MgGroupSiteOnenoteSectionGroup","DELETE","/groups/{param}/sites/{param}/onenote/sectionGroups/{param}","matched","Remove-MgGroupSiteOnenoteSectionGroup" +"Sites","RemoveMgGroupSiteOnenoteSectionGroupSection.g.cs","v1.0","Remove-MgGroupSiteOnenoteSectionGroupSection","DELETE","/groups/{param}/sites/{param}/onenote/sectionGroups/{param}/sections/{param}","matched","Remove-MgGroupSiteOnenoteSectionGroupSection" +"Sites","RemoveMgGroupSiteOnenoteSectionGroupSectionPage.g.cs","v1.0","Remove-MgGroupSiteOnenoteSectionGroupSectionPage","DELETE","/groups/{param}/sites/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}","matched","Remove-MgGroupSiteOnenoteSectionGroupSectionPage" +"Sites","RemoveMgGroupSiteOnenoteSectionGroupSectionPageContent.g.cs","v1.0","Remove-MgGroupSiteOnenoteSectionGroupSectionPageContent","DELETE","/groups/{param}/sites/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}/$value","matched","Remove-MgGroupSiteOnenoteSectionGroupSectionPageContent" +"Sites","RemoveMgGroupSiteOnenoteSectionPage.g.cs","v1.0","Remove-MgGroupSiteOnenoteSectionPage","DELETE","/groups/{param}/sites/{param}/onenote/sections/{param}/pages/{param}","matched","Remove-MgGroupSiteOnenoteSectionPage" +"Sites","RemoveMgGroupSiteOnenoteSectionPageContent.g.cs","v1.0","Remove-MgGroupSiteOnenoteSectionPageContent","DELETE","/groups/{param}/sites/{param}/onenote/sections/{param}/pages/{param}/$value","matched","Remove-MgGroupSiteOnenoteSectionPageContent" +"Sites","RemoveMgGroupSiteOperation.g.cs","v1.0","Remove-MgGroupSiteOperation","DELETE","/groups/{param}/sites/{param}/operations/{param}","matched","Remove-MgGroupSiteOperation" +"Sites","RemoveMgGroupSitePage.g.cs","v1.0","Remove-MgGroupSitePage","DELETE","/groups/{param}/sites/{param}/pages/{param}","matched","Remove-MgGroupSitePage" +"Sites","RemoveMgGroupSitePageAsSitePageCanvaLayout.g.cs","v1.0","Remove-MgGroupSitePageAsSitePageCanvaLayout","DELETE","","cast","" +"Sites","RemoveMgGroupSitePageAsSitePageCanvaLayoutHorizontalSection.g.cs","v1.0","Remove-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSection","DELETE","","cast","" +"Sites","RemoveMgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumn.g.cs","v1.0","Remove-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumn","DELETE","","cast","" +"Sites","RemoveMgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart.g.cs","v1.0","Remove-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart","DELETE","","cast","" +"Sites","RemoveMgGroupSitePageAsSitePageCanvaLayoutVerticalSection.g.cs","v1.0","Remove-MgGroupSitePageAsSitePageCanvaLayoutVerticalSection","DELETE","","cast","" +"Sites","RemoveMgGroupSitePageAsSitePageCanvaLayoutVerticalSectionWebpart.g.cs","v1.0","Remove-MgGroupSitePageAsSitePageCanvaLayoutVerticalSectionWebpart","DELETE","","cast","" +"Sites","RemoveMgGroupSitePageAsSitePageWebPart.g.cs","v1.0","Remove-MgGroupSitePageAsSitePageWebPart","DELETE","","cast","" +"Sites","RemoveMgGroupSitePermission.g.cs","v1.0","Remove-MgGroupSitePermission","DELETE","/groups/{param}/sites/{param}/permissions/{param}","matched","Remove-MgGroupSitePermission" +"Sites","RemoveMgGroupSiteTermStore.g.cs","v1.0","Remove-MgGroupSiteTermStore","DELETE","/groups/{param}/sites/{param}/termStore","matched","Remove-MgGroupSiteTermStore" +"Sites","RemoveMgGroupSiteTermStoreGroup.g.cs","v1.0","Remove-MgGroupSiteTermStoreGroup","DELETE","/groups/{param}/sites/{param}/termStore/groups/{param}","matched","Remove-MgGroupSiteTermStoreGroup" +"Sites","RemoveMgGroupSiteTermStoreGroupSet.g.cs","v1.0","Remove-MgGroupSiteTermStoreGroupSet","DELETE","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}","matched","Remove-MgGroupSiteTermStoreGroupSet" +"Sites","RemoveMgGroupSiteTermStoreGroupSetChild.g.cs","v1.0","Remove-MgGroupSiteTermStoreGroupSetChild","DELETE","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/children/{param}","matched","Remove-MgGroupSiteTermStoreGroupSetChild" +"Sites","RemoveMgGroupSiteTermStoreGroupSetChildRelation.g.cs","v1.0","Remove-MgGroupSiteTermStoreGroupSetChildRelation","DELETE","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/children/{param}/children/{param}/relations/{param}","matched","Remove-MgGroupSiteTermStoreGroupSetChildRelation" +"Sites","RemoveMgGroupSiteTermStoreGroupSetParentGroup.g.cs","v1.0","Remove-MgGroupSiteTermStoreGroupSetParentGroup","DELETE","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/parentGroup","matched","Remove-MgGroupSiteTermStoreGroupSetParentGroup" +"Sites","RemoveMgGroupSiteTermStoreGroupSetRelation.g.cs","v1.0","Remove-MgGroupSiteTermStoreGroupSetRelation","DELETE","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/relations/{param}","matched","Remove-MgGroupSiteTermStoreGroupSetRelation" +"Sites","RemoveMgGroupSiteTermStoreGroupSetTerm.g.cs","v1.0","Remove-MgGroupSiteTermStoreGroupSetTerm","DELETE","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}","matched","Remove-MgGroupSiteTermStoreGroupSetTerm" +"Sites","RemoveMgGroupSiteTermStoreGroupSetTermChild.g.cs","v1.0","Remove-MgGroupSiteTermStoreGroupSetTermChild","DELETE","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/children/{param}","matched","Remove-MgGroupSiteTermStoreGroupSetTermChild" +"Sites","RemoveMgGroupSiteTermStoreGroupSetTermChildRelation.g.cs","v1.0","Remove-MgGroupSiteTermStoreGroupSetTermChildRelation","DELETE","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/children/{param}/relations/{param}","matched","Remove-MgGroupSiteTermStoreGroupSetTermChildRelation" +"Sites","RemoveMgGroupSiteTermStoreGroupSetTermRelation.g.cs","v1.0","Remove-MgGroupSiteTermStoreGroupSetTermRelation","DELETE","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/relations/{param}","matched","Remove-MgGroupSiteTermStoreGroupSetTermRelation" +"Sites","RemoveMgGroupSiteTermStoreSet.g.cs","v1.0","Remove-MgGroupSiteTermStoreSet","DELETE","/groups/{param}/sites/{param}/termStore/sets/{param}","matched","Remove-MgGroupSiteTermStoreSet" +"Sites","RemoveMgGroupSiteTermStoreSetChild.g.cs","v1.0","Remove-MgGroupSiteTermStoreSetChild","DELETE","/groups/{param}/sites/{param}/termStore/sets/{param}/children/{param}","matched","Remove-MgGroupSiteTermStoreSetChild" +"Sites","RemoveMgGroupSiteTermStoreSetChildRelation.g.cs","v1.0","Remove-MgGroupSiteTermStoreSetChildRelation","DELETE","/groups/{param}/sites/{param}/termStore/sets/{param}/children/{param}/children/{param}/relations/{param}","matched","Remove-MgGroupSiteTermStoreSetChildRelation" +"Sites","RemoveMgGroupSiteTermStoreSetParentGroup.g.cs","v1.0","Remove-MgGroupSiteTermStoreSetParentGroup","DELETE","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup","matched","Remove-MgGroupSiteTermStoreSetParentGroup" +"Sites","RemoveMgGroupSiteTermStoreSetParentGroupSet.g.cs","v1.0","Remove-MgGroupSiteTermStoreSetParentGroupSet","DELETE","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}","matched","Remove-MgGroupSiteTermStoreSetParentGroupSet" +"Sites","RemoveMgGroupSiteTermStoreSetParentGroupSetChild.g.cs","v1.0","Remove-MgGroupSiteTermStoreSetParentGroupSetChild","DELETE","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/children/{param}","matched","Remove-MgGroupSiteTermStoreSetParentGroupSetChild" +"Sites","RemoveMgGroupSiteTermStoreSetParentGroupSetChildRelation.g.cs","v1.0","Remove-MgGroupSiteTermStoreSetParentGroupSetChildRelation","DELETE","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/children/{param}/children/{param}/relations/{param}","matched","Remove-MgGroupSiteTermStoreSetParentGroupSetChildRelation" +"Sites","RemoveMgGroupSiteTermStoreSetParentGroupSetRelation.g.cs","v1.0","Remove-MgGroupSiteTermStoreSetParentGroupSetRelation","DELETE","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/relations/{param}","matched","Remove-MgGroupSiteTermStoreSetParentGroupSetRelation" +"Sites","RemoveMgGroupSiteTermStoreSetParentGroupSetTerm.g.cs","v1.0","Remove-MgGroupSiteTermStoreSetParentGroupSetTerm","DELETE","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}","matched","Remove-MgGroupSiteTermStoreSetParentGroupSetTerm" +"Sites","RemoveMgGroupSiteTermStoreSetParentGroupSetTermChild.g.cs","v1.0","Remove-MgGroupSiteTermStoreSetParentGroupSetTermChild","DELETE","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/children/{param}","matched","Remove-MgGroupSiteTermStoreSetParentGroupSetTermChild" +"Sites","RemoveMgGroupSiteTermStoreSetParentGroupSetTermChildRelation.g.cs","v1.0","Remove-MgGroupSiteTermStoreSetParentGroupSetTermChildRelation","DELETE","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/children/{param}/relations/{param}","matched","Remove-MgGroupSiteTermStoreSetParentGroupSetTermChildRelation" +"Sites","RemoveMgGroupSiteTermStoreSetParentGroupSetTermRelation.g.cs","v1.0","Remove-MgGroupSiteTermStoreSetParentGroupSetTermRelation","DELETE","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/relations/{param}","matched","Remove-MgGroupSiteTermStoreSetParentGroupSetTermRelation" +"Sites","RemoveMgGroupSiteTermStoreSetRelation.g.cs","v1.0","Remove-MgGroupSiteTermStoreSetRelation","DELETE","/groups/{param}/sites/{param}/termStore/sets/{param}/relations/{param}","matched","Remove-MgGroupSiteTermStoreSetRelation" +"Sites","RemoveMgGroupSiteTermStoreSetTerm.g.cs","v1.0","Remove-MgGroupSiteTermStoreSetTerm","DELETE","/groups/{param}/sites/{param}/termStore/sets/{param}/terms/{param}","matched","Remove-MgGroupSiteTermStoreSetTerm" +"Sites","RemoveMgGroupSiteTermStoreSetTermChild.g.cs","v1.0","Remove-MgGroupSiteTermStoreSetTermChild","DELETE","/groups/{param}/sites/{param}/termStore/sets/{param}/terms/{param}/children/{param}","matched","Remove-MgGroupSiteTermStoreSetTermChild" +"Sites","RemoveMgGroupSiteTermStoreSetTermChildRelation.g.cs","v1.0","Remove-MgGroupSiteTermStoreSetTermChildRelation","DELETE","/groups/{param}/sites/{param}/termStore/sets/{param}/terms/{param}/children/{param}/relations/{param}","matched","Remove-MgGroupSiteTermStoreSetTermChildRelation" +"Sites","RemoveMgGroupSiteTermStoreSetTermRelation.g.cs","v1.0","Remove-MgGroupSiteTermStoreSetTermRelation","DELETE","/groups/{param}/sites/{param}/termStore/sets/{param}/terms/{param}/relations/{param}","matched","Remove-MgGroupSiteTermStoreSetTermRelation" +"Sites","RemoveMgSiteAnalytic.g.cs","v1.0","Remove-MgSiteAnalytic","DELETE","/sites/{param}/analytics","matched","Remove-MgSiteAnalytic" +"Sites","RemoveMgSiteAnalyticItemActivityStat.g.cs","v1.0","Remove-MgSiteAnalyticItemActivityStat","DELETE","/sites/{param}/analytics/itemActivityStats/{param}","matched","Remove-MgSiteAnalyticItemActivityStat" +"Sites","RemoveMgSiteAnalyticItemActivityStatActivity.g.cs","v1.0","Remove-MgSiteAnalyticItemActivityStatActivity","DELETE","/sites/{param}/analytics/itemActivityStats/{param}/activities/{param}","matched","Remove-MgSiteAnalyticItemActivityStatActivity" +"Sites","RemoveMgSiteColumn.g.cs","v1.0","Remove-MgSiteColumn","DELETE","/sites/{param}/columns/{param}","matched","Remove-MgSiteColumn" +"Sites","RemoveMgSiteContentType.g.cs","v1.0","Remove-MgSiteContentType","DELETE","/sites/{param}/contentTypes/{param}","matched","Remove-MgSiteContentType" +"Sites","RemoveMgSiteContentTypeColumn.g.cs","v1.0","Remove-MgSiteContentTypeColumn","DELETE","/sites/{param}/contentTypes/{param}/columns/{param}","matched","Remove-MgSiteContentTypeColumn" +"Sites","RemoveMgSiteContentTypeColumnLink.g.cs","v1.0","Remove-MgSiteContentTypeColumnLink","DELETE","/sites/{param}/contentTypes/{param}/columnLinks/{param}","matched","Remove-MgSiteContentTypeColumnLink" +"Sites","RemoveMgSiteList.g.cs","v1.0","Remove-MgSiteList","DELETE","/sites/{param}/lists/{param}","matched","Remove-MgSiteList" +"Sites","RemoveMgSiteListColumn.g.cs","v1.0","Remove-MgSiteListColumn","DELETE","/sites/{param}/lists/{param}/columns/{param}","matched","Remove-MgSiteListColumn" +"Sites","RemoveMgSiteListContentType.g.cs","v1.0","Remove-MgSiteListContentType","DELETE","/sites/{param}/lists/{param}/contentTypes/{param}","matched","Remove-MgSiteListContentType" +"Sites","RemoveMgSiteListContentTypeColumn.g.cs","v1.0","Remove-MgSiteListContentTypeColumn","DELETE","/sites/{param}/lists/{param}/contentTypes/{param}/columns/{param}","matched","Remove-MgSiteListContentTypeColumn" +"Sites","RemoveMgSiteListContentTypeColumnLink.g.cs","v1.0","Remove-MgSiteListContentTypeColumnLink","DELETE","/sites/{param}/lists/{param}/contentTypes/{param}/columnLinks/{param}","matched","Remove-MgSiteListContentTypeColumnLink" +"Sites","RemoveMgSiteListItem.g.cs","v1.0","Remove-MgSiteListItem","DELETE","/sites/{param}/lists/{param}/items/{param}","matched","Remove-MgSiteListItem" +"Sites","RemoveMgSiteListItemDocumentSetVersion.g.cs","v1.0","Remove-MgSiteListItemDocumentSetVersion","DELETE","/sites/{param}/lists/{param}/items/{param}/documentSetVersions/{param}","matched","Remove-MgSiteListItemDocumentSetVersion" +"Sites","RemoveMgSiteListItemDocumentSetVersionField.g.cs","v1.0","Remove-MgSiteListItemDocumentSetVersionField","DELETE","/sites/{param}/lists/{param}/items/{param}/documentSetVersions/{param}/fields","matched","Remove-MgSiteListItemDocumentSetVersionField" +"Sites","RemoveMgSiteListItemField.g.cs","v1.0","Remove-MgSiteListItemField","DELETE","/sites/{param}/lists/{param}/items/{param}/fields","matched","Remove-MgSiteListItemField" +"Sites","RemoveMgSiteListItemPermission.g.cs","v1.0","Remove-MgSiteListItemPermission","DELETE","/sites/{param}/lists/{param}/items/{param}/permissions/{param}","matched","Remove-MgSiteListItemPermission" +"Sites","RemoveMgSiteListItemVersion.g.cs","v1.0","Remove-MgSiteListItemVersion","DELETE","/sites/{param}/lists/{param}/items/{param}/versions/{param}","matched","Remove-MgSiteListItemVersion" +"Sites","RemoveMgSiteListItemVersionField.g.cs","v1.0","Remove-MgSiteListItemVersionField","DELETE","/sites/{param}/lists/{param}/items/{param}/versions/{param}/fields","matched","Remove-MgSiteListItemVersionField" +"Sites","RemoveMgSiteListOperation.g.cs","v1.0","Remove-MgSiteListOperation","DELETE","/sites/{param}/lists/{param}/operations/{param}","matched","Remove-MgSiteListOperation" +"Sites","RemoveMgSiteListPermission.g.cs","v1.0","Remove-MgSiteListPermission","DELETE","/sites/{param}/lists/{param}/permissions/{param}","matched","Remove-MgSiteListPermission" +"Sites","RemoveMgSiteListSubscription.g.cs","v1.0","Remove-MgSiteListSubscription","DELETE","/sites/{param}/lists/{param}/subscriptions/{param}","matched","Remove-MgSiteListSubscription" +"Sites","RemoveMgSiteOperation.g.cs","v1.0","Remove-MgSiteOperation","DELETE","/sites/{param}/operations/{param}","matched","Remove-MgSiteOperation" +"Sites","RemoveMgSitePage.g.cs","v1.0","Remove-MgSitePage","DELETE","/sites/{param}/pages/{param}","matched","Remove-MgSitePage" +"Sites","RemoveMgSitePageAsSitePageCanvaLayout.g.cs","v1.0","Remove-MgSitePageAsSitePageCanvaLayout","DELETE","","cast","" +"Sites","RemoveMgSitePageAsSitePageCanvaLayoutHorizontalSection.g.cs","v1.0","Remove-MgSitePageAsSitePageCanvaLayoutHorizontalSection","DELETE","","cast","" +"Sites","RemoveMgSitePageAsSitePageCanvaLayoutHorizontalSectionColumn.g.cs","v1.0","Remove-MgSitePageAsSitePageCanvaLayoutHorizontalSectionColumn","DELETE","","cast","" +"Sites","RemoveMgSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart.g.cs","v1.0","Remove-MgSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart","DELETE","","cast","" +"Sites","RemoveMgSitePageAsSitePageCanvaLayoutVerticalSection.g.cs","v1.0","Remove-MgSitePageAsSitePageCanvaLayoutVerticalSection","DELETE","","cast","" +"Sites","RemoveMgSitePageAsSitePageCanvaLayoutVerticalSectionWebpart.g.cs","v1.0","Remove-MgSitePageAsSitePageCanvaLayoutVerticalSectionWebpart","DELETE","","cast","" +"Sites","RemoveMgSitePageAsSitePageWebPart.g.cs","v1.0","Remove-MgSitePageAsSitePageWebPart","DELETE","","cast","" +"Sites","RemoveMgSitePermission.g.cs","v1.0","Remove-MgSitePermission","DELETE","/sites/{param}/permissions/{param}","matched","Remove-MgSitePermission" +"Sites","RemoveMgSiteTermStore.g.cs","v1.0","Remove-MgSiteTermStore","DELETE","/sites/{param}/termStore","matched","Remove-MgSiteTermStore" +"Sites","RemoveMgSiteTermStoreGroup.g.cs","v1.0","Remove-MgSiteTermStoreGroup","DELETE","/sites/{param}/termStore/groups/{param}","matched","Remove-MgSiteTermStoreGroup" +"Sites","RemoveMgSiteTermStoreGroupSet.g.cs","v1.0","Remove-MgSiteTermStoreGroupSet","DELETE","/sites/{param}/termStore/groups/{param}/sets/{param}","matched","Remove-MgSiteTermStoreGroupSet" +"Sites","RemoveMgSiteTermStoreGroupSetChild.g.cs","v1.0","Remove-MgSiteTermStoreGroupSetChild","DELETE","/sites/{param}/termStore/groups/{param}/sets/{param}/children/{param}","matched","Remove-MgSiteTermStoreGroupSetChild" +"Sites","RemoveMgSiteTermStoreGroupSetChildRelation.g.cs","v1.0","Remove-MgSiteTermStoreGroupSetChildRelation","DELETE","/sites/{param}/termStore/groups/{param}/sets/{param}/children/{param}/children/{param}/relations/{param}","matched","Remove-MgSiteTermStoreGroupSetChildRelation" +"Sites","RemoveMgSiteTermStoreGroupSetParentGroup.g.cs","v1.0","Remove-MgSiteTermStoreGroupSetParentGroup","DELETE","/sites/{param}/termStore/groups/{param}/sets/{param}/parentGroup","matched","Remove-MgSiteTermStoreGroupSetParentGroup" +"Sites","RemoveMgSiteTermStoreGroupSetRelation.g.cs","v1.0","Remove-MgSiteTermStoreGroupSetRelation","DELETE","/sites/{param}/termStore/groups/{param}/sets/{param}/relations/{param}","matched","Remove-MgSiteTermStoreGroupSetRelation" +"Sites","RemoveMgSiteTermStoreGroupSetTerm.g.cs","v1.0","Remove-MgSiteTermStoreGroupSetTerm","DELETE","/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}","matched","Remove-MgSiteTermStoreGroupSetTerm" +"Sites","RemoveMgSiteTermStoreGroupSetTermChild.g.cs","v1.0","Remove-MgSiteTermStoreGroupSetTermChild","DELETE","/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/children/{param}","matched","Remove-MgSiteTermStoreGroupSetTermChild" +"Sites","RemoveMgSiteTermStoreGroupSetTermChildRelation.g.cs","v1.0","Remove-MgSiteTermStoreGroupSetTermChildRelation","DELETE","/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/children/{param}/relations/{param}","matched","Remove-MgSiteTermStoreGroupSetTermChildRelation" +"Sites","RemoveMgSiteTermStoreGroupSetTermRelation.g.cs","v1.0","Remove-MgSiteTermStoreGroupSetTermRelation","DELETE","/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/relations/{param}","matched","Remove-MgSiteTermStoreGroupSetTermRelation" +"Sites","RemoveMgSiteTermStoreSet.g.cs","v1.0","Remove-MgSiteTermStoreSet","DELETE","/sites/{param}/termStore/sets/{param}","matched","Remove-MgSiteTermStoreSet" +"Sites","RemoveMgSiteTermStoreSetChild.g.cs","v1.0","Remove-MgSiteTermStoreSetChild","DELETE","/sites/{param}/termStore/sets/{param}/children/{param}","matched","Remove-MgSiteTermStoreSetChild" +"Sites","RemoveMgSiteTermStoreSetChildRelation.g.cs","v1.0","Remove-MgSiteTermStoreSetChildRelation","DELETE","/sites/{param}/termStore/sets/{param}/children/{param}/children/{param}/relations/{param}","matched","Remove-MgSiteTermStoreSetChildRelation" +"Sites","RemoveMgSiteTermStoreSetParentGroup.g.cs","v1.0","Remove-MgSiteTermStoreSetParentGroup","DELETE","/sites/{param}/termStore/sets/{param}/parentGroup","matched","Remove-MgSiteTermStoreSetParentGroup" +"Sites","RemoveMgSiteTermStoreSetParentGroupSet.g.cs","v1.0","Remove-MgSiteTermStoreSetParentGroupSet","DELETE","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}","matched","Remove-MgSiteTermStoreSetParentGroupSet" +"Sites","RemoveMgSiteTermStoreSetParentGroupSetChild.g.cs","v1.0","Remove-MgSiteTermStoreSetParentGroupSetChild","DELETE","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/children/{param}","matched","Remove-MgSiteTermStoreSetParentGroupSetChild" +"Sites","RemoveMgSiteTermStoreSetParentGroupSetChildRelation.g.cs","v1.0","Remove-MgSiteTermStoreSetParentGroupSetChildRelation","DELETE","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/children/{param}/children/{param}/relations/{param}","matched","Remove-MgSiteTermStoreSetParentGroupSetChildRelation" +"Sites","RemoveMgSiteTermStoreSetParentGroupSetRelation.g.cs","v1.0","Remove-MgSiteTermStoreSetParentGroupSetRelation","DELETE","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/relations/{param}","matched","Remove-MgSiteTermStoreSetParentGroupSetRelation" +"Sites","RemoveMgSiteTermStoreSetParentGroupSetTerm.g.cs","v1.0","Remove-MgSiteTermStoreSetParentGroupSetTerm","DELETE","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}","matched","Remove-MgSiteTermStoreSetParentGroupSetTerm" +"Sites","RemoveMgSiteTermStoreSetParentGroupSetTermChild.g.cs","v1.0","Remove-MgSiteTermStoreSetParentGroupSetTermChild","DELETE","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/children/{param}","matched","Remove-MgSiteTermStoreSetParentGroupSetTermChild" +"Sites","RemoveMgSiteTermStoreSetParentGroupSetTermChildRelation.g.cs","v1.0","Remove-MgSiteTermStoreSetParentGroupSetTermChildRelation","DELETE","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/children/{param}/relations/{param}","matched","Remove-MgSiteTermStoreSetParentGroupSetTermChildRelation" +"Sites","RemoveMgSiteTermStoreSetParentGroupSetTermRelation.g.cs","v1.0","Remove-MgSiteTermStoreSetParentGroupSetTermRelation","DELETE","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/relations/{param}","matched","Remove-MgSiteTermStoreSetParentGroupSetTermRelation" +"Sites","RemoveMgSiteTermStoreSetRelation.g.cs","v1.0","Remove-MgSiteTermStoreSetRelation","DELETE","/sites/{param}/termStore/sets/{param}/relations/{param}","matched","Remove-MgSiteTermStoreSetRelation" +"Sites","RemoveMgSiteTermStoreSetTerm.g.cs","v1.0","Remove-MgSiteTermStoreSetTerm","DELETE","/sites/{param}/termStore/sets/{param}/terms/{param}","matched","Remove-MgSiteTermStoreSetTerm" +"Sites","RemoveMgSiteTermStoreSetTermChild.g.cs","v1.0","Remove-MgSiteTermStoreSetTermChild","DELETE","/sites/{param}/termStore/sets/{param}/terms/{param}/children/{param}","matched","Remove-MgSiteTermStoreSetTermChild" +"Sites","RemoveMgSiteTermStoreSetTermChildRelation.g.cs","v1.0","Remove-MgSiteTermStoreSetTermChildRelation","DELETE","/sites/{param}/termStore/sets/{param}/terms/{param}/children/{param}/relations/{param}","matched","Remove-MgSiteTermStoreSetTermChildRelation" +"Sites","RemoveMgSiteTermStoreSetTermRelation.g.cs","v1.0","Remove-MgSiteTermStoreSetTermRelation","DELETE","/sites/{param}/termStore/sets/{param}/terms/{param}/relations/{param}","matched","Remove-MgSiteTermStoreSetTermRelation" +"Sites","SetMgGroupSiteAnalyticItemActivityStatActivityDriveItemContent.g.cs","v1.0","Set-MgGroupSiteAnalyticItemActivityStatActivityDriveItemContent","PUT","/groups/{param}/sites/{param}/analytics/itemActivityStats/{param}/activities/{param}/driveItem/$value","matched","Set-MgGroupSiteAnalyticItemActivityStatActivityDriveItemContent" +"Sites","SetMgGroupSiteListItemDriveItemContent.g.cs","v1.0","Set-MgGroupSiteListItemDriveItemContent","PUT","/groups/{param}/sites/{param}/lists/{param}/items/{param}/driveItem/$value","matched","Set-MgGroupSiteListItemDriveItemContent" +"Sites","SetMgGroupSiteOnenoteNotebookSectionGroupSectionPageContent.g.cs","v1.0","Set-MgGroupSiteOnenoteNotebookSectionGroupSectionPageContent","PUT","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}/$value","matched","Set-MgGroupSiteOnenoteNotebookSectionGroupSectionPageContent" +"Sites","SetMgGroupSiteOnenoteNotebookSectionPageContent.g.cs","v1.0","Set-MgGroupSiteOnenoteNotebookSectionPageContent","PUT","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}/$value","matched","Set-MgGroupSiteOnenoteNotebookSectionPageContent" +"Sites","SetMgGroupSiteOnenotePageContent.g.cs","v1.0","Set-MgGroupSiteOnenotePageContent","PUT","/groups/{param}/sites/{param}/onenote/pages/{param}/$value","matched","Set-MgGroupSiteOnenotePageContent" +"Sites","SetMgGroupSiteOnenoteResourceContent.g.cs","v1.0","Set-MgGroupSiteOnenoteResourceContent","PUT","/groups/{param}/sites/{param}/onenote/resources/{param}/$value","matched","Set-MgGroupSiteOnenoteResourceContent" +"Sites","SetMgGroupSiteOnenoteSectionGroupSectionPageContent.g.cs","v1.0","Set-MgGroupSiteOnenoteSectionGroupSectionPageContent","PUT","/groups/{param}/sites/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}/$value","matched","Set-MgGroupSiteOnenoteSectionGroupSectionPageContent" +"Sites","SetMgGroupSiteOnenoteSectionPageContent.g.cs","v1.0","Set-MgGroupSiteOnenoteSectionPageContent","PUT","/groups/{param}/sites/{param}/onenote/sections/{param}/pages/{param}/$value","matched","Set-MgGroupSiteOnenoteSectionPageContent" +"Sites","SetMgSiteAnalyticItemActivityStatActivityDriveItemContent.g.cs","v1.0","Set-MgSiteAnalyticItemActivityStatActivityDriveItemContent","PUT","/sites/{param}/analytics/itemActivityStats/{param}/activities/{param}/driveItem/$value","matched","Set-MgSiteAnalyticItemActivityStatActivityDriveItemContent" +"Sites","SetMgSiteListItemDriveItemContent.g.cs","v1.0","Set-MgSiteListItemDriveItemContent","PUT","/sites/{param}/lists/{param}/items/{param}/driveItem/$value","matched","Set-MgSiteListItemDriveItemContent" +"Sites","UpdateMgAdminSharepoint.g.cs","v1.0","Update-MgAdminSharepoint","PATCH","/admin/sharepoint","matched","Update-MgAdminSharepoint" +"Sites","UpdateMgAdminSharepointSetting.g.cs","v1.0","Update-MgAdminSharepointSetting","PATCH","/admin/sharepoint/settings","matched","Update-MgAdminSharepointSetting" +"Sites","UpdateMgGroupSite.g.cs","v1.0","Update-MgGroupSite","PATCH","/groups/{param}/sites/{param}","matched","Update-MgGroupSite" +"Sites","UpdateMgGroupSiteAnalytic.g.cs","v1.0","Update-MgGroupSiteAnalytic","PATCH","/groups/{param}/sites/{param}/analytics","matched","Update-MgGroupSiteAnalytic" +"Sites","UpdateMgGroupSiteAnalyticItemActivityStat.g.cs","v1.0","Update-MgGroupSiteAnalyticItemActivityStat","PATCH","/groups/{param}/sites/{param}/analytics/itemActivityStats/{param}","matched","Update-MgGroupSiteAnalyticItemActivityStat" +"Sites","UpdateMgGroupSiteAnalyticItemActivityStatActivity.g.cs","v1.0","Update-MgGroupSiteAnalyticItemActivityStatActivity","PATCH","/groups/{param}/sites/{param}/analytics/itemActivityStats/{param}/activities/{param}","matched","Update-MgGroupSiteAnalyticItemActivityStatActivity" +"Sites","UpdateMgGroupSiteColumn.g.cs","v1.0","Update-MgGroupSiteColumn","PATCH","/groups/{param}/sites/{param}/columns/{param}","matched","Update-MgGroupSiteColumn" +"Sites","UpdateMgGroupSiteContentType.g.cs","v1.0","Update-MgGroupSiteContentType","PATCH","/groups/{param}/sites/{param}/contentTypes/{param}","matched","Update-MgGroupSiteContentType" +"Sites","UpdateMgGroupSiteContentTypeColumn.g.cs","v1.0","Update-MgGroupSiteContentTypeColumn","PATCH","/groups/{param}/sites/{param}/contentTypes/{param}/columns/{param}","matched","Update-MgGroupSiteContentTypeColumn" +"Sites","UpdateMgGroupSiteContentTypeColumnLink.g.cs","v1.0","Update-MgGroupSiteContentTypeColumnLink","PATCH","/groups/{param}/sites/{param}/contentTypes/{param}/columnLinks/{param}","matched","Update-MgGroupSiteContentTypeColumnLink" +"Sites","UpdateMgGroupSiteCreatedByUserMailboxSetting.g.cs","v1.0","Update-MgGroupSiteCreatedByUserMailboxSetting","PATCH","/groups/{param}/sites/{param}/createdByUser/mailboxSettings","matched","Update-MgGroupSiteCreatedByUserMailboxSetting" +"Sites","UpdateMgGroupSiteLastModifiedByUserMailboxSetting.g.cs","v1.0","Update-MgGroupSiteLastModifiedByUserMailboxSetting","PATCH","/groups/{param}/sites/{param}/lastModifiedByUser/mailboxSettings","matched","Update-MgGroupSiteLastModifiedByUserMailboxSetting" +"Sites","UpdateMgGroupSiteList.g.cs","v1.0","Update-MgGroupSiteList","PATCH","/groups/{param}/sites/{param}/lists/{param}","matched","Update-MgGroupSiteList" +"Sites","UpdateMgGroupSiteListColumn.g.cs","v1.0","Update-MgGroupSiteListColumn","PATCH","/groups/{param}/sites/{param}/lists/{param}/columns/{param}","matched","Update-MgGroupSiteListColumn" +"Sites","UpdateMgGroupSiteListContentType.g.cs","v1.0","Update-MgGroupSiteListContentType","PATCH","/groups/{param}/sites/{param}/lists/{param}/contentTypes/{param}","matched","Update-MgGroupSiteListContentType" +"Sites","UpdateMgGroupSiteListContentTypeColumn.g.cs","v1.0","Update-MgGroupSiteListContentTypeColumn","PATCH","/groups/{param}/sites/{param}/lists/{param}/contentTypes/{param}/columns/{param}","matched","Update-MgGroupSiteListContentTypeColumn" +"Sites","UpdateMgGroupSiteListContentTypeColumnLink.g.cs","v1.0","Update-MgGroupSiteListContentTypeColumnLink","PATCH","/groups/{param}/sites/{param}/lists/{param}/contentTypes/{param}/columnLinks/{param}","matched","Update-MgGroupSiteListContentTypeColumnLink" +"Sites","UpdateMgGroupSiteListCreatedByUserMailboxSetting.g.cs","v1.0","Update-MgGroupSiteListCreatedByUserMailboxSetting","PATCH","/groups/{param}/sites/{param}/lists/{param}/createdByUser/mailboxSettings","matched","Update-MgGroupSiteListCreatedByUserMailboxSetting" +"Sites","UpdateMgGroupSiteListItem.g.cs","v1.0","Update-MgGroupSiteListItem","PATCH","/groups/{param}/sites/{param}/lists/{param}/items/{param}","matched","Update-MgGroupSiteListItem" +"Sites","UpdateMgGroupSiteListItemCreatedByUserMailboxSetting.g.cs","v1.0","Update-MgGroupSiteListItemCreatedByUserMailboxSetting","PATCH","/groups/{param}/sites/{param}/lists/{param}/items/{param}/createdByUser/mailboxSettings","matched","Update-MgGroupSiteListItemCreatedByUserMailboxSetting" +"Sites","UpdateMgGroupSiteListItemDocumentSetVersion.g.cs","v1.0","Update-MgGroupSiteListItemDocumentSetVersion","PATCH","/groups/{param}/sites/{param}/lists/{param}/items/{param}/documentSetVersions/{param}","matched","Update-MgGroupSiteListItemDocumentSetVersion" +"Sites","UpdateMgGroupSiteListItemDocumentSetVersionField.g.cs","v1.0","Update-MgGroupSiteListItemDocumentSetVersionField","PATCH","/groups/{param}/sites/{param}/lists/{param}/items/{param}/documentSetVersions/{param}/fields","matched","Update-MgGroupSiteListItemDocumentSetVersionField" +"Sites","UpdateMgGroupSiteListItemField.g.cs","v1.0","Update-MgGroupSiteListItemField","PATCH","/groups/{param}/sites/{param}/lists/{param}/items/{param}/fields","matched","Update-MgGroupSiteListItemField" +"Sites","UpdateMgGroupSiteListItemLastModifiedByUserMailboxSetting.g.cs","v1.0","Update-MgGroupSiteListItemLastModifiedByUserMailboxSetting","PATCH","/groups/{param}/sites/{param}/lists/{param}/items/{param}/lastModifiedByUser/mailboxSettings","matched","Update-MgGroupSiteListItemLastModifiedByUserMailboxSetting" +"Sites","UpdateMgGroupSiteListItemPermission.g.cs","v1.0","Update-MgGroupSiteListItemPermission","PATCH","/groups/{param}/sites/{param}/lists/{param}/items/{param}/permissions/{param}","matched","Update-MgGroupSiteListItemPermission" +"Sites","UpdateMgGroupSiteListItemVersion.g.cs","v1.0","Update-MgGroupSiteListItemVersion","PATCH","/groups/{param}/sites/{param}/lists/{param}/items/{param}/versions/{param}","matched","Update-MgGroupSiteListItemVersion" +"Sites","UpdateMgGroupSiteListItemVersionField.g.cs","v1.0","Update-MgGroupSiteListItemVersionField","PATCH","/groups/{param}/sites/{param}/lists/{param}/items/{param}/versions/{param}/fields","matched","Update-MgGroupSiteListItemVersionField" +"Sites","UpdateMgGroupSiteListLastModifiedByUserMailboxSetting.g.cs","v1.0","Update-MgGroupSiteListLastModifiedByUserMailboxSetting","PATCH","/groups/{param}/sites/{param}/lists/{param}/lastModifiedByUser/mailboxSettings","matched","Update-MgGroupSiteListLastModifiedByUserMailboxSetting" +"Sites","UpdateMgGroupSiteListOperation.g.cs","v1.0","Update-MgGroupSiteListOperation","PATCH","/groups/{param}/sites/{param}/lists/{param}/operations/{param}","matched","Update-MgGroupSiteListOperation" +"Sites","UpdateMgGroupSiteListPermission.g.cs","v1.0","Update-MgGroupSiteListPermission","PATCH","/groups/{param}/sites/{param}/lists/{param}/permissions/{param}","matched","Update-MgGroupSiteListPermission" +"Sites","UpdateMgGroupSiteListSubscription.g.cs","v1.0","Update-MgGroupSiteListSubscription","PATCH","/groups/{param}/sites/{param}/lists/{param}/subscriptions/{param}","matched","Update-MgGroupSiteListSubscription" +"Sites","UpdateMgGroupSiteOnenote.g.cs","v1.0","Update-MgGroupSiteOnenote","PATCH","/groups/{param}/sites/{param}/onenote","matched","Update-MgGroupSiteOnenote" +"Sites","UpdateMgGroupSiteOnenoteNotebook.g.cs","v1.0","Update-MgGroupSiteOnenoteNotebook","PATCH","/groups/{param}/sites/{param}/onenote/notebooks/{param}","matched","Update-MgGroupSiteOnenoteNotebook" +"Sites","UpdateMgGroupSiteOnenoteNotebookSection.g.cs","v1.0","Update-MgGroupSiteOnenoteNotebookSection","PATCH","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sections/{param}","matched","Update-MgGroupSiteOnenoteNotebookSection" +"Sites","UpdateMgGroupSiteOnenoteNotebookSectionGroup.g.cs","v1.0","Update-MgGroupSiteOnenoteNotebookSectionGroup","PATCH","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}","matched","Update-MgGroupSiteOnenoteNotebookSectionGroup" +"Sites","UpdateMgGroupSiteOnenoteNotebookSectionGroupSection.g.cs","v1.0","Update-MgGroupSiteOnenoteNotebookSectionGroupSection","PATCH","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}","matched","Update-MgGroupSiteOnenoteNotebookSectionGroupSection" +"Sites","UpdateMgGroupSiteOnenoteNotebookSectionGroupSectionPage.g.cs","v1.0","Update-MgGroupSiteOnenoteNotebookSectionGroupSectionPage","PATCH","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}","matched","Update-MgGroupSiteOnenoteNotebookSectionGroupSectionPage" +"Sites","UpdateMgGroupSiteOnenoteNotebookSectionPage.g.cs","v1.0","Update-MgGroupSiteOnenoteNotebookSectionPage","PATCH","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}","matched","Update-MgGroupSiteOnenoteNotebookSectionPage" +"Sites","UpdateMgGroupSiteOnenoteOperation.g.cs","v1.0","Update-MgGroupSiteOnenoteOperation","PATCH","/groups/{param}/sites/{param}/onenote/operations/{param}","matched","Update-MgGroupSiteOnenoteOperation" +"Sites","UpdateMgGroupSiteOnenotePage.g.cs","v1.0","Update-MgGroupSiteOnenotePage","PATCH","/groups/{param}/sites/{param}/onenote/pages/{param}","matched","Update-MgGroupSiteOnenotePage" +"Sites","UpdateMgGroupSiteOnenoteResource.g.cs","v1.0","Update-MgGroupSiteOnenoteResource","PATCH","/groups/{param}/sites/{param}/onenote/resources/{param}","matched","Update-MgGroupSiteOnenoteResource" +"Sites","UpdateMgGroupSiteOnenoteSection.g.cs","v1.0","Update-MgGroupSiteOnenoteSection","PATCH","/groups/{param}/sites/{param}/onenote/sections/{param}","matched","Update-MgGroupSiteOnenoteSection" +"Sites","UpdateMgGroupSiteOnenoteSectionGroup.g.cs","v1.0","Update-MgGroupSiteOnenoteSectionGroup","PATCH","/groups/{param}/sites/{param}/onenote/sectionGroups/{param}","matched","Update-MgGroupSiteOnenoteSectionGroup" +"Sites","UpdateMgGroupSiteOnenoteSectionGroupSection.g.cs","v1.0","Update-MgGroupSiteOnenoteSectionGroupSection","PATCH","/groups/{param}/sites/{param}/onenote/sectionGroups/{param}/sections/{param}","matched","Update-MgGroupSiteOnenoteSectionGroupSection" +"Sites","UpdateMgGroupSiteOnenoteSectionGroupSectionPage.g.cs","v1.0","Update-MgGroupSiteOnenoteSectionGroupSectionPage","PATCH","/groups/{param}/sites/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}","matched","Update-MgGroupSiteOnenoteSectionGroupSectionPage" +"Sites","UpdateMgGroupSiteOnenoteSectionPage.g.cs","v1.0","Update-MgGroupSiteOnenoteSectionPage","PATCH","/groups/{param}/sites/{param}/onenote/sections/{param}/pages/{param}","matched","Update-MgGroupSiteOnenoteSectionPage" +"Sites","UpdateMgGroupSiteOperation.g.cs","v1.0","Update-MgGroupSiteOperation","PATCH","/groups/{param}/sites/{param}/operations/{param}","matched","Update-MgGroupSiteOperation" +"Sites","UpdateMgGroupSitePage.g.cs","v1.0","Update-MgGroupSitePage","PATCH","/groups/{param}/sites/{param}/pages/{param}","matched","Update-MgGroupSitePage" +"Sites","UpdateMgGroupSitePageAsSitePageCanvaLayout.g.cs","v1.0","Update-MgGroupSitePageAsSitePageCanvaLayout","PATCH","","cast","" +"Sites","UpdateMgGroupSitePageAsSitePageCanvaLayoutHorizontalSection.g.cs","v1.0","Update-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSection","PATCH","","cast","" +"Sites","UpdateMgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumn.g.cs","v1.0","Update-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumn","PATCH","","cast","" +"Sites","UpdateMgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart.g.cs","v1.0","Update-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart","PATCH","","cast","" +"Sites","UpdateMgGroupSitePageAsSitePageCanvaLayoutVerticalSection.g.cs","v1.0","Update-MgGroupSitePageAsSitePageCanvaLayoutVerticalSection","PATCH","","cast","" +"Sites","UpdateMgGroupSitePageAsSitePageCanvaLayoutVerticalSectionWebpart.g.cs","v1.0","Update-MgGroupSitePageAsSitePageCanvaLayoutVerticalSectionWebpart","PATCH","","cast","" +"Sites","UpdateMgGroupSitePageAsSitePageCreatedByUserMailboxSetting.g.cs","v1.0","Update-MgGroupSitePageAsSitePageCreatedByUserMailboxSetting","PATCH","","cast","" +"Sites","UpdateMgGroupSitePageAsSitePageLastModifiedByUserMailboxSetting.g.cs","v1.0","Update-MgGroupSitePageAsSitePageLastModifiedByUserMailboxSetting","PATCH","","cast","" +"Sites","UpdateMgGroupSitePageAsSitePageWebPart.g.cs","v1.0","Update-MgGroupSitePageAsSitePageWebPart","PATCH","","cast","" +"Sites","UpdateMgGroupSitePageCreatedByUserMailboxSetting.g.cs","v1.0","Update-MgGroupSitePageCreatedByUserMailboxSetting","PATCH","/groups/{param}/sites/{param}/pages/{param}/createdByUser/mailboxSettings","matched","Update-MgGroupSitePageCreatedByUserMailboxSetting" +"Sites","UpdateMgGroupSitePageLastModifiedByUserMailboxSetting.g.cs","v1.0","Update-MgGroupSitePageLastModifiedByUserMailboxSetting","PATCH","/groups/{param}/sites/{param}/pages/{param}/lastModifiedByUser/mailboxSettings","matched","Update-MgGroupSitePageLastModifiedByUserMailboxSetting" +"Sites","UpdateMgGroupSitePermission.g.cs","v1.0","Update-MgGroupSitePermission","PATCH","/groups/{param}/sites/{param}/permissions/{param}","matched","Update-MgGroupSitePermission" +"Sites","UpdateMgGroupSiteTermStore.g.cs","v1.0","Update-MgGroupSiteTermStore","PATCH","/groups/{param}/sites/{param}/termStore","matched","Update-MgGroupSiteTermStore" +"Sites","UpdateMgGroupSiteTermStoreGroup.g.cs","v1.0","Update-MgGroupSiteTermStoreGroup","PATCH","/groups/{param}/sites/{param}/termStore/groups/{param}","matched","Update-MgGroupSiteTermStoreGroup" +"Sites","UpdateMgGroupSiteTermStoreGroupSet.g.cs","v1.0","Update-MgGroupSiteTermStoreGroupSet","PATCH","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}","matched","Update-MgGroupSiteTermStoreGroupSet" +"Sites","UpdateMgGroupSiteTermStoreGroupSetChild.g.cs","v1.0","Update-MgGroupSiteTermStoreGroupSetChild","PATCH","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/children/{param}","matched","Update-MgGroupSiteTermStoreGroupSetChild" +"Sites","UpdateMgGroupSiteTermStoreGroupSetChildRelation.g.cs","v1.0","Update-MgGroupSiteTermStoreGroupSetChildRelation","PATCH","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/children/{param}/children/{param}/relations/{param}","matched","Update-MgGroupSiteTermStoreGroupSetChildRelation" +"Sites","UpdateMgGroupSiteTermStoreGroupSetParentGroup.g.cs","v1.0","Update-MgGroupSiteTermStoreGroupSetParentGroup","PATCH","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/parentGroup","matched","Update-MgGroupSiteTermStoreGroupSetParentGroup" +"Sites","UpdateMgGroupSiteTermStoreGroupSetRelation.g.cs","v1.0","Update-MgGroupSiteTermStoreGroupSetRelation","PATCH","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/relations/{param}","matched","Update-MgGroupSiteTermStoreGroupSetRelation" +"Sites","UpdateMgGroupSiteTermStoreGroupSetTerm.g.cs","v1.0","Update-MgGroupSiteTermStoreGroupSetTerm","PATCH","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}","matched","Update-MgGroupSiteTermStoreGroupSetTerm" +"Sites","UpdateMgGroupSiteTermStoreGroupSetTermChild.g.cs","v1.0","Update-MgGroupSiteTermStoreGroupSetTermChild","PATCH","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/children/{param}","matched","Update-MgGroupSiteTermStoreGroupSetTermChild" +"Sites","UpdateMgGroupSiteTermStoreGroupSetTermChildRelation.g.cs","v1.0","Update-MgGroupSiteTermStoreGroupSetTermChildRelation","PATCH","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/children/{param}/relations/{param}","matched","Update-MgGroupSiteTermStoreGroupSetTermChildRelation" +"Sites","UpdateMgGroupSiteTermStoreGroupSetTermRelation.g.cs","v1.0","Update-MgGroupSiteTermStoreGroupSetTermRelation","PATCH","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/relations/{param}","matched","Update-MgGroupSiteTermStoreGroupSetTermRelation" +"Sites","UpdateMgGroupSiteTermStoreSet.g.cs","v1.0","Update-MgGroupSiteTermStoreSet","PATCH","/groups/{param}/sites/{param}/termStore/sets/{param}","matched","Update-MgGroupSiteTermStoreSet" +"Sites","UpdateMgGroupSiteTermStoreSetChild.g.cs","v1.0","Update-MgGroupSiteTermStoreSetChild","PATCH","/groups/{param}/sites/{param}/termStore/sets/{param}/children/{param}","matched","Update-MgGroupSiteTermStoreSetChild" +"Sites","UpdateMgGroupSiteTermStoreSetChildRelation.g.cs","v1.0","Update-MgGroupSiteTermStoreSetChildRelation","PATCH","/groups/{param}/sites/{param}/termStore/sets/{param}/children/{param}/children/{param}/relations/{param}","matched","Update-MgGroupSiteTermStoreSetChildRelation" +"Sites","UpdateMgGroupSiteTermStoreSetParentGroup.g.cs","v1.0","Update-MgGroupSiteTermStoreSetParentGroup","PATCH","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup","matched","Update-MgGroupSiteTermStoreSetParentGroup" +"Sites","UpdateMgGroupSiteTermStoreSetParentGroupSet.g.cs","v1.0","Update-MgGroupSiteTermStoreSetParentGroupSet","PATCH","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}","matched","Update-MgGroupSiteTermStoreSetParentGroupSet" +"Sites","UpdateMgGroupSiteTermStoreSetParentGroupSetChild.g.cs","v1.0","Update-MgGroupSiteTermStoreSetParentGroupSetChild","PATCH","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/children/{param}","matched","Update-MgGroupSiteTermStoreSetParentGroupSetChild" +"Sites","UpdateMgGroupSiteTermStoreSetParentGroupSetChildRelation.g.cs","v1.0","Update-MgGroupSiteTermStoreSetParentGroupSetChildRelation","PATCH","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/children/{param}/children/{param}/relations/{param}","matched","Update-MgGroupSiteTermStoreSetParentGroupSetChildRelation" +"Sites","UpdateMgGroupSiteTermStoreSetParentGroupSetRelation.g.cs","v1.0","Update-MgGroupSiteTermStoreSetParentGroupSetRelation","PATCH","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/relations/{param}","matched","Update-MgGroupSiteTermStoreSetParentGroupSetRelation" +"Sites","UpdateMgGroupSiteTermStoreSetParentGroupSetTerm.g.cs","v1.0","Update-MgGroupSiteTermStoreSetParentGroupSetTerm","PATCH","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}","matched","Update-MgGroupSiteTermStoreSetParentGroupSetTerm" +"Sites","UpdateMgGroupSiteTermStoreSetParentGroupSetTermChild.g.cs","v1.0","Update-MgGroupSiteTermStoreSetParentGroupSetTermChild","PATCH","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/children/{param}","matched","Update-MgGroupSiteTermStoreSetParentGroupSetTermChild" +"Sites","UpdateMgGroupSiteTermStoreSetParentGroupSetTermChildRelation.g.cs","v1.0","Update-MgGroupSiteTermStoreSetParentGroupSetTermChildRelation","PATCH","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/children/{param}/relations/{param}","matched","Update-MgGroupSiteTermStoreSetParentGroupSetTermChildRelation" +"Sites","UpdateMgGroupSiteTermStoreSetParentGroupSetTermRelation.g.cs","v1.0","Update-MgGroupSiteTermStoreSetParentGroupSetTermRelation","PATCH","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/relations/{param}","matched","Update-MgGroupSiteTermStoreSetParentGroupSetTermRelation" +"Sites","UpdateMgGroupSiteTermStoreSetRelation.g.cs","v1.0","Update-MgGroupSiteTermStoreSetRelation","PATCH","/groups/{param}/sites/{param}/termStore/sets/{param}/relations/{param}","matched","Update-MgGroupSiteTermStoreSetRelation" +"Sites","UpdateMgGroupSiteTermStoreSetTerm.g.cs","v1.0","Update-MgGroupSiteTermStoreSetTerm","PATCH","/groups/{param}/sites/{param}/termStore/sets/{param}/terms/{param}","matched","Update-MgGroupSiteTermStoreSetTerm" +"Sites","UpdateMgGroupSiteTermStoreSetTermChild.g.cs","v1.0","Update-MgGroupSiteTermStoreSetTermChild","PATCH","/groups/{param}/sites/{param}/termStore/sets/{param}/terms/{param}/children/{param}","matched","Update-MgGroupSiteTermStoreSetTermChild" +"Sites","UpdateMgGroupSiteTermStoreSetTermChildRelation.g.cs","v1.0","Update-MgGroupSiteTermStoreSetTermChildRelation","PATCH","/groups/{param}/sites/{param}/termStore/sets/{param}/terms/{param}/children/{param}/relations/{param}","matched","Update-MgGroupSiteTermStoreSetTermChildRelation" +"Sites","UpdateMgGroupSiteTermStoreSetTermRelation.g.cs","v1.0","Update-MgGroupSiteTermStoreSetTermRelation","PATCH","/groups/{param}/sites/{param}/termStore/sets/{param}/terms/{param}/relations/{param}","matched","Update-MgGroupSiteTermStoreSetTermRelation" +"Sites","UpdateMgSite.g.cs","v1.0","Update-MgSite","PATCH","/sites/{param}","matched","Update-MgSite" +"Sites","UpdateMgSiteAnalytic.g.cs","v1.0","Update-MgSiteAnalytic","PATCH","/sites/{param}/analytics","matched","Update-MgSiteAnalytic" +"Sites","UpdateMgSiteAnalyticItemActivityStat.g.cs","v1.0","Update-MgSiteAnalyticItemActivityStat","PATCH","/sites/{param}/analytics/itemActivityStats/{param}","matched","Update-MgSiteAnalyticItemActivityStat" +"Sites","UpdateMgSiteAnalyticItemActivityStatActivity.g.cs","v1.0","Update-MgSiteAnalyticItemActivityStatActivity","PATCH","/sites/{param}/analytics/itemActivityStats/{param}/activities/{param}","matched","Update-MgSiteAnalyticItemActivityStatActivity" +"Sites","UpdateMgSiteColumn.g.cs","v1.0","Update-MgSiteColumn","PATCH","/sites/{param}/columns/{param}","matched","Update-MgSiteColumn" +"Sites","UpdateMgSiteContentType.g.cs","v1.0","Update-MgSiteContentType","PATCH","/sites/{param}/contentTypes/{param}","matched","Update-MgSiteContentType" +"Sites","UpdateMgSiteContentTypeColumn.g.cs","v1.0","Update-MgSiteContentTypeColumn","PATCH","/sites/{param}/contentTypes/{param}/columns/{param}","matched","Update-MgSiteContentTypeColumn" +"Sites","UpdateMgSiteContentTypeColumnLink.g.cs","v1.0","Update-MgSiteContentTypeColumnLink","PATCH","/sites/{param}/contentTypes/{param}/columnLinks/{param}","matched","Update-MgSiteContentTypeColumnLink" +"Sites","UpdateMgSiteList.g.cs","v1.0","Update-MgSiteList","PATCH","/sites/{param}/lists/{param}","matched","Update-MgSiteList" +"Sites","UpdateMgSiteListColumn.g.cs","v1.0","Update-MgSiteListColumn","PATCH","/sites/{param}/lists/{param}/columns/{param}","matched","Update-MgSiteListColumn" +"Sites","UpdateMgSiteListContentType.g.cs","v1.0","Update-MgSiteListContentType","PATCH","/sites/{param}/lists/{param}/contentTypes/{param}","matched","Update-MgSiteListContentType" +"Sites","UpdateMgSiteListContentTypeColumn.g.cs","v1.0","Update-MgSiteListContentTypeColumn","PATCH","/sites/{param}/lists/{param}/contentTypes/{param}/columns/{param}","matched","Update-MgSiteListContentTypeColumn" +"Sites","UpdateMgSiteListContentTypeColumnLink.g.cs","v1.0","Update-MgSiteListContentTypeColumnLink","PATCH","/sites/{param}/lists/{param}/contentTypes/{param}/columnLinks/{param}","matched","Update-MgSiteListContentTypeColumnLink" +"Sites","UpdateMgSiteListCreatedByUserMailboxSetting.g.cs","v1.0","Update-MgSiteListCreatedByUserMailboxSetting","PATCH","/sites/{param}/lists/{param}/createdByUser/mailboxSettings","matched","Update-MgSiteListCreatedByUserMailboxSetting" +"Sites","UpdateMgSiteListItem.g.cs","v1.0","Update-MgSiteListItem","PATCH","/sites/{param}/lists/{param}/items/{param}","matched","Update-MgSiteListItem" +"Sites","UpdateMgSiteListItemCreatedByUserMailboxSetting.g.cs","v1.0","Update-MgSiteListItemCreatedByUserMailboxSetting","PATCH","/sites/{param}/lists/{param}/items/{param}/createdByUser/mailboxSettings","matched","Update-MgSiteListItemCreatedByUserMailboxSetting" +"Sites","UpdateMgSiteListItemDocumentSetVersion.g.cs","v1.0","Update-MgSiteListItemDocumentSetVersion","PATCH","/sites/{param}/lists/{param}/items/{param}/documentSetVersions/{param}","matched","Update-MgSiteListItemDocumentSetVersion" +"Sites","UpdateMgSiteListItemDocumentSetVersionField.g.cs","v1.0","Update-MgSiteListItemDocumentSetVersionField","PATCH","/sites/{param}/lists/{param}/items/{param}/documentSetVersions/{param}/fields","matched","Update-MgSiteListItemDocumentSetVersionField" +"Sites","UpdateMgSiteListItemField.g.cs","v1.0","Update-MgSiteListItemField","PATCH","/sites/{param}/lists/{param}/items/{param}/fields","matched","Update-MgSiteListItemField" +"Sites","UpdateMgSiteListItemLastModifiedByUserMailboxSetting.g.cs","v1.0","Update-MgSiteListItemLastModifiedByUserMailboxSetting","PATCH","/sites/{param}/lists/{param}/items/{param}/lastModifiedByUser/mailboxSettings","matched","Update-MgSiteListItemLastModifiedByUserMailboxSetting" +"Sites","UpdateMgSiteListItemPermission.g.cs","v1.0","Update-MgSiteListItemPermission","PATCH","/sites/{param}/lists/{param}/items/{param}/permissions/{param}","matched","Update-MgSiteListItemPermission" +"Sites","UpdateMgSiteListItemVersion.g.cs","v1.0","Update-MgSiteListItemVersion","PATCH","/sites/{param}/lists/{param}/items/{param}/versions/{param}","matched","Update-MgSiteListItemVersion" +"Sites","UpdateMgSiteListItemVersionField.g.cs","v1.0","Update-MgSiteListItemVersionField","PATCH","/sites/{param}/lists/{param}/items/{param}/versions/{param}/fields","matched","Update-MgSiteListItemVersionField" +"Sites","UpdateMgSiteListLastModifiedByUserMailboxSetting.g.cs","v1.0","Update-MgSiteListLastModifiedByUserMailboxSetting","PATCH","/sites/{param}/lists/{param}/lastModifiedByUser/mailboxSettings","matched","Update-MgSiteListLastModifiedByUserMailboxSetting" +"Sites","UpdateMgSiteListOperation.g.cs","v1.0","Update-MgSiteListOperation","PATCH","/sites/{param}/lists/{param}/operations/{param}","matched","Update-MgSiteListOperation" +"Sites","UpdateMgSiteListPermission.g.cs","v1.0","Update-MgSiteListPermission","PATCH","/sites/{param}/lists/{param}/permissions/{param}","matched","Update-MgSiteListPermission" +"Sites","UpdateMgSiteListSubscription.g.cs","v1.0","Update-MgSiteListSubscription","PATCH","/sites/{param}/lists/{param}/subscriptions/{param}","matched","Update-MgSiteListSubscription" +"Sites","UpdateMgSiteOperation.g.cs","v1.0","Update-MgSiteOperation","PATCH","/sites/{param}/operations/{param}","matched","Update-MgSiteOperation" +"Sites","UpdateMgSitePage.g.cs","v1.0","Update-MgSitePage","PATCH","/sites/{param}/pages/{param}","matched","Update-MgSitePage" +"Sites","UpdateMgSitePageAsSitePageCanvaLayout.g.cs","v1.0","Update-MgSitePageAsSitePageCanvaLayout","PATCH","","cast","" +"Sites","UpdateMgSitePageAsSitePageCanvaLayoutHorizontalSection.g.cs","v1.0","Update-MgSitePageAsSitePageCanvaLayoutHorizontalSection","PATCH","","cast","" +"Sites","UpdateMgSitePageAsSitePageCanvaLayoutHorizontalSectionColumn.g.cs","v1.0","Update-MgSitePageAsSitePageCanvaLayoutHorizontalSectionColumn","PATCH","","cast","" +"Sites","UpdateMgSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart.g.cs","v1.0","Update-MgSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart","PATCH","","cast","" +"Sites","UpdateMgSitePageAsSitePageCanvaLayoutVerticalSection.g.cs","v1.0","Update-MgSitePageAsSitePageCanvaLayoutVerticalSection","PATCH","","cast","" +"Sites","UpdateMgSitePageAsSitePageCanvaLayoutVerticalSectionWebpart.g.cs","v1.0","Update-MgSitePageAsSitePageCanvaLayoutVerticalSectionWebpart","PATCH","","cast","" +"Sites","UpdateMgSitePageAsSitePageCreatedByUserMailboxSetting.g.cs","v1.0","Update-MgSitePageAsSitePageCreatedByUserMailboxSetting","PATCH","","cast","" +"Sites","UpdateMgSitePageAsSitePageLastModifiedByUserMailboxSetting.g.cs","v1.0","Update-MgSitePageAsSitePageLastModifiedByUserMailboxSetting","PATCH","","cast","" +"Sites","UpdateMgSitePageAsSitePageWebPart.g.cs","v1.0","Update-MgSitePageAsSitePageWebPart","PATCH","","cast","" +"Sites","UpdateMgSitePageCreatedByUserMailboxSetting.g.cs","v1.0","Update-MgSitePageCreatedByUserMailboxSetting","PATCH","/sites/{param}/pages/{param}/createdByUser/mailboxSettings","matched","Update-MgSitePageCreatedByUserMailboxSetting" +"Sites","UpdateMgSitePageLastModifiedByUserMailboxSetting.g.cs","v1.0","Update-MgSitePageLastModifiedByUserMailboxSetting","PATCH","/sites/{param}/pages/{param}/lastModifiedByUser/mailboxSettings","matched","Update-MgSitePageLastModifiedByUserMailboxSetting" +"Sites","UpdateMgSitePermission.g.cs","v1.0","Update-MgSitePermission","PATCH","/sites/{param}/permissions/{param}","matched","Update-MgSitePermission" +"Sites","UpdateMgSiteTermStore.g.cs","v1.0","Update-MgSiteTermStore","PATCH","/sites/{param}/termStore","matched","Update-MgSiteTermStore" +"Sites","UpdateMgSiteTermStoreGroup.g.cs","v1.0","Update-MgSiteTermStoreGroup","PATCH","/sites/{param}/termStore/groups/{param}","matched","Update-MgSiteTermStoreGroup" +"Sites","UpdateMgSiteTermStoreGroupSet.g.cs","v1.0","Update-MgSiteTermStoreGroupSet","PATCH","/sites/{param}/termStore/groups/{param}/sets/{param}","matched","Update-MgSiteTermStoreGroupSet" +"Sites","UpdateMgSiteTermStoreGroupSetChild.g.cs","v1.0","Update-MgSiteTermStoreGroupSetChild","PATCH","/sites/{param}/termStore/groups/{param}/sets/{param}/children/{param}","matched","Update-MgSiteTermStoreGroupSetChild" +"Sites","UpdateMgSiteTermStoreGroupSetChildRelation.g.cs","v1.0","Update-MgSiteTermStoreGroupSetChildRelation","PATCH","/sites/{param}/termStore/groups/{param}/sets/{param}/children/{param}/children/{param}/relations/{param}","matched","Update-MgSiteTermStoreGroupSetChildRelation" +"Sites","UpdateMgSiteTermStoreGroupSetParentGroup.g.cs","v1.0","Update-MgSiteTermStoreGroupSetParentGroup","PATCH","/sites/{param}/termStore/groups/{param}/sets/{param}/parentGroup","matched","Update-MgSiteTermStoreGroupSetParentGroup" +"Sites","UpdateMgSiteTermStoreGroupSetRelation.g.cs","v1.0","Update-MgSiteTermStoreGroupSetRelation","PATCH","/sites/{param}/termStore/groups/{param}/sets/{param}/relations/{param}","matched","Update-MgSiteTermStoreGroupSetRelation" +"Sites","UpdateMgSiteTermStoreGroupSetTerm.g.cs","v1.0","Update-MgSiteTermStoreGroupSetTerm","PATCH","/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}","matched","Update-MgSiteTermStoreGroupSetTerm" +"Sites","UpdateMgSiteTermStoreGroupSetTermChild.g.cs","v1.0","Update-MgSiteTermStoreGroupSetTermChild","PATCH","/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/children/{param}","matched","Update-MgSiteTermStoreGroupSetTermChild" +"Sites","UpdateMgSiteTermStoreGroupSetTermChildRelation.g.cs","v1.0","Update-MgSiteTermStoreGroupSetTermChildRelation","PATCH","/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/children/{param}/relations/{param}","matched","Update-MgSiteTermStoreGroupSetTermChildRelation" +"Sites","UpdateMgSiteTermStoreGroupSetTermRelation.g.cs","v1.0","Update-MgSiteTermStoreGroupSetTermRelation","PATCH","/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/relations/{param}","matched","Update-MgSiteTermStoreGroupSetTermRelation" +"Sites","UpdateMgSiteTermStoreSet.g.cs","v1.0","Update-MgSiteTermStoreSet","PATCH","/sites/{param}/termStore/sets/{param}","matched","Update-MgSiteTermStoreSet" +"Sites","UpdateMgSiteTermStoreSetChild.g.cs","v1.0","Update-MgSiteTermStoreSetChild","PATCH","/sites/{param}/termStore/sets/{param}/children/{param}","matched","Update-MgSiteTermStoreSetChild" +"Sites","UpdateMgSiteTermStoreSetChildRelation.g.cs","v1.0","Update-MgSiteTermStoreSetChildRelation","PATCH","/sites/{param}/termStore/sets/{param}/children/{param}/children/{param}/relations/{param}","matched","Update-MgSiteTermStoreSetChildRelation" +"Sites","UpdateMgSiteTermStoreSetParentGroup.g.cs","v1.0","Update-MgSiteTermStoreSetParentGroup","PATCH","/sites/{param}/termStore/sets/{param}/parentGroup","matched","Update-MgSiteTermStoreSetParentGroup" +"Sites","UpdateMgSiteTermStoreSetParentGroupSet.g.cs","v1.0","Update-MgSiteTermStoreSetParentGroupSet","PATCH","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}","matched","Update-MgSiteTermStoreSetParentGroupSet" +"Sites","UpdateMgSiteTermStoreSetParentGroupSetChild.g.cs","v1.0","Update-MgSiteTermStoreSetParentGroupSetChild","PATCH","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/children/{param}","matched","Update-MgSiteTermStoreSetParentGroupSetChild" +"Sites","UpdateMgSiteTermStoreSetParentGroupSetChildRelation.g.cs","v1.0","Update-MgSiteTermStoreSetParentGroupSetChildRelation","PATCH","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/children/{param}/children/{param}/relations/{param}","matched","Update-MgSiteTermStoreSetParentGroupSetChildRelation" +"Sites","UpdateMgSiteTermStoreSetParentGroupSetRelation.g.cs","v1.0","Update-MgSiteTermStoreSetParentGroupSetRelation","PATCH","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/relations/{param}","matched","Update-MgSiteTermStoreSetParentGroupSetRelation" +"Sites","UpdateMgSiteTermStoreSetParentGroupSetTerm.g.cs","v1.0","Update-MgSiteTermStoreSetParentGroupSetTerm","PATCH","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}","matched","Update-MgSiteTermStoreSetParentGroupSetTerm" +"Sites","UpdateMgSiteTermStoreSetParentGroupSetTermChild.g.cs","v1.0","Update-MgSiteTermStoreSetParentGroupSetTermChild","PATCH","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/children/{param}","matched","Update-MgSiteTermStoreSetParentGroupSetTermChild" +"Sites","UpdateMgSiteTermStoreSetParentGroupSetTermChildRelation.g.cs","v1.0","Update-MgSiteTermStoreSetParentGroupSetTermChildRelation","PATCH","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/children/{param}/relations/{param}","matched","Update-MgSiteTermStoreSetParentGroupSetTermChildRelation" +"Sites","UpdateMgSiteTermStoreSetParentGroupSetTermRelation.g.cs","v1.0","Update-MgSiteTermStoreSetParentGroupSetTermRelation","PATCH","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/relations/{param}","matched","Update-MgSiteTermStoreSetParentGroupSetTermRelation" +"Sites","UpdateMgSiteTermStoreSetRelation.g.cs","v1.0","Update-MgSiteTermStoreSetRelation","PATCH","/sites/{param}/termStore/sets/{param}/relations/{param}","matched","Update-MgSiteTermStoreSetRelation" +"Sites","UpdateMgSiteTermStoreSetTerm.g.cs","v1.0","Update-MgSiteTermStoreSetTerm","PATCH","/sites/{param}/termStore/sets/{param}/terms/{param}","matched","Update-MgSiteTermStoreSetTerm" +"Sites","UpdateMgSiteTermStoreSetTermChild.g.cs","v1.0","Update-MgSiteTermStoreSetTermChild","PATCH","/sites/{param}/termStore/sets/{param}/terms/{param}/children/{param}","matched","Update-MgSiteTermStoreSetTermChild" +"Sites","UpdateMgSiteTermStoreSetTermChildRelation.g.cs","v1.0","Update-MgSiteTermStoreSetTermChildRelation","PATCH","/sites/{param}/termStore/sets/{param}/terms/{param}/children/{param}/relations/{param}","matched","Update-MgSiteTermStoreSetTermChildRelation" +"Sites","UpdateMgSiteTermStoreSetTermRelation.g.cs","v1.0","Update-MgSiteTermStoreSetTermRelation","PATCH","/sites/{param}/termStore/sets/{param}/terms/{param}/relations/{param}","matched","Update-MgSiteTermStoreSetTermRelation" +"Teams","GetMgAppCatalogTeamApp_Get.g.cs","v1.0","Get-MgAppCatalogTeamApp","GET","/appCatalogs/teamsApps/{param}","matched","Get-MgAppCatalogTeamApp" +"Teams","GetMgAppCatalogTeamApp_List.g.cs","v1.0","Get-MgAppCatalogTeamApp","GET","/appCatalogs/teamsApps","matched","Get-MgAppCatalogTeamApp" +"Teams","GetMgAppCatalogTeamApp.g.cs","v1.0","Get-MgAppCatalogTeamApp","","","dispatcher","" +"Teams","GetMgAppCatalogTeamAppCount.g.cs","v1.0","Get-MgAppCatalogTeamAppCount","GET","/appCatalogs/teamsApps/$count","matched","Get-MgAppCatalogTeamAppCount" +"Teams","GetMgAppCatalogTeamAppDefinition_Get.g.cs","v1.0","Get-MgAppCatalogTeamAppDefinition","GET","/appCatalogs/teamsApps/{param}/appDefinitions/{param}","matched","Get-MgAppCatalogTeamAppDefinition" +"Teams","GetMgAppCatalogTeamAppDefinition_List.g.cs","v1.0","Get-MgAppCatalogTeamAppDefinition","GET","/appCatalogs/teamsApps/{param}/appDefinitions","matched","Get-MgAppCatalogTeamAppDefinition" +"Teams","GetMgAppCatalogTeamAppDefinition.g.cs","v1.0","Get-MgAppCatalogTeamAppDefinition","","","dispatcher","" +"Teams","GetMgAppCatalogTeamAppDefinitionBot.g.cs","v1.0","Get-MgAppCatalogTeamAppDefinitionBot","GET","/appCatalogs/teamsApps/{param}/appDefinitions/{param}/bot","matched","Get-MgAppCatalogTeamAppDefinitionBot" +"Teams","GetMgAppCatalogTeamAppDefinitionCount.g.cs","v1.0","Get-MgAppCatalogTeamAppDefinitionCount","GET","/appCatalogs/teamsApps/{param}/appDefinitions/$count","matched","Get-MgAppCatalogTeamAppDefinitionCount" +"Teams","GetMgChat_Get.g.cs","v1.0","Get-MgChat","GET","/chats/{param}","matched","Get-MgChat" +"Teams","GetMgChat_List.g.cs","v1.0","Get-MgChat","GET","/chats","matched","Get-MgChat" +"Teams","GetMgChat.g.cs","v1.0","Get-MgChat","","","dispatcher","" +"Teams","GetMgChatCount.g.cs","v1.0","Get-MgChatCount","GET","/chats/$count","matched","Get-MgChatCount" +"Teams","GetMgChatGetAllMessages.g.cs","v1.0","Get-MgChatGetAllMessages","GET","/chats/getAllMessages","no-oracle","" +"Teams","GetMgChatGetAllRetainedMessages.g.cs","v1.0","Get-MgChatGetAllRetainedMessages","GET","/chats/getAllRetainedMessages","mismatch","Get-MgChatRetainedMessage" +"Teams","GetMgChatInstalledApp_Get.g.cs","v1.0","Get-MgChatInstalledApp","GET","/chats/{param}/installedApps/{param}","matched","Get-MgChatInstalledApp" +"Teams","GetMgChatInstalledApp_List.g.cs","v1.0","Get-MgChatInstalledApp","GET","/chats/{param}/installedApps","matched","Get-MgChatInstalledApp" +"Teams","GetMgChatInstalledApp.g.cs","v1.0","Get-MgChatInstalledApp","","","dispatcher","" +"Teams","GetMgChatInstalledAppCount.g.cs","v1.0","Get-MgChatInstalledAppCount","GET","/chats/{param}/installedApps/$count","matched","Get-MgChatInstalledAppCount" +"Teams","GetMgChatInstalledAppTeamApp.g.cs","v1.0","Get-MgChatInstalledAppTeamApp","GET","/chats/{param}/installedApps/{param}/teamsApp","matched","Get-MgChatInstalledAppTeamApp" +"Teams","GetMgChatInstalledAppTeamAppDefinition.g.cs","v1.0","Get-MgChatInstalledAppTeamAppDefinition","GET","/chats/{param}/installedApps/{param}/teamsAppDefinition","matched","Get-MgChatInstalledAppTeamAppDefinition" +"Teams","GetMgChatLastMessagePreview.g.cs","v1.0","Get-MgChatLastMessagePreview","GET","/chats/{param}/lastMessagePreview","matched","Get-MgChatLastMessagePreview" +"Teams","GetMgChatMember_Get.g.cs","v1.0","Get-MgChatMember","GET","/chats/{param}/members/{param}","matched","Get-MgChatMember" +"Teams","GetMgChatMember_List.g.cs","v1.0","Get-MgChatMember","GET","/chats/{param}/members","matched","Get-MgChatMember" +"Teams","GetMgChatMember.g.cs","v1.0","Get-MgChatMember","","","dispatcher","" +"Teams","GetMgChatMemberCount.g.cs","v1.0","Get-MgChatMemberCount","GET","/chats/{param}/members/$count","matched","Get-MgChatMemberCount" +"Teams","GetMgChatMessage_Get.g.cs","v1.0","Get-MgChatMessage","GET","/chats/{param}/messages/{param}","matched","Get-MgChatMessage" +"Teams","GetMgChatMessage_List.g.cs","v1.0","Get-MgChatMessage","GET","/chats/{param}/messages","matched","Get-MgChatMessage" +"Teams","GetMgChatMessage.g.cs","v1.0","Get-MgChatMessage","","","dispatcher","" +"Teams","GetMgChatMessageCount.g.cs","v1.0","Get-MgChatMessageCount","GET","/chats/{param}/messages/$count","matched","Get-MgChatMessageCount" +"Teams","GetMgChatMessageDelta.g.cs","v1.0","Get-MgChatMessageDelta","GET","/chats/{param}/messages/delta","matched","Get-MgChatMessageDelta" +"Teams","GetMgChatMessageHostedContent_Get.g.cs","v1.0","Get-MgChatMessageHostedContent","GET","/chats/{param}/messages/{param}/hostedContents/{param}","matched","Get-MgChatMessageHostedContent" +"Teams","GetMgChatMessageHostedContent_List.g.cs","v1.0","Get-MgChatMessageHostedContent","GET","/chats/{param}/messages/{param}/hostedContents","matched","Get-MgChatMessageHostedContent" +"Teams","GetMgChatMessageHostedContent.g.cs","v1.0","Get-MgChatMessageHostedContent","","","dispatcher","" +"Teams","GetMgChatMessageHostedContentContent.g.cs","v1.0","Get-MgChatMessageHostedContentContent","GET","/chats/{param}/messages/{param}/hostedContents/{param}/$value","no-oracle","" +"Teams","GetMgChatMessageHostedContentCount.g.cs","v1.0","Get-MgChatMessageHostedContentCount","GET","/chats/{param}/messages/{param}/hostedContents/$count","matched","Get-MgChatMessageHostedContentCount" +"Teams","GetMgChatMessageReply_Get.g.cs","v1.0","Get-MgChatMessageReply","GET","/chats/{param}/messages/{param}/replies/{param}","matched","Get-MgChatMessageReply" +"Teams","GetMgChatMessageReply_List.g.cs","v1.0","Get-MgChatMessageReply","GET","/chats/{param}/messages/{param}/replies","matched","Get-MgChatMessageReply" +"Teams","GetMgChatMessageReply.g.cs","v1.0","Get-MgChatMessageReply","","","dispatcher","" +"Teams","GetMgChatMessageReplyCount.g.cs","v1.0","Get-MgChatMessageReplyCount","GET","/chats/{param}/messages/{param}/replies/$count","matched","Get-MgChatMessageReplyCount" +"Teams","GetMgChatMessageReplyDelta.g.cs","v1.0","Get-MgChatMessageReplyDelta","GET","/chats/{param}/messages/{param}/replies/delta","matched","Get-MgChatMessageReplyDelta" +"Teams","GetMgChatMessageReplyHostedContent_Get.g.cs","v1.0","Get-MgChatMessageReplyHostedContent","GET","/chats/{param}/messages/{param}/replies/{param}/hostedContents/{param}","matched","Get-MgChatMessageReplyHostedContent" +"Teams","GetMgChatMessageReplyHostedContent_List.g.cs","v1.0","Get-MgChatMessageReplyHostedContent","GET","/chats/{param}/messages/{param}/replies/{param}/hostedContents","matched","Get-MgChatMessageReplyHostedContent" +"Teams","GetMgChatMessageReplyHostedContent.g.cs","v1.0","Get-MgChatMessageReplyHostedContent","","","dispatcher","" +"Teams","GetMgChatMessageReplyHostedContentContent.g.cs","v1.0","Get-MgChatMessageReplyHostedContentContent","GET","/chats/{param}/messages/{param}/replies/{param}/hostedContents/{param}/$value","no-oracle","" +"Teams","GetMgChatMessageReplyHostedContentCount.g.cs","v1.0","Get-MgChatMessageReplyHostedContentCount","GET","/chats/{param}/messages/{param}/replies/{param}/hostedContents/$count","matched","Get-MgChatMessageReplyHostedContentCount" +"Teams","GetMgChatPermissionGrant_Get.g.cs","v1.0","Get-MgChatPermissionGrant","GET","/chats/{param}/permissionGrants/{param}","matched","Get-MgChatPermissionGrant" +"Teams","GetMgChatPermissionGrant_List.g.cs","v1.0","Get-MgChatPermissionGrant","GET","/chats/{param}/permissionGrants","matched","Get-MgChatPermissionGrant" +"Teams","GetMgChatPermissionGrant.g.cs","v1.0","Get-MgChatPermissionGrant","","","dispatcher","" +"Teams","GetMgChatPermissionGrantCount.g.cs","v1.0","Get-MgChatPermissionGrantCount","GET","/chats/{param}/permissionGrants/$count","matched","Get-MgChatPermissionGrantCount" +"Teams","GetMgChatPinnedMessage_Get.g.cs","v1.0","Get-MgChatPinnedMessage","GET","/chats/{param}/pinnedMessages/{param}","matched","Get-MgChatPinnedMessage" +"Teams","GetMgChatPinnedMessage_List.g.cs","v1.0","Get-MgChatPinnedMessage","GET","/chats/{param}/pinnedMessages","matched","Get-MgChatPinnedMessage" +"Teams","GetMgChatPinnedMessage.g.cs","v1.0","Get-MgChatPinnedMessage","","","dispatcher","" +"Teams","GetMgChatPinnedMessageCount.g.cs","v1.0","Get-MgChatPinnedMessageCount","GET","/chats/{param}/pinnedMessages/$count","matched","Get-MgChatPinnedMessageCount" +"Teams","GetMgChatTab_Get.g.cs","v1.0","Get-MgChatTab","GET","/chats/{param}/tabs/{param}","matched","Get-MgChatTab" +"Teams","GetMgChatTab_List.g.cs","v1.0","Get-MgChatTab","GET","/chats/{param}/tabs","matched","Get-MgChatTab" +"Teams","GetMgChatTab.g.cs","v1.0","Get-MgChatTab","","","dispatcher","" +"Teams","GetMgChatTabCount.g.cs","v1.0","Get-MgChatTabCount","GET","/chats/{param}/tabs/$count","matched","Get-MgChatTabCount" +"Teams","GetMgChatTabTeamApp.g.cs","v1.0","Get-MgChatTabTeamApp","GET","/chats/{param}/tabs/{param}/teamsApp","matched","Get-MgChatTabTeamApp" +"Teams","GetMgChatTargetedMessage_Get.g.cs","v1.0","Get-MgChatTargetedMessage","GET","/chats/{param}/targetedMessages/{param}","matched","Get-MgChatTargetedMessage" +"Teams","GetMgChatTargetedMessage_List.g.cs","v1.0","Get-MgChatTargetedMessage","GET","/chats/{param}/targetedMessages","matched","Get-MgChatTargetedMessage" +"Teams","GetMgChatTargetedMessage.g.cs","v1.0","Get-MgChatTargetedMessage","","","dispatcher","" +"Teams","GetMgChatTargetedMessageCount.g.cs","v1.0","Get-MgChatTargetedMessageCount","GET","/chats/{param}/targetedMessages/$count","matched","Get-MgChatTargetedMessageCount" +"Teams","GetMgChatTargetedMessageHostedContent_Get.g.cs","v1.0","Get-MgChatTargetedMessageHostedContent","GET","/chats/{param}/targetedMessages/{param}/hostedContents/{param}","matched","Get-MgChatTargetedMessageHostedContent" +"Teams","GetMgChatTargetedMessageHostedContent_List.g.cs","v1.0","Get-MgChatTargetedMessageHostedContent","GET","/chats/{param}/targetedMessages/{param}/hostedContents","matched","Get-MgChatTargetedMessageHostedContent" +"Teams","GetMgChatTargetedMessageHostedContent.g.cs","v1.0","Get-MgChatTargetedMessageHostedContent","","","dispatcher","" +"Teams","GetMgChatTargetedMessageHostedContentContent.g.cs","v1.0","Get-MgChatTargetedMessageHostedContentContent","GET","/chats/{param}/targetedMessages/{param}/hostedContents/{param}/$value","no-oracle","" +"Teams","GetMgChatTargetedMessageHostedContentCount.g.cs","v1.0","Get-MgChatTargetedMessageHostedContentCount","GET","/chats/{param}/targetedMessages/{param}/hostedContents/$count","matched","Get-MgChatTargetedMessageHostedContentCount" +"Teams","GetMgChatTargetedMessageReply_Get.g.cs","v1.0","Get-MgChatTargetedMessageReply","GET","/chats/{param}/targetedMessages/{param}/replies/{param}","matched","Get-MgChatTargetedMessageReply" +"Teams","GetMgChatTargetedMessageReply_List.g.cs","v1.0","Get-MgChatTargetedMessageReply","GET","/chats/{param}/targetedMessages/{param}/replies","matched","Get-MgChatTargetedMessageReply" +"Teams","GetMgChatTargetedMessageReply.g.cs","v1.0","Get-MgChatTargetedMessageReply","","","dispatcher","" +"Teams","GetMgChatTargetedMessageReplyCount.g.cs","v1.0","Get-MgChatTargetedMessageReplyCount","GET","/chats/{param}/targetedMessages/{param}/replies/$count","matched","Get-MgChatTargetedMessageReplyCount" +"Teams","GetMgChatTargetedMessageReplyDelta.g.cs","v1.0","Get-MgChatTargetedMessageReplyDelta","GET","/chats/{param}/targetedMessages/{param}/replies/delta","matched","Get-MgChatTargetedMessageReplyDelta" +"Teams","GetMgChatTargetedMessageReplyHostedContent_Get.g.cs","v1.0","Get-MgChatTargetedMessageReplyHostedContent","GET","/chats/{param}/targetedMessages/{param}/replies/{param}/hostedContents/{param}","matched","Get-MgChatTargetedMessageReplyHostedContent" +"Teams","GetMgChatTargetedMessageReplyHostedContent_List.g.cs","v1.0","Get-MgChatTargetedMessageReplyHostedContent","GET","/chats/{param}/targetedMessages/{param}/replies/{param}/hostedContents","matched","Get-MgChatTargetedMessageReplyHostedContent" +"Teams","GetMgChatTargetedMessageReplyHostedContent.g.cs","v1.0","Get-MgChatTargetedMessageReplyHostedContent","","","dispatcher","" +"Teams","GetMgChatTargetedMessageReplyHostedContentContent.g.cs","v1.0","Get-MgChatTargetedMessageReplyHostedContentContent","GET","/chats/{param}/targetedMessages/{param}/replies/{param}/hostedContents/{param}/$value","no-oracle","" +"Teams","GetMgChatTargetedMessageReplyHostedContentCount.g.cs","v1.0","Get-MgChatTargetedMessageReplyHostedContentCount","GET","/chats/{param}/targetedMessages/{param}/replies/{param}/hostedContents/$count","matched","Get-MgChatTargetedMessageReplyHostedContentCount" +"Teams","GetMgGroupTeam.g.cs","v1.0","Get-MgGroupTeam","GET","/groups/{param}/team","matched","Get-MgGroupTeam" +"Teams","GetMgGroupTeamAllChannel_Get.g.cs","v1.0","Get-MgGroupTeamAllChannel","GET","/groups/{param}/team/allChannels/{param}","mismatch","Get-MgAllGroupTeamChannel" +"Teams","GetMgGroupTeamAllChannel_List.g.cs","v1.0","Get-MgGroupTeamAllChannel","GET","/groups/{param}/team/allChannels","mismatch","Get-MgAllGroupTeamChannel" +"Teams","GetMgGroupTeamAllChannel.g.cs","v1.0","Get-MgGroupTeamAllChannel","","","dispatcher","" +"Teams","GetMgGroupTeamAllChannelCount.g.cs","v1.0","Get-MgGroupTeamAllChannelCount","GET","/groups/{param}/team/allChannels/$count","mismatch","Get-MgAllGroupTeamChannelCount" +"Teams","GetMgGroupTeamChannel_Get.g.cs","v1.0","Get-MgGroupTeamChannel","GET","/groups/{param}/team/channels/{param}","matched","Get-MgGroupTeamChannel" +"Teams","GetMgGroupTeamChannel_List.g.cs","v1.0","Get-MgGroupTeamChannel","GET","/groups/{param}/team/channels","matched","Get-MgGroupTeamChannel" +"Teams","GetMgGroupTeamChannel.g.cs","v1.0","Get-MgGroupTeamChannel","","","dispatcher","" +"Teams","GetMgGroupTeamChannelAllMember_Get.g.cs","v1.0","Get-MgGroupTeamChannelAllMember","GET","/groups/{param}/team/channels/{param}/allMembers/{param}","mismatch","Get-MgGroupTeamChannelMember" +"Teams","GetMgGroupTeamChannelAllMember_List.g.cs","v1.0","Get-MgGroupTeamChannelAllMember","GET","/groups/{param}/team/channels/{param}/allMembers","mismatch","Get-MgGroupTeamChannelMember" +"Teams","GetMgGroupTeamChannelAllMember.g.cs","v1.0","Get-MgGroupTeamChannelAllMember","","","dispatcher","" +"Teams","GetMgGroupTeamChannelAllMemberCount.g.cs","v1.0","Get-MgGroupTeamChannelAllMemberCount","GET","/groups/{param}/team/channels/{param}/allMembers/$count","matched","Get-MgGroupTeamChannelAllMemberCount" +"Teams","GetMgGroupTeamChannelCount.g.cs","v1.0","Get-MgGroupTeamChannelCount","GET","/groups/{param}/team/channels/$count","matched","Get-MgGroupTeamChannelCount" +"Teams","GetMgGroupTeamChannelEnabledApp_Get.g.cs","v1.0","Get-MgGroupTeamChannelEnabledApp","GET","/groups/{param}/team/channels/{param}/enabledApps/{param}","matched","Get-MgGroupTeamChannelEnabledApp" +"Teams","GetMgGroupTeamChannelEnabledApp_List.g.cs","v1.0","Get-MgGroupTeamChannelEnabledApp","GET","/groups/{param}/team/channels/{param}/enabledApps","matched","Get-MgGroupTeamChannelEnabledApp" +"Teams","GetMgGroupTeamChannelEnabledApp.g.cs","v1.0","Get-MgGroupTeamChannelEnabledApp","","","dispatcher","" +"Teams","GetMgGroupTeamChannelEnabledAppCount.g.cs","v1.0","Get-MgGroupTeamChannelEnabledAppCount","GET","/groups/{param}/team/channels/{param}/enabledApps/$count","matched","Get-MgGroupTeamChannelEnabledAppCount" +"Teams","GetMgGroupTeamChannelFileFolder.g.cs","v1.0","Get-MgGroupTeamChannelFileFolder","GET","/groups/{param}/team/channels/{param}/filesFolder","matched","Get-MgGroupTeamChannelFileFolder" +"Teams","GetMgGroupTeamChannelGetAllMessages.g.cs","v1.0","Get-MgGroupTeamChannelGetAllMessages","GET","/groups/{param}/team/channels/getAllMessages","no-oracle","" +"Teams","GetMgGroupTeamChannelGetAllRetainedMessages.g.cs","v1.0","Get-MgGroupTeamChannelGetAllRetainedMessages","GET","/groups/{param}/team/channels/getAllRetainedMessages","mismatch","Get-MgGroupTeamChannelRetainedMessage" +"Teams","GetMgGroupTeamChannelMember_Get.g.cs","v1.0","Get-MgGroupTeamChannelMember","GET","/groups/{param}/team/channels/{param}/members/{param}","no-oracle","" +"Teams","GetMgGroupTeamChannelMember_List.g.cs","v1.0","Get-MgGroupTeamChannelMember","GET","/groups/{param}/team/channels/{param}/members","no-oracle","" +"Teams","GetMgGroupTeamChannelMember.g.cs","v1.0","Get-MgGroupTeamChannelMember","","","dispatcher","" +"Teams","GetMgGroupTeamChannelMemberCount.g.cs","v1.0","Get-MgGroupTeamChannelMemberCount","GET","/groups/{param}/team/channels/{param}/members/$count","matched","Get-MgGroupTeamChannelMemberCount" +"Teams","GetMgGroupTeamChannelMessage_Get.g.cs","v1.0","Get-MgGroupTeamChannelMessage","GET","/groups/{param}/team/channels/{param}/messages/{param}","matched","Get-MgGroupTeamChannelMessage" +"Teams","GetMgGroupTeamChannelMessage_List.g.cs","v1.0","Get-MgGroupTeamChannelMessage","GET","/groups/{param}/team/channels/{param}/messages","matched","Get-MgGroupTeamChannelMessage" +"Teams","GetMgGroupTeamChannelMessage.g.cs","v1.0","Get-MgGroupTeamChannelMessage","","","dispatcher","" +"Teams","GetMgGroupTeamChannelMessageCount.g.cs","v1.0","Get-MgGroupTeamChannelMessageCount","GET","/groups/{param}/team/channels/{param}/messages/$count","matched","Get-MgGroupTeamChannelMessageCount" +"Teams","GetMgGroupTeamChannelMessageDelta.g.cs","v1.0","Get-MgGroupTeamChannelMessageDelta","GET","/groups/{param}/team/channels/{param}/messages/delta","matched","Get-MgGroupTeamChannelMessageDelta" +"Teams","GetMgGroupTeamChannelMessageHostedContent_Get.g.cs","v1.0","Get-MgGroupTeamChannelMessageHostedContent","GET","/groups/{param}/team/channels/{param}/messages/{param}/hostedContents/{param}","matched","Get-MgGroupTeamChannelMessageHostedContent" +"Teams","GetMgGroupTeamChannelMessageHostedContent_List.g.cs","v1.0","Get-MgGroupTeamChannelMessageHostedContent","GET","/groups/{param}/team/channels/{param}/messages/{param}/hostedContents","matched","Get-MgGroupTeamChannelMessageHostedContent" +"Teams","GetMgGroupTeamChannelMessageHostedContent.g.cs","v1.0","Get-MgGroupTeamChannelMessageHostedContent","","","dispatcher","" +"Teams","GetMgGroupTeamChannelMessageHostedContentContent.g.cs","v1.0","Get-MgGroupTeamChannelMessageHostedContentContent","GET","/groups/{param}/team/channels/{param}/messages/{param}/hostedContents/{param}/$value","no-oracle","" +"Teams","GetMgGroupTeamChannelMessageHostedContentCount.g.cs","v1.0","Get-MgGroupTeamChannelMessageHostedContentCount","GET","/groups/{param}/team/channels/{param}/messages/{param}/hostedContents/$count","matched","Get-MgGroupTeamChannelMessageHostedContentCount" +"Teams","GetMgGroupTeamChannelMessageReply_Get.g.cs","v1.0","Get-MgGroupTeamChannelMessageReply","GET","/groups/{param}/team/channels/{param}/messages/{param}/replies/{param}","matched","Get-MgGroupTeamChannelMessageReply" +"Teams","GetMgGroupTeamChannelMessageReply_List.g.cs","v1.0","Get-MgGroupTeamChannelMessageReply","GET","/groups/{param}/team/channels/{param}/messages/{param}/replies","matched","Get-MgGroupTeamChannelMessageReply" +"Teams","GetMgGroupTeamChannelMessageReply.g.cs","v1.0","Get-MgGroupTeamChannelMessageReply","","","dispatcher","" +"Teams","GetMgGroupTeamChannelMessageReplyCount.g.cs","v1.0","Get-MgGroupTeamChannelMessageReplyCount","GET","/groups/{param}/team/channels/{param}/messages/{param}/replies/$count","matched","Get-MgGroupTeamChannelMessageReplyCount" +"Teams","GetMgGroupTeamChannelMessageReplyDelta.g.cs","v1.0","Get-MgGroupTeamChannelMessageReplyDelta","GET","/groups/{param}/team/channels/{param}/messages/{param}/replies/delta","matched","Get-MgGroupTeamChannelMessageReplyDelta" +"Teams","GetMgGroupTeamChannelMessageReplyHostedContent_Get.g.cs","v1.0","Get-MgGroupTeamChannelMessageReplyHostedContent","GET","/groups/{param}/team/channels/{param}/messages/{param}/replies/{param}/hostedContents/{param}","matched","Get-MgGroupTeamChannelMessageReplyHostedContent" +"Teams","GetMgGroupTeamChannelMessageReplyHostedContent_List.g.cs","v1.0","Get-MgGroupTeamChannelMessageReplyHostedContent","GET","/groups/{param}/team/channels/{param}/messages/{param}/replies/{param}/hostedContents","matched","Get-MgGroupTeamChannelMessageReplyHostedContent" +"Teams","GetMgGroupTeamChannelMessageReplyHostedContent.g.cs","v1.0","Get-MgGroupTeamChannelMessageReplyHostedContent","","","dispatcher","" +"Teams","GetMgGroupTeamChannelMessageReplyHostedContentContent.g.cs","v1.0","Get-MgGroupTeamChannelMessageReplyHostedContentContent","GET","/groups/{param}/team/channels/{param}/messages/{param}/replies/{param}/hostedContents/{param}/$value","no-oracle","" +"Teams","GetMgGroupTeamChannelMessageReplyHostedContentCount.g.cs","v1.0","Get-MgGroupTeamChannelMessageReplyHostedContentCount","GET","/groups/{param}/team/channels/{param}/messages/{param}/replies/{param}/hostedContents/$count","matched","Get-MgGroupTeamChannelMessageReplyHostedContentCount" +"Teams","GetMgGroupTeamChannelSharedWithTeam_Get.g.cs","v1.0","Get-MgGroupTeamChannelSharedWithTeam","GET","/groups/{param}/team/channels/{param}/sharedWithTeams/{param}","matched","Get-MgGroupTeamChannelSharedWithTeam" +"Teams","GetMgGroupTeamChannelSharedWithTeam_List.g.cs","v1.0","Get-MgGroupTeamChannelSharedWithTeam","GET","/groups/{param}/team/channels/{param}/sharedWithTeams","matched","Get-MgGroupTeamChannelSharedWithTeam" +"Teams","GetMgGroupTeamChannelSharedWithTeam.g.cs","v1.0","Get-MgGroupTeamChannelSharedWithTeam","","","dispatcher","" +"Teams","GetMgGroupTeamChannelSharedWithTeamAllowedMember_Get.g.cs","v1.0","Get-MgGroupTeamChannelSharedWithTeamAllowedMember","GET","/groups/{param}/team/channels/{param}/sharedWithTeams/{param}/allowedMembers/{param}","matched","Get-MgGroupTeamChannelSharedWithTeamAllowedMember" +"Teams","GetMgGroupTeamChannelSharedWithTeamAllowedMember_List.g.cs","v1.0","Get-MgGroupTeamChannelSharedWithTeamAllowedMember","GET","/groups/{param}/team/channels/{param}/sharedWithTeams/{param}/allowedMembers","matched","Get-MgGroupTeamChannelSharedWithTeamAllowedMember" +"Teams","GetMgGroupTeamChannelSharedWithTeamAllowedMember.g.cs","v1.0","Get-MgGroupTeamChannelSharedWithTeamAllowedMember","","","dispatcher","" +"Teams","GetMgGroupTeamChannelSharedWithTeamAllowedMemberCount.g.cs","v1.0","Get-MgGroupTeamChannelSharedWithTeamAllowedMemberCount","GET","/groups/{param}/team/channels/{param}/sharedWithTeams/{param}/allowedMembers/$count","matched","Get-MgGroupTeamChannelSharedWithTeamAllowedMemberCount" +"Teams","GetMgGroupTeamChannelSharedWithTeamCount.g.cs","v1.0","Get-MgGroupTeamChannelSharedWithTeamCount","GET","/groups/{param}/team/channels/{param}/sharedWithTeams/$count","matched","Get-MgGroupTeamChannelSharedWithTeamCount" +"Teams","GetMgGroupTeamChannelTab_Get.g.cs","v1.0","Get-MgGroupTeamChannelTab","GET","/groups/{param}/team/channels/{param}/tabs/{param}","matched","Get-MgGroupTeamChannelTab" +"Teams","GetMgGroupTeamChannelTab_List.g.cs","v1.0","Get-MgGroupTeamChannelTab","GET","/groups/{param}/team/channels/{param}/tabs","matched","Get-MgGroupTeamChannelTab" +"Teams","GetMgGroupTeamChannelTab.g.cs","v1.0","Get-MgGroupTeamChannelTab","","","dispatcher","" +"Teams","GetMgGroupTeamChannelTabCount.g.cs","v1.0","Get-MgGroupTeamChannelTabCount","GET","/groups/{param}/team/channels/{param}/tabs/$count","matched","Get-MgGroupTeamChannelTabCount" +"Teams","GetMgGroupTeamChannelTabTeamApp.g.cs","v1.0","Get-MgGroupTeamChannelTabTeamApp","GET","/groups/{param}/team/channels/{param}/tabs/{param}/teamsApp","matched","Get-MgGroupTeamChannelTabTeamApp" +"Teams","GetMgGroupTeamGroup.g.cs","v1.0","Get-MgGroupTeamGroup","GET","/groups/{param}/team/group","matched","Get-MgGroupTeamGroup" +"Teams","GetMgGroupTeamGroupServiceProvisioningError.g.cs","v1.0","Get-MgGroupTeamGroupServiceProvisioningError","GET","/groups/{param}/team/group/serviceProvisioningErrors","matched","Get-MgGroupTeamGroupServiceProvisioningError" +"Teams","GetMgGroupTeamGroupServiceProvisioningErrorCount.g.cs","v1.0","Get-MgGroupTeamGroupServiceProvisioningErrorCount","GET","/groups/{param}/team/group/serviceProvisioningErrors/$count","matched","Get-MgGroupTeamGroupServiceProvisioningErrorCount" +"Teams","GetMgGroupTeamIncomingChannel_Get.g.cs","v1.0","Get-MgGroupTeamIncomingChannel","GET","/groups/{param}/team/incomingChannels/{param}","matched","Get-MgGroupTeamIncomingChannel" +"Teams","GetMgGroupTeamIncomingChannel_List.g.cs","v1.0","Get-MgGroupTeamIncomingChannel","GET","/groups/{param}/team/incomingChannels","matched","Get-MgGroupTeamIncomingChannel" +"Teams","GetMgGroupTeamIncomingChannel.g.cs","v1.0","Get-MgGroupTeamIncomingChannel","","","dispatcher","" +"Teams","GetMgGroupTeamIncomingChannelCount.g.cs","v1.0","Get-MgGroupTeamIncomingChannelCount","GET","/groups/{param}/team/incomingChannels/$count","matched","Get-MgGroupTeamIncomingChannelCount" +"Teams","GetMgGroupTeamInstalledApp_Get.g.cs","v1.0","Get-MgGroupTeamInstalledApp","GET","/groups/{param}/team/installedApps/{param}","matched","Get-MgGroupTeamInstalledApp" +"Teams","GetMgGroupTeamInstalledApp_List.g.cs","v1.0","Get-MgGroupTeamInstalledApp","GET","/groups/{param}/team/installedApps","matched","Get-MgGroupTeamInstalledApp" +"Teams","GetMgGroupTeamInstalledApp.g.cs","v1.0","Get-MgGroupTeamInstalledApp","","","dispatcher","" +"Teams","GetMgGroupTeamInstalledAppCount.g.cs","v1.0","Get-MgGroupTeamInstalledAppCount","GET","/groups/{param}/team/installedApps/$count","matched","Get-MgGroupTeamInstalledAppCount" +"Teams","GetMgGroupTeamInstalledAppTeamApp.g.cs","v1.0","Get-MgGroupTeamInstalledAppTeamApp","GET","/groups/{param}/team/installedApps/{param}/teamsApp","matched","Get-MgGroupTeamInstalledAppTeamApp" +"Teams","GetMgGroupTeamInstalledAppTeamAppDefinition.g.cs","v1.0","Get-MgGroupTeamInstalledAppTeamAppDefinition","GET","/groups/{param}/team/installedApps/{param}/teamsAppDefinition","matched","Get-MgGroupTeamInstalledAppTeamAppDefinition" +"Teams","GetMgGroupTeamMember_Get.g.cs","v1.0","Get-MgGroupTeamMember","GET","/groups/{param}/team/members/{param}","matched","Get-MgGroupTeamMember" +"Teams","GetMgGroupTeamMember_List.g.cs","v1.0","Get-MgGroupTeamMember","GET","/groups/{param}/team/members","matched","Get-MgGroupTeamMember" +"Teams","GetMgGroupTeamMember.g.cs","v1.0","Get-MgGroupTeamMember","","","dispatcher","" +"Teams","GetMgGroupTeamMemberCount.g.cs","v1.0","Get-MgGroupTeamMemberCount","GET","/groups/{param}/team/members/$count","matched","Get-MgGroupTeamMemberCount" +"Teams","GetMgGroupTeamOperation_Get.g.cs","v1.0","Get-MgGroupTeamOperation","GET","/groups/{param}/team/operations/{param}","matched","Get-MgGroupTeamOperation" +"Teams","GetMgGroupTeamOperation_List.g.cs","v1.0","Get-MgGroupTeamOperation","GET","/groups/{param}/team/operations","matched","Get-MgGroupTeamOperation" +"Teams","GetMgGroupTeamOperation.g.cs","v1.0","Get-MgGroupTeamOperation","","","dispatcher","" +"Teams","GetMgGroupTeamOperationCount.g.cs","v1.0","Get-MgGroupTeamOperationCount","GET","/groups/{param}/team/operations/$count","matched","Get-MgGroupTeamOperationCount" +"Teams","GetMgGroupTeamPermissionGrant_Get.g.cs","v1.0","Get-MgGroupTeamPermissionGrant","GET","/groups/{param}/team/permissionGrants/{param}","matched","Get-MgGroupTeamPermissionGrant" +"Teams","GetMgGroupTeamPermissionGrant_List.g.cs","v1.0","Get-MgGroupTeamPermissionGrant","GET","/groups/{param}/team/permissionGrants","matched","Get-MgGroupTeamPermissionGrant" +"Teams","GetMgGroupTeamPermissionGrant.g.cs","v1.0","Get-MgGroupTeamPermissionGrant","","","dispatcher","" +"Teams","GetMgGroupTeamPermissionGrantCount.g.cs","v1.0","Get-MgGroupTeamPermissionGrantCount","GET","/groups/{param}/team/permissionGrants/$count","matched","Get-MgGroupTeamPermissionGrantCount" +"Teams","GetMgGroupTeamPhoto.g.cs","v1.0","Get-MgGroupTeamPhoto","GET","/groups/{param}/team/photo","matched","Get-MgGroupTeamPhoto" +"Teams","GetMgGroupTeamPhotoContent.g.cs","v1.0","Get-MgGroupTeamPhotoContent","GET","/groups/{param}/team/photo/$value","matched","Get-MgGroupTeamPhotoContent" +"Teams","GetMgGroupTeamPrimaryChannel.g.cs","v1.0","Get-MgGroupTeamPrimaryChannel","GET","/groups/{param}/team/primaryChannel","matched","Get-MgGroupTeamPrimaryChannel" +"Teams","GetMgGroupTeamPrimaryChannelAllMember_Get.g.cs","v1.0","Get-MgGroupTeamPrimaryChannelAllMember","GET","/groups/{param}/team/primaryChannel/allMembers/{param}","mismatch","Get-MgGroupTeamPrimaryChannelMember" +"Teams","GetMgGroupTeamPrimaryChannelAllMember_List.g.cs","v1.0","Get-MgGroupTeamPrimaryChannelAllMember","GET","/groups/{param}/team/primaryChannel/allMembers","mismatch","Get-MgGroupTeamPrimaryChannelMember" +"Teams","GetMgGroupTeamPrimaryChannelAllMember.g.cs","v1.0","Get-MgGroupTeamPrimaryChannelAllMember","","","dispatcher","" +"Teams","GetMgGroupTeamPrimaryChannelAllMemberCount.g.cs","v1.0","Get-MgGroupTeamPrimaryChannelAllMemberCount","GET","/groups/{param}/team/primaryChannel/allMembers/$count","matched","Get-MgGroupTeamPrimaryChannelAllMemberCount" +"Teams","GetMgGroupTeamPrimaryChannelEnabledApp_Get.g.cs","v1.0","Get-MgGroupTeamPrimaryChannelEnabledApp","GET","/groups/{param}/team/primaryChannel/enabledApps/{param}","matched","Get-MgGroupTeamPrimaryChannelEnabledApp" +"Teams","GetMgGroupTeamPrimaryChannelEnabledApp_List.g.cs","v1.0","Get-MgGroupTeamPrimaryChannelEnabledApp","GET","/groups/{param}/team/primaryChannel/enabledApps","matched","Get-MgGroupTeamPrimaryChannelEnabledApp" +"Teams","GetMgGroupTeamPrimaryChannelEnabledApp.g.cs","v1.0","Get-MgGroupTeamPrimaryChannelEnabledApp","","","dispatcher","" +"Teams","GetMgGroupTeamPrimaryChannelEnabledAppCount.g.cs","v1.0","Get-MgGroupTeamPrimaryChannelEnabledAppCount","GET","/groups/{param}/team/primaryChannel/enabledApps/$count","matched","Get-MgGroupTeamPrimaryChannelEnabledAppCount" +"Teams","GetMgGroupTeamPrimaryChannelFileFolder.g.cs","v1.0","Get-MgGroupTeamPrimaryChannelFileFolder","GET","/groups/{param}/team/primaryChannel/filesFolder","matched","Get-MgGroupTeamPrimaryChannelFileFolder" +"Teams","GetMgGroupTeamPrimaryChannelMember_Get.g.cs","v1.0","Get-MgGroupTeamPrimaryChannelMember","GET","/groups/{param}/team/primaryChannel/members/{param}","no-oracle","" +"Teams","GetMgGroupTeamPrimaryChannelMember_List.g.cs","v1.0","Get-MgGroupTeamPrimaryChannelMember","GET","/groups/{param}/team/primaryChannel/members","no-oracle","" +"Teams","GetMgGroupTeamPrimaryChannelMember.g.cs","v1.0","Get-MgGroupTeamPrimaryChannelMember","","","dispatcher","" +"Teams","GetMgGroupTeamPrimaryChannelMemberCount.g.cs","v1.0","Get-MgGroupTeamPrimaryChannelMemberCount","GET","/groups/{param}/team/primaryChannel/members/$count","matched","Get-MgGroupTeamPrimaryChannelMemberCount" +"Teams","GetMgGroupTeamPrimaryChannelMessage_Get.g.cs","v1.0","Get-MgGroupTeamPrimaryChannelMessage","GET","/groups/{param}/team/primaryChannel/messages/{param}","matched","Get-MgGroupTeamPrimaryChannelMessage" +"Teams","GetMgGroupTeamPrimaryChannelMessage_List.g.cs","v1.0","Get-MgGroupTeamPrimaryChannelMessage","GET","/groups/{param}/team/primaryChannel/messages","matched","Get-MgGroupTeamPrimaryChannelMessage" +"Teams","GetMgGroupTeamPrimaryChannelMessage.g.cs","v1.0","Get-MgGroupTeamPrimaryChannelMessage","","","dispatcher","" +"Teams","GetMgGroupTeamPrimaryChannelMessageCount.g.cs","v1.0","Get-MgGroupTeamPrimaryChannelMessageCount","GET","/groups/{param}/team/primaryChannel/messages/$count","matched","Get-MgGroupTeamPrimaryChannelMessageCount" +"Teams","GetMgGroupTeamPrimaryChannelMessageDelta.g.cs","v1.0","Get-MgGroupTeamPrimaryChannelMessageDelta","GET","/groups/{param}/team/primaryChannel/messages/delta","matched","Get-MgGroupTeamPrimaryChannelMessageDelta" +"Teams","GetMgGroupTeamPrimaryChannelMessageHostedContent_Get.g.cs","v1.0","Get-MgGroupTeamPrimaryChannelMessageHostedContent","GET","/groups/{param}/team/primaryChannel/messages/{param}/hostedContents/{param}","matched","Get-MgGroupTeamPrimaryChannelMessageHostedContent" +"Teams","GetMgGroupTeamPrimaryChannelMessageHostedContent_List.g.cs","v1.0","Get-MgGroupTeamPrimaryChannelMessageHostedContent","GET","/groups/{param}/team/primaryChannel/messages/{param}/hostedContents","matched","Get-MgGroupTeamPrimaryChannelMessageHostedContent" +"Teams","GetMgGroupTeamPrimaryChannelMessageHostedContent.g.cs","v1.0","Get-MgGroupTeamPrimaryChannelMessageHostedContent","","","dispatcher","" +"Teams","GetMgGroupTeamPrimaryChannelMessageHostedContentContent.g.cs","v1.0","Get-MgGroupTeamPrimaryChannelMessageHostedContentContent","GET","/groups/{param}/team/primaryChannel/messages/{param}/hostedContents/{param}/$value","no-oracle","" +"Teams","GetMgGroupTeamPrimaryChannelMessageHostedContentCount.g.cs","v1.0","Get-MgGroupTeamPrimaryChannelMessageHostedContentCount","GET","/groups/{param}/team/primaryChannel/messages/{param}/hostedContents/$count","matched","Get-MgGroupTeamPrimaryChannelMessageHostedContentCount" +"Teams","GetMgGroupTeamPrimaryChannelMessageReply_Get.g.cs","v1.0","Get-MgGroupTeamPrimaryChannelMessageReply","GET","/groups/{param}/team/primaryChannel/messages/{param}/replies/{param}","matched","Get-MgGroupTeamPrimaryChannelMessageReply" +"Teams","GetMgGroupTeamPrimaryChannelMessageReply_List.g.cs","v1.0","Get-MgGroupTeamPrimaryChannelMessageReply","GET","/groups/{param}/team/primaryChannel/messages/{param}/replies","matched","Get-MgGroupTeamPrimaryChannelMessageReply" +"Teams","GetMgGroupTeamPrimaryChannelMessageReply.g.cs","v1.0","Get-MgGroupTeamPrimaryChannelMessageReply","","","dispatcher","" +"Teams","GetMgGroupTeamPrimaryChannelMessageReplyCount.g.cs","v1.0","Get-MgGroupTeamPrimaryChannelMessageReplyCount","GET","/groups/{param}/team/primaryChannel/messages/{param}/replies/$count","matched","Get-MgGroupTeamPrimaryChannelMessageReplyCount" +"Teams","GetMgGroupTeamPrimaryChannelMessageReplyDelta.g.cs","v1.0","Get-MgGroupTeamPrimaryChannelMessageReplyDelta","GET","/groups/{param}/team/primaryChannel/messages/{param}/replies/delta","matched","Get-MgGroupTeamPrimaryChannelMessageReplyDelta" +"Teams","GetMgGroupTeamPrimaryChannelMessageReplyHostedContent_Get.g.cs","v1.0","Get-MgGroupTeamPrimaryChannelMessageReplyHostedContent","GET","/groups/{param}/team/primaryChannel/messages/{param}/replies/{param}/hostedContents/{param}","matched","Get-MgGroupTeamPrimaryChannelMessageReplyHostedContent" +"Teams","GetMgGroupTeamPrimaryChannelMessageReplyHostedContent_List.g.cs","v1.0","Get-MgGroupTeamPrimaryChannelMessageReplyHostedContent","GET","/groups/{param}/team/primaryChannel/messages/{param}/replies/{param}/hostedContents","matched","Get-MgGroupTeamPrimaryChannelMessageReplyHostedContent" +"Teams","GetMgGroupTeamPrimaryChannelMessageReplyHostedContent.g.cs","v1.0","Get-MgGroupTeamPrimaryChannelMessageReplyHostedContent","","","dispatcher","" +"Teams","GetMgGroupTeamPrimaryChannelMessageReplyHostedContentContent.g.cs","v1.0","Get-MgGroupTeamPrimaryChannelMessageReplyHostedContentContent","GET","/groups/{param}/team/primaryChannel/messages/{param}/replies/{param}/hostedContents/{param}/$value","no-oracle","" +"Teams","GetMgGroupTeamPrimaryChannelMessageReplyHostedContentCount.g.cs","v1.0","Get-MgGroupTeamPrimaryChannelMessageReplyHostedContentCount","GET","/groups/{param}/team/primaryChannel/messages/{param}/replies/{param}/hostedContents/$count","matched","Get-MgGroupTeamPrimaryChannelMessageReplyHostedContentCount" +"Teams","GetMgGroupTeamPrimaryChannelSharedWithTeam_Get.g.cs","v1.0","Get-MgGroupTeamPrimaryChannelSharedWithTeam","GET","/groups/{param}/team/primaryChannel/sharedWithTeams/{param}","matched","Get-MgGroupTeamPrimaryChannelSharedWithTeam" +"Teams","GetMgGroupTeamPrimaryChannelSharedWithTeam_List.g.cs","v1.0","Get-MgGroupTeamPrimaryChannelSharedWithTeam","GET","/groups/{param}/team/primaryChannel/sharedWithTeams","matched","Get-MgGroupTeamPrimaryChannelSharedWithTeam" +"Teams","GetMgGroupTeamPrimaryChannelSharedWithTeam.g.cs","v1.0","Get-MgGroupTeamPrimaryChannelSharedWithTeam","","","dispatcher","" +"Teams","GetMgGroupTeamPrimaryChannelSharedWithTeamAllowedMember_Get.g.cs","v1.0","Get-MgGroupTeamPrimaryChannelSharedWithTeamAllowedMember","GET","/groups/{param}/team/primaryChannel/sharedWithTeams/{param}/allowedMembers/{param}","matched","Get-MgGroupTeamPrimaryChannelSharedWithTeamAllowedMember" +"Teams","GetMgGroupTeamPrimaryChannelSharedWithTeamAllowedMember_List.g.cs","v1.0","Get-MgGroupTeamPrimaryChannelSharedWithTeamAllowedMember","GET","/groups/{param}/team/primaryChannel/sharedWithTeams/{param}/allowedMembers","matched","Get-MgGroupTeamPrimaryChannelSharedWithTeamAllowedMember" +"Teams","GetMgGroupTeamPrimaryChannelSharedWithTeamAllowedMember.g.cs","v1.0","Get-MgGroupTeamPrimaryChannelSharedWithTeamAllowedMember","","","dispatcher","" +"Teams","GetMgGroupTeamPrimaryChannelSharedWithTeamAllowedMemberCount.g.cs","v1.0","Get-MgGroupTeamPrimaryChannelSharedWithTeamAllowedMemberCount","GET","/groups/{param}/team/primaryChannel/sharedWithTeams/{param}/allowedMembers/$count","matched","Get-MgGroupTeamPrimaryChannelSharedWithTeamAllowedMemberCount" +"Teams","GetMgGroupTeamPrimaryChannelSharedWithTeamCount.g.cs","v1.0","Get-MgGroupTeamPrimaryChannelSharedWithTeamCount","GET","/groups/{param}/team/primaryChannel/sharedWithTeams/$count","matched","Get-MgGroupTeamPrimaryChannelSharedWithTeamCount" +"Teams","GetMgGroupTeamPrimaryChannelTab_Get.g.cs","v1.0","Get-MgGroupTeamPrimaryChannelTab","GET","/groups/{param}/team/primaryChannel/tabs/{param}","matched","Get-MgGroupTeamPrimaryChannelTab" +"Teams","GetMgGroupTeamPrimaryChannelTab_List.g.cs","v1.0","Get-MgGroupTeamPrimaryChannelTab","GET","/groups/{param}/team/primaryChannel/tabs","matched","Get-MgGroupTeamPrimaryChannelTab" +"Teams","GetMgGroupTeamPrimaryChannelTab.g.cs","v1.0","Get-MgGroupTeamPrimaryChannelTab","","","dispatcher","" +"Teams","GetMgGroupTeamPrimaryChannelTabCount.g.cs","v1.0","Get-MgGroupTeamPrimaryChannelTabCount","GET","/groups/{param}/team/primaryChannel/tabs/$count","matched","Get-MgGroupTeamPrimaryChannelTabCount" +"Teams","GetMgGroupTeamPrimaryChannelTabTeamApp.g.cs","v1.0","Get-MgGroupTeamPrimaryChannelTabTeamApp","GET","/groups/{param}/team/primaryChannel/tabs/{param}/teamsApp","matched","Get-MgGroupTeamPrimaryChannelTabTeamApp" +"Teams","GetMgGroupTeamSchedule.g.cs","v1.0","Get-MgGroupTeamSchedule","GET","/groups/{param}/team/schedule","matched","Get-MgGroupTeamSchedule" +"Teams","GetMgGroupTeamScheduleDayNote_Get.g.cs","v1.0","Get-MgGroupTeamScheduleDayNote","GET","/groups/{param}/team/schedule/dayNotes/{param}","matched","Get-MgGroupTeamScheduleDayNote" +"Teams","GetMgGroupTeamScheduleDayNote_List.g.cs","v1.0","Get-MgGroupTeamScheduleDayNote","GET","/groups/{param}/team/schedule/dayNotes","matched","Get-MgGroupTeamScheduleDayNote" +"Teams","GetMgGroupTeamScheduleDayNote.g.cs","v1.0","Get-MgGroupTeamScheduleDayNote","","","dispatcher","" +"Teams","GetMgGroupTeamScheduleDayNoteCount.g.cs","v1.0","Get-MgGroupTeamScheduleDayNoteCount","GET","/groups/{param}/team/schedule/dayNotes/$count","matched","Get-MgGroupTeamScheduleDayNoteCount" +"Teams","GetMgGroupTeamScheduleOfferShiftRequest_Get.g.cs","v1.0","Get-MgGroupTeamScheduleOfferShiftRequest","GET","/groups/{param}/team/schedule/offerShiftRequests/{param}","matched","Get-MgGroupTeamScheduleOfferShiftRequest" +"Teams","GetMgGroupTeamScheduleOfferShiftRequest_List.g.cs","v1.0","Get-MgGroupTeamScheduleOfferShiftRequest","GET","/groups/{param}/team/schedule/offerShiftRequests","matched","Get-MgGroupTeamScheduleOfferShiftRequest" +"Teams","GetMgGroupTeamScheduleOfferShiftRequest.g.cs","v1.0","Get-MgGroupTeamScheduleOfferShiftRequest","","","dispatcher","" +"Teams","GetMgGroupTeamScheduleOfferShiftRequestCount.g.cs","v1.0","Get-MgGroupTeamScheduleOfferShiftRequestCount","GET","/groups/{param}/team/schedule/offerShiftRequests/$count","matched","Get-MgGroupTeamScheduleOfferShiftRequestCount" +"Teams","GetMgGroupTeamScheduleOpenShift_Get.g.cs","v1.0","Get-MgGroupTeamScheduleOpenShift","GET","/groups/{param}/team/schedule/openShifts/{param}","matched","Get-MgGroupTeamScheduleOpenShift" +"Teams","GetMgGroupTeamScheduleOpenShift_List.g.cs","v1.0","Get-MgGroupTeamScheduleOpenShift","GET","/groups/{param}/team/schedule/openShifts","matched","Get-MgGroupTeamScheduleOpenShift" +"Teams","GetMgGroupTeamScheduleOpenShift.g.cs","v1.0","Get-MgGroupTeamScheduleOpenShift","","","dispatcher","" +"Teams","GetMgGroupTeamScheduleOpenShiftChangeRequest_Get.g.cs","v1.0","Get-MgGroupTeamScheduleOpenShiftChangeRequest","GET","/groups/{param}/team/schedule/openShiftChangeRequests/{param}","matched","Get-MgGroupTeamScheduleOpenShiftChangeRequest" +"Teams","GetMgGroupTeamScheduleOpenShiftChangeRequest_List.g.cs","v1.0","Get-MgGroupTeamScheduleOpenShiftChangeRequest","GET","/groups/{param}/team/schedule/openShiftChangeRequests","matched","Get-MgGroupTeamScheduleOpenShiftChangeRequest" +"Teams","GetMgGroupTeamScheduleOpenShiftChangeRequest.g.cs","v1.0","Get-MgGroupTeamScheduleOpenShiftChangeRequest","","","dispatcher","" +"Teams","GetMgGroupTeamScheduleOpenShiftChangeRequestCount.g.cs","v1.0","Get-MgGroupTeamScheduleOpenShiftChangeRequestCount","GET","/groups/{param}/team/schedule/openShiftChangeRequests/$count","matched","Get-MgGroupTeamScheduleOpenShiftChangeRequestCount" +"Teams","GetMgGroupTeamScheduleOpenShiftCount.g.cs","v1.0","Get-MgGroupTeamScheduleOpenShiftCount","GET","/groups/{param}/team/schedule/openShifts/$count","matched","Get-MgGroupTeamScheduleOpenShiftCount" +"Teams","GetMgGroupTeamScheduleSchedulingGroup_Get.g.cs","v1.0","Get-MgGroupTeamScheduleSchedulingGroup","GET","/groups/{param}/team/schedule/schedulingGroups/{param}","matched","Get-MgGroupTeamScheduleSchedulingGroup" +"Teams","GetMgGroupTeamScheduleSchedulingGroup_List.g.cs","v1.0","Get-MgGroupTeamScheduleSchedulingGroup","GET","/groups/{param}/team/schedule/schedulingGroups","matched","Get-MgGroupTeamScheduleSchedulingGroup" +"Teams","GetMgGroupTeamScheduleSchedulingGroup.g.cs","v1.0","Get-MgGroupTeamScheduleSchedulingGroup","","","dispatcher","" +"Teams","GetMgGroupTeamScheduleSchedulingGroupCount.g.cs","v1.0","Get-MgGroupTeamScheduleSchedulingGroupCount","GET","/groups/{param}/team/schedule/schedulingGroups/$count","matched","Get-MgGroupTeamScheduleSchedulingGroupCount" +"Teams","GetMgGroupTeamScheduleShift_Get.g.cs","v1.0","Get-MgGroupTeamScheduleShift","GET","/groups/{param}/team/schedule/shifts/{param}","matched","Get-MgGroupTeamScheduleShift" +"Teams","GetMgGroupTeamScheduleShift_List.g.cs","v1.0","Get-MgGroupTeamScheduleShift","GET","/groups/{param}/team/schedule/shifts","matched","Get-MgGroupTeamScheduleShift" +"Teams","GetMgGroupTeamScheduleShift.g.cs","v1.0","Get-MgGroupTeamScheduleShift","","","dispatcher","" +"Teams","GetMgGroupTeamScheduleShiftCount.g.cs","v1.0","Get-MgGroupTeamScheduleShiftCount","GET","/groups/{param}/team/schedule/shifts/$count","matched","Get-MgGroupTeamScheduleShiftCount" +"Teams","GetMgGroupTeamScheduleSwapShiftChangeRequest_Get.g.cs","v1.0","Get-MgGroupTeamScheduleSwapShiftChangeRequest","GET","/groups/{param}/team/schedule/swapShiftsChangeRequests/{param}","matched","Get-MgGroupTeamScheduleSwapShiftChangeRequest" +"Teams","GetMgGroupTeamScheduleSwapShiftChangeRequest_List.g.cs","v1.0","Get-MgGroupTeamScheduleSwapShiftChangeRequest","GET","/groups/{param}/team/schedule/swapShiftsChangeRequests","matched","Get-MgGroupTeamScheduleSwapShiftChangeRequest" +"Teams","GetMgGroupTeamScheduleSwapShiftChangeRequest.g.cs","v1.0","Get-MgGroupTeamScheduleSwapShiftChangeRequest","","","dispatcher","" +"Teams","GetMgGroupTeamScheduleSwapShiftChangeRequestCount.g.cs","v1.0","Get-MgGroupTeamScheduleSwapShiftChangeRequestCount","GET","/groups/{param}/team/schedule/swapShiftsChangeRequests/$count","matched","Get-MgGroupTeamScheduleSwapShiftChangeRequestCount" +"Teams","GetMgGroupTeamScheduleTimeCard_Get.g.cs","v1.0","Get-MgGroupTeamScheduleTimeCard","GET","/groups/{param}/team/schedule/timeCards/{param}","matched","Get-MgGroupTeamScheduleTimeCard" +"Teams","GetMgGroupTeamScheduleTimeCard_List.g.cs","v1.0","Get-MgGroupTeamScheduleTimeCard","GET","/groups/{param}/team/schedule/timeCards","matched","Get-MgGroupTeamScheduleTimeCard" +"Teams","GetMgGroupTeamScheduleTimeCard.g.cs","v1.0","Get-MgGroupTeamScheduleTimeCard","","","dispatcher","" +"Teams","GetMgGroupTeamScheduleTimeCardCount.g.cs","v1.0","Get-MgGroupTeamScheduleTimeCardCount","GET","/groups/{param}/team/schedule/timeCards/$count","matched","Get-MgGroupTeamScheduleTimeCardCount" +"Teams","GetMgGroupTeamScheduleTimeOff_Get.g.cs","v1.0","Get-MgGroupTeamScheduleTimeOff","GET","/groups/{param}/team/schedule/timesOff/{param}","matched","Get-MgGroupTeamScheduleTimeOff" +"Teams","GetMgGroupTeamScheduleTimeOff_List.g.cs","v1.0","Get-MgGroupTeamScheduleTimeOff","GET","/groups/{param}/team/schedule/timesOff","matched","Get-MgGroupTeamScheduleTimeOff" +"Teams","GetMgGroupTeamScheduleTimeOff.g.cs","v1.0","Get-MgGroupTeamScheduleTimeOff","","","dispatcher","" +"Teams","GetMgGroupTeamScheduleTimeOffCount.g.cs","v1.0","Get-MgGroupTeamScheduleTimeOffCount","GET","/groups/{param}/team/schedule/timesOff/$count","matched","Get-MgGroupTeamScheduleTimeOffCount" +"Teams","GetMgGroupTeamScheduleTimeOffReason_Get.g.cs","v1.0","Get-MgGroupTeamScheduleTimeOffReason","GET","/groups/{param}/team/schedule/timeOffReasons/{param}","matched","Get-MgGroupTeamScheduleTimeOffReason" +"Teams","GetMgGroupTeamScheduleTimeOffReason_List.g.cs","v1.0","Get-MgGroupTeamScheduleTimeOffReason","GET","/groups/{param}/team/schedule/timeOffReasons","matched","Get-MgGroupTeamScheduleTimeOffReason" +"Teams","GetMgGroupTeamScheduleTimeOffReason.g.cs","v1.0","Get-MgGroupTeamScheduleTimeOffReason","","","dispatcher","" +"Teams","GetMgGroupTeamScheduleTimeOffReasonCount.g.cs","v1.0","Get-MgGroupTeamScheduleTimeOffReasonCount","GET","/groups/{param}/team/schedule/timeOffReasons/$count","matched","Get-MgGroupTeamScheduleTimeOffReasonCount" +"Teams","GetMgGroupTeamScheduleTimeOffRequest_Get.g.cs","v1.0","Get-MgGroupTeamScheduleTimeOffRequest","GET","/groups/{param}/team/schedule/timeOffRequests/{param}","matched","Get-MgGroupTeamScheduleTimeOffRequest" +"Teams","GetMgGroupTeamScheduleTimeOffRequest_List.g.cs","v1.0","Get-MgGroupTeamScheduleTimeOffRequest","GET","/groups/{param}/team/schedule/timeOffRequests","matched","Get-MgGroupTeamScheduleTimeOffRequest" +"Teams","GetMgGroupTeamScheduleTimeOffRequest.g.cs","v1.0","Get-MgGroupTeamScheduleTimeOffRequest","","","dispatcher","" +"Teams","GetMgGroupTeamScheduleTimeOffRequestCount.g.cs","v1.0","Get-MgGroupTeamScheduleTimeOffRequestCount","GET","/groups/{param}/team/schedule/timeOffRequests/$count","matched","Get-MgGroupTeamScheduleTimeOffRequestCount" +"Teams","GetMgGroupTeamTag_Get.g.cs","v1.0","Get-MgGroupTeamTag","GET","/groups/{param}/team/tags/{param}","matched","Get-MgGroupTeamTag" +"Teams","GetMgGroupTeamTag_List.g.cs","v1.0","Get-MgGroupTeamTag","GET","/groups/{param}/team/tags","matched","Get-MgGroupTeamTag" +"Teams","GetMgGroupTeamTag.g.cs","v1.0","Get-MgGroupTeamTag","","","dispatcher","" +"Teams","GetMgGroupTeamTagCount.g.cs","v1.0","Get-MgGroupTeamTagCount","GET","/groups/{param}/team/tags/$count","matched","Get-MgGroupTeamTagCount" +"Teams","GetMgGroupTeamTagMember_Get.g.cs","v1.0","Get-MgGroupTeamTagMember","GET","/groups/{param}/team/tags/{param}/members/{param}","matched","Get-MgGroupTeamTagMember" +"Teams","GetMgGroupTeamTagMember_List.g.cs","v1.0","Get-MgGroupTeamTagMember","GET","/groups/{param}/team/tags/{param}/members","matched","Get-MgGroupTeamTagMember" +"Teams","GetMgGroupTeamTagMember.g.cs","v1.0","Get-MgGroupTeamTagMember","","","dispatcher","" +"Teams","GetMgGroupTeamTagMemberCount.g.cs","v1.0","Get-MgGroupTeamTagMemberCount","GET","/groups/{param}/team/tags/{param}/members/$count","matched","Get-MgGroupTeamTagMemberCount" +"Teams","GetMgGroupTeamTemplate.g.cs","v1.0","Get-MgGroupTeamTemplate","GET","/groups/{param}/team/template","matched","Get-MgGroupTeamTemplate" +"Teams","GetMgTeam_Get.g.cs","v1.0","Get-MgTeam","GET","/teams/{param}","matched","Get-MgTeam" +"Teams","GetMgTeam_List.g.cs","v1.0","Get-MgTeam","GET","/teams","matched","Get-MgTeam" +"Teams","GetMgTeam.g.cs","v1.0","Get-MgTeam","","","dispatcher","" +"Teams","GetMgTeamAllChannel_Get.g.cs","v1.0","Get-MgTeamAllChannel","GET","/teams/{param}/allChannels/{param}","mismatch","Get-MgAllTeamChannel" +"Teams","GetMgTeamAllChannel_List.g.cs","v1.0","Get-MgTeamAllChannel","GET","/teams/{param}/allChannels","mismatch","Get-MgAllTeamChannel" +"Teams","GetMgTeamAllChannel.g.cs","v1.0","Get-MgTeamAllChannel","","","dispatcher","" +"Teams","GetMgTeamAllChannelCount.g.cs","v1.0","Get-MgTeamAllChannelCount","GET","/teams/{param}/allChannels/$count","mismatch","Get-MgAllTeamChannelCount" +"Teams","GetMgTeamChannel_Get.g.cs","v1.0","Get-MgTeamChannel","GET","/teams/{param}/channels/{param}","matched","Get-MgTeamChannel" +"Teams","GetMgTeamChannel_List.g.cs","v1.0","Get-MgTeamChannel","GET","/teams/{param}/channels","matched","Get-MgTeamChannel" +"Teams","GetMgTeamChannel.g.cs","v1.0","Get-MgTeamChannel","","","dispatcher","" +"Teams","GetMgTeamChannelAllMember_Get.g.cs","v1.0","Get-MgTeamChannelAllMember","GET","/teams/{param}/channels/{param}/allMembers/{param}","mismatch","Get-MgTeamChannelMember" +"Teams","GetMgTeamChannelAllMember_List.g.cs","v1.0","Get-MgTeamChannelAllMember","GET","/teams/{param}/channels/{param}/allMembers","mismatch","Get-MgTeamChannelMember" +"Teams","GetMgTeamChannelAllMember.g.cs","v1.0","Get-MgTeamChannelAllMember","","","dispatcher","" +"Teams","GetMgTeamChannelAllMemberCount.g.cs","v1.0","Get-MgTeamChannelAllMemberCount","GET","/teams/{param}/channels/{param}/allMembers/$count","matched","Get-MgTeamChannelAllMemberCount" +"Teams","GetMgTeamChannelCount.g.cs","v1.0","Get-MgTeamChannelCount","GET","/teams/{param}/channels/$count","matched","Get-MgTeamChannelCount" +"Teams","GetMgTeamChannelEnabledApp_Get.g.cs","v1.0","Get-MgTeamChannelEnabledApp","GET","/teams/{param}/channels/{param}/enabledApps/{param}","matched","Get-MgTeamChannelEnabledApp" +"Teams","GetMgTeamChannelEnabledApp_List.g.cs","v1.0","Get-MgTeamChannelEnabledApp","GET","/teams/{param}/channels/{param}/enabledApps","matched","Get-MgTeamChannelEnabledApp" +"Teams","GetMgTeamChannelEnabledApp.g.cs","v1.0","Get-MgTeamChannelEnabledApp","","","dispatcher","" +"Teams","GetMgTeamChannelEnabledAppCount.g.cs","v1.0","Get-MgTeamChannelEnabledAppCount","GET","/teams/{param}/channels/{param}/enabledApps/$count","matched","Get-MgTeamChannelEnabledAppCount" +"Teams","GetMgTeamChannelFileFolder.g.cs","v1.0","Get-MgTeamChannelFileFolder","GET","/teams/{param}/channels/{param}/filesFolder","matched","Get-MgTeamChannelFileFolder" +"Teams","GetMgTeamChannelGetAllMessages.g.cs","v1.0","Get-MgTeamChannelGetAllMessages","GET","/teams/{param}/channels/getAllMessages","no-oracle","" +"Teams","GetMgTeamChannelGetAllRetainedMessages.g.cs","v1.0","Get-MgTeamChannelGetAllRetainedMessages","GET","/teams/{param}/channels/getAllRetainedMessages","mismatch","Get-MgTeamChannelRetainedMessage" +"Teams","GetMgTeamChannelMember_Get.g.cs","v1.0","Get-MgTeamChannelMember","GET","/teams/{param}/channels/{param}/members/{param}","no-oracle","" +"Teams","GetMgTeamChannelMember_List.g.cs","v1.0","Get-MgTeamChannelMember","GET","/teams/{param}/channels/{param}/members","no-oracle","" +"Teams","GetMgTeamChannelMember.g.cs","v1.0","Get-MgTeamChannelMember","","","dispatcher","" +"Teams","GetMgTeamChannelMemberCount.g.cs","v1.0","Get-MgTeamChannelMemberCount","GET","/teams/{param}/channels/{param}/members/$count","matched","Get-MgTeamChannelMemberCount" +"Teams","GetMgTeamChannelMessage_Get.g.cs","v1.0","Get-MgTeamChannelMessage","GET","/teams/{param}/channels/{param}/messages/{param}","matched","Get-MgTeamChannelMessage" +"Teams","GetMgTeamChannelMessage_List.g.cs","v1.0","Get-MgTeamChannelMessage","GET","/teams/{param}/channels/{param}/messages","matched","Get-MgTeamChannelMessage" +"Teams","GetMgTeamChannelMessage.g.cs","v1.0","Get-MgTeamChannelMessage","","","dispatcher","" +"Teams","GetMgTeamChannelMessageCount.g.cs","v1.0","Get-MgTeamChannelMessageCount","GET","/teams/{param}/channels/{param}/messages/$count","matched","Get-MgTeamChannelMessageCount" +"Teams","GetMgTeamChannelMessageDelta.g.cs","v1.0","Get-MgTeamChannelMessageDelta","GET","/teams/{param}/channels/{param}/messages/delta","matched","Get-MgTeamChannelMessageDelta" +"Teams","GetMgTeamChannelMessageHostedContent_Get.g.cs","v1.0","Get-MgTeamChannelMessageHostedContent","GET","/teams/{param}/channels/{param}/messages/{param}/hostedContents/{param}","matched","Get-MgTeamChannelMessageHostedContent" +"Teams","GetMgTeamChannelMessageHostedContent_List.g.cs","v1.0","Get-MgTeamChannelMessageHostedContent","GET","/teams/{param}/channels/{param}/messages/{param}/hostedContents","matched","Get-MgTeamChannelMessageHostedContent" +"Teams","GetMgTeamChannelMessageHostedContent.g.cs","v1.0","Get-MgTeamChannelMessageHostedContent","","","dispatcher","" +"Teams","GetMgTeamChannelMessageHostedContentContent.g.cs","v1.0","Get-MgTeamChannelMessageHostedContentContent","GET","/teams/{param}/channels/{param}/messages/{param}/hostedContents/{param}/$value","no-oracle","" +"Teams","GetMgTeamChannelMessageHostedContentCount.g.cs","v1.0","Get-MgTeamChannelMessageHostedContentCount","GET","/teams/{param}/channels/{param}/messages/{param}/hostedContents/$count","matched","Get-MgTeamChannelMessageHostedContentCount" +"Teams","GetMgTeamChannelMessageReply_Get.g.cs","v1.0","Get-MgTeamChannelMessageReply","GET","/teams/{param}/channels/{param}/messages/{param}/replies/{param}","matched","Get-MgTeamChannelMessageReply" +"Teams","GetMgTeamChannelMessageReply_List.g.cs","v1.0","Get-MgTeamChannelMessageReply","GET","/teams/{param}/channels/{param}/messages/{param}/replies","matched","Get-MgTeamChannelMessageReply" +"Teams","GetMgTeamChannelMessageReply.g.cs","v1.0","Get-MgTeamChannelMessageReply","","","dispatcher","" +"Teams","GetMgTeamChannelMessageReplyCount.g.cs","v1.0","Get-MgTeamChannelMessageReplyCount","GET","/teams/{param}/channels/{param}/messages/{param}/replies/$count","matched","Get-MgTeamChannelMessageReplyCount" +"Teams","GetMgTeamChannelMessageReplyDelta.g.cs","v1.0","Get-MgTeamChannelMessageReplyDelta","GET","/teams/{param}/channels/{param}/messages/{param}/replies/delta","matched","Get-MgTeamChannelMessageReplyDelta" +"Teams","GetMgTeamChannelMessageReplyHostedContent_Get.g.cs","v1.0","Get-MgTeamChannelMessageReplyHostedContent","GET","/teams/{param}/channels/{param}/messages/{param}/replies/{param}/hostedContents/{param}","matched","Get-MgTeamChannelMessageReplyHostedContent" +"Teams","GetMgTeamChannelMessageReplyHostedContent_List.g.cs","v1.0","Get-MgTeamChannelMessageReplyHostedContent","GET","/teams/{param}/channels/{param}/messages/{param}/replies/{param}/hostedContents","matched","Get-MgTeamChannelMessageReplyHostedContent" +"Teams","GetMgTeamChannelMessageReplyHostedContent.g.cs","v1.0","Get-MgTeamChannelMessageReplyHostedContent","","","dispatcher","" +"Teams","GetMgTeamChannelMessageReplyHostedContentContent.g.cs","v1.0","Get-MgTeamChannelMessageReplyHostedContentContent","GET","/teams/{param}/channels/{param}/messages/{param}/replies/{param}/hostedContents/{param}/$value","no-oracle","" +"Teams","GetMgTeamChannelMessageReplyHostedContentCount.g.cs","v1.0","Get-MgTeamChannelMessageReplyHostedContentCount","GET","/teams/{param}/channels/{param}/messages/{param}/replies/{param}/hostedContents/$count","matched","Get-MgTeamChannelMessageReplyHostedContentCount" +"Teams","GetMgTeamChannelSharedWithTeam_Get.g.cs","v1.0","Get-MgTeamChannelSharedWithTeam","GET","/teams/{param}/channels/{param}/sharedWithTeams/{param}","matched","Get-MgTeamChannelSharedWithTeam" +"Teams","GetMgTeamChannelSharedWithTeam_List.g.cs","v1.0","Get-MgTeamChannelSharedWithTeam","GET","/teams/{param}/channels/{param}/sharedWithTeams","matched","Get-MgTeamChannelSharedWithTeam" +"Teams","GetMgTeamChannelSharedWithTeam.g.cs","v1.0","Get-MgTeamChannelSharedWithTeam","","","dispatcher","" +"Teams","GetMgTeamChannelSharedWithTeamAllowedMember_Get.g.cs","v1.0","Get-MgTeamChannelSharedWithTeamAllowedMember","GET","/teams/{param}/channels/{param}/sharedWithTeams/{param}/allowedMembers/{param}","matched","Get-MgTeamChannelSharedWithTeamAllowedMember" +"Teams","GetMgTeamChannelSharedWithTeamAllowedMember_List.g.cs","v1.0","Get-MgTeamChannelSharedWithTeamAllowedMember","GET","/teams/{param}/channels/{param}/sharedWithTeams/{param}/allowedMembers","matched","Get-MgTeamChannelSharedWithTeamAllowedMember" +"Teams","GetMgTeamChannelSharedWithTeamAllowedMember.g.cs","v1.0","Get-MgTeamChannelSharedWithTeamAllowedMember","","","dispatcher","" +"Teams","GetMgTeamChannelSharedWithTeamAllowedMemberCount.g.cs","v1.0","Get-MgTeamChannelSharedWithTeamAllowedMemberCount","GET","/teams/{param}/channels/{param}/sharedWithTeams/{param}/allowedMembers/$count","matched","Get-MgTeamChannelSharedWithTeamAllowedMemberCount" +"Teams","GetMgTeamChannelSharedWithTeamCount.g.cs","v1.0","Get-MgTeamChannelSharedWithTeamCount","GET","/teams/{param}/channels/{param}/sharedWithTeams/$count","matched","Get-MgTeamChannelSharedWithTeamCount" +"Teams","GetMgTeamChannelTab_Get.g.cs","v1.0","Get-MgTeamChannelTab","GET","/teams/{param}/channels/{param}/tabs/{param}","matched","Get-MgTeamChannelTab" +"Teams","GetMgTeamChannelTab_List.g.cs","v1.0","Get-MgTeamChannelTab","GET","/teams/{param}/channels/{param}/tabs","matched","Get-MgTeamChannelTab" +"Teams","GetMgTeamChannelTab.g.cs","v1.0","Get-MgTeamChannelTab","","","dispatcher","" +"Teams","GetMgTeamChannelTabCount.g.cs","v1.0","Get-MgTeamChannelTabCount","GET","/teams/{param}/channels/{param}/tabs/$count","matched","Get-MgTeamChannelTabCount" +"Teams","GetMgTeamChannelTabTeamApp.g.cs","v1.0","Get-MgTeamChannelTabTeamApp","GET","/teams/{param}/channels/{param}/tabs/{param}/teamsApp","matched","Get-MgTeamChannelTabTeamApp" +"Teams","GetMgTeamCount.g.cs","v1.0","Get-MgTeamCount","GET","/teams/$count","matched","Get-MgTeamCount" +"Teams","GetMgTeamGetAllMessages.g.cs","v1.0","Get-MgTeamGetAllMessages","GET","/teams/getAllMessages","mismatch","Get-MgAllTeamMessage" +"Teams","GetMgTeamGroup.g.cs","v1.0","Get-MgTeamGroup","GET","/teams/{param}/group","no-oracle","" +"Teams","GetMgTeamGroupServiceProvisioningError.g.cs","v1.0","Get-MgTeamGroupServiceProvisioningError","GET","/teams/{param}/group/serviceProvisioningErrors","matched","Get-MgTeamGroupServiceProvisioningError" +"Teams","GetMgTeamGroupServiceProvisioningErrorCount.g.cs","v1.0","Get-MgTeamGroupServiceProvisioningErrorCount","GET","/teams/{param}/group/serviceProvisioningErrors/$count","matched","Get-MgTeamGroupServiceProvisioningErrorCount" +"Teams","GetMgTeamIncomingChannel_Get.g.cs","v1.0","Get-MgTeamIncomingChannel","GET","/teams/{param}/incomingChannels/{param}","matched","Get-MgTeamIncomingChannel" +"Teams","GetMgTeamIncomingChannel_List.g.cs","v1.0","Get-MgTeamIncomingChannel","GET","/teams/{param}/incomingChannels","matched","Get-MgTeamIncomingChannel" +"Teams","GetMgTeamIncomingChannel.g.cs","v1.0","Get-MgTeamIncomingChannel","","","dispatcher","" +"Teams","GetMgTeamIncomingChannelCount.g.cs","v1.0","Get-MgTeamIncomingChannelCount","GET","/teams/{param}/incomingChannels/$count","matched","Get-MgTeamIncomingChannelCount" +"Teams","GetMgTeamInstalledApp_Get.g.cs","v1.0","Get-MgTeamInstalledApp","GET","/teams/{param}/installedApps/{param}","matched","Get-MgTeamInstalledApp" +"Teams","GetMgTeamInstalledApp_List.g.cs","v1.0","Get-MgTeamInstalledApp","GET","/teams/{param}/installedApps","matched","Get-MgTeamInstalledApp" +"Teams","GetMgTeamInstalledApp.g.cs","v1.0","Get-MgTeamInstalledApp","","","dispatcher","" +"Teams","GetMgTeamInstalledAppCount.g.cs","v1.0","Get-MgTeamInstalledAppCount","GET","/teams/{param}/installedApps/$count","matched","Get-MgTeamInstalledAppCount" +"Teams","GetMgTeamInstalledAppTeamApp.g.cs","v1.0","Get-MgTeamInstalledAppTeamApp","GET","/teams/{param}/installedApps/{param}/teamsApp","matched","Get-MgTeamInstalledAppTeamApp" +"Teams","GetMgTeamInstalledAppTeamAppDefinition.g.cs","v1.0","Get-MgTeamInstalledAppTeamAppDefinition","GET","/teams/{param}/installedApps/{param}/teamsAppDefinition","matched","Get-MgTeamInstalledAppTeamAppDefinition" +"Teams","GetMgTeamMember_Get.g.cs","v1.0","Get-MgTeamMember","GET","/teams/{param}/members/{param}","matched","Get-MgTeamMember" +"Teams","GetMgTeamMember_List.g.cs","v1.0","Get-MgTeamMember","GET","/teams/{param}/members","matched","Get-MgTeamMember" +"Teams","GetMgTeamMember.g.cs","v1.0","Get-MgTeamMember","","","dispatcher","" +"Teams","GetMgTeamMemberCount.g.cs","v1.0","Get-MgTeamMemberCount","GET","/teams/{param}/members/$count","matched","Get-MgTeamMemberCount" +"Teams","GetMgTeamOperation_Get.g.cs","v1.0","Get-MgTeamOperation","GET","/teams/{param}/operations/{param}","matched","Get-MgTeamOperation" +"Teams","GetMgTeamOperation_List.g.cs","v1.0","Get-MgTeamOperation","GET","/teams/{param}/operations","matched","Get-MgTeamOperation" +"Teams","GetMgTeamOperation.g.cs","v1.0","Get-MgTeamOperation","","","dispatcher","" +"Teams","GetMgTeamOperationCount.g.cs","v1.0","Get-MgTeamOperationCount","GET","/teams/{param}/operations/$count","matched","Get-MgTeamOperationCount" +"Teams","GetMgTeamPermissionGrant_Get.g.cs","v1.0","Get-MgTeamPermissionGrant","GET","/teams/{param}/permissionGrants/{param}","matched","Get-MgTeamPermissionGrant" +"Teams","GetMgTeamPermissionGrant_List.g.cs","v1.0","Get-MgTeamPermissionGrant","GET","/teams/{param}/permissionGrants","matched","Get-MgTeamPermissionGrant" +"Teams","GetMgTeamPermissionGrant.g.cs","v1.0","Get-MgTeamPermissionGrant","","","dispatcher","" +"Teams","GetMgTeamPermissionGrantCount.g.cs","v1.0","Get-MgTeamPermissionGrantCount","GET","/teams/{param}/permissionGrants/$count","matched","Get-MgTeamPermissionGrantCount" +"Teams","GetMgTeamPhoto.g.cs","v1.0","Get-MgTeamPhoto","GET","/teams/{param}/photo","matched","Get-MgTeamPhoto" +"Teams","GetMgTeamPhotoContent.g.cs","v1.0","Get-MgTeamPhotoContent","GET","/teams/{param}/photo/$value","matched","Get-MgTeamPhotoContent" +"Teams","GetMgTeamPrimaryChannel.g.cs","v1.0","Get-MgTeamPrimaryChannel","GET","/teams/{param}/primaryChannel","matched","Get-MgTeamPrimaryChannel" +"Teams","GetMgTeamPrimaryChannelAllMember_Get.g.cs","v1.0","Get-MgTeamPrimaryChannelAllMember","GET","/teams/{param}/primaryChannel/allMembers/{param}","mismatch","Get-MgTeamPrimaryChannelMember" +"Teams","GetMgTeamPrimaryChannelAllMember_List.g.cs","v1.0","Get-MgTeamPrimaryChannelAllMember","GET","/teams/{param}/primaryChannel/allMembers","mismatch","Get-MgTeamPrimaryChannelMember" +"Teams","GetMgTeamPrimaryChannelAllMember.g.cs","v1.0","Get-MgTeamPrimaryChannelAllMember","","","dispatcher","" +"Teams","GetMgTeamPrimaryChannelAllMemberCount.g.cs","v1.0","Get-MgTeamPrimaryChannelAllMemberCount","GET","/teams/{param}/primaryChannel/allMembers/$count","matched","Get-MgTeamPrimaryChannelAllMemberCount" +"Teams","GetMgTeamPrimaryChannelEnabledApp_Get.g.cs","v1.0","Get-MgTeamPrimaryChannelEnabledApp","GET","/teams/{param}/primaryChannel/enabledApps/{param}","matched","Get-MgTeamPrimaryChannelEnabledApp" +"Teams","GetMgTeamPrimaryChannelEnabledApp_List.g.cs","v1.0","Get-MgTeamPrimaryChannelEnabledApp","GET","/teams/{param}/primaryChannel/enabledApps","matched","Get-MgTeamPrimaryChannelEnabledApp" +"Teams","GetMgTeamPrimaryChannelEnabledApp.g.cs","v1.0","Get-MgTeamPrimaryChannelEnabledApp","","","dispatcher","" +"Teams","GetMgTeamPrimaryChannelEnabledAppCount.g.cs","v1.0","Get-MgTeamPrimaryChannelEnabledAppCount","GET","/teams/{param}/primaryChannel/enabledApps/$count","matched","Get-MgTeamPrimaryChannelEnabledAppCount" +"Teams","GetMgTeamPrimaryChannelFileFolder.g.cs","v1.0","Get-MgTeamPrimaryChannelFileFolder","GET","/teams/{param}/primaryChannel/filesFolder","matched","Get-MgTeamPrimaryChannelFileFolder" +"Teams","GetMgTeamPrimaryChannelMember_Get.g.cs","v1.0","Get-MgTeamPrimaryChannelMember","GET","/teams/{param}/primaryChannel/members/{param}","no-oracle","" +"Teams","GetMgTeamPrimaryChannelMember_List.g.cs","v1.0","Get-MgTeamPrimaryChannelMember","GET","/teams/{param}/primaryChannel/members","no-oracle","" +"Teams","GetMgTeamPrimaryChannelMember.g.cs","v1.0","Get-MgTeamPrimaryChannelMember","","","dispatcher","" +"Teams","GetMgTeamPrimaryChannelMemberCount.g.cs","v1.0","Get-MgTeamPrimaryChannelMemberCount","GET","/teams/{param}/primaryChannel/members/$count","matched","Get-MgTeamPrimaryChannelMemberCount" +"Teams","GetMgTeamPrimaryChannelMessage_Get.g.cs","v1.0","Get-MgTeamPrimaryChannelMessage","GET","/teams/{param}/primaryChannel/messages/{param}","matched","Get-MgTeamPrimaryChannelMessage" +"Teams","GetMgTeamPrimaryChannelMessage_List.g.cs","v1.0","Get-MgTeamPrimaryChannelMessage","GET","/teams/{param}/primaryChannel/messages","matched","Get-MgTeamPrimaryChannelMessage" +"Teams","GetMgTeamPrimaryChannelMessage.g.cs","v1.0","Get-MgTeamPrimaryChannelMessage","","","dispatcher","" +"Teams","GetMgTeamPrimaryChannelMessageCount.g.cs","v1.0","Get-MgTeamPrimaryChannelMessageCount","GET","/teams/{param}/primaryChannel/messages/$count","matched","Get-MgTeamPrimaryChannelMessageCount" +"Teams","GetMgTeamPrimaryChannelMessageDelta.g.cs","v1.0","Get-MgTeamPrimaryChannelMessageDelta","GET","/teams/{param}/primaryChannel/messages/delta","matched","Get-MgTeamPrimaryChannelMessageDelta" +"Teams","GetMgTeamPrimaryChannelMessageHostedContent_Get.g.cs","v1.0","Get-MgTeamPrimaryChannelMessageHostedContent","GET","/teams/{param}/primaryChannel/messages/{param}/hostedContents/{param}","matched","Get-MgTeamPrimaryChannelMessageHostedContent" +"Teams","GetMgTeamPrimaryChannelMessageHostedContent_List.g.cs","v1.0","Get-MgTeamPrimaryChannelMessageHostedContent","GET","/teams/{param}/primaryChannel/messages/{param}/hostedContents","matched","Get-MgTeamPrimaryChannelMessageHostedContent" +"Teams","GetMgTeamPrimaryChannelMessageHostedContent.g.cs","v1.0","Get-MgTeamPrimaryChannelMessageHostedContent","","","dispatcher","" +"Teams","GetMgTeamPrimaryChannelMessageHostedContentContent.g.cs","v1.0","Get-MgTeamPrimaryChannelMessageHostedContentContent","GET","/teams/{param}/primaryChannel/messages/{param}/hostedContents/{param}/$value","no-oracle","" +"Teams","GetMgTeamPrimaryChannelMessageHostedContentCount.g.cs","v1.0","Get-MgTeamPrimaryChannelMessageHostedContentCount","GET","/teams/{param}/primaryChannel/messages/{param}/hostedContents/$count","matched","Get-MgTeamPrimaryChannelMessageHostedContentCount" +"Teams","GetMgTeamPrimaryChannelMessageReply_Get.g.cs","v1.0","Get-MgTeamPrimaryChannelMessageReply","GET","/teams/{param}/primaryChannel/messages/{param}/replies/{param}","matched","Get-MgTeamPrimaryChannelMessageReply" +"Teams","GetMgTeamPrimaryChannelMessageReply_List.g.cs","v1.0","Get-MgTeamPrimaryChannelMessageReply","GET","/teams/{param}/primaryChannel/messages/{param}/replies","matched","Get-MgTeamPrimaryChannelMessageReply" +"Teams","GetMgTeamPrimaryChannelMessageReply.g.cs","v1.0","Get-MgTeamPrimaryChannelMessageReply","","","dispatcher","" +"Teams","GetMgTeamPrimaryChannelMessageReplyCount.g.cs","v1.0","Get-MgTeamPrimaryChannelMessageReplyCount","GET","/teams/{param}/primaryChannel/messages/{param}/replies/$count","matched","Get-MgTeamPrimaryChannelMessageReplyCount" +"Teams","GetMgTeamPrimaryChannelMessageReplyDelta.g.cs","v1.0","Get-MgTeamPrimaryChannelMessageReplyDelta","GET","/teams/{param}/primaryChannel/messages/{param}/replies/delta","matched","Get-MgTeamPrimaryChannelMessageReplyDelta" +"Teams","GetMgTeamPrimaryChannelMessageReplyHostedContent_Get.g.cs","v1.0","Get-MgTeamPrimaryChannelMessageReplyHostedContent","GET","/teams/{param}/primaryChannel/messages/{param}/replies/{param}/hostedContents/{param}","matched","Get-MgTeamPrimaryChannelMessageReplyHostedContent" +"Teams","GetMgTeamPrimaryChannelMessageReplyHostedContent_List.g.cs","v1.0","Get-MgTeamPrimaryChannelMessageReplyHostedContent","GET","/teams/{param}/primaryChannel/messages/{param}/replies/{param}/hostedContents","matched","Get-MgTeamPrimaryChannelMessageReplyHostedContent" +"Teams","GetMgTeamPrimaryChannelMessageReplyHostedContent.g.cs","v1.0","Get-MgTeamPrimaryChannelMessageReplyHostedContent","","","dispatcher","" +"Teams","GetMgTeamPrimaryChannelMessageReplyHostedContentContent.g.cs","v1.0","Get-MgTeamPrimaryChannelMessageReplyHostedContentContent","GET","/teams/{param}/primaryChannel/messages/{param}/replies/{param}/hostedContents/{param}/$value","no-oracle","" +"Teams","GetMgTeamPrimaryChannelMessageReplyHostedContentCount.g.cs","v1.0","Get-MgTeamPrimaryChannelMessageReplyHostedContentCount","GET","/teams/{param}/primaryChannel/messages/{param}/replies/{param}/hostedContents/$count","matched","Get-MgTeamPrimaryChannelMessageReplyHostedContentCount" +"Teams","GetMgTeamPrimaryChannelSharedWithTeam_Get.g.cs","v1.0","Get-MgTeamPrimaryChannelSharedWithTeam","GET","/teams/{param}/primaryChannel/sharedWithTeams/{param}","matched","Get-MgTeamPrimaryChannelSharedWithTeam" +"Teams","GetMgTeamPrimaryChannelSharedWithTeam_List.g.cs","v1.0","Get-MgTeamPrimaryChannelSharedWithTeam","GET","/teams/{param}/primaryChannel/sharedWithTeams","matched","Get-MgTeamPrimaryChannelSharedWithTeam" +"Teams","GetMgTeamPrimaryChannelSharedWithTeam.g.cs","v1.0","Get-MgTeamPrimaryChannelSharedWithTeam","","","dispatcher","" +"Teams","GetMgTeamPrimaryChannelSharedWithTeamAllowedMember_Get.g.cs","v1.0","Get-MgTeamPrimaryChannelSharedWithTeamAllowedMember","GET","/teams/{param}/primaryChannel/sharedWithTeams/{param}/allowedMembers/{param}","matched","Get-MgTeamPrimaryChannelSharedWithTeamAllowedMember" +"Teams","GetMgTeamPrimaryChannelSharedWithTeamAllowedMember_List.g.cs","v1.0","Get-MgTeamPrimaryChannelSharedWithTeamAllowedMember","GET","/teams/{param}/primaryChannel/sharedWithTeams/{param}/allowedMembers","matched","Get-MgTeamPrimaryChannelSharedWithTeamAllowedMember" +"Teams","GetMgTeamPrimaryChannelSharedWithTeamAllowedMember.g.cs","v1.0","Get-MgTeamPrimaryChannelSharedWithTeamAllowedMember","","","dispatcher","" +"Teams","GetMgTeamPrimaryChannelSharedWithTeamAllowedMemberCount.g.cs","v1.0","Get-MgTeamPrimaryChannelSharedWithTeamAllowedMemberCount","GET","/teams/{param}/primaryChannel/sharedWithTeams/{param}/allowedMembers/$count","matched","Get-MgTeamPrimaryChannelSharedWithTeamAllowedMemberCount" +"Teams","GetMgTeamPrimaryChannelSharedWithTeamCount.g.cs","v1.0","Get-MgTeamPrimaryChannelSharedWithTeamCount","GET","/teams/{param}/primaryChannel/sharedWithTeams/$count","matched","Get-MgTeamPrimaryChannelSharedWithTeamCount" +"Teams","GetMgTeamPrimaryChannelTab_Get.g.cs","v1.0","Get-MgTeamPrimaryChannelTab","GET","/teams/{param}/primaryChannel/tabs/{param}","matched","Get-MgTeamPrimaryChannelTab" +"Teams","GetMgTeamPrimaryChannelTab_List.g.cs","v1.0","Get-MgTeamPrimaryChannelTab","GET","/teams/{param}/primaryChannel/tabs","matched","Get-MgTeamPrimaryChannelTab" +"Teams","GetMgTeamPrimaryChannelTab.g.cs","v1.0","Get-MgTeamPrimaryChannelTab","","","dispatcher","" +"Teams","GetMgTeamPrimaryChannelTabCount.g.cs","v1.0","Get-MgTeamPrimaryChannelTabCount","GET","/teams/{param}/primaryChannel/tabs/$count","matched","Get-MgTeamPrimaryChannelTabCount" +"Teams","GetMgTeamPrimaryChannelTabTeamApp.g.cs","v1.0","Get-MgTeamPrimaryChannelTabTeamApp","GET","/teams/{param}/primaryChannel/tabs/{param}/teamsApp","matched","Get-MgTeamPrimaryChannelTabTeamApp" +"Teams","GetMgTeamSchedule.g.cs","v1.0","Get-MgTeamSchedule","GET","/teams/{param}/schedule","matched","Get-MgTeamSchedule" +"Teams","GetMgTeamScheduleDayNote_Get.g.cs","v1.0","Get-MgTeamScheduleDayNote","GET","/teams/{param}/schedule/dayNotes/{param}","matched","Get-MgTeamScheduleDayNote" +"Teams","GetMgTeamScheduleDayNote_List.g.cs","v1.0","Get-MgTeamScheduleDayNote","GET","/teams/{param}/schedule/dayNotes","matched","Get-MgTeamScheduleDayNote" +"Teams","GetMgTeamScheduleDayNote.g.cs","v1.0","Get-MgTeamScheduleDayNote","","","dispatcher","" +"Teams","GetMgTeamScheduleDayNoteCount.g.cs","v1.0","Get-MgTeamScheduleDayNoteCount","GET","/teams/{param}/schedule/dayNotes/$count","matched","Get-MgTeamScheduleDayNoteCount" +"Teams","GetMgTeamScheduleOfferShiftRequest_Get.g.cs","v1.0","Get-MgTeamScheduleOfferShiftRequest","GET","/teams/{param}/schedule/offerShiftRequests/{param}","matched","Get-MgTeamScheduleOfferShiftRequest" +"Teams","GetMgTeamScheduleOfferShiftRequest_List.g.cs","v1.0","Get-MgTeamScheduleOfferShiftRequest","GET","/teams/{param}/schedule/offerShiftRequests","matched","Get-MgTeamScheduleOfferShiftRequest" +"Teams","GetMgTeamScheduleOfferShiftRequest.g.cs","v1.0","Get-MgTeamScheduleOfferShiftRequest","","","dispatcher","" +"Teams","GetMgTeamScheduleOfferShiftRequestCount.g.cs","v1.0","Get-MgTeamScheduleOfferShiftRequestCount","GET","/teams/{param}/schedule/offerShiftRequests/$count","matched","Get-MgTeamScheduleOfferShiftRequestCount" +"Teams","GetMgTeamScheduleOpenShift_Get.g.cs","v1.0","Get-MgTeamScheduleOpenShift","GET","/teams/{param}/schedule/openShifts/{param}","matched","Get-MgTeamScheduleOpenShift" +"Teams","GetMgTeamScheduleOpenShift_List.g.cs","v1.0","Get-MgTeamScheduleOpenShift","GET","/teams/{param}/schedule/openShifts","matched","Get-MgTeamScheduleOpenShift" +"Teams","GetMgTeamScheduleOpenShift.g.cs","v1.0","Get-MgTeamScheduleOpenShift","","","dispatcher","" +"Teams","GetMgTeamScheduleOpenShiftChangeRequest_Get.g.cs","v1.0","Get-MgTeamScheduleOpenShiftChangeRequest","GET","/teams/{param}/schedule/openShiftChangeRequests/{param}","matched","Get-MgTeamScheduleOpenShiftChangeRequest" +"Teams","GetMgTeamScheduleOpenShiftChangeRequest_List.g.cs","v1.0","Get-MgTeamScheduleOpenShiftChangeRequest","GET","/teams/{param}/schedule/openShiftChangeRequests","matched","Get-MgTeamScheduleOpenShiftChangeRequest" +"Teams","GetMgTeamScheduleOpenShiftChangeRequest.g.cs","v1.0","Get-MgTeamScheduleOpenShiftChangeRequest","","","dispatcher","" +"Teams","GetMgTeamScheduleOpenShiftChangeRequestCount.g.cs","v1.0","Get-MgTeamScheduleOpenShiftChangeRequestCount","GET","/teams/{param}/schedule/openShiftChangeRequests/$count","matched","Get-MgTeamScheduleOpenShiftChangeRequestCount" +"Teams","GetMgTeamScheduleOpenShiftCount.g.cs","v1.0","Get-MgTeamScheduleOpenShiftCount","GET","/teams/{param}/schedule/openShifts/$count","matched","Get-MgTeamScheduleOpenShiftCount" +"Teams","GetMgTeamScheduleSchedulingGroup_Get.g.cs","v1.0","Get-MgTeamScheduleSchedulingGroup","GET","/teams/{param}/schedule/schedulingGroups/{param}","matched","Get-MgTeamScheduleSchedulingGroup" +"Teams","GetMgTeamScheduleSchedulingGroup_List.g.cs","v1.0","Get-MgTeamScheduleSchedulingGroup","GET","/teams/{param}/schedule/schedulingGroups","matched","Get-MgTeamScheduleSchedulingGroup" +"Teams","GetMgTeamScheduleSchedulingGroup.g.cs","v1.0","Get-MgTeamScheduleSchedulingGroup","","","dispatcher","" +"Teams","GetMgTeamScheduleSchedulingGroupCount.g.cs","v1.0","Get-MgTeamScheduleSchedulingGroupCount","GET","/teams/{param}/schedule/schedulingGroups/$count","matched","Get-MgTeamScheduleSchedulingGroupCount" +"Teams","GetMgTeamScheduleShift_Get.g.cs","v1.0","Get-MgTeamScheduleShift","GET","/teams/{param}/schedule/shifts/{param}","matched","Get-MgTeamScheduleShift" +"Teams","GetMgTeamScheduleShift_List.g.cs","v1.0","Get-MgTeamScheduleShift","GET","/teams/{param}/schedule/shifts","matched","Get-MgTeamScheduleShift" +"Teams","GetMgTeamScheduleShift.g.cs","v1.0","Get-MgTeamScheduleShift","","","dispatcher","" +"Teams","GetMgTeamScheduleShiftCount.g.cs","v1.0","Get-MgTeamScheduleShiftCount","GET","/teams/{param}/schedule/shifts/$count","matched","Get-MgTeamScheduleShiftCount" +"Teams","GetMgTeamScheduleSwapShiftChangeRequest_Get.g.cs","v1.0","Get-MgTeamScheduleSwapShiftChangeRequest","GET","/teams/{param}/schedule/swapShiftsChangeRequests/{param}","matched","Get-MgTeamScheduleSwapShiftChangeRequest" +"Teams","GetMgTeamScheduleSwapShiftChangeRequest_List.g.cs","v1.0","Get-MgTeamScheduleSwapShiftChangeRequest","GET","/teams/{param}/schedule/swapShiftsChangeRequests","matched","Get-MgTeamScheduleSwapShiftChangeRequest" +"Teams","GetMgTeamScheduleSwapShiftChangeRequest.g.cs","v1.0","Get-MgTeamScheduleSwapShiftChangeRequest","","","dispatcher","" +"Teams","GetMgTeamScheduleSwapShiftChangeRequestCount.g.cs","v1.0","Get-MgTeamScheduleSwapShiftChangeRequestCount","GET","/teams/{param}/schedule/swapShiftsChangeRequests/$count","matched","Get-MgTeamScheduleSwapShiftChangeRequestCount" +"Teams","GetMgTeamScheduleTimeCard_Get.g.cs","v1.0","Get-MgTeamScheduleTimeCard","GET","/teams/{param}/schedule/timeCards/{param}","matched","Get-MgTeamScheduleTimeCard" +"Teams","GetMgTeamScheduleTimeCard_List.g.cs","v1.0","Get-MgTeamScheduleTimeCard","GET","/teams/{param}/schedule/timeCards","matched","Get-MgTeamScheduleTimeCard" +"Teams","GetMgTeamScheduleTimeCard.g.cs","v1.0","Get-MgTeamScheduleTimeCard","","","dispatcher","" +"Teams","GetMgTeamScheduleTimeCardCount.g.cs","v1.0","Get-MgTeamScheduleTimeCardCount","GET","/teams/{param}/schedule/timeCards/$count","matched","Get-MgTeamScheduleTimeCardCount" +"Teams","GetMgTeamScheduleTimeOff_Get.g.cs","v1.0","Get-MgTeamScheduleTimeOff","GET","/teams/{param}/schedule/timesOff/{param}","matched","Get-MgTeamScheduleTimeOff" +"Teams","GetMgTeamScheduleTimeOff_List.g.cs","v1.0","Get-MgTeamScheduleTimeOff","GET","/teams/{param}/schedule/timesOff","matched","Get-MgTeamScheduleTimeOff" +"Teams","GetMgTeamScheduleTimeOff.g.cs","v1.0","Get-MgTeamScheduleTimeOff","","","dispatcher","" +"Teams","GetMgTeamScheduleTimeOffCount.g.cs","v1.0","Get-MgTeamScheduleTimeOffCount","GET","/teams/{param}/schedule/timesOff/$count","matched","Get-MgTeamScheduleTimeOffCount" +"Teams","GetMgTeamScheduleTimeOffReason_Get.g.cs","v1.0","Get-MgTeamScheduleTimeOffReason","GET","/teams/{param}/schedule/timeOffReasons/{param}","matched","Get-MgTeamScheduleTimeOffReason" +"Teams","GetMgTeamScheduleTimeOffReason_List.g.cs","v1.0","Get-MgTeamScheduleTimeOffReason","GET","/teams/{param}/schedule/timeOffReasons","matched","Get-MgTeamScheduleTimeOffReason" +"Teams","GetMgTeamScheduleTimeOffReason.g.cs","v1.0","Get-MgTeamScheduleTimeOffReason","","","dispatcher","" +"Teams","GetMgTeamScheduleTimeOffReasonCount.g.cs","v1.0","Get-MgTeamScheduleTimeOffReasonCount","GET","/teams/{param}/schedule/timeOffReasons/$count","matched","Get-MgTeamScheduleTimeOffReasonCount" +"Teams","GetMgTeamScheduleTimeOffRequest_Get.g.cs","v1.0","Get-MgTeamScheduleTimeOffRequest","GET","/teams/{param}/schedule/timeOffRequests/{param}","matched","Get-MgTeamScheduleTimeOffRequest" +"Teams","GetMgTeamScheduleTimeOffRequest_List.g.cs","v1.0","Get-MgTeamScheduleTimeOffRequest","GET","/teams/{param}/schedule/timeOffRequests","matched","Get-MgTeamScheduleTimeOffRequest" +"Teams","GetMgTeamScheduleTimeOffRequest.g.cs","v1.0","Get-MgTeamScheduleTimeOffRequest","","","dispatcher","" +"Teams","GetMgTeamScheduleTimeOffRequestCount.g.cs","v1.0","Get-MgTeamScheduleTimeOffRequestCount","GET","/teams/{param}/schedule/timeOffRequests/$count","matched","Get-MgTeamScheduleTimeOffRequestCount" +"Teams","GetMgTeamTag_Get.g.cs","v1.0","Get-MgTeamTag","GET","/teams/{param}/tags/{param}","matched","Get-MgTeamTag" +"Teams","GetMgTeamTag_List.g.cs","v1.0","Get-MgTeamTag","GET","/teams/{param}/tags","matched","Get-MgTeamTag" +"Teams","GetMgTeamTag.g.cs","v1.0","Get-MgTeamTag","","","dispatcher","" +"Teams","GetMgTeamTagCount.g.cs","v1.0","Get-MgTeamTagCount","GET","/teams/{param}/tags/$count","matched","Get-MgTeamTagCount" +"Teams","GetMgTeamTagMember_Get.g.cs","v1.0","Get-MgTeamTagMember","GET","/teams/{param}/tags/{param}/members/{param}","matched","Get-MgTeamTagMember" +"Teams","GetMgTeamTagMember_List.g.cs","v1.0","Get-MgTeamTagMember","GET","/teams/{param}/tags/{param}/members","matched","Get-MgTeamTagMember" +"Teams","GetMgTeamTagMember.g.cs","v1.0","Get-MgTeamTagMember","","","dispatcher","" +"Teams","GetMgTeamTagMemberCount.g.cs","v1.0","Get-MgTeamTagMemberCount","GET","/teams/{param}/tags/{param}/members/$count","matched","Get-MgTeamTagMemberCount" +"Teams","GetMgTeamTemplate.g.cs","v1.0","Get-MgTeamTemplate","GET","/teams/{param}/template","matched","Get-MgTeamTemplate" +"Teams","GetMgTeamwork.g.cs","v1.0","Get-MgTeamwork","GET","/teamwork","matched","Get-MgTeamwork" +"Teams","GetMgTeamworkDeletedChat_Get.g.cs","v1.0","Get-MgTeamworkDeletedChat","GET","/teamwork/deletedChats/{param}","matched","Get-MgTeamworkDeletedChat" +"Teams","GetMgTeamworkDeletedChat_List.g.cs","v1.0","Get-MgTeamworkDeletedChat","GET","/teamwork/deletedChats","matched","Get-MgTeamworkDeletedChat" +"Teams","GetMgTeamworkDeletedChat.g.cs","v1.0","Get-MgTeamworkDeletedChat","","","dispatcher","" +"Teams","GetMgTeamworkDeletedChatCount.g.cs","v1.0","Get-MgTeamworkDeletedChatCount","GET","/teamwork/deletedChats/$count","matched","Get-MgTeamworkDeletedChatCount" +"Teams","GetMgTeamworkDeletedTeam_Get.g.cs","v1.0","Get-MgTeamworkDeletedTeam","GET","/teamwork/deletedTeams/{param}","matched","Get-MgTeamworkDeletedTeam" +"Teams","GetMgTeamworkDeletedTeam_List.g.cs","v1.0","Get-MgTeamworkDeletedTeam","GET","/teamwork/deletedTeams","matched","Get-MgTeamworkDeletedTeam" +"Teams","GetMgTeamworkDeletedTeam.g.cs","v1.0","Get-MgTeamworkDeletedTeam","","","dispatcher","" +"Teams","GetMgTeamworkDeletedTeamChannel_Get.g.cs","v1.0","Get-MgTeamworkDeletedTeamChannel","GET","/teamwork/deletedTeams/{param}/channels/{param}","matched","Get-MgTeamworkDeletedTeamChannel" +"Teams","GetMgTeamworkDeletedTeamChannel_List.g.cs","v1.0","Get-MgTeamworkDeletedTeamChannel","GET","/teamwork/deletedTeams/{param}/channels","matched","Get-MgTeamworkDeletedTeamChannel" +"Teams","GetMgTeamworkDeletedTeamChannel.g.cs","v1.0","Get-MgTeamworkDeletedTeamChannel","","","dispatcher","" +"Teams","GetMgTeamworkDeletedTeamChannelAllMember_Get.g.cs","v1.0","Get-MgTeamworkDeletedTeamChannelAllMember","GET","/teamwork/deletedTeams/{param}/channels/{param}/allMembers/{param}","mismatch","Get-MgTeamworkDeletedTeamChannelMember" +"Teams","GetMgTeamworkDeletedTeamChannelAllMember_List.g.cs","v1.0","Get-MgTeamworkDeletedTeamChannelAllMember","GET","/teamwork/deletedTeams/{param}/channels/{param}/allMembers","mismatch","Get-MgTeamworkDeletedTeamChannelMember" +"Teams","GetMgTeamworkDeletedTeamChannelAllMember.g.cs","v1.0","Get-MgTeamworkDeletedTeamChannelAllMember","","","dispatcher","" +"Teams","GetMgTeamworkDeletedTeamChannelAllMemberCount.g.cs","v1.0","Get-MgTeamworkDeletedTeamChannelAllMemberCount","GET","/teamwork/deletedTeams/{param}/channels/{param}/allMembers/$count","matched","Get-MgTeamworkDeletedTeamChannelAllMemberCount" +"Teams","GetMgTeamworkDeletedTeamChannelCount.g.cs","v1.0","Get-MgTeamworkDeletedTeamChannelCount","GET","/teamwork/deletedTeams/{param}/channels/$count","matched","Get-MgTeamworkDeletedTeamChannelCount" +"Teams","GetMgTeamworkDeletedTeamChannelEnabledApp_Get.g.cs","v1.0","Get-MgTeamworkDeletedTeamChannelEnabledApp","GET","/teamwork/deletedTeams/{param}/channels/{param}/enabledApps/{param}","matched","Get-MgTeamworkDeletedTeamChannelEnabledApp" +"Teams","GetMgTeamworkDeletedTeamChannelEnabledApp_List.g.cs","v1.0","Get-MgTeamworkDeletedTeamChannelEnabledApp","GET","/teamwork/deletedTeams/{param}/channels/{param}/enabledApps","matched","Get-MgTeamworkDeletedTeamChannelEnabledApp" +"Teams","GetMgTeamworkDeletedTeamChannelEnabledApp.g.cs","v1.0","Get-MgTeamworkDeletedTeamChannelEnabledApp","","","dispatcher","" +"Teams","GetMgTeamworkDeletedTeamChannelEnabledAppCount.g.cs","v1.0","Get-MgTeamworkDeletedTeamChannelEnabledAppCount","GET","/teamwork/deletedTeams/{param}/channels/{param}/enabledApps/$count","matched","Get-MgTeamworkDeletedTeamChannelEnabledAppCount" +"Teams","GetMgTeamworkDeletedTeamChannelFileFolder.g.cs","v1.0","Get-MgTeamworkDeletedTeamChannelFileFolder","GET","/teamwork/deletedTeams/{param}/channels/{param}/filesFolder","matched","Get-MgTeamworkDeletedTeamChannelFileFolder" +"Teams","GetMgTeamworkDeletedTeamChannelGetAllMessages.g.cs","v1.0","Get-MgTeamworkDeletedTeamChannelGetAllMessages","GET","/teamwork/deletedTeams/{param}/channels/getAllMessages","no-oracle","" +"Teams","GetMgTeamworkDeletedTeamChannelGetAllRetainedMessages.g.cs","v1.0","Get-MgTeamworkDeletedTeamChannelGetAllRetainedMessages","GET","/teamwork/deletedTeams/{param}/channels/getAllRetainedMessages","mismatch","Get-MgTeamworkDeletedTeamChannelRetainedMessage" +"Teams","GetMgTeamworkDeletedTeamChannelMember_Get.g.cs","v1.0","Get-MgTeamworkDeletedTeamChannelMember","GET","/teamwork/deletedTeams/{param}/channels/{param}/members/{param}","no-oracle","" +"Teams","GetMgTeamworkDeletedTeamChannelMember_List.g.cs","v1.0","Get-MgTeamworkDeletedTeamChannelMember","GET","/teamwork/deletedTeams/{param}/channels/{param}/members","no-oracle","" +"Teams","GetMgTeamworkDeletedTeamChannelMember.g.cs","v1.0","Get-MgTeamworkDeletedTeamChannelMember","","","dispatcher","" +"Teams","GetMgTeamworkDeletedTeamChannelMemberCount.g.cs","v1.0","Get-MgTeamworkDeletedTeamChannelMemberCount","GET","/teamwork/deletedTeams/{param}/channels/{param}/members/$count","matched","Get-MgTeamworkDeletedTeamChannelMemberCount" +"Teams","GetMgTeamworkDeletedTeamChannelMessage_Get.g.cs","v1.0","Get-MgTeamworkDeletedTeamChannelMessage","GET","/teamwork/deletedTeams/{param}/channels/{param}/messages/{param}","matched","Get-MgTeamworkDeletedTeamChannelMessage" +"Teams","GetMgTeamworkDeletedTeamChannelMessage_List.g.cs","v1.0","Get-MgTeamworkDeletedTeamChannelMessage","GET","/teamwork/deletedTeams/{param}/channels/{param}/messages","matched","Get-MgTeamworkDeletedTeamChannelMessage" +"Teams","GetMgTeamworkDeletedTeamChannelMessage.g.cs","v1.0","Get-MgTeamworkDeletedTeamChannelMessage","","","dispatcher","" +"Teams","GetMgTeamworkDeletedTeamChannelMessageCount.g.cs","v1.0","Get-MgTeamworkDeletedTeamChannelMessageCount","GET","/teamwork/deletedTeams/{param}/channels/{param}/messages/$count","matched","Get-MgTeamworkDeletedTeamChannelMessageCount" +"Teams","GetMgTeamworkDeletedTeamChannelMessageDelta.g.cs","v1.0","Get-MgTeamworkDeletedTeamChannelMessageDelta","GET","/teamwork/deletedTeams/{param}/channels/{param}/messages/delta","matched","Get-MgTeamworkDeletedTeamChannelMessageDelta" +"Teams","GetMgTeamworkDeletedTeamChannelMessageHostedContent_Get.g.cs","v1.0","Get-MgTeamworkDeletedTeamChannelMessageHostedContent","GET","/teamwork/deletedTeams/{param}/channels/{param}/messages/{param}/hostedContents/{param}","matched","Get-MgTeamworkDeletedTeamChannelMessageHostedContent" +"Teams","GetMgTeamworkDeletedTeamChannelMessageHostedContent_List.g.cs","v1.0","Get-MgTeamworkDeletedTeamChannelMessageHostedContent","GET","/teamwork/deletedTeams/{param}/channels/{param}/messages/{param}/hostedContents","matched","Get-MgTeamworkDeletedTeamChannelMessageHostedContent" +"Teams","GetMgTeamworkDeletedTeamChannelMessageHostedContent.g.cs","v1.0","Get-MgTeamworkDeletedTeamChannelMessageHostedContent","","","dispatcher","" +"Teams","GetMgTeamworkDeletedTeamChannelMessageHostedContentContent.g.cs","v1.0","Get-MgTeamworkDeletedTeamChannelMessageHostedContentContent","GET","/teamwork/deletedTeams/{param}/channels/{param}/messages/{param}/hostedContents/{param}/$value","no-oracle","" +"Teams","GetMgTeamworkDeletedTeamChannelMessageHostedContentCount.g.cs","v1.0","Get-MgTeamworkDeletedTeamChannelMessageHostedContentCount","GET","/teamwork/deletedTeams/{param}/channels/{param}/messages/{param}/hostedContents/$count","matched","Get-MgTeamworkDeletedTeamChannelMessageHostedContentCount" +"Teams","GetMgTeamworkDeletedTeamChannelMessageReply_Get.g.cs","v1.0","Get-MgTeamworkDeletedTeamChannelMessageReply","GET","/teamwork/deletedTeams/{param}/channels/{param}/messages/{param}/replies/{param}","matched","Get-MgTeamworkDeletedTeamChannelMessageReply" +"Teams","GetMgTeamworkDeletedTeamChannelMessageReply_List.g.cs","v1.0","Get-MgTeamworkDeletedTeamChannelMessageReply","GET","/teamwork/deletedTeams/{param}/channels/{param}/messages/{param}/replies","matched","Get-MgTeamworkDeletedTeamChannelMessageReply" +"Teams","GetMgTeamworkDeletedTeamChannelMessageReply.g.cs","v1.0","Get-MgTeamworkDeletedTeamChannelMessageReply","","","dispatcher","" +"Teams","GetMgTeamworkDeletedTeamChannelMessageReplyCount.g.cs","v1.0","Get-MgTeamworkDeletedTeamChannelMessageReplyCount","GET","/teamwork/deletedTeams/{param}/channels/{param}/messages/{param}/replies/$count","matched","Get-MgTeamworkDeletedTeamChannelMessageReplyCount" +"Teams","GetMgTeamworkDeletedTeamChannelMessageReplyDelta.g.cs","v1.0","Get-MgTeamworkDeletedTeamChannelMessageReplyDelta","GET","/teamwork/deletedTeams/{param}/channels/{param}/messages/{param}/replies/delta","matched","Get-MgTeamworkDeletedTeamChannelMessageReplyDelta" +"Teams","GetMgTeamworkDeletedTeamChannelMessageReplyHostedContent_Get.g.cs","v1.0","Get-MgTeamworkDeletedTeamChannelMessageReplyHostedContent","GET","/teamwork/deletedTeams/{param}/channels/{param}/messages/{param}/replies/{param}/hostedContents/{param}","matched","Get-MgTeamworkDeletedTeamChannelMessageReplyHostedContent" +"Teams","GetMgTeamworkDeletedTeamChannelMessageReplyHostedContent_List.g.cs","v1.0","Get-MgTeamworkDeletedTeamChannelMessageReplyHostedContent","GET","/teamwork/deletedTeams/{param}/channels/{param}/messages/{param}/replies/{param}/hostedContents","matched","Get-MgTeamworkDeletedTeamChannelMessageReplyHostedContent" +"Teams","GetMgTeamworkDeletedTeamChannelMessageReplyHostedContent.g.cs","v1.0","Get-MgTeamworkDeletedTeamChannelMessageReplyHostedContent","","","dispatcher","" +"Teams","GetMgTeamworkDeletedTeamChannelMessageReplyHostedContentContent.g.cs","v1.0","Get-MgTeamworkDeletedTeamChannelMessageReplyHostedContentContent","GET","/teamwork/deletedTeams/{param}/channels/{param}/messages/{param}/replies/{param}/hostedContents/{param}/$value","no-oracle","" +"Teams","GetMgTeamworkDeletedTeamChannelMessageReplyHostedContentCount.g.cs","v1.0","Get-MgTeamworkDeletedTeamChannelMessageReplyHostedContentCount","GET","/teamwork/deletedTeams/{param}/channels/{param}/messages/{param}/replies/{param}/hostedContents/$count","matched","Get-MgTeamworkDeletedTeamChannelMessageReplyHostedContentCount" +"Teams","GetMgTeamworkDeletedTeamChannelSharedWithTeam_Get.g.cs","v1.0","Get-MgTeamworkDeletedTeamChannelSharedWithTeam","GET","/teamwork/deletedTeams/{param}/channels/{param}/sharedWithTeams/{param}","matched","Get-MgTeamworkDeletedTeamChannelSharedWithTeam" +"Teams","GetMgTeamworkDeletedTeamChannelSharedWithTeam_List.g.cs","v1.0","Get-MgTeamworkDeletedTeamChannelSharedWithTeam","GET","/teamwork/deletedTeams/{param}/channels/{param}/sharedWithTeams","matched","Get-MgTeamworkDeletedTeamChannelSharedWithTeam" +"Teams","GetMgTeamworkDeletedTeamChannelSharedWithTeam.g.cs","v1.0","Get-MgTeamworkDeletedTeamChannelSharedWithTeam","","","dispatcher","" +"Teams","GetMgTeamworkDeletedTeamChannelSharedWithTeamAllowedMember_Get.g.cs","v1.0","Get-MgTeamworkDeletedTeamChannelSharedWithTeamAllowedMember","GET","/teamwork/deletedTeams/{param}/channels/{param}/sharedWithTeams/{param}/allowedMembers/{param}","matched","Get-MgTeamworkDeletedTeamChannelSharedWithTeamAllowedMember" +"Teams","GetMgTeamworkDeletedTeamChannelSharedWithTeamAllowedMember_List.g.cs","v1.0","Get-MgTeamworkDeletedTeamChannelSharedWithTeamAllowedMember","GET","/teamwork/deletedTeams/{param}/channels/{param}/sharedWithTeams/{param}/allowedMembers","matched","Get-MgTeamworkDeletedTeamChannelSharedWithTeamAllowedMember" +"Teams","GetMgTeamworkDeletedTeamChannelSharedWithTeamAllowedMember.g.cs","v1.0","Get-MgTeamworkDeletedTeamChannelSharedWithTeamAllowedMember","","","dispatcher","" +"Teams","GetMgTeamworkDeletedTeamChannelSharedWithTeamAllowedMemberCount.g.cs","v1.0","Get-MgTeamworkDeletedTeamChannelSharedWithTeamAllowedMemberCount","GET","/teamwork/deletedTeams/{param}/channels/{param}/sharedWithTeams/{param}/allowedMembers/$count","matched","Get-MgTeamworkDeletedTeamChannelSharedWithTeamAllowedMemberCount" +"Teams","GetMgTeamworkDeletedTeamChannelSharedWithTeamCount.g.cs","v1.0","Get-MgTeamworkDeletedTeamChannelSharedWithTeamCount","GET","/teamwork/deletedTeams/{param}/channels/{param}/sharedWithTeams/$count","matched","Get-MgTeamworkDeletedTeamChannelSharedWithTeamCount" +"Teams","GetMgTeamworkDeletedTeamChannelTab_Get.g.cs","v1.0","Get-MgTeamworkDeletedTeamChannelTab","GET","/teamwork/deletedTeams/{param}/channels/{param}/tabs/{param}","matched","Get-MgTeamworkDeletedTeamChannelTab" +"Teams","GetMgTeamworkDeletedTeamChannelTab_List.g.cs","v1.0","Get-MgTeamworkDeletedTeamChannelTab","GET","/teamwork/deletedTeams/{param}/channels/{param}/tabs","matched","Get-MgTeamworkDeletedTeamChannelTab" +"Teams","GetMgTeamworkDeletedTeamChannelTab.g.cs","v1.0","Get-MgTeamworkDeletedTeamChannelTab","","","dispatcher","" +"Teams","GetMgTeamworkDeletedTeamChannelTabCount.g.cs","v1.0","Get-MgTeamworkDeletedTeamChannelTabCount","GET","/teamwork/deletedTeams/{param}/channels/{param}/tabs/$count","matched","Get-MgTeamworkDeletedTeamChannelTabCount" +"Teams","GetMgTeamworkDeletedTeamChannelTabTeamApp.g.cs","v1.0","Get-MgTeamworkDeletedTeamChannelTabTeamApp","GET","/teamwork/deletedTeams/{param}/channels/{param}/tabs/{param}/teamsApp","matched","Get-MgTeamworkDeletedTeamChannelTabTeamApp" +"Teams","GetMgTeamworkDeletedTeamCount.g.cs","v1.0","Get-MgTeamworkDeletedTeamCount","GET","/teamwork/deletedTeams/$count","matched","Get-MgTeamworkDeletedTeamCount" +"Teams","GetMgTeamworkDeletedTeamGetAllMessages.g.cs","v1.0","Get-MgTeamworkDeletedTeamGetAllMessages","GET","/teamwork/deletedTeams/getAllMessages","mismatch","Get-MgAllTeamworkDeletedTeamMessage" +"Teams","GetMgTeamworkTeamAppSetting.g.cs","v1.0","Get-MgTeamworkTeamAppSetting","GET","/teamwork/teamsAppSettings","matched","Get-MgTeamworkTeamAppSetting" +"Teams","GetMgTeamworkWorkforceIntegration_Get.g.cs","v1.0","Get-MgTeamworkWorkforceIntegration","GET","/teamwork/workforceIntegrations/{param}","matched","Get-MgTeamworkWorkforceIntegration" +"Teams","GetMgTeamworkWorkforceIntegration_List.g.cs","v1.0","Get-MgTeamworkWorkforceIntegration","GET","/teamwork/workforceIntegrations","matched","Get-MgTeamworkWorkforceIntegration" +"Teams","GetMgTeamworkWorkforceIntegration.g.cs","v1.0","Get-MgTeamworkWorkforceIntegration","","","dispatcher","" +"Teams","GetMgTeamworkWorkforceIntegrationCount.g.cs","v1.0","Get-MgTeamworkWorkforceIntegrationCount","GET","/teamwork/workforceIntegrations/$count","matched","Get-MgTeamworkWorkforceIntegrationCount" +"Teams","GetMgUserChat_Get.g.cs","v1.0","Get-MgUserChat","GET","/users/{param}/chats/{param}","matched","Get-MgUserChat" +"Teams","GetMgUserChat_List.g.cs","v1.0","Get-MgUserChat","GET","/users/{param}/chats","matched","Get-MgUserChat" +"Teams","GetMgUserChat.g.cs","v1.0","Get-MgUserChat","","","dispatcher","" +"Teams","GetMgUserChatCount.g.cs","v1.0","Get-MgUserChatCount","GET","/users/{param}/chats/$count","matched","Get-MgUserChatCount" +"Teams","GetMgUserChatGetAllMessages.g.cs","v1.0","Get-MgUserChatGetAllMessages","GET","/users/{param}/chats/getAllMessages","no-oracle","" +"Teams","GetMgUserChatGetAllRetainedMessages.g.cs","v1.0","Get-MgUserChatGetAllRetainedMessages","GET","/users/{param}/chats/getAllRetainedMessages","mismatch","Get-MgUserChatRetainedMessage" +"Teams","GetMgUserChatInstalledApp_Get.g.cs","v1.0","Get-MgUserChatInstalledApp","GET","/users/{param}/chats/{param}/installedApps/{param}","matched","Get-MgUserChatInstalledApp" +"Teams","GetMgUserChatInstalledApp_List.g.cs","v1.0","Get-MgUserChatInstalledApp","GET","/users/{param}/chats/{param}/installedApps","matched","Get-MgUserChatInstalledApp" +"Teams","GetMgUserChatInstalledApp.g.cs","v1.0","Get-MgUserChatInstalledApp","","","dispatcher","" +"Teams","GetMgUserChatInstalledAppCount.g.cs","v1.0","Get-MgUserChatInstalledAppCount","GET","/users/{param}/chats/{param}/installedApps/$count","matched","Get-MgUserChatInstalledAppCount" +"Teams","GetMgUserChatInstalledAppTeamApp.g.cs","v1.0","Get-MgUserChatInstalledAppTeamApp","GET","/users/{param}/chats/{param}/installedApps/{param}/teamsApp","matched","Get-MgUserChatInstalledAppTeamApp" +"Teams","GetMgUserChatInstalledAppTeamAppDefinition.g.cs","v1.0","Get-MgUserChatInstalledAppTeamAppDefinition","GET","/users/{param}/chats/{param}/installedApps/{param}/teamsAppDefinition","matched","Get-MgUserChatInstalledAppTeamAppDefinition" +"Teams","GetMgUserChatLastMessagePreview.g.cs","v1.0","Get-MgUserChatLastMessagePreview","GET","/users/{param}/chats/{param}/lastMessagePreview","matched","Get-MgUserChatLastMessagePreview" +"Teams","GetMgUserChatMember_Get.g.cs","v1.0","Get-MgUserChatMember","GET","/users/{param}/chats/{param}/members/{param}","matched","Get-MgUserChatMember" +"Teams","GetMgUserChatMember_List.g.cs","v1.0","Get-MgUserChatMember","GET","/users/{param}/chats/{param}/members","matched","Get-MgUserChatMember" +"Teams","GetMgUserChatMember.g.cs","v1.0","Get-MgUserChatMember","","","dispatcher","" +"Teams","GetMgUserChatMemberCount.g.cs","v1.0","Get-MgUserChatMemberCount","GET","/users/{param}/chats/{param}/members/$count","matched","Get-MgUserChatMemberCount" +"Teams","GetMgUserChatMessage_Get.g.cs","v1.0","Get-MgUserChatMessage","GET","/users/{param}/chats/{param}/messages/{param}","mismatch","Get-MgAllUserChatMessage" +"Teams","GetMgUserChatMessage_List.g.cs","v1.0","Get-MgUserChatMessage","GET","/users/{param}/chats/{param}/messages","mismatch","Get-MgAllUserChatMessage" +"Teams","GetMgUserChatMessage.g.cs","v1.0","Get-MgUserChatMessage","","","dispatcher","" +"Teams","GetMgUserChatMessageCount.g.cs","v1.0","Get-MgUserChatMessageCount","GET","/users/{param}/chats/{param}/messages/$count","matched","Get-MgUserChatMessageCount" +"Teams","GetMgUserChatMessageDelta.g.cs","v1.0","Get-MgUserChatMessageDelta","GET","/users/{param}/chats/{param}/messages/delta","matched","Get-MgUserChatMessageDelta" +"Teams","GetMgUserChatMessageHostedContent_Get.g.cs","v1.0","Get-MgUserChatMessageHostedContent","GET","/users/{param}/chats/{param}/messages/{param}/hostedContents/{param}","matched","Get-MgUserChatMessageHostedContent" +"Teams","GetMgUserChatMessageHostedContent_List.g.cs","v1.0","Get-MgUserChatMessageHostedContent","GET","/users/{param}/chats/{param}/messages/{param}/hostedContents","matched","Get-MgUserChatMessageHostedContent" +"Teams","GetMgUserChatMessageHostedContent.g.cs","v1.0","Get-MgUserChatMessageHostedContent","","","dispatcher","" +"Teams","GetMgUserChatMessageHostedContentContent.g.cs","v1.0","Get-MgUserChatMessageHostedContentContent","GET","/users/{param}/chats/{param}/messages/{param}/hostedContents/{param}/$value","no-oracle","" +"Teams","GetMgUserChatMessageHostedContentCount.g.cs","v1.0","Get-MgUserChatMessageHostedContentCount","GET","/users/{param}/chats/{param}/messages/{param}/hostedContents/$count","matched","Get-MgUserChatMessageHostedContentCount" +"Teams","GetMgUserChatMessageReply_Get.g.cs","v1.0","Get-MgUserChatMessageReply","GET","/users/{param}/chats/{param}/messages/{param}/replies/{param}","matched","Get-MgUserChatMessageReply" +"Teams","GetMgUserChatMessageReply_List.g.cs","v1.0","Get-MgUserChatMessageReply","GET","/users/{param}/chats/{param}/messages/{param}/replies","matched","Get-MgUserChatMessageReply" +"Teams","GetMgUserChatMessageReply.g.cs","v1.0","Get-MgUserChatMessageReply","","","dispatcher","" +"Teams","GetMgUserChatMessageReplyCount.g.cs","v1.0","Get-MgUserChatMessageReplyCount","GET","/users/{param}/chats/{param}/messages/{param}/replies/$count","matched","Get-MgUserChatMessageReplyCount" +"Teams","GetMgUserChatMessageReplyDelta.g.cs","v1.0","Get-MgUserChatMessageReplyDelta","GET","/users/{param}/chats/{param}/messages/{param}/replies/delta","matched","Get-MgUserChatMessageReplyDelta" +"Teams","GetMgUserChatMessageReplyHostedContent_Get.g.cs","v1.0","Get-MgUserChatMessageReplyHostedContent","GET","/users/{param}/chats/{param}/messages/{param}/replies/{param}/hostedContents/{param}","matched","Get-MgUserChatMessageReplyHostedContent" +"Teams","GetMgUserChatMessageReplyHostedContent_List.g.cs","v1.0","Get-MgUserChatMessageReplyHostedContent","GET","/users/{param}/chats/{param}/messages/{param}/replies/{param}/hostedContents","matched","Get-MgUserChatMessageReplyHostedContent" +"Teams","GetMgUserChatMessageReplyHostedContent.g.cs","v1.0","Get-MgUserChatMessageReplyHostedContent","","","dispatcher","" +"Teams","GetMgUserChatMessageReplyHostedContentContent.g.cs","v1.0","Get-MgUserChatMessageReplyHostedContentContent","GET","/users/{param}/chats/{param}/messages/{param}/replies/{param}/hostedContents/{param}/$value","no-oracle","" +"Teams","GetMgUserChatMessageReplyHostedContentCount.g.cs","v1.0","Get-MgUserChatMessageReplyHostedContentCount","GET","/users/{param}/chats/{param}/messages/{param}/replies/{param}/hostedContents/$count","matched","Get-MgUserChatMessageReplyHostedContentCount" +"Teams","GetMgUserChatPermissionGrant_Get.g.cs","v1.0","Get-MgUserChatPermissionGrant","GET","/users/{param}/chats/{param}/permissionGrants/{param}","matched","Get-MgUserChatPermissionGrant" +"Teams","GetMgUserChatPermissionGrant_List.g.cs","v1.0","Get-MgUserChatPermissionGrant","GET","/users/{param}/chats/{param}/permissionGrants","matched","Get-MgUserChatPermissionGrant" +"Teams","GetMgUserChatPermissionGrant.g.cs","v1.0","Get-MgUserChatPermissionGrant","","","dispatcher","" +"Teams","GetMgUserChatPermissionGrantCount.g.cs","v1.0","Get-MgUserChatPermissionGrantCount","GET","/users/{param}/chats/{param}/permissionGrants/$count","matched","Get-MgUserChatPermissionGrantCount" +"Teams","GetMgUserChatPinnedMessage_Get.g.cs","v1.0","Get-MgUserChatPinnedMessage","GET","/users/{param}/chats/{param}/pinnedMessages/{param}","matched","Get-MgUserChatPinnedMessage" +"Teams","GetMgUserChatPinnedMessage_List.g.cs","v1.0","Get-MgUserChatPinnedMessage","GET","/users/{param}/chats/{param}/pinnedMessages","matched","Get-MgUserChatPinnedMessage" +"Teams","GetMgUserChatPinnedMessage.g.cs","v1.0","Get-MgUserChatPinnedMessage","","","dispatcher","" +"Teams","GetMgUserChatPinnedMessageCount.g.cs","v1.0","Get-MgUserChatPinnedMessageCount","GET","/users/{param}/chats/{param}/pinnedMessages/$count","matched","Get-MgUserChatPinnedMessageCount" +"Teams","GetMgUserChatTab_Get.g.cs","v1.0","Get-MgUserChatTab","GET","/users/{param}/chats/{param}/tabs/{param}","matched","Get-MgUserChatTab" +"Teams","GetMgUserChatTab_List.g.cs","v1.0","Get-MgUserChatTab","GET","/users/{param}/chats/{param}/tabs","matched","Get-MgUserChatTab" +"Teams","GetMgUserChatTab.g.cs","v1.0","Get-MgUserChatTab","","","dispatcher","" +"Teams","GetMgUserChatTabCount.g.cs","v1.0","Get-MgUserChatTabCount","GET","/users/{param}/chats/{param}/tabs/$count","matched","Get-MgUserChatTabCount" +"Teams","GetMgUserChatTabTeamApp.g.cs","v1.0","Get-MgUserChatTabTeamApp","GET","/users/{param}/chats/{param}/tabs/{param}/teamsApp","matched","Get-MgUserChatTabTeamApp" +"Teams","GetMgUserChatTargetedMessage_Get.g.cs","v1.0","Get-MgUserChatTargetedMessage","GET","/users/{param}/chats/{param}/targetedMessages/{param}","matched","Get-MgUserChatTargetedMessage" +"Teams","GetMgUserChatTargetedMessage_List.g.cs","v1.0","Get-MgUserChatTargetedMessage","GET","/users/{param}/chats/{param}/targetedMessages","matched","Get-MgUserChatTargetedMessage" +"Teams","GetMgUserChatTargetedMessage.g.cs","v1.0","Get-MgUserChatTargetedMessage","","","dispatcher","" +"Teams","GetMgUserChatTargetedMessageCount.g.cs","v1.0","Get-MgUserChatTargetedMessageCount","GET","/users/{param}/chats/{param}/targetedMessages/$count","matched","Get-MgUserChatTargetedMessageCount" +"Teams","GetMgUserChatTargetedMessageHostedContent_Get.g.cs","v1.0","Get-MgUserChatTargetedMessageHostedContent","GET","/users/{param}/chats/{param}/targetedMessages/{param}/hostedContents/{param}","matched","Get-MgUserChatTargetedMessageHostedContent" +"Teams","GetMgUserChatTargetedMessageHostedContent_List.g.cs","v1.0","Get-MgUserChatTargetedMessageHostedContent","GET","/users/{param}/chats/{param}/targetedMessages/{param}/hostedContents","matched","Get-MgUserChatTargetedMessageHostedContent" +"Teams","GetMgUserChatTargetedMessageHostedContent.g.cs","v1.0","Get-MgUserChatTargetedMessageHostedContent","","","dispatcher","" +"Teams","GetMgUserChatTargetedMessageHostedContentContent.g.cs","v1.0","Get-MgUserChatTargetedMessageHostedContentContent","GET","/users/{param}/chats/{param}/targetedMessages/{param}/hostedContents/{param}/$value","no-oracle","" +"Teams","GetMgUserChatTargetedMessageHostedContentCount.g.cs","v1.0","Get-MgUserChatTargetedMessageHostedContentCount","GET","/users/{param}/chats/{param}/targetedMessages/{param}/hostedContents/$count","matched","Get-MgUserChatTargetedMessageHostedContentCount" +"Teams","GetMgUserChatTargetedMessageReply_Get.g.cs","v1.0","Get-MgUserChatTargetedMessageReply","GET","/users/{param}/chats/{param}/targetedMessages/{param}/replies/{param}","matched","Get-MgUserChatTargetedMessageReply" +"Teams","GetMgUserChatTargetedMessageReply_List.g.cs","v1.0","Get-MgUserChatTargetedMessageReply","GET","/users/{param}/chats/{param}/targetedMessages/{param}/replies","matched","Get-MgUserChatTargetedMessageReply" +"Teams","GetMgUserChatTargetedMessageReply.g.cs","v1.0","Get-MgUserChatTargetedMessageReply","","","dispatcher","" +"Teams","GetMgUserChatTargetedMessageReplyCount.g.cs","v1.0","Get-MgUserChatTargetedMessageReplyCount","GET","/users/{param}/chats/{param}/targetedMessages/{param}/replies/$count","matched","Get-MgUserChatTargetedMessageReplyCount" +"Teams","GetMgUserChatTargetedMessageReplyDelta.g.cs","v1.0","Get-MgUserChatTargetedMessageReplyDelta","GET","/users/{param}/chats/{param}/targetedMessages/{param}/replies/delta","matched","Get-MgUserChatTargetedMessageReplyDelta" +"Teams","GetMgUserChatTargetedMessageReplyHostedContent_Get.g.cs","v1.0","Get-MgUserChatTargetedMessageReplyHostedContent","GET","/users/{param}/chats/{param}/targetedMessages/{param}/replies/{param}/hostedContents/{param}","matched","Get-MgUserChatTargetedMessageReplyHostedContent" +"Teams","GetMgUserChatTargetedMessageReplyHostedContent_List.g.cs","v1.0","Get-MgUserChatTargetedMessageReplyHostedContent","GET","/users/{param}/chats/{param}/targetedMessages/{param}/replies/{param}/hostedContents","matched","Get-MgUserChatTargetedMessageReplyHostedContent" +"Teams","GetMgUserChatTargetedMessageReplyHostedContent.g.cs","v1.0","Get-MgUserChatTargetedMessageReplyHostedContent","","","dispatcher","" +"Teams","GetMgUserChatTargetedMessageReplyHostedContentContent.g.cs","v1.0","Get-MgUserChatTargetedMessageReplyHostedContentContent","GET","/users/{param}/chats/{param}/targetedMessages/{param}/replies/{param}/hostedContents/{param}/$value","no-oracle","" +"Teams","GetMgUserChatTargetedMessageReplyHostedContentCount.g.cs","v1.0","Get-MgUserChatTargetedMessageReplyHostedContentCount","GET","/users/{param}/chats/{param}/targetedMessages/{param}/replies/{param}/hostedContents/$count","matched","Get-MgUserChatTargetedMessageReplyHostedContentCount" +"Teams","GetMgUserJoinedTeam_Get.g.cs","v1.0","Get-MgUserJoinedTeam","GET","/users/{param}/joinedTeams/{param}","no-oracle","" +"Teams","GetMgUserJoinedTeam_List.g.cs","v1.0","Get-MgUserJoinedTeam","GET","/users/{param}/joinedTeams","matched","Get-MgUserJoinedTeam" +"Teams","GetMgUserJoinedTeam.g.cs","v1.0","Get-MgUserJoinedTeam","","","dispatcher","" +"Teams","GetMgUserJoinedTeamAllChannel_Get.g.cs","v1.0","Get-MgUserJoinedTeamAllChannel","GET","/users/{param}/joinedTeams/{param}/allChannels/{param}","no-oracle","" +"Teams","GetMgUserJoinedTeamAllChannel_List.g.cs","v1.0","Get-MgUserJoinedTeamAllChannel","GET","/users/{param}/joinedTeams/{param}/allChannels","no-oracle","" +"Teams","GetMgUserJoinedTeamAllChannel.g.cs","v1.0","Get-MgUserJoinedTeamAllChannel","","","dispatcher","" +"Teams","GetMgUserJoinedTeamAllChannelCount.g.cs","v1.0","Get-MgUserJoinedTeamAllChannelCount","GET","/users/{param}/joinedTeams/{param}/allChannels/$count","no-oracle","" +"Teams","GetMgUserJoinedTeamChannel_Get.g.cs","v1.0","Get-MgUserJoinedTeamChannel","GET","/users/{param}/joinedTeams/{param}/channels/{param}","no-oracle","" +"Teams","GetMgUserJoinedTeamChannel_List.g.cs","v1.0","Get-MgUserJoinedTeamChannel","GET","/users/{param}/joinedTeams/{param}/channels","no-oracle","" +"Teams","GetMgUserJoinedTeamChannel.g.cs","v1.0","Get-MgUserJoinedTeamChannel","","","dispatcher","" +"Teams","GetMgUserJoinedTeamChannelAllMember_Get.g.cs","v1.0","Get-MgUserJoinedTeamChannelAllMember","GET","/users/{param}/joinedTeams/{param}/channels/{param}/allMembers/{param}","no-oracle","" +"Teams","GetMgUserJoinedTeamChannelAllMember_List.g.cs","v1.0","Get-MgUserJoinedTeamChannelAllMember","GET","/users/{param}/joinedTeams/{param}/channels/{param}/allMembers","no-oracle","" +"Teams","GetMgUserJoinedTeamChannelAllMember.g.cs","v1.0","Get-MgUserJoinedTeamChannelAllMember","","","dispatcher","" +"Teams","GetMgUserJoinedTeamChannelAllMemberCount.g.cs","v1.0","Get-MgUserJoinedTeamChannelAllMemberCount","GET","/users/{param}/joinedTeams/{param}/channels/{param}/allMembers/$count","no-oracle","" +"Teams","GetMgUserJoinedTeamChannelCount.g.cs","v1.0","Get-MgUserJoinedTeamChannelCount","GET","/users/{param}/joinedTeams/{param}/channels/$count","no-oracle","" +"Teams","GetMgUserJoinedTeamChannelEnabledApp_Get.g.cs","v1.0","Get-MgUserJoinedTeamChannelEnabledApp","GET","/users/{param}/joinedTeams/{param}/channels/{param}/enabledApps/{param}","no-oracle","" +"Teams","GetMgUserJoinedTeamChannelEnabledApp_List.g.cs","v1.0","Get-MgUserJoinedTeamChannelEnabledApp","GET","/users/{param}/joinedTeams/{param}/channels/{param}/enabledApps","no-oracle","" +"Teams","GetMgUserJoinedTeamChannelEnabledApp.g.cs","v1.0","Get-MgUserJoinedTeamChannelEnabledApp","","","dispatcher","" +"Teams","GetMgUserJoinedTeamChannelEnabledAppCount.g.cs","v1.0","Get-MgUserJoinedTeamChannelEnabledAppCount","GET","/users/{param}/joinedTeams/{param}/channels/{param}/enabledApps/$count","no-oracle","" +"Teams","GetMgUserJoinedTeamChannelFileFolder.g.cs","v1.0","Get-MgUserJoinedTeamChannelFileFolder","GET","/users/{param}/joinedTeams/{param}/channels/{param}/filesFolder","no-oracle","" +"Teams","GetMgUserJoinedTeamChannelGetAllMessages.g.cs","v1.0","Get-MgUserJoinedTeamChannelGetAllMessages","GET","/users/{param}/joinedTeams/{param}/channels/getAllMessages","no-oracle","" +"Teams","GetMgUserJoinedTeamChannelGetAllRetainedMessages.g.cs","v1.0","Get-MgUserJoinedTeamChannelGetAllRetainedMessages","GET","/users/{param}/joinedTeams/{param}/channels/getAllRetainedMessages","no-oracle","" +"Teams","GetMgUserJoinedTeamChannelMember_Get.g.cs","v1.0","Get-MgUserJoinedTeamChannelMember","GET","/users/{param}/joinedTeams/{param}/channels/{param}/members/{param}","no-oracle","" +"Teams","GetMgUserJoinedTeamChannelMember_List.g.cs","v1.0","Get-MgUserJoinedTeamChannelMember","GET","/users/{param}/joinedTeams/{param}/channels/{param}/members","no-oracle","" +"Teams","GetMgUserJoinedTeamChannelMember.g.cs","v1.0","Get-MgUserJoinedTeamChannelMember","","","dispatcher","" +"Teams","GetMgUserJoinedTeamChannelMemberCount.g.cs","v1.0","Get-MgUserJoinedTeamChannelMemberCount","GET","/users/{param}/joinedTeams/{param}/channels/{param}/members/$count","no-oracle","" +"Teams","GetMgUserJoinedTeamChannelMessage_Get.g.cs","v1.0","Get-MgUserJoinedTeamChannelMessage","GET","/users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}","no-oracle","" +"Teams","GetMgUserJoinedTeamChannelMessage_List.g.cs","v1.0","Get-MgUserJoinedTeamChannelMessage","GET","/users/{param}/joinedTeams/{param}/channels/{param}/messages","no-oracle","" +"Teams","GetMgUserJoinedTeamChannelMessage.g.cs","v1.0","Get-MgUserJoinedTeamChannelMessage","","","dispatcher","" +"Teams","GetMgUserJoinedTeamChannelMessageCount.g.cs","v1.0","Get-MgUserJoinedTeamChannelMessageCount","GET","/users/{param}/joinedTeams/{param}/channels/{param}/messages/$count","no-oracle","" +"Teams","GetMgUserJoinedTeamChannelMessageDelta.g.cs","v1.0","Get-MgUserJoinedTeamChannelMessageDelta","GET","/users/{param}/joinedTeams/{param}/channels/{param}/messages/delta","no-oracle","" +"Teams","GetMgUserJoinedTeamChannelMessageHostedContent_Get.g.cs","v1.0","Get-MgUserJoinedTeamChannelMessageHostedContent","GET","/users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/hostedContents/{param}","no-oracle","" +"Teams","GetMgUserJoinedTeamChannelMessageHostedContent_List.g.cs","v1.0","Get-MgUserJoinedTeamChannelMessageHostedContent","GET","/users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/hostedContents","no-oracle","" +"Teams","GetMgUserJoinedTeamChannelMessageHostedContent.g.cs","v1.0","Get-MgUserJoinedTeamChannelMessageHostedContent","","","dispatcher","" +"Teams","GetMgUserJoinedTeamChannelMessageHostedContentContent.g.cs","v1.0","Get-MgUserJoinedTeamChannelMessageHostedContentContent","GET","/users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/hostedContents/{param}/$value","no-oracle","" +"Teams","GetMgUserJoinedTeamChannelMessageHostedContentCount.g.cs","v1.0","Get-MgUserJoinedTeamChannelMessageHostedContentCount","GET","/users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/hostedContents/$count","no-oracle","" +"Teams","GetMgUserJoinedTeamChannelMessageReply_Get.g.cs","v1.0","Get-MgUserJoinedTeamChannelMessageReply","GET","/users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/replies/{param}","no-oracle","" +"Teams","GetMgUserJoinedTeamChannelMessageReply_List.g.cs","v1.0","Get-MgUserJoinedTeamChannelMessageReply","GET","/users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/replies","no-oracle","" +"Teams","GetMgUserJoinedTeamChannelMessageReply.g.cs","v1.0","Get-MgUserJoinedTeamChannelMessageReply","","","dispatcher","" +"Teams","GetMgUserJoinedTeamChannelMessageReplyCount.g.cs","v1.0","Get-MgUserJoinedTeamChannelMessageReplyCount","GET","/users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/replies/$count","no-oracle","" +"Teams","GetMgUserJoinedTeamChannelMessageReplyDelta.g.cs","v1.0","Get-MgUserJoinedTeamChannelMessageReplyDelta","GET","/users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/replies/delta","no-oracle","" +"Teams","GetMgUserJoinedTeamChannelMessageReplyHostedContent_Get.g.cs","v1.0","Get-MgUserJoinedTeamChannelMessageReplyHostedContent","GET","/users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/replies/{param}/hostedContents/{param}","no-oracle","" +"Teams","GetMgUserJoinedTeamChannelMessageReplyHostedContent_List.g.cs","v1.0","Get-MgUserJoinedTeamChannelMessageReplyHostedContent","GET","/users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/replies/{param}/hostedContents","no-oracle","" +"Teams","GetMgUserJoinedTeamChannelMessageReplyHostedContent.g.cs","v1.0","Get-MgUserJoinedTeamChannelMessageReplyHostedContent","","","dispatcher","" +"Teams","GetMgUserJoinedTeamChannelMessageReplyHostedContentContent.g.cs","v1.0","Get-MgUserJoinedTeamChannelMessageReplyHostedContentContent","GET","/users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/replies/{param}/hostedContents/{param}/$value","no-oracle","" +"Teams","GetMgUserJoinedTeamChannelMessageReplyHostedContentCount.g.cs","v1.0","Get-MgUserJoinedTeamChannelMessageReplyHostedContentCount","GET","/users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/replies/{param}/hostedContents/$count","no-oracle","" +"Teams","GetMgUserJoinedTeamChannelSharedWithTeam_Get.g.cs","v1.0","Get-MgUserJoinedTeamChannelSharedWithTeam","GET","/users/{param}/joinedTeams/{param}/channels/{param}/sharedWithTeams/{param}","no-oracle","" +"Teams","GetMgUserJoinedTeamChannelSharedWithTeam_List.g.cs","v1.0","Get-MgUserJoinedTeamChannelSharedWithTeam","GET","/users/{param}/joinedTeams/{param}/channels/{param}/sharedWithTeams","no-oracle","" +"Teams","GetMgUserJoinedTeamChannelSharedWithTeam.g.cs","v1.0","Get-MgUserJoinedTeamChannelSharedWithTeam","","","dispatcher","" +"Teams","GetMgUserJoinedTeamChannelSharedWithTeamAllowedMember_Get.g.cs","v1.0","Get-MgUserJoinedTeamChannelSharedWithTeamAllowedMember","GET","/users/{param}/joinedTeams/{param}/channels/{param}/sharedWithTeams/{param}/allowedMembers/{param}","no-oracle","" +"Teams","GetMgUserJoinedTeamChannelSharedWithTeamAllowedMember_List.g.cs","v1.0","Get-MgUserJoinedTeamChannelSharedWithTeamAllowedMember","GET","/users/{param}/joinedTeams/{param}/channels/{param}/sharedWithTeams/{param}/allowedMembers","no-oracle","" +"Teams","GetMgUserJoinedTeamChannelSharedWithTeamAllowedMember.g.cs","v1.0","Get-MgUserJoinedTeamChannelSharedWithTeamAllowedMember","","","dispatcher","" +"Teams","GetMgUserJoinedTeamChannelSharedWithTeamAllowedMemberCount.g.cs","v1.0","Get-MgUserJoinedTeamChannelSharedWithTeamAllowedMemberCount","GET","/users/{param}/joinedTeams/{param}/channels/{param}/sharedWithTeams/{param}/allowedMembers/$count","no-oracle","" +"Teams","GetMgUserJoinedTeamChannelSharedWithTeamCount.g.cs","v1.0","Get-MgUserJoinedTeamChannelSharedWithTeamCount","GET","/users/{param}/joinedTeams/{param}/channels/{param}/sharedWithTeams/$count","no-oracle","" +"Teams","GetMgUserJoinedTeamChannelTab_Get.g.cs","v1.0","Get-MgUserJoinedTeamChannelTab","GET","/users/{param}/joinedTeams/{param}/channels/{param}/tabs/{param}","no-oracle","" +"Teams","GetMgUserJoinedTeamChannelTab_List.g.cs","v1.0","Get-MgUserJoinedTeamChannelTab","GET","/users/{param}/joinedTeams/{param}/channels/{param}/tabs","no-oracle","" +"Teams","GetMgUserJoinedTeamChannelTab.g.cs","v1.0","Get-MgUserJoinedTeamChannelTab","","","dispatcher","" +"Teams","GetMgUserJoinedTeamChannelTabCount.g.cs","v1.0","Get-MgUserJoinedTeamChannelTabCount","GET","/users/{param}/joinedTeams/{param}/channels/{param}/tabs/$count","no-oracle","" +"Teams","GetMgUserJoinedTeamChannelTabTeamApp.g.cs","v1.0","Get-MgUserJoinedTeamChannelTabTeamApp","GET","/users/{param}/joinedTeams/{param}/channels/{param}/tabs/{param}/teamsApp","no-oracle","" +"Teams","GetMgUserJoinedTeamCount.g.cs","v1.0","Get-MgUserJoinedTeamCount","GET","/users/{param}/joinedTeams/$count","no-oracle","" +"Teams","GetMgUserJoinedTeamGetAllMessages.g.cs","v1.0","Get-MgUserJoinedTeamGetAllMessages","GET","/users/{param}/joinedTeams/getAllMessages","no-oracle","" +"Teams","GetMgUserJoinedTeamGroup.g.cs","v1.0","Get-MgUserJoinedTeamGroup","GET","/users/{param}/joinedTeams/{param}/group","no-oracle","" +"Teams","GetMgUserJoinedTeamGroupServiceProvisioningError.g.cs","v1.0","Get-MgUserJoinedTeamGroupServiceProvisioningError","GET","/users/{param}/joinedTeams/{param}/group/serviceProvisioningErrors","no-oracle","" +"Teams","GetMgUserJoinedTeamGroupServiceProvisioningErrorCount.g.cs","v1.0","Get-MgUserJoinedTeamGroupServiceProvisioningErrorCount","GET","/users/{param}/joinedTeams/{param}/group/serviceProvisioningErrors/$count","no-oracle","" +"Teams","GetMgUserJoinedTeamIncomingChannel_Get.g.cs","v1.0","Get-MgUserJoinedTeamIncomingChannel","GET","/users/{param}/joinedTeams/{param}/incomingChannels/{param}","no-oracle","" +"Teams","GetMgUserJoinedTeamIncomingChannel_List.g.cs","v1.0","Get-MgUserJoinedTeamIncomingChannel","GET","/users/{param}/joinedTeams/{param}/incomingChannels","no-oracle","" +"Teams","GetMgUserJoinedTeamIncomingChannel.g.cs","v1.0","Get-MgUserJoinedTeamIncomingChannel","","","dispatcher","" +"Teams","GetMgUserJoinedTeamIncomingChannelCount.g.cs","v1.0","Get-MgUserJoinedTeamIncomingChannelCount","GET","/users/{param}/joinedTeams/{param}/incomingChannels/$count","no-oracle","" +"Teams","GetMgUserJoinedTeamInstalledApp_Get.g.cs","v1.0","Get-MgUserJoinedTeamInstalledApp","GET","/users/{param}/joinedTeams/{param}/installedApps/{param}","no-oracle","" +"Teams","GetMgUserJoinedTeamInstalledApp_List.g.cs","v1.0","Get-MgUserJoinedTeamInstalledApp","GET","/users/{param}/joinedTeams/{param}/installedApps","no-oracle","" +"Teams","GetMgUserJoinedTeamInstalledApp.g.cs","v1.0","Get-MgUserJoinedTeamInstalledApp","","","dispatcher","" +"Teams","GetMgUserJoinedTeamInstalledAppCount.g.cs","v1.0","Get-MgUserJoinedTeamInstalledAppCount","GET","/users/{param}/joinedTeams/{param}/installedApps/$count","no-oracle","" +"Teams","GetMgUserJoinedTeamInstalledAppTeamApp.g.cs","v1.0","Get-MgUserJoinedTeamInstalledAppTeamApp","GET","/users/{param}/joinedTeams/{param}/installedApps/{param}/teamsApp","no-oracle","" +"Teams","GetMgUserJoinedTeamInstalledAppTeamAppDefinition.g.cs","v1.0","Get-MgUserJoinedTeamInstalledAppTeamAppDefinition","GET","/users/{param}/joinedTeams/{param}/installedApps/{param}/teamsAppDefinition","no-oracle","" +"Teams","GetMgUserJoinedTeamMember_Get.g.cs","v1.0","Get-MgUserJoinedTeamMember","GET","/users/{param}/joinedTeams/{param}/members/{param}","no-oracle","" +"Teams","GetMgUserJoinedTeamMember_List.g.cs","v1.0","Get-MgUserJoinedTeamMember","GET","/users/{param}/joinedTeams/{param}/members","no-oracle","" +"Teams","GetMgUserJoinedTeamMember.g.cs","v1.0","Get-MgUserJoinedTeamMember","","","dispatcher","" +"Teams","GetMgUserJoinedTeamMemberCount.g.cs","v1.0","Get-MgUserJoinedTeamMemberCount","GET","/users/{param}/joinedTeams/{param}/members/$count","no-oracle","" +"Teams","GetMgUserJoinedTeamOperation_Get.g.cs","v1.0","Get-MgUserJoinedTeamOperation","GET","/users/{param}/joinedTeams/{param}/operations/{param}","no-oracle","" +"Teams","GetMgUserJoinedTeamOperation_List.g.cs","v1.0","Get-MgUserJoinedTeamOperation","GET","/users/{param}/joinedTeams/{param}/operations","no-oracle","" +"Teams","GetMgUserJoinedTeamOperation.g.cs","v1.0","Get-MgUserJoinedTeamOperation","","","dispatcher","" +"Teams","GetMgUserJoinedTeamOperationCount.g.cs","v1.0","Get-MgUserJoinedTeamOperationCount","GET","/users/{param}/joinedTeams/{param}/operations/$count","no-oracle","" +"Teams","GetMgUserJoinedTeamPermissionGrant_Get.g.cs","v1.0","Get-MgUserJoinedTeamPermissionGrant","GET","/users/{param}/joinedTeams/{param}/permissionGrants/{param}","no-oracle","" +"Teams","GetMgUserJoinedTeamPermissionGrant_List.g.cs","v1.0","Get-MgUserJoinedTeamPermissionGrant","GET","/users/{param}/joinedTeams/{param}/permissionGrants","no-oracle","" +"Teams","GetMgUserJoinedTeamPermissionGrant.g.cs","v1.0","Get-MgUserJoinedTeamPermissionGrant","","","dispatcher","" +"Teams","GetMgUserJoinedTeamPermissionGrantCount.g.cs","v1.0","Get-MgUserJoinedTeamPermissionGrantCount","GET","/users/{param}/joinedTeams/{param}/permissionGrants/$count","no-oracle","" +"Teams","GetMgUserJoinedTeamPhoto.g.cs","v1.0","Get-MgUserJoinedTeamPhoto","GET","/users/{param}/joinedTeams/{param}/photo","no-oracle","" +"Teams","GetMgUserJoinedTeamPhotoContent.g.cs","v1.0","Get-MgUserJoinedTeamPhotoContent","GET","/users/{param}/joinedTeams/{param}/photo/$value","no-oracle","" +"Teams","GetMgUserJoinedTeamPrimaryChannel.g.cs","v1.0","Get-MgUserJoinedTeamPrimaryChannel","GET","/users/{param}/joinedTeams/{param}/primaryChannel","no-oracle","" +"Teams","GetMgUserJoinedTeamPrimaryChannelAllMember_Get.g.cs","v1.0","Get-MgUserJoinedTeamPrimaryChannelAllMember","GET","/users/{param}/joinedTeams/{param}/primaryChannel/allMembers/{param}","no-oracle","" +"Teams","GetMgUserJoinedTeamPrimaryChannelAllMember_List.g.cs","v1.0","Get-MgUserJoinedTeamPrimaryChannelAllMember","GET","/users/{param}/joinedTeams/{param}/primaryChannel/allMembers","no-oracle","" +"Teams","GetMgUserJoinedTeamPrimaryChannelAllMember.g.cs","v1.0","Get-MgUserJoinedTeamPrimaryChannelAllMember","","","dispatcher","" +"Teams","GetMgUserJoinedTeamPrimaryChannelAllMemberCount.g.cs","v1.0","Get-MgUserJoinedTeamPrimaryChannelAllMemberCount","GET","/users/{param}/joinedTeams/{param}/primaryChannel/allMembers/$count","no-oracle","" +"Teams","GetMgUserJoinedTeamPrimaryChannelEnabledApp_Get.g.cs","v1.0","Get-MgUserJoinedTeamPrimaryChannelEnabledApp","GET","/users/{param}/joinedTeams/{param}/primaryChannel/enabledApps/{param}","no-oracle","" +"Teams","GetMgUserJoinedTeamPrimaryChannelEnabledApp_List.g.cs","v1.0","Get-MgUserJoinedTeamPrimaryChannelEnabledApp","GET","/users/{param}/joinedTeams/{param}/primaryChannel/enabledApps","no-oracle","" +"Teams","GetMgUserJoinedTeamPrimaryChannelEnabledApp.g.cs","v1.0","Get-MgUserJoinedTeamPrimaryChannelEnabledApp","","","dispatcher","" +"Teams","GetMgUserJoinedTeamPrimaryChannelEnabledAppCount.g.cs","v1.0","Get-MgUserJoinedTeamPrimaryChannelEnabledAppCount","GET","/users/{param}/joinedTeams/{param}/primaryChannel/enabledApps/$count","no-oracle","" +"Teams","GetMgUserJoinedTeamPrimaryChannelFileFolder.g.cs","v1.0","Get-MgUserJoinedTeamPrimaryChannelFileFolder","GET","/users/{param}/joinedTeams/{param}/primaryChannel/filesFolder","no-oracle","" +"Teams","GetMgUserJoinedTeamPrimaryChannelMember_Get.g.cs","v1.0","Get-MgUserJoinedTeamPrimaryChannelMember","GET","/users/{param}/joinedTeams/{param}/primaryChannel/members/{param}","no-oracle","" +"Teams","GetMgUserJoinedTeamPrimaryChannelMember_List.g.cs","v1.0","Get-MgUserJoinedTeamPrimaryChannelMember","GET","/users/{param}/joinedTeams/{param}/primaryChannel/members","no-oracle","" +"Teams","GetMgUserJoinedTeamPrimaryChannelMember.g.cs","v1.0","Get-MgUserJoinedTeamPrimaryChannelMember","","","dispatcher","" +"Teams","GetMgUserJoinedTeamPrimaryChannelMemberCount.g.cs","v1.0","Get-MgUserJoinedTeamPrimaryChannelMemberCount","GET","/users/{param}/joinedTeams/{param}/primaryChannel/members/$count","no-oracle","" +"Teams","GetMgUserJoinedTeamPrimaryChannelMessage_Get.g.cs","v1.0","Get-MgUserJoinedTeamPrimaryChannelMessage","GET","/users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}","no-oracle","" +"Teams","GetMgUserJoinedTeamPrimaryChannelMessage_List.g.cs","v1.0","Get-MgUserJoinedTeamPrimaryChannelMessage","GET","/users/{param}/joinedTeams/{param}/primaryChannel/messages","no-oracle","" +"Teams","GetMgUserJoinedTeamPrimaryChannelMessage.g.cs","v1.0","Get-MgUserJoinedTeamPrimaryChannelMessage","","","dispatcher","" +"Teams","GetMgUserJoinedTeamPrimaryChannelMessageCount.g.cs","v1.0","Get-MgUserJoinedTeamPrimaryChannelMessageCount","GET","/users/{param}/joinedTeams/{param}/primaryChannel/messages/$count","no-oracle","" +"Teams","GetMgUserJoinedTeamPrimaryChannelMessageDelta.g.cs","v1.0","Get-MgUserJoinedTeamPrimaryChannelMessageDelta","GET","/users/{param}/joinedTeams/{param}/primaryChannel/messages/delta","no-oracle","" +"Teams","GetMgUserJoinedTeamPrimaryChannelMessageHostedContent_Get.g.cs","v1.0","Get-MgUserJoinedTeamPrimaryChannelMessageHostedContent","GET","/users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/hostedContents/{param}","no-oracle","" +"Teams","GetMgUserJoinedTeamPrimaryChannelMessageHostedContent_List.g.cs","v1.0","Get-MgUserJoinedTeamPrimaryChannelMessageHostedContent","GET","/users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/hostedContents","no-oracle","" +"Teams","GetMgUserJoinedTeamPrimaryChannelMessageHostedContent.g.cs","v1.0","Get-MgUserJoinedTeamPrimaryChannelMessageHostedContent","","","dispatcher","" +"Teams","GetMgUserJoinedTeamPrimaryChannelMessageHostedContentContent.g.cs","v1.0","Get-MgUserJoinedTeamPrimaryChannelMessageHostedContentContent","GET","/users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/hostedContents/{param}/$value","no-oracle","" +"Teams","GetMgUserJoinedTeamPrimaryChannelMessageHostedContentCount.g.cs","v1.0","Get-MgUserJoinedTeamPrimaryChannelMessageHostedContentCount","GET","/users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/hostedContents/$count","no-oracle","" +"Teams","GetMgUserJoinedTeamPrimaryChannelMessageReply_Get.g.cs","v1.0","Get-MgUserJoinedTeamPrimaryChannelMessageReply","GET","/users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/replies/{param}","no-oracle","" +"Teams","GetMgUserJoinedTeamPrimaryChannelMessageReply_List.g.cs","v1.0","Get-MgUserJoinedTeamPrimaryChannelMessageReply","GET","/users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/replies","no-oracle","" +"Teams","GetMgUserJoinedTeamPrimaryChannelMessageReply.g.cs","v1.0","Get-MgUserJoinedTeamPrimaryChannelMessageReply","","","dispatcher","" +"Teams","GetMgUserJoinedTeamPrimaryChannelMessageReplyCount.g.cs","v1.0","Get-MgUserJoinedTeamPrimaryChannelMessageReplyCount","GET","/users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/replies/$count","no-oracle","" +"Teams","GetMgUserJoinedTeamPrimaryChannelMessageReplyDelta.g.cs","v1.0","Get-MgUserJoinedTeamPrimaryChannelMessageReplyDelta","GET","/users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/replies/delta","no-oracle","" +"Teams","GetMgUserJoinedTeamPrimaryChannelMessageReplyHostedContent_Get.g.cs","v1.0","Get-MgUserJoinedTeamPrimaryChannelMessageReplyHostedContent","GET","/users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/replies/{param}/hostedContents/{param}","no-oracle","" +"Teams","GetMgUserJoinedTeamPrimaryChannelMessageReplyHostedContent_List.g.cs","v1.0","Get-MgUserJoinedTeamPrimaryChannelMessageReplyHostedContent","GET","/users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/replies/{param}/hostedContents","no-oracle","" +"Teams","GetMgUserJoinedTeamPrimaryChannelMessageReplyHostedContent.g.cs","v1.0","Get-MgUserJoinedTeamPrimaryChannelMessageReplyHostedContent","","","dispatcher","" +"Teams","GetMgUserJoinedTeamPrimaryChannelMessageReplyHostedContentContent.g.cs","v1.0","Get-MgUserJoinedTeamPrimaryChannelMessageReplyHostedContentContent","GET","/users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/replies/{param}/hostedContents/{param}/$value","no-oracle","" +"Teams","GetMgUserJoinedTeamPrimaryChannelMessageReplyHostedContentCount.g.cs","v1.0","Get-MgUserJoinedTeamPrimaryChannelMessageReplyHostedContentCount","GET","/users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/replies/{param}/hostedContents/$count","no-oracle","" +"Teams","GetMgUserJoinedTeamPrimaryChannelSharedWithTeam_Get.g.cs","v1.0","Get-MgUserJoinedTeamPrimaryChannelSharedWithTeam","GET","/users/{param}/joinedTeams/{param}/primaryChannel/sharedWithTeams/{param}","no-oracle","" +"Teams","GetMgUserJoinedTeamPrimaryChannelSharedWithTeam_List.g.cs","v1.0","Get-MgUserJoinedTeamPrimaryChannelSharedWithTeam","GET","/users/{param}/joinedTeams/{param}/primaryChannel/sharedWithTeams","no-oracle","" +"Teams","GetMgUserJoinedTeamPrimaryChannelSharedWithTeam.g.cs","v1.0","Get-MgUserJoinedTeamPrimaryChannelSharedWithTeam","","","dispatcher","" +"Teams","GetMgUserJoinedTeamPrimaryChannelSharedWithTeamAllowedMember_Get.g.cs","v1.0","Get-MgUserJoinedTeamPrimaryChannelSharedWithTeamAllowedMember","GET","/users/{param}/joinedTeams/{param}/primaryChannel/sharedWithTeams/{param}/allowedMembers/{param}","no-oracle","" +"Teams","GetMgUserJoinedTeamPrimaryChannelSharedWithTeamAllowedMember_List.g.cs","v1.0","Get-MgUserJoinedTeamPrimaryChannelSharedWithTeamAllowedMember","GET","/users/{param}/joinedTeams/{param}/primaryChannel/sharedWithTeams/{param}/allowedMembers","no-oracle","" +"Teams","GetMgUserJoinedTeamPrimaryChannelSharedWithTeamAllowedMember.g.cs","v1.0","Get-MgUserJoinedTeamPrimaryChannelSharedWithTeamAllowedMember","","","dispatcher","" +"Teams","GetMgUserJoinedTeamPrimaryChannelSharedWithTeamAllowedMemberCount.g.cs","v1.0","Get-MgUserJoinedTeamPrimaryChannelSharedWithTeamAllowedMemberCount","GET","/users/{param}/joinedTeams/{param}/primaryChannel/sharedWithTeams/{param}/allowedMembers/$count","no-oracle","" +"Teams","GetMgUserJoinedTeamPrimaryChannelSharedWithTeamCount.g.cs","v1.0","Get-MgUserJoinedTeamPrimaryChannelSharedWithTeamCount","GET","/users/{param}/joinedTeams/{param}/primaryChannel/sharedWithTeams/$count","no-oracle","" +"Teams","GetMgUserJoinedTeamPrimaryChannelTab_Get.g.cs","v1.0","Get-MgUserJoinedTeamPrimaryChannelTab","GET","/users/{param}/joinedTeams/{param}/primaryChannel/tabs/{param}","no-oracle","" +"Teams","GetMgUserJoinedTeamPrimaryChannelTab_List.g.cs","v1.0","Get-MgUserJoinedTeamPrimaryChannelTab","GET","/users/{param}/joinedTeams/{param}/primaryChannel/tabs","no-oracle","" +"Teams","GetMgUserJoinedTeamPrimaryChannelTab.g.cs","v1.0","Get-MgUserJoinedTeamPrimaryChannelTab","","","dispatcher","" +"Teams","GetMgUserJoinedTeamPrimaryChannelTabCount.g.cs","v1.0","Get-MgUserJoinedTeamPrimaryChannelTabCount","GET","/users/{param}/joinedTeams/{param}/primaryChannel/tabs/$count","no-oracle","" +"Teams","GetMgUserJoinedTeamPrimaryChannelTabTeamApp.g.cs","v1.0","Get-MgUserJoinedTeamPrimaryChannelTabTeamApp","GET","/users/{param}/joinedTeams/{param}/primaryChannel/tabs/{param}/teamsApp","no-oracle","" +"Teams","GetMgUserJoinedTeamSchedule.g.cs","v1.0","Get-MgUserJoinedTeamSchedule","GET","/users/{param}/joinedTeams/{param}/schedule","no-oracle","" +"Teams","GetMgUserJoinedTeamScheduleDayNote_Get.g.cs","v1.0","Get-MgUserJoinedTeamScheduleDayNote","GET","/users/{param}/joinedTeams/{param}/schedule/dayNotes/{param}","no-oracle","" +"Teams","GetMgUserJoinedTeamScheduleDayNote_List.g.cs","v1.0","Get-MgUserJoinedTeamScheduleDayNote","GET","/users/{param}/joinedTeams/{param}/schedule/dayNotes","no-oracle","" +"Teams","GetMgUserJoinedTeamScheduleDayNote.g.cs","v1.0","Get-MgUserJoinedTeamScheduleDayNote","","","dispatcher","" +"Teams","GetMgUserJoinedTeamScheduleDayNoteCount.g.cs","v1.0","Get-MgUserJoinedTeamScheduleDayNoteCount","GET","/users/{param}/joinedTeams/{param}/schedule/dayNotes/$count","no-oracle","" +"Teams","GetMgUserJoinedTeamScheduleOfferShiftRequest_Get.g.cs","v1.0","Get-MgUserJoinedTeamScheduleOfferShiftRequest","GET","/users/{param}/joinedTeams/{param}/schedule/offerShiftRequests/{param}","no-oracle","" +"Teams","GetMgUserJoinedTeamScheduleOfferShiftRequest_List.g.cs","v1.0","Get-MgUserJoinedTeamScheduleOfferShiftRequest","GET","/users/{param}/joinedTeams/{param}/schedule/offerShiftRequests","no-oracle","" +"Teams","GetMgUserJoinedTeamScheduleOfferShiftRequest.g.cs","v1.0","Get-MgUserJoinedTeamScheduleOfferShiftRequest","","","dispatcher","" +"Teams","GetMgUserJoinedTeamScheduleOfferShiftRequestCount.g.cs","v1.0","Get-MgUserJoinedTeamScheduleOfferShiftRequestCount","GET","/users/{param}/joinedTeams/{param}/schedule/offerShiftRequests/$count","no-oracle","" +"Teams","GetMgUserJoinedTeamScheduleOpenShift_Get.g.cs","v1.0","Get-MgUserJoinedTeamScheduleOpenShift","GET","/users/{param}/joinedTeams/{param}/schedule/openShifts/{param}","no-oracle","" +"Teams","GetMgUserJoinedTeamScheduleOpenShift_List.g.cs","v1.0","Get-MgUserJoinedTeamScheduleOpenShift","GET","/users/{param}/joinedTeams/{param}/schedule/openShifts","no-oracle","" +"Teams","GetMgUserJoinedTeamScheduleOpenShift.g.cs","v1.0","Get-MgUserJoinedTeamScheduleOpenShift","","","dispatcher","" +"Teams","GetMgUserJoinedTeamScheduleOpenShiftChangeRequest_Get.g.cs","v1.0","Get-MgUserJoinedTeamScheduleOpenShiftChangeRequest","GET","/users/{param}/joinedTeams/{param}/schedule/openShiftChangeRequests/{param}","no-oracle","" +"Teams","GetMgUserJoinedTeamScheduleOpenShiftChangeRequest_List.g.cs","v1.0","Get-MgUserJoinedTeamScheduleOpenShiftChangeRequest","GET","/users/{param}/joinedTeams/{param}/schedule/openShiftChangeRequests","no-oracle","" +"Teams","GetMgUserJoinedTeamScheduleOpenShiftChangeRequest.g.cs","v1.0","Get-MgUserJoinedTeamScheduleOpenShiftChangeRequest","","","dispatcher","" +"Teams","GetMgUserJoinedTeamScheduleOpenShiftChangeRequestCount.g.cs","v1.0","Get-MgUserJoinedTeamScheduleOpenShiftChangeRequestCount","GET","/users/{param}/joinedTeams/{param}/schedule/openShiftChangeRequests/$count","no-oracle","" +"Teams","GetMgUserJoinedTeamScheduleOpenShiftCount.g.cs","v1.0","Get-MgUserJoinedTeamScheduleOpenShiftCount","GET","/users/{param}/joinedTeams/{param}/schedule/openShifts/$count","no-oracle","" +"Teams","GetMgUserJoinedTeamScheduleSchedulingGroup_Get.g.cs","v1.0","Get-MgUserJoinedTeamScheduleSchedulingGroup","GET","/users/{param}/joinedTeams/{param}/schedule/schedulingGroups/{param}","no-oracle","" +"Teams","GetMgUserJoinedTeamScheduleSchedulingGroup_List.g.cs","v1.0","Get-MgUserJoinedTeamScheduleSchedulingGroup","GET","/users/{param}/joinedTeams/{param}/schedule/schedulingGroups","no-oracle","" +"Teams","GetMgUserJoinedTeamScheduleSchedulingGroup.g.cs","v1.0","Get-MgUserJoinedTeamScheduleSchedulingGroup","","","dispatcher","" +"Teams","GetMgUserJoinedTeamScheduleSchedulingGroupCount.g.cs","v1.0","Get-MgUserJoinedTeamScheduleSchedulingGroupCount","GET","/users/{param}/joinedTeams/{param}/schedule/schedulingGroups/$count","no-oracle","" +"Teams","GetMgUserJoinedTeamScheduleShift_Get.g.cs","v1.0","Get-MgUserJoinedTeamScheduleShift","GET","/users/{param}/joinedTeams/{param}/schedule/shifts/{param}","no-oracle","" +"Teams","GetMgUserJoinedTeamScheduleShift_List.g.cs","v1.0","Get-MgUserJoinedTeamScheduleShift","GET","/users/{param}/joinedTeams/{param}/schedule/shifts","no-oracle","" +"Teams","GetMgUserJoinedTeamScheduleShift.g.cs","v1.0","Get-MgUserJoinedTeamScheduleShift","","","dispatcher","" +"Teams","GetMgUserJoinedTeamScheduleShiftCount.g.cs","v1.0","Get-MgUserJoinedTeamScheduleShiftCount","GET","/users/{param}/joinedTeams/{param}/schedule/shifts/$count","no-oracle","" +"Teams","GetMgUserJoinedTeamScheduleSwapShiftChangeRequest_Get.g.cs","v1.0","Get-MgUserJoinedTeamScheduleSwapShiftChangeRequest","GET","/users/{param}/joinedTeams/{param}/schedule/swapShiftsChangeRequests/{param}","no-oracle","" +"Teams","GetMgUserJoinedTeamScheduleSwapShiftChangeRequest_List.g.cs","v1.0","Get-MgUserJoinedTeamScheduleSwapShiftChangeRequest","GET","/users/{param}/joinedTeams/{param}/schedule/swapShiftsChangeRequests","no-oracle","" +"Teams","GetMgUserJoinedTeamScheduleSwapShiftChangeRequest.g.cs","v1.0","Get-MgUserJoinedTeamScheduleSwapShiftChangeRequest","","","dispatcher","" +"Teams","GetMgUserJoinedTeamScheduleSwapShiftChangeRequestCount.g.cs","v1.0","Get-MgUserJoinedTeamScheduleSwapShiftChangeRequestCount","GET","/users/{param}/joinedTeams/{param}/schedule/swapShiftsChangeRequests/$count","no-oracle","" +"Teams","GetMgUserJoinedTeamScheduleTimeCard_Get.g.cs","v1.0","Get-MgUserJoinedTeamScheduleTimeCard","GET","/users/{param}/joinedTeams/{param}/schedule/timeCards/{param}","no-oracle","" +"Teams","GetMgUserJoinedTeamScheduleTimeCard_List.g.cs","v1.0","Get-MgUserJoinedTeamScheduleTimeCard","GET","/users/{param}/joinedTeams/{param}/schedule/timeCards","no-oracle","" +"Teams","GetMgUserJoinedTeamScheduleTimeCard.g.cs","v1.0","Get-MgUserJoinedTeamScheduleTimeCard","","","dispatcher","" +"Teams","GetMgUserJoinedTeamScheduleTimeCardCount.g.cs","v1.0","Get-MgUserJoinedTeamScheduleTimeCardCount","GET","/users/{param}/joinedTeams/{param}/schedule/timeCards/$count","no-oracle","" +"Teams","GetMgUserJoinedTeamScheduleTimeOff_Get.g.cs","v1.0","Get-MgUserJoinedTeamScheduleTimeOff","GET","/users/{param}/joinedTeams/{param}/schedule/timesOff/{param}","no-oracle","" +"Teams","GetMgUserJoinedTeamScheduleTimeOff_List.g.cs","v1.0","Get-MgUserJoinedTeamScheduleTimeOff","GET","/users/{param}/joinedTeams/{param}/schedule/timesOff","no-oracle","" +"Teams","GetMgUserJoinedTeamScheduleTimeOff.g.cs","v1.0","Get-MgUserJoinedTeamScheduleTimeOff","","","dispatcher","" +"Teams","GetMgUserJoinedTeamScheduleTimeOffCount.g.cs","v1.0","Get-MgUserJoinedTeamScheduleTimeOffCount","GET","/users/{param}/joinedTeams/{param}/schedule/timesOff/$count","no-oracle","" +"Teams","GetMgUserJoinedTeamScheduleTimeOffReason_Get.g.cs","v1.0","Get-MgUserJoinedTeamScheduleTimeOffReason","GET","/users/{param}/joinedTeams/{param}/schedule/timeOffReasons/{param}","no-oracle","" +"Teams","GetMgUserJoinedTeamScheduleTimeOffReason_List.g.cs","v1.0","Get-MgUserJoinedTeamScheduleTimeOffReason","GET","/users/{param}/joinedTeams/{param}/schedule/timeOffReasons","no-oracle","" +"Teams","GetMgUserJoinedTeamScheduleTimeOffReason.g.cs","v1.0","Get-MgUserJoinedTeamScheduleTimeOffReason","","","dispatcher","" +"Teams","GetMgUserJoinedTeamScheduleTimeOffReasonCount.g.cs","v1.0","Get-MgUserJoinedTeamScheduleTimeOffReasonCount","GET","/users/{param}/joinedTeams/{param}/schedule/timeOffReasons/$count","no-oracle","" +"Teams","GetMgUserJoinedTeamScheduleTimeOffRequest_Get.g.cs","v1.0","Get-MgUserJoinedTeamScheduleTimeOffRequest","GET","/users/{param}/joinedTeams/{param}/schedule/timeOffRequests/{param}","no-oracle","" +"Teams","GetMgUserJoinedTeamScheduleTimeOffRequest_List.g.cs","v1.0","Get-MgUserJoinedTeamScheduleTimeOffRequest","GET","/users/{param}/joinedTeams/{param}/schedule/timeOffRequests","no-oracle","" +"Teams","GetMgUserJoinedTeamScheduleTimeOffRequest.g.cs","v1.0","Get-MgUserJoinedTeamScheduleTimeOffRequest","","","dispatcher","" +"Teams","GetMgUserJoinedTeamScheduleTimeOffRequestCount.g.cs","v1.0","Get-MgUserJoinedTeamScheduleTimeOffRequestCount","GET","/users/{param}/joinedTeams/{param}/schedule/timeOffRequests/$count","no-oracle","" +"Teams","GetMgUserJoinedTeamTag_Get.g.cs","v1.0","Get-MgUserJoinedTeamTag","GET","/users/{param}/joinedTeams/{param}/tags/{param}","no-oracle","" +"Teams","GetMgUserJoinedTeamTag_List.g.cs","v1.0","Get-MgUserJoinedTeamTag","GET","/users/{param}/joinedTeams/{param}/tags","no-oracle","" +"Teams","GetMgUserJoinedTeamTag.g.cs","v1.0","Get-MgUserJoinedTeamTag","","","dispatcher","" +"Teams","GetMgUserJoinedTeamTagCount.g.cs","v1.0","Get-MgUserJoinedTeamTagCount","GET","/users/{param}/joinedTeams/{param}/tags/$count","no-oracle","" +"Teams","GetMgUserJoinedTeamTagMember_Get.g.cs","v1.0","Get-MgUserJoinedTeamTagMember","GET","/users/{param}/joinedTeams/{param}/tags/{param}/members/{param}","no-oracle","" +"Teams","GetMgUserJoinedTeamTagMember_List.g.cs","v1.0","Get-MgUserJoinedTeamTagMember","GET","/users/{param}/joinedTeams/{param}/tags/{param}/members","no-oracle","" +"Teams","GetMgUserJoinedTeamTagMember.g.cs","v1.0","Get-MgUserJoinedTeamTagMember","","","dispatcher","" +"Teams","GetMgUserJoinedTeamTagMemberCount.g.cs","v1.0","Get-MgUserJoinedTeamTagMemberCount","GET","/users/{param}/joinedTeams/{param}/tags/{param}/members/$count","no-oracle","" +"Teams","GetMgUserJoinedTeamTemplate.g.cs","v1.0","Get-MgUserJoinedTeamTemplate","GET","/users/{param}/joinedTeams/{param}/template","no-oracle","" +"Teams","GetMgUserTeamwork.g.cs","v1.0","Get-MgUserTeamwork","GET","/users/{param}/teamwork","matched","Get-MgUserTeamwork" +"Teams","GetMgUserTeamworkAssociatedTeam_Get.g.cs","v1.0","Get-MgUserTeamworkAssociatedTeam","GET","/users/{param}/teamwork/associatedTeams/{param}","matched","Get-MgUserTeamworkAssociatedTeam" +"Teams","GetMgUserTeamworkAssociatedTeam_List.g.cs","v1.0","Get-MgUserTeamworkAssociatedTeam","GET","/users/{param}/teamwork/associatedTeams","matched","Get-MgUserTeamworkAssociatedTeam" +"Teams","GetMgUserTeamworkAssociatedTeam.g.cs","v1.0","Get-MgUserTeamworkAssociatedTeam","","","dispatcher","" +"Teams","GetMgUserTeamworkAssociatedTeamCount.g.cs","v1.0","Get-MgUserTeamworkAssociatedTeamCount","GET","/users/{param}/teamwork/associatedTeams/$count","matched","Get-MgUserTeamworkAssociatedTeamCount" +"Teams","GetMgUserTeamworkGetAllRetainedTargetedMessages.g.cs","v1.0","Get-MgUserTeamworkGetAllRetainedTargetedMessages","GET","/users/{param}/teamwork/getAllRetainedTargetedMessages","mismatch","Get-MgUserTeamworkRetainedTargetedMessage" +"Teams","GetMgUserTeamworkGetAllTargetedMessages.g.cs","v1.0","Get-MgUserTeamworkGetAllTargetedMessages","GET","/users/{param}/teamwork/getAllTargetedMessages","mismatch","Get-MgUserTeamworkTargetedMessage" +"Teams","GetMgUserTeamworkInstalledApp_Get.g.cs","v1.0","Get-MgUserTeamworkInstalledApp","GET","/users/{param}/teamwork/installedApps/{param}","matched","Get-MgUserTeamworkInstalledApp" +"Teams","GetMgUserTeamworkInstalledApp_List.g.cs","v1.0","Get-MgUserTeamworkInstalledApp","GET","/users/{param}/teamwork/installedApps","matched","Get-MgUserTeamworkInstalledApp" +"Teams","GetMgUserTeamworkInstalledApp.g.cs","v1.0","Get-MgUserTeamworkInstalledApp","","","dispatcher","" +"Teams","GetMgUserTeamworkInstalledAppChat.g.cs","v1.0","Get-MgUserTeamworkInstalledAppChat","GET","/users/{param}/teamwork/installedApps/{param}/chat","matched","Get-MgUserTeamworkInstalledAppChat" +"Teams","GetMgUserTeamworkInstalledAppCount.g.cs","v1.0","Get-MgUserTeamworkInstalledAppCount","GET","/users/{param}/teamwork/installedApps/$count","matched","Get-MgUserTeamworkInstalledAppCount" +"Teams","GetMgUserTeamworkInstalledAppTeamApp.g.cs","v1.0","Get-MgUserTeamworkInstalledAppTeamApp","GET","/users/{param}/teamwork/installedApps/{param}/teamsApp","matched","Get-MgUserTeamworkInstalledAppTeamApp" +"Teams","GetMgUserTeamworkInstalledAppTeamAppDefinition.g.cs","v1.0","Get-MgUserTeamworkInstalledAppTeamAppDefinition","GET","/users/{param}/teamwork/installedApps/{param}/teamsAppDefinition","matched","Get-MgUserTeamworkInstalledAppTeamAppDefinition" +"Teams","InvokeMgChatCompleteMigration.g.cs","v1.0","Invoke-MgChatCompleteMigration","POST","/chats/{param}/completeMigration","mismatch","Complete-MgChatMigration" +"Teams","InvokeMgChatHideForUser.g.cs","v1.0","Invoke-MgChatHideForUser","POST","/chats/{param}/hideForUser","mismatch","Hide-MgChatForUser" +"Teams","InvokeMgChatInstalledAppUpgrade.g.cs","v1.0","Invoke-MgChatInstalledAppUpgrade","POST","/chats/{param}/installedApps/{param}/upgrade","mismatch","Update-MgChatInstalledApp" +"Teams","InvokeMgChatMarkChatReadForUser.g.cs","v1.0","Invoke-MgChatMarkChatReadForUser","POST","/chats/{param}/markChatReadForUser","mismatch","Invoke-MgMarkChatReadForUser" +"Teams","InvokeMgChatMarkChatUnreadForUser.g.cs","v1.0","Invoke-MgChatMarkChatUnreadForUser","POST","/chats/{param}/markChatUnreadForUser","mismatch","Invoke-MgMarkChatUnreadForUser" +"Teams","InvokeMgChatMemberAdd.g.cs","v1.0","Invoke-MgChatMemberAdd","POST","/chats/{param}/members/add","mismatch","Add-MgChatMember" +"Teams","InvokeMgChatMemberRemove.g.cs","v1.0","Invoke-MgChatMemberRemove","POST","/chats/{param}/members/remove","no-oracle","" +"Teams","InvokeMgChatMessageReplyReplyWithQuote.g.cs","v1.0","Invoke-MgChatMessageReplyReplyWithQuote","POST","/chats/{param}/messages/{param}/replies/replyWithQuote","mismatch","Invoke-MgGraphChatMessageReply" +"Teams","InvokeMgChatMessageReplySetReaction.g.cs","v1.0","Invoke-MgChatMessageReplySetReaction","POST","/chats/{param}/messages/{param}/replies/{param}/setReaction","mismatch","Set-MgChatMessageReplyReaction" +"Teams","InvokeMgChatMessageReplySoftDelete.g.cs","v1.0","Invoke-MgChatMessageReplySoftDelete","POST","/chats/{param}/messages/{param}/replies/{param}/softDelete","mismatch","Invoke-MgSoftChatMessageReplyDelete" +"Teams","InvokeMgChatMessageReplyUndoSoftDelete.g.cs","v1.0","Invoke-MgChatMessageReplyUndoSoftDelete","POST","/chats/{param}/messages/{param}/replies/{param}/undoSoftDelete","mismatch","Undo-MgChatMessageReplySoftDelete" +"Teams","InvokeMgChatMessageReplyUnsetReaction.g.cs","v1.0","Invoke-MgChatMessageReplyUnsetReaction","POST","/chats/{param}/messages/{param}/replies/{param}/unsetReaction","mismatch","Clear-MgChatMessageReplyReaction" +"Teams","InvokeMgChatMessageReplyWithQuote.g.cs","v1.0","Invoke-MgChatMessageReplyWithQuote","POST","/chats/{param}/messages/replyWithQuote","mismatch","Invoke-MgGraphChatMessage" +"Teams","InvokeMgChatMessageSetReaction.g.cs","v1.0","Invoke-MgChatMessageSetReaction","POST","/chats/{param}/messages/{param}/setReaction","mismatch","Set-MgChatMessageReaction" +"Teams","InvokeMgChatMessageSoftDelete.g.cs","v1.0","Invoke-MgChatMessageSoftDelete","POST","/chats/{param}/messages/{param}/softDelete","mismatch","Invoke-MgSoftChatMessageDelete" +"Teams","InvokeMgChatMessageUndoSoftDelete.g.cs","v1.0","Invoke-MgChatMessageUndoSoftDelete","POST","/chats/{param}/messages/{param}/undoSoftDelete","mismatch","Undo-MgChatMessageSoftDelete" +"Teams","InvokeMgChatMessageUnsetReaction.g.cs","v1.0","Invoke-MgChatMessageUnsetReaction","POST","/chats/{param}/messages/{param}/unsetReaction","mismatch","Clear-MgChatMessageReaction" +"Teams","InvokeMgChatRemoveAllAccessForUser.g.cs","v1.0","Invoke-MgChatRemoveAllAccessForUser","POST","/chats/{param}/removeAllAccessForUser","mismatch","Remove-MgChatAccessForUser" +"Teams","InvokeMgChatSendActivityNotification.g.cs","v1.0","Invoke-MgChatSendActivityNotification","POST","/chats/{param}/sendActivityNotification","mismatch","Send-MgChatActivityNotification" +"Teams","InvokeMgChatStartMigration.g.cs","v1.0","Invoke-MgChatStartMigration","POST","/chats/{param}/startMigration","mismatch","Start-MgChatMigration" +"Teams","InvokeMgChatTargetedMessageReplyReplyWithQuote.g.cs","v1.0","Invoke-MgChatTargetedMessageReplyReplyWithQuote","POST","/chats/{param}/targetedMessages/{param}/replies/replyWithQuote","mismatch","Invoke-MgGraphChatTargetedMessageReply" +"Teams","InvokeMgChatTargetedMessageReplySetReaction.g.cs","v1.0","Invoke-MgChatTargetedMessageReplySetReaction","POST","/chats/{param}/targetedMessages/{param}/replies/{param}/setReaction","mismatch","Set-MgChatTargetedMessageReplyReaction" +"Teams","InvokeMgChatTargetedMessageReplySoftDelete.g.cs","v1.0","Invoke-MgChatTargetedMessageReplySoftDelete","POST","/chats/{param}/targetedMessages/{param}/replies/{param}/softDelete","mismatch","Invoke-MgSoftChatTargetedMessageReplyDelete" +"Teams","InvokeMgChatTargetedMessageReplyUndoSoftDelete.g.cs","v1.0","Invoke-MgChatTargetedMessageReplyUndoSoftDelete","POST","/chats/{param}/targetedMessages/{param}/replies/{param}/undoSoftDelete","mismatch","Undo-MgChatTargetedMessageReplySoftDelete" +"Teams","InvokeMgChatTargetedMessageReplyUnsetReaction.g.cs","v1.0","Invoke-MgChatTargetedMessageReplyUnsetReaction","POST","/chats/{param}/targetedMessages/{param}/replies/{param}/unsetReaction","mismatch","Clear-MgChatTargetedMessageReplyReaction" +"Teams","InvokeMgChatUnhideForUser.g.cs","v1.0","Invoke-MgChatUnhideForUser","POST","/chats/{param}/unhideForUser","mismatch","Invoke-MgGraphChat" +"Teams","InvokeMgGroupTeamArchive.g.cs","v1.0","Invoke-MgGroupTeamArchive","POST","/groups/{param}/team/archive","mismatch","Invoke-MgArchiveGroupTeam" +"Teams","InvokeMgGroupTeamChannelAllMemberAdd.g.cs","v1.0","Invoke-MgGroupTeamChannelAllMemberAdd","POST","/groups/{param}/team/channels/{param}/allMembers/add","mismatch","Add-MgGroupTeamChannelAllMember" +"Teams","InvokeMgGroupTeamChannelAllMemberRemove.g.cs","v1.0","Invoke-MgGroupTeamChannelAllMemberRemove","POST","/groups/{param}/team/channels/{param}/allMembers/remove","mismatch","Remove-MgGroupTeamChannelAllMember" +"Teams","InvokeMgGroupTeamChannelArchive.g.cs","v1.0","Invoke-MgGroupTeamChannelArchive","POST","/groups/{param}/team/channels/{param}/archive","mismatch","Invoke-MgArchiveGroupTeamChannel" +"Teams","InvokeMgGroupTeamChannelCompleteMigration.g.cs","v1.0","Invoke-MgGroupTeamChannelCompleteMigration","POST","/groups/{param}/team/channels/{param}/completeMigration","mismatch","Complete-MgGroupTeamChannelMigration" +"Teams","InvokeMgGroupTeamChannelMemberAdd.g.cs","v1.0","Invoke-MgGroupTeamChannelMemberAdd","POST","/groups/{param}/team/channels/{param}/members/add","mismatch","Add-MgGroupTeamChannelMember" +"Teams","InvokeMgGroupTeamChannelMemberRemove.g.cs","v1.0","Invoke-MgGroupTeamChannelMemberRemove","POST","/groups/{param}/team/channels/{param}/members/remove","no-oracle","" +"Teams","InvokeMgGroupTeamChannelMessageReplyReplyWithQuote.g.cs","v1.0","Invoke-MgGroupTeamChannelMessageReplyReplyWithQuote","POST","/groups/{param}/team/channels/{param}/messages/{param}/replies/replyWithQuote","mismatch","Invoke-MgGraphGroupTeamChannelMessageReply" +"Teams","InvokeMgGroupTeamChannelMessageReplySetReaction.g.cs","v1.0","Invoke-MgGroupTeamChannelMessageReplySetReaction","POST","/groups/{param}/team/channels/{param}/messages/{param}/replies/{param}/setReaction","mismatch","Set-MgGroupTeamChannelMessageReplyReaction" +"Teams","InvokeMgGroupTeamChannelMessageReplySoftDelete.g.cs","v1.0","Invoke-MgGroupTeamChannelMessageReplySoftDelete","POST","/groups/{param}/team/channels/{param}/messages/{param}/replies/{param}/softDelete","mismatch","Invoke-MgSoftGroupTeamChannelMessageReplyDelete" +"Teams","InvokeMgGroupTeamChannelMessageReplyUndoSoftDelete.g.cs","v1.0","Invoke-MgGroupTeamChannelMessageReplyUndoSoftDelete","POST","/groups/{param}/team/channels/{param}/messages/{param}/replies/{param}/undoSoftDelete","mismatch","Undo-MgGroupTeamChannelMessageReplySoftDelete" +"Teams","InvokeMgGroupTeamChannelMessageReplyUnsetReaction.g.cs","v1.0","Invoke-MgGroupTeamChannelMessageReplyUnsetReaction","POST","/groups/{param}/team/channels/{param}/messages/{param}/replies/{param}/unsetReaction","mismatch","Clear-MgGroupTeamChannelMessageReplyReaction" +"Teams","InvokeMgGroupTeamChannelMessageReplyWithQuote.g.cs","v1.0","Invoke-MgGroupTeamChannelMessageReplyWithQuote","POST","/groups/{param}/team/channels/{param}/messages/replyWithQuote","mismatch","Invoke-MgGraphGroupTeamChannelMessage" +"Teams","InvokeMgGroupTeamChannelMessageSetReaction.g.cs","v1.0","Invoke-MgGroupTeamChannelMessageSetReaction","POST","/groups/{param}/team/channels/{param}/messages/{param}/setReaction","mismatch","Set-MgGroupTeamChannelMessageReaction" +"Teams","InvokeMgGroupTeamChannelMessageSoftDelete.g.cs","v1.0","Invoke-MgGroupTeamChannelMessageSoftDelete","POST","/groups/{param}/team/channels/{param}/messages/{param}/softDelete","mismatch","Invoke-MgSoftGroupTeamChannelMessageDelete" +"Teams","InvokeMgGroupTeamChannelMessageUndoSoftDelete.g.cs","v1.0","Invoke-MgGroupTeamChannelMessageUndoSoftDelete","POST","/groups/{param}/team/channels/{param}/messages/{param}/undoSoftDelete","mismatch","Undo-MgGroupTeamChannelMessageSoftDelete" +"Teams","InvokeMgGroupTeamChannelMessageUnsetReaction.g.cs","v1.0","Invoke-MgGroupTeamChannelMessageUnsetReaction","POST","/groups/{param}/team/channels/{param}/messages/{param}/unsetReaction","mismatch","Clear-MgGroupTeamChannelMessageReaction" +"Teams","InvokeMgGroupTeamChannelProvisionEmail.g.cs","v1.0","Invoke-MgGroupTeamChannelProvisionEmail","POST","/groups/{param}/team/channels/{param}/provisionEmail","mismatch","New-MgGroupTeamChannelEmail" +"Teams","InvokeMgGroupTeamChannelRemoveEmail.g.cs","v1.0","Invoke-MgGroupTeamChannelRemoveEmail","POST","/groups/{param}/team/channels/{param}/removeEmail","mismatch","Remove-MgGroupTeamChannelEmail" +"Teams","InvokeMgGroupTeamChannelStartMigration.g.cs","v1.0","Invoke-MgGroupTeamChannelStartMigration","POST","/groups/{param}/team/channels/{param}/startMigration","mismatch","Start-MgGroupTeamChannelMigration" +"Teams","InvokeMgGroupTeamChannelUnarchive.g.cs","v1.0","Invoke-MgGroupTeamChannelUnarchive","POST","/groups/{param}/team/channels/{param}/unarchive","mismatch","Invoke-MgUnarchiveGroupTeamChannel" +"Teams","InvokeMgGroupTeamClone.g.cs","v1.0","Invoke-MgGroupTeamClone","POST","/groups/{param}/team/clone","mismatch","Copy-MgGroupTeam" +"Teams","InvokeMgGroupTeamCompleteMigration.g.cs","v1.0","Invoke-MgGroupTeamCompleteMigration","POST","/groups/{param}/team/completeMigration","mismatch","Complete-MgGroupTeamMigration" +"Teams","InvokeMgGroupTeamInstalledAppUpgrade.g.cs","v1.0","Invoke-MgGroupTeamInstalledAppUpgrade","POST","/groups/{param}/team/installedApps/{param}/upgrade","mismatch","Update-MgGroupTeamInstalledApp" +"Teams","InvokeMgGroupTeamMemberAdd.g.cs","v1.0","Invoke-MgGroupTeamMemberAdd","POST","/groups/{param}/team/members/add","mismatch","Add-MgGroupTeamMember" +"Teams","InvokeMgGroupTeamMemberRemove.g.cs","v1.0","Invoke-MgGroupTeamMemberRemove","POST","/groups/{param}/team/members/remove","no-oracle","" +"Teams","InvokeMgGroupTeamPrimaryChannelAllMemberAdd.g.cs","v1.0","Invoke-MgGroupTeamPrimaryChannelAllMemberAdd","POST","/groups/{param}/team/primaryChannel/allMembers/add","mismatch","Add-MgGroupTeamPrimaryChannelAllMember" +"Teams","InvokeMgGroupTeamPrimaryChannelAllMemberRemove.g.cs","v1.0","Invoke-MgGroupTeamPrimaryChannelAllMemberRemove","POST","/groups/{param}/team/primaryChannel/allMembers/remove","mismatch","Remove-MgGroupTeamPrimaryChannelAllMember" +"Teams","InvokeMgGroupTeamPrimaryChannelArchive.g.cs","v1.0","Invoke-MgGroupTeamPrimaryChannelArchive","POST","/groups/{param}/team/primaryChannel/archive","mismatch","Invoke-MgArchiveGroupTeamPrimaryChannel" +"Teams","InvokeMgGroupTeamPrimaryChannelCompleteMigration.g.cs","v1.0","Invoke-MgGroupTeamPrimaryChannelCompleteMigration","POST","/groups/{param}/team/primaryChannel/completeMigration","mismatch","Complete-MgGroupTeamPrimaryChannelMigration" +"Teams","InvokeMgGroupTeamPrimaryChannelMemberAdd.g.cs","v1.0","Invoke-MgGroupTeamPrimaryChannelMemberAdd","POST","/groups/{param}/team/primaryChannel/members/add","mismatch","Add-MgGroupTeamPrimaryChannelMember" +"Teams","InvokeMgGroupTeamPrimaryChannelMemberRemove.g.cs","v1.0","Invoke-MgGroupTeamPrimaryChannelMemberRemove","POST","/groups/{param}/team/primaryChannel/members/remove","no-oracle","" +"Teams","InvokeMgGroupTeamPrimaryChannelMessageReplyReplyWithQuote.g.cs","v1.0","Invoke-MgGroupTeamPrimaryChannelMessageReplyReplyWithQuote","POST","/groups/{param}/team/primaryChannel/messages/{param}/replies/replyWithQuote","mismatch","Invoke-MgGraphGroupTeamPrimaryChannelMessageReply" +"Teams","InvokeMgGroupTeamPrimaryChannelMessageReplySetReaction.g.cs","v1.0","Invoke-MgGroupTeamPrimaryChannelMessageReplySetReaction","POST","/groups/{param}/team/primaryChannel/messages/{param}/replies/{param}/setReaction","mismatch","Set-MgGroupTeamPrimaryChannelMessageReplyReaction" +"Teams","InvokeMgGroupTeamPrimaryChannelMessageReplySoftDelete.g.cs","v1.0","Invoke-MgGroupTeamPrimaryChannelMessageReplySoftDelete","POST","/groups/{param}/team/primaryChannel/messages/{param}/replies/{param}/softDelete","mismatch","Invoke-MgSoftGroupTeamPrimaryChannelMessageReplyDelete" +"Teams","InvokeMgGroupTeamPrimaryChannelMessageReplyUndoSoftDelete.g.cs","v1.0","Invoke-MgGroupTeamPrimaryChannelMessageReplyUndoSoftDelete","POST","/groups/{param}/team/primaryChannel/messages/{param}/replies/{param}/undoSoftDelete","mismatch","Undo-MgGroupTeamPrimaryChannelMessageReplySoftDelete" +"Teams","InvokeMgGroupTeamPrimaryChannelMessageReplyUnsetReaction.g.cs","v1.0","Invoke-MgGroupTeamPrimaryChannelMessageReplyUnsetReaction","POST","/groups/{param}/team/primaryChannel/messages/{param}/replies/{param}/unsetReaction","mismatch","Clear-MgGroupTeamPrimaryChannelMessageReplyReaction" +"Teams","InvokeMgGroupTeamPrimaryChannelMessageReplyWithQuote.g.cs","v1.0","Invoke-MgGroupTeamPrimaryChannelMessageReplyWithQuote","POST","/groups/{param}/team/primaryChannel/messages/replyWithQuote","mismatch","Invoke-MgGraphGroupTeamPrimaryChannelMessage" +"Teams","InvokeMgGroupTeamPrimaryChannelMessageSetReaction.g.cs","v1.0","Invoke-MgGroupTeamPrimaryChannelMessageSetReaction","POST","/groups/{param}/team/primaryChannel/messages/{param}/setReaction","mismatch","Set-MgGroupTeamPrimaryChannelMessageReaction" +"Teams","InvokeMgGroupTeamPrimaryChannelMessageSoftDelete.g.cs","v1.0","Invoke-MgGroupTeamPrimaryChannelMessageSoftDelete","POST","/groups/{param}/team/primaryChannel/messages/{param}/softDelete","mismatch","Invoke-MgSoftGroupTeamPrimaryChannelMessageDelete" +"Teams","InvokeMgGroupTeamPrimaryChannelMessageUndoSoftDelete.g.cs","v1.0","Invoke-MgGroupTeamPrimaryChannelMessageUndoSoftDelete","POST","/groups/{param}/team/primaryChannel/messages/{param}/undoSoftDelete","mismatch","Undo-MgGroupTeamPrimaryChannelMessageSoftDelete" +"Teams","InvokeMgGroupTeamPrimaryChannelMessageUnsetReaction.g.cs","v1.0","Invoke-MgGroupTeamPrimaryChannelMessageUnsetReaction","POST","/groups/{param}/team/primaryChannel/messages/{param}/unsetReaction","mismatch","Clear-MgGroupTeamPrimaryChannelMessageReaction" +"Teams","InvokeMgGroupTeamPrimaryChannelProvisionEmail.g.cs","v1.0","Invoke-MgGroupTeamPrimaryChannelProvisionEmail","POST","/groups/{param}/team/primaryChannel/provisionEmail","mismatch","New-MgGroupTeamPrimaryChannelEmail" +"Teams","InvokeMgGroupTeamPrimaryChannelRemoveEmail.g.cs","v1.0","Invoke-MgGroupTeamPrimaryChannelRemoveEmail","POST","/groups/{param}/team/primaryChannel/removeEmail","mismatch","Remove-MgGroupTeamPrimaryChannelEmail" +"Teams","InvokeMgGroupTeamPrimaryChannelStartMigration.g.cs","v1.0","Invoke-MgGroupTeamPrimaryChannelStartMigration","POST","/groups/{param}/team/primaryChannel/startMigration","mismatch","Start-MgGroupTeamPrimaryChannelMigration" +"Teams","InvokeMgGroupTeamPrimaryChannelUnarchive.g.cs","v1.0","Invoke-MgGroupTeamPrimaryChannelUnarchive","POST","/groups/{param}/team/primaryChannel/unarchive","mismatch","Invoke-MgUnarchiveGroupTeamPrimaryChannel" +"Teams","InvokeMgGroupTeamScheduleShare.g.cs","v1.0","Invoke-MgGroupTeamScheduleShare","POST","/groups/{param}/team/schedule/share","mismatch","Invoke-MgShareGroupTeamSchedule" +"Teams","InvokeMgGroupTeamScheduleTimeCardClockIn.g.cs","v1.0","Invoke-MgGroupTeamScheduleTimeCardClockIn","POST","/groups/{param}/team/schedule/timeCards/clockIn","mismatch","Invoke-MgClockGroupTeamScheduleTimeCardIn" +"Teams","InvokeMgGroupTeamScheduleTimeCardClockOut.g.cs","v1.0","Invoke-MgGroupTeamScheduleTimeCardClockOut","POST","/groups/{param}/team/schedule/timeCards/{param}/clockOut","mismatch","Invoke-MgClockGroupTeamScheduleTimeCardOut" +"Teams","InvokeMgGroupTeamScheduleTimeCardConfirm.g.cs","v1.0","Invoke-MgGroupTeamScheduleTimeCardConfirm","POST","/groups/{param}/team/schedule/timeCards/{param}/confirm","mismatch","Confirm-MgGroupTeamScheduleTimeCard" +"Teams","InvokeMgGroupTeamScheduleTimeCardEndBreak.g.cs","v1.0","Invoke-MgGroupTeamScheduleTimeCardEndBreak","POST","/groups/{param}/team/schedule/timeCards/{param}/endBreak","mismatch","Stop-MgGroupTeamScheduleTimeCardBreak" +"Teams","InvokeMgGroupTeamScheduleTimeCardStartBreak.g.cs","v1.0","Invoke-MgGroupTeamScheduleTimeCardStartBreak","POST","/groups/{param}/team/schedule/timeCards/{param}/startBreak","mismatch","Start-MgGroupTeamScheduleTimeCardBreak" +"Teams","InvokeMgGroupTeamSendActivityNotification.g.cs","v1.0","Invoke-MgGroupTeamSendActivityNotification","POST","/groups/{param}/team/sendActivityNotification","mismatch","Send-MgGroupTeamActivityNotification" +"Teams","InvokeMgGroupTeamUnarchive.g.cs","v1.0","Invoke-MgGroupTeamUnarchive","POST","/groups/{param}/team/unarchive","mismatch","Invoke-MgUnarchiveGroupTeam" +"Teams","InvokeMgTeamArchive.g.cs","v1.0","Invoke-MgTeamArchive","POST","/teams/{param}/archive","mismatch","Invoke-MgArchiveTeam" +"Teams","InvokeMgTeamChannelAllMemberAdd.g.cs","v1.0","Invoke-MgTeamChannelAllMemberAdd","POST","/teams/{param}/channels/{param}/allMembers/add","mismatch","Add-MgTeamChannelAllMember" +"Teams","InvokeMgTeamChannelAllMemberRemove.g.cs","v1.0","Invoke-MgTeamChannelAllMemberRemove","POST","/teams/{param}/channels/{param}/allMembers/remove","mismatch","Remove-MgTeamChannelAllMember" +"Teams","InvokeMgTeamChannelArchive.g.cs","v1.0","Invoke-MgTeamChannelArchive","POST","/teams/{param}/channels/{param}/archive","mismatch","Invoke-MgArchiveTeamChannel" +"Teams","InvokeMgTeamChannelCompleteMigration.g.cs","v1.0","Invoke-MgTeamChannelCompleteMigration","POST","/teams/{param}/channels/{param}/completeMigration","mismatch","Complete-MgTeamChannelMigration" +"Teams","InvokeMgTeamChannelMemberAdd.g.cs","v1.0","Invoke-MgTeamChannelMemberAdd","POST","/teams/{param}/channels/{param}/members/add","mismatch","Add-MgTeamChannelMember" +"Teams","InvokeMgTeamChannelMemberRemove.g.cs","v1.0","Invoke-MgTeamChannelMemberRemove","POST","/teams/{param}/channels/{param}/members/remove","no-oracle","" +"Teams","InvokeMgTeamChannelMessageReplyReplyWithQuote.g.cs","v1.0","Invoke-MgTeamChannelMessageReplyReplyWithQuote","POST","/teams/{param}/channels/{param}/messages/{param}/replies/replyWithQuote","mismatch","Invoke-MgGraphTeamChannelMessageReply" +"Teams","InvokeMgTeamChannelMessageReplySetReaction.g.cs","v1.0","Invoke-MgTeamChannelMessageReplySetReaction","POST","/teams/{param}/channels/{param}/messages/{param}/replies/{param}/setReaction","mismatch","Set-MgTeamChannelMessageReplyReaction" +"Teams","InvokeMgTeamChannelMessageReplySoftDelete.g.cs","v1.0","Invoke-MgTeamChannelMessageReplySoftDelete","POST","/teams/{param}/channels/{param}/messages/{param}/replies/{param}/softDelete","mismatch","Invoke-MgSoftTeamChannelMessageReplyDelete" +"Teams","InvokeMgTeamChannelMessageReplyUndoSoftDelete.g.cs","v1.0","Invoke-MgTeamChannelMessageReplyUndoSoftDelete","POST","/teams/{param}/channels/{param}/messages/{param}/replies/{param}/undoSoftDelete","mismatch","Undo-MgTeamChannelMessageReplySoftDelete" +"Teams","InvokeMgTeamChannelMessageReplyUnsetReaction.g.cs","v1.0","Invoke-MgTeamChannelMessageReplyUnsetReaction","POST","/teams/{param}/channels/{param}/messages/{param}/replies/{param}/unsetReaction","mismatch","Clear-MgTeamChannelMessageReplyReaction" +"Teams","InvokeMgTeamChannelMessageReplyWithQuote.g.cs","v1.0","Invoke-MgTeamChannelMessageReplyWithQuote","POST","/teams/{param}/channels/{param}/messages/replyWithQuote","mismatch","Invoke-MgGraphTeamChannelMessage" +"Teams","InvokeMgTeamChannelMessageSetReaction.g.cs","v1.0","Invoke-MgTeamChannelMessageSetReaction","POST","/teams/{param}/channels/{param}/messages/{param}/setReaction","mismatch","Set-MgTeamChannelMessageReaction" +"Teams","InvokeMgTeamChannelMessageSoftDelete.g.cs","v1.0","Invoke-MgTeamChannelMessageSoftDelete","POST","/teams/{param}/channels/{param}/messages/{param}/softDelete","mismatch","Invoke-MgSoftTeamChannelMessageDelete" +"Teams","InvokeMgTeamChannelMessageUndoSoftDelete.g.cs","v1.0","Invoke-MgTeamChannelMessageUndoSoftDelete","POST","/teams/{param}/channels/{param}/messages/{param}/undoSoftDelete","mismatch","Undo-MgTeamChannelMessageSoftDelete" +"Teams","InvokeMgTeamChannelMessageUnsetReaction.g.cs","v1.0","Invoke-MgTeamChannelMessageUnsetReaction","POST","/teams/{param}/channels/{param}/messages/{param}/unsetReaction","mismatch","Clear-MgTeamChannelMessageReaction" +"Teams","InvokeMgTeamChannelProvisionEmail.g.cs","v1.0","Invoke-MgTeamChannelProvisionEmail","POST","/teams/{param}/channels/{param}/provisionEmail","mismatch","New-MgTeamChannelEmail" +"Teams","InvokeMgTeamChannelRemoveEmail.g.cs","v1.0","Invoke-MgTeamChannelRemoveEmail","POST","/teams/{param}/channels/{param}/removeEmail","mismatch","Remove-MgTeamChannelEmail" +"Teams","InvokeMgTeamChannelStartMigration.g.cs","v1.0","Invoke-MgTeamChannelStartMigration","POST","/teams/{param}/channels/{param}/startMigration","mismatch","Start-MgTeamChannelMigration" +"Teams","InvokeMgTeamChannelUnarchive.g.cs","v1.0","Invoke-MgTeamChannelUnarchive","POST","/teams/{param}/channels/{param}/unarchive","mismatch","Invoke-MgUnarchiveTeamChannel" +"Teams","InvokeMgTeamClone.g.cs","v1.0","Invoke-MgTeamClone","POST","/teams/{param}/clone","mismatch","Copy-MgTeam" +"Teams","InvokeMgTeamCompleteMigration.g.cs","v1.0","Invoke-MgTeamCompleteMigration","POST","/teams/{param}/completeMigration","mismatch","Complete-MgTeamMigration" +"Teams","InvokeMgTeamInstalledAppUpgrade.g.cs","v1.0","Invoke-MgTeamInstalledAppUpgrade","POST","/teams/{param}/installedApps/{param}/upgrade","mismatch","Update-MgTeamInstalledApp" +"Teams","InvokeMgTeamMemberAdd.g.cs","v1.0","Invoke-MgTeamMemberAdd","POST","/teams/{param}/members/add","mismatch","Add-MgTeamMember" +"Teams","InvokeMgTeamMemberRemove.g.cs","v1.0","Invoke-MgTeamMemberRemove","POST","/teams/{param}/members/remove","no-oracle","" +"Teams","InvokeMgTeamPrimaryChannelAllMemberAdd.g.cs","v1.0","Invoke-MgTeamPrimaryChannelAllMemberAdd","POST","/teams/{param}/primaryChannel/allMembers/add","mismatch","Add-MgTeamPrimaryChannelAllMember" +"Teams","InvokeMgTeamPrimaryChannelAllMemberRemove.g.cs","v1.0","Invoke-MgTeamPrimaryChannelAllMemberRemove","POST","/teams/{param}/primaryChannel/allMembers/remove","mismatch","Remove-MgTeamPrimaryChannelAllMember" +"Teams","InvokeMgTeamPrimaryChannelArchive.g.cs","v1.0","Invoke-MgTeamPrimaryChannelArchive","POST","/teams/{param}/primaryChannel/archive","mismatch","Invoke-MgArchiveTeamPrimaryChannel" +"Teams","InvokeMgTeamPrimaryChannelCompleteMigration.g.cs","v1.0","Invoke-MgTeamPrimaryChannelCompleteMigration","POST","/teams/{param}/primaryChannel/completeMigration","mismatch","Complete-MgTeamPrimaryChannelMigration" +"Teams","InvokeMgTeamPrimaryChannelMemberAdd.g.cs","v1.0","Invoke-MgTeamPrimaryChannelMemberAdd","POST","/teams/{param}/primaryChannel/members/add","mismatch","Add-MgTeamPrimaryChannelMember" +"Teams","InvokeMgTeamPrimaryChannelMemberRemove.g.cs","v1.0","Invoke-MgTeamPrimaryChannelMemberRemove","POST","/teams/{param}/primaryChannel/members/remove","no-oracle","" +"Teams","InvokeMgTeamPrimaryChannelMessageReplyReplyWithQuote.g.cs","v1.0","Invoke-MgTeamPrimaryChannelMessageReplyReplyWithQuote","POST","/teams/{param}/primaryChannel/messages/{param}/replies/replyWithQuote","mismatch","Invoke-MgGraphTeamPrimaryChannelMessageReply" +"Teams","InvokeMgTeamPrimaryChannelMessageReplySetReaction.g.cs","v1.0","Invoke-MgTeamPrimaryChannelMessageReplySetReaction","POST","/teams/{param}/primaryChannel/messages/{param}/replies/{param}/setReaction","mismatch","Set-MgTeamPrimaryChannelMessageReplyReaction" +"Teams","InvokeMgTeamPrimaryChannelMessageReplySoftDelete.g.cs","v1.0","Invoke-MgTeamPrimaryChannelMessageReplySoftDelete","POST","/teams/{param}/primaryChannel/messages/{param}/replies/{param}/softDelete","mismatch","Invoke-MgSoftTeamPrimaryChannelMessageReplyDelete" +"Teams","InvokeMgTeamPrimaryChannelMessageReplyUndoSoftDelete.g.cs","v1.0","Invoke-MgTeamPrimaryChannelMessageReplyUndoSoftDelete","POST","/teams/{param}/primaryChannel/messages/{param}/replies/{param}/undoSoftDelete","mismatch","Undo-MgTeamPrimaryChannelMessageReplySoftDelete" +"Teams","InvokeMgTeamPrimaryChannelMessageReplyUnsetReaction.g.cs","v1.0","Invoke-MgTeamPrimaryChannelMessageReplyUnsetReaction","POST","/teams/{param}/primaryChannel/messages/{param}/replies/{param}/unsetReaction","mismatch","Clear-MgTeamPrimaryChannelMessageReplyReaction" +"Teams","InvokeMgTeamPrimaryChannelMessageReplyWithQuote.g.cs","v1.0","Invoke-MgTeamPrimaryChannelMessageReplyWithQuote","POST","/teams/{param}/primaryChannel/messages/replyWithQuote","mismatch","Invoke-MgGraphTeamPrimaryChannelMessage" +"Teams","InvokeMgTeamPrimaryChannelMessageSetReaction.g.cs","v1.0","Invoke-MgTeamPrimaryChannelMessageSetReaction","POST","/teams/{param}/primaryChannel/messages/{param}/setReaction","mismatch","Set-MgTeamPrimaryChannelMessageReaction" +"Teams","InvokeMgTeamPrimaryChannelMessageSoftDelete.g.cs","v1.0","Invoke-MgTeamPrimaryChannelMessageSoftDelete","POST","/teams/{param}/primaryChannel/messages/{param}/softDelete","mismatch","Invoke-MgSoftTeamPrimaryChannelMessageDelete" +"Teams","InvokeMgTeamPrimaryChannelMessageUndoSoftDelete.g.cs","v1.0","Invoke-MgTeamPrimaryChannelMessageUndoSoftDelete","POST","/teams/{param}/primaryChannel/messages/{param}/undoSoftDelete","mismatch","Undo-MgTeamPrimaryChannelMessageSoftDelete" +"Teams","InvokeMgTeamPrimaryChannelMessageUnsetReaction.g.cs","v1.0","Invoke-MgTeamPrimaryChannelMessageUnsetReaction","POST","/teams/{param}/primaryChannel/messages/{param}/unsetReaction","mismatch","Clear-MgTeamPrimaryChannelMessageReaction" +"Teams","InvokeMgTeamPrimaryChannelProvisionEmail.g.cs","v1.0","Invoke-MgTeamPrimaryChannelProvisionEmail","POST","/teams/{param}/primaryChannel/provisionEmail","mismatch","New-MgTeamPrimaryChannelEmail" +"Teams","InvokeMgTeamPrimaryChannelRemoveEmail.g.cs","v1.0","Invoke-MgTeamPrimaryChannelRemoveEmail","POST","/teams/{param}/primaryChannel/removeEmail","mismatch","Remove-MgTeamPrimaryChannelEmail" +"Teams","InvokeMgTeamPrimaryChannelStartMigration.g.cs","v1.0","Invoke-MgTeamPrimaryChannelStartMigration","POST","/teams/{param}/primaryChannel/startMigration","mismatch","Start-MgTeamPrimaryChannelMigration" +"Teams","InvokeMgTeamPrimaryChannelUnarchive.g.cs","v1.0","Invoke-MgTeamPrimaryChannelUnarchive","POST","/teams/{param}/primaryChannel/unarchive","mismatch","Invoke-MgUnarchiveTeamPrimaryChannel" +"Teams","InvokeMgTeamScheduleShare.g.cs","v1.0","Invoke-MgTeamScheduleShare","POST","/teams/{param}/schedule/share","mismatch","Invoke-MgShareTeamSchedule" +"Teams","InvokeMgTeamScheduleTimeCardClockIn.g.cs","v1.0","Invoke-MgTeamScheduleTimeCardClockIn","POST","/teams/{param}/schedule/timeCards/clockIn","mismatch","Invoke-MgClockTeamScheduleTimeCardIn" +"Teams","InvokeMgTeamScheduleTimeCardClockOut.g.cs","v1.0","Invoke-MgTeamScheduleTimeCardClockOut","POST","/teams/{param}/schedule/timeCards/{param}/clockOut","mismatch","Invoke-MgClockTeamScheduleTimeCardOut" +"Teams","InvokeMgTeamScheduleTimeCardConfirm.g.cs","v1.0","Invoke-MgTeamScheduleTimeCardConfirm","POST","/teams/{param}/schedule/timeCards/{param}/confirm","mismatch","Confirm-MgTeamScheduleTimeCard" +"Teams","InvokeMgTeamScheduleTimeCardEndBreak.g.cs","v1.0","Invoke-MgTeamScheduleTimeCardEndBreak","POST","/teams/{param}/schedule/timeCards/{param}/endBreak","mismatch","Stop-MgTeamScheduleTimeCardBreak" +"Teams","InvokeMgTeamScheduleTimeCardStartBreak.g.cs","v1.0","Invoke-MgTeamScheduleTimeCardStartBreak","POST","/teams/{param}/schedule/timeCards/{param}/startBreak","mismatch","Start-MgTeamScheduleTimeCardBreak" +"Teams","InvokeMgTeamSendActivityNotification.g.cs","v1.0","Invoke-MgTeamSendActivityNotification","POST","/teams/{param}/sendActivityNotification","mismatch","Send-MgTeamActivityNotification" +"Teams","InvokeMgTeamUnarchive.g.cs","v1.0","Invoke-MgTeamUnarchive","POST","/teams/{param}/unarchive","mismatch","Invoke-MgUnarchiveTeam" +"Teams","InvokeMgTeamworkDeletedChatUndoDelete.g.cs","v1.0","Invoke-MgTeamworkDeletedChatUndoDelete","POST","/teamwork/deletedChats/{param}/undoDelete","mismatch","Undo-MgTeamworkDeletedChatDelete" +"Teams","InvokeMgTeamworkDeletedTeamChannelAllMemberAdd.g.cs","v1.0","Invoke-MgTeamworkDeletedTeamChannelAllMemberAdd","POST","/teamwork/deletedTeams/{param}/channels/{param}/allMembers/add","mismatch","Add-MgTeamworkDeletedTeamChannelAllMember" +"Teams","InvokeMgTeamworkDeletedTeamChannelAllMemberRemove.g.cs","v1.0","Invoke-MgTeamworkDeletedTeamChannelAllMemberRemove","POST","/teamwork/deletedTeams/{param}/channels/{param}/allMembers/remove","mismatch","Remove-MgTeamworkDeletedTeamChannelAllMember" +"Teams","InvokeMgTeamworkDeletedTeamChannelArchive.g.cs","v1.0","Invoke-MgTeamworkDeletedTeamChannelArchive","POST","/teamwork/deletedTeams/{param}/channels/{param}/archive","mismatch","Invoke-MgArchiveTeamworkDeletedTeamChannel" +"Teams","InvokeMgTeamworkDeletedTeamChannelCompleteMigration.g.cs","v1.0","Invoke-MgTeamworkDeletedTeamChannelCompleteMigration","POST","/teamwork/deletedTeams/{param}/channels/{param}/completeMigration","mismatch","Complete-MgTeamworkDeletedTeamChannelMigration" +"Teams","InvokeMgTeamworkDeletedTeamChannelMemberAdd.g.cs","v1.0","Invoke-MgTeamworkDeletedTeamChannelMemberAdd","POST","/teamwork/deletedTeams/{param}/channels/{param}/members/add","mismatch","Add-MgTeamworkDeletedTeamChannelMember" +"Teams","InvokeMgTeamworkDeletedTeamChannelMemberRemove.g.cs","v1.0","Invoke-MgTeamworkDeletedTeamChannelMemberRemove","POST","/teamwork/deletedTeams/{param}/channels/{param}/members/remove","no-oracle","" +"Teams","InvokeMgTeamworkDeletedTeamChannelMessageReplyReplyWithQuote.g.cs","v1.0","Invoke-MgTeamworkDeletedTeamChannelMessageReplyReplyWithQuote","POST","/teamwork/deletedTeams/{param}/channels/{param}/messages/{param}/replies/replyWithQuote","mismatch","Invoke-MgGraphTeamworkDeletedTeamChannelMessageReply" +"Teams","InvokeMgTeamworkDeletedTeamChannelMessageReplySetReaction.g.cs","v1.0","Invoke-MgTeamworkDeletedTeamChannelMessageReplySetReaction","POST","/teamwork/deletedTeams/{param}/channels/{param}/messages/{param}/replies/{param}/setReaction","mismatch","Set-MgTeamworkDeletedTeamChannelMessageReplyReaction" +"Teams","InvokeMgTeamworkDeletedTeamChannelMessageReplySoftDelete.g.cs","v1.0","Invoke-MgTeamworkDeletedTeamChannelMessageReplySoftDelete","POST","/teamwork/deletedTeams/{param}/channels/{param}/messages/{param}/replies/{param}/softDelete","mismatch","Invoke-MgSoftTeamworkDeletedTeamChannelMessageReplyDelete" +"Teams","InvokeMgTeamworkDeletedTeamChannelMessageReplyUndoSoftDelete.g.cs","v1.0","Invoke-MgTeamworkDeletedTeamChannelMessageReplyUndoSoftDelete","POST","/teamwork/deletedTeams/{param}/channels/{param}/messages/{param}/replies/{param}/undoSoftDelete","mismatch","Undo-MgTeamworkDeletedTeamChannelMessageReplySoftDelete" +"Teams","InvokeMgTeamworkDeletedTeamChannelMessageReplyUnsetReaction.g.cs","v1.0","Invoke-MgTeamworkDeletedTeamChannelMessageReplyUnsetReaction","POST","/teamwork/deletedTeams/{param}/channels/{param}/messages/{param}/replies/{param}/unsetReaction","mismatch","Clear-MgTeamworkDeletedTeamChannelMessageReplyReaction" +"Teams","InvokeMgTeamworkDeletedTeamChannelMessageReplyWithQuote.g.cs","v1.0","Invoke-MgTeamworkDeletedTeamChannelMessageReplyWithQuote","POST","/teamwork/deletedTeams/{param}/channels/{param}/messages/replyWithQuote","mismatch","Invoke-MgGraphTeamworkDeletedTeamChannelMessage" +"Teams","InvokeMgTeamworkDeletedTeamChannelMessageSetReaction.g.cs","v1.0","Invoke-MgTeamworkDeletedTeamChannelMessageSetReaction","POST","/teamwork/deletedTeams/{param}/channels/{param}/messages/{param}/setReaction","mismatch","Set-MgTeamworkDeletedTeamChannelMessageReaction" +"Teams","InvokeMgTeamworkDeletedTeamChannelMessageSoftDelete.g.cs","v1.0","Invoke-MgTeamworkDeletedTeamChannelMessageSoftDelete","POST","/teamwork/deletedTeams/{param}/channels/{param}/messages/{param}/softDelete","mismatch","Invoke-MgSoftTeamworkDeletedTeamChannelMessageDelete" +"Teams","InvokeMgTeamworkDeletedTeamChannelMessageUndoSoftDelete.g.cs","v1.0","Invoke-MgTeamworkDeletedTeamChannelMessageUndoSoftDelete","POST","/teamwork/deletedTeams/{param}/channels/{param}/messages/{param}/undoSoftDelete","mismatch","Undo-MgTeamworkDeletedTeamChannelMessageSoftDelete" +"Teams","InvokeMgTeamworkDeletedTeamChannelMessageUnsetReaction.g.cs","v1.0","Invoke-MgTeamworkDeletedTeamChannelMessageUnsetReaction","POST","/teamwork/deletedTeams/{param}/channels/{param}/messages/{param}/unsetReaction","mismatch","Clear-MgTeamworkDeletedTeamChannelMessageReaction" +"Teams","InvokeMgTeamworkDeletedTeamChannelProvisionEmail.g.cs","v1.0","Invoke-MgTeamworkDeletedTeamChannelProvisionEmail","POST","/teamwork/deletedTeams/{param}/channels/{param}/provisionEmail","mismatch","New-MgTeamworkDeletedTeamChannelEmail" +"Teams","InvokeMgTeamworkDeletedTeamChannelRemoveEmail.g.cs","v1.0","Invoke-MgTeamworkDeletedTeamChannelRemoveEmail","POST","/teamwork/deletedTeams/{param}/channels/{param}/removeEmail","mismatch","Remove-MgTeamworkDeletedTeamChannelEmail" +"Teams","InvokeMgTeamworkDeletedTeamChannelStartMigration.g.cs","v1.0","Invoke-MgTeamworkDeletedTeamChannelStartMigration","POST","/teamwork/deletedTeams/{param}/channels/{param}/startMigration","mismatch","Start-MgTeamworkDeletedTeamChannelMigration" +"Teams","InvokeMgTeamworkDeletedTeamChannelUnarchive.g.cs","v1.0","Invoke-MgTeamworkDeletedTeamChannelUnarchive","POST","/teamwork/deletedTeams/{param}/channels/{param}/unarchive","mismatch","Invoke-MgUnarchiveTeamworkDeletedTeamChannel" +"Teams","InvokeMgTeamworkSendActivityNotificationToRecipients.g.cs","v1.0","Invoke-MgTeamworkSendActivityNotificationToRecipients","POST","/teamwork/sendActivityNotificationToRecipients","mismatch","Send-MgTeamworkActivityNotificationToRecipient" +"Teams","InvokeMgUserChatCompleteMigration.g.cs","v1.0","Invoke-MgUserChatCompleteMigration","POST","/users/{param}/chats/{param}/completeMigration","mismatch","Complete-MgUserChatMigration" +"Teams","InvokeMgUserChatHideForUser.g.cs","v1.0","Invoke-MgUserChatHideForUser","POST","/users/{param}/chats/{param}/hideForUser","mismatch","Hide-MgUserChatForUser" +"Teams","InvokeMgUserChatInstalledAppUpgrade.g.cs","v1.0","Invoke-MgUserChatInstalledAppUpgrade","POST","/users/{param}/chats/{param}/installedApps/{param}/upgrade","mismatch","Update-MgUserChatInstalledApp" +"Teams","InvokeMgUserChatMarkChatReadForUser.g.cs","v1.0","Invoke-MgUserChatMarkChatReadForUser","POST","/users/{param}/chats/{param}/markChatReadForUser","mismatch","Invoke-MgMarkUserChatReadForUser" +"Teams","InvokeMgUserChatMarkChatUnreadForUser.g.cs","v1.0","Invoke-MgUserChatMarkChatUnreadForUser","POST","/users/{param}/chats/{param}/markChatUnreadForUser","mismatch","Invoke-MgMarkUserChatUnreadForUser" +"Teams","InvokeMgUserChatMemberAdd.g.cs","v1.0","Invoke-MgUserChatMemberAdd","POST","/users/{param}/chats/{param}/members/add","mismatch","Add-MgUserChatMember" +"Teams","InvokeMgUserChatMemberRemove.g.cs","v1.0","Invoke-MgUserChatMemberRemove","POST","/users/{param}/chats/{param}/members/remove","no-oracle","" +"Teams","InvokeMgUserChatMessageReplyReplyWithQuote.g.cs","v1.0","Invoke-MgUserChatMessageReplyReplyWithQuote","POST","/users/{param}/chats/{param}/messages/{param}/replies/replyWithQuote","mismatch","Invoke-MgGraphUserChatMessageReply" +"Teams","InvokeMgUserChatMessageReplySetReaction.g.cs","v1.0","Invoke-MgUserChatMessageReplySetReaction","POST","/users/{param}/chats/{param}/messages/{param}/replies/{param}/setReaction","mismatch","Set-MgUserChatMessageReplyReaction" +"Teams","InvokeMgUserChatMessageReplySoftDelete.g.cs","v1.0","Invoke-MgUserChatMessageReplySoftDelete","POST","/users/{param}/chats/{param}/messages/{param}/replies/{param}/softDelete","mismatch","Invoke-MgSoftUserChatMessageReplyDelete" +"Teams","InvokeMgUserChatMessageReplyUndoSoftDelete.g.cs","v1.0","Invoke-MgUserChatMessageReplyUndoSoftDelete","POST","/users/{param}/chats/{param}/messages/{param}/replies/{param}/undoSoftDelete","mismatch","Undo-MgUserChatMessageReplySoftDelete" +"Teams","InvokeMgUserChatMessageReplyUnsetReaction.g.cs","v1.0","Invoke-MgUserChatMessageReplyUnsetReaction","POST","/users/{param}/chats/{param}/messages/{param}/replies/{param}/unsetReaction","mismatch","Clear-MgUserChatMessageReplyReaction" +"Teams","InvokeMgUserChatMessageReplyWithQuote.g.cs","v1.0","Invoke-MgUserChatMessageReplyWithQuote","POST","/users/{param}/chats/{param}/messages/replyWithQuote","mismatch","Invoke-MgGraphUserChatMessage" +"Teams","InvokeMgUserChatMessageSetReaction.g.cs","v1.0","Invoke-MgUserChatMessageSetReaction","POST","/users/{param}/chats/{param}/messages/{param}/setReaction","mismatch","Set-MgUserChatMessageReaction" +"Teams","InvokeMgUserChatMessageSoftDelete.g.cs","v1.0","Invoke-MgUserChatMessageSoftDelete","POST","/users/{param}/chats/{param}/messages/{param}/softDelete","mismatch","Invoke-MgSoftUserChatMessageDelete" +"Teams","InvokeMgUserChatMessageUndoSoftDelete.g.cs","v1.0","Invoke-MgUserChatMessageUndoSoftDelete","POST","/users/{param}/chats/{param}/messages/{param}/undoSoftDelete","mismatch","Undo-MgUserChatMessageSoftDelete" +"Teams","InvokeMgUserChatMessageUnsetReaction.g.cs","v1.0","Invoke-MgUserChatMessageUnsetReaction","POST","/users/{param}/chats/{param}/messages/{param}/unsetReaction","mismatch","Clear-MgUserChatMessageReaction" +"Teams","InvokeMgUserChatRemoveAllAccessForUser.g.cs","v1.0","Invoke-MgUserChatRemoveAllAccessForUser","POST","/users/{param}/chats/{param}/removeAllAccessForUser","mismatch","Remove-MgUserChatAccessForUser" +"Teams","InvokeMgUserChatSendActivityNotification.g.cs","v1.0","Invoke-MgUserChatSendActivityNotification","POST","/users/{param}/chats/{param}/sendActivityNotification","mismatch","Send-MgUserChatActivityNotification" +"Teams","InvokeMgUserChatStartMigration.g.cs","v1.0","Invoke-MgUserChatStartMigration","POST","/users/{param}/chats/{param}/startMigration","mismatch","Start-MgUserChatMigration" +"Teams","InvokeMgUserChatTargetedMessageReplyReplyWithQuote.g.cs","v1.0","Invoke-MgUserChatTargetedMessageReplyReplyWithQuote","POST","/users/{param}/chats/{param}/targetedMessages/{param}/replies/replyWithQuote","mismatch","Invoke-MgGraphUserChatTargetedMessageReply" +"Teams","InvokeMgUserChatTargetedMessageReplySetReaction.g.cs","v1.0","Invoke-MgUserChatTargetedMessageReplySetReaction","POST","/users/{param}/chats/{param}/targetedMessages/{param}/replies/{param}/setReaction","mismatch","Set-MgUserChatTargetedMessageReplyReaction" +"Teams","InvokeMgUserChatTargetedMessageReplySoftDelete.g.cs","v1.0","Invoke-MgUserChatTargetedMessageReplySoftDelete","POST","/users/{param}/chats/{param}/targetedMessages/{param}/replies/{param}/softDelete","mismatch","Invoke-MgSoftUserChatTargetedMessageReplyDelete" +"Teams","InvokeMgUserChatTargetedMessageReplyUndoSoftDelete.g.cs","v1.0","Invoke-MgUserChatTargetedMessageReplyUndoSoftDelete","POST","/users/{param}/chats/{param}/targetedMessages/{param}/replies/{param}/undoSoftDelete","mismatch","Undo-MgUserChatTargetedMessageReplySoftDelete" +"Teams","InvokeMgUserChatTargetedMessageReplyUnsetReaction.g.cs","v1.0","Invoke-MgUserChatTargetedMessageReplyUnsetReaction","POST","/users/{param}/chats/{param}/targetedMessages/{param}/replies/{param}/unsetReaction","mismatch","Clear-MgUserChatTargetedMessageReplyReaction" +"Teams","InvokeMgUserChatUnhideForUser.g.cs","v1.0","Invoke-MgUserChatUnhideForUser","POST","/users/{param}/chats/{param}/unhideForUser","mismatch","Invoke-MgGraphUserChat" +"Teams","InvokeMgUserJoinedTeamArchive.g.cs","v1.0","Invoke-MgUserJoinedTeamArchive","POST","/users/{param}/joinedTeams/{param}/archive","no-oracle","" +"Teams","InvokeMgUserJoinedTeamChannelAllMemberAdd.g.cs","v1.0","Invoke-MgUserJoinedTeamChannelAllMemberAdd","POST","/users/{param}/joinedTeams/{param}/channels/{param}/allMembers/add","no-oracle","" +"Teams","InvokeMgUserJoinedTeamChannelAllMemberRemove.g.cs","v1.0","Invoke-MgUserJoinedTeamChannelAllMemberRemove","POST","/users/{param}/joinedTeams/{param}/channels/{param}/allMembers/remove","no-oracle","" +"Teams","InvokeMgUserJoinedTeamChannelArchive.g.cs","v1.0","Invoke-MgUserJoinedTeamChannelArchive","POST","/users/{param}/joinedTeams/{param}/channels/{param}/archive","no-oracle","" +"Teams","InvokeMgUserJoinedTeamChannelCompleteMigration.g.cs","v1.0","Invoke-MgUserJoinedTeamChannelCompleteMigration","POST","/users/{param}/joinedTeams/{param}/channels/{param}/completeMigration","no-oracle","" +"Teams","InvokeMgUserJoinedTeamChannelMemberAdd.g.cs","v1.0","Invoke-MgUserJoinedTeamChannelMemberAdd","POST","/users/{param}/joinedTeams/{param}/channels/{param}/members/add","no-oracle","" +"Teams","InvokeMgUserJoinedTeamChannelMemberRemove.g.cs","v1.0","Invoke-MgUserJoinedTeamChannelMemberRemove","POST","/users/{param}/joinedTeams/{param}/channels/{param}/members/remove","no-oracle","" +"Teams","InvokeMgUserJoinedTeamChannelMessageReplyReplyWithQuote.g.cs","v1.0","Invoke-MgUserJoinedTeamChannelMessageReplyReplyWithQuote","POST","/users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/replies/replyWithQuote","no-oracle","" +"Teams","InvokeMgUserJoinedTeamChannelMessageReplySetReaction.g.cs","v1.0","Invoke-MgUserJoinedTeamChannelMessageReplySetReaction","POST","/users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/replies/{param}/setReaction","no-oracle","" +"Teams","InvokeMgUserJoinedTeamChannelMessageReplySoftDelete.g.cs","v1.0","Invoke-MgUserJoinedTeamChannelMessageReplySoftDelete","POST","/users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/replies/{param}/softDelete","no-oracle","" +"Teams","InvokeMgUserJoinedTeamChannelMessageReplyUndoSoftDelete.g.cs","v1.0","Invoke-MgUserJoinedTeamChannelMessageReplyUndoSoftDelete","POST","/users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/replies/{param}/undoSoftDelete","no-oracle","" +"Teams","InvokeMgUserJoinedTeamChannelMessageReplyUnsetReaction.g.cs","v1.0","Invoke-MgUserJoinedTeamChannelMessageReplyUnsetReaction","POST","/users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/replies/{param}/unsetReaction","no-oracle","" +"Teams","InvokeMgUserJoinedTeamChannelMessageReplyWithQuote.g.cs","v1.0","Invoke-MgUserJoinedTeamChannelMessageReplyWithQuote","POST","/users/{param}/joinedTeams/{param}/channels/{param}/messages/replyWithQuote","no-oracle","" +"Teams","InvokeMgUserJoinedTeamChannelMessageSetReaction.g.cs","v1.0","Invoke-MgUserJoinedTeamChannelMessageSetReaction","POST","/users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/setReaction","no-oracle","" +"Teams","InvokeMgUserJoinedTeamChannelMessageSoftDelete.g.cs","v1.0","Invoke-MgUserJoinedTeamChannelMessageSoftDelete","POST","/users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/softDelete","no-oracle","" +"Teams","InvokeMgUserJoinedTeamChannelMessageUndoSoftDelete.g.cs","v1.0","Invoke-MgUserJoinedTeamChannelMessageUndoSoftDelete","POST","/users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/undoSoftDelete","no-oracle","" +"Teams","InvokeMgUserJoinedTeamChannelMessageUnsetReaction.g.cs","v1.0","Invoke-MgUserJoinedTeamChannelMessageUnsetReaction","POST","/users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/unsetReaction","no-oracle","" +"Teams","InvokeMgUserJoinedTeamChannelProvisionEmail.g.cs","v1.0","Invoke-MgUserJoinedTeamChannelProvisionEmail","POST","/users/{param}/joinedTeams/{param}/channels/{param}/provisionEmail","no-oracle","" +"Teams","InvokeMgUserJoinedTeamChannelRemoveEmail.g.cs","v1.0","Invoke-MgUserJoinedTeamChannelRemoveEmail","POST","/users/{param}/joinedTeams/{param}/channels/{param}/removeEmail","no-oracle","" +"Teams","InvokeMgUserJoinedTeamChannelStartMigration.g.cs","v1.0","Invoke-MgUserJoinedTeamChannelStartMigration","POST","/users/{param}/joinedTeams/{param}/channels/{param}/startMigration","no-oracle","" +"Teams","InvokeMgUserJoinedTeamChannelUnarchive.g.cs","v1.0","Invoke-MgUserJoinedTeamChannelUnarchive","POST","/users/{param}/joinedTeams/{param}/channels/{param}/unarchive","no-oracle","" +"Teams","InvokeMgUserJoinedTeamClone.g.cs","v1.0","Invoke-MgUserJoinedTeamClone","POST","/users/{param}/joinedTeams/{param}/clone","no-oracle","" +"Teams","InvokeMgUserJoinedTeamCompleteMigration.g.cs","v1.0","Invoke-MgUserJoinedTeamCompleteMigration","POST","/users/{param}/joinedTeams/{param}/completeMigration","no-oracle","" +"Teams","InvokeMgUserJoinedTeamInstalledAppUpgrade.g.cs","v1.0","Invoke-MgUserJoinedTeamInstalledAppUpgrade","POST","/users/{param}/joinedTeams/{param}/installedApps/{param}/upgrade","no-oracle","" +"Teams","InvokeMgUserJoinedTeamMemberAdd.g.cs","v1.0","Invoke-MgUserJoinedTeamMemberAdd","POST","/users/{param}/joinedTeams/{param}/members/add","no-oracle","" +"Teams","InvokeMgUserJoinedTeamMemberRemove.g.cs","v1.0","Invoke-MgUserJoinedTeamMemberRemove","POST","/users/{param}/joinedTeams/{param}/members/remove","no-oracle","" +"Teams","InvokeMgUserJoinedTeamPrimaryChannelAllMemberAdd.g.cs","v1.0","Invoke-MgUserJoinedTeamPrimaryChannelAllMemberAdd","POST","/users/{param}/joinedTeams/{param}/primaryChannel/allMembers/add","no-oracle","" +"Teams","InvokeMgUserJoinedTeamPrimaryChannelAllMemberRemove.g.cs","v1.0","Invoke-MgUserJoinedTeamPrimaryChannelAllMemberRemove","POST","/users/{param}/joinedTeams/{param}/primaryChannel/allMembers/remove","no-oracle","" +"Teams","InvokeMgUserJoinedTeamPrimaryChannelArchive.g.cs","v1.0","Invoke-MgUserJoinedTeamPrimaryChannelArchive","POST","/users/{param}/joinedTeams/{param}/primaryChannel/archive","no-oracle","" +"Teams","InvokeMgUserJoinedTeamPrimaryChannelCompleteMigration.g.cs","v1.0","Invoke-MgUserJoinedTeamPrimaryChannelCompleteMigration","POST","/users/{param}/joinedTeams/{param}/primaryChannel/completeMigration","no-oracle","" +"Teams","InvokeMgUserJoinedTeamPrimaryChannelMemberAdd.g.cs","v1.0","Invoke-MgUserJoinedTeamPrimaryChannelMemberAdd","POST","/users/{param}/joinedTeams/{param}/primaryChannel/members/add","no-oracle","" +"Teams","InvokeMgUserJoinedTeamPrimaryChannelMemberRemove.g.cs","v1.0","Invoke-MgUserJoinedTeamPrimaryChannelMemberRemove","POST","/users/{param}/joinedTeams/{param}/primaryChannel/members/remove","no-oracle","" +"Teams","InvokeMgUserJoinedTeamPrimaryChannelMessageReplyReplyWithQuote.g.cs","v1.0","Invoke-MgUserJoinedTeamPrimaryChannelMessageReplyReplyWithQuote","POST","/users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/replies/replyWithQuote","no-oracle","" +"Teams","InvokeMgUserJoinedTeamPrimaryChannelMessageReplySetReaction.g.cs","v1.0","Invoke-MgUserJoinedTeamPrimaryChannelMessageReplySetReaction","POST","/users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/replies/{param}/setReaction","no-oracle","" +"Teams","InvokeMgUserJoinedTeamPrimaryChannelMessageReplySoftDelete.g.cs","v1.0","Invoke-MgUserJoinedTeamPrimaryChannelMessageReplySoftDelete","POST","/users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/replies/{param}/softDelete","no-oracle","" +"Teams","InvokeMgUserJoinedTeamPrimaryChannelMessageReplyUndoSoftDelete.g.cs","v1.0","Invoke-MgUserJoinedTeamPrimaryChannelMessageReplyUndoSoftDelete","POST","/users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/replies/{param}/undoSoftDelete","no-oracle","" +"Teams","InvokeMgUserJoinedTeamPrimaryChannelMessageReplyUnsetReaction.g.cs","v1.0","Invoke-MgUserJoinedTeamPrimaryChannelMessageReplyUnsetReaction","POST","/users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/replies/{param}/unsetReaction","no-oracle","" +"Teams","InvokeMgUserJoinedTeamPrimaryChannelMessageReplyWithQuote.g.cs","v1.0","Invoke-MgUserJoinedTeamPrimaryChannelMessageReplyWithQuote","POST","/users/{param}/joinedTeams/{param}/primaryChannel/messages/replyWithQuote","no-oracle","" +"Teams","InvokeMgUserJoinedTeamPrimaryChannelMessageSetReaction.g.cs","v1.0","Invoke-MgUserJoinedTeamPrimaryChannelMessageSetReaction","POST","/users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/setReaction","no-oracle","" +"Teams","InvokeMgUserJoinedTeamPrimaryChannelMessageSoftDelete.g.cs","v1.0","Invoke-MgUserJoinedTeamPrimaryChannelMessageSoftDelete","POST","/users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/softDelete","no-oracle","" +"Teams","InvokeMgUserJoinedTeamPrimaryChannelMessageUndoSoftDelete.g.cs","v1.0","Invoke-MgUserJoinedTeamPrimaryChannelMessageUndoSoftDelete","POST","/users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/undoSoftDelete","no-oracle","" +"Teams","InvokeMgUserJoinedTeamPrimaryChannelMessageUnsetReaction.g.cs","v1.0","Invoke-MgUserJoinedTeamPrimaryChannelMessageUnsetReaction","POST","/users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/unsetReaction","no-oracle","" +"Teams","InvokeMgUserJoinedTeamPrimaryChannelProvisionEmail.g.cs","v1.0","Invoke-MgUserJoinedTeamPrimaryChannelProvisionEmail","POST","/users/{param}/joinedTeams/{param}/primaryChannel/provisionEmail","no-oracle","" +"Teams","InvokeMgUserJoinedTeamPrimaryChannelRemoveEmail.g.cs","v1.0","Invoke-MgUserJoinedTeamPrimaryChannelRemoveEmail","POST","/users/{param}/joinedTeams/{param}/primaryChannel/removeEmail","no-oracle","" +"Teams","InvokeMgUserJoinedTeamPrimaryChannelStartMigration.g.cs","v1.0","Invoke-MgUserJoinedTeamPrimaryChannelStartMigration","POST","/users/{param}/joinedTeams/{param}/primaryChannel/startMigration","no-oracle","" +"Teams","InvokeMgUserJoinedTeamPrimaryChannelUnarchive.g.cs","v1.0","Invoke-MgUserJoinedTeamPrimaryChannelUnarchive","POST","/users/{param}/joinedTeams/{param}/primaryChannel/unarchive","no-oracle","" +"Teams","InvokeMgUserJoinedTeamScheduleShare.g.cs","v1.0","Invoke-MgUserJoinedTeamScheduleShare","POST","/users/{param}/joinedTeams/{param}/schedule/share","no-oracle","" +"Teams","InvokeMgUserJoinedTeamScheduleTimeCardClockIn.g.cs","v1.0","Invoke-MgUserJoinedTeamScheduleTimeCardClockIn","POST","/users/{param}/joinedTeams/{param}/schedule/timeCards/clockIn","no-oracle","" +"Teams","InvokeMgUserJoinedTeamScheduleTimeCardClockOut.g.cs","v1.0","Invoke-MgUserJoinedTeamScheduleTimeCardClockOut","POST","/users/{param}/joinedTeams/{param}/schedule/timeCards/{param}/clockOut","no-oracle","" +"Teams","InvokeMgUserJoinedTeamScheduleTimeCardConfirm.g.cs","v1.0","Invoke-MgUserJoinedTeamScheduleTimeCardConfirm","POST","/users/{param}/joinedTeams/{param}/schedule/timeCards/{param}/confirm","no-oracle","" +"Teams","InvokeMgUserJoinedTeamScheduleTimeCardEndBreak.g.cs","v1.0","Invoke-MgUserJoinedTeamScheduleTimeCardEndBreak","POST","/users/{param}/joinedTeams/{param}/schedule/timeCards/{param}/endBreak","no-oracle","" +"Teams","InvokeMgUserJoinedTeamScheduleTimeCardStartBreak.g.cs","v1.0","Invoke-MgUserJoinedTeamScheduleTimeCardStartBreak","POST","/users/{param}/joinedTeams/{param}/schedule/timeCards/{param}/startBreak","no-oracle","" +"Teams","InvokeMgUserJoinedTeamSendActivityNotification.g.cs","v1.0","Invoke-MgUserJoinedTeamSendActivityNotification","POST","/users/{param}/joinedTeams/{param}/sendActivityNotification","no-oracle","" +"Teams","InvokeMgUserJoinedTeamUnarchive.g.cs","v1.0","Invoke-MgUserJoinedTeamUnarchive","POST","/users/{param}/joinedTeams/{param}/unarchive","no-oracle","" +"Teams","InvokeMgUserTeamworkDeleteTargetedMessage.g.cs","v1.0","Invoke-MgUserTeamworkDeleteTargetedMessage","POST","/users/{param}/teamwork/deleteTargetedMessage","mismatch","Remove-MgUserTeamworkTargetedMessage" +"Teams","InvokeMgUserTeamworkSendActivityNotification.g.cs","v1.0","Invoke-MgUserTeamworkSendActivityNotification","POST","/users/{param}/teamwork/sendActivityNotification","mismatch","Send-MgUserTeamworkActivityNotification" +"Teams","NewMgAppCatalogTeamApp.g.cs","v1.0","New-MgAppCatalogTeamApp","POST","/appCatalogs/teamsApps","matched","New-MgAppCatalogTeamApp" +"Teams","NewMgAppCatalogTeamAppDefinition.g.cs","v1.0","New-MgAppCatalogTeamAppDefinition","POST","/appCatalogs/teamsApps/{param}/appDefinitions","matched","New-MgAppCatalogTeamAppDefinition" +"Teams","NewMgChat.g.cs","v1.0","New-MgChat","POST","/chats","matched","New-MgChat" +"Teams","NewMgChatInstalledApp.g.cs","v1.0","New-MgChatInstalledApp","POST","/chats/{param}/installedApps","matched","New-MgChatInstalledApp" +"Teams","NewMgChatMember.g.cs","v1.0","New-MgChatMember","POST","/chats/{param}/members","matched","New-MgChatMember" +"Teams","NewMgChatMessage.g.cs","v1.0","New-MgChatMessage","POST","/chats/{param}/messages","matched","New-MgChatMessage" +"Teams","NewMgChatMessageHostedContent.g.cs","v1.0","New-MgChatMessageHostedContent","POST","/chats/{param}/messages/{param}/hostedContents","matched","New-MgChatMessageHostedContent" +"Teams","NewMgChatMessageReply.g.cs","v1.0","New-MgChatMessageReply","POST","/chats/{param}/messages/{param}/replies","matched","New-MgChatMessageReply" +"Teams","NewMgChatMessageReplyHostedContent.g.cs","v1.0","New-MgChatMessageReplyHostedContent","POST","/chats/{param}/messages/{param}/replies/{param}/hostedContents","matched","New-MgChatMessageReplyHostedContent" +"Teams","NewMgChatPermissionGrant.g.cs","v1.0","New-MgChatPermissionGrant","POST","/chats/{param}/permissionGrants","matched","New-MgChatPermissionGrant" +"Teams","NewMgChatPinnedMessage.g.cs","v1.0","New-MgChatPinnedMessage","POST","/chats/{param}/pinnedMessages","matched","New-MgChatPinnedMessage" +"Teams","NewMgChatTab.g.cs","v1.0","New-MgChatTab","POST","/chats/{param}/tabs","matched","New-MgChatTab" +"Teams","NewMgChatTargetedMessage.g.cs","v1.0","New-MgChatTargetedMessage","POST","/chats/{param}/targetedMessages","matched","New-MgChatTargetedMessage" +"Teams","NewMgChatTargetedMessageHostedContent.g.cs","v1.0","New-MgChatTargetedMessageHostedContent","POST","/chats/{param}/targetedMessages/{param}/hostedContents","matched","New-MgChatTargetedMessageHostedContent" +"Teams","NewMgChatTargetedMessageReply.g.cs","v1.0","New-MgChatTargetedMessageReply","POST","/chats/{param}/targetedMessages/{param}/replies","matched","New-MgChatTargetedMessageReply" +"Teams","NewMgChatTargetedMessageReplyHostedContent.g.cs","v1.0","New-MgChatTargetedMessageReplyHostedContent","POST","/chats/{param}/targetedMessages/{param}/replies/{param}/hostedContents","matched","New-MgChatTargetedMessageReplyHostedContent" +"Teams","NewMgGroupTeamChannel.g.cs","v1.0","New-MgGroupTeamChannel","POST","/groups/{param}/team/channels","matched","New-MgGroupTeamChannel" +"Teams","NewMgGroupTeamChannelAllMember.g.cs","v1.0","New-MgGroupTeamChannelAllMember","POST","/groups/{param}/team/channels/{param}/allMembers","mismatch","New-MgGroupTeamChannelMember" +"Teams","NewMgGroupTeamChannelMember.g.cs","v1.0","New-MgGroupTeamChannelMember","POST","/groups/{param}/team/channels/{param}/members","no-oracle","" +"Teams","NewMgGroupTeamChannelMessage.g.cs","v1.0","New-MgGroupTeamChannelMessage","POST","/groups/{param}/team/channels/{param}/messages","matched","New-MgGroupTeamChannelMessage" +"Teams","NewMgGroupTeamChannelMessageHostedContent.g.cs","v1.0","New-MgGroupTeamChannelMessageHostedContent","POST","/groups/{param}/team/channels/{param}/messages/{param}/hostedContents","matched","New-MgGroupTeamChannelMessageHostedContent" +"Teams","NewMgGroupTeamChannelMessageReply.g.cs","v1.0","New-MgGroupTeamChannelMessageReply","POST","/groups/{param}/team/channels/{param}/messages/{param}/replies","matched","New-MgGroupTeamChannelMessageReply" +"Teams","NewMgGroupTeamChannelMessageReplyHostedContent.g.cs","v1.0","New-MgGroupTeamChannelMessageReplyHostedContent","POST","/groups/{param}/team/channels/{param}/messages/{param}/replies/{param}/hostedContents","matched","New-MgGroupTeamChannelMessageReplyHostedContent" +"Teams","NewMgGroupTeamChannelSharedWithTeam.g.cs","v1.0","New-MgGroupTeamChannelSharedWithTeam","POST","/groups/{param}/team/channels/{param}/sharedWithTeams","matched","New-MgGroupTeamChannelSharedWithTeam" +"Teams","NewMgGroupTeamChannelTab.g.cs","v1.0","New-MgGroupTeamChannelTab","POST","/groups/{param}/team/channels/{param}/tabs","matched","New-MgGroupTeamChannelTab" +"Teams","NewMgGroupTeamInstalledApp.g.cs","v1.0","New-MgGroupTeamInstalledApp","POST","/groups/{param}/team/installedApps","matched","New-MgGroupTeamInstalledApp" +"Teams","NewMgGroupTeamMember.g.cs","v1.0","New-MgGroupTeamMember","POST","/groups/{param}/team/members","matched","New-MgGroupTeamMember" +"Teams","NewMgGroupTeamOperation.g.cs","v1.0","New-MgGroupTeamOperation","POST","/groups/{param}/team/operations","matched","New-MgGroupTeamOperation" +"Teams","NewMgGroupTeamPermissionGrant.g.cs","v1.0","New-MgGroupTeamPermissionGrant","POST","/groups/{param}/team/permissionGrants","matched","New-MgGroupTeamPermissionGrant" +"Teams","NewMgGroupTeamPrimaryChannelAllMember.g.cs","v1.0","New-MgGroupTeamPrimaryChannelAllMember","POST","/groups/{param}/team/primaryChannel/allMembers","mismatch","New-MgGroupTeamPrimaryChannelMember" +"Teams","NewMgGroupTeamPrimaryChannelMember.g.cs","v1.0","New-MgGroupTeamPrimaryChannelMember","POST","/groups/{param}/team/primaryChannel/members","no-oracle","" +"Teams","NewMgGroupTeamPrimaryChannelMessage.g.cs","v1.0","New-MgGroupTeamPrimaryChannelMessage","POST","/groups/{param}/team/primaryChannel/messages","matched","New-MgGroupTeamPrimaryChannelMessage" +"Teams","NewMgGroupTeamPrimaryChannelMessageHostedContent.g.cs","v1.0","New-MgGroupTeamPrimaryChannelMessageHostedContent","POST","/groups/{param}/team/primaryChannel/messages/{param}/hostedContents","matched","New-MgGroupTeamPrimaryChannelMessageHostedContent" +"Teams","NewMgGroupTeamPrimaryChannelMessageReply.g.cs","v1.0","New-MgGroupTeamPrimaryChannelMessageReply","POST","/groups/{param}/team/primaryChannel/messages/{param}/replies","matched","New-MgGroupTeamPrimaryChannelMessageReply" +"Teams","NewMgGroupTeamPrimaryChannelMessageReplyHostedContent.g.cs","v1.0","New-MgGroupTeamPrimaryChannelMessageReplyHostedContent","POST","/groups/{param}/team/primaryChannel/messages/{param}/replies/{param}/hostedContents","matched","New-MgGroupTeamPrimaryChannelMessageReplyHostedContent" +"Teams","NewMgGroupTeamPrimaryChannelSharedWithTeam.g.cs","v1.0","New-MgGroupTeamPrimaryChannelSharedWithTeam","POST","/groups/{param}/team/primaryChannel/sharedWithTeams","matched","New-MgGroupTeamPrimaryChannelSharedWithTeam" +"Teams","NewMgGroupTeamPrimaryChannelTab.g.cs","v1.0","New-MgGroupTeamPrimaryChannelTab","POST","/groups/{param}/team/primaryChannel/tabs","matched","New-MgGroupTeamPrimaryChannelTab" +"Teams","NewMgGroupTeamScheduleDayNote.g.cs","v1.0","New-MgGroupTeamScheduleDayNote","POST","/groups/{param}/team/schedule/dayNotes","matched","New-MgGroupTeamScheduleDayNote" +"Teams","NewMgGroupTeamScheduleOfferShiftRequest.g.cs","v1.0","New-MgGroupTeamScheduleOfferShiftRequest","POST","/groups/{param}/team/schedule/offerShiftRequests","matched","New-MgGroupTeamScheduleOfferShiftRequest" +"Teams","NewMgGroupTeamScheduleOpenShift.g.cs","v1.0","New-MgGroupTeamScheduleOpenShift","POST","/groups/{param}/team/schedule/openShifts","matched","New-MgGroupTeamScheduleOpenShift" +"Teams","NewMgGroupTeamScheduleOpenShiftChangeRequest.g.cs","v1.0","New-MgGroupTeamScheduleOpenShiftChangeRequest","POST","/groups/{param}/team/schedule/openShiftChangeRequests","matched","New-MgGroupTeamScheduleOpenShiftChangeRequest" +"Teams","NewMgGroupTeamScheduleSchedulingGroup.g.cs","v1.0","New-MgGroupTeamScheduleSchedulingGroup","POST","/groups/{param}/team/schedule/schedulingGroups","matched","New-MgGroupTeamScheduleSchedulingGroup" +"Teams","NewMgGroupTeamScheduleShift.g.cs","v1.0","New-MgGroupTeamScheduleShift","POST","/groups/{param}/team/schedule/shifts","matched","New-MgGroupTeamScheduleShift" +"Teams","NewMgGroupTeamScheduleSwapShiftChangeRequest.g.cs","v1.0","New-MgGroupTeamScheduleSwapShiftChangeRequest","POST","/groups/{param}/team/schedule/swapShiftsChangeRequests","matched","New-MgGroupTeamScheduleSwapShiftChangeRequest" +"Teams","NewMgGroupTeamScheduleTimeCard.g.cs","v1.0","New-MgGroupTeamScheduleTimeCard","POST","/groups/{param}/team/schedule/timeCards","matched","New-MgGroupTeamScheduleTimeCard" +"Teams","NewMgGroupTeamScheduleTimeOff.g.cs","v1.0","New-MgGroupTeamScheduleTimeOff","POST","/groups/{param}/team/schedule/timesOff","matched","New-MgGroupTeamScheduleTimeOff" +"Teams","NewMgGroupTeamScheduleTimeOffReason.g.cs","v1.0","New-MgGroupTeamScheduleTimeOffReason","POST","/groups/{param}/team/schedule/timeOffReasons","matched","New-MgGroupTeamScheduleTimeOffReason" +"Teams","NewMgGroupTeamScheduleTimeOffRequest.g.cs","v1.0","New-MgGroupTeamScheduleTimeOffRequest","POST","/groups/{param}/team/schedule/timeOffRequests","matched","New-MgGroupTeamScheduleTimeOffRequest" +"Teams","NewMgGroupTeamTag.g.cs","v1.0","New-MgGroupTeamTag","POST","/groups/{param}/team/tags","matched","New-MgGroupTeamTag" +"Teams","NewMgGroupTeamTagMember.g.cs","v1.0","New-MgGroupTeamTagMember","POST","/groups/{param}/team/tags/{param}/members","matched","New-MgGroupTeamTagMember" +"Teams","NewMgTeam.g.cs","v1.0","New-MgTeam","POST","/teams","matched","New-MgTeam" +"Teams","NewMgTeamChannel.g.cs","v1.0","New-MgTeamChannel","POST","/teams/{param}/channels","matched","New-MgTeamChannel" +"Teams","NewMgTeamChannelAllMember.g.cs","v1.0","New-MgTeamChannelAllMember","POST","/teams/{param}/channels/{param}/allMembers","mismatch","New-MgTeamChannelMember" +"Teams","NewMgTeamChannelMember.g.cs","v1.0","New-MgTeamChannelMember","POST","/teams/{param}/channels/{param}/members","no-oracle","" +"Teams","NewMgTeamChannelMessage.g.cs","v1.0","New-MgTeamChannelMessage","POST","/teams/{param}/channels/{param}/messages","matched","New-MgTeamChannelMessage" +"Teams","NewMgTeamChannelMessageHostedContent.g.cs","v1.0","New-MgTeamChannelMessageHostedContent","POST","/teams/{param}/channels/{param}/messages/{param}/hostedContents","matched","New-MgTeamChannelMessageHostedContent" +"Teams","NewMgTeamChannelMessageReply.g.cs","v1.0","New-MgTeamChannelMessageReply","POST","/teams/{param}/channels/{param}/messages/{param}/replies","matched","New-MgTeamChannelMessageReply" +"Teams","NewMgTeamChannelMessageReplyHostedContent.g.cs","v1.0","New-MgTeamChannelMessageReplyHostedContent","POST","/teams/{param}/channels/{param}/messages/{param}/replies/{param}/hostedContents","matched","New-MgTeamChannelMessageReplyHostedContent" +"Teams","NewMgTeamChannelSharedWithTeam.g.cs","v1.0","New-MgTeamChannelSharedWithTeam","POST","/teams/{param}/channels/{param}/sharedWithTeams","matched","New-MgTeamChannelSharedWithTeam" +"Teams","NewMgTeamChannelTab.g.cs","v1.0","New-MgTeamChannelTab","POST","/teams/{param}/channels/{param}/tabs","matched","New-MgTeamChannelTab" +"Teams","NewMgTeamInstalledApp.g.cs","v1.0","New-MgTeamInstalledApp","POST","/teams/{param}/installedApps","matched","New-MgTeamInstalledApp" +"Teams","NewMgTeamMember.g.cs","v1.0","New-MgTeamMember","POST","/teams/{param}/members","matched","New-MgTeamMember" +"Teams","NewMgTeamOperation.g.cs","v1.0","New-MgTeamOperation","POST","/teams/{param}/operations","matched","New-MgTeamOperation" +"Teams","NewMgTeamPermissionGrant.g.cs","v1.0","New-MgTeamPermissionGrant","POST","/teams/{param}/permissionGrants","matched","New-MgTeamPermissionGrant" +"Teams","NewMgTeamPrimaryChannelAllMember.g.cs","v1.0","New-MgTeamPrimaryChannelAllMember","POST","/teams/{param}/primaryChannel/allMembers","mismatch","New-MgTeamPrimaryChannelMember" +"Teams","NewMgTeamPrimaryChannelMember.g.cs","v1.0","New-MgTeamPrimaryChannelMember","POST","/teams/{param}/primaryChannel/members","no-oracle","" +"Teams","NewMgTeamPrimaryChannelMessage.g.cs","v1.0","New-MgTeamPrimaryChannelMessage","POST","/teams/{param}/primaryChannel/messages","matched","New-MgTeamPrimaryChannelMessage" +"Teams","NewMgTeamPrimaryChannelMessageHostedContent.g.cs","v1.0","New-MgTeamPrimaryChannelMessageHostedContent","POST","/teams/{param}/primaryChannel/messages/{param}/hostedContents","matched","New-MgTeamPrimaryChannelMessageHostedContent" +"Teams","NewMgTeamPrimaryChannelMessageReply.g.cs","v1.0","New-MgTeamPrimaryChannelMessageReply","POST","/teams/{param}/primaryChannel/messages/{param}/replies","matched","New-MgTeamPrimaryChannelMessageReply" +"Teams","NewMgTeamPrimaryChannelMessageReplyHostedContent.g.cs","v1.0","New-MgTeamPrimaryChannelMessageReplyHostedContent","POST","/teams/{param}/primaryChannel/messages/{param}/replies/{param}/hostedContents","matched","New-MgTeamPrimaryChannelMessageReplyHostedContent" +"Teams","NewMgTeamPrimaryChannelSharedWithTeam.g.cs","v1.0","New-MgTeamPrimaryChannelSharedWithTeam","POST","/teams/{param}/primaryChannel/sharedWithTeams","matched","New-MgTeamPrimaryChannelSharedWithTeam" +"Teams","NewMgTeamPrimaryChannelTab.g.cs","v1.0","New-MgTeamPrimaryChannelTab","POST","/teams/{param}/primaryChannel/tabs","matched","New-MgTeamPrimaryChannelTab" +"Teams","NewMgTeamScheduleDayNote.g.cs","v1.0","New-MgTeamScheduleDayNote","POST","/teams/{param}/schedule/dayNotes","matched","New-MgTeamScheduleDayNote" +"Teams","NewMgTeamScheduleOfferShiftRequest.g.cs","v1.0","New-MgTeamScheduleOfferShiftRequest","POST","/teams/{param}/schedule/offerShiftRequests","matched","New-MgTeamScheduleOfferShiftRequest" +"Teams","NewMgTeamScheduleOpenShift.g.cs","v1.0","New-MgTeamScheduleOpenShift","POST","/teams/{param}/schedule/openShifts","matched","New-MgTeamScheduleOpenShift" +"Teams","NewMgTeamScheduleOpenShiftChangeRequest.g.cs","v1.0","New-MgTeamScheduleOpenShiftChangeRequest","POST","/teams/{param}/schedule/openShiftChangeRequests","matched","New-MgTeamScheduleOpenShiftChangeRequest" +"Teams","NewMgTeamScheduleSchedulingGroup.g.cs","v1.0","New-MgTeamScheduleSchedulingGroup","POST","/teams/{param}/schedule/schedulingGroups","matched","New-MgTeamScheduleSchedulingGroup" +"Teams","NewMgTeamScheduleShift.g.cs","v1.0","New-MgTeamScheduleShift","POST","/teams/{param}/schedule/shifts","matched","New-MgTeamScheduleShift" +"Teams","NewMgTeamScheduleSwapShiftChangeRequest.g.cs","v1.0","New-MgTeamScheduleSwapShiftChangeRequest","POST","/teams/{param}/schedule/swapShiftsChangeRequests","matched","New-MgTeamScheduleSwapShiftChangeRequest" +"Teams","NewMgTeamScheduleTimeCard.g.cs","v1.0","New-MgTeamScheduleTimeCard","POST","/teams/{param}/schedule/timeCards","matched","New-MgTeamScheduleTimeCard" +"Teams","NewMgTeamScheduleTimeOff.g.cs","v1.0","New-MgTeamScheduleTimeOff","POST","/teams/{param}/schedule/timesOff","matched","New-MgTeamScheduleTimeOff" +"Teams","NewMgTeamScheduleTimeOffReason.g.cs","v1.0","New-MgTeamScheduleTimeOffReason","POST","/teams/{param}/schedule/timeOffReasons","matched","New-MgTeamScheduleTimeOffReason" +"Teams","NewMgTeamScheduleTimeOffRequest.g.cs","v1.0","New-MgTeamScheduleTimeOffRequest","POST","/teams/{param}/schedule/timeOffRequests","matched","New-MgTeamScheduleTimeOffRequest" +"Teams","NewMgTeamTag.g.cs","v1.0","New-MgTeamTag","POST","/teams/{param}/tags","matched","New-MgTeamTag" +"Teams","NewMgTeamTagMember.g.cs","v1.0","New-MgTeamTagMember","POST","/teams/{param}/tags/{param}/members","matched","New-MgTeamTagMember" +"Teams","NewMgTeamworkDeletedChat.g.cs","v1.0","New-MgTeamworkDeletedChat","POST","/teamwork/deletedChats","matched","New-MgTeamworkDeletedChat" +"Teams","NewMgTeamworkDeletedTeam.g.cs","v1.0","New-MgTeamworkDeletedTeam","POST","/teamwork/deletedTeams","matched","New-MgTeamworkDeletedTeam" +"Teams","NewMgTeamworkDeletedTeamChannel.g.cs","v1.0","New-MgTeamworkDeletedTeamChannel","POST","/teamwork/deletedTeams/{param}/channels","matched","New-MgTeamworkDeletedTeamChannel" +"Teams","NewMgTeamworkDeletedTeamChannelAllMember.g.cs","v1.0","New-MgTeamworkDeletedTeamChannelAllMember","POST","/teamwork/deletedTeams/{param}/channels/{param}/allMembers","mismatch","New-MgTeamworkDeletedTeamChannelMember" +"Teams","NewMgTeamworkDeletedTeamChannelMember.g.cs","v1.0","New-MgTeamworkDeletedTeamChannelMember","POST","/teamwork/deletedTeams/{param}/channels/{param}/members","no-oracle","" +"Teams","NewMgTeamworkDeletedTeamChannelMessage.g.cs","v1.0","New-MgTeamworkDeletedTeamChannelMessage","POST","/teamwork/deletedTeams/{param}/channels/{param}/messages","matched","New-MgTeamworkDeletedTeamChannelMessage" +"Teams","NewMgTeamworkDeletedTeamChannelMessageHostedContent.g.cs","v1.0","New-MgTeamworkDeletedTeamChannelMessageHostedContent","POST","/teamwork/deletedTeams/{param}/channels/{param}/messages/{param}/hostedContents","matched","New-MgTeamworkDeletedTeamChannelMessageHostedContent" +"Teams","NewMgTeamworkDeletedTeamChannelMessageReply.g.cs","v1.0","New-MgTeamworkDeletedTeamChannelMessageReply","POST","/teamwork/deletedTeams/{param}/channels/{param}/messages/{param}/replies","matched","New-MgTeamworkDeletedTeamChannelMessageReply" +"Teams","NewMgTeamworkDeletedTeamChannelMessageReplyHostedContent.g.cs","v1.0","New-MgTeamworkDeletedTeamChannelMessageReplyHostedContent","POST","/teamwork/deletedTeams/{param}/channels/{param}/messages/{param}/replies/{param}/hostedContents","matched","New-MgTeamworkDeletedTeamChannelMessageReplyHostedContent" +"Teams","NewMgTeamworkDeletedTeamChannelSharedWithTeam.g.cs","v1.0","New-MgTeamworkDeletedTeamChannelSharedWithTeam","POST","/teamwork/deletedTeams/{param}/channels/{param}/sharedWithTeams","matched","New-MgTeamworkDeletedTeamChannelSharedWithTeam" +"Teams","NewMgTeamworkDeletedTeamChannelTab.g.cs","v1.0","New-MgTeamworkDeletedTeamChannelTab","POST","/teamwork/deletedTeams/{param}/channels/{param}/tabs","matched","New-MgTeamworkDeletedTeamChannelTab" +"Teams","NewMgTeamworkWorkforceIntegration.g.cs","v1.0","New-MgTeamworkWorkforceIntegration","POST","/teamwork/workforceIntegrations","matched","New-MgTeamworkWorkforceIntegration" +"Teams","NewMgUserChat.g.cs","v1.0","New-MgUserChat","POST","/users/{param}/chats","matched","New-MgUserChat" +"Teams","NewMgUserChatInstalledApp.g.cs","v1.0","New-MgUserChatInstalledApp","POST","/users/{param}/chats/{param}/installedApps","matched","New-MgUserChatInstalledApp" +"Teams","NewMgUserChatMember.g.cs","v1.0","New-MgUserChatMember","POST","/users/{param}/chats/{param}/members","matched","New-MgUserChatMember" +"Teams","NewMgUserChatMessage.g.cs","v1.0","New-MgUserChatMessage","POST","/users/{param}/chats/{param}/messages","matched","New-MgUserChatMessage" +"Teams","NewMgUserChatMessageHostedContent.g.cs","v1.0","New-MgUserChatMessageHostedContent","POST","/users/{param}/chats/{param}/messages/{param}/hostedContents","matched","New-MgUserChatMessageHostedContent" +"Teams","NewMgUserChatMessageReply.g.cs","v1.0","New-MgUserChatMessageReply","POST","/users/{param}/chats/{param}/messages/{param}/replies","matched","New-MgUserChatMessageReply" +"Teams","NewMgUserChatMessageReplyHostedContent.g.cs","v1.0","New-MgUserChatMessageReplyHostedContent","POST","/users/{param}/chats/{param}/messages/{param}/replies/{param}/hostedContents","matched","New-MgUserChatMessageReplyHostedContent" +"Teams","NewMgUserChatPermissionGrant.g.cs","v1.0","New-MgUserChatPermissionGrant","POST","/users/{param}/chats/{param}/permissionGrants","matched","New-MgUserChatPermissionGrant" +"Teams","NewMgUserChatPinnedMessage.g.cs","v1.0","New-MgUserChatPinnedMessage","POST","/users/{param}/chats/{param}/pinnedMessages","matched","New-MgUserChatPinnedMessage" +"Teams","NewMgUserChatTab.g.cs","v1.0","New-MgUserChatTab","POST","/users/{param}/chats/{param}/tabs","matched","New-MgUserChatTab" +"Teams","NewMgUserChatTargetedMessage.g.cs","v1.0","New-MgUserChatTargetedMessage","POST","/users/{param}/chats/{param}/targetedMessages","matched","New-MgUserChatTargetedMessage" +"Teams","NewMgUserChatTargetedMessageHostedContent.g.cs","v1.0","New-MgUserChatTargetedMessageHostedContent","POST","/users/{param}/chats/{param}/targetedMessages/{param}/hostedContents","matched","New-MgUserChatTargetedMessageHostedContent" +"Teams","NewMgUserChatTargetedMessageReply.g.cs","v1.0","New-MgUserChatTargetedMessageReply","POST","/users/{param}/chats/{param}/targetedMessages/{param}/replies","matched","New-MgUserChatTargetedMessageReply" +"Teams","NewMgUserChatTargetedMessageReplyHostedContent.g.cs","v1.0","New-MgUserChatTargetedMessageReplyHostedContent","POST","/users/{param}/chats/{param}/targetedMessages/{param}/replies/{param}/hostedContents","matched","New-MgUserChatTargetedMessageReplyHostedContent" +"Teams","NewMgUserJoinedTeam.g.cs","v1.0","New-MgUserJoinedTeam","POST","/users/{param}/joinedTeams","no-oracle","" +"Teams","NewMgUserJoinedTeamChannel.g.cs","v1.0","New-MgUserJoinedTeamChannel","POST","/users/{param}/joinedTeams/{param}/channels","no-oracle","" +"Teams","NewMgUserJoinedTeamChannelAllMember.g.cs","v1.0","New-MgUserJoinedTeamChannelAllMember","POST","/users/{param}/joinedTeams/{param}/channels/{param}/allMembers","no-oracle","" +"Teams","NewMgUserJoinedTeamChannelMember.g.cs","v1.0","New-MgUserJoinedTeamChannelMember","POST","/users/{param}/joinedTeams/{param}/channels/{param}/members","no-oracle","" +"Teams","NewMgUserJoinedTeamChannelMessage.g.cs","v1.0","New-MgUserJoinedTeamChannelMessage","POST","/users/{param}/joinedTeams/{param}/channels/{param}/messages","no-oracle","" +"Teams","NewMgUserJoinedTeamChannelMessageHostedContent.g.cs","v1.0","New-MgUserJoinedTeamChannelMessageHostedContent","POST","/users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/hostedContents","no-oracle","" +"Teams","NewMgUserJoinedTeamChannelMessageReply.g.cs","v1.0","New-MgUserJoinedTeamChannelMessageReply","POST","/users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/replies","no-oracle","" +"Teams","NewMgUserJoinedTeamChannelMessageReplyHostedContent.g.cs","v1.0","New-MgUserJoinedTeamChannelMessageReplyHostedContent","POST","/users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/replies/{param}/hostedContents","no-oracle","" +"Teams","NewMgUserJoinedTeamChannelSharedWithTeam.g.cs","v1.0","New-MgUserJoinedTeamChannelSharedWithTeam","POST","/users/{param}/joinedTeams/{param}/channels/{param}/sharedWithTeams","no-oracle","" +"Teams","NewMgUserJoinedTeamChannelTab.g.cs","v1.0","New-MgUserJoinedTeamChannelTab","POST","/users/{param}/joinedTeams/{param}/channels/{param}/tabs","no-oracle","" +"Teams","NewMgUserJoinedTeamInstalledApp.g.cs","v1.0","New-MgUserJoinedTeamInstalledApp","POST","/users/{param}/joinedTeams/{param}/installedApps","no-oracle","" +"Teams","NewMgUserJoinedTeamMember.g.cs","v1.0","New-MgUserJoinedTeamMember","POST","/users/{param}/joinedTeams/{param}/members","no-oracle","" +"Teams","NewMgUserJoinedTeamOperation.g.cs","v1.0","New-MgUserJoinedTeamOperation","POST","/users/{param}/joinedTeams/{param}/operations","no-oracle","" +"Teams","NewMgUserJoinedTeamPermissionGrant.g.cs","v1.0","New-MgUserJoinedTeamPermissionGrant","POST","/users/{param}/joinedTeams/{param}/permissionGrants","no-oracle","" +"Teams","NewMgUserJoinedTeamPrimaryChannelAllMember.g.cs","v1.0","New-MgUserJoinedTeamPrimaryChannelAllMember","POST","/users/{param}/joinedTeams/{param}/primaryChannel/allMembers","no-oracle","" +"Teams","NewMgUserJoinedTeamPrimaryChannelMember.g.cs","v1.0","New-MgUserJoinedTeamPrimaryChannelMember","POST","/users/{param}/joinedTeams/{param}/primaryChannel/members","no-oracle","" +"Teams","NewMgUserJoinedTeamPrimaryChannelMessage.g.cs","v1.0","New-MgUserJoinedTeamPrimaryChannelMessage","POST","/users/{param}/joinedTeams/{param}/primaryChannel/messages","no-oracle","" +"Teams","NewMgUserJoinedTeamPrimaryChannelMessageHostedContent.g.cs","v1.0","New-MgUserJoinedTeamPrimaryChannelMessageHostedContent","POST","/users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/hostedContents","no-oracle","" +"Teams","NewMgUserJoinedTeamPrimaryChannelMessageReply.g.cs","v1.0","New-MgUserJoinedTeamPrimaryChannelMessageReply","POST","/users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/replies","no-oracle","" +"Teams","NewMgUserJoinedTeamPrimaryChannelMessageReplyHostedContent.g.cs","v1.0","New-MgUserJoinedTeamPrimaryChannelMessageReplyHostedContent","POST","/users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/replies/{param}/hostedContents","no-oracle","" +"Teams","NewMgUserJoinedTeamPrimaryChannelSharedWithTeam.g.cs","v1.0","New-MgUserJoinedTeamPrimaryChannelSharedWithTeam","POST","/users/{param}/joinedTeams/{param}/primaryChannel/sharedWithTeams","no-oracle","" +"Teams","NewMgUserJoinedTeamPrimaryChannelTab.g.cs","v1.0","New-MgUserJoinedTeamPrimaryChannelTab","POST","/users/{param}/joinedTeams/{param}/primaryChannel/tabs","no-oracle","" +"Teams","NewMgUserJoinedTeamScheduleDayNote.g.cs","v1.0","New-MgUserJoinedTeamScheduleDayNote","POST","/users/{param}/joinedTeams/{param}/schedule/dayNotes","no-oracle","" +"Teams","NewMgUserJoinedTeamScheduleOfferShiftRequest.g.cs","v1.0","New-MgUserJoinedTeamScheduleOfferShiftRequest","POST","/users/{param}/joinedTeams/{param}/schedule/offerShiftRequests","no-oracle","" +"Teams","NewMgUserJoinedTeamScheduleOpenShift.g.cs","v1.0","New-MgUserJoinedTeamScheduleOpenShift","POST","/users/{param}/joinedTeams/{param}/schedule/openShifts","no-oracle","" +"Teams","NewMgUserJoinedTeamScheduleOpenShiftChangeRequest.g.cs","v1.0","New-MgUserJoinedTeamScheduleOpenShiftChangeRequest","POST","/users/{param}/joinedTeams/{param}/schedule/openShiftChangeRequests","no-oracle","" +"Teams","NewMgUserJoinedTeamScheduleSchedulingGroup.g.cs","v1.0","New-MgUserJoinedTeamScheduleSchedulingGroup","POST","/users/{param}/joinedTeams/{param}/schedule/schedulingGroups","no-oracle","" +"Teams","NewMgUserJoinedTeamScheduleShift.g.cs","v1.0","New-MgUserJoinedTeamScheduleShift","POST","/users/{param}/joinedTeams/{param}/schedule/shifts","no-oracle","" +"Teams","NewMgUserJoinedTeamScheduleSwapShiftChangeRequest.g.cs","v1.0","New-MgUserJoinedTeamScheduleSwapShiftChangeRequest","POST","/users/{param}/joinedTeams/{param}/schedule/swapShiftsChangeRequests","no-oracle","" +"Teams","NewMgUserJoinedTeamScheduleTimeCard.g.cs","v1.0","New-MgUserJoinedTeamScheduleTimeCard","POST","/users/{param}/joinedTeams/{param}/schedule/timeCards","no-oracle","" +"Teams","NewMgUserJoinedTeamScheduleTimeOff.g.cs","v1.0","New-MgUserJoinedTeamScheduleTimeOff","POST","/users/{param}/joinedTeams/{param}/schedule/timesOff","no-oracle","" +"Teams","NewMgUserJoinedTeamScheduleTimeOffReason.g.cs","v1.0","New-MgUserJoinedTeamScheduleTimeOffReason","POST","/users/{param}/joinedTeams/{param}/schedule/timeOffReasons","no-oracle","" +"Teams","NewMgUserJoinedTeamScheduleTimeOffRequest.g.cs","v1.0","New-MgUserJoinedTeamScheduleTimeOffRequest","POST","/users/{param}/joinedTeams/{param}/schedule/timeOffRequests","no-oracle","" +"Teams","NewMgUserJoinedTeamTag.g.cs","v1.0","New-MgUserJoinedTeamTag","POST","/users/{param}/joinedTeams/{param}/tags","no-oracle","" +"Teams","NewMgUserJoinedTeamTagMember.g.cs","v1.0","New-MgUserJoinedTeamTagMember","POST","/users/{param}/joinedTeams/{param}/tags/{param}/members","no-oracle","" +"Teams","NewMgUserTeamworkAssociatedTeam.g.cs","v1.0","New-MgUserTeamworkAssociatedTeam","POST","/users/{param}/teamwork/associatedTeams","matched","New-MgUserTeamworkAssociatedTeam" +"Teams","NewMgUserTeamworkInstalledApp.g.cs","v1.0","New-MgUserTeamworkInstalledApp","POST","/users/{param}/teamwork/installedApps","matched","New-MgUserTeamworkInstalledApp" +"Teams","RemoveMgAppCatalogTeamApp.g.cs","v1.0","Remove-MgAppCatalogTeamApp","DELETE","/appCatalogs/teamsApps/{param}","matched","Remove-MgAppCatalogTeamApp" +"Teams","RemoveMgAppCatalogTeamAppDefinition.g.cs","v1.0","Remove-MgAppCatalogTeamAppDefinition","DELETE","/appCatalogs/teamsApps/{param}/appDefinitions/{param}","matched","Remove-MgAppCatalogTeamAppDefinition" +"Teams","RemoveMgAppCatalogTeamAppDefinitionBot.g.cs","v1.0","Remove-MgAppCatalogTeamAppDefinitionBot","DELETE","/appCatalogs/teamsApps/{param}/appDefinitions/{param}/bot","matched","Remove-MgAppCatalogTeamAppDefinitionBot" +"Teams","RemoveMgChat.g.cs","v1.0","Remove-MgChat","DELETE","/chats/{param}","matched","Remove-MgChat" +"Teams","RemoveMgChatInstalledApp.g.cs","v1.0","Remove-MgChatInstalledApp","DELETE","/chats/{param}/installedApps/{param}","matched","Remove-MgChatInstalledApp" +"Teams","RemoveMgChatLastMessagePreview.g.cs","v1.0","Remove-MgChatLastMessagePreview","DELETE","/chats/{param}/lastMessagePreview","matched","Remove-MgChatLastMessagePreview" +"Teams","RemoveMgChatMember.g.cs","v1.0","Remove-MgChatMember","DELETE","/chats/{param}/members/{param}","matched","Remove-MgChatMember" +"Teams","RemoveMgChatMessage.g.cs","v1.0","Remove-MgChatMessage","DELETE","/chats/{param}/messages/{param}","no-oracle","" +"Teams","RemoveMgChatMessageHostedContent.g.cs","v1.0","Remove-MgChatMessageHostedContent","DELETE","/chats/{param}/messages/{param}/hostedContents/{param}","no-oracle","" +"Teams","RemoveMgChatMessageHostedContentContent.g.cs","v1.0","Remove-MgChatMessageHostedContentContent","DELETE","/chats/{param}/messages/{param}/hostedContents/{param}/$value","no-oracle","" +"Teams","RemoveMgChatMessageReply.g.cs","v1.0","Remove-MgChatMessageReply","DELETE","/chats/{param}/messages/{param}/replies/{param}","no-oracle","" +"Teams","RemoveMgChatMessageReplyHostedContent.g.cs","v1.0","Remove-MgChatMessageReplyHostedContent","DELETE","/chats/{param}/messages/{param}/replies/{param}/hostedContents/{param}","matched","Remove-MgChatMessageReplyHostedContent" +"Teams","RemoveMgChatMessageReplyHostedContentContent.g.cs","v1.0","Remove-MgChatMessageReplyHostedContentContent","DELETE","/chats/{param}/messages/{param}/replies/{param}/hostedContents/{param}/$value","no-oracle","" +"Teams","RemoveMgChatPermissionGrant.g.cs","v1.0","Remove-MgChatPermissionGrant","DELETE","/chats/{param}/permissionGrants/{param}","matched","Remove-MgChatPermissionGrant" +"Teams","RemoveMgChatPinnedMessage.g.cs","v1.0","Remove-MgChatPinnedMessage","DELETE","/chats/{param}/pinnedMessages/{param}","matched","Remove-MgChatPinnedMessage" +"Teams","RemoveMgChatTab.g.cs","v1.0","Remove-MgChatTab","DELETE","/chats/{param}/tabs/{param}","matched","Remove-MgChatTab" +"Teams","RemoveMgChatTargetedMessage.g.cs","v1.0","Remove-MgChatTargetedMessage","DELETE","/chats/{param}/targetedMessages/{param}","matched","Remove-MgChatTargetedMessage" +"Teams","RemoveMgChatTargetedMessageHostedContent.g.cs","v1.0","Remove-MgChatTargetedMessageHostedContent","DELETE","/chats/{param}/targetedMessages/{param}/hostedContents/{param}","matched","Remove-MgChatTargetedMessageHostedContent" +"Teams","RemoveMgChatTargetedMessageHostedContentContent.g.cs","v1.0","Remove-MgChatTargetedMessageHostedContentContent","DELETE","/chats/{param}/targetedMessages/{param}/hostedContents/{param}/$value","no-oracle","" +"Teams","RemoveMgChatTargetedMessageReply.g.cs","v1.0","Remove-MgChatTargetedMessageReply","DELETE","/chats/{param}/targetedMessages/{param}/replies/{param}","matched","Remove-MgChatTargetedMessageReply" +"Teams","RemoveMgChatTargetedMessageReplyHostedContent.g.cs","v1.0","Remove-MgChatTargetedMessageReplyHostedContent","DELETE","/chats/{param}/targetedMessages/{param}/replies/{param}/hostedContents/{param}","matched","Remove-MgChatTargetedMessageReplyHostedContent" +"Teams","RemoveMgChatTargetedMessageReplyHostedContentContent.g.cs","v1.0","Remove-MgChatTargetedMessageReplyHostedContentContent","DELETE","/chats/{param}/targetedMessages/{param}/replies/{param}/hostedContents/{param}/$value","no-oracle","" +"Teams","RemoveMgGroupTeam.g.cs","v1.0","Remove-MgGroupTeam","DELETE","/groups/{param}/team","matched","Remove-MgGroupTeam" +"Teams","RemoveMgGroupTeamChannel.g.cs","v1.0","Remove-MgGroupTeamChannel","DELETE","/groups/{param}/team/channels/{param}","matched","Remove-MgGroupTeamChannel" +"Teams","RemoveMgGroupTeamChannelAllMember.g.cs","v1.0","Remove-MgGroupTeamChannelAllMember","DELETE","/groups/{param}/team/channels/{param}/allMembers/{param}","mismatch","Remove-MgGroupTeamChannelMember" +"Teams","RemoveMgGroupTeamChannelFileFolderContent.g.cs","v1.0","Remove-MgGroupTeamChannelFileFolderContent","DELETE","/groups/{param}/team/channels/{param}/filesFolder/$value","matched","Remove-MgGroupTeamChannelFileFolderContent" +"Teams","RemoveMgGroupTeamChannelMember.g.cs","v1.0","Remove-MgGroupTeamChannelMember","DELETE","/groups/{param}/team/channels/{param}/members/{param}","no-oracle","" +"Teams","RemoveMgGroupTeamChannelMessage.g.cs","v1.0","Remove-MgGroupTeamChannelMessage","DELETE","/groups/{param}/team/channels/{param}/messages/{param}","matched","Remove-MgGroupTeamChannelMessage" +"Teams","RemoveMgGroupTeamChannelMessageHostedContent.g.cs","v1.0","Remove-MgGroupTeamChannelMessageHostedContent","DELETE","/groups/{param}/team/channels/{param}/messages/{param}/hostedContents/{param}","matched","Remove-MgGroupTeamChannelMessageHostedContent" +"Teams","RemoveMgGroupTeamChannelMessageHostedContentContent.g.cs","v1.0","Remove-MgGroupTeamChannelMessageHostedContentContent","DELETE","/groups/{param}/team/channels/{param}/messages/{param}/hostedContents/{param}/$value","no-oracle","" +"Teams","RemoveMgGroupTeamChannelMessageReply.g.cs","v1.0","Remove-MgGroupTeamChannelMessageReply","DELETE","/groups/{param}/team/channels/{param}/messages/{param}/replies/{param}","matched","Remove-MgGroupTeamChannelMessageReply" +"Teams","RemoveMgGroupTeamChannelMessageReplyHostedContent.g.cs","v1.0","Remove-MgGroupTeamChannelMessageReplyHostedContent","DELETE","/groups/{param}/team/channels/{param}/messages/{param}/replies/{param}/hostedContents/{param}","matched","Remove-MgGroupTeamChannelMessageReplyHostedContent" +"Teams","RemoveMgGroupTeamChannelMessageReplyHostedContentContent.g.cs","v1.0","Remove-MgGroupTeamChannelMessageReplyHostedContentContent","DELETE","/groups/{param}/team/channels/{param}/messages/{param}/replies/{param}/hostedContents/{param}/$value","no-oracle","" +"Teams","RemoveMgGroupTeamChannelSharedWithTeam.g.cs","v1.0","Remove-MgGroupTeamChannelSharedWithTeam","DELETE","/groups/{param}/team/channels/{param}/sharedWithTeams/{param}","matched","Remove-MgGroupTeamChannelSharedWithTeam" +"Teams","RemoveMgGroupTeamChannelTab.g.cs","v1.0","Remove-MgGroupTeamChannelTab","DELETE","/groups/{param}/team/channels/{param}/tabs/{param}","matched","Remove-MgGroupTeamChannelTab" +"Teams","RemoveMgGroupTeamInstalledApp.g.cs","v1.0","Remove-MgGroupTeamInstalledApp","DELETE","/groups/{param}/team/installedApps/{param}","matched","Remove-MgGroupTeamInstalledApp" +"Teams","RemoveMgGroupTeamMember.g.cs","v1.0","Remove-MgGroupTeamMember","DELETE","/groups/{param}/team/members/{param}","matched","Remove-MgGroupTeamMember" +"Teams","RemoveMgGroupTeamOperation.g.cs","v1.0","Remove-MgGroupTeamOperation","DELETE","/groups/{param}/team/operations/{param}","matched","Remove-MgGroupTeamOperation" +"Teams","RemoveMgGroupTeamPermissionGrant.g.cs","v1.0","Remove-MgGroupTeamPermissionGrant","DELETE","/groups/{param}/team/permissionGrants/{param}","matched","Remove-MgGroupTeamPermissionGrant" +"Teams","RemoveMgGroupTeamPhotoContent.g.cs","v1.0","Remove-MgGroupTeamPhotoContent","DELETE","/groups/{param}/team/photo/$value","matched","Remove-MgGroupTeamPhotoContent" +"Teams","RemoveMgGroupTeamPrimaryChannel.g.cs","v1.0","Remove-MgGroupTeamPrimaryChannel","DELETE","/groups/{param}/team/primaryChannel","matched","Remove-MgGroupTeamPrimaryChannel" +"Teams","RemoveMgGroupTeamPrimaryChannelAllMember.g.cs","v1.0","Remove-MgGroupTeamPrimaryChannelAllMember","DELETE","/groups/{param}/team/primaryChannel/allMembers/{param}","mismatch","Remove-MgGroupTeamPrimaryChannelMember" +"Teams","RemoveMgGroupTeamPrimaryChannelFileFolderContent.g.cs","v1.0","Remove-MgGroupTeamPrimaryChannelFileFolderContent","DELETE","/groups/{param}/team/primaryChannel/filesFolder/$value","matched","Remove-MgGroupTeamPrimaryChannelFileFolderContent" +"Teams","RemoveMgGroupTeamPrimaryChannelMember.g.cs","v1.0","Remove-MgGroupTeamPrimaryChannelMember","DELETE","/groups/{param}/team/primaryChannel/members/{param}","no-oracle","" +"Teams","RemoveMgGroupTeamPrimaryChannelMessage.g.cs","v1.0","Remove-MgGroupTeamPrimaryChannelMessage","DELETE","/groups/{param}/team/primaryChannel/messages/{param}","matched","Remove-MgGroupTeamPrimaryChannelMessage" +"Teams","RemoveMgGroupTeamPrimaryChannelMessageHostedContent.g.cs","v1.0","Remove-MgGroupTeamPrimaryChannelMessageHostedContent","DELETE","/groups/{param}/team/primaryChannel/messages/{param}/hostedContents/{param}","matched","Remove-MgGroupTeamPrimaryChannelMessageHostedContent" +"Teams","RemoveMgGroupTeamPrimaryChannelMessageHostedContentContent.g.cs","v1.0","Remove-MgGroupTeamPrimaryChannelMessageHostedContentContent","DELETE","/groups/{param}/team/primaryChannel/messages/{param}/hostedContents/{param}/$value","no-oracle","" +"Teams","RemoveMgGroupTeamPrimaryChannelMessageReply.g.cs","v1.0","Remove-MgGroupTeamPrimaryChannelMessageReply","DELETE","/groups/{param}/team/primaryChannel/messages/{param}/replies/{param}","matched","Remove-MgGroupTeamPrimaryChannelMessageReply" +"Teams","RemoveMgGroupTeamPrimaryChannelMessageReplyHostedContent.g.cs","v1.0","Remove-MgGroupTeamPrimaryChannelMessageReplyHostedContent","DELETE","/groups/{param}/team/primaryChannel/messages/{param}/replies/{param}/hostedContents/{param}","matched","Remove-MgGroupTeamPrimaryChannelMessageReplyHostedContent" +"Teams","RemoveMgGroupTeamPrimaryChannelMessageReplyHostedContentContent.g.cs","v1.0","Remove-MgGroupTeamPrimaryChannelMessageReplyHostedContentContent","DELETE","/groups/{param}/team/primaryChannel/messages/{param}/replies/{param}/hostedContents/{param}/$value","no-oracle","" +"Teams","RemoveMgGroupTeamPrimaryChannelSharedWithTeam.g.cs","v1.0","Remove-MgGroupTeamPrimaryChannelSharedWithTeam","DELETE","/groups/{param}/team/primaryChannel/sharedWithTeams/{param}","matched","Remove-MgGroupTeamPrimaryChannelSharedWithTeam" +"Teams","RemoveMgGroupTeamPrimaryChannelTab.g.cs","v1.0","Remove-MgGroupTeamPrimaryChannelTab","DELETE","/groups/{param}/team/primaryChannel/tabs/{param}","matched","Remove-MgGroupTeamPrimaryChannelTab" +"Teams","RemoveMgGroupTeamSchedule.g.cs","v1.0","Remove-MgGroupTeamSchedule","DELETE","/groups/{param}/team/schedule","matched","Remove-MgGroupTeamSchedule" +"Teams","RemoveMgGroupTeamScheduleDayNote.g.cs","v1.0","Remove-MgGroupTeamScheduleDayNote","DELETE","/groups/{param}/team/schedule/dayNotes/{param}","matched","Remove-MgGroupTeamScheduleDayNote" +"Teams","RemoveMgGroupTeamScheduleOfferShiftRequest.g.cs","v1.0","Remove-MgGroupTeamScheduleOfferShiftRequest","DELETE","/groups/{param}/team/schedule/offerShiftRequests/{param}","matched","Remove-MgGroupTeamScheduleOfferShiftRequest" +"Teams","RemoveMgGroupTeamScheduleOpenShift.g.cs","v1.0","Remove-MgGroupTeamScheduleOpenShift","DELETE","/groups/{param}/team/schedule/openShifts/{param}","matched","Remove-MgGroupTeamScheduleOpenShift" +"Teams","RemoveMgGroupTeamScheduleOpenShiftChangeRequest.g.cs","v1.0","Remove-MgGroupTeamScheduleOpenShiftChangeRequest","DELETE","/groups/{param}/team/schedule/openShiftChangeRequests/{param}","matched","Remove-MgGroupTeamScheduleOpenShiftChangeRequest" +"Teams","RemoveMgGroupTeamScheduleSchedulingGroup.g.cs","v1.0","Remove-MgGroupTeamScheduleSchedulingGroup","DELETE","/groups/{param}/team/schedule/schedulingGroups/{param}","matched","Remove-MgGroupTeamScheduleSchedulingGroup" +"Teams","RemoveMgGroupTeamScheduleShift.g.cs","v1.0","Remove-MgGroupTeamScheduleShift","DELETE","/groups/{param}/team/schedule/shifts/{param}","matched","Remove-MgGroupTeamScheduleShift" +"Teams","RemoveMgGroupTeamScheduleSwapShiftChangeRequest.g.cs","v1.0","Remove-MgGroupTeamScheduleSwapShiftChangeRequest","DELETE","/groups/{param}/team/schedule/swapShiftsChangeRequests/{param}","matched","Remove-MgGroupTeamScheduleSwapShiftChangeRequest" +"Teams","RemoveMgGroupTeamScheduleTimeCard.g.cs","v1.0","Remove-MgGroupTeamScheduleTimeCard","DELETE","/groups/{param}/team/schedule/timeCards/{param}","matched","Remove-MgGroupTeamScheduleTimeCard" +"Teams","RemoveMgGroupTeamScheduleTimeOff.g.cs","v1.0","Remove-MgGroupTeamScheduleTimeOff","DELETE","/groups/{param}/team/schedule/timesOff/{param}","matched","Remove-MgGroupTeamScheduleTimeOff" +"Teams","RemoveMgGroupTeamScheduleTimeOffReason.g.cs","v1.0","Remove-MgGroupTeamScheduleTimeOffReason","DELETE","/groups/{param}/team/schedule/timeOffReasons/{param}","matched","Remove-MgGroupTeamScheduleTimeOffReason" +"Teams","RemoveMgGroupTeamScheduleTimeOffRequest.g.cs","v1.0","Remove-MgGroupTeamScheduleTimeOffRequest","DELETE","/groups/{param}/team/schedule/timeOffRequests/{param}","matched","Remove-MgGroupTeamScheduleTimeOffRequest" +"Teams","RemoveMgGroupTeamTag.g.cs","v1.0","Remove-MgGroupTeamTag","DELETE","/groups/{param}/team/tags/{param}","matched","Remove-MgGroupTeamTag" +"Teams","RemoveMgGroupTeamTagMember.g.cs","v1.0","Remove-MgGroupTeamTagMember","DELETE","/groups/{param}/team/tags/{param}/members/{param}","matched","Remove-MgGroupTeamTagMember" +"Teams","RemoveMgTeam.g.cs","v1.0","Remove-MgTeam","DELETE","/teams/{param}","matched","Remove-MgTeam" +"Teams","RemoveMgTeamChannel.g.cs","v1.0","Remove-MgTeamChannel","DELETE","/teams/{param}/channels/{param}","matched","Remove-MgTeamChannel" +"Teams","RemoveMgTeamChannelAllMember.g.cs","v1.0","Remove-MgTeamChannelAllMember","DELETE","/teams/{param}/channels/{param}/allMembers/{param}","mismatch","Remove-MgTeamChannelMember" +"Teams","RemoveMgTeamChannelFileFolderContent.g.cs","v1.0","Remove-MgTeamChannelFileFolderContent","DELETE","/teams/{param}/channels/{param}/filesFolder/$value","matched","Remove-MgTeamChannelFileFolderContent" +"Teams","RemoveMgTeamChannelMember.g.cs","v1.0","Remove-MgTeamChannelMember","DELETE","/teams/{param}/channels/{param}/members/{param}","no-oracle","" +"Teams","RemoveMgTeamChannelMessage.g.cs","v1.0","Remove-MgTeamChannelMessage","DELETE","/teams/{param}/channels/{param}/messages/{param}","no-oracle","" +"Teams","RemoveMgTeamChannelMessageHostedContent.g.cs","v1.0","Remove-MgTeamChannelMessageHostedContent","DELETE","/teams/{param}/channels/{param}/messages/{param}/hostedContents/{param}","no-oracle","" +"Teams","RemoveMgTeamChannelMessageHostedContentContent.g.cs","v1.0","Remove-MgTeamChannelMessageHostedContentContent","DELETE","/teams/{param}/channels/{param}/messages/{param}/hostedContents/{param}/$value","no-oracle","" +"Teams","RemoveMgTeamChannelMessageReply.g.cs","v1.0","Remove-MgTeamChannelMessageReply","DELETE","/teams/{param}/channels/{param}/messages/{param}/replies/{param}","no-oracle","" +"Teams","RemoveMgTeamChannelMessageReplyHostedContent.g.cs","v1.0","Remove-MgTeamChannelMessageReplyHostedContent","DELETE","/teams/{param}/channels/{param}/messages/{param}/replies/{param}/hostedContents/{param}","matched","Remove-MgTeamChannelMessageReplyHostedContent" +"Teams","RemoveMgTeamChannelMessageReplyHostedContentContent.g.cs","v1.0","Remove-MgTeamChannelMessageReplyHostedContentContent","DELETE","/teams/{param}/channels/{param}/messages/{param}/replies/{param}/hostedContents/{param}/$value","no-oracle","" +"Teams","RemoveMgTeamChannelSharedWithTeam.g.cs","v1.0","Remove-MgTeamChannelSharedWithTeam","DELETE","/teams/{param}/channels/{param}/sharedWithTeams/{param}","matched","Remove-MgTeamChannelSharedWithTeam" +"Teams","RemoveMgTeamChannelTab.g.cs","v1.0","Remove-MgTeamChannelTab","DELETE","/teams/{param}/channels/{param}/tabs/{param}","matched","Remove-MgTeamChannelTab" +"Teams","RemoveMgTeamInstalledApp.g.cs","v1.0","Remove-MgTeamInstalledApp","DELETE","/teams/{param}/installedApps/{param}","matched","Remove-MgTeamInstalledApp" +"Teams","RemoveMgTeamMember.g.cs","v1.0","Remove-MgTeamMember","DELETE","/teams/{param}/members/{param}","matched","Remove-MgTeamMember" +"Teams","RemoveMgTeamOperation.g.cs","v1.0","Remove-MgTeamOperation","DELETE","/teams/{param}/operations/{param}","matched","Remove-MgTeamOperation" +"Teams","RemoveMgTeamPermissionGrant.g.cs","v1.0","Remove-MgTeamPermissionGrant","DELETE","/teams/{param}/permissionGrants/{param}","matched","Remove-MgTeamPermissionGrant" +"Teams","RemoveMgTeamPhotoContent.g.cs","v1.0","Remove-MgTeamPhotoContent","DELETE","/teams/{param}/photo/$value","matched","Remove-MgTeamPhotoContent" +"Teams","RemoveMgTeamPrimaryChannel.g.cs","v1.0","Remove-MgTeamPrimaryChannel","DELETE","/teams/{param}/primaryChannel","matched","Remove-MgTeamPrimaryChannel" +"Teams","RemoveMgTeamPrimaryChannelAllMember.g.cs","v1.0","Remove-MgTeamPrimaryChannelAllMember","DELETE","/teams/{param}/primaryChannel/allMembers/{param}","mismatch","Remove-MgTeamPrimaryChannelMember" +"Teams","RemoveMgTeamPrimaryChannelFileFolderContent.g.cs","v1.0","Remove-MgTeamPrimaryChannelFileFolderContent","DELETE","/teams/{param}/primaryChannel/filesFolder/$value","matched","Remove-MgTeamPrimaryChannelFileFolderContent" +"Teams","RemoveMgTeamPrimaryChannelMember.g.cs","v1.0","Remove-MgTeamPrimaryChannelMember","DELETE","/teams/{param}/primaryChannel/members/{param}","no-oracle","" +"Teams","RemoveMgTeamPrimaryChannelMessage.g.cs","v1.0","Remove-MgTeamPrimaryChannelMessage","DELETE","/teams/{param}/primaryChannel/messages/{param}","no-oracle","" +"Teams","RemoveMgTeamPrimaryChannelMessageHostedContent.g.cs","v1.0","Remove-MgTeamPrimaryChannelMessageHostedContent","DELETE","/teams/{param}/primaryChannel/messages/{param}/hostedContents/{param}","no-oracle","" +"Teams","RemoveMgTeamPrimaryChannelMessageHostedContentContent.g.cs","v1.0","Remove-MgTeamPrimaryChannelMessageHostedContentContent","DELETE","/teams/{param}/primaryChannel/messages/{param}/hostedContents/{param}/$value","no-oracle","" +"Teams","RemoveMgTeamPrimaryChannelMessageReply.g.cs","v1.0","Remove-MgTeamPrimaryChannelMessageReply","DELETE","/teams/{param}/primaryChannel/messages/{param}/replies/{param}","no-oracle","" +"Teams","RemoveMgTeamPrimaryChannelMessageReplyHostedContent.g.cs","v1.0","Remove-MgTeamPrimaryChannelMessageReplyHostedContent","DELETE","/teams/{param}/primaryChannel/messages/{param}/replies/{param}/hostedContents/{param}","matched","Remove-MgTeamPrimaryChannelMessageReplyHostedContent" +"Teams","RemoveMgTeamPrimaryChannelMessageReplyHostedContentContent.g.cs","v1.0","Remove-MgTeamPrimaryChannelMessageReplyHostedContentContent","DELETE","/teams/{param}/primaryChannel/messages/{param}/replies/{param}/hostedContents/{param}/$value","no-oracle","" +"Teams","RemoveMgTeamPrimaryChannelSharedWithTeam.g.cs","v1.0","Remove-MgTeamPrimaryChannelSharedWithTeam","DELETE","/teams/{param}/primaryChannel/sharedWithTeams/{param}","matched","Remove-MgTeamPrimaryChannelSharedWithTeam" +"Teams","RemoveMgTeamPrimaryChannelTab.g.cs","v1.0","Remove-MgTeamPrimaryChannelTab","DELETE","/teams/{param}/primaryChannel/tabs/{param}","matched","Remove-MgTeamPrimaryChannelTab" +"Teams","RemoveMgTeamSchedule.g.cs","v1.0","Remove-MgTeamSchedule","DELETE","/teams/{param}/schedule","matched","Remove-MgTeamSchedule" +"Teams","RemoveMgTeamScheduleDayNote.g.cs","v1.0","Remove-MgTeamScheduleDayNote","DELETE","/teams/{param}/schedule/dayNotes/{param}","matched","Remove-MgTeamScheduleDayNote" +"Teams","RemoveMgTeamScheduleOfferShiftRequest.g.cs","v1.0","Remove-MgTeamScheduleOfferShiftRequest","DELETE","/teams/{param}/schedule/offerShiftRequests/{param}","matched","Remove-MgTeamScheduleOfferShiftRequest" +"Teams","RemoveMgTeamScheduleOpenShift.g.cs","v1.0","Remove-MgTeamScheduleOpenShift","DELETE","/teams/{param}/schedule/openShifts/{param}","matched","Remove-MgTeamScheduleOpenShift" +"Teams","RemoveMgTeamScheduleOpenShiftChangeRequest.g.cs","v1.0","Remove-MgTeamScheduleOpenShiftChangeRequest","DELETE","/teams/{param}/schedule/openShiftChangeRequests/{param}","matched","Remove-MgTeamScheduleOpenShiftChangeRequest" +"Teams","RemoveMgTeamScheduleSchedulingGroup.g.cs","v1.0","Remove-MgTeamScheduleSchedulingGroup","DELETE","/teams/{param}/schedule/schedulingGroups/{param}","matched","Remove-MgTeamScheduleSchedulingGroup" +"Teams","RemoveMgTeamScheduleShift.g.cs","v1.0","Remove-MgTeamScheduleShift","DELETE","/teams/{param}/schedule/shifts/{param}","matched","Remove-MgTeamScheduleShift" +"Teams","RemoveMgTeamScheduleSwapShiftChangeRequest.g.cs","v1.0","Remove-MgTeamScheduleSwapShiftChangeRequest","DELETE","/teams/{param}/schedule/swapShiftsChangeRequests/{param}","matched","Remove-MgTeamScheduleSwapShiftChangeRequest" +"Teams","RemoveMgTeamScheduleTimeCard.g.cs","v1.0","Remove-MgTeamScheduleTimeCard","DELETE","/teams/{param}/schedule/timeCards/{param}","matched","Remove-MgTeamScheduleTimeCard" +"Teams","RemoveMgTeamScheduleTimeOff.g.cs","v1.0","Remove-MgTeamScheduleTimeOff","DELETE","/teams/{param}/schedule/timesOff/{param}","matched","Remove-MgTeamScheduleTimeOff" +"Teams","RemoveMgTeamScheduleTimeOffReason.g.cs","v1.0","Remove-MgTeamScheduleTimeOffReason","DELETE","/teams/{param}/schedule/timeOffReasons/{param}","matched","Remove-MgTeamScheduleTimeOffReason" +"Teams","RemoveMgTeamScheduleTimeOffRequest.g.cs","v1.0","Remove-MgTeamScheduleTimeOffRequest","DELETE","/teams/{param}/schedule/timeOffRequests/{param}","matched","Remove-MgTeamScheduleTimeOffRequest" +"Teams","RemoveMgTeamTag.g.cs","v1.0","Remove-MgTeamTag","DELETE","/teams/{param}/tags/{param}","matched","Remove-MgTeamTag" +"Teams","RemoveMgTeamTagMember.g.cs","v1.0","Remove-MgTeamTagMember","DELETE","/teams/{param}/tags/{param}/members/{param}","matched","Remove-MgTeamTagMember" +"Teams","RemoveMgTeamworkDeletedChat.g.cs","v1.0","Remove-MgTeamworkDeletedChat","DELETE","/teamwork/deletedChats/{param}","matched","Remove-MgTeamworkDeletedChat" +"Teams","RemoveMgTeamworkDeletedTeam.g.cs","v1.0","Remove-MgTeamworkDeletedTeam","DELETE","/teamwork/deletedTeams/{param}","matched","Remove-MgTeamworkDeletedTeam" +"Teams","RemoveMgTeamworkDeletedTeamChannel.g.cs","v1.0","Remove-MgTeamworkDeletedTeamChannel","DELETE","/teamwork/deletedTeams/{param}/channels/{param}","matched","Remove-MgTeamworkDeletedTeamChannel" +"Teams","RemoveMgTeamworkDeletedTeamChannelAllMember.g.cs","v1.0","Remove-MgTeamworkDeletedTeamChannelAllMember","DELETE","/teamwork/deletedTeams/{param}/channels/{param}/allMembers/{param}","mismatch","Remove-MgTeamworkDeletedTeamChannelMember" +"Teams","RemoveMgTeamworkDeletedTeamChannelFileFolderContent.g.cs","v1.0","Remove-MgTeamworkDeletedTeamChannelFileFolderContent","DELETE","/teamwork/deletedTeams/{param}/channels/{param}/filesFolder/$value","matched","Remove-MgTeamworkDeletedTeamChannelFileFolderContent" +"Teams","RemoveMgTeamworkDeletedTeamChannelMember.g.cs","v1.0","Remove-MgTeamworkDeletedTeamChannelMember","DELETE","/teamwork/deletedTeams/{param}/channels/{param}/members/{param}","no-oracle","" +"Teams","RemoveMgTeamworkDeletedTeamChannelMessage.g.cs","v1.0","Remove-MgTeamworkDeletedTeamChannelMessage","DELETE","/teamwork/deletedTeams/{param}/channels/{param}/messages/{param}","matched","Remove-MgTeamworkDeletedTeamChannelMessage" +"Teams","RemoveMgTeamworkDeletedTeamChannelMessageHostedContent.g.cs","v1.0","Remove-MgTeamworkDeletedTeamChannelMessageHostedContent","DELETE","/teamwork/deletedTeams/{param}/channels/{param}/messages/{param}/hostedContents/{param}","matched","Remove-MgTeamworkDeletedTeamChannelMessageHostedContent" +"Teams","RemoveMgTeamworkDeletedTeamChannelMessageHostedContentContent.g.cs","v1.0","Remove-MgTeamworkDeletedTeamChannelMessageHostedContentContent","DELETE","/teamwork/deletedTeams/{param}/channels/{param}/messages/{param}/hostedContents/{param}/$value","no-oracle","" +"Teams","RemoveMgTeamworkDeletedTeamChannelMessageReply.g.cs","v1.0","Remove-MgTeamworkDeletedTeamChannelMessageReply","DELETE","/teamwork/deletedTeams/{param}/channels/{param}/messages/{param}/replies/{param}","matched","Remove-MgTeamworkDeletedTeamChannelMessageReply" +"Teams","RemoveMgTeamworkDeletedTeamChannelMessageReplyHostedContent.g.cs","v1.0","Remove-MgTeamworkDeletedTeamChannelMessageReplyHostedContent","DELETE","/teamwork/deletedTeams/{param}/channels/{param}/messages/{param}/replies/{param}/hostedContents/{param}","matched","Remove-MgTeamworkDeletedTeamChannelMessageReplyHostedContent" +"Teams","RemoveMgTeamworkDeletedTeamChannelMessageReplyHostedContentContent.g.cs","v1.0","Remove-MgTeamworkDeletedTeamChannelMessageReplyHostedContentContent","DELETE","/teamwork/deletedTeams/{param}/channels/{param}/messages/{param}/replies/{param}/hostedContents/{param}/$value","no-oracle","" +"Teams","RemoveMgTeamworkDeletedTeamChannelSharedWithTeam.g.cs","v1.0","Remove-MgTeamworkDeletedTeamChannelSharedWithTeam","DELETE","/teamwork/deletedTeams/{param}/channels/{param}/sharedWithTeams/{param}","matched","Remove-MgTeamworkDeletedTeamChannelSharedWithTeam" +"Teams","RemoveMgTeamworkDeletedTeamChannelTab.g.cs","v1.0","Remove-MgTeamworkDeletedTeamChannelTab","DELETE","/teamwork/deletedTeams/{param}/channels/{param}/tabs/{param}","matched","Remove-MgTeamworkDeletedTeamChannelTab" +"Teams","RemoveMgTeamworkTeamAppSetting.g.cs","v1.0","Remove-MgTeamworkTeamAppSetting","DELETE","/teamwork/teamsAppSettings","matched","Remove-MgTeamworkTeamAppSetting" +"Teams","RemoveMgTeamworkWorkforceIntegration.g.cs","v1.0","Remove-MgTeamworkWorkforceIntegration","DELETE","/teamwork/workforceIntegrations/{param}","matched","Remove-MgTeamworkWorkforceIntegration" +"Teams","RemoveMgUserChat.g.cs","v1.0","Remove-MgUserChat","DELETE","/users/{param}/chats/{param}","matched","Remove-MgUserChat" +"Teams","RemoveMgUserChatInstalledApp.g.cs","v1.0","Remove-MgUserChatInstalledApp","DELETE","/users/{param}/chats/{param}/installedApps/{param}","matched","Remove-MgUserChatInstalledApp" +"Teams","RemoveMgUserChatLastMessagePreview.g.cs","v1.0","Remove-MgUserChatLastMessagePreview","DELETE","/users/{param}/chats/{param}/lastMessagePreview","matched","Remove-MgUserChatLastMessagePreview" +"Teams","RemoveMgUserChatMember.g.cs","v1.0","Remove-MgUserChatMember","DELETE","/users/{param}/chats/{param}/members/{param}","matched","Remove-MgUserChatMember" +"Teams","RemoveMgUserChatMessage.g.cs","v1.0","Remove-MgUserChatMessage","DELETE","/users/{param}/chats/{param}/messages/{param}","matched","Remove-MgUserChatMessage" +"Teams","RemoveMgUserChatMessageHostedContent.g.cs","v1.0","Remove-MgUserChatMessageHostedContent","DELETE","/users/{param}/chats/{param}/messages/{param}/hostedContents/{param}","matched","Remove-MgUserChatMessageHostedContent" +"Teams","RemoveMgUserChatMessageHostedContentContent.g.cs","v1.0","Remove-MgUserChatMessageHostedContentContent","DELETE","/users/{param}/chats/{param}/messages/{param}/hostedContents/{param}/$value","no-oracle","" +"Teams","RemoveMgUserChatMessageReply.g.cs","v1.0","Remove-MgUserChatMessageReply","DELETE","/users/{param}/chats/{param}/messages/{param}/replies/{param}","matched","Remove-MgUserChatMessageReply" +"Teams","RemoveMgUserChatMessageReplyHostedContent.g.cs","v1.0","Remove-MgUserChatMessageReplyHostedContent","DELETE","/users/{param}/chats/{param}/messages/{param}/replies/{param}/hostedContents/{param}","matched","Remove-MgUserChatMessageReplyHostedContent" +"Teams","RemoveMgUserChatMessageReplyHostedContentContent.g.cs","v1.0","Remove-MgUserChatMessageReplyHostedContentContent","DELETE","/users/{param}/chats/{param}/messages/{param}/replies/{param}/hostedContents/{param}/$value","no-oracle","" +"Teams","RemoveMgUserChatPermissionGrant.g.cs","v1.0","Remove-MgUserChatPermissionGrant","DELETE","/users/{param}/chats/{param}/permissionGrants/{param}","matched","Remove-MgUserChatPermissionGrant" +"Teams","RemoveMgUserChatPinnedMessage.g.cs","v1.0","Remove-MgUserChatPinnedMessage","DELETE","/users/{param}/chats/{param}/pinnedMessages/{param}","matched","Remove-MgUserChatPinnedMessage" +"Teams","RemoveMgUserChatTab.g.cs","v1.0","Remove-MgUserChatTab","DELETE","/users/{param}/chats/{param}/tabs/{param}","matched","Remove-MgUserChatTab" +"Teams","RemoveMgUserChatTargetedMessage.g.cs","v1.0","Remove-MgUserChatTargetedMessage","DELETE","/users/{param}/chats/{param}/targetedMessages/{param}","matched","Remove-MgUserChatTargetedMessage" +"Teams","RemoveMgUserChatTargetedMessageHostedContent.g.cs","v1.0","Remove-MgUserChatTargetedMessageHostedContent","DELETE","/users/{param}/chats/{param}/targetedMessages/{param}/hostedContents/{param}","matched","Remove-MgUserChatTargetedMessageHostedContent" +"Teams","RemoveMgUserChatTargetedMessageHostedContentContent.g.cs","v1.0","Remove-MgUserChatTargetedMessageHostedContentContent","DELETE","/users/{param}/chats/{param}/targetedMessages/{param}/hostedContents/{param}/$value","no-oracle","" +"Teams","RemoveMgUserChatTargetedMessageReply.g.cs","v1.0","Remove-MgUserChatTargetedMessageReply","DELETE","/users/{param}/chats/{param}/targetedMessages/{param}/replies/{param}","matched","Remove-MgUserChatTargetedMessageReply" +"Teams","RemoveMgUserChatTargetedMessageReplyHostedContent.g.cs","v1.0","Remove-MgUserChatTargetedMessageReplyHostedContent","DELETE","/users/{param}/chats/{param}/targetedMessages/{param}/replies/{param}/hostedContents/{param}","matched","Remove-MgUserChatTargetedMessageReplyHostedContent" +"Teams","RemoveMgUserChatTargetedMessageReplyHostedContentContent.g.cs","v1.0","Remove-MgUserChatTargetedMessageReplyHostedContentContent","DELETE","/users/{param}/chats/{param}/targetedMessages/{param}/replies/{param}/hostedContents/{param}/$value","no-oracle","" +"Teams","RemoveMgUserJoinedTeam.g.cs","v1.0","Remove-MgUserJoinedTeam","DELETE","/users/{param}/joinedTeams/{param}","no-oracle","" +"Teams","RemoveMgUserJoinedTeamChannel.g.cs","v1.0","Remove-MgUserJoinedTeamChannel","DELETE","/users/{param}/joinedTeams/{param}/channels/{param}","no-oracle","" +"Teams","RemoveMgUserJoinedTeamChannelAllMember.g.cs","v1.0","Remove-MgUserJoinedTeamChannelAllMember","DELETE","/users/{param}/joinedTeams/{param}/channels/{param}/allMembers/{param}","no-oracle","" +"Teams","RemoveMgUserJoinedTeamChannelFileFolderContent.g.cs","v1.0","Remove-MgUserJoinedTeamChannelFileFolderContent","DELETE","/users/{param}/joinedTeams/{param}/channels/{param}/filesFolder/$value","no-oracle","" +"Teams","RemoveMgUserJoinedTeamChannelMember.g.cs","v1.0","Remove-MgUserJoinedTeamChannelMember","DELETE","/users/{param}/joinedTeams/{param}/channels/{param}/members/{param}","no-oracle","" +"Teams","RemoveMgUserJoinedTeamChannelMessage.g.cs","v1.0","Remove-MgUserJoinedTeamChannelMessage","DELETE","/users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}","no-oracle","" +"Teams","RemoveMgUserJoinedTeamChannelMessageHostedContent.g.cs","v1.0","Remove-MgUserJoinedTeamChannelMessageHostedContent","DELETE","/users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/hostedContents/{param}","no-oracle","" +"Teams","RemoveMgUserJoinedTeamChannelMessageHostedContentContent.g.cs","v1.0","Remove-MgUserJoinedTeamChannelMessageHostedContentContent","DELETE","/users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/hostedContents/{param}/$value","no-oracle","" +"Teams","RemoveMgUserJoinedTeamChannelMessageReply.g.cs","v1.0","Remove-MgUserJoinedTeamChannelMessageReply","DELETE","/users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/replies/{param}","no-oracle","" +"Teams","RemoveMgUserJoinedTeamChannelMessageReplyHostedContent.g.cs","v1.0","Remove-MgUserJoinedTeamChannelMessageReplyHostedContent","DELETE","/users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/replies/{param}/hostedContents/{param}","no-oracle","" +"Teams","RemoveMgUserJoinedTeamChannelMessageReplyHostedContentContent.g.cs","v1.0","Remove-MgUserJoinedTeamChannelMessageReplyHostedContentContent","DELETE","/users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/replies/{param}/hostedContents/{param}/$value","no-oracle","" +"Teams","RemoveMgUserJoinedTeamChannelSharedWithTeam.g.cs","v1.0","Remove-MgUserJoinedTeamChannelSharedWithTeam","DELETE","/users/{param}/joinedTeams/{param}/channels/{param}/sharedWithTeams/{param}","no-oracle","" +"Teams","RemoveMgUserJoinedTeamChannelTab.g.cs","v1.0","Remove-MgUserJoinedTeamChannelTab","DELETE","/users/{param}/joinedTeams/{param}/channels/{param}/tabs/{param}","no-oracle","" +"Teams","RemoveMgUserJoinedTeamInstalledApp.g.cs","v1.0","Remove-MgUserJoinedTeamInstalledApp","DELETE","/users/{param}/joinedTeams/{param}/installedApps/{param}","no-oracle","" +"Teams","RemoveMgUserJoinedTeamMember.g.cs","v1.0","Remove-MgUserJoinedTeamMember","DELETE","/users/{param}/joinedTeams/{param}/members/{param}","no-oracle","" +"Teams","RemoveMgUserJoinedTeamOperation.g.cs","v1.0","Remove-MgUserJoinedTeamOperation","DELETE","/users/{param}/joinedTeams/{param}/operations/{param}","no-oracle","" +"Teams","RemoveMgUserJoinedTeamPermissionGrant.g.cs","v1.0","Remove-MgUserJoinedTeamPermissionGrant","DELETE","/users/{param}/joinedTeams/{param}/permissionGrants/{param}","no-oracle","" +"Teams","RemoveMgUserJoinedTeamPhotoContent.g.cs","v1.0","Remove-MgUserJoinedTeamPhotoContent","DELETE","/users/{param}/joinedTeams/{param}/photo/$value","no-oracle","" +"Teams","RemoveMgUserJoinedTeamPrimaryChannel.g.cs","v1.0","Remove-MgUserJoinedTeamPrimaryChannel","DELETE","/users/{param}/joinedTeams/{param}/primaryChannel","no-oracle","" +"Teams","RemoveMgUserJoinedTeamPrimaryChannelAllMember.g.cs","v1.0","Remove-MgUserJoinedTeamPrimaryChannelAllMember","DELETE","/users/{param}/joinedTeams/{param}/primaryChannel/allMembers/{param}","no-oracle","" +"Teams","RemoveMgUserJoinedTeamPrimaryChannelFileFolderContent.g.cs","v1.0","Remove-MgUserJoinedTeamPrimaryChannelFileFolderContent","DELETE","/users/{param}/joinedTeams/{param}/primaryChannel/filesFolder/$value","no-oracle","" +"Teams","RemoveMgUserJoinedTeamPrimaryChannelMember.g.cs","v1.0","Remove-MgUserJoinedTeamPrimaryChannelMember","DELETE","/users/{param}/joinedTeams/{param}/primaryChannel/members/{param}","no-oracle","" +"Teams","RemoveMgUserJoinedTeamPrimaryChannelMessage.g.cs","v1.0","Remove-MgUserJoinedTeamPrimaryChannelMessage","DELETE","/users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}","no-oracle","" +"Teams","RemoveMgUserJoinedTeamPrimaryChannelMessageHostedContent.g.cs","v1.0","Remove-MgUserJoinedTeamPrimaryChannelMessageHostedContent","DELETE","/users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/hostedContents/{param}","no-oracle","" +"Teams","RemoveMgUserJoinedTeamPrimaryChannelMessageHostedContentContent.g.cs","v1.0","Remove-MgUserJoinedTeamPrimaryChannelMessageHostedContentContent","DELETE","/users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/hostedContents/{param}/$value","no-oracle","" +"Teams","RemoveMgUserJoinedTeamPrimaryChannelMessageReply.g.cs","v1.0","Remove-MgUserJoinedTeamPrimaryChannelMessageReply","DELETE","/users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/replies/{param}","no-oracle","" +"Teams","RemoveMgUserJoinedTeamPrimaryChannelMessageReplyHostedContent.g.cs","v1.0","Remove-MgUserJoinedTeamPrimaryChannelMessageReplyHostedContent","DELETE","/users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/replies/{param}/hostedContents/{param}","no-oracle","" +"Teams","RemoveMgUserJoinedTeamPrimaryChannelMessageReplyHostedContentContent.g.cs","v1.0","Remove-MgUserJoinedTeamPrimaryChannelMessageReplyHostedContentContent","DELETE","/users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/replies/{param}/hostedContents/{param}/$value","no-oracle","" +"Teams","RemoveMgUserJoinedTeamPrimaryChannelSharedWithTeam.g.cs","v1.0","Remove-MgUserJoinedTeamPrimaryChannelSharedWithTeam","DELETE","/users/{param}/joinedTeams/{param}/primaryChannel/sharedWithTeams/{param}","no-oracle","" +"Teams","RemoveMgUserJoinedTeamPrimaryChannelTab.g.cs","v1.0","Remove-MgUserJoinedTeamPrimaryChannelTab","DELETE","/users/{param}/joinedTeams/{param}/primaryChannel/tabs/{param}","no-oracle","" +"Teams","RemoveMgUserJoinedTeamSchedule.g.cs","v1.0","Remove-MgUserJoinedTeamSchedule","DELETE","/users/{param}/joinedTeams/{param}/schedule","no-oracle","" +"Teams","RemoveMgUserJoinedTeamScheduleDayNote.g.cs","v1.0","Remove-MgUserJoinedTeamScheduleDayNote","DELETE","/users/{param}/joinedTeams/{param}/schedule/dayNotes/{param}","no-oracle","" +"Teams","RemoveMgUserJoinedTeamScheduleOfferShiftRequest.g.cs","v1.0","Remove-MgUserJoinedTeamScheduleOfferShiftRequest","DELETE","/users/{param}/joinedTeams/{param}/schedule/offerShiftRequests/{param}","no-oracle","" +"Teams","RemoveMgUserJoinedTeamScheduleOpenShift.g.cs","v1.0","Remove-MgUserJoinedTeamScheduleOpenShift","DELETE","/users/{param}/joinedTeams/{param}/schedule/openShifts/{param}","no-oracle","" +"Teams","RemoveMgUserJoinedTeamScheduleOpenShiftChangeRequest.g.cs","v1.0","Remove-MgUserJoinedTeamScheduleOpenShiftChangeRequest","DELETE","/users/{param}/joinedTeams/{param}/schedule/openShiftChangeRequests/{param}","no-oracle","" +"Teams","RemoveMgUserJoinedTeamScheduleSchedulingGroup.g.cs","v1.0","Remove-MgUserJoinedTeamScheduleSchedulingGroup","DELETE","/users/{param}/joinedTeams/{param}/schedule/schedulingGroups/{param}","no-oracle","" +"Teams","RemoveMgUserJoinedTeamScheduleShift.g.cs","v1.0","Remove-MgUserJoinedTeamScheduleShift","DELETE","/users/{param}/joinedTeams/{param}/schedule/shifts/{param}","no-oracle","" +"Teams","RemoveMgUserJoinedTeamScheduleSwapShiftChangeRequest.g.cs","v1.0","Remove-MgUserJoinedTeamScheduleSwapShiftChangeRequest","DELETE","/users/{param}/joinedTeams/{param}/schedule/swapShiftsChangeRequests/{param}","no-oracle","" +"Teams","RemoveMgUserJoinedTeamScheduleTimeCard.g.cs","v1.0","Remove-MgUserJoinedTeamScheduleTimeCard","DELETE","/users/{param}/joinedTeams/{param}/schedule/timeCards/{param}","no-oracle","" +"Teams","RemoveMgUserJoinedTeamScheduleTimeOff.g.cs","v1.0","Remove-MgUserJoinedTeamScheduleTimeOff","DELETE","/users/{param}/joinedTeams/{param}/schedule/timesOff/{param}","no-oracle","" +"Teams","RemoveMgUserJoinedTeamScheduleTimeOffReason.g.cs","v1.0","Remove-MgUserJoinedTeamScheduleTimeOffReason","DELETE","/users/{param}/joinedTeams/{param}/schedule/timeOffReasons/{param}","no-oracle","" +"Teams","RemoveMgUserJoinedTeamScheduleTimeOffRequest.g.cs","v1.0","Remove-MgUserJoinedTeamScheduleTimeOffRequest","DELETE","/users/{param}/joinedTeams/{param}/schedule/timeOffRequests/{param}","no-oracle","" +"Teams","RemoveMgUserJoinedTeamTag.g.cs","v1.0","Remove-MgUserJoinedTeamTag","DELETE","/users/{param}/joinedTeams/{param}/tags/{param}","no-oracle","" +"Teams","RemoveMgUserJoinedTeamTagMember.g.cs","v1.0","Remove-MgUserJoinedTeamTagMember","DELETE","/users/{param}/joinedTeams/{param}/tags/{param}/members/{param}","no-oracle","" +"Teams","RemoveMgUserTeamwork.g.cs","v1.0","Remove-MgUserTeamwork","DELETE","/users/{param}/teamwork","matched","Remove-MgUserTeamwork" +"Teams","RemoveMgUserTeamworkAssociatedTeam.g.cs","v1.0","Remove-MgUserTeamworkAssociatedTeam","DELETE","/users/{param}/teamwork/associatedTeams/{param}","matched","Remove-MgUserTeamworkAssociatedTeam" +"Teams","RemoveMgUserTeamworkInstalledApp.g.cs","v1.0","Remove-MgUserTeamworkInstalledApp","DELETE","/users/{param}/teamwork/installedApps/{param}","matched","Remove-MgUserTeamworkInstalledApp" +"Teams","SetMgGroupTeam.g.cs","v1.0","Set-MgGroupTeam","PUT","/groups/{param}/team","matched","Set-MgGroupTeam" +"Teams","SetMgGroupTeamChannelFileFolderContent.g.cs","v1.0","Set-MgGroupTeamChannelFileFolderContent","PUT","/groups/{param}/team/channels/{param}/filesFolder/$value","matched","Set-MgGroupTeamChannelFileFolderContent" +"Teams","SetMgGroupTeamPrimaryChannelFileFolderContent.g.cs","v1.0","Set-MgGroupTeamPrimaryChannelFileFolderContent","PUT","/groups/{param}/team/primaryChannel/filesFolder/$value","matched","Set-MgGroupTeamPrimaryChannelFileFolderContent" +"Teams","SetMgGroupTeamSchedule.g.cs","v1.0","Set-MgGroupTeamSchedule","PUT","/groups/{param}/team/schedule","matched","Set-MgGroupTeamSchedule" +"Teams","SetMgTeamChannelFileFolderContent.g.cs","v1.0","Set-MgTeamChannelFileFolderContent","PUT","/teams/{param}/channels/{param}/filesFolder/$value","matched","Set-MgTeamChannelFileFolderContent" +"Teams","SetMgTeamPrimaryChannelFileFolderContent.g.cs","v1.0","Set-MgTeamPrimaryChannelFileFolderContent","PUT","/teams/{param}/primaryChannel/filesFolder/$value","matched","Set-MgTeamPrimaryChannelFileFolderContent" +"Teams","SetMgTeamSchedule.g.cs","v1.0","Set-MgTeamSchedule","PUT","/teams/{param}/schedule","matched","Set-MgTeamSchedule" +"Teams","SetMgTeamworkDeletedTeamChannelFileFolderContent.g.cs","v1.0","Set-MgTeamworkDeletedTeamChannelFileFolderContent","PUT","/teamwork/deletedTeams/{param}/channels/{param}/filesFolder/$value","matched","Set-MgTeamworkDeletedTeamChannelFileFolderContent" +"Teams","SetMgUserJoinedTeamChannelFileFolderContent.g.cs","v1.0","Set-MgUserJoinedTeamChannelFileFolderContent","PUT","/users/{param}/joinedTeams/{param}/channels/{param}/filesFolder/$value","no-oracle","" +"Teams","SetMgUserJoinedTeamPrimaryChannelFileFolderContent.g.cs","v1.0","Set-MgUserJoinedTeamPrimaryChannelFileFolderContent","PUT","/users/{param}/joinedTeams/{param}/primaryChannel/filesFolder/$value","no-oracle","" +"Teams","SetMgUserJoinedTeamSchedule.g.cs","v1.0","Set-MgUserJoinedTeamSchedule","PUT","/users/{param}/joinedTeams/{param}/schedule","no-oracle","" +"Teams","UpdateMgAppCatalogTeamApp.g.cs","v1.0","Update-MgAppCatalogTeamApp","PATCH","/appCatalogs/teamsApps/{param}","matched","Update-MgAppCatalogTeamApp" +"Teams","UpdateMgAppCatalogTeamAppDefinition.g.cs","v1.0","Update-MgAppCatalogTeamAppDefinition","PATCH","/appCatalogs/teamsApps/{param}/appDefinitions/{param}","matched","Update-MgAppCatalogTeamAppDefinition" +"Teams","UpdateMgAppCatalogTeamAppDefinitionBot.g.cs","v1.0","Update-MgAppCatalogTeamAppDefinitionBot","PATCH","/appCatalogs/teamsApps/{param}/appDefinitions/{param}/bot","matched","Update-MgAppCatalogTeamAppDefinitionBot" +"Teams","UpdateMgChat.g.cs","v1.0","Update-MgChat","PATCH","/chats/{param}","matched","Update-MgChat" +"Teams","UpdateMgChatInstalledApp.g.cs","v1.0","Update-MgChatInstalledApp","PATCH","/chats/{param}/installedApps/{param}","no-oracle","" +"Teams","UpdateMgChatLastMessagePreview.g.cs","v1.0","Update-MgChatLastMessagePreview","PATCH","/chats/{param}/lastMessagePreview","matched","Update-MgChatLastMessagePreview" +"Teams","UpdateMgChatMember.g.cs","v1.0","Update-MgChatMember","PATCH","/chats/{param}/members/{param}","matched","Update-MgChatMember" +"Teams","UpdateMgChatMessage.g.cs","v1.0","Update-MgChatMessage","PATCH","/chats/{param}/messages/{param}","matched","Update-MgChatMessage" +"Teams","UpdateMgChatMessageHostedContent.g.cs","v1.0","Update-MgChatMessageHostedContent","PATCH","/chats/{param}/messages/{param}/hostedContents/{param}","no-oracle","" +"Teams","UpdateMgChatMessageReply.g.cs","v1.0","Update-MgChatMessageReply","PATCH","/chats/{param}/messages/{param}/replies/{param}","matched","Update-MgChatMessageReply" +"Teams","UpdateMgChatMessageReplyHostedContent.g.cs","v1.0","Update-MgChatMessageReplyHostedContent","PATCH","/chats/{param}/messages/{param}/replies/{param}/hostedContents/{param}","matched","Update-MgChatMessageReplyHostedContent" +"Teams","UpdateMgChatPermissionGrant.g.cs","v1.0","Update-MgChatPermissionGrant","PATCH","/chats/{param}/permissionGrants/{param}","matched","Update-MgChatPermissionGrant" +"Teams","UpdateMgChatPinnedMessage.g.cs","v1.0","Update-MgChatPinnedMessage","PATCH","/chats/{param}/pinnedMessages/{param}","matched","Update-MgChatPinnedMessage" +"Teams","UpdateMgChatTab.g.cs","v1.0","Update-MgChatTab","PATCH","/chats/{param}/tabs/{param}","matched","Update-MgChatTab" +"Teams","UpdateMgChatTargetedMessage.g.cs","v1.0","Update-MgChatTargetedMessage","PATCH","/chats/{param}/targetedMessages/{param}","matched","Update-MgChatTargetedMessage" +"Teams","UpdateMgChatTargetedMessageHostedContent.g.cs","v1.0","Update-MgChatTargetedMessageHostedContent","PATCH","/chats/{param}/targetedMessages/{param}/hostedContents/{param}","matched","Update-MgChatTargetedMessageHostedContent" +"Teams","UpdateMgChatTargetedMessageReply.g.cs","v1.0","Update-MgChatTargetedMessageReply","PATCH","/chats/{param}/targetedMessages/{param}/replies/{param}","matched","Update-MgChatTargetedMessageReply" +"Teams","UpdateMgChatTargetedMessageReplyHostedContent.g.cs","v1.0","Update-MgChatTargetedMessageReplyHostedContent","PATCH","/chats/{param}/targetedMessages/{param}/replies/{param}/hostedContents/{param}","matched","Update-MgChatTargetedMessageReplyHostedContent" +"Teams","UpdateMgGroupTeamChannel.g.cs","v1.0","Update-MgGroupTeamChannel","PATCH","/groups/{param}/team/channels/{param}","matched","Update-MgGroupTeamChannel" +"Teams","UpdateMgGroupTeamChannelAllMember.g.cs","v1.0","Update-MgGroupTeamChannelAllMember","PATCH","/groups/{param}/team/channels/{param}/allMembers/{param}","mismatch","Update-MgGroupTeamChannelMember" +"Teams","UpdateMgGroupTeamChannelMember.g.cs","v1.0","Update-MgGroupTeamChannelMember","PATCH","/groups/{param}/team/channels/{param}/members/{param}","no-oracle","" +"Teams","UpdateMgGroupTeamChannelMessage.g.cs","v1.0","Update-MgGroupTeamChannelMessage","PATCH","/groups/{param}/team/channels/{param}/messages/{param}","matched","Update-MgGroupTeamChannelMessage" +"Teams","UpdateMgGroupTeamChannelMessageHostedContent.g.cs","v1.0","Update-MgGroupTeamChannelMessageHostedContent","PATCH","/groups/{param}/team/channels/{param}/messages/{param}/hostedContents/{param}","matched","Update-MgGroupTeamChannelMessageHostedContent" +"Teams","UpdateMgGroupTeamChannelMessageReply.g.cs","v1.0","Update-MgGroupTeamChannelMessageReply","PATCH","/groups/{param}/team/channels/{param}/messages/{param}/replies/{param}","matched","Update-MgGroupTeamChannelMessageReply" +"Teams","UpdateMgGroupTeamChannelMessageReplyHostedContent.g.cs","v1.0","Update-MgGroupTeamChannelMessageReplyHostedContent","PATCH","/groups/{param}/team/channels/{param}/messages/{param}/replies/{param}/hostedContents/{param}","matched","Update-MgGroupTeamChannelMessageReplyHostedContent" +"Teams","UpdateMgGroupTeamChannelSharedWithTeam.g.cs","v1.0","Update-MgGroupTeamChannelSharedWithTeam","PATCH","/groups/{param}/team/channels/{param}/sharedWithTeams/{param}","matched","Update-MgGroupTeamChannelSharedWithTeam" +"Teams","UpdateMgGroupTeamChannelTab.g.cs","v1.0","Update-MgGroupTeamChannelTab","PATCH","/groups/{param}/team/channels/{param}/tabs/{param}","matched","Update-MgGroupTeamChannelTab" +"Teams","UpdateMgGroupTeamInstalledApp.g.cs","v1.0","Update-MgGroupTeamInstalledApp","PATCH","/groups/{param}/team/installedApps/{param}","no-oracle","" +"Teams","UpdateMgGroupTeamMember.g.cs","v1.0","Update-MgGroupTeamMember","PATCH","/groups/{param}/team/members/{param}","matched","Update-MgGroupTeamMember" +"Teams","UpdateMgGroupTeamOperation.g.cs","v1.0","Update-MgGroupTeamOperation","PATCH","/groups/{param}/team/operations/{param}","matched","Update-MgGroupTeamOperation" +"Teams","UpdateMgGroupTeamPermissionGrant.g.cs","v1.0","Update-MgGroupTeamPermissionGrant","PATCH","/groups/{param}/team/permissionGrants/{param}","matched","Update-MgGroupTeamPermissionGrant" +"Teams","UpdateMgGroupTeamPhoto.g.cs","v1.0","Update-MgGroupTeamPhoto","PATCH","/groups/{param}/team/photo","matched","Update-MgGroupTeamPhoto" +"Teams","UpdateMgGroupTeamPrimaryChannel.g.cs","v1.0","Update-MgGroupTeamPrimaryChannel","PATCH","/groups/{param}/team/primaryChannel","matched","Update-MgGroupTeamPrimaryChannel" +"Teams","UpdateMgGroupTeamPrimaryChannelAllMember.g.cs","v1.0","Update-MgGroupTeamPrimaryChannelAllMember","PATCH","/groups/{param}/team/primaryChannel/allMembers/{param}","mismatch","Update-MgGroupTeamPrimaryChannelMember" +"Teams","UpdateMgGroupTeamPrimaryChannelMember.g.cs","v1.0","Update-MgGroupTeamPrimaryChannelMember","PATCH","/groups/{param}/team/primaryChannel/members/{param}","no-oracle","" +"Teams","UpdateMgGroupTeamPrimaryChannelMessage.g.cs","v1.0","Update-MgGroupTeamPrimaryChannelMessage","PATCH","/groups/{param}/team/primaryChannel/messages/{param}","matched","Update-MgGroupTeamPrimaryChannelMessage" +"Teams","UpdateMgGroupTeamPrimaryChannelMessageHostedContent.g.cs","v1.0","Update-MgGroupTeamPrimaryChannelMessageHostedContent","PATCH","/groups/{param}/team/primaryChannel/messages/{param}/hostedContents/{param}","matched","Update-MgGroupTeamPrimaryChannelMessageHostedContent" +"Teams","UpdateMgGroupTeamPrimaryChannelMessageReply.g.cs","v1.0","Update-MgGroupTeamPrimaryChannelMessageReply","PATCH","/groups/{param}/team/primaryChannel/messages/{param}/replies/{param}","matched","Update-MgGroupTeamPrimaryChannelMessageReply" +"Teams","UpdateMgGroupTeamPrimaryChannelMessageReplyHostedContent.g.cs","v1.0","Update-MgGroupTeamPrimaryChannelMessageReplyHostedContent","PATCH","/groups/{param}/team/primaryChannel/messages/{param}/replies/{param}/hostedContents/{param}","matched","Update-MgGroupTeamPrimaryChannelMessageReplyHostedContent" +"Teams","UpdateMgGroupTeamPrimaryChannelSharedWithTeam.g.cs","v1.0","Update-MgGroupTeamPrimaryChannelSharedWithTeam","PATCH","/groups/{param}/team/primaryChannel/sharedWithTeams/{param}","matched","Update-MgGroupTeamPrimaryChannelSharedWithTeam" +"Teams","UpdateMgGroupTeamPrimaryChannelTab.g.cs","v1.0","Update-MgGroupTeamPrimaryChannelTab","PATCH","/groups/{param}/team/primaryChannel/tabs/{param}","matched","Update-MgGroupTeamPrimaryChannelTab" +"Teams","UpdateMgGroupTeamScheduleDayNote.g.cs","v1.0","Update-MgGroupTeamScheduleDayNote","PATCH","/groups/{param}/team/schedule/dayNotes/{param}","matched","Update-MgGroupTeamScheduleDayNote" +"Teams","UpdateMgGroupTeamScheduleOfferShiftRequest.g.cs","v1.0","Update-MgGroupTeamScheduleOfferShiftRequest","PATCH","/groups/{param}/team/schedule/offerShiftRequests/{param}","matched","Update-MgGroupTeamScheduleOfferShiftRequest" +"Teams","UpdateMgGroupTeamScheduleOpenShift.g.cs","v1.0","Update-MgGroupTeamScheduleOpenShift","PATCH","/groups/{param}/team/schedule/openShifts/{param}","matched","Update-MgGroupTeamScheduleOpenShift" +"Teams","UpdateMgGroupTeamScheduleOpenShiftChangeRequest.g.cs","v1.0","Update-MgGroupTeamScheduleOpenShiftChangeRequest","PATCH","/groups/{param}/team/schedule/openShiftChangeRequests/{param}","matched","Update-MgGroupTeamScheduleOpenShiftChangeRequest" +"Teams","UpdateMgGroupTeamScheduleSchedulingGroup.g.cs","v1.0","Update-MgGroupTeamScheduleSchedulingGroup","PATCH","/groups/{param}/team/schedule/schedulingGroups/{param}","matched","Update-MgGroupTeamScheduleSchedulingGroup" +"Teams","UpdateMgGroupTeamScheduleShift.g.cs","v1.0","Update-MgGroupTeamScheduleShift","PATCH","/groups/{param}/team/schedule/shifts/{param}","matched","Update-MgGroupTeamScheduleShift" +"Teams","UpdateMgGroupTeamScheduleSwapShiftChangeRequest.g.cs","v1.0","Update-MgGroupTeamScheduleSwapShiftChangeRequest","PATCH","/groups/{param}/team/schedule/swapShiftsChangeRequests/{param}","matched","Update-MgGroupTeamScheduleSwapShiftChangeRequest" +"Teams","UpdateMgGroupTeamScheduleTimeCard.g.cs","v1.0","Update-MgGroupTeamScheduleTimeCard","PATCH","/groups/{param}/team/schedule/timeCards/{param}","matched","Update-MgGroupTeamScheduleTimeCard" +"Teams","UpdateMgGroupTeamScheduleTimeOff.g.cs","v1.0","Update-MgGroupTeamScheduleTimeOff","PATCH","/groups/{param}/team/schedule/timesOff/{param}","matched","Update-MgGroupTeamScheduleTimeOff" +"Teams","UpdateMgGroupTeamScheduleTimeOffReason.g.cs","v1.0","Update-MgGroupTeamScheduleTimeOffReason","PATCH","/groups/{param}/team/schedule/timeOffReasons/{param}","matched","Update-MgGroupTeamScheduleTimeOffReason" +"Teams","UpdateMgGroupTeamScheduleTimeOffRequest.g.cs","v1.0","Update-MgGroupTeamScheduleTimeOffRequest","PATCH","/groups/{param}/team/schedule/timeOffRequests/{param}","matched","Update-MgGroupTeamScheduleTimeOffRequest" +"Teams","UpdateMgGroupTeamTag.g.cs","v1.0","Update-MgGroupTeamTag","PATCH","/groups/{param}/team/tags/{param}","matched","Update-MgGroupTeamTag" +"Teams","UpdateMgGroupTeamTagMember.g.cs","v1.0","Update-MgGroupTeamTagMember","PATCH","/groups/{param}/team/tags/{param}/members/{param}","matched","Update-MgGroupTeamTagMember" +"Teams","UpdateMgTeam.g.cs","v1.0","Update-MgTeam","PATCH","/teams/{param}","matched","Update-MgTeam" +"Teams","UpdateMgTeamChannel.g.cs","v1.0","Update-MgTeamChannel","PATCH","/teams/{param}/channels/{param}","matched","Update-MgTeamChannel" +"Teams","UpdateMgTeamChannelAllMember.g.cs","v1.0","Update-MgTeamChannelAllMember","PATCH","/teams/{param}/channels/{param}/allMembers/{param}","mismatch","Update-MgTeamChannelMember" +"Teams","UpdateMgTeamChannelMember.g.cs","v1.0","Update-MgTeamChannelMember","PATCH","/teams/{param}/channels/{param}/members/{param}","no-oracle","" +"Teams","UpdateMgTeamChannelMessage.g.cs","v1.0","Update-MgTeamChannelMessage","PATCH","/teams/{param}/channels/{param}/messages/{param}","matched","Update-MgTeamChannelMessage" +"Teams","UpdateMgTeamChannelMessageHostedContent.g.cs","v1.0","Update-MgTeamChannelMessageHostedContent","PATCH","/teams/{param}/channels/{param}/messages/{param}/hostedContents/{param}","no-oracle","" +"Teams","UpdateMgTeamChannelMessageReply.g.cs","v1.0","Update-MgTeamChannelMessageReply","PATCH","/teams/{param}/channels/{param}/messages/{param}/replies/{param}","matched","Update-MgTeamChannelMessageReply" +"Teams","UpdateMgTeamChannelMessageReplyHostedContent.g.cs","v1.0","Update-MgTeamChannelMessageReplyHostedContent","PATCH","/teams/{param}/channels/{param}/messages/{param}/replies/{param}/hostedContents/{param}","matched","Update-MgTeamChannelMessageReplyHostedContent" +"Teams","UpdateMgTeamChannelSharedWithTeam.g.cs","v1.0","Update-MgTeamChannelSharedWithTeam","PATCH","/teams/{param}/channels/{param}/sharedWithTeams/{param}","matched","Update-MgTeamChannelSharedWithTeam" +"Teams","UpdateMgTeamChannelTab.g.cs","v1.0","Update-MgTeamChannelTab","PATCH","/teams/{param}/channels/{param}/tabs/{param}","matched","Update-MgTeamChannelTab" +"Teams","UpdateMgTeamInstalledApp.g.cs","v1.0","Update-MgTeamInstalledApp","PATCH","/teams/{param}/installedApps/{param}","no-oracle","" +"Teams","UpdateMgTeamMember.g.cs","v1.0","Update-MgTeamMember","PATCH","/teams/{param}/members/{param}","matched","Update-MgTeamMember" +"Teams","UpdateMgTeamOperation.g.cs","v1.0","Update-MgTeamOperation","PATCH","/teams/{param}/operations/{param}","matched","Update-MgTeamOperation" +"Teams","UpdateMgTeamPermissionGrant.g.cs","v1.0","Update-MgTeamPermissionGrant","PATCH","/teams/{param}/permissionGrants/{param}","matched","Update-MgTeamPermissionGrant" +"Teams","UpdateMgTeamPhoto.g.cs","v1.0","Update-MgTeamPhoto","PATCH","/teams/{param}/photo","matched","Update-MgTeamPhoto" +"Teams","UpdateMgTeamPrimaryChannel.g.cs","v1.0","Update-MgTeamPrimaryChannel","PATCH","/teams/{param}/primaryChannel","matched","Update-MgTeamPrimaryChannel" +"Teams","UpdateMgTeamPrimaryChannelAllMember.g.cs","v1.0","Update-MgTeamPrimaryChannelAllMember","PATCH","/teams/{param}/primaryChannel/allMembers/{param}","mismatch","Update-MgTeamPrimaryChannelMember" +"Teams","UpdateMgTeamPrimaryChannelMember.g.cs","v1.0","Update-MgTeamPrimaryChannelMember","PATCH","/teams/{param}/primaryChannel/members/{param}","no-oracle","" +"Teams","UpdateMgTeamPrimaryChannelMessage.g.cs","v1.0","Update-MgTeamPrimaryChannelMessage","PATCH","/teams/{param}/primaryChannel/messages/{param}","matched","Update-MgTeamPrimaryChannelMessage" +"Teams","UpdateMgTeamPrimaryChannelMessageHostedContent.g.cs","v1.0","Update-MgTeamPrimaryChannelMessageHostedContent","PATCH","/teams/{param}/primaryChannel/messages/{param}/hostedContents/{param}","no-oracle","" +"Teams","UpdateMgTeamPrimaryChannelMessageReply.g.cs","v1.0","Update-MgTeamPrimaryChannelMessageReply","PATCH","/teams/{param}/primaryChannel/messages/{param}/replies/{param}","matched","Update-MgTeamPrimaryChannelMessageReply" +"Teams","UpdateMgTeamPrimaryChannelMessageReplyHostedContent.g.cs","v1.0","Update-MgTeamPrimaryChannelMessageReplyHostedContent","PATCH","/teams/{param}/primaryChannel/messages/{param}/replies/{param}/hostedContents/{param}","matched","Update-MgTeamPrimaryChannelMessageReplyHostedContent" +"Teams","UpdateMgTeamPrimaryChannelSharedWithTeam.g.cs","v1.0","Update-MgTeamPrimaryChannelSharedWithTeam","PATCH","/teams/{param}/primaryChannel/sharedWithTeams/{param}","matched","Update-MgTeamPrimaryChannelSharedWithTeam" +"Teams","UpdateMgTeamPrimaryChannelTab.g.cs","v1.0","Update-MgTeamPrimaryChannelTab","PATCH","/teams/{param}/primaryChannel/tabs/{param}","matched","Update-MgTeamPrimaryChannelTab" +"Teams","UpdateMgTeamScheduleDayNote.g.cs","v1.0","Update-MgTeamScheduleDayNote","PATCH","/teams/{param}/schedule/dayNotes/{param}","matched","Update-MgTeamScheduleDayNote" +"Teams","UpdateMgTeamScheduleOfferShiftRequest.g.cs","v1.0","Update-MgTeamScheduleOfferShiftRequest","PATCH","/teams/{param}/schedule/offerShiftRequests/{param}","matched","Update-MgTeamScheduleOfferShiftRequest" +"Teams","UpdateMgTeamScheduleOpenShift.g.cs","v1.0","Update-MgTeamScheduleOpenShift","PATCH","/teams/{param}/schedule/openShifts/{param}","matched","Update-MgTeamScheduleOpenShift" +"Teams","UpdateMgTeamScheduleOpenShiftChangeRequest.g.cs","v1.0","Update-MgTeamScheduleOpenShiftChangeRequest","PATCH","/teams/{param}/schedule/openShiftChangeRequests/{param}","matched","Update-MgTeamScheduleOpenShiftChangeRequest" +"Teams","UpdateMgTeamScheduleSchedulingGroup.g.cs","v1.0","Update-MgTeamScheduleSchedulingGroup","PATCH","/teams/{param}/schedule/schedulingGroups/{param}","matched","Update-MgTeamScheduleSchedulingGroup" +"Teams","UpdateMgTeamScheduleShift.g.cs","v1.0","Update-MgTeamScheduleShift","PATCH","/teams/{param}/schedule/shifts/{param}","matched","Update-MgTeamScheduleShift" +"Teams","UpdateMgTeamScheduleSwapShiftChangeRequest.g.cs","v1.0","Update-MgTeamScheduleSwapShiftChangeRequest","PATCH","/teams/{param}/schedule/swapShiftsChangeRequests/{param}","matched","Update-MgTeamScheduleSwapShiftChangeRequest" +"Teams","UpdateMgTeamScheduleTimeCard.g.cs","v1.0","Update-MgTeamScheduleTimeCard","PATCH","/teams/{param}/schedule/timeCards/{param}","matched","Update-MgTeamScheduleTimeCard" +"Teams","UpdateMgTeamScheduleTimeOff.g.cs","v1.0","Update-MgTeamScheduleTimeOff","PATCH","/teams/{param}/schedule/timesOff/{param}","matched","Update-MgTeamScheduleTimeOff" +"Teams","UpdateMgTeamScheduleTimeOffReason.g.cs","v1.0","Update-MgTeamScheduleTimeOffReason","PATCH","/teams/{param}/schedule/timeOffReasons/{param}","matched","Update-MgTeamScheduleTimeOffReason" +"Teams","UpdateMgTeamScheduleTimeOffRequest.g.cs","v1.0","Update-MgTeamScheduleTimeOffRequest","PATCH","/teams/{param}/schedule/timeOffRequests/{param}","matched","Update-MgTeamScheduleTimeOffRequest" +"Teams","UpdateMgTeamTag.g.cs","v1.0","Update-MgTeamTag","PATCH","/teams/{param}/tags/{param}","matched","Update-MgTeamTag" +"Teams","UpdateMgTeamTagMember.g.cs","v1.0","Update-MgTeamTagMember","PATCH","/teams/{param}/tags/{param}/members/{param}","matched","Update-MgTeamTagMember" +"Teams","UpdateMgTeamwork.g.cs","v1.0","Update-MgTeamwork","PATCH","/teamwork","matched","Update-MgTeamwork" +"Teams","UpdateMgTeamworkDeletedChat.g.cs","v1.0","Update-MgTeamworkDeletedChat","PATCH","/teamwork/deletedChats/{param}","matched","Update-MgTeamworkDeletedChat" +"Teams","UpdateMgTeamworkDeletedTeam.g.cs","v1.0","Update-MgTeamworkDeletedTeam","PATCH","/teamwork/deletedTeams/{param}","matched","Update-MgTeamworkDeletedTeam" +"Teams","UpdateMgTeamworkDeletedTeamChannel.g.cs","v1.0","Update-MgTeamworkDeletedTeamChannel","PATCH","/teamwork/deletedTeams/{param}/channels/{param}","matched","Update-MgTeamworkDeletedTeamChannel" +"Teams","UpdateMgTeamworkDeletedTeamChannelAllMember.g.cs","v1.0","Update-MgTeamworkDeletedTeamChannelAllMember","PATCH","/teamwork/deletedTeams/{param}/channels/{param}/allMembers/{param}","mismatch","Update-MgTeamworkDeletedTeamChannelMember" +"Teams","UpdateMgTeamworkDeletedTeamChannelMember.g.cs","v1.0","Update-MgTeamworkDeletedTeamChannelMember","PATCH","/teamwork/deletedTeams/{param}/channels/{param}/members/{param}","no-oracle","" +"Teams","UpdateMgTeamworkDeletedTeamChannelMessage.g.cs","v1.0","Update-MgTeamworkDeletedTeamChannelMessage","PATCH","/teamwork/deletedTeams/{param}/channels/{param}/messages/{param}","matched","Update-MgTeamworkDeletedTeamChannelMessage" +"Teams","UpdateMgTeamworkDeletedTeamChannelMessageHostedContent.g.cs","v1.0","Update-MgTeamworkDeletedTeamChannelMessageHostedContent","PATCH","/teamwork/deletedTeams/{param}/channels/{param}/messages/{param}/hostedContents/{param}","matched","Update-MgTeamworkDeletedTeamChannelMessageHostedContent" +"Teams","UpdateMgTeamworkDeletedTeamChannelMessageReply.g.cs","v1.0","Update-MgTeamworkDeletedTeamChannelMessageReply","PATCH","/teamwork/deletedTeams/{param}/channels/{param}/messages/{param}/replies/{param}","matched","Update-MgTeamworkDeletedTeamChannelMessageReply" +"Teams","UpdateMgTeamworkDeletedTeamChannelMessageReplyHostedContent.g.cs","v1.0","Update-MgTeamworkDeletedTeamChannelMessageReplyHostedContent","PATCH","/teamwork/deletedTeams/{param}/channels/{param}/messages/{param}/replies/{param}/hostedContents/{param}","matched","Update-MgTeamworkDeletedTeamChannelMessageReplyHostedContent" +"Teams","UpdateMgTeamworkDeletedTeamChannelSharedWithTeam.g.cs","v1.0","Update-MgTeamworkDeletedTeamChannelSharedWithTeam","PATCH","/teamwork/deletedTeams/{param}/channels/{param}/sharedWithTeams/{param}","matched","Update-MgTeamworkDeletedTeamChannelSharedWithTeam" +"Teams","UpdateMgTeamworkDeletedTeamChannelTab.g.cs","v1.0","Update-MgTeamworkDeletedTeamChannelTab","PATCH","/teamwork/deletedTeams/{param}/channels/{param}/tabs/{param}","matched","Update-MgTeamworkDeletedTeamChannelTab" +"Teams","UpdateMgTeamworkTeamAppSetting.g.cs","v1.0","Update-MgTeamworkTeamAppSetting","PATCH","/teamwork/teamsAppSettings","matched","Update-MgTeamworkTeamAppSetting" +"Teams","UpdateMgTeamworkWorkforceIntegration.g.cs","v1.0","Update-MgTeamworkWorkforceIntegration","PATCH","/teamwork/workforceIntegrations/{param}","matched","Update-MgTeamworkWorkforceIntegration" +"Teams","UpdateMgUserChat.g.cs","v1.0","Update-MgUserChat","PATCH","/users/{param}/chats/{param}","matched","Update-MgUserChat" +"Teams","UpdateMgUserChatInstalledApp.g.cs","v1.0","Update-MgUserChatInstalledApp","PATCH","/users/{param}/chats/{param}/installedApps/{param}","no-oracle","" +"Teams","UpdateMgUserChatLastMessagePreview.g.cs","v1.0","Update-MgUserChatLastMessagePreview","PATCH","/users/{param}/chats/{param}/lastMessagePreview","matched","Update-MgUserChatLastMessagePreview" +"Teams","UpdateMgUserChatMember.g.cs","v1.0","Update-MgUserChatMember","PATCH","/users/{param}/chats/{param}/members/{param}","matched","Update-MgUserChatMember" +"Teams","UpdateMgUserChatMessage.g.cs","v1.0","Update-MgUserChatMessage","PATCH","/users/{param}/chats/{param}/messages/{param}","matched","Update-MgUserChatMessage" +"Teams","UpdateMgUserChatMessageHostedContent.g.cs","v1.0","Update-MgUserChatMessageHostedContent","PATCH","/users/{param}/chats/{param}/messages/{param}/hostedContents/{param}","matched","Update-MgUserChatMessageHostedContent" +"Teams","UpdateMgUserChatMessageReply.g.cs","v1.0","Update-MgUserChatMessageReply","PATCH","/users/{param}/chats/{param}/messages/{param}/replies/{param}","matched","Update-MgUserChatMessageReply" +"Teams","UpdateMgUserChatMessageReplyHostedContent.g.cs","v1.0","Update-MgUserChatMessageReplyHostedContent","PATCH","/users/{param}/chats/{param}/messages/{param}/replies/{param}/hostedContents/{param}","matched","Update-MgUserChatMessageReplyHostedContent" +"Teams","UpdateMgUserChatPermissionGrant.g.cs","v1.0","Update-MgUserChatPermissionGrant","PATCH","/users/{param}/chats/{param}/permissionGrants/{param}","matched","Update-MgUserChatPermissionGrant" +"Teams","UpdateMgUserChatPinnedMessage.g.cs","v1.0","Update-MgUserChatPinnedMessage","PATCH","/users/{param}/chats/{param}/pinnedMessages/{param}","matched","Update-MgUserChatPinnedMessage" +"Teams","UpdateMgUserChatTab.g.cs","v1.0","Update-MgUserChatTab","PATCH","/users/{param}/chats/{param}/tabs/{param}","matched","Update-MgUserChatTab" +"Teams","UpdateMgUserChatTargetedMessage.g.cs","v1.0","Update-MgUserChatTargetedMessage","PATCH","/users/{param}/chats/{param}/targetedMessages/{param}","matched","Update-MgUserChatTargetedMessage" +"Teams","UpdateMgUserChatTargetedMessageHostedContent.g.cs","v1.0","Update-MgUserChatTargetedMessageHostedContent","PATCH","/users/{param}/chats/{param}/targetedMessages/{param}/hostedContents/{param}","matched","Update-MgUserChatTargetedMessageHostedContent" +"Teams","UpdateMgUserChatTargetedMessageReply.g.cs","v1.0","Update-MgUserChatTargetedMessageReply","PATCH","/users/{param}/chats/{param}/targetedMessages/{param}/replies/{param}","matched","Update-MgUserChatTargetedMessageReply" +"Teams","UpdateMgUserChatTargetedMessageReplyHostedContent.g.cs","v1.0","Update-MgUserChatTargetedMessageReplyHostedContent","PATCH","/users/{param}/chats/{param}/targetedMessages/{param}/replies/{param}/hostedContents/{param}","matched","Update-MgUserChatTargetedMessageReplyHostedContent" +"Teams","UpdateMgUserJoinedTeam.g.cs","v1.0","Update-MgUserJoinedTeam","PATCH","/users/{param}/joinedTeams/{param}","no-oracle","" +"Teams","UpdateMgUserJoinedTeamChannel.g.cs","v1.0","Update-MgUserJoinedTeamChannel","PATCH","/users/{param}/joinedTeams/{param}/channels/{param}","no-oracle","" +"Teams","UpdateMgUserJoinedTeamChannelAllMember.g.cs","v1.0","Update-MgUserJoinedTeamChannelAllMember","PATCH","/users/{param}/joinedTeams/{param}/channels/{param}/allMembers/{param}","no-oracle","" +"Teams","UpdateMgUserJoinedTeamChannelMember.g.cs","v1.0","Update-MgUserJoinedTeamChannelMember","PATCH","/users/{param}/joinedTeams/{param}/channels/{param}/members/{param}","no-oracle","" +"Teams","UpdateMgUserJoinedTeamChannelMessage.g.cs","v1.0","Update-MgUserJoinedTeamChannelMessage","PATCH","/users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}","no-oracle","" +"Teams","UpdateMgUserJoinedTeamChannelMessageHostedContent.g.cs","v1.0","Update-MgUserJoinedTeamChannelMessageHostedContent","PATCH","/users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/hostedContents/{param}","no-oracle","" +"Teams","UpdateMgUserJoinedTeamChannelMessageReply.g.cs","v1.0","Update-MgUserJoinedTeamChannelMessageReply","PATCH","/users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/replies/{param}","no-oracle","" +"Teams","UpdateMgUserJoinedTeamChannelMessageReplyHostedContent.g.cs","v1.0","Update-MgUserJoinedTeamChannelMessageReplyHostedContent","PATCH","/users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/replies/{param}/hostedContents/{param}","no-oracle","" +"Teams","UpdateMgUserJoinedTeamChannelSharedWithTeam.g.cs","v1.0","Update-MgUserJoinedTeamChannelSharedWithTeam","PATCH","/users/{param}/joinedTeams/{param}/channels/{param}/sharedWithTeams/{param}","no-oracle","" +"Teams","UpdateMgUserJoinedTeamChannelTab.g.cs","v1.0","Update-MgUserJoinedTeamChannelTab","PATCH","/users/{param}/joinedTeams/{param}/channels/{param}/tabs/{param}","no-oracle","" +"Teams","UpdateMgUserJoinedTeamInstalledApp.g.cs","v1.0","Update-MgUserJoinedTeamInstalledApp","PATCH","/users/{param}/joinedTeams/{param}/installedApps/{param}","no-oracle","" +"Teams","UpdateMgUserJoinedTeamMember.g.cs","v1.0","Update-MgUserJoinedTeamMember","PATCH","/users/{param}/joinedTeams/{param}/members/{param}","no-oracle","" +"Teams","UpdateMgUserJoinedTeamOperation.g.cs","v1.0","Update-MgUserJoinedTeamOperation","PATCH","/users/{param}/joinedTeams/{param}/operations/{param}","no-oracle","" +"Teams","UpdateMgUserJoinedTeamPermissionGrant.g.cs","v1.0","Update-MgUserJoinedTeamPermissionGrant","PATCH","/users/{param}/joinedTeams/{param}/permissionGrants/{param}","no-oracle","" +"Teams","UpdateMgUserJoinedTeamPhoto.g.cs","v1.0","Update-MgUserJoinedTeamPhoto","PATCH","/users/{param}/joinedTeams/{param}/photo","no-oracle","" +"Teams","UpdateMgUserJoinedTeamPrimaryChannel.g.cs","v1.0","Update-MgUserJoinedTeamPrimaryChannel","PATCH","/users/{param}/joinedTeams/{param}/primaryChannel","no-oracle","" +"Teams","UpdateMgUserJoinedTeamPrimaryChannelAllMember.g.cs","v1.0","Update-MgUserJoinedTeamPrimaryChannelAllMember","PATCH","/users/{param}/joinedTeams/{param}/primaryChannel/allMembers/{param}","no-oracle","" +"Teams","UpdateMgUserJoinedTeamPrimaryChannelMember.g.cs","v1.0","Update-MgUserJoinedTeamPrimaryChannelMember","PATCH","/users/{param}/joinedTeams/{param}/primaryChannel/members/{param}","no-oracle","" +"Teams","UpdateMgUserJoinedTeamPrimaryChannelMessage.g.cs","v1.0","Update-MgUserJoinedTeamPrimaryChannelMessage","PATCH","/users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}","no-oracle","" +"Teams","UpdateMgUserJoinedTeamPrimaryChannelMessageHostedContent.g.cs","v1.0","Update-MgUserJoinedTeamPrimaryChannelMessageHostedContent","PATCH","/users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/hostedContents/{param}","no-oracle","" +"Teams","UpdateMgUserJoinedTeamPrimaryChannelMessageReply.g.cs","v1.0","Update-MgUserJoinedTeamPrimaryChannelMessageReply","PATCH","/users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/replies/{param}","no-oracle","" +"Teams","UpdateMgUserJoinedTeamPrimaryChannelMessageReplyHostedContent.g.cs","v1.0","Update-MgUserJoinedTeamPrimaryChannelMessageReplyHostedContent","PATCH","/users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/replies/{param}/hostedContents/{param}","no-oracle","" +"Teams","UpdateMgUserJoinedTeamPrimaryChannelSharedWithTeam.g.cs","v1.0","Update-MgUserJoinedTeamPrimaryChannelSharedWithTeam","PATCH","/users/{param}/joinedTeams/{param}/primaryChannel/sharedWithTeams/{param}","no-oracle","" +"Teams","UpdateMgUserJoinedTeamPrimaryChannelTab.g.cs","v1.0","Update-MgUserJoinedTeamPrimaryChannelTab","PATCH","/users/{param}/joinedTeams/{param}/primaryChannel/tabs/{param}","no-oracle","" +"Teams","UpdateMgUserJoinedTeamScheduleDayNote.g.cs","v1.0","Update-MgUserJoinedTeamScheduleDayNote","PATCH","/users/{param}/joinedTeams/{param}/schedule/dayNotes/{param}","no-oracle","" +"Teams","UpdateMgUserJoinedTeamScheduleOfferShiftRequest.g.cs","v1.0","Update-MgUserJoinedTeamScheduleOfferShiftRequest","PATCH","/users/{param}/joinedTeams/{param}/schedule/offerShiftRequests/{param}","no-oracle","" +"Teams","UpdateMgUserJoinedTeamScheduleOpenShift.g.cs","v1.0","Update-MgUserJoinedTeamScheduleOpenShift","PATCH","/users/{param}/joinedTeams/{param}/schedule/openShifts/{param}","no-oracle","" +"Teams","UpdateMgUserJoinedTeamScheduleOpenShiftChangeRequest.g.cs","v1.0","Update-MgUserJoinedTeamScheduleOpenShiftChangeRequest","PATCH","/users/{param}/joinedTeams/{param}/schedule/openShiftChangeRequests/{param}","no-oracle","" +"Teams","UpdateMgUserJoinedTeamScheduleSchedulingGroup.g.cs","v1.0","Update-MgUserJoinedTeamScheduleSchedulingGroup","PATCH","/users/{param}/joinedTeams/{param}/schedule/schedulingGroups/{param}","no-oracle","" +"Teams","UpdateMgUserJoinedTeamScheduleShift.g.cs","v1.0","Update-MgUserJoinedTeamScheduleShift","PATCH","/users/{param}/joinedTeams/{param}/schedule/shifts/{param}","no-oracle","" +"Teams","UpdateMgUserJoinedTeamScheduleSwapShiftChangeRequest.g.cs","v1.0","Update-MgUserJoinedTeamScheduleSwapShiftChangeRequest","PATCH","/users/{param}/joinedTeams/{param}/schedule/swapShiftsChangeRequests/{param}","no-oracle","" +"Teams","UpdateMgUserJoinedTeamScheduleTimeCard.g.cs","v1.0","Update-MgUserJoinedTeamScheduleTimeCard","PATCH","/users/{param}/joinedTeams/{param}/schedule/timeCards/{param}","no-oracle","" +"Teams","UpdateMgUserJoinedTeamScheduleTimeOff.g.cs","v1.0","Update-MgUserJoinedTeamScheduleTimeOff","PATCH","/users/{param}/joinedTeams/{param}/schedule/timesOff/{param}","no-oracle","" +"Teams","UpdateMgUserJoinedTeamScheduleTimeOffReason.g.cs","v1.0","Update-MgUserJoinedTeamScheduleTimeOffReason","PATCH","/users/{param}/joinedTeams/{param}/schedule/timeOffReasons/{param}","no-oracle","" +"Teams","UpdateMgUserJoinedTeamScheduleTimeOffRequest.g.cs","v1.0","Update-MgUserJoinedTeamScheduleTimeOffRequest","PATCH","/users/{param}/joinedTeams/{param}/schedule/timeOffRequests/{param}","no-oracle","" +"Teams","UpdateMgUserJoinedTeamTag.g.cs","v1.0","Update-MgUserJoinedTeamTag","PATCH","/users/{param}/joinedTeams/{param}/tags/{param}","no-oracle","" +"Teams","UpdateMgUserJoinedTeamTagMember.g.cs","v1.0","Update-MgUserJoinedTeamTagMember","PATCH","/users/{param}/joinedTeams/{param}/tags/{param}/members/{param}","no-oracle","" +"Teams","UpdateMgUserTeamwork.g.cs","v1.0","Update-MgUserTeamwork","PATCH","/users/{param}/teamwork","matched","Update-MgUserTeamwork" +"Teams","UpdateMgUserTeamworkAssociatedTeam.g.cs","v1.0","Update-MgUserTeamworkAssociatedTeam","PATCH","/users/{param}/teamwork/associatedTeams/{param}","matched","Update-MgUserTeamworkAssociatedTeam" +"Teams","UpdateMgUserTeamworkInstalledApp.g.cs","v1.0","Update-MgUserTeamworkInstalledApp","PATCH","/users/{param}/teamwork/installedApps/{param}","no-oracle","" +"Users","GetMgUser_Get.g.cs","v1.0","Get-MgUser","GET","/users/{param}","matched","Get-MgUser" +"Users","GetMgUser_List.g.cs","v1.0","Get-MgUser","GET","/users","matched","Get-MgUser" +"Users","GetMgUser.g.cs","v1.0","Get-MgUser","","","dispatcher","" +"Users","GetMgUserCount.g.cs","v1.0","Get-MgUserCount","GET","/users/$count","matched","Get-MgUserCount" +"Users","GetMgUserCreatedObject_Get.g.cs","v1.0","Get-MgUserCreatedObject","GET","/users/{param}/createdObjects/{param}","matched","Get-MgUserCreatedObject" +"Users","GetMgUserCreatedObject_List.g.cs","v1.0","Get-MgUserCreatedObject","GET","/users/{param}/createdObjects","matched","Get-MgUserCreatedObject" +"Users","GetMgUserCreatedObject.g.cs","v1.0","Get-MgUserCreatedObject","","","dispatcher","" +"Users","GetMgUserCreatedObjectAsServicePrincipal_Get.g.cs","v1.0","Get-MgUserCreatedObjectAsServicePrincipal","GET","","cast","" +"Users","GetMgUserCreatedObjectAsServicePrincipal_List.g.cs","v1.0","Get-MgUserCreatedObjectAsServicePrincipal","GET","","cast","" +"Users","GetMgUserCreatedObjectAsServicePrincipal.g.cs","v1.0","Get-MgUserCreatedObjectAsServicePrincipal","","","dispatcher","" +"Users","GetMgUserCreatedObjectAsServicePrincipalCount.g.cs","v1.0","Get-MgUserCreatedObjectAsServicePrincipalCount","GET","","cast","" +"Users","GetMgUserCreatedObjectCount.g.cs","v1.0","Get-MgUserCreatedObjectCount","GET","/users/{param}/createdObjects/$count","matched","Get-MgUserCreatedObjectCount" +"Users","GetMgUserDirectReport_Get.g.cs","v1.0","Get-MgUserDirectReport","GET","/users/{param}/directReports/{param}","matched","Get-MgUserDirectReport" +"Users","GetMgUserDirectReport_List.g.cs","v1.0","Get-MgUserDirectReport","GET","/users/{param}/directReports","matched","Get-MgUserDirectReport" +"Users","GetMgUserDirectReport.g.cs","v1.0","Get-MgUserDirectReport","","","dispatcher","" +"Users","GetMgUserDirectReportAsOrgContact_Get.g.cs","v1.0","Get-MgUserDirectReportAsOrgContact","GET","","cast","" +"Users","GetMgUserDirectReportAsOrgContact_List.g.cs","v1.0","Get-MgUserDirectReportAsOrgContact","GET","","cast","" +"Users","GetMgUserDirectReportAsOrgContact.g.cs","v1.0","Get-MgUserDirectReportAsOrgContact","","","dispatcher","" +"Users","GetMgUserDirectReportAsOrgContactCount.g.cs","v1.0","Get-MgUserDirectReportAsOrgContactCount","GET","","cast","" +"Users","GetMgUserDirectReportAsUser_Get.g.cs","v1.0","Get-MgUserDirectReportAsUser","GET","","cast","" +"Users","GetMgUserDirectReportAsUser_List.g.cs","v1.0","Get-MgUserDirectReportAsUser","GET","","cast","" +"Users","GetMgUserDirectReportAsUser.g.cs","v1.0","Get-MgUserDirectReportAsUser","","","dispatcher","" +"Users","GetMgUserDirectReportAsUserCount.g.cs","v1.0","Get-MgUserDirectReportAsUserCount","GET","","cast","" +"Users","GetMgUserDirectReportCount.g.cs","v1.0","Get-MgUserDirectReportCount","GET","/users/{param}/directReports/$count","matched","Get-MgUserDirectReportCount" +"Users","GetMgUserExtension_Get.g.cs","v1.0","Get-MgUserExtension","GET","/users/{param}/extensions/{param}","matched","Get-MgUserExtension" +"Users","GetMgUserExtension_List.g.cs","v1.0","Get-MgUserExtension","GET","/users/{param}/extensions","matched","Get-MgUserExtension" +"Users","GetMgUserExtension.g.cs","v1.0","Get-MgUserExtension","","","dispatcher","" +"Users","GetMgUserExtensionCount.g.cs","v1.0","Get-MgUserExtensionCount","GET","/users/{param}/extensions/$count","matched","Get-MgUserExtensionCount" +"Users","GetMgUserInsight.g.cs","v1.0","Get-MgUserInsight","GET","/users/{param}/insights","matched","Get-MgUserInsight" +"Users","GetMgUserInsightShared_Get.g.cs","v1.0","Get-MgUserInsightShared","GET","/users/{param}/insights/shared/{param}","matched","Get-MgUserInsightShared" +"Users","GetMgUserInsightShared_List.g.cs","v1.0","Get-MgUserInsightShared","GET","/users/{param}/insights/shared","matched","Get-MgUserInsightShared" +"Users","GetMgUserInsightShared.g.cs","v1.0","Get-MgUserInsightShared","","","dispatcher","" +"Users","GetMgUserInsightSharedCount.g.cs","v1.0","Get-MgUserInsightSharedCount","GET","/users/{param}/insights/shared/$count","matched","Get-MgUserInsightSharedCount" +"Users","GetMgUserInsightSharedLastSharedMethod.g.cs","v1.0","Get-MgUserInsightSharedLastSharedMethod","GET","/users/{param}/insights/shared/{param}/lastSharedMethod","matched","Get-MgUserInsightSharedLastSharedMethod" +"Users","GetMgUserInsightSharedResource.g.cs","v1.0","Get-MgUserInsightSharedResource","GET","/users/{param}/insights/shared/{param}/resource","matched","Get-MgUserInsightSharedResource" +"Users","GetMgUserInsightTrending_Get.g.cs","v1.0","Get-MgUserInsightTrending","GET","/users/{param}/insights/trending/{param}","matched","Get-MgUserInsightTrending" +"Users","GetMgUserInsightTrending_List.g.cs","v1.0","Get-MgUserInsightTrending","GET","/users/{param}/insights/trending","matched","Get-MgUserInsightTrending" +"Users","GetMgUserInsightTrending.g.cs","v1.0","Get-MgUserInsightTrending","","","dispatcher","" +"Users","GetMgUserInsightTrendingCount.g.cs","v1.0","Get-MgUserInsightTrendingCount","GET","/users/{param}/insights/trending/$count","matched","Get-MgUserInsightTrendingCount" +"Users","GetMgUserInsightTrendingResource.g.cs","v1.0","Get-MgUserInsightTrendingResource","GET","/users/{param}/insights/trending/{param}/resource","matched","Get-MgUserInsightTrendingResource" +"Users","GetMgUserInsightUsed_Get.g.cs","v1.0","Get-MgUserInsightUsed","GET","/users/{param}/insights/used/{param}","matched","Get-MgUserInsightUsed" +"Users","GetMgUserInsightUsed_List.g.cs","v1.0","Get-MgUserInsightUsed","GET","/users/{param}/insights/used","matched","Get-MgUserInsightUsed" +"Users","GetMgUserInsightUsed.g.cs","v1.0","Get-MgUserInsightUsed","","","dispatcher","" +"Users","GetMgUserInsightUsedCount.g.cs","v1.0","Get-MgUserInsightUsedCount","GET","/users/{param}/insights/used/$count","matched","Get-MgUserInsightUsedCount" +"Users","GetMgUserInsightUsedResource.g.cs","v1.0","Get-MgUserInsightUsedResource","GET","/users/{param}/insights/used/{param}/resource","matched","Get-MgUserInsightUsedResource" +"Users","GetMgUserLicenseDetail_Get.g.cs","v1.0","Get-MgUserLicenseDetail","GET","/users/{param}/licenseDetails/{param}","matched","Get-MgUserLicenseDetail" +"Users","GetMgUserLicenseDetail_List.g.cs","v1.0","Get-MgUserLicenseDetail","GET","/users/{param}/licenseDetails","matched","Get-MgUserLicenseDetail" +"Users","GetMgUserLicenseDetail.g.cs","v1.0","Get-MgUserLicenseDetail","","","dispatcher","" +"Users","GetMgUserLicenseDetailCount.g.cs","v1.0","Get-MgUserLicenseDetailCount","GET","/users/{param}/licenseDetails/$count","matched","Get-MgUserLicenseDetailCount" +"Users","GetMgUserLicenseDetailGetTeamsLicensingDetails.g.cs","v1.0","Get-MgUserLicenseDetailGetTeamsLicensingDetails","GET","/users/{param}/licenseDetails/getTeamsLicensingDetails","mismatch","Get-MgUserLicenseDetailTeamLicensingDetail" +"Users","GetMgUserMailboxSetting.g.cs","v1.0","Get-MgUserMailboxSetting","GET","/users/{param}/mailboxSettings","matched","Get-MgUserMailboxSetting" +"Users","GetMgUserManager.g.cs","v1.0","Get-MgUserManager","GET","/users/{param}/manager","matched","Get-MgUserManager" +"Users","GetMgUserManagerByRef.g.cs","v1.0","Get-MgUserManagerByRef","GET","/users/{param}/manager/$ref","matched","Get-MgUserManagerByRef" +"Users","GetMgUserMemberOf_Get.g.cs","v1.0","Get-MgUserMemberOf","GET","/users/{param}/memberOf/{param}","matched","Get-MgUserMemberOf" +"Users","GetMgUserMemberOf_List.g.cs","v1.0","Get-MgUserMemberOf","GET","/users/{param}/memberOf","matched","Get-MgUserMemberOf" +"Users","GetMgUserMemberOf.g.cs","v1.0","Get-MgUserMemberOf","","","dispatcher","" +"Users","GetMgUserMemberOfAsAdministrativeUnit_Get.g.cs","v1.0","Get-MgUserMemberOfAsAdministrativeUnit","GET","","cast","" +"Users","GetMgUserMemberOfAsAdministrativeUnit_List.g.cs","v1.0","Get-MgUserMemberOfAsAdministrativeUnit","GET","","cast","" +"Users","GetMgUserMemberOfAsAdministrativeUnit.g.cs","v1.0","Get-MgUserMemberOfAsAdministrativeUnit","","","dispatcher","" +"Users","GetMgUserMemberOfAsAdministrativeUnitCount.g.cs","v1.0","Get-MgUserMemberOfAsAdministrativeUnitCount","GET","","cast","" +"Users","GetMgUserMemberOfAsDirectoryRole_Get.g.cs","v1.0","Get-MgUserMemberOfAsDirectoryRole","GET","","cast","" +"Users","GetMgUserMemberOfAsDirectoryRole_List.g.cs","v1.0","Get-MgUserMemberOfAsDirectoryRole","GET","","cast","" +"Users","GetMgUserMemberOfAsDirectoryRole.g.cs","v1.0","Get-MgUserMemberOfAsDirectoryRole","","","dispatcher","" +"Users","GetMgUserMemberOfAsDirectoryRoleCount.g.cs","v1.0","Get-MgUserMemberOfAsDirectoryRoleCount","GET","","cast","" +"Users","GetMgUserMemberOfAsGroup_Get.g.cs","v1.0","Get-MgUserMemberOfAsGroup","GET","","cast","" +"Users","GetMgUserMemberOfAsGroup_List.g.cs","v1.0","Get-MgUserMemberOfAsGroup","GET","","cast","" +"Users","GetMgUserMemberOfAsGroup.g.cs","v1.0","Get-MgUserMemberOfAsGroup","","","dispatcher","" +"Users","GetMgUserMemberOfAsGroupCount.g.cs","v1.0","Get-MgUserMemberOfAsGroupCount","GET","","cast","" +"Users","GetMgUserMemberOfCount.g.cs","v1.0","Get-MgUserMemberOfCount","GET","/users/{param}/memberOf/$count","matched","Get-MgUserMemberOfCount" +"Users","GetMgUserOauth2PermissionGrant_Get.g.cs","v1.0","Get-MgUserOauth2PermissionGrant","GET","/users/{param}/oauth2PermissionGrants/{param}","matched","Get-MgUserOauth2PermissionGrant" +"Users","GetMgUserOauth2PermissionGrant_List.g.cs","v1.0","Get-MgUserOauth2PermissionGrant","GET","/users/{param}/oauth2PermissionGrants","matched","Get-MgUserOauth2PermissionGrant" +"Users","GetMgUserOauth2PermissionGrant.g.cs","v1.0","Get-MgUserOauth2PermissionGrant","","","dispatcher","" +"Users","GetMgUserOauth2PermissionGrantCount.g.cs","v1.0","Get-MgUserOauth2PermissionGrantCount","GET","/users/{param}/oauth2PermissionGrants/$count","matched","Get-MgUserOauth2PermissionGrantCount" +"Users","GetMgUserOnPremiseSyncBehavior.g.cs","v1.0","Get-MgUserOnPremiseSyncBehavior","GET","/users/{param}/onPremisesSyncBehavior","matched","Get-MgUserOnPremiseSyncBehavior" +"Users","GetMgUserOutlook.g.cs","v1.0","Get-MgUserOutlook","GET","/users/{param}/outlook","no-oracle","" +"Users","GetMgUserOutlookMasterCategory_Get.g.cs","v1.0","Get-MgUserOutlookMasterCategory","GET","/users/{param}/outlook/masterCategories/{param}","matched","Get-MgUserOutlookMasterCategory" +"Users","GetMgUserOutlookMasterCategory_List.g.cs","v1.0","Get-MgUserOutlookMasterCategory","GET","/users/{param}/outlook/masterCategories","matched","Get-MgUserOutlookMasterCategory" +"Users","GetMgUserOutlookMasterCategory.g.cs","v1.0","Get-MgUserOutlookMasterCategory","","","dispatcher","" +"Users","GetMgUserOutlookMasterCategoryCount.g.cs","v1.0","Get-MgUserOutlookMasterCategoryCount","GET","/users/{param}/outlook/masterCategories/$count","matched","Get-MgUserOutlookMasterCategoryCount" +"Users","GetMgUserOutlookSupportedLanguages.g.cs","v1.0","Get-MgUserOutlookSupportedLanguages","GET","/users/{param}/outlook/supportedLanguages","mismatch","Invoke-MgSupportedUserOutlookLanguage" +"Users","GetMgUserOutlookSupportedTimeZones.g.cs","v1.0","Get-MgUserOutlookSupportedTimeZones","GET","/users/{param}/outlook/supportedTimeZones","mismatch","Invoke-MgTimeUserOutlook" +"Users","GetMgUserOutlookSupportedTimeZonesWithTimeZoneStandard.g.cs","v1.0","Get-MgUserOutlookSupportedTimeZonesWithTimeZoneStandard","","","parameterized-function","" +"Users","GetMgUserOwnedDevice_Get.g.cs","v1.0","Get-MgUserOwnedDevice","GET","/users/{param}/ownedDevices/{param}","matched","Get-MgUserOwnedDevice" +"Users","GetMgUserOwnedDevice_List.g.cs","v1.0","Get-MgUserOwnedDevice","GET","/users/{param}/ownedDevices","matched","Get-MgUserOwnedDevice" +"Users","GetMgUserOwnedDevice.g.cs","v1.0","Get-MgUserOwnedDevice","","","dispatcher","" +"Users","GetMgUserOwnedDeviceAsAppRoleAssignment_Get.g.cs","v1.0","Get-MgUserOwnedDeviceAsAppRoleAssignment","GET","","cast","" +"Users","GetMgUserOwnedDeviceAsAppRoleAssignment_List.g.cs","v1.0","Get-MgUserOwnedDeviceAsAppRoleAssignment","GET","","cast","" +"Users","GetMgUserOwnedDeviceAsAppRoleAssignment.g.cs","v1.0","Get-MgUserOwnedDeviceAsAppRoleAssignment","","","dispatcher","" +"Users","GetMgUserOwnedDeviceAsAppRoleAssignmentCount.g.cs","v1.0","Get-MgUserOwnedDeviceAsAppRoleAssignmentCount","GET","","cast","" +"Users","GetMgUserOwnedDeviceAsDevice_Get.g.cs","v1.0","Get-MgUserOwnedDeviceAsDevice","GET","","cast","" +"Users","GetMgUserOwnedDeviceAsDevice_List.g.cs","v1.0","Get-MgUserOwnedDeviceAsDevice","GET","","cast","" +"Users","GetMgUserOwnedDeviceAsDevice.g.cs","v1.0","Get-MgUserOwnedDeviceAsDevice","","","dispatcher","" +"Users","GetMgUserOwnedDeviceAsDeviceCount.g.cs","v1.0","Get-MgUserOwnedDeviceAsDeviceCount","GET","","cast","" +"Users","GetMgUserOwnedDeviceAsEndpoint_Get.g.cs","v1.0","Get-MgUserOwnedDeviceAsEndpoint","GET","","cast","" +"Users","GetMgUserOwnedDeviceAsEndpoint_List.g.cs","v1.0","Get-MgUserOwnedDeviceAsEndpoint","GET","","cast","" +"Users","GetMgUserOwnedDeviceAsEndpoint.g.cs","v1.0","Get-MgUserOwnedDeviceAsEndpoint","","","dispatcher","" +"Users","GetMgUserOwnedDeviceAsEndpointCount.g.cs","v1.0","Get-MgUserOwnedDeviceAsEndpointCount","GET","","cast","" +"Users","GetMgUserOwnedDeviceCount.g.cs","v1.0","Get-MgUserOwnedDeviceCount","GET","/users/{param}/ownedDevices/$count","matched","Get-MgUserOwnedDeviceCount" +"Users","GetMgUserOwnedObject_Get.g.cs","v1.0","Get-MgUserOwnedObject","GET","/users/{param}/ownedObjects/{param}","matched","Get-MgUserOwnedObject" +"Users","GetMgUserOwnedObject_List.g.cs","v1.0","Get-MgUserOwnedObject","GET","/users/{param}/ownedObjects","matched","Get-MgUserOwnedObject" +"Users","GetMgUserOwnedObject.g.cs","v1.0","Get-MgUserOwnedObject","","","dispatcher","" +"Users","GetMgUserOwnedObjectAsApplication_Get.g.cs","v1.0","Get-MgUserOwnedObjectAsApplication","GET","","cast","" +"Users","GetMgUserOwnedObjectAsApplication_List.g.cs","v1.0","Get-MgUserOwnedObjectAsApplication","GET","","cast","" +"Users","GetMgUserOwnedObjectAsApplication.g.cs","v1.0","Get-MgUserOwnedObjectAsApplication","","","dispatcher","" +"Users","GetMgUserOwnedObjectAsApplicationCount.g.cs","v1.0","Get-MgUserOwnedObjectAsApplicationCount","GET","","cast","" +"Users","GetMgUserOwnedObjectAsGroup_Get.g.cs","v1.0","Get-MgUserOwnedObjectAsGroup","GET","","cast","" +"Users","GetMgUserOwnedObjectAsGroup_List.g.cs","v1.0","Get-MgUserOwnedObjectAsGroup","GET","","cast","" +"Users","GetMgUserOwnedObjectAsGroup.g.cs","v1.0","Get-MgUserOwnedObjectAsGroup","","","dispatcher","" +"Users","GetMgUserOwnedObjectAsGroupCount.g.cs","v1.0","Get-MgUserOwnedObjectAsGroupCount","GET","","cast","" +"Users","GetMgUserOwnedObjectAsServicePrincipal_Get.g.cs","v1.0","Get-MgUserOwnedObjectAsServicePrincipal","GET","","cast","" +"Users","GetMgUserOwnedObjectAsServicePrincipal_List.g.cs","v1.0","Get-MgUserOwnedObjectAsServicePrincipal","GET","","cast","" +"Users","GetMgUserOwnedObjectAsServicePrincipal.g.cs","v1.0","Get-MgUserOwnedObjectAsServicePrincipal","","","dispatcher","" +"Users","GetMgUserOwnedObjectAsServicePrincipalCount.g.cs","v1.0","Get-MgUserOwnedObjectAsServicePrincipalCount","GET","","cast","" +"Users","GetMgUserOwnedObjectCount.g.cs","v1.0","Get-MgUserOwnedObjectCount","GET","/users/{param}/ownedObjects/$count","matched","Get-MgUserOwnedObjectCount" +"Users","GetMgUserPhoto.g.cs","v1.0","Get-MgUserPhoto","GET","/users/{param}/photo","matched","Get-MgUserPhoto" +"Users","GetMgUserPhotoContent.g.cs","v1.0","Get-MgUserPhotoContent","GET","/users/{param}/photo/$value","matched","Get-MgUserPhotoContent" +"Users","GetMgUserRegisteredDevice_Get.g.cs","v1.0","Get-MgUserRegisteredDevice","GET","/users/{param}/registeredDevices/{param}","matched","Get-MgUserRegisteredDevice" +"Users","GetMgUserRegisteredDevice_List.g.cs","v1.0","Get-MgUserRegisteredDevice","GET","/users/{param}/registeredDevices","matched","Get-MgUserRegisteredDevice" +"Users","GetMgUserRegisteredDevice.g.cs","v1.0","Get-MgUserRegisteredDevice","","","dispatcher","" +"Users","GetMgUserRegisteredDeviceAsAppRoleAssignment_Get.g.cs","v1.0","Get-MgUserRegisteredDeviceAsAppRoleAssignment","GET","","cast","" +"Users","GetMgUserRegisteredDeviceAsAppRoleAssignment_List.g.cs","v1.0","Get-MgUserRegisteredDeviceAsAppRoleAssignment","GET","","cast","" +"Users","GetMgUserRegisteredDeviceAsAppRoleAssignment.g.cs","v1.0","Get-MgUserRegisteredDeviceAsAppRoleAssignment","","","dispatcher","" +"Users","GetMgUserRegisteredDeviceAsAppRoleAssignmentCount.g.cs","v1.0","Get-MgUserRegisteredDeviceAsAppRoleAssignmentCount","GET","","cast","" +"Users","GetMgUserRegisteredDeviceAsDevice_Get.g.cs","v1.0","Get-MgUserRegisteredDeviceAsDevice","GET","","cast","" +"Users","GetMgUserRegisteredDeviceAsDevice_List.g.cs","v1.0","Get-MgUserRegisteredDeviceAsDevice","GET","","cast","" +"Users","GetMgUserRegisteredDeviceAsDevice.g.cs","v1.0","Get-MgUserRegisteredDeviceAsDevice","","","dispatcher","" +"Users","GetMgUserRegisteredDeviceAsDeviceCount.g.cs","v1.0","Get-MgUserRegisteredDeviceAsDeviceCount","GET","","cast","" +"Users","GetMgUserRegisteredDeviceAsEndpoint_Get.g.cs","v1.0","Get-MgUserRegisteredDeviceAsEndpoint","GET","","cast","" +"Users","GetMgUserRegisteredDeviceAsEndpoint_List.g.cs","v1.0","Get-MgUserRegisteredDeviceAsEndpoint","GET","","cast","" +"Users","GetMgUserRegisteredDeviceAsEndpoint.g.cs","v1.0","Get-MgUserRegisteredDeviceAsEndpoint","","","dispatcher","" +"Users","GetMgUserRegisteredDeviceAsEndpointCount.g.cs","v1.0","Get-MgUserRegisteredDeviceAsEndpointCount","GET","","cast","" +"Users","GetMgUserRegisteredDeviceCount.g.cs","v1.0","Get-MgUserRegisteredDeviceCount","GET","/users/{param}/registeredDevices/$count","matched","Get-MgUserRegisteredDeviceCount" +"Users","GetMgUserSetting.g.cs","v1.0","Get-MgUserSetting","GET","/users/{param}/settings","matched","Get-MgUserSetting" +"Users","GetMgUserSettingExchange.g.cs","v1.0","Get-MgUserSettingExchange","GET","/users/{param}/settings/exchange","matched","Get-MgUserSettingExchange" +"Users","GetMgUserSettingItemInsight.g.cs","v1.0","Get-MgUserSettingItemInsight","GET","/users/{param}/settings/itemInsights","matched","Get-MgUserSettingItemInsight" +"Users","GetMgUserSettingShiftPreference.g.cs","v1.0","Get-MgUserSettingShiftPreference","GET","/users/{param}/settings/shiftPreferences","matched","Get-MgUserSettingShiftPreference" +"Users","GetMgUserSettingStorage.g.cs","v1.0","Get-MgUserSettingStorage","GET","/users/{param}/settings/storage","matched","Get-MgUserSettingStorage" +"Users","GetMgUserSettingStorageQuota.g.cs","v1.0","Get-MgUserSettingStorageQuota","GET","/users/{param}/settings/storage/quota","matched","Get-MgUserSettingStorageQuota" +"Users","GetMgUserSettingStorageQuotaService_Get.g.cs","v1.0","Get-MgUserSettingStorageQuotaService","GET","/users/{param}/settings/storage/quota/services/{param}","matched","Get-MgUserSettingStorageQuotaService" +"Users","GetMgUserSettingStorageQuotaService_List.g.cs","v1.0","Get-MgUserSettingStorageQuotaService","GET","/users/{param}/settings/storage/quota/services","matched","Get-MgUserSettingStorageQuotaService" +"Users","GetMgUserSettingStorageQuotaService.g.cs","v1.0","Get-MgUserSettingStorageQuotaService","","","dispatcher","" +"Users","GetMgUserSettingStorageQuotaServiceCount.g.cs","v1.0","Get-MgUserSettingStorageQuotaServiceCount","GET","/users/{param}/settings/storage/quota/services/$count","matched","Get-MgUserSettingStorageQuotaServiceCount" +"Users","GetMgUserSettingWindows_Get.g.cs","v1.0","Get-MgUserSettingWindows","GET","/users/{param}/settings/windows/{param}","matched","Get-MgUserSettingWindows" +"Users","GetMgUserSettingWindows_List.g.cs","v1.0","Get-MgUserSettingWindows","GET","/users/{param}/settings/windows","matched","Get-MgUserSettingWindows" +"Users","GetMgUserSettingWindows.g.cs","v1.0","Get-MgUserSettingWindows","","","dispatcher","" +"Users","GetMgUserSettingWindowsCount.g.cs","v1.0","Get-MgUserSettingWindowsCount","GET","/users/{param}/settings/windows/$count","matched","Get-MgUserSettingWindowsCount" +"Users","GetMgUserSettingWindowsInstance_Get.g.cs","v1.0","Get-MgUserSettingWindowsInstance","GET","/users/{param}/settings/windows/{param}/instances/{param}","matched","Get-MgUserSettingWindowsInstance" +"Users","GetMgUserSettingWindowsInstance_List.g.cs","v1.0","Get-MgUserSettingWindowsInstance","GET","/users/{param}/settings/windows/{param}/instances","matched","Get-MgUserSettingWindowsInstance" +"Users","GetMgUserSettingWindowsInstance.g.cs","v1.0","Get-MgUserSettingWindowsInstance","","","dispatcher","" +"Users","GetMgUserSettingWindowsInstanceCount.g.cs","v1.0","Get-MgUserSettingWindowsInstanceCount","GET","/users/{param}/settings/windows/{param}/instances/$count","matched","Get-MgUserSettingWindowsInstanceCount" +"Users","GetMgUserSettingWorkHourAndLocation.g.cs","v1.0","Get-MgUserSettingWorkHourAndLocation","GET","/users/{param}/settings/workHoursAndLocations","matched","Get-MgUserSettingWorkHourAndLocation" +"Users","GetMgUserSettingWorkHourAndLocationOccurrence_Get.g.cs","v1.0","Get-MgUserSettingWorkHourAndLocationOccurrence","GET","/users/{param}/settings/workHoursAndLocations/occurrences/{param}","matched","Get-MgUserSettingWorkHourAndLocationOccurrence" +"Users","GetMgUserSettingWorkHourAndLocationOccurrence_List.g.cs","v1.0","Get-MgUserSettingWorkHourAndLocationOccurrence","GET","/users/{param}/settings/workHoursAndLocations/occurrences","matched","Get-MgUserSettingWorkHourAndLocationOccurrence" +"Users","GetMgUserSettingWorkHourAndLocationOccurrence.g.cs","v1.0","Get-MgUserSettingWorkHourAndLocationOccurrence","","","dispatcher","" +"Users","GetMgUserSettingWorkHourAndLocationOccurrenceCount.g.cs","v1.0","Get-MgUserSettingWorkHourAndLocationOccurrenceCount","GET","/users/{param}/settings/workHoursAndLocations/occurrences/$count","matched","Get-MgUserSettingWorkHourAndLocationOccurrenceCount" +"Users","GetMgUserSettingWorkHourAndLocationOccurrencesViewWithStartDateTimeWithEndDateTime.g.cs","v1.0","Get-MgUserSettingWorkHourAndLocationOccurrencesViewWithStartDateTimeWithEndDateTime","","","parameterized-function","" +"Users","GetMgUserSettingWorkHourAndLocationRecurrence_Get.g.cs","v1.0","Get-MgUserSettingWorkHourAndLocationRecurrence","GET","/users/{param}/settings/workHoursAndLocations/recurrences/{param}","matched","Get-MgUserSettingWorkHourAndLocationRecurrence" +"Users","GetMgUserSettingWorkHourAndLocationRecurrence_List.g.cs","v1.0","Get-MgUserSettingWorkHourAndLocationRecurrence","GET","/users/{param}/settings/workHoursAndLocations/recurrences","matched","Get-MgUserSettingWorkHourAndLocationRecurrence" +"Users","GetMgUserSettingWorkHourAndLocationRecurrence.g.cs","v1.0","Get-MgUserSettingWorkHourAndLocationRecurrence","","","dispatcher","" +"Users","GetMgUserSettingWorkHourAndLocationRecurrenceCount.g.cs","v1.0","Get-MgUserSettingWorkHourAndLocationRecurrenceCount","GET","/users/{param}/settings/workHoursAndLocations/recurrences/$count","matched","Get-MgUserSettingWorkHourAndLocationRecurrenceCount" +"Users","GetMgUserSponsor.g.cs","v1.0","Get-MgUserSponsor","GET","/users/{param}/sponsors","matched","Get-MgUserSponsor" +"Users","GetMgUserSponsorByRef.g.cs","v1.0","Get-MgUserSponsorByRef","GET","/users/{param}/sponsors/$ref","matched","Get-MgUserSponsorByRef" +"Users","GetMgUserSponsorCount.g.cs","v1.0","Get-MgUserSponsorCount","GET","/users/{param}/sponsors/$count","matched","Get-MgUserSponsorCount" +"Users","GetMgUserTodo.g.cs","v1.0","Get-MgUserTodo","GET","/users/{param}/todo","no-oracle","" +"Users","GetMgUserTodoList_Get.g.cs","v1.0","Get-MgUserTodoList","GET","/users/{param}/todo/lists/{param}","matched","Get-MgUserTodoList" +"Users","GetMgUserTodoList_List.g.cs","v1.0","Get-MgUserTodoList","GET","/users/{param}/todo/lists","matched","Get-MgUserTodoList" +"Users","GetMgUserTodoList.g.cs","v1.0","Get-MgUserTodoList","","","dispatcher","" +"Users","GetMgUserTodoListCount.g.cs","v1.0","Get-MgUserTodoListCount","GET","/users/{param}/todo/lists/$count","matched","Get-MgUserTodoListCount" +"Users","GetMgUserTodoListDelta.g.cs","v1.0","Get-MgUserTodoListDelta","GET","/users/{param}/todo/lists/delta","matched","Get-MgUserTodoListDelta" +"Users","GetMgUserTodoListExtension_Get.g.cs","v1.0","Get-MgUserTodoListExtension","GET","/users/{param}/todo/lists/{param}/extensions/{param}","matched","Get-MgUserTodoListExtension" +"Users","GetMgUserTodoListExtension_List.g.cs","v1.0","Get-MgUserTodoListExtension","GET","/users/{param}/todo/lists/{param}/extensions","matched","Get-MgUserTodoListExtension" +"Users","GetMgUserTodoListExtension.g.cs","v1.0","Get-MgUserTodoListExtension","","","dispatcher","" +"Users","GetMgUserTodoListExtensionCount.g.cs","v1.0","Get-MgUserTodoListExtensionCount","GET","/users/{param}/todo/lists/{param}/extensions/$count","matched","Get-MgUserTodoListExtensionCount" +"Users","GetMgUserTodoListTask_Get.g.cs","v1.0","Get-MgUserTodoListTask","GET","/users/{param}/todo/lists/{param}/tasks/{param}","mismatch","Get-MgUserTodoTask" +"Users","GetMgUserTodoListTask_List.g.cs","v1.0","Get-MgUserTodoListTask","GET","/users/{param}/todo/lists/{param}/tasks","mismatch","Get-MgUserTodoTask" +"Users","GetMgUserTodoListTask.g.cs","v1.0","Get-MgUserTodoListTask","","","dispatcher","" +"Users","GetMgUserTodoListTaskAttachment_Get.g.cs","v1.0","Get-MgUserTodoListTaskAttachment","GET","/users/{param}/todo/lists/{param}/tasks/{param}/attachments/{param}","mismatch","Get-MgUserTodoTaskAttachment" +"Users","GetMgUserTodoListTaskAttachment_List.g.cs","v1.0","Get-MgUserTodoListTaskAttachment","GET","/users/{param}/todo/lists/{param}/tasks/{param}/attachments","mismatch","Get-MgUserTodoTaskAttachment" +"Users","GetMgUserTodoListTaskAttachment.g.cs","v1.0","Get-MgUserTodoListTaskAttachment","","","dispatcher","" +"Users","GetMgUserTodoListTaskAttachmentContent.g.cs","v1.0","Get-MgUserTodoListTaskAttachmentContent","GET","/users/{param}/todo/lists/{param}/tasks/{param}/attachments/{param}/$value","mismatch","Get-MgUserTodoTaskAttachmentContent" +"Users","GetMgUserTodoListTaskAttachmentCount.g.cs","v1.0","Get-MgUserTodoListTaskAttachmentCount","GET","/users/{param}/todo/lists/{param}/tasks/{param}/attachments/$count","mismatch","Get-MgUserTodoTaskAttachmentCount" +"Users","GetMgUserTodoListTaskAttachmentSession_Get.g.cs","v1.0","Get-MgUserTodoListTaskAttachmentSession","GET","/users/{param}/todo/lists/{param}/tasks/{param}/attachmentSessions/{param}","mismatch","Get-MgUserTodoTaskAttachmentSession" +"Users","GetMgUserTodoListTaskAttachmentSession_List.g.cs","v1.0","Get-MgUserTodoListTaskAttachmentSession","GET","/users/{param}/todo/lists/{param}/tasks/{param}/attachmentSessions","mismatch","Get-MgUserTodoTaskAttachmentSession" +"Users","GetMgUserTodoListTaskAttachmentSession.g.cs","v1.0","Get-MgUserTodoListTaskAttachmentSession","","","dispatcher","" +"Users","GetMgUserTodoListTaskAttachmentSessionCount.g.cs","v1.0","Get-MgUserTodoListTaskAttachmentSessionCount","GET","/users/{param}/todo/lists/{param}/tasks/{param}/attachmentSessions/$count","mismatch","Get-MgUserTodoTaskAttachmentSessionCount" +"Users","GetMgUserTodoListTaskChecklistItem_Get.g.cs","v1.0","Get-MgUserTodoListTaskChecklistItem","GET","/users/{param}/todo/lists/{param}/tasks/{param}/checklistItems/{param}","mismatch","Get-MgUserTodoTaskChecklistItem" +"Users","GetMgUserTodoListTaskChecklistItem_List.g.cs","v1.0","Get-MgUserTodoListTaskChecklistItem","GET","/users/{param}/todo/lists/{param}/tasks/{param}/checklistItems","mismatch","Get-MgUserTodoTaskChecklistItem" +"Users","GetMgUserTodoListTaskChecklistItem.g.cs","v1.0","Get-MgUserTodoListTaskChecklistItem","","","dispatcher","" +"Users","GetMgUserTodoListTaskChecklistItemCount.g.cs","v1.0","Get-MgUserTodoListTaskChecklistItemCount","GET","/users/{param}/todo/lists/{param}/tasks/{param}/checklistItems/$count","mismatch","Get-MgUserTodoTaskChecklistItemCount" +"Users","GetMgUserTodoListTaskCount.g.cs","v1.0","Get-MgUserTodoListTaskCount","GET","/users/{param}/todo/lists/{param}/tasks/$count","mismatch","Get-MgUserTodoTaskCount" +"Users","GetMgUserTodoListTaskDelta.g.cs","v1.0","Get-MgUserTodoListTaskDelta","GET","/users/{param}/todo/lists/{param}/tasks/delta","mismatch","Get-MgUserTodoTaskDelta" +"Users","GetMgUserTodoListTaskExtension_Get.g.cs","v1.0","Get-MgUserTodoListTaskExtension","GET","/users/{param}/todo/lists/{param}/tasks/{param}/extensions/{param}","mismatch","Get-MgUserTodoTaskExtension" +"Users","GetMgUserTodoListTaskExtension_List.g.cs","v1.0","Get-MgUserTodoListTaskExtension","GET","/users/{param}/todo/lists/{param}/tasks/{param}/extensions","mismatch","Get-MgUserTodoTaskExtension" +"Users","GetMgUserTodoListTaskExtension.g.cs","v1.0","Get-MgUserTodoListTaskExtension","","","dispatcher","" +"Users","GetMgUserTodoListTaskExtensionCount.g.cs","v1.0","Get-MgUserTodoListTaskExtensionCount","GET","/users/{param}/todo/lists/{param}/tasks/{param}/extensions/$count","mismatch","Get-MgUserTodoTaskExtensionCount" +"Users","GetMgUserTodoListTaskLinkedResource_Get.g.cs","v1.0","Get-MgUserTodoListTaskLinkedResource","GET","/users/{param}/todo/lists/{param}/tasks/{param}/linkedResources/{param}","mismatch","Get-MgUserTodoTaskLinkedResource" +"Users","GetMgUserTodoListTaskLinkedResource_List.g.cs","v1.0","Get-MgUserTodoListTaskLinkedResource","GET","/users/{param}/todo/lists/{param}/tasks/{param}/linkedResources","mismatch","Get-MgUserTodoTaskLinkedResource" +"Users","GetMgUserTodoListTaskLinkedResource.g.cs","v1.0","Get-MgUserTodoListTaskLinkedResource","","","dispatcher","" +"Users","GetMgUserTodoListTaskLinkedResourceCount.g.cs","v1.0","Get-MgUserTodoListTaskLinkedResourceCount","GET","/users/{param}/todo/lists/{param}/tasks/{param}/linkedResources/$count","mismatch","Get-MgUserTodoTaskLinkedResourceCount" +"Users","GetMgUserTransitiveMemberOf_Get.g.cs","v1.0","Get-MgUserTransitiveMemberOf","GET","/users/{param}/transitiveMemberOf/{param}","matched","Get-MgUserTransitiveMemberOf" +"Users","GetMgUserTransitiveMemberOf_List.g.cs","v1.0","Get-MgUserTransitiveMemberOf","GET","/users/{param}/transitiveMemberOf","matched","Get-MgUserTransitiveMemberOf" +"Users","GetMgUserTransitiveMemberOf.g.cs","v1.0","Get-MgUserTransitiveMemberOf","","","dispatcher","" +"Users","GetMgUserTransitiveMemberOfAsAdministrativeUnit_Get.g.cs","v1.0","Get-MgUserTransitiveMemberOfAsAdministrativeUnit","GET","","cast","" +"Users","GetMgUserTransitiveMemberOfAsAdministrativeUnit_List.g.cs","v1.0","Get-MgUserTransitiveMemberOfAsAdministrativeUnit","GET","","cast","" +"Users","GetMgUserTransitiveMemberOfAsAdministrativeUnit.g.cs","v1.0","Get-MgUserTransitiveMemberOfAsAdministrativeUnit","","","dispatcher","" +"Users","GetMgUserTransitiveMemberOfAsAdministrativeUnitCount.g.cs","v1.0","Get-MgUserTransitiveMemberOfAsAdministrativeUnitCount","GET","","cast","" +"Users","GetMgUserTransitiveMemberOfAsDirectoryRole_Get.g.cs","v1.0","Get-MgUserTransitiveMemberOfAsDirectoryRole","GET","","cast","" +"Users","GetMgUserTransitiveMemberOfAsDirectoryRole_List.g.cs","v1.0","Get-MgUserTransitiveMemberOfAsDirectoryRole","GET","","cast","" +"Users","GetMgUserTransitiveMemberOfAsDirectoryRole.g.cs","v1.0","Get-MgUserTransitiveMemberOfAsDirectoryRole","","","dispatcher","" +"Users","GetMgUserTransitiveMemberOfAsDirectoryRoleCount.g.cs","v1.0","Get-MgUserTransitiveMemberOfAsDirectoryRoleCount","GET","","cast","" +"Users","GetMgUserTransitiveMemberOfAsGroup_Get.g.cs","v1.0","Get-MgUserTransitiveMemberOfAsGroup","GET","","cast","" +"Users","GetMgUserTransitiveMemberOfAsGroup_List.g.cs","v1.0","Get-MgUserTransitiveMemberOfAsGroup","GET","","cast","" +"Users","GetMgUserTransitiveMemberOfAsGroup.g.cs","v1.0","Get-MgUserTransitiveMemberOfAsGroup","","","dispatcher","" +"Users","GetMgUserTransitiveMemberOfAsGroupCount.g.cs","v1.0","Get-MgUserTransitiveMemberOfAsGroupCount","GET","","cast","" +"Users","GetMgUserTransitiveMemberOfCount.g.cs","v1.0","Get-MgUserTransitiveMemberOfCount","GET","/users/{param}/transitiveMemberOf/$count","matched","Get-MgUserTransitiveMemberOfCount" +"Users","InvokeMgUserSettingWorkHourAndLocationOccurrenceSetCurrentLocation.g.cs","v1.0","Invoke-MgUserSettingWorkHourAndLocationOccurrenceSetCurrentLocation","POST","/users/{param}/settings/workHoursAndLocations/occurrences/setCurrentLocation","mismatch","Set-MgUserSettingWorkHourAndLocationOccurrenceCurrentLocation" +"Users","InvokeMgUserTodoListTaskAttachmentCreateUploadSession.g.cs","v1.0","Invoke-MgUserTodoListTaskAttachmentCreateUploadSession","POST","/users/{param}/todo/lists/{param}/tasks/{param}/attachments/createUploadSession","mismatch","New-MgUserTodoListTaskAttachmentUploadSession" +"Users","NewMgUser.g.cs","v1.0","New-MgUser","POST","/users","matched","New-MgUser" +"Users","NewMgUserExtension.g.cs","v1.0","New-MgUserExtension","POST","/users/{param}/extensions","matched","New-MgUserExtension" +"Users","NewMgUserInsightShared.g.cs","v1.0","New-MgUserInsightShared","POST","/users/{param}/insights/shared","matched","New-MgUserInsightShared" +"Users","NewMgUserInsightTrending.g.cs","v1.0","New-MgUserInsightTrending","POST","/users/{param}/insights/trending","matched","New-MgUserInsightTrending" +"Users","NewMgUserInsightUsed.g.cs","v1.0","New-MgUserInsightUsed","POST","/users/{param}/insights/used","matched","New-MgUserInsightUsed" +"Users","NewMgUserLicenseDetail.g.cs","v1.0","New-MgUserLicenseDetail","POST","/users/{param}/licenseDetails","no-oracle","" +"Users","NewMgUserOutlookMasterCategory.g.cs","v1.0","New-MgUserOutlookMasterCategory","POST","/users/{param}/outlook/masterCategories","matched","New-MgUserOutlookMasterCategory" +"Users","NewMgUserSettingStorageQuotaService.g.cs","v1.0","New-MgUserSettingStorageQuotaService","POST","/users/{param}/settings/storage/quota/services","matched","New-MgUserSettingStorageQuotaService" +"Users","NewMgUserSettingWindows.g.cs","v1.0","New-MgUserSettingWindows","POST","/users/{param}/settings/windows","matched","New-MgUserSettingWindows" +"Users","NewMgUserSettingWindowsInstance.g.cs","v1.0","New-MgUserSettingWindowsInstance","POST","/users/{param}/settings/windows/{param}/instances","matched","New-MgUserSettingWindowsInstance" +"Users","NewMgUserSettingWorkHourAndLocationOccurrence.g.cs","v1.0","New-MgUserSettingWorkHourAndLocationOccurrence","POST","/users/{param}/settings/workHoursAndLocations/occurrences","matched","New-MgUserSettingWorkHourAndLocationOccurrence" +"Users","NewMgUserSettingWorkHourAndLocationRecurrence.g.cs","v1.0","New-MgUserSettingWorkHourAndLocationRecurrence","POST","/users/{param}/settings/workHoursAndLocations/recurrences","matched","New-MgUserSettingWorkHourAndLocationRecurrence" +"Users","NewMgUserSponsorByRef.g.cs","v1.0","New-MgUserSponsorByRef","POST","/users/{param}/sponsors/$ref","matched","New-MgUserSponsorByRef" +"Users","NewMgUserTodoList.g.cs","v1.0","New-MgUserTodoList","POST","/users/{param}/todo/lists","matched","New-MgUserTodoList" +"Users","NewMgUserTodoListExtension.g.cs","v1.0","New-MgUserTodoListExtension","POST","/users/{param}/todo/lists/{param}/extensions","matched","New-MgUserTodoListExtension" +"Users","NewMgUserTodoListTask.g.cs","v1.0","New-MgUserTodoListTask","POST","/users/{param}/todo/lists/{param}/tasks","matched","New-MgUserTodoListTask" +"Users","NewMgUserTodoListTaskAttachment.g.cs","v1.0","New-MgUserTodoListTaskAttachment","POST","/users/{param}/todo/lists/{param}/tasks/{param}/attachments","matched","New-MgUserTodoListTaskAttachment" +"Users","NewMgUserTodoListTaskChecklistItem.g.cs","v1.0","New-MgUserTodoListTaskChecklistItem","POST","/users/{param}/todo/lists/{param}/tasks/{param}/checklistItems","matched","New-MgUserTodoListTaskChecklistItem" +"Users","NewMgUserTodoListTaskExtension.g.cs","v1.0","New-MgUserTodoListTaskExtension","POST","/users/{param}/todo/lists/{param}/tasks/{param}/extensions","matched","New-MgUserTodoListTaskExtension" +"Users","NewMgUserTodoListTaskLinkedResource.g.cs","v1.0","New-MgUserTodoListTaskLinkedResource","POST","/users/{param}/todo/lists/{param}/tasks/{param}/linkedResources","matched","New-MgUserTodoListTaskLinkedResource" +"Users","RemoveMgUser.g.cs","v1.0","Remove-MgUser","DELETE","/users/{param}","matched","Remove-MgUser" +"Users","RemoveMgUserExtension.g.cs","v1.0","Remove-MgUserExtension","DELETE","/users/{param}/extensions/{param}","matched","Remove-MgUserExtension" +"Users","RemoveMgUserInsight.g.cs","v1.0","Remove-MgUserInsight","DELETE","/users/{param}/insights","matched","Remove-MgUserInsight" +"Users","RemoveMgUserInsightShared.g.cs","v1.0","Remove-MgUserInsightShared","DELETE","/users/{param}/insights/shared/{param}","matched","Remove-MgUserInsightShared" +"Users","RemoveMgUserInsightTrending.g.cs","v1.0","Remove-MgUserInsightTrending","DELETE","/users/{param}/insights/trending/{param}","matched","Remove-MgUserInsightTrending" +"Users","RemoveMgUserInsightUsed.g.cs","v1.0","Remove-MgUserInsightUsed","DELETE","/users/{param}/insights/used/{param}","matched","Remove-MgUserInsightUsed" +"Users","RemoveMgUserLicenseDetail.g.cs","v1.0","Remove-MgUserLicenseDetail","DELETE","/users/{param}/licenseDetails/{param}","matched","Remove-MgUserLicenseDetail" +"Users","RemoveMgUserManagerByRef.g.cs","v1.0","Remove-MgUserManagerByRef","DELETE","/users/{param}/manager/$ref","matched","Remove-MgUserManagerByRef" +"Users","RemoveMgUserOnPremiseSyncBehavior.g.cs","v1.0","Remove-MgUserOnPremiseSyncBehavior","DELETE","/users/{param}/onPremisesSyncBehavior","matched","Remove-MgUserOnPremiseSyncBehavior" +"Users","RemoveMgUserOutlookMasterCategory.g.cs","v1.0","Remove-MgUserOutlookMasterCategory","DELETE","/users/{param}/outlook/masterCategories/{param}","matched","Remove-MgUserOutlookMasterCategory" +"Users","RemoveMgUserPhoto.g.cs","v1.0","Remove-MgUserPhoto","DELETE","/users/{param}/photo","matched","Remove-MgUserPhoto" +"Users","RemoveMgUserPhotoContent.g.cs","v1.0","Remove-MgUserPhotoContent","DELETE","/users/{param}/photo/$value","matched","Remove-MgUserPhotoContent" +"Users","RemoveMgUserSetting.g.cs","v1.0","Remove-MgUserSetting","DELETE","/users/{param}/settings","matched","Remove-MgUserSetting" +"Users","RemoveMgUserSettingItemInsight.g.cs","v1.0","Remove-MgUserSettingItemInsight","DELETE","/users/{param}/settings/itemInsights","matched","Remove-MgUserSettingItemInsight" +"Users","RemoveMgUserSettingShiftPreference.g.cs","v1.0","Remove-MgUserSettingShiftPreference","DELETE","/users/{param}/settings/shiftPreferences","matched","Remove-MgUserSettingShiftPreference" +"Users","RemoveMgUserSettingStorage.g.cs","v1.0","Remove-MgUserSettingStorage","DELETE","/users/{param}/settings/storage","matched","Remove-MgUserSettingStorage" +"Users","RemoveMgUserSettingStorageQuota.g.cs","v1.0","Remove-MgUserSettingStorageQuota","DELETE","/users/{param}/settings/storage/quota","matched","Remove-MgUserSettingStorageQuota" +"Users","RemoveMgUserSettingStorageQuotaService.g.cs","v1.0","Remove-MgUserSettingStorageQuotaService","DELETE","/users/{param}/settings/storage/quota/services/{param}","matched","Remove-MgUserSettingStorageQuotaService" +"Users","RemoveMgUserSettingWindows.g.cs","v1.0","Remove-MgUserSettingWindows","DELETE","/users/{param}/settings/windows/{param}","matched","Remove-MgUserSettingWindows" +"Users","RemoveMgUserSettingWindowsInstance.g.cs","v1.0","Remove-MgUserSettingWindowsInstance","DELETE","/users/{param}/settings/windows/{param}/instances/{param}","matched","Remove-MgUserSettingWindowsInstance" +"Users","RemoveMgUserSettingWorkHourAndLocationOccurrence.g.cs","v1.0","Remove-MgUserSettingWorkHourAndLocationOccurrence","DELETE","/users/{param}/settings/workHoursAndLocations/occurrences/{param}","matched","Remove-MgUserSettingWorkHourAndLocationOccurrence" +"Users","RemoveMgUserSettingWorkHourAndLocationRecurrence.g.cs","v1.0","Remove-MgUserSettingWorkHourAndLocationRecurrence","DELETE","/users/{param}/settings/workHoursAndLocations/recurrences/{param}","matched","Remove-MgUserSettingWorkHourAndLocationRecurrence" +"Users","RemoveMgUserSponsorByRef.g.cs","v1.0","Remove-MgUserSponsorByRef","DELETE","/users/{param}/sponsors/{param}/$ref","mismatch","Remove-MgUserSponsorDirectoryObjectByRef" +"Users","RemoveMgUserTodo.g.cs","v1.0","Remove-MgUserTodo","DELETE","/users/{param}/todo","no-oracle","" +"Users","RemoveMgUserTodoList.g.cs","v1.0","Remove-MgUserTodoList","DELETE","/users/{param}/todo/lists/{param}","matched","Remove-MgUserTodoList" +"Users","RemoveMgUserTodoListExtension.g.cs","v1.0","Remove-MgUserTodoListExtension","DELETE","/users/{param}/todo/lists/{param}/extensions/{param}","matched","Remove-MgUserTodoListExtension" +"Users","RemoveMgUserTodoListTask.g.cs","v1.0","Remove-MgUserTodoListTask","DELETE","/users/{param}/todo/lists/{param}/tasks/{param}","matched","Remove-MgUserTodoListTask" +"Users","RemoveMgUserTodoListTaskAttachment.g.cs","v1.0","Remove-MgUserTodoListTaskAttachment","DELETE","/users/{param}/todo/lists/{param}/tasks/{param}/attachments/{param}","matched","Remove-MgUserTodoListTaskAttachment" +"Users","RemoveMgUserTodoListTaskAttachmentContent.g.cs","v1.0","Remove-MgUserTodoListTaskAttachmentContent","DELETE","/users/{param}/todo/lists/{param}/tasks/{param}/attachments/{param}/$value","matched","Remove-MgUserTodoListTaskAttachmentContent" +"Users","RemoveMgUserTodoListTaskAttachmentSession.g.cs","v1.0","Remove-MgUserTodoListTaskAttachmentSession","DELETE","/users/{param}/todo/lists/{param}/tasks/{param}/attachmentSessions/{param}","matched","Remove-MgUserTodoListTaskAttachmentSession" +"Users","RemoveMgUserTodoListTaskAttachmentSessionContent.g.cs","v1.0","Remove-MgUserTodoListTaskAttachmentSessionContent","DELETE","/users/{param}/todo/lists/{param}/tasks/{param}/attachmentSessions/{param}/$value","matched","Remove-MgUserTodoListTaskAttachmentSessionContent" +"Users","RemoveMgUserTodoListTaskChecklistItem.g.cs","v1.0","Remove-MgUserTodoListTaskChecklistItem","DELETE","/users/{param}/todo/lists/{param}/tasks/{param}/checklistItems/{param}","matched","Remove-MgUserTodoListTaskChecklistItem" +"Users","RemoveMgUserTodoListTaskExtension.g.cs","v1.0","Remove-MgUserTodoListTaskExtension","DELETE","/users/{param}/todo/lists/{param}/tasks/{param}/extensions/{param}","matched","Remove-MgUserTodoListTaskExtension" +"Users","RemoveMgUserTodoListTaskLinkedResource.g.cs","v1.0","Remove-MgUserTodoListTaskLinkedResource","DELETE","/users/{param}/todo/lists/{param}/tasks/{param}/linkedResources/{param}","matched","Remove-MgUserTodoListTaskLinkedResource" +"Users","SetMgUserManagerByRef.g.cs","v1.0","Set-MgUserManagerByRef","PUT","/users/{param}/manager/$ref","matched","Set-MgUserManagerByRef" +"Users","SetMgUserSettingWorkHourAndLocationOccurrence.g.cs","v1.0","Set-MgUserSettingWorkHourAndLocationOccurrence","PUT","/users/{param}/settings/workHoursAndLocations/occurrences/{param}","matched","Set-MgUserSettingWorkHourAndLocationOccurrence" +"Users","SetMgUserSettingWorkHourAndLocationRecurrence.g.cs","v1.0","Set-MgUserSettingWorkHourAndLocationRecurrence","PUT","/users/{param}/settings/workHoursAndLocations/recurrences/{param}","matched","Set-MgUserSettingWorkHourAndLocationRecurrence" +"Users","SetMgUserTodoListTaskAttachmentSessionContent.g.cs","v1.0","Set-MgUserTodoListTaskAttachmentSessionContent","PUT","/users/{param}/todo/lists/{param}/tasks/{param}/attachmentSessions/{param}/$value","matched","Set-MgUserTodoListTaskAttachmentSessionContent" +"Users","UpdateMgUser.g.cs","v1.0","Update-MgUser","PATCH","/users/{param}","matched","Update-MgUser" +"Users","UpdateMgUserExtension.g.cs","v1.0","Update-MgUserExtension","PATCH","/users/{param}/extensions/{param}","matched","Update-MgUserExtension" +"Users","UpdateMgUserInsight.g.cs","v1.0","Update-MgUserInsight","PATCH","/users/{param}/insights","matched","Update-MgUserInsight" +"Users","UpdateMgUserInsightShared.g.cs","v1.0","Update-MgUserInsightShared","PATCH","/users/{param}/insights/shared/{param}","matched","Update-MgUserInsightShared" +"Users","UpdateMgUserInsightTrending.g.cs","v1.0","Update-MgUserInsightTrending","PATCH","/users/{param}/insights/trending/{param}","matched","Update-MgUserInsightTrending" +"Users","UpdateMgUserInsightUsed.g.cs","v1.0","Update-MgUserInsightUsed","PATCH","/users/{param}/insights/used/{param}","matched","Update-MgUserInsightUsed" +"Users","UpdateMgUserLicenseDetail.g.cs","v1.0","Update-MgUserLicenseDetail","PATCH","/users/{param}/licenseDetails/{param}","matched","Update-MgUserLicenseDetail" +"Users","UpdateMgUserMailboxSetting.g.cs","v1.0","Update-MgUserMailboxSetting","PATCH","/users/{param}/mailboxSettings","matched","Update-MgUserMailboxSetting" +"Users","UpdateMgUserOnPremiseSyncBehavior.g.cs","v1.0","Update-MgUserOnPremiseSyncBehavior","PATCH","/users/{param}/onPremisesSyncBehavior","matched","Update-MgUserOnPremiseSyncBehavior" +"Users","UpdateMgUserOutlookMasterCategory.g.cs","v1.0","Update-MgUserOutlookMasterCategory","PATCH","/users/{param}/outlook/masterCategories/{param}","matched","Update-MgUserOutlookMasterCategory" +"Users","UpdateMgUserPhoto.g.cs","v1.0","Update-MgUserPhoto","PATCH","/users/{param}/photo","no-oracle","" +"Users","UpdateMgUserSetting.g.cs","v1.0","Update-MgUserSetting","PATCH","/users/{param}/settings","matched","Update-MgUserSetting" +"Users","UpdateMgUserSettingItemInsight.g.cs","v1.0","Update-MgUserSettingItemInsight","PATCH","/users/{param}/settings/itemInsights","matched","Update-MgUserSettingItemInsight" +"Users","UpdateMgUserSettingShiftPreference.g.cs","v1.0","Update-MgUserSettingShiftPreference","PATCH","/users/{param}/settings/shiftPreferences","matched","Update-MgUserSettingShiftPreference" +"Users","UpdateMgUserSettingStorage.g.cs","v1.0","Update-MgUserSettingStorage","PATCH","/users/{param}/settings/storage","matched","Update-MgUserSettingStorage" +"Users","UpdateMgUserSettingStorageQuota.g.cs","v1.0","Update-MgUserSettingStorageQuota","PATCH","/users/{param}/settings/storage/quota","matched","Update-MgUserSettingStorageQuota" +"Users","UpdateMgUserSettingStorageQuotaService.g.cs","v1.0","Update-MgUserSettingStorageQuotaService","PATCH","/users/{param}/settings/storage/quota/services/{param}","matched","Update-MgUserSettingStorageQuotaService" +"Users","UpdateMgUserSettingWindows.g.cs","v1.0","Update-MgUserSettingWindows","PATCH","/users/{param}/settings/windows/{param}","matched","Update-MgUserSettingWindows" +"Users","UpdateMgUserSettingWindowsInstance.g.cs","v1.0","Update-MgUserSettingWindowsInstance","PATCH","/users/{param}/settings/windows/{param}/instances/{param}","matched","Update-MgUserSettingWindowsInstance" +"Users","UpdateMgUserSettingWorkHourAndLocation.g.cs","v1.0","Update-MgUserSettingWorkHourAndLocation","PATCH","/users/{param}/settings/workHoursAndLocations","matched","Update-MgUserSettingWorkHourAndLocation" +"Users","UpdateMgUserTodo.g.cs","v1.0","Update-MgUserTodo","PATCH","/users/{param}/todo","no-oracle","" +"Users","UpdateMgUserTodoList.g.cs","v1.0","Update-MgUserTodoList","PATCH","/users/{param}/todo/lists/{param}","matched","Update-MgUserTodoList" +"Users","UpdateMgUserTodoListExtension.g.cs","v1.0","Update-MgUserTodoListExtension","PATCH","/users/{param}/todo/lists/{param}/extensions/{param}","matched","Update-MgUserTodoListExtension" +"Users","UpdateMgUserTodoListTask.g.cs","v1.0","Update-MgUserTodoListTask","PATCH","/users/{param}/todo/lists/{param}/tasks/{param}","matched","Update-MgUserTodoListTask" +"Users","UpdateMgUserTodoListTaskAttachmentSession.g.cs","v1.0","Update-MgUserTodoListTaskAttachmentSession","PATCH","/users/{param}/todo/lists/{param}/tasks/{param}/attachmentSessions/{param}","matched","Update-MgUserTodoListTaskAttachmentSession" +"Users","UpdateMgUserTodoListTaskChecklistItem.g.cs","v1.0","Update-MgUserTodoListTaskChecklistItem","PATCH","/users/{param}/todo/lists/{param}/tasks/{param}/checklistItems/{param}","matched","Update-MgUserTodoListTaskChecklistItem" +"Users","UpdateMgUserTodoListTaskExtension.g.cs","v1.0","Update-MgUserTodoListTaskExtension","PATCH","/users/{param}/todo/lists/{param}/tasks/{param}/extensions/{param}","matched","Update-MgUserTodoListTaskExtension" +"Users","UpdateMgUserTodoListTaskLinkedResource.g.cs","v1.0","Update-MgUserTodoListTaskLinkedResource","PATCH","/users/{param}/todo/lists/{param}/tasks/{param}/linkedResources/{param}","matched","Update-MgUserTodoListTaskLinkedResource" +"Users.Actions","InvokeMgUserAssignLicense.g.cs","v1.0","Invoke-MgUserAssignLicense","POST","/users/{param}/assignLicense","mismatch","Set-MgUserLicense" +"Users.Actions","InvokeMgUserChangePassword.g.cs","v1.0","Invoke-MgUserChangePassword","POST","/users/{param}/changePassword","mismatch","Update-MgUserPassword" +"Users.Actions","InvokeMgUserCheckMemberGroups.g.cs","v1.0","Invoke-MgUserCheckMemberGroups","POST","/users/{param}/checkMemberGroups","mismatch","Confirm-MgUserMemberGroup" +"Users.Actions","InvokeMgUserCheckMemberObjects.g.cs","v1.0","Invoke-MgUserCheckMemberObjects","POST","/users/{param}/checkMemberObjects","mismatch","Confirm-MgUserMemberObject" +"Users.Actions","InvokeMgUserExportPersonalData.g.cs","v1.0","Invoke-MgUserExportPersonalData","POST","/users/{param}/exportPersonalData","mismatch","Export-MgUserPersonalData" +"Users.Actions","InvokeMgUserFindMeetingTimes.g.cs","v1.0","Invoke-MgUserFindMeetingTimes","POST","/users/{param}/findMeetingTimes","mismatch","Find-MgUserMeetingTime" +"Users.Actions","InvokeMgUserGetAvailableExtensionProperties.g.cs","v1.0","Invoke-MgUserGetAvailableExtensionProperties","POST","/users/getAvailableExtensionProperties","no-oracle","" +"Users.Actions","InvokeMgUserGetByIds.g.cs","v1.0","Invoke-MgUserGetByIds","POST","/users/getByIds","mismatch","Get-MgUserById" +"Users.Actions","InvokeMgUserGetMailTips.g.cs","v1.0","Invoke-MgUserGetMailTips","POST","/users/{param}/getMailTips","mismatch","Get-MgUserMailTip" +"Users.Actions","InvokeMgUserGetMemberGroups.g.cs","v1.0","Invoke-MgUserGetMemberGroups","POST","/users/{param}/getMemberGroups","mismatch","Get-MgUserMemberGroup" +"Users.Actions","InvokeMgUserGetMemberObjects.g.cs","v1.0","Invoke-MgUserGetMemberObjects","POST","/users/{param}/getMemberObjects","mismatch","Get-MgUserMemberObject" +"Users.Actions","InvokeMgUserRemoveAllDevicesFromManagement.g.cs","v1.0","Invoke-MgUserRemoveAllDevicesFromManagement","POST","/users/{param}/removeAllDevicesFromManagement","mismatch","Remove-MgAllUserDeviceFromManagement" +"Users.Actions","InvokeMgUserReprocessLicenseAssignment.g.cs","v1.0","Invoke-MgUserReprocessLicenseAssignment","POST","/users/{param}/reprocessLicenseAssignment","mismatch","Invoke-MgLicenseUser" +"Users.Actions","InvokeMgUserRestore.g.cs","v1.0","Invoke-MgUserRestore","POST","/users/{param}/restore","no-oracle","" +"Users.Actions","InvokeMgUserRetryServiceProvisioning.g.cs","v1.0","Invoke-MgUserRetryServiceProvisioning","POST","/users/{param}/retryServiceProvisioning","mismatch","Invoke-MgRetryUserServiceProvisioning" +"Users.Actions","InvokeMgUserRevokeSignInSessions.g.cs","v1.0","Invoke-MgUserRevokeSignInSessions","POST","/users/{param}/revokeSignInSessions","mismatch","Revoke-MgUserSignInSession" +"Users.Actions","InvokeMgUserSendMail.g.cs","v1.0","Invoke-MgUserSendMail","POST","/users/{param}/sendMail","mismatch","Send-MgUserMail" +"Users.Actions","InvokeMgUserTranslateExchangeIds.g.cs","v1.0","Invoke-MgUserTranslateExchangeIds","POST","/users/{param}/translateExchangeIds","mismatch","Invoke-MgTranslateUserExchangeId" +"Users.Actions","InvokeMgUserValidateProperties.g.cs","v1.0","Invoke-MgUserValidateProperties","POST","/users/validateProperties","mismatch","Test-MgUserProperty" +"Users.Actions","InvokeMgUserWipeManagedAppRegistrationsByDeviceTag.g.cs","v1.0","Invoke-MgUserWipeManagedAppRegistrationsByDeviceTag","POST","/users/{param}/wipeManagedAppRegistrationsByDeviceTag","no-oracle","" +"Users.Functions","GetMgUserDelta.g.cs","v1.0","Get-MgUserDelta","GET","/users/delta","matched","Get-MgUserDelta" +"Users.Functions","GetMgUserExportDeviceAndAppManagementData.g.cs","v1.0","Get-MgUserExportDeviceAndAppManagementData","GET","/users/{param}/exportDeviceAndAppManagementData","mismatch","Export-MgUserDeviceAndAppManagementData" +"Users.Functions","GetMgUserExportDeviceAndAppManagementDataWithSkipWithTop.g.cs","v1.0","Get-MgUserExportDeviceAndAppManagementDataWithSkipWithTop","","","parameterized-function","" +"Users.Functions","GetMgUserGetManagedAppDiagnosticStatuses.g.cs","v1.0","Get-MgUserGetManagedAppDiagnosticStatuses","GET","/users/{param}/getManagedAppDiagnosticStatuses","mismatch","Get-MgUserManagedAppDiagnosticStatus" +"Users.Functions","GetMgUserGetManagedAppPolicies.g.cs","v1.0","Get-MgUserGetManagedAppPolicies","GET","/users/{param}/getManagedAppPolicies","mismatch","Get-MgUserManagedAppPolicy" +"Users.Functions","GetMgUserGetManagedDevicesWithAppFailures.g.cs","v1.0","Get-MgUserGetManagedDevicesWithAppFailures","GET","/users/{param}/getManagedDevicesWithAppFailures","mismatch","Get-MgUserManagedDeviceWithAppFailure" +"Users.Functions","GetMgUserReminderViewWithStartDateTimeWithEndDateTime.g.cs","v1.0","Get-MgUserReminderViewWithStartDateTimeWithEndDateTime","","","parameterized-function","" diff --git a/tools/WrapperGenerator/data/parity-renames.v1.0.json b/tools/WrapperGenerator/data/parity-renames.v1.0.json new file mode 100644 index 00000000000..f4c29fd47c5 --- /dev/null +++ b/tools/WrapperGenerator/data/parity-renames.v1.0.json @@ -0,0 +1,19688 @@ +[ + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/applications/{}/appmanagementpolicies/{}/$ref", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgApplicationAppManagementPolicyByRef", + "oracle": "Remove-MgApplicationAppManagementPolicyAppManagementPolicyByRef" + }, + "replacementNoun": "ApplicationAppManagementPolicyAppManagementPolicyByRef" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/applications/{}/owners/{}/$ref", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgApplicationOwnerByRef", + "oracle": "Remove-MgApplicationOwnerDirectoryObjectByRef" + }, + "replacementNoun": "ApplicationOwnerDirectoryObjectByRef" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/applications/{}/tokenissuancepolicies/{}/$ref", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgApplicationTokenIssuancePolicyByRef", + "oracle": "Remove-MgApplicationTokenIssuancePolicyTokenIssuancePolicyByRef" + }, + "replacementNoun": "ApplicationTokenIssuancePolicyTokenIssuancePolicyByRef" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/applications/{}/tokenlifetimepolicies/{}/$ref", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgApplicationTokenLifetimePolicyByRef", + "oracle": "Remove-MgApplicationTokenLifetimePolicyTokenLifetimePolicyByRef" + }, + "replacementNoun": "ApplicationTokenLifetimePolicyTokenLifetimePolicyByRef" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/deviceappmanagement/iosmanagedappprotections/{}", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgDeviceAppManagementIosManagedAppProtection", + "oracle": "Remove-MgDeviceAppManagementiOSManagedAppProtection" + }, + "replacementNoun": "DeviceAppManagementiOSManagedAppProtection" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/deviceappmanagement/iosmanagedappprotections/{}/apps/{}", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgDeviceAppManagementIosManagedAppProtectionApp", + "oracle": "Remove-MgDeviceAppManagementiOSManagedAppProtectionApp" + }, + "replacementNoun": "DeviceAppManagementiOSManagedAppProtectionApp" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/deviceappmanagement/iosmanagedappprotections/{}/assignments/{}", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgDeviceAppManagementIosManagedAppProtectionAssignment", + "oracle": "Remove-MgDeviceAppManagementiOSManagedAppProtectionAssignment" + }, + "replacementNoun": "DeviceAppManagementiOSManagedAppProtectionAssignment" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/deviceappmanagement/iosmanagedappprotections/{}/deploymentsummary", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgDeviceAppManagementIosManagedAppProtectionDeploymentSummary", + "oracle": "Remove-MgDeviceAppManagementiOSManagedAppProtectionDeploymentSummary" + }, + "replacementNoun": "DeviceAppManagementiOSManagedAppProtectionDeploymentSummary" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/devicemanagement/iosupdatestatuses/{}", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgDeviceManagementIosUpdateStatus", + "oracle": "Remove-MgDeviceManagementIoUpdateStatus" + }, + "replacementNoun": "DeviceManagementIoUpdateStatus" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/devices/{}/registeredowners/{}/$ref", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgDeviceRegisteredOwnerByRef", + "oracle": "Remove-MgDeviceRegisteredOwnerDirectoryObjectByRef" + }, + "replacementNoun": "DeviceRegisteredOwnerDirectoryObjectByRef" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/devices/{}/registeredusers/{}/$ref", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgDeviceRegisteredUserByRef", + "oracle": "Remove-MgDeviceRegisteredUserDirectoryObjectByRef" + }, + "replacementNoun": "DeviceRegisteredUserDirectoryObjectByRef" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/directory/administrativeunits/{}/members/{}/$ref", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgDirectoryAdministrativeUnitMemberByRef", + "oracle": "Remove-MgDirectoryAdministrativeUnitMemberDirectoryObjectByRef" + }, + "replacementNoun": "DirectoryAdministrativeUnitMemberDirectoryObjectByRef" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/directoryroles/{}/members/{}/$ref", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgDirectoryRoleMemberByRef", + "oracle": "Remove-MgDirectoryRoleMemberDirectoryObjectByRef" + }, + "replacementNoun": "DirectoryRoleMemberDirectoryObjectByRef" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/education/classes/{}/assignments/{}/categories/{}/$ref", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgEducationClassAssignmentCategoryByRef", + "oracle": "Remove-MgEducationClassAssignmentCategoryEducationCategoryByRef" + }, + "replacementNoun": "EducationClassAssignmentCategoryEducationCategoryByRef" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/education/classes/{}/members/{}/$ref", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgEducationClassMemberByRef", + "oracle": "Remove-MgEducationClassMemberEducationUserByRef" + }, + "replacementNoun": "EducationClassMemberEducationUserByRef" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/education/classes/{}/teachers/{}/$ref", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgEducationClassTeacherByRef", + "oracle": "Remove-MgEducationClassTeacherEducationUserByRef" + }, + "replacementNoun": "EducationClassTeacherEducationUserByRef" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/education/me/assignments/{}/categories/{}/$ref", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgEducationMeAssignmentCategoryByRef", + "oracle": "Remove-MgEducationMeAssignmentCategoryEducationCategoryByRef" + }, + "replacementNoun": "EducationMeAssignmentCategoryEducationCategoryByRef" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/education/reports/reflectcheckinresponses/{}", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgEducationReportReflectCheckInResponse", + "oracle": "Remove-MgEducationReportReflectCheck" + }, + "replacementNoun": "EducationReportReflectCheck" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/education/schools/{}/classes/{}/$ref", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgEducationSchoolClassByRef", + "oracle": "Remove-MgEducationSchoolClassEducationClassByRef" + }, + "replacementNoun": "EducationSchoolClassEducationClassByRef" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/education/schools/{}/users/{}/$ref", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgEducationSchoolUserByRef", + "oracle": "Remove-MgEducationSchoolUserEducationUserByRef" + }, + "replacementNoun": "EducationSchoolUserEducationUserByRef" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/education/users/{}/assignments/{}/categories/{}/$ref", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgEducationUserAssignmentCategoryByRef", + "oracle": "Remove-MgEducationUserAssignmentCategoryEducationCategoryByRef" + }, + "replacementNoun": "EducationUserAssignmentCategoryEducationCategoryByRef" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/groups/{}/acceptedsenders/{}/$ref", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgGroupAcceptedSenderByRef", + "oracle": "Remove-MgGroupAcceptedSenderDirectoryObjectByRef" + }, + "replacementNoun": "GroupAcceptedSenderDirectoryObjectByRef" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/groups/{}/members/{}/$ref", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgGroupMemberByRef", + "oracle": "Remove-MgGroupMemberDirectoryObjectByRef" + }, + "replacementNoun": "GroupMemberDirectoryObjectByRef" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/groups/{}/owners/{}/$ref", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgGroupOwnerByRef", + "oracle": "Remove-MgGroupOwnerDirectoryObjectByRef" + }, + "replacementNoun": "GroupOwnerDirectoryObjectByRef" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/groups/{}/rejectedsenders/{}/$ref", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgGroupRejectedSenderByRef", + "oracle": "Remove-MgGroupRejectedSenderDirectoryObjectByRef" + }, + "replacementNoun": "GroupRejectedSenderDirectoryObjectByRef" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/groups/{}/team/channels/{}/allmembers/{}", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgGroupTeamChannelAllMember", + "oracle": "Remove-MgGroupTeamChannelMember" + }, + "replacementNoun": "GroupTeamChannelMember" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/groups/{}/team/primarychannel/allmembers/{}", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgGroupTeamPrimaryChannelAllMember", + "oracle": "Remove-MgGroupTeamPrimaryChannelMember" + }, + "replacementNoun": "GroupTeamPrimaryChannelMember" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identity/authenticationeventsflows/{}/conditions/applications/includeapplications/{}", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgIdentityAuthenticationEventFlowConditionApplicationIncludeApplication", + "oracle": "Remove-MgIdentityAuthenticationEventFlowIncludeApplication" + }, + "replacementNoun": "IdentityAuthenticationEventFlowIncludeApplication" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identity/b2xuserflows/{}", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgIdentityB2xUserFlow", + "oracle": "Remove-MgIdentityB2XUserFlow" + }, + "replacementNoun": "IdentityB2XUserFlow" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identity/b2xuserflows/{}/apiconnectorconfiguration/postattributecollection", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgIdentityB2xUserFlowApiConnectorConfigurationPostAttributeCollection", + "oracle": "Remove-MgIdentityB2XUserFlowPostAttributeCollection" + }, + "replacementNoun": "IdentityB2XUserFlowPostAttributeCollection" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identity/b2xuserflows/{}/apiconnectorconfiguration/postattributecollection/$ref", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgIdentityB2xUserFlowApiConnectorConfigurationPostAttributeCollectionByRef", + "oracle": "Remove-MgIdentityB2XUserFlowPostAttributeCollectionByRef" + }, + "replacementNoun": "IdentityB2XUserFlowPostAttributeCollectionByRef" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identity/b2xuserflows/{}/apiconnectorconfiguration/postfederationsignup", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgIdentityB2xUserFlowApiConnectorConfigurationPostFederationSignup", + "oracle": "Remove-MgIdentityB2XUserFlowPostFederationSignup" + }, + "replacementNoun": "IdentityB2XUserFlowPostFederationSignup" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identity/b2xuserflows/{}/apiconnectorconfiguration/postfederationsignup/$ref", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgIdentityB2xUserFlowApiConnectorConfigurationPostFederationSignupByRef", + "oracle": "Remove-MgIdentityB2XUserFlowPostFederationSignupByRef" + }, + "replacementNoun": "IdentityB2XUserFlowPostFederationSignupByRef" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identity/b2xuserflows/{}/languages/{}", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgIdentityB2xUserFlowLanguage", + "oracle": "Remove-MgIdentityB2XUserFlowLanguage" + }, + "replacementNoun": "IdentityB2XUserFlowLanguage" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identity/b2xuserflows/{}/languages/{}/defaultpages/{}", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgIdentityB2xUserFlowLanguageDefaultPage", + "oracle": "Remove-MgIdentityB2XUserFlowLanguageDefaultPage" + }, + "replacementNoun": "IdentityB2XUserFlowLanguageDefaultPage" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identity/b2xuserflows/{}/languages/{}/defaultpages/{}/$value", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgIdentityB2xUserFlowLanguageDefaultPageContent", + "oracle": "Remove-MgIdentityB2XUserFlowLanguageDefaultPageContent" + }, + "replacementNoun": "IdentityB2XUserFlowLanguageDefaultPageContent" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identity/b2xuserflows/{}/languages/{}/overridespages/{}", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgIdentityB2xUserFlowLanguageOverridePage", + "oracle": "Remove-MgIdentityB2XUserFlowLanguageOverridePage" + }, + "replacementNoun": "IdentityB2XUserFlowLanguageOverridePage" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identity/b2xuserflows/{}/languages/{}/overridespages/{}/$value", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgIdentityB2xUserFlowLanguageOverridePageContent", + "oracle": "Remove-MgIdentityB2XUserFlowLanguageOverridePageContent" + }, + "replacementNoun": "IdentityB2XUserFlowLanguageOverridePageContent" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identity/b2xuserflows/{}/userattributeassignments/{}", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgIdentityB2xUserFlowUserAttributeAssignment", + "oracle": "Remove-MgIdentityB2XUserFlowUserAttributeAssignment" + }, + "replacementNoun": "IdentityB2XUserFlowUserAttributeAssignment" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identity/b2xuserflows/{}/userflowidentityproviders/{}/$ref", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgIdentityB2xUserFlowUserFlowIdentityProviderByRef", + "oracle": "Remove-MgIdentityB2XUserFlowIdentityProviderBaseByRef" + }, + "replacementNoun": "IdentityB2XUserFlowIdentityProviderBaseByRef" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/appconsent/appconsentrequests/{}", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceAppConsentAppConsentRequest", + "oracle": "Remove-MgIdentityGovernanceAppConsentRequest" + }, + "replacementNoun": "IdentityGovernanceAppConsentRequest" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/appconsent/appconsentrequests/{}/userconsentrequests/{}", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequest", + "oracle": "Remove-MgIdentityGovernanceAppConsentRequestUserConsentRequest" + }, + "replacementNoun": "IdentityGovernanceAppConsentRequestUserConsentRequest" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/appconsent/appconsentrequests/{}/userconsentrequests/{}/approval", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequestApproval", + "oracle": "Remove-MgIdentityGovernanceAppConsentRequestUserConsentRequestApproval" + }, + "replacementNoun": "IdentityGovernanceAppConsentRequestUserConsentRequestApproval" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/appconsent/appconsentrequests/{}/userconsentrequests/{}/approval/stages/{}", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequestApprovalStage", + "oracle": "Remove-MgIdentityGovernanceAppConsentRequestUserConsentRequestApprovalStage" + }, + "replacementNoun": "IdentityGovernanceAppConsentRequestUserConsentRequestApprovalStage" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/accesspackageassignmentapprovals/{}", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentApproval", + "oracle": "Remove-MgEntitlementManagementAccessPackageAssignmentApproval" + }, + "replacementNoun": "EntitlementManagementAccessPackageAssignmentApproval" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/accesspackageassignmentapprovals/{}/stages/{}", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentApprovalStage", + "oracle": "Remove-MgEntitlementManagementAccessPackageAssignmentApprovalStage" + }, + "replacementNoun": "EntitlementManagementAccessPackageAssignmentApprovalStage" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceEntitlementManagementAccessPackage", + "oracle": "Remove-MgEntitlementManagementAccessPackage" + }, + "replacementNoun": "EntitlementManagementAccessPackage" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/assignmentpolicies/{}", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicy", + "oracle": "Remove-MgEntitlementManagementAccessPackageAssignmentPolicy" + }, + "replacementNoun": "EntitlementManagementAccessPackageAssignmentPolicy" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/resourcerolescopes/{}", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScope", + "oracle": "Remove-MgEntitlementManagementAccessPackageResourceRoleScope" + }, + "replacementNoun": "EntitlementManagementAccessPackageResourceRoleScope" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/accesspackagesuggestions/{}", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceEntitlementManagementAccessPackageSuggestion", + "oracle": "Remove-MgEntitlementManagementAccessPackageSuggestion" + }, + "replacementNoun": "EntitlementManagementAccessPackageSuggestion" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/assignmentpolicies/{}", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceEntitlementManagementAssignmentPolicy", + "oracle": "Remove-MgEntitlementManagementAssignmentPolicy" + }, + "replacementNoun": "EntitlementManagementAssignmentPolicy" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/assignmentpolicies/{}/customextensionstagesettings/{}", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceEntitlementManagementAssignmentPolicyCustomExtensionStageSetting", + "oracle": "Remove-MgEntitlementManagementAssignmentPolicyCustomExtensionStageSetting" + }, + "replacementNoun": "EntitlementManagementAssignmentPolicyCustomExtensionStageSetting" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/assignmentpolicies/{}/questions/{}", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceEntitlementManagementAssignmentPolicyQuestion", + "oracle": "Remove-MgEntitlementManagementAssignmentPolicyQuestion" + }, + "replacementNoun": "EntitlementManagementAssignmentPolicyQuestion" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/assignmentrequests/{}", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceEntitlementManagementAssignmentRequest", + "oracle": "Remove-MgEntitlementManagementAssignmentRequest" + }, + "replacementNoun": "EntitlementManagementAssignmentRequest" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/assignments/{}", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceEntitlementManagementAssignment", + "oracle": "Remove-MgEntitlementManagementAssignment" + }, + "replacementNoun": "EntitlementManagementAssignment" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/availableaccesspackages/{}", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceEntitlementManagementAvailableAccessPackage", + "oracle": "Remove-MgEntitlementManagementAvailableAccessPackage" + }, + "replacementNoun": "EntitlementManagementAvailableAccessPackage" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceEntitlementManagementCatalog", + "oracle": "Remove-MgEntitlementManagementCatalog" + }, + "replacementNoun": "EntitlementManagementCatalog" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/customworkflowextensions/{}", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceEntitlementManagementCatalogCustomWorkflowExtension", + "oracle": "Remove-MgEntitlementManagementCatalogCustomWorkflowExtension" + }, + "replacementNoun": "EntitlementManagementCatalogCustomWorkflowExtension" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceRole", + "oracle": "Remove-MgEntitlementManagementCatalogResourceRole" + }, + "replacementNoun": "EntitlementManagementCatalogResourceRole" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResource", + "oracle": "Remove-MgEntitlementManagementCatalogResourceRoleResource" + }, + "replacementNoun": "EntitlementManagementCatalogResourceRoleResource" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes/{}", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScope", + "oracle": "Remove-MgEntitlementManagementCatalogResourceRoleResourceScope" + }, + "replacementNoun": "EntitlementManagementCatalogResourceRoleResourceScope" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes/{}/resource", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResource", + "oracle": "Remove-MgEntitlementManagementCatalogResourceRoleResourceScopeResource" + }, + "replacementNoun": "EntitlementManagementCatalogResourceRoleResourceScopeResource" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes/{}/resource/roles/{}", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResourceRole", + "oracle": "Remove-MgEntitlementManagementCatalogResourceRoleResourceScopeResourceRole" + }, + "replacementNoun": "EntitlementManagementCatalogResourceRoleResourceScopeResourceRole" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceEntitlementManagementCatalogResource", + "oracle": "Remove-MgEntitlementManagementCatalogResource" + }, + "replacementNoun": "EntitlementManagementCatalogResource" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResource", + "oracle": "Remove-MgEntitlementManagementCatalogResourceScopeResource" + }, + "replacementNoun": "EntitlementManagementCatalogResourceScopeResource" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles/{}", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRole", + "oracle": "Remove-MgEntitlementManagementCatalogResourceScopeResourceRole" + }, + "replacementNoun": "EntitlementManagementCatalogResourceScopeResourceRole" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles/{}/resource", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResource", + "oracle": "Remove-MgEntitlementManagementCatalogResourceScopeResourceRoleResource" + }, + "replacementNoun": "EntitlementManagementCatalogResourceScopeResourceRoleResource" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/roles/{}/resource/scopes/{}", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResourceScope", + "oracle": "Remove-MgEntitlementManagementCatalogResourceScopeResourceRoleResourceScope" + }, + "replacementNoun": "EntitlementManagementCatalogResourceScopeResourceRoleResourceScope" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/connectedorganizations/{}", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceEntitlementManagementConnectedOrganization", + "oracle": "Remove-MgEntitlementManagementConnectedOrganization" + }, + "replacementNoun": "EntitlementManagementConnectedOrganization" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/connectedorganizations/{}/externalsponsors/{}/$ref", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceEntitlementManagementConnectedOrganizationExternalSponsorByRef", + "oracle": "Remove-MgEntitlementManagementConnectedOrganizationExternalSponsorDirectoryObjectByRef" + }, + "replacementNoun": "EntitlementManagementConnectedOrganizationExternalSponsorDirectoryObjectByRef" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/connectedorganizations/{}/internalsponsors/{}/$ref", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceEntitlementManagementConnectedOrganizationInternalSponsorByRef", + "oracle": "Remove-MgEntitlementManagementConnectedOrganizationInternalSponsorDirectoryObjectByRef" + }, + "replacementNoun": "EntitlementManagementConnectedOrganizationInternalSponsorDirectoryObjectByRef" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/controlconfigurations/{}", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceEntitlementManagementControlConfiguration", + "oracle": "Remove-MgEntitlementManagementControlConfiguration" + }, + "replacementNoun": "EntitlementManagementControlConfiguration" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceEntitlementManagementResourceEnvironment", + "oracle": "Remove-MgEntitlementManagementResourceEnvironment" + }, + "replacementNoun": "EntitlementManagementResourceEnvironment" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/{}", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResource", + "oracle": "Remove-MgEntitlementManagementResourceEnvironmentResource" + }, + "replacementNoun": "EntitlementManagementResourceEnvironmentResource" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/{}/roles/{}", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRole", + "oracle": "Remove-MgEntitlementManagementResourceEnvironmentResourceRole" + }, + "replacementNoun": "EntitlementManagementResourceEnvironmentResourceRole" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/{}/roles/{}/resource", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResource", + "oracle": "Remove-MgEntitlementManagementResourceEnvironmentResourceRoleResource" + }, + "replacementNoun": "EntitlementManagementResourceEnvironmentResourceRoleResource" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/{}/roles/{}/resource/scopes/{}", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResourceScope", + "oracle": "Remove-MgEntitlementManagementResourceEnvironmentResourceRoleResourceScope" + }, + "replacementNoun": "EntitlementManagementResourceEnvironmentResourceRoleResourceScope" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/{}/roles/{}/resource/scopes/{}/resource", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResourceScopeResource", + "oracle": "Remove-MgEntitlementManagementResourceEnvironmentResourceRoleResourceScopeResource" + }, + "replacementNoun": "EntitlementManagementResourceEnvironmentResourceRoleResourceScopeResource" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/{}/scopes/{}", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScope", + "oracle": "Remove-MgEntitlementManagementResourceEnvironmentResourceScope" + }, + "replacementNoun": "EntitlementManagementResourceEnvironmentResourceScope" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/{}/scopes/{}/resource", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResource", + "oracle": "Remove-MgEntitlementManagementResourceEnvironmentResourceScopeResource" + }, + "replacementNoun": "EntitlementManagementResourceEnvironmentResourceScopeResource" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/{}/scopes/{}/resource/roles/{}", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResourceRole", + "oracle": "Remove-MgEntitlementManagementResourceEnvironmentResourceScopeResourceRole" + }, + "replacementNoun": "EntitlementManagementResourceEnvironmentResourceScopeResourceRole" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/{}/scopes/{}/resource/roles/{}/resource", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResourceRoleResource", + "oracle": "Remove-MgEntitlementManagementResourceEnvironmentResourceScopeResourceRoleResource" + }, + "replacementNoun": "EntitlementManagementResourceEnvironmentResourceScopeResourceRoleResource" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceEntitlementManagementResourceRequest", + "oracle": "Remove-MgEntitlementManagementResourceRequest" + }, + "replacementNoun": "EntitlementManagementResourceRequest" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalog", + "oracle": "Remove-MgEntitlementManagementResourceRequestCatalog" + }, + "replacementNoun": "EntitlementManagementResourceRequestCatalog" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/customworkflowextensions/{}", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogCustomWorkflowExtension", + "oracle": "Remove-MgEntitlementManagementResourceRequestCatalogCustomWorkflowExtension" + }, + "replacementNoun": "EntitlementManagementResourceRequestCatalogCustomWorkflowExtension" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRole", + "oracle": "Remove-MgEntitlementManagementResourceRequestCatalogResourceRole" + }, + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceRole" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResource", + "oracle": "Remove-MgEntitlementManagementResourceRequestCatalogResourceRoleResource" + }, + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceRoleResource" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes/{}", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScope", + "oracle": "Remove-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScope" + }, + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceRoleResourceScope" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes/{}/resource", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResource", + "oracle": "Remove-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResource" + }, + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResource" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes/{}/resource/roles/{}", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRole", + "oracle": "Remove-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRole" + }, + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRole" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResource", + "oracle": "Remove-MgEntitlementManagementResourceRequestCatalogResource" + }, + "replacementNoun": "EntitlementManagementResourceRequestCatalogResource" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResource", + "oracle": "Remove-MgEntitlementManagementResourceRequestCatalogResourceScopeResource" + }, + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceScopeResource" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles/{}", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRole", + "oracle": "Remove-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRole" + }, + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceScopeResourceRole" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles/{}/resource", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResource", + "oracle": "Remove-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResource" + }, + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResource" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/roles/{}/resource/scopes/{}", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceScope", + "oracle": "Remove-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceScope" + }, + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceScope" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceEntitlementManagementResourceRequestResource", + "oracle": "Remove-MgEntitlementManagementResourceRequestResource" + }, + "replacementNoun": "EntitlementManagementResourceRequestResource" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource/roles/{}", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRole", + "oracle": "Remove-MgEntitlementManagementResourceRequestResourceRole" + }, + "replacementNoun": "EntitlementManagementResourceRequestResourceRole" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource/roles/{}/resource", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResource", + "oracle": "Remove-MgEntitlementManagementResourceRequestResourceRoleResource" + }, + "replacementNoun": "EntitlementManagementResourceRequestResourceRoleResource" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource/roles/{}/resource/scopes/{}", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResourceScope", + "oracle": "Remove-MgEntitlementManagementResourceRequestResourceRoleResourceScope" + }, + "replacementNoun": "EntitlementManagementResourceRequestResourceRoleResourceScope" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource/roles/{}/resource/scopes/{}/resource", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResourceScopeResource", + "oracle": "Remove-MgEntitlementManagementResourceRequestResourceRoleResourceScopeResource" + }, + "replacementNoun": "EntitlementManagementResourceRequestResourceRoleResourceScopeResource" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource/scopes/{}", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScope", + "oracle": "Remove-MgEntitlementManagementResourceRequestResourceScope" + }, + "replacementNoun": "EntitlementManagementResourceRequestResourceScope" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource/scopes/{}/resource", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResource", + "oracle": "Remove-MgEntitlementManagementResourceRequestResourceScopeResource" + }, + "replacementNoun": "EntitlementManagementResourceRequestResourceScopeResource" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource/scopes/{}/resource/roles/{}", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResourceRole", + "oracle": "Remove-MgEntitlementManagementResourceRequestResourceScopeResourceRole" + }, + "replacementNoun": "EntitlementManagementResourceRequestResourceScopeResourceRole" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource/scopes/{}/resource/roles/{}/resource", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResourceRoleResource", + "oracle": "Remove-MgEntitlementManagementResourceRequestResourceScopeResourceRoleResource" + }, + "replacementNoun": "EntitlementManagementResourceRequestResourceScopeResourceRoleResource" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceEntitlementManagementResourceRoleScope", + "oracle": "Remove-MgEntitlementManagementResourceRoleScope" + }, + "replacementNoun": "EntitlementManagementResourceRoleScope" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/role", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRole", + "oracle": "Remove-MgEntitlementManagementResourceRoleScopeRole" + }, + "replacementNoun": "EntitlementManagementResourceRoleScopeRole" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/role/resource", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResource", + "oracle": "Remove-MgEntitlementManagementResourceRoleScopeRoleResource" + }, + "replacementNoun": "EntitlementManagementResourceRoleScopeRoleResource" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/role/resource/roles/{}", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceRole", + "oracle": "Remove-MgEntitlementManagementResourceRoleScopeRoleResourceRole" + }, + "replacementNoun": "EntitlementManagementResourceRoleScopeRoleResourceRole" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/role/resource/scopes/{}", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScope", + "oracle": "Remove-MgEntitlementManagementResourceRoleScopeRoleResourceScope" + }, + "replacementNoun": "EntitlementManagementResourceRoleScopeRoleResourceScope" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/role/resource/scopes/{}/resource", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScopeResource", + "oracle": "Remove-MgEntitlementManagementResourceRoleScopeRoleResourceScopeResource" + }, + "replacementNoun": "EntitlementManagementResourceRoleScopeRoleResourceScopeResource" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/role/resource/scopes/{}/resource/roles/{}", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScopeResourceRole", + "oracle": "Remove-MgEntitlementManagementResourceRoleScopeRoleResourceScopeResourceRole" + }, + "replacementNoun": "EntitlementManagementResourceRoleScopeRoleResourceScopeResourceRole" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/scope/resource", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResource", + "oracle": "Remove-MgEntitlementManagementResourceRoleScopeResource" + }, + "replacementNoun": "EntitlementManagementResourceRoleScopeResource" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/scope/resource/roles/{}", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRole", + "oracle": "Remove-MgEntitlementManagementResourceRoleScopeResourceRole" + }, + "replacementNoun": "EntitlementManagementResourceRoleScopeResourceRole" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/scope/resource/roles/{}/resource", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRoleResource", + "oracle": "Remove-MgEntitlementManagementResourceRoleScopeResourceRoleResource" + }, + "replacementNoun": "EntitlementManagementResourceRoleScopeResourceRoleResource" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/scope/resource/roles/{}/resource/scopes/{}", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRoleResourceScope", + "oracle": "Remove-MgEntitlementManagementResourceRoleScopeResourceRoleResourceScope" + }, + "replacementNoun": "EntitlementManagementResourceRoleScopeResourceRoleResourceScope" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/scope/resource/scopes/{}", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceScope", + "oracle": "Remove-MgEntitlementManagementResourceRoleScopeResourceScope" + }, + "replacementNoun": "EntitlementManagementResourceRoleScopeResourceScope" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/resources/{}", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceEntitlementManagementResource", + "oracle": "Remove-MgEntitlementManagementResource" + }, + "replacementNoun": "EntitlementManagementResource" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/resources/{}/roles/{}", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceEntitlementManagementResourceRole", + "oracle": "Remove-MgEntitlementManagementResourceRole" + }, + "replacementNoun": "EntitlementManagementResourceRole" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/resources/{}/roles/{}/resource", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceEntitlementManagementResourceRoleResource", + "oracle": "Remove-MgEntitlementManagementResourceRoleResource" + }, + "replacementNoun": "EntitlementManagementResourceRoleResource" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/resources/{}/roles/{}/resource/scopes/{}", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceEntitlementManagementResourceRoleResourceScope", + "oracle": "Remove-MgEntitlementManagementResourceRoleResourceScope" + }, + "replacementNoun": "EntitlementManagementResourceRoleResourceScope" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/resources/{}/roles/{}/resource/scopes/{}/resource", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceEntitlementManagementResourceRoleResourceScopeResource", + "oracle": "Remove-MgEntitlementManagementResourceRoleResourceScopeResource" + }, + "replacementNoun": "EntitlementManagementResourceRoleResourceScopeResource" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/resources/{}/scopes/{}", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceEntitlementManagementResourceScope", + "oracle": "Remove-MgEntitlementManagementResourceScope" + }, + "replacementNoun": "EntitlementManagementResourceScope" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/resources/{}/scopes/{}/resource", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceEntitlementManagementResourceScopeResource", + "oracle": "Remove-MgEntitlementManagementResourceScopeResource" + }, + "replacementNoun": "EntitlementManagementResourceScopeResource" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/resources/{}/scopes/{}/resource/roles/{}", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceEntitlementManagementResourceScopeResourceRole", + "oracle": "Remove-MgEntitlementManagementResourceScopeResourceRole" + }, + "replacementNoun": "EntitlementManagementResourceScopeResourceRole" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/resources/{}/scopes/{}/resource/roles/{}/resource", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceEntitlementManagementResourceScopeResourceRoleResource", + "oracle": "Remove-MgEntitlementManagementResourceScopeResourceRoleResource" + }, + "replacementNoun": "EntitlementManagementResourceScopeResourceRoleResource" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/subjects/{}", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceEntitlementManagementSubject", + "oracle": "Remove-MgEntitlementManagementSubject" + }, + "replacementNoun": "EntitlementManagementSubject" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/termsofuse/agreementacceptances/{}", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceTermOfUseAgreementAcceptance", + "oracle": "Remove-MgIdentityGovernanceTermsOfUseAgreementAcceptance" + }, + "replacementNoun": "IdentityGovernanceTermsOfUseAgreementAcceptance" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/termsofuse/agreements/{}", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceTermOfUseAgreement", + "oracle": "Remove-MgIdentityGovernanceTermsOfUseAgreement" + }, + "replacementNoun": "IdentityGovernanceTermsOfUseAgreement" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/termsofuse/agreements/{}/file", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceTermOfUseAgreementFile", + "oracle": "Remove-MgIdentityGovernanceTermsOfUseAgreementFile" + }, + "replacementNoun": "IdentityGovernanceTermsOfUseAgreementFile" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/termsofuse/agreements/{}/file/localizations/{}", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceTermOfUseAgreementFileLocalization", + "oracle": "Remove-MgIdentityGovernanceTermsOfUseAgreementFileLocalization" + }, + "replacementNoun": "IdentityGovernanceTermsOfUseAgreementFileLocalization" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/termsofuse/agreements/{}/file/localizations/{}/versions/{}", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceTermOfUseAgreementFileLocalizationVersion", + "oracle": "Remove-MgIdentityGovernanceTermsOfUseAgreementFileLocalizationVersion" + }, + "replacementNoun": "IdentityGovernanceTermsOfUseAgreementFileLocalizationVersion" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/termsofuse/agreements/{}/files/{}/versions/{}", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceTermOfUseAgreementFileVersion", + "oracle": "Remove-MgIdentityGovernanceTermsOfUseAgreementFileVersion" + }, + "replacementNoun": "IdentityGovernanceTermsOfUseAgreementFileVersion" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identityprotection/riskdetections/{}", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgIdentityProtectionRiskDetection", + "oracle": "Remove-MgRiskDetection" + }, + "replacementNoun": "RiskDetection" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identityprotection/riskyserviceprincipals/{}", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgIdentityProtectionRiskyServicePrincipal", + "oracle": "Remove-MgRiskyServicePrincipal" + }, + "replacementNoun": "RiskyServicePrincipal" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identityprotection/riskyserviceprincipals/{}/history/{}", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgIdentityProtectionRiskyServicePrincipalHistory", + "oracle": "Remove-MgRiskyServicePrincipalHistory" + }, + "replacementNoun": "RiskyServicePrincipalHistory" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identityprotection/riskyusers/{}", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgIdentityProtectionRiskyUser", + "oracle": "Remove-MgRiskyUser" + }, + "replacementNoun": "RiskyUser" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identityprotection/riskyusers/{}/history/{}", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgIdentityProtectionRiskyUserHistory", + "oracle": "Remove-MgRiskyUserHistory" + }, + "replacementNoun": "RiskyUserHistory" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identityprotection/serviceprincipalriskdetections/{}", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgIdentityProtectionServicePrincipalRiskDetection", + "oracle": "Remove-MgServicePrincipalRiskDetection" + }, + "replacementNoun": "ServicePrincipalRiskDetection" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/organization/{}/branding/customcss", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgOrganizationBrandingCustomCSS", + "oracle": "Remove-MgOrganizationBrandingCustomCss" + }, + "replacementNoun": "OrganizationBrandingCustomCss" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/organization/{}/branding/localizations/{}/customcss", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgOrganizationBrandingLocalizationCustomCSS", + "oracle": "Remove-MgOrganizationBrandingLocalizationCustomCss" + }, + "replacementNoun": "OrganizationBrandingLocalizationCustomCss" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/policies/featurerolloutpolicies/{}/appliesto/{}/$ref", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgPolicyFeatureRolloutPolicyApplyToByRef", + "oracle": "Remove-MgPolicyFeatureRolloutPolicyApplyToDirectoryObjectByRef" + }, + "replacementNoun": "PolicyFeatureRolloutPolicyApplyToDirectoryObjectByRef" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/print/printers/{}", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgPrinter", + "oracle": "Remove-MgPrintPrinter" + }, + "replacementNoun": "PrintPrinter" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/print/printers/{}/jobs/{}", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgPrinterJob", + "oracle": "Remove-MgPrintPrinterJob" + }, + "replacementNoun": "PrintPrinterJob" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/print/printers/{}/jobs/{}/documents/{}", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgPrinterJobDocument", + "oracle": "Remove-MgPrintPrinterJobDocument" + }, + "replacementNoun": "PrintPrinterJobDocument" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/print/printers/{}/jobs/{}/documents/{}/$value", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgPrinterJobDocumentContent", + "oracle": "Remove-MgPrintPrinterJobDocumentContent" + }, + "replacementNoun": "PrintPrinterJobDocumentContent" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/print/printers/{}/jobs/{}/tasks/{}", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgPrinterJobTask", + "oracle": "Remove-MgPrintPrinterJobTask" + }, + "replacementNoun": "PrintPrinterJobTask" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/print/printers/{}/tasktriggers/{}", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgPrinterTaskTrigger", + "oracle": "Remove-MgPrintPrinterTaskTrigger" + }, + "replacementNoun": "PrintPrinterTaskTrigger" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/serviceprincipals/{}/claimsmappingpolicies/{}/$ref", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgServicePrincipalClaimMappingPolicyByRef", + "oracle": "Remove-MgServicePrincipalClaimMappingPolicyClaimMappingPolicyByRef" + }, + "replacementNoun": "ServicePrincipalClaimMappingPolicyClaimMappingPolicyByRef" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/serviceprincipals/{}/homerealmdiscoverypolicies/{}/$ref", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgServicePrincipalHomeRealmDiscoveryPolicyByRef", + "oracle": "Remove-MgServicePrincipalHomeRealmDiscoveryPolicyHomeRealmDiscoveryPolicyByRef" + }, + "replacementNoun": "ServicePrincipalHomeRealmDiscoveryPolicyHomeRealmDiscoveryPolicyByRef" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/serviceprincipals/{}/owners/{}/$ref", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgServicePrincipalOwnerByRef", + "oracle": "Remove-MgServicePrincipalOwnerDirectoryObjectByRef" + }, + "replacementNoun": "ServicePrincipalOwnerDirectoryObjectByRef" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/serviceprincipals/{}/tokenissuancepolicies/{}/$ref", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgServicePrincipalTokenIssuancePolicyByRef", + "oracle": "Remove-MgServicePrincipalTokenIssuancePolicyTokenIssuancePolicyByRef" + }, + "replacementNoun": "ServicePrincipalTokenIssuancePolicyTokenIssuancePolicyByRef" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/serviceprincipals/{}/tokenlifetimepolicies/{}/$ref", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgServicePrincipalTokenLifetimePolicyByRef", + "oracle": "Remove-MgServicePrincipalTokenLifetimePolicyTokenLifetimePolicyByRef" + }, + "replacementNoun": "ServicePrincipalTokenLifetimePolicyTokenLifetimePolicyByRef" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/teams/{}/channels/{}/allmembers/{}", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgTeamChannelAllMember", + "oracle": "Remove-MgTeamChannelMember" + }, + "replacementNoun": "TeamChannelMember" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/teams/{}/primarychannel/allmembers/{}", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgTeamPrimaryChannelAllMember", + "oracle": "Remove-MgTeamPrimaryChannelMember" + }, + "replacementNoun": "TeamPrimaryChannelMember" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/teamwork/deletedteams/{}/channels/{}/allmembers/{}", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgTeamworkDeletedTeamChannelAllMember", + "oracle": "Remove-MgTeamworkDeletedTeamChannelMember" + }, + "replacementNoun": "TeamworkDeletedTeamChannelMember" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/users/{}/manageddevices/{}/logcollectionrequests/{}", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgUserManagedDeviceLogCollectionRequest", + "oracle": "Remove-MgUserManagedDeviceLogCollectionResponse" + }, + "replacementNoun": "UserManagedDeviceLogCollectionResponse" + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/users/{}/sponsors/{}/$ref", + "action": "rename", + "evidence": { + "ourCommand": "Remove-MgUserSponsorByRef", + "oracle": "Remove-MgUserSponsorDirectoryObjectByRef" + }, + "replacementNoun": "UserSponsorDirectoryObjectByRef" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/admin/people/profilecardproperties/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgAdminPersonProfileCardPropertyCount", + "oracle": "Get-MgAdminPeopleProfileCardPropertyCount" + }, + "replacementNoun": "AdminPeopleProfileCardPropertyCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/admin/people/profilepropertysettings/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgAdminPersonProfilePropertySettingCount", + "oracle": "Get-MgAdminPeopleProfilePropertySettingCount" + }, + "replacementNoun": "AdminPeopleProfilePropertySettingCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/admin/people/profilesources/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgAdminPersonProfileSourceCount", + "oracle": "Get-MgAdminPeopleProfileSourceCount" + }, + "replacementNoun": "AdminPeopleProfileSourceCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/admin/serviceannouncement/healthoverviews", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgAdminServiceAnnouncementHealthOverview", + "oracle": "Get-MgServiceAnnouncementHealthOverview" + }, + "replacementNoun": "ServiceAnnouncementHealthOverview" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/admin/serviceannouncement/healthoverviews/{}", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgAdminServiceAnnouncementHealthOverview", + "oracle": "Get-MgServiceAnnouncementHealthOverview" + }, + "replacementNoun": "ServiceAnnouncementHealthOverview" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/admin/serviceannouncement/healthoverviews/{}/issues", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgAdminServiceAnnouncementHealthOverviewIssue", + "oracle": "Get-MgServiceAnnouncementHealthOverviewIssue" + }, + "replacementNoun": "ServiceAnnouncementHealthOverviewIssue" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/admin/serviceannouncement/healthoverviews/{}/issues/{}", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgAdminServiceAnnouncementHealthOverviewIssue", + "oracle": "Get-MgServiceAnnouncementHealthOverviewIssue" + }, + "replacementNoun": "ServiceAnnouncementHealthOverviewIssue" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/admin/serviceannouncement/healthoverviews/{}/issues/{}/incidentreport", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgAdminServiceAnnouncementHealthOverviewIssueIncidentReport", + "oracle": "Invoke-MgReportServiceAnnouncementHealthOverviewIssueIncident" + }, + "replacementNoun": "ReportServiceAnnouncementHealthOverviewIssueIncident", + "replacementVerb": "Invoke" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/admin/serviceannouncement/healthoverviews/{}/issues/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgAdminServiceAnnouncementHealthOverviewIssueCount", + "oracle": "Get-MgServiceAnnouncementHealthOverviewIssueCount" + }, + "replacementNoun": "ServiceAnnouncementHealthOverviewIssueCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/admin/serviceannouncement/healthoverviews/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgAdminServiceAnnouncementHealthOverviewCount", + "oracle": "Get-MgServiceAnnouncementHealthOverviewCount" + }, + "replacementNoun": "ServiceAnnouncementHealthOverviewCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/admin/serviceannouncement/issues", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgAdminServiceAnnouncementIssue", + "oracle": "Get-MgServiceAnnouncementIssue" + }, + "replacementNoun": "ServiceAnnouncementIssue" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/admin/serviceannouncement/issues/{}", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgAdminServiceAnnouncementIssue", + "oracle": "Get-MgServiceAnnouncementIssue" + }, + "replacementNoun": "ServiceAnnouncementIssue" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/admin/serviceannouncement/issues/{}/incidentreport", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgAdminServiceAnnouncementIssueIncidentReport", + "oracle": "Invoke-MgReportServiceAnnouncementIssueIncident" + }, + "replacementNoun": "ReportServiceAnnouncementIssueIncident", + "replacementVerb": "Invoke" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/admin/serviceannouncement/issues/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgAdminServiceAnnouncementIssueCount", + "oracle": "Get-MgServiceAnnouncementIssueCount" + }, + "replacementNoun": "ServiceAnnouncementIssueCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/admin/serviceannouncement/messages", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgAdminServiceAnnouncementMessage", + "oracle": "Get-MgServiceAnnouncementMessage" + }, + "replacementNoun": "ServiceAnnouncementMessage" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/admin/serviceannouncement/messages/{}", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgAdminServiceAnnouncementMessage", + "oracle": "Get-MgServiceAnnouncementMessage" + }, + "replacementNoun": "ServiceAnnouncementMessage" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/admin/serviceannouncement/messages/{}/attachments", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgAdminServiceAnnouncementMessageAttachment", + "oracle": "Get-MgServiceAnnouncementMessageAttachment" + }, + "replacementNoun": "ServiceAnnouncementMessageAttachment" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/admin/serviceannouncement/messages/{}/attachments/{}", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgAdminServiceAnnouncementMessageAttachment", + "oracle": "Get-MgServiceAnnouncementMessageAttachment" + }, + "replacementNoun": "ServiceAnnouncementMessageAttachment" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/admin/serviceannouncement/messages/{}/attachments/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgAdminServiceAnnouncementMessageAttachmentCount", + "oracle": "Get-MgServiceAnnouncementMessageAttachmentCount" + }, + "replacementNoun": "ServiceAnnouncementMessageAttachmentCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/admin/serviceannouncement/messages/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgAdminServiceAnnouncementMessageCount", + "oracle": "Get-MgServiceAnnouncementMessageCount" + }, + "replacementNoun": "ServiceAnnouncementMessageCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/applications/{}/synchronization/jobs/{}/schema/filteroperators", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgApplicationSynchronizationJobSchemaFilterOperators", + "oracle": "Invoke-MgFilterApplicationSynchronizationJobSchemaOperator" + }, + "replacementNoun": "FilterApplicationSynchronizationJobSchemaOperator", + "replacementVerb": "Invoke" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/applications/{}/synchronization/jobs/{}/schema/functions", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgApplicationSynchronizationJobSchemaFunctions", + "oracle": "Invoke-MgFunctionApplicationSynchronizationJobSchema" + }, + "replacementNoun": "FunctionApplicationSynchronizationJobSchema", + "replacementVerb": "Invoke" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/applications/{}/synchronization/templates/{}/schema/filteroperators", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgApplicationSynchronizationTemplateSchemaFilterOperators", + "oracle": "Invoke-MgFilterApplicationSynchronizationTemplateSchemaOperator" + }, + "replacementNoun": "FilterApplicationSynchronizationTemplateSchemaOperator", + "replacementVerb": "Invoke" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/applications/{}/synchronization/templates/{}/schema/functions", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgApplicationSynchronizationTemplateSchemaFunctions", + "oracle": "Invoke-MgFunctionApplicationSynchronizationTemplateSchema" + }, + "replacementNoun": "FunctionApplicationSynchronizationTemplateSchema", + "replacementVerb": "Invoke" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/chats/getallretainedmessages", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgChatGetAllRetainedMessages", + "oracle": "Get-MgChatRetainedMessage" + }, + "replacementNoun": "ChatRetainedMessage" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/communications/getallonlinemeetingmessages", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgCommunicationGetAllOnlineMeetingMessages", + "oracle": "Get-MgCommunicationOnlineMeetingMessage" + }, + "replacementNoun": "CommunicationOnlineMeetingMessage" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/communications/onlinemeetings/{}/getvirtualappointmentjoinweburl", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgCommunicationOnlineMeetingGetVirtualAppointmentJoinWebUrl", + "oracle": "Get-MgCommunicationOnlineMeetingVirtualAppointmentJoinWebUrl" + }, + "replacementNoun": "CommunicationOnlineMeetingVirtualAppointmentJoinWebUrl" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/deviceappmanagement/iosmanagedappprotections", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgDeviceAppManagementIosManagedAppProtection", + "oracle": "Get-MgDeviceAppManagementiOSManagedAppProtection" + }, + "replacementNoun": "DeviceAppManagementiOSManagedAppProtection" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/deviceappmanagement/iosmanagedappprotections/{}", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgDeviceAppManagementIosManagedAppProtection", + "oracle": "Get-MgDeviceAppManagementiOSManagedAppProtection" + }, + "replacementNoun": "DeviceAppManagementiOSManagedAppProtection" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/deviceappmanagement/iosmanagedappprotections/{}/apps", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgDeviceAppManagementIosManagedAppProtectionApp", + "oracle": "Get-MgDeviceAppManagementiOSManagedAppProtectionApp" + }, + "replacementNoun": "DeviceAppManagementiOSManagedAppProtectionApp" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/deviceappmanagement/iosmanagedappprotections/{}/apps/{}", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgDeviceAppManagementIosManagedAppProtectionApp", + "oracle": "Get-MgDeviceAppManagementiOSManagedAppProtectionApp" + }, + "replacementNoun": "DeviceAppManagementiOSManagedAppProtectionApp" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/deviceappmanagement/iosmanagedappprotections/{}/apps/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgDeviceAppManagementIosManagedAppProtectionAppCount", + "oracle": "Get-MgDeviceAppManagementiOSManagedAppProtectionAppCount" + }, + "replacementNoun": "DeviceAppManagementiOSManagedAppProtectionAppCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/deviceappmanagement/iosmanagedappprotections/{}/assignments", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgDeviceAppManagementIosManagedAppProtectionAssignment", + "oracle": "Get-MgDeviceAppManagementiOSManagedAppProtectionAssignment" + }, + "replacementNoun": "DeviceAppManagementiOSManagedAppProtectionAssignment" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/deviceappmanagement/iosmanagedappprotections/{}/assignments/{}", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgDeviceAppManagementIosManagedAppProtectionAssignment", + "oracle": "Get-MgDeviceAppManagementiOSManagedAppProtectionAssignment" + }, + "replacementNoun": "DeviceAppManagementiOSManagedAppProtectionAssignment" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/deviceappmanagement/iosmanagedappprotections/{}/assignments/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgDeviceAppManagementIosManagedAppProtectionAssignmentCount", + "oracle": "Get-MgDeviceAppManagementiOSManagedAppProtectionAssignmentCount" + }, + "replacementNoun": "DeviceAppManagementiOSManagedAppProtectionAssignmentCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/deviceappmanagement/iosmanagedappprotections/{}/deploymentsummary", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgDeviceAppManagementIosManagedAppProtectionDeploymentSummary", + "oracle": "Get-MgDeviceAppManagementiOSManagedAppProtectionDeploymentSummary" + }, + "replacementNoun": "DeviceAppManagementiOSManagedAppProtectionDeploymentSummary" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/deviceappmanagement/iosmanagedappprotections/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgDeviceAppManagementIosManagedAppProtectionCount", + "oracle": "Get-MgDeviceAppManagementiOSManagedAppProtectionCount" + }, + "replacementNoun": "DeviceAppManagementiOSManagedAppProtectionCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/deviceappmanagement/managedappregistrations/getuseridswithflaggedappregistration", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgDeviceAppManagementManagedAppRegistrationGetUserIdsWithFlaggedAppRegistration", + "oracle": "Get-MgDeviceAppManagementManagedAppRegistrationUserIdWithFlaggedAppRegistration" + }, + "replacementNoun": "DeviceAppManagementManagedAppRegistrationUserIdWithFlaggedAppRegistration" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/devicemanagement/applepushnotificationcertificate/downloadapplepushnotificationcertificatesigningrequest", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgDeviceManagementApplePushNotificationCertificateDownloadApplePushNotificationCertificateSigningRequest", + "oracle": "Invoke-MgDownloadDeviceManagementApplePushNotificationCertificateApplePushNotificationCertificateSigningRequest" + }, + "replacementNoun": "DownloadDeviceManagementApplePushNotificationCertificateApplePushNotificationCertificateSigningRequest", + "replacementVerb": "Invoke" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/devicemanagement/auditevents/getauditcategories", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgDeviceManagementAuditEventGetAuditCategories", + "oracle": "Get-MgDeviceManagementAuditEventAuditCategory" + }, + "replacementNoun": "DeviceManagementAuditEventAuditCategory" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/devicemanagement/devicemanagementpartners/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgDeviceManagementDeviceManagementPartnerCount", + "oracle": "Get-MgDeviceManagementPartnerCount" + }, + "replacementNoun": "DeviceManagementPartnerCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/devicemanagement/iosupdatestatuses", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgDeviceManagementIosUpdateStatus", + "oracle": "Get-MgDeviceManagementIoUpdateStatus" + }, + "replacementNoun": "DeviceManagementIoUpdateStatus" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/devicemanagement/iosupdatestatuses/{}", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgDeviceManagementIosUpdateStatus", + "oracle": "Get-MgDeviceManagementIoUpdateStatus" + }, + "replacementNoun": "DeviceManagementIoUpdateStatus" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/devicemanagement/iosupdatestatuses/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgDeviceManagementIosUpdateStatusCount", + "oracle": "Get-MgDeviceManagementIoUpdateStatusCount" + }, + "replacementNoun": "DeviceManagementIoUpdateStatusCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/devicemanagement/userexperienceanalyticssummarizeworkfromanywheredevices", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgDeviceManagementUserExperienceAnalyticsSummarizeWorkFromAnywhereDevices", + "oracle": "Invoke-MgExperienceDeviceManagement" + }, + "replacementNoun": "ExperienceDeviceManagement", + "replacementVerb": "Invoke" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/devicemanagement/virtualendpoint/auditevents/getauditactivitytypes", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgDeviceManagementVirtualEndpointAuditEventGetAuditActivityTypes", + "oracle": "Get-MgDeviceManagementVirtualEndpointAuditEventAuditActivityType" + }, + "replacementNoun": "DeviceManagementVirtualEndpointAuditEventAuditActivityType" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/devicemanagement/virtualendpoint/cloudpcs", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgDeviceManagementVirtualEndpointCloudPCs", + "oracle": "Get-MgDeviceManagementVirtualEndpointCloudPc" + }, + "replacementNoun": "DeviceManagementVirtualEndpointCloudPc" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/devicemanagement/virtualendpoint/cloudpcs/{}", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgDeviceManagementVirtualEndpointCloudPCs", + "oracle": "Get-MgDeviceManagementVirtualEndpointCloudPc" + }, + "replacementNoun": "DeviceManagementVirtualEndpointCloudPc" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/devicemanagement/virtualendpoint/cloudpcs/{}/retrievecloudpclaunchdetail", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgDeviceManagementVirtualEndpointCloudPCsRetrieveCloudPcLaunchDetail", + "oracle": "Get-MgDeviceManagementVirtualEndpointCloudPcLaunchDetail" + }, + "replacementNoun": "DeviceManagementVirtualEndpointCloudPcLaunchDetail" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/devicemanagement/virtualendpoint/cloudpcs/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgDeviceManagementVirtualEndpointCloudPCsCount", + "oracle": "Get-MgDeviceManagementVirtualEndpointCloudPcCount" + }, + "replacementNoun": "DeviceManagementVirtualEndpointCloudPcCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/devicemanagement/virtualendpoint/deviceimages/getsourceimages", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgDeviceManagementVirtualEndpointDeviceImageGetSourceImages", + "oracle": "Get-MgDeviceManagementVirtualEndpointDeviceImageSourceImage" + }, + "replacementNoun": "DeviceManagementVirtualEndpointDeviceImageSourceImage" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/directory/federationconfigurations/availableprovidertypes", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgDirectoryFederationConfigurationAvailableProviderTypes", + "oracle": "Invoke-MgAvailableDirectoryFederationConfigurationProviderType" + }, + "replacementNoun": "AvailableDirectoryFederationConfigurationProviderType", + "replacementVerb": "Invoke" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/analytics/alltime", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgDriveItemAnalyticAllTime", + "oracle": "Get-MgDriveItemAnalyticTime" + }, + "replacementNoun": "DriveItemAnalyticTime" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/getactivitiesbyinterval", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgDriveItemGetActivitiesByInterval", + "oracle": "Get-MgDriveItemActivityByInterval" + }, + "replacementNoun": "DriveItemActivityByInterval" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/list/contenttypes/{}/base", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgDriveListContentTypeBase", + "oracle": "Get-MgDriveContentTypeBase" + }, + "replacementNoun": "DriveContentTypeBase" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/list/contenttypes/{}/basetypes", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgDriveListContentTypeBaseType", + "oracle": "Get-MgDriveContentTypeBaseType" + }, + "replacementNoun": "DriveContentTypeBaseType" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/list/contenttypes/{}/basetypes/{}", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgDriveListContentTypeBaseType", + "oracle": "Get-MgDriveContentTypeBaseType" + }, + "replacementNoun": "DriveContentTypeBaseType" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/list/contenttypes/{}/basetypes/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgDriveListContentTypeBaseTypeCount", + "oracle": "Get-MgDriveContentTypeBaseTypeCount" + }, + "replacementNoun": "DriveContentTypeBaseTypeCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/list/contenttypes/{}/ispublished", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgDriveListContentTypeIsPublished", + "oracle": "Test-MgDriveListContentTypePublished" + }, + "replacementNoun": "DriveListContentTypePublished", + "replacementVerb": "Test" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/list/contenttypes/getcompatiblehubcontenttypes", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgDriveListContentTypeGetCompatibleHubContentTypes", + "oracle": "Get-MgDriveListContentTypeCompatibleHubContentType" + }, + "replacementNoun": "DriveListContentTypeCompatibleHubContentType" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/list/items/{}/getactivitiesbyinterval", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgDriveListItemGetActivitiesByInterval", + "oracle": "Get-MgDriveListItemActivityByInterval" + }, + "replacementNoun": "DriveListItemActivityByInterval" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/recent", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgDriveRecent", + "oracle": "Invoke-MgRecentDrive" + }, + "replacementNoun": "RecentDrive", + "replacementVerb": "Invoke" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/sharedwithme", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgDriveSharedWithMe", + "oracle": "Invoke-MgGraphDrive" + }, + "replacementNoun": "GraphDrive", + "replacementVerb": "Invoke" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/education/classes/{}/getrecentlymodifiedsubmissions", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgEducationClassGetRecentlyModifiedSubmissions", + "oracle": "Get-MgEducationClassRecentlyModifiedSubmission" + }, + "replacementNoun": "EducationClassRecentlyModifiedSubmission" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/education/reports/reflectcheckinresponses", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgEducationReportReflectCheckInResponse", + "oracle": "Get-MgEducationReportReflectCheck" + }, + "replacementNoun": "EducationReportReflectCheck" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/education/reports/reflectcheckinresponses/{}", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgEducationReportReflectCheckInResponse", + "oracle": "Get-MgEducationReportReflectCheck" + }, + "replacementNoun": "EducationReportReflectCheck" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/groups/{}/onenote/notebooks/{}/sectiongroups/{}/sections/{}/pages/{}/preview", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgGroupOnenoteNotebookSectionGroupSectionPagePreview", + "oracle": "Invoke-MgPreviewGroupOnenoteNotebookSectionGroupSectionPage" + }, + "replacementNoun": "PreviewGroupOnenoteNotebookSectionGroupSectionPage", + "replacementVerb": "Invoke" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/groups/{}/onenote/notebooks/{}/sections/{}/pages/{}/preview", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgGroupOnenoteNotebookSectionPagePreview", + "oracle": "Invoke-MgPreviewGroupOnenoteNotebookSectionPage" + }, + "replacementNoun": "PreviewGroupOnenoteNotebookSectionPage", + "replacementVerb": "Invoke" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/groups/{}/onenote/pages/{}/preview", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgGroupOnenotePagePreview", + "oracle": "Invoke-MgPreviewGroupOnenotePage" + }, + "replacementNoun": "PreviewGroupOnenotePage", + "replacementVerb": "Invoke" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/groups/{}/onenote/sectiongroups/{}/sections/{}/pages/{}/preview", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgGroupOnenoteSectionGroupSectionPagePreview", + "oracle": "Invoke-MgPreviewGroupOnenoteSectionGroupSectionPage" + }, + "replacementNoun": "PreviewGroupOnenoteSectionGroupSectionPage", + "replacementVerb": "Invoke" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/groups/{}/onenote/sections/{}/pages/{}/preview", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgGroupOnenoteSectionPagePreview", + "oracle": "Invoke-MgPreviewGroupOnenoteSectionPage" + }, + "replacementNoun": "PreviewGroupOnenoteSectionPage", + "replacementVerb": "Invoke" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/groups/{}/sites/{}/analytics/alltime", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgGroupSiteAnalyticAllTime", + "oracle": "Get-MgGroupSiteAnalyticTime" + }, + "replacementNoun": "GroupSiteAnalyticTime" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/groups/{}/sites/{}/contenttypes/{}/ispublished", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgGroupSiteContentTypeIsPublished", + "oracle": "Test-MgGroupSiteContentTypePublished" + }, + "replacementNoun": "GroupSiteContentTypePublished", + "replacementVerb": "Test" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/groups/{}/sites/{}/contenttypes/getcompatiblehubcontenttypes", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgGroupSiteContentTypeGetCompatibleHubContentTypes", + "oracle": "Get-MgGroupSiteContentTypeCompatibleHubContentType" + }, + "replacementNoun": "GroupSiteContentTypeCompatibleHubContentType" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/groups/{}/sites/{}/getactivitiesbyinterval", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgGroupSiteGetActivitiesByInterval", + "oracle": "Get-MgGroupSiteActivityByInterval" + }, + "replacementNoun": "GroupSiteActivityByInterval" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/groups/{}/sites/{}/lists/{}/contenttypes/{}/ispublished", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgGroupSiteListContentTypeIsPublished", + "oracle": "Test-MgGroupSiteListContentTypePublished" + }, + "replacementNoun": "GroupSiteListContentTypePublished", + "replacementVerb": "Test" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/groups/{}/sites/{}/lists/{}/contenttypes/getcompatiblehubcontenttypes", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgGroupSiteListContentTypeGetCompatibleHubContentTypes", + "oracle": "Get-MgGroupSiteListContentTypeCompatibleHubContentType" + }, + "replacementNoun": "GroupSiteListContentTypeCompatibleHubContentType" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/groups/{}/sites/{}/lists/{}/items/{}/getactivitiesbyinterval", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgGroupSiteListItemGetActivitiesByInterval", + "oracle": "Get-MgGroupSiteListItemActivityByInterval" + }, + "replacementNoun": "GroupSiteListItemActivityByInterval" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/groups/{}/sites/{}/lists/{}/items/{}/lastmodifiedbyuser", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgGroupSiteListItemLastModifiedByUser", + "oracle": "Get-MgGroupSiteItemLastModifiedByUser" + }, + "replacementNoun": "GroupSiteItemLastModifiedByUser" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/groups/{}/sites/{}/lists/{}/items/{}/lastmodifiedbyuser/mailboxsettings", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgGroupSiteListItemLastModifiedByUserMailboxSetting", + "oracle": "Get-MgGroupSiteItemLastModifiedByUserMailboxSetting" + }, + "replacementNoun": "GroupSiteItemLastModifiedByUserMailboxSetting" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/groups/{}/sites/{}/lists/{}/items/{}/lastmodifiedbyuser/serviceprovisioningerrors", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgGroupSiteListItemLastModifiedByUserServiceProvisioningError", + "oracle": "Get-MgGroupSiteItemLastModifiedByUserServiceProvisioningError" + }, + "replacementNoun": "GroupSiteItemLastModifiedByUserServiceProvisioningError" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/groups/{}/sites/{}/lists/{}/items/{}/lastmodifiedbyuser/serviceprovisioningerrors/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgGroupSiteListItemLastModifiedByUserServiceProvisioningErrorCount", + "oracle": "Get-MgGroupSiteItemLastModifiedByUserServiceProvisioningErrorCount" + }, + "replacementNoun": "GroupSiteItemLastModifiedByUserServiceProvisioningErrorCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/groups/{}/sites/{}/onenote/notebooks/{}/sectiongroups/{}/sections/{}/pages/{}/preview", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgGroupSiteOnenoteNotebookSectionGroupSectionPagePreview", + "oracle": "Invoke-MgPreviewGroupSiteOnenoteNotebookSectionGroupSectionPage" + }, + "replacementNoun": "PreviewGroupSiteOnenoteNotebookSectionGroupSectionPage", + "replacementVerb": "Invoke" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/groups/{}/sites/{}/onenote/notebooks/{}/sections/{}/pages/{}/preview", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgGroupSiteOnenoteNotebookSectionPagePreview", + "oracle": "Invoke-MgPreviewGroupSiteOnenoteNotebookSectionPage" + }, + "replacementNoun": "PreviewGroupSiteOnenoteNotebookSectionPage", + "replacementVerb": "Invoke" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/groups/{}/sites/{}/onenote/pages/{}/preview", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgGroupSiteOnenotePagePreview", + "oracle": "Invoke-MgPreviewGroupSiteOnenotePage" + }, + "replacementNoun": "PreviewGroupSiteOnenotePage", + "replacementVerb": "Invoke" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/groups/{}/sites/{}/onenote/sectiongroups/{}/sections/{}/pages/{}/preview", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgGroupSiteOnenoteSectionGroupSectionPagePreview", + "oracle": "Invoke-MgPreviewGroupSiteOnenoteSectionGroupSectionPage" + }, + "replacementNoun": "PreviewGroupSiteOnenoteSectionGroupSectionPage", + "replacementVerb": "Invoke" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/groups/{}/sites/{}/onenote/sections/{}/pages/{}/preview", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgGroupSiteOnenoteSectionPagePreview", + "oracle": "Invoke-MgPreviewGroupSiteOnenoteSectionPage" + }, + "replacementNoun": "PreviewGroupSiteOnenoteSectionPage", + "replacementVerb": "Invoke" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/groups/{}/sites/{}/sites/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgGroupSiteCount", + "oracle": "Get-MgGroupSubSiteCount" + }, + "replacementNoun": "GroupSubSiteCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/groups/{}/team/allchannels", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgGroupTeamAllChannel", + "oracle": "Get-MgAllGroupTeamChannel" + }, + "replacementNoun": "AllGroupTeamChannel" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/groups/{}/team/allchannels/{}", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgGroupTeamAllChannel", + "oracle": "Get-MgAllGroupTeamChannel" + }, + "replacementNoun": "AllGroupTeamChannel" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/groups/{}/team/allchannels/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgGroupTeamAllChannelCount", + "oracle": "Get-MgAllGroupTeamChannelCount" + }, + "replacementNoun": "AllGroupTeamChannelCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/groups/{}/team/channels/{}/allmembers", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgGroupTeamChannelAllMember", + "oracle": "Get-MgGroupTeamChannelMember" + }, + "replacementNoun": "GroupTeamChannelMember" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/groups/{}/team/channels/{}/allmembers/{}", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgGroupTeamChannelAllMember", + "oracle": "Get-MgGroupTeamChannelMember" + }, + "replacementNoun": "GroupTeamChannelMember" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/groups/{}/team/channels/getallretainedmessages", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgGroupTeamChannelGetAllRetainedMessages", + "oracle": "Get-MgGroupTeamChannelRetainedMessage" + }, + "replacementNoun": "GroupTeamChannelRetainedMessage" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/groups/{}/team/primarychannel/allmembers", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgGroupTeamPrimaryChannelAllMember", + "oracle": "Get-MgGroupTeamPrimaryChannelMember" + }, + "replacementNoun": "GroupTeamPrimaryChannelMember" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/groups/{}/team/primarychannel/allmembers/{}", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgGroupTeamPrimaryChannelAllMember", + "oracle": "Get-MgGroupTeamPrimaryChannelMember" + }, + "replacementNoun": "GroupTeamPrimaryChannelMember" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identity/authenticationeventsflows/{}/conditions/applications/includeapplications", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityAuthenticationEventFlowConditionApplicationIncludeApplication", + "oracle": "Get-MgIdentityAuthenticationEventFlowIncludeApplication" + }, + "replacementNoun": "IdentityAuthenticationEventFlowIncludeApplication" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identity/authenticationeventsflows/{}/conditions/applications/includeapplications/{}", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityAuthenticationEventFlowConditionApplicationIncludeApplication", + "oracle": "Get-MgIdentityAuthenticationEventFlowIncludeApplication" + }, + "replacementNoun": "IdentityAuthenticationEventFlowIncludeApplication" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identity/authenticationeventsflows/{}/conditions/applications/includeapplications/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityAuthenticationEventFlowConditionApplicationIncludeApplicationCount", + "oracle": "Get-MgIdentityAuthenticationEventFlowIncludeApplicationCount" + }, + "replacementNoun": "IdentityAuthenticationEventFlowIncludeApplicationCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identity/b2xuserflows", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityB2xUserFlow", + "oracle": "Get-MgIdentityB2XUserFlow" + }, + "replacementNoun": "IdentityB2XUserFlow" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identity/b2xuserflows/{}", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityB2xUserFlow", + "oracle": "Get-MgIdentityB2XUserFlow" + }, + "replacementNoun": "IdentityB2XUserFlow" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identity/b2xuserflows/{}/apiconnectorconfiguration", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityB2xUserFlowApiConnectorConfiguration", + "oracle": "Get-MgIdentityB2XUserFlowApiConnectorConfiguration" + }, + "replacementNoun": "IdentityB2XUserFlowApiConnectorConfiguration" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identity/b2xuserflows/{}/apiconnectorconfiguration/postattributecollection", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityB2xUserFlowApiConnectorConfigurationPostAttributeCollection", + "oracle": "Get-MgIdentityB2XUserFlowPostAttributeCollection" + }, + "replacementNoun": "IdentityB2XUserFlowPostAttributeCollection" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identity/b2xuserflows/{}/apiconnectorconfiguration/postattributecollection/$ref", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityB2xUserFlowApiConnectorConfigurationPostAttributeCollectionByRef", + "oracle": "Get-MgIdentityB2XUserFlowPostAttributeCollectionByRef" + }, + "replacementNoun": "IdentityB2XUserFlowPostAttributeCollectionByRef" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identity/b2xuserflows/{}/apiconnectorconfiguration/postfederationsignup", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityB2xUserFlowApiConnectorConfigurationPostFederationSignup", + "oracle": "Get-MgIdentityB2XUserFlowPostFederationSignup" + }, + "replacementNoun": "IdentityB2XUserFlowPostFederationSignup" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identity/b2xuserflows/{}/apiconnectorconfiguration/postfederationsignup/$ref", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityB2xUserFlowApiConnectorConfigurationPostFederationSignupByRef", + "oracle": "Get-MgIdentityB2XUserFlowPostFederationSignupByRef" + }, + "replacementNoun": "IdentityB2XUserFlowPostFederationSignupByRef" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identity/b2xuserflows/{}/identityproviders", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityB2xUserFlowIdentityProvider", + "oracle": "Get-MgIdentityB2XUserFlowIdentityProvider" + }, + "replacementNoun": "IdentityB2XUserFlowIdentityProvider" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identity/b2xuserflows/{}/identityproviders/{}", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityB2xUserFlowIdentityProvider", + "oracle": "Get-MgIdentityB2XUserFlowIdentityProvider" + }, + "replacementNoun": "IdentityB2XUserFlowIdentityProvider" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identity/b2xuserflows/{}/identityproviders/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityB2xUserFlowIdentityProviderCount", + "oracle": "Get-MgIdentityB2XUserFlowIdentityProviderCount" + }, + "replacementNoun": "IdentityB2XUserFlowIdentityProviderCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identity/b2xuserflows/{}/languages", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityB2xUserFlowLanguage", + "oracle": "Get-MgIdentityB2XUserFlowLanguage" + }, + "replacementNoun": "IdentityB2XUserFlowLanguage" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identity/b2xuserflows/{}/languages/{}", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityB2xUserFlowLanguage", + "oracle": "Get-MgIdentityB2XUserFlowLanguage" + }, + "replacementNoun": "IdentityB2XUserFlowLanguage" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identity/b2xuserflows/{}/languages/{}/defaultpages", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityB2xUserFlowLanguageDefaultPage", + "oracle": "Get-MgIdentityB2XUserFlowLanguageDefaultPage" + }, + "replacementNoun": "IdentityB2XUserFlowLanguageDefaultPage" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identity/b2xuserflows/{}/languages/{}/defaultpages/{}", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityB2xUserFlowLanguageDefaultPage", + "oracle": "Get-MgIdentityB2XUserFlowLanguageDefaultPage" + }, + "replacementNoun": "IdentityB2XUserFlowLanguageDefaultPage" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identity/b2xuserflows/{}/languages/{}/defaultpages/{}/$value", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityB2xUserFlowLanguageDefaultPageContent", + "oracle": "Get-MgIdentityB2XUserFlowLanguageDefaultPageContent" + }, + "replacementNoun": "IdentityB2XUserFlowLanguageDefaultPageContent" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identity/b2xuserflows/{}/languages/{}/defaultpages/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityB2xUserFlowLanguageDefaultPageCount", + "oracle": "Get-MgIdentityB2XUserFlowLanguageDefaultPageCount" + }, + "replacementNoun": "IdentityB2XUserFlowLanguageDefaultPageCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identity/b2xuserflows/{}/languages/{}/overridespages", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityB2xUserFlowLanguageOverridePage", + "oracle": "Get-MgIdentityB2XUserFlowLanguageOverridePage" + }, + "replacementNoun": "IdentityB2XUserFlowLanguageOverridePage" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identity/b2xuserflows/{}/languages/{}/overridespages/{}", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityB2xUserFlowLanguageOverridePage", + "oracle": "Get-MgIdentityB2XUserFlowLanguageOverridePage" + }, + "replacementNoun": "IdentityB2XUserFlowLanguageOverridePage" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identity/b2xuserflows/{}/languages/{}/overridespages/{}/$value", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityB2xUserFlowLanguageOverridePageContent", + "oracle": "Get-MgIdentityB2XUserFlowLanguageOverridePageContent" + }, + "replacementNoun": "IdentityB2XUserFlowLanguageOverridePageContent" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identity/b2xuserflows/{}/languages/{}/overridespages/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityB2xUserFlowLanguageOverridePageCount", + "oracle": "Get-MgIdentityB2XUserFlowLanguageOverridePageCount" + }, + "replacementNoun": "IdentityB2XUserFlowLanguageOverridePageCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identity/b2xuserflows/{}/languages/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityB2xUserFlowLanguageCount", + "oracle": "Get-MgIdentityB2XUserFlowLanguageCount" + }, + "replacementNoun": "IdentityB2XUserFlowLanguageCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identity/b2xuserflows/{}/userattributeassignments", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityB2xUserFlowUserAttributeAssignment", + "oracle": "Get-MgIdentityB2XUserFlowUserAttributeAssignment" + }, + "replacementNoun": "IdentityB2XUserFlowUserAttributeAssignment" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identity/b2xuserflows/{}/userattributeassignments/{}", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityB2xUserFlowUserAttributeAssignment", + "oracle": "Get-MgIdentityB2XUserFlowUserAttributeAssignment" + }, + "replacementNoun": "IdentityB2XUserFlowUserAttributeAssignment" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identity/b2xuserflows/{}/userattributeassignments/{}/userattribute", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityB2xUserFlowUserAttributeAssignmentUserAttribute", + "oracle": "Get-MgIdentityB2XUserFlowUserAttributeAssignmentUserAttribute" + }, + "replacementNoun": "IdentityB2XUserFlowUserAttributeAssignmentUserAttribute" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identity/b2xuserflows/{}/userattributeassignments/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityB2xUserFlowUserAttributeAssignmentCount", + "oracle": "Get-MgIdentityB2XUserFlowUserAttributeAssignmentCount" + }, + "replacementNoun": "IdentityB2XUserFlowUserAttributeAssignmentCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identity/b2xuserflows/{}/userattributeassignments/getorder", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityB2xUserFlowUserAttributeAssignmentGetOrder", + "oracle": "Get-MgIdentityB2XUserFlowUserAttributeAssignmentOrder" + }, + "replacementNoun": "IdentityB2XUserFlowUserAttributeAssignmentOrder" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identity/b2xuserflows/{}/userflowidentityproviders/$ref", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityB2xUserFlowUserFlowIdentityProviderByRef", + "oracle": "Get-MgIdentityB2XUserFlowIdentityProviderByRef" + }, + "replacementNoun": "IdentityB2XUserFlowIdentityProviderByRef" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identity/b2xuserflows/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityB2xUserFlowCount", + "oracle": "Get-MgIdentityB2XUserFlowCount" + }, + "replacementNoun": "IdentityB2XUserFlowCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identity/conditionalaccess/authenticationstrength/policies/{}/usage", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityConditionalAccessAuthenticationStrengthPolicyUsage", + "oracle": "Invoke-MgUsageIdentityConditionalAccessAuthenticationStrengthPolicy" + }, + "replacementNoun": "UsageIdentityConditionalAccessAuthenticationStrengthPolicy", + "replacementVerb": "Invoke" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identity/identityproviders/availableprovidertypes", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityProviderAvailableProviderTypes", + "oracle": "Invoke-MgAvailableIdentityProviderType" + }, + "replacementNoun": "AvailableIdentityProviderType", + "replacementVerb": "Invoke" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/appconsent/appconsentrequests", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceAppConsentAppConsentRequest", + "oracle": "Get-MgIdentityGovernanceAppConsentRequest" + }, + "replacementNoun": "IdentityGovernanceAppConsentRequest" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/appconsent/appconsentrequests/{}", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceAppConsentAppConsentRequest", + "oracle": "Get-MgIdentityGovernanceAppConsentRequest" + }, + "replacementNoun": "IdentityGovernanceAppConsentRequest" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/appconsent/appconsentrequests/{}/userconsentrequests", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequest", + "oracle": "Get-MgIdentityGovernanceAppConsentRequestUserConsentRequest" + }, + "replacementNoun": "IdentityGovernanceAppConsentRequestUserConsentRequest" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/appconsent/appconsentrequests/{}/userconsentrequests/{}", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequest", + "oracle": "Get-MgIdentityGovernanceAppConsentRequestUserConsentRequest" + }, + "replacementNoun": "IdentityGovernanceAppConsentRequestUserConsentRequest" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/appconsent/appconsentrequests/{}/userconsentrequests/{}/approval", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequestApproval", + "oracle": "Get-MgIdentityGovernanceAppConsentRequestUserConsentRequestApproval" + }, + "replacementNoun": "IdentityGovernanceAppConsentRequestUserConsentRequestApproval" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/appconsent/appconsentrequests/{}/userconsentrequests/{}/approval/stages", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequestApprovalStage", + "oracle": "Get-MgIdentityGovernanceAppConsentRequestUserConsentRequestApprovalStage" + }, + "replacementNoun": "IdentityGovernanceAppConsentRequestUserConsentRequestApprovalStage" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/appconsent/appconsentrequests/{}/userconsentrequests/{}/approval/stages/{}", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequestApprovalStage", + "oracle": "Get-MgIdentityGovernanceAppConsentRequestUserConsentRequestApprovalStage" + }, + "replacementNoun": "IdentityGovernanceAppConsentRequestUserConsentRequestApprovalStage" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/appconsent/appconsentrequests/{}/userconsentrequests/{}/approval/stages/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequestApprovalStageCount", + "oracle": "Get-MgIdentityGovernanceAppConsentRequestUserConsentRequestApprovalStageCount" + }, + "replacementNoun": "IdentityGovernanceAppConsentRequestUserConsentRequestApprovalStageCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/appconsent/appconsentrequests/{}/userconsentrequests/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequestCount", + "oracle": "Get-MgIdentityGovernanceAppConsentRequestUserConsentRequestCount" + }, + "replacementNoun": "IdentityGovernanceAppConsentRequestUserConsentRequestCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/appconsent/appconsentrequests/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceAppConsentAppConsentRequestCount", + "oracle": "Get-MgIdentityGovernanceAppConsentRequestCount" + }, + "replacementNoun": "IdentityGovernanceAppConsentRequestCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/accesspackageassignmentapprovals/{}/stages", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentApprovalStage", + "oracle": "Get-MgEntitlementManagementAccessPackageAssignmentApprovalStage" + }, + "replacementNoun": "EntitlementManagementAccessPackageAssignmentApprovalStage" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/accesspackageassignmentapprovals/{}/stages/{}", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentApprovalStage", + "oracle": "Get-MgEntitlementManagementAccessPackageAssignmentApprovalStage" + }, + "replacementNoun": "EntitlementManagementAccessPackageAssignmentApprovalStage" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/accesspackageassignmentapprovals/{}/stages/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentApprovalStageCount", + "oracle": "Get-MgEntitlementManagementAccessPackageAssignmentApprovalStageCount" + }, + "replacementNoun": "EntitlementManagementAccessPackageAssignmentApprovalStageCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/accesspackageassignmentapprovals/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentApprovalCount", + "oracle": "Get-MgEntitlementManagementAccessPackageAssignmentApprovalCount" + }, + "replacementNoun": "EntitlementManagementAccessPackageAssignmentApprovalCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/accesspackages", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAccessPackage", + "oracle": "Get-MgEntitlementManagementAccessPackage" + }, + "replacementNoun": "EntitlementManagementAccessPackage" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAccessPackage", + "oracle": "Get-MgEntitlementManagementAccessPackage" + }, + "replacementNoun": "EntitlementManagementAccessPackage" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/accesspackagesincompatiblewith", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAccessPackageAccessPackageIncompatibleWith", + "oracle": "Get-MgEntitlementManagementAccessPackageIncompatibleWith" + }, + "replacementNoun": "EntitlementManagementAccessPackageIncompatibleWith" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/accesspackagesincompatiblewith/{}", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAccessPackageAccessPackageIncompatibleWith", + "oracle": "Get-MgEntitlementManagementAccessPackageIncompatibleWith" + }, + "replacementNoun": "EntitlementManagementAccessPackageIncompatibleWith" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/assignmentpolicies", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicy", + "oracle": "Get-MgEntitlementManagementAccessPackageAssignmentPolicy" + }, + "replacementNoun": "EntitlementManagementAccessPackageAssignmentPolicy" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/assignmentpolicies/{}", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicy", + "oracle": "Get-MgEntitlementManagementAccessPackageAssignmentPolicy" + }, + "replacementNoun": "EntitlementManagementAccessPackageAssignmentPolicy" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/catalog", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAccessPackageCatalog", + "oracle": "Get-MgEntitlementManagementAccessPackageCatalog" + }, + "replacementNoun": "EntitlementManagementAccessPackageCatalog" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/incompatibleaccesspackages", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAccessPackageIncompatibleAccessPackage", + "oracle": "Get-MgEntitlementManagementAccessPackageIncompatibleAccessPackage" + }, + "replacementNoun": "EntitlementManagementAccessPackageIncompatibleAccessPackage" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/incompatibleaccesspackages/$ref", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAccessPackageIncompatibleAccessPackageByRef", + "oracle": "Get-MgEntitlementManagementAccessPackageIncompatibleAccessPackageByRef" + }, + "replacementNoun": "EntitlementManagementAccessPackageIncompatibleAccessPackageByRef" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/incompatiblegroups", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAccessPackageIncompatibleGroup", + "oracle": "Get-MgEntitlementManagementAccessPackageIncompatibleGroup" + }, + "replacementNoun": "EntitlementManagementAccessPackageIncompatibleGroup" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/incompatiblegroups/$ref", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAccessPackageIncompatibleGroupByRef", + "oracle": "Get-MgEntitlementManagementAccessPackageIncompatibleGroupByRef" + }, + "replacementNoun": "EntitlementManagementAccessPackageIncompatibleGroupByRef" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAccessPackageCount", + "oracle": "Get-MgEntitlementManagementAccessPackageCount" + }, + "replacementNoun": "EntitlementManagementAccessPackageCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/accesspackagesuggestions", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAccessPackageSuggestion", + "oracle": "Get-MgEntitlementManagementAccessPackageSuggestion" + }, + "replacementNoun": "EntitlementManagementAccessPackageSuggestion" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/accesspackagesuggestions/{}", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAccessPackageSuggestion", + "oracle": "Get-MgEntitlementManagementAccessPackageSuggestion" + }, + "replacementNoun": "EntitlementManagementAccessPackageSuggestion" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/accesspackagesuggestions/{}/accesspackage", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAccessPackageSuggestionAccessPackage", + "oracle": "Get-MgEntitlementManagementAccessPackageSuggestionAccessPackage" + }, + "replacementNoun": "EntitlementManagementAccessPackageSuggestionAccessPackage" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/accesspackagesuggestions/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAccessPackageSuggestionCount", + "oracle": "Get-MgEntitlementManagementAccessPackageSuggestionCount" + }, + "replacementNoun": "EntitlementManagementAccessPackageSuggestionCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/assignmentpolicies", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAssignmentPolicy", + "oracle": "Get-MgEntitlementManagementAssignmentPolicy" + }, + "replacementNoun": "EntitlementManagementAssignmentPolicy" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/assignmentpolicies/{}", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAssignmentPolicy", + "oracle": "Get-MgEntitlementManagementAssignmentPolicy" + }, + "replacementNoun": "EntitlementManagementAssignmentPolicy" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/assignmentpolicies/{}/accesspackage", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAssignmentPolicyAccessPackage", + "oracle": "Get-MgEntitlementManagementAssignmentPolicyAccessPackage" + }, + "replacementNoun": "EntitlementManagementAssignmentPolicyAccessPackage" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/assignmentpolicies/{}/catalog", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAssignmentPolicyCatalog", + "oracle": "Get-MgEntitlementManagementAssignmentPolicyCatalog" + }, + "replacementNoun": "EntitlementManagementAssignmentPolicyCatalog" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/assignmentpolicies/{}/customextensionstagesettings", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAssignmentPolicyCustomExtensionStageSetting", + "oracle": "Get-MgEntitlementManagementAssignmentPolicyCustomExtensionStageSetting" + }, + "replacementNoun": "EntitlementManagementAssignmentPolicyCustomExtensionStageSetting" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/assignmentpolicies/{}/customextensionstagesettings/{}", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAssignmentPolicyCustomExtensionStageSetting", + "oracle": "Get-MgEntitlementManagementAssignmentPolicyCustomExtensionStageSetting" + }, + "replacementNoun": "EntitlementManagementAssignmentPolicyCustomExtensionStageSetting" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/assignmentpolicies/{}/customextensionstagesettings/{}/customextension", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAssignmentPolicyCustomExtensionStageSettingCustomExtension", + "oracle": "Get-MgEntitlementManagementAssignmentPolicyCustomExtensionStageSettingCustomExtension" + }, + "replacementNoun": "EntitlementManagementAssignmentPolicyCustomExtensionStageSettingCustomExtension" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/assignmentpolicies/{}/customextensionstagesettings/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAssignmentPolicyCustomExtensionStageSettingCount", + "oracle": "Get-MgEntitlementManagementAssignmentPolicyCustomExtensionStageSettingCount" + }, + "replacementNoun": "EntitlementManagementAssignmentPolicyCustomExtensionStageSettingCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/assignmentpolicies/{}/questions", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAssignmentPolicyQuestion", + "oracle": "Get-MgEntitlementManagementAssignmentPolicyQuestion" + }, + "replacementNoun": "EntitlementManagementAssignmentPolicyQuestion" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/assignmentpolicies/{}/questions/{}", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAssignmentPolicyQuestion", + "oracle": "Get-MgEntitlementManagementAssignmentPolicyQuestion" + }, + "replacementNoun": "EntitlementManagementAssignmentPolicyQuestion" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/assignmentpolicies/{}/questions/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAssignmentPolicyQuestionCount", + "oracle": "Get-MgEntitlementManagementAssignmentPolicyQuestionCount" + }, + "replacementNoun": "EntitlementManagementAssignmentPolicyQuestionCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/assignmentpolicies/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAssignmentPolicyCount", + "oracle": "Get-MgEntitlementManagementAssignmentPolicyCount" + }, + "replacementNoun": "EntitlementManagementAssignmentPolicyCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/assignmentrequests", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAssignmentRequest", + "oracle": "Get-MgEntitlementManagementAssignmentRequest" + }, + "replacementNoun": "EntitlementManagementAssignmentRequest" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/assignmentrequests/{}", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAssignmentRequest", + "oracle": "Get-MgEntitlementManagementAssignmentRequest" + }, + "replacementNoun": "EntitlementManagementAssignmentRequest" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/assignmentrequests/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAssignmentRequestCount", + "oracle": "Get-MgEntitlementManagementAssignmentRequestCount" + }, + "replacementNoun": "EntitlementManagementAssignmentRequestCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/assignments", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAssignment", + "oracle": "Get-MgEntitlementManagementAssignment" + }, + "replacementNoun": "EntitlementManagementAssignment" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/assignments/{}", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAssignment", + "oracle": "Get-MgEntitlementManagementAssignment" + }, + "replacementNoun": "EntitlementManagementAssignment" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/assignments/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAssignmentCount", + "oracle": "Get-MgEntitlementManagementAssignmentCount" + }, + "replacementNoun": "EntitlementManagementAssignmentCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/assignments/additionalaccess", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAssignmentAdditionalAccess", + "oracle": "Get-MgEntitlementManagementAssignmentAdditional" + }, + "replacementNoun": "EntitlementManagementAssignmentAdditional" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/availableaccesspackages", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAvailableAccessPackage", + "oracle": "Get-MgEntitlementManagementAvailableAccessPackage" + }, + "replacementNoun": "EntitlementManagementAvailableAccessPackage" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/availableaccesspackages/{}", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAvailableAccessPackage", + "oracle": "Get-MgEntitlementManagementAvailableAccessPackage" + }, + "replacementNoun": "EntitlementManagementAvailableAccessPackage" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/availableaccesspackages/{}/resourcerolescopes", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAvailableAccessPackageResourceRoleScope", + "oracle": "Get-MgEntitlementManagementAvailableAccessPackageResourceRoleScope" + }, + "replacementNoun": "EntitlementManagementAvailableAccessPackageResourceRoleScope" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/availableaccesspackages/{}/resourcerolescopes/{}", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAvailableAccessPackageResourceRoleScope", + "oracle": "Get-MgEntitlementManagementAvailableAccessPackageResourceRoleScope" + }, + "replacementNoun": "EntitlementManagementAvailableAccessPackageResourceRoleScope" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/availableaccesspackages/{}/resourcerolescopes/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAvailableAccessPackageResourceRoleScopeCount", + "oracle": "Get-MgEntitlementManagementAvailableAccessPackageResourceRoleScopeCount" + }, + "replacementNoun": "EntitlementManagementAvailableAccessPackageResourceRoleScopeCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/availableaccesspackages/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAvailableAccessPackageCount", + "oracle": "Get-MgEntitlementManagementAvailableAccessPackageCount" + }, + "replacementNoun": "EntitlementManagementAvailableAccessPackageCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/catalogs", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementCatalog", + "oracle": "Get-MgEntitlementManagementCatalog" + }, + "replacementNoun": "EntitlementManagementCatalog" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementCatalog", + "oracle": "Get-MgEntitlementManagementCatalog" + }, + "replacementNoun": "EntitlementManagementCatalog" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/accesspackages/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementCatalogAccessPackageCount", + "oracle": "Get-MgEntitlementManagementCatalogAccessPackageCount" + }, + "replacementNoun": "EntitlementManagementCatalogAccessPackageCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/customworkflowextensions", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementCatalogCustomWorkflowExtension", + "oracle": "Get-MgEntitlementManagementCatalogCustomWorkflowExtension" + }, + "replacementNoun": "EntitlementManagementCatalogCustomWorkflowExtension" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/customworkflowextensions/{}", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementCatalogCustomWorkflowExtension", + "oracle": "Get-MgEntitlementManagementCatalogCustomWorkflowExtension" + }, + "replacementNoun": "EntitlementManagementCatalogCustomWorkflowExtension" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/customworkflowextensions/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementCatalogCustomWorkflowExtensionCount", + "oracle": "Get-MgEntitlementManagementCatalogCustomWorkflowExtensionCount" + }, + "replacementNoun": "EntitlementManagementCatalogCustomWorkflowExtensionCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRole", + "oracle": "Get-MgEntitlementManagementCatalogResourceRole" + }, + "replacementNoun": "EntitlementManagementCatalogResourceRole" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResource", + "oracle": "Get-MgEntitlementManagementCatalogResourceRoleResource" + }, + "replacementNoun": "EntitlementManagementCatalogResourceRoleResource" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/environment", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceEnvironment", + "oracle": "Get-MgEntitlementManagementCatalogResourceRoleResourceEnvironment" + }, + "replacementNoun": "EntitlementManagementCatalogResourceRoleResourceEnvironment" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScope", + "oracle": "Get-MgEntitlementManagementCatalogResourceRoleResourceScope" + }, + "replacementNoun": "EntitlementManagementCatalogResourceRoleResourceScope" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes/{}/resource", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResource", + "oracle": "Get-MgEntitlementManagementCatalogResourceRoleResourceScopeResource" + }, + "replacementNoun": "EntitlementManagementCatalogResourceRoleResourceScopeResource" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes/{}/resource/environment", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResourceEnvironment", + "oracle": "Get-MgEntitlementManagementCatalogResourceRoleResourceScopeResourceEnvironment" + }, + "replacementNoun": "EntitlementManagementCatalogResourceRoleResourceScopeResourceEnvironment" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes/{}/resource/roles", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResourceRole", + "oracle": "Get-MgEntitlementManagementCatalogResourceRoleResourceScopeResourceRole" + }, + "replacementNoun": "EntitlementManagementCatalogResourceRoleResourceScopeResourceRole" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes/{}/resource/roles/{}", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResourceRole", + "oracle": "Get-MgEntitlementManagementCatalogResourceRoleResourceScopeResourceRole" + }, + "replacementNoun": "EntitlementManagementCatalogResourceRoleResourceScopeResourceRole" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes/{}/resource/roles/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResourceRoleCount", + "oracle": "Get-MgEntitlementManagementCatalogResourceRoleResourceScopeResourceRoleCount" + }, + "replacementNoun": "EntitlementManagementCatalogResourceRoleResourceScopeResourceRoleCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeCount", + "oracle": "Get-MgEntitlementManagementCatalogResourceRoleResourceScopeCount" + }, + "replacementNoun": "EntitlementManagementCatalogResourceRoleResourceScopeCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleCount", + "oracle": "Get-MgEntitlementManagementCatalogResourceRoleCount" + }, + "replacementNoun": "EntitlementManagementCatalogResourceRoleCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementCatalogResource", + "oracle": "Get-MgEntitlementManagementCatalogResource" + }, + "replacementNoun": "EntitlementManagementCatalogResource" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementCatalogResource", + "oracle": "Get-MgEntitlementManagementCatalogResource" + }, + "replacementNoun": "EntitlementManagementCatalogResource" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/environment", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementCatalogResourceEnvironment", + "oracle": "Get-MgEntitlementManagementCatalogResourceEnvironment" + }, + "replacementNoun": "EntitlementManagementCatalogResourceEnvironment" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResource", + "oracle": "Get-MgEntitlementManagementCatalogResourceScopeResource" + }, + "replacementNoun": "EntitlementManagementCatalogResourceScopeResource" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/environment", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceEnvironment", + "oracle": "Get-MgEntitlementManagementCatalogResourceScopeResourceEnvironment" + }, + "replacementNoun": "EntitlementManagementCatalogResourceScopeResourceEnvironment" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRole", + "oracle": "Get-MgEntitlementManagementCatalogResourceScopeResourceRole" + }, + "replacementNoun": "EntitlementManagementCatalogResourceScopeResourceRole" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles/{}/resource", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResource", + "oracle": "Get-MgEntitlementManagementCatalogResourceScopeResourceRoleResource" + }, + "replacementNoun": "EntitlementManagementCatalogResourceScopeResourceRoleResource" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles/{}/resource/environment", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResourceEnvironment", + "oracle": "Get-MgEntitlementManagementCatalogResourceScopeResourceRoleResourceEnvironment" + }, + "replacementNoun": "EntitlementManagementCatalogResourceScopeResourceRoleResourceEnvironment" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleCount", + "oracle": "Get-MgEntitlementManagementCatalogResourceScopeResourceRoleCount" + }, + "replacementNoun": "EntitlementManagementCatalogResourceScopeResourceRoleCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeCount", + "oracle": "Get-MgEntitlementManagementCatalogResourceScopeCount" + }, + "replacementNoun": "EntitlementManagementCatalogResourceScopeCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementCatalogResourceCount", + "oracle": "Get-MgEntitlementManagementCatalogResourceCount" + }, + "replacementNoun": "EntitlementManagementCatalogResourceCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/roles/{}/resource/scopes", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResourceScope", + "oracle": "Get-MgEntitlementManagementCatalogResourceScopeResourceRoleResourceScope" + }, + "replacementNoun": "EntitlementManagementCatalogResourceScopeResourceRoleResourceScope" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/roles/{}/resource/scopes/{}", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResourceScope", + "oracle": "Get-MgEntitlementManagementCatalogResourceScopeResourceRoleResourceScope" + }, + "replacementNoun": "EntitlementManagementCatalogResourceScopeResourceRoleResourceScope" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/roles/{}/resource/scopes/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResourceScopeCount", + "oracle": "Get-MgEntitlementManagementCatalogResourceScopeResourceRoleResourceScopeCount" + }, + "replacementNoun": "EntitlementManagementCatalogResourceScopeResourceRoleResourceScopeCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/catalogs/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementCatalogCount", + "oracle": "Get-MgEntitlementManagementCatalogCount" + }, + "replacementNoun": "EntitlementManagementCatalogCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/connectedorganizations", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementConnectedOrganization", + "oracle": "Get-MgEntitlementManagementConnectedOrganization" + }, + "replacementNoun": "EntitlementManagementConnectedOrganization" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/connectedorganizations/{}", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementConnectedOrganization", + "oracle": "Get-MgEntitlementManagementConnectedOrganization" + }, + "replacementNoun": "EntitlementManagementConnectedOrganization" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/connectedorganizations/{}/externalsponsors", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementConnectedOrganizationExternalSponsor", + "oracle": "Get-MgEntitlementManagementConnectedOrganizationExternalSponsor" + }, + "replacementNoun": "EntitlementManagementConnectedOrganizationExternalSponsor" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/connectedorganizations/{}/externalsponsors/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementConnectedOrganizationExternalSponsorCount", + "oracle": "Get-MgEntitlementManagementConnectedOrganizationExternalSponsorCount" + }, + "replacementNoun": "EntitlementManagementConnectedOrganizationExternalSponsorCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/connectedorganizations/{}/externalsponsors/$ref", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementConnectedOrganizationExternalSponsorByRef", + "oracle": "Get-MgEntitlementManagementConnectedOrganizationExternalSponsorByRef" + }, + "replacementNoun": "EntitlementManagementConnectedOrganizationExternalSponsorByRef" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/connectedorganizations/{}/internalsponsors", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementConnectedOrganizationInternalSponsor", + "oracle": "Get-MgEntitlementManagementConnectedOrganizationInternalSponsor" + }, + "replacementNoun": "EntitlementManagementConnectedOrganizationInternalSponsor" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/connectedorganizations/{}/internalsponsors/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementConnectedOrganizationInternalSponsorCount", + "oracle": "Get-MgEntitlementManagementConnectedOrganizationInternalSponsorCount" + }, + "replacementNoun": "EntitlementManagementConnectedOrganizationInternalSponsorCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/connectedorganizations/{}/internalsponsors/$ref", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementConnectedOrganizationInternalSponsorByRef", + "oracle": "Get-MgEntitlementManagementConnectedOrganizationInternalSponsorByRef" + }, + "replacementNoun": "EntitlementManagementConnectedOrganizationInternalSponsorByRef" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/connectedorganizations/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementConnectedOrganizationCount", + "oracle": "Get-MgEntitlementManagementConnectedOrganizationCount" + }, + "replacementNoun": "EntitlementManagementConnectedOrganizationCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/controlconfigurations", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementControlConfiguration", + "oracle": "Get-MgEntitlementManagementControlConfiguration" + }, + "replacementNoun": "EntitlementManagementControlConfiguration" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/controlconfigurations/{}", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementControlConfiguration", + "oracle": "Get-MgEntitlementManagementControlConfiguration" + }, + "replacementNoun": "EntitlementManagementControlConfiguration" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/controlconfigurations/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementControlConfigurationCount", + "oracle": "Get-MgEntitlementManagementControlConfigurationCount" + }, + "replacementNoun": "EntitlementManagementControlConfigurationCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourceenvironments", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceEnvironment", + "oracle": "Get-MgEntitlementManagementResourceEnvironment" + }, + "replacementNoun": "EntitlementManagementResourceEnvironment" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceEnvironment", + "oracle": "Get-MgEntitlementManagementResourceEnvironment" + }, + "replacementNoun": "EntitlementManagementResourceEnvironment" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResource", + "oracle": "Get-MgEntitlementManagementResourceEnvironmentResource" + }, + "replacementNoun": "EntitlementManagementResourceEnvironmentResource" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/{}", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResource", + "oracle": "Get-MgEntitlementManagementResourceEnvironmentResource" + }, + "replacementNoun": "EntitlementManagementResourceEnvironmentResource" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/{}/roles", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRole", + "oracle": "Get-MgEntitlementManagementResourceEnvironmentResourceRole" + }, + "replacementNoun": "EntitlementManagementResourceEnvironmentResourceRole" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/{}/roles/{}", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRole", + "oracle": "Get-MgEntitlementManagementResourceEnvironmentResourceRole" + }, + "replacementNoun": "EntitlementManagementResourceEnvironmentResourceRole" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/{}/roles/{}/resource", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResource", + "oracle": "Get-MgEntitlementManagementResourceEnvironmentResourceRoleResource" + }, + "replacementNoun": "EntitlementManagementResourceEnvironmentResourceRoleResource" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/{}/roles/{}/resource/environment", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResourceEnvironment", + "oracle": "Get-MgEntitlementManagementResourceEnvironmentResourceRoleResourceEnvironment" + }, + "replacementNoun": "EntitlementManagementResourceEnvironmentResourceRoleResourceEnvironment" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/{}/roles/{}/resource/scopes", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResourceScope", + "oracle": "Get-MgEntitlementManagementResourceEnvironmentResourceRoleResourceScope" + }, + "replacementNoun": "EntitlementManagementResourceEnvironmentResourceRoleResourceScope" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/{}/roles/{}/resource/scopes/{}", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResourceScope", + "oracle": "Get-MgEntitlementManagementResourceEnvironmentResourceRoleResourceScope" + }, + "replacementNoun": "EntitlementManagementResourceEnvironmentResourceRoleResourceScope" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/{}/roles/{}/resource/scopes/{}/resource", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResourceScopeResource", + "oracle": "Get-MgEntitlementManagementResourceEnvironmentResourceRoleResourceScopeResource" + }, + "replacementNoun": "EntitlementManagementResourceEnvironmentResourceRoleResourceScopeResource" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/{}/roles/{}/resource/scopes/{}/resource/environment", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResourceScopeResourceEnvironment", + "oracle": "Get-MgEntitlementManagementResourceEnvironmentResourceRoleResourceScopeResourceEnvironment" + }, + "replacementNoun": "EntitlementManagementResourceEnvironmentResourceRoleResourceScopeResourceEnvironment" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/{}/roles/{}/resource/scopes/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResourceScopeCount", + "oracle": "Get-MgEntitlementManagementResourceEnvironmentResourceRoleResourceScopeCount" + }, + "replacementNoun": "EntitlementManagementResourceEnvironmentResourceRoleResourceScopeCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/{}/roles/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleCount", + "oracle": "Get-MgEntitlementManagementResourceEnvironmentResourceRoleCount" + }, + "replacementNoun": "EntitlementManagementResourceEnvironmentResourceRoleCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/{}/scopes", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScope", + "oracle": "Get-MgEntitlementManagementResourceEnvironmentResourceScope" + }, + "replacementNoun": "EntitlementManagementResourceEnvironmentResourceScope" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/{}/scopes/{}", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScope", + "oracle": "Get-MgEntitlementManagementResourceEnvironmentResourceScope" + }, + "replacementNoun": "EntitlementManagementResourceEnvironmentResourceScope" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/{}/scopes/{}/resource", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResource", + "oracle": "Get-MgEntitlementManagementResourceEnvironmentResourceScopeResource" + }, + "replacementNoun": "EntitlementManagementResourceEnvironmentResourceScopeResource" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/{}/scopes/{}/resource/environment", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResourceEnvironment", + "oracle": "Get-MgEntitlementManagementResourceEnvironmentResourceScopeResourceEnvironment" + }, + "replacementNoun": "EntitlementManagementResourceEnvironmentResourceScopeResourceEnvironment" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/{}/scopes/{}/resource/roles", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResourceRole", + "oracle": "Get-MgEntitlementManagementResourceEnvironmentResourceScopeResourceRole" + }, + "replacementNoun": "EntitlementManagementResourceEnvironmentResourceScopeResourceRole" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/{}/scopes/{}/resource/roles/{}", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResourceRole", + "oracle": "Get-MgEntitlementManagementResourceEnvironmentResourceScopeResourceRole" + }, + "replacementNoun": "EntitlementManagementResourceEnvironmentResourceScopeResourceRole" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/{}/scopes/{}/resource/roles/{}/resource", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResourceRoleResource", + "oracle": "Get-MgEntitlementManagementResourceEnvironmentResourceScopeResourceRoleResource" + }, + "replacementNoun": "EntitlementManagementResourceEnvironmentResourceScopeResourceRoleResource" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/{}/scopes/{}/resource/roles/{}/resource/environment", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResourceRoleResourceEnvironment", + "oracle": "Get-MgEntitlementManagementResourceEnvironmentResourceScopeResourceRoleResourceEnvironment" + }, + "replacementNoun": "EntitlementManagementResourceEnvironmentResourceScopeResourceRoleResourceEnvironment" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/{}/scopes/{}/resource/roles/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResourceRoleCount", + "oracle": "Get-MgEntitlementManagementResourceEnvironmentResourceScopeResourceRoleCount" + }, + "replacementNoun": "EntitlementManagementResourceEnvironmentResourceScopeResourceRoleCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/{}/scopes/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeCount", + "oracle": "Get-MgEntitlementManagementResourceEnvironmentResourceScopeCount" + }, + "replacementNoun": "EntitlementManagementResourceEnvironmentResourceScopeCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceCount", + "oracle": "Get-MgEntitlementManagementResourceEnvironmentResourceCount" + }, + "replacementNoun": "EntitlementManagementResourceEnvironmentResourceCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentCount", + "oracle": "Get-MgEntitlementManagementResourceEnvironmentCount" + }, + "replacementNoun": "EntitlementManagementResourceEnvironmentCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequest", + "oracle": "Get-MgEntitlementManagementResourceRequest" + }, + "replacementNoun": "EntitlementManagementResourceRequest" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequest", + "oracle": "Get-MgEntitlementManagementResourceRequest" + }, + "replacementNoun": "EntitlementManagementResourceRequest" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalog", + "oracle": "Get-MgEntitlementManagementResourceRequestCatalog" + }, + "replacementNoun": "EntitlementManagementResourceRequestCatalog" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/accesspackages", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogAccessPackage", + "oracle": "Get-MgEntitlementManagementResourceRequestCatalogAccessPackage" + }, + "replacementNoun": "EntitlementManagementResourceRequestCatalogAccessPackage" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/accesspackages/{}", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogAccessPackage", + "oracle": "Get-MgEntitlementManagementResourceRequestCatalogAccessPackage" + }, + "replacementNoun": "EntitlementManagementResourceRequestCatalogAccessPackage" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/accesspackages/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogAccessPackageCount", + "oracle": "Get-MgEntitlementManagementResourceRequestCatalogAccessPackageCount" + }, + "replacementNoun": "EntitlementManagementResourceRequestCatalogAccessPackageCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/customworkflowextensions", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogCustomWorkflowExtension", + "oracle": "Get-MgEntitlementManagementResourceRequestCatalogCustomWorkflowExtension" + }, + "replacementNoun": "EntitlementManagementResourceRequestCatalogCustomWorkflowExtension" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/customworkflowextensions/{}", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogCustomWorkflowExtension", + "oracle": "Get-MgEntitlementManagementResourceRequestCatalogCustomWorkflowExtension" + }, + "replacementNoun": "EntitlementManagementResourceRequestCatalogCustomWorkflowExtension" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/customworkflowextensions/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogCustomWorkflowExtensionCount", + "oracle": "Get-MgEntitlementManagementResourceRequestCatalogCustomWorkflowExtensionCount" + }, + "replacementNoun": "EntitlementManagementResourceRequestCatalogCustomWorkflowExtensionCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRole", + "oracle": "Get-MgEntitlementManagementResourceRequestCatalogResourceRole" + }, + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceRole" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResource", + "oracle": "Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResource" + }, + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceRoleResource" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/environment", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceEnvironment", + "oracle": "Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceEnvironment" + }, + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceRoleResourceEnvironment" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScope", + "oracle": "Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScope" + }, + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceRoleResourceScope" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes/{}/resource", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResource", + "oracle": "Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResource" + }, + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResource" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes/{}/resource/environment", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceEnvironment", + "oracle": "Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceEnvironment" + }, + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceEnvironment" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes/{}/resource/roles", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRole", + "oracle": "Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRole" + }, + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRole" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes/{}/resource/roles/{}", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRole", + "oracle": "Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRole" + }, + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRole" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes/{}/resource/roles/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRoleCount", + "oracle": "Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRoleCount" + }, + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRoleCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeCount", + "oracle": "Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeCount" + }, + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceRoleResourceScopeCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleCount", + "oracle": "Get-MgEntitlementManagementResourceRequestCatalogResourceRoleCount" + }, + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceRoleCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResource", + "oracle": "Get-MgEntitlementManagementResourceRequestCatalogResource" + }, + "replacementNoun": "EntitlementManagementResourceRequestCatalogResource" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResource", + "oracle": "Get-MgEntitlementManagementResourceRequestCatalogResource" + }, + "replacementNoun": "EntitlementManagementResourceRequestCatalogResource" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/environment", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceEnvironment", + "oracle": "Get-MgEntitlementManagementResourceRequestCatalogResourceEnvironment" + }, + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceEnvironment" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResource", + "oracle": "Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResource" + }, + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceScopeResource" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/environment", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceEnvironment", + "oracle": "Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceEnvironment" + }, + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceScopeResourceEnvironment" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRole", + "oracle": "Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRole" + }, + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceScopeResourceRole" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles/{}/resource", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResource", + "oracle": "Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResource" + }, + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResource" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles/{}/resource/environment", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceEnvironment", + "oracle": "Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceEnvironment" + }, + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceEnvironment" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleCount", + "oracle": "Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleCount" + }, + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceScopeResourceRoleCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeCount", + "oracle": "Get-MgEntitlementManagementResourceRequestCatalogResourceScopeCount" + }, + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceScopeCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceCount", + "oracle": "Get-MgEntitlementManagementResourceRequestCatalogResourceCount" + }, + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/roles/{}/resource/scopes", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceScope", + "oracle": "Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceScope" + }, + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceScope" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/roles/{}/resource/scopes/{}", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceScope", + "oracle": "Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceScope" + }, + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceScope" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/roles/{}/resource/scopes/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceScopeCount", + "oracle": "Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceScopeCount" + }, + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceScopeCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestResource", + "oracle": "Get-MgEntitlementManagementResourceRequestResource" + }, + "replacementNoun": "EntitlementManagementResourceRequestResource" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource/environment", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceEnvironment", + "oracle": "Get-MgEntitlementManagementResourceRequestResourceEnvironment" + }, + "replacementNoun": "EntitlementManagementResourceRequestResourceEnvironment" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource/roles", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRole", + "oracle": "Get-MgEntitlementManagementResourceRequestResourceRole" + }, + "replacementNoun": "EntitlementManagementResourceRequestResourceRole" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource/roles/{}", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRole", + "oracle": "Get-MgEntitlementManagementResourceRequestResourceRole" + }, + "replacementNoun": "EntitlementManagementResourceRequestResourceRole" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource/roles/{}/resource", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResource", + "oracle": "Get-MgEntitlementManagementResourceRequestResourceRoleResource" + }, + "replacementNoun": "EntitlementManagementResourceRequestResourceRoleResource" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource/roles/{}/resource/environment", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResourceEnvironment", + "oracle": "Get-MgEntitlementManagementResourceRequestResourceRoleResourceEnvironment" + }, + "replacementNoun": "EntitlementManagementResourceRequestResourceRoleResourceEnvironment" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource/roles/{}/resource/scopes", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResourceScope", + "oracle": "Get-MgEntitlementManagementResourceRequestResourceRoleResourceScope" + }, + "replacementNoun": "EntitlementManagementResourceRequestResourceRoleResourceScope" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource/roles/{}/resource/scopes/{}", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResourceScope", + "oracle": "Get-MgEntitlementManagementResourceRequestResourceRoleResourceScope" + }, + "replacementNoun": "EntitlementManagementResourceRequestResourceRoleResourceScope" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource/roles/{}/resource/scopes/{}/resource", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResourceScopeResource", + "oracle": "Get-MgEntitlementManagementResourceRequestResourceRoleResourceScopeResource" + }, + "replacementNoun": "EntitlementManagementResourceRequestResourceRoleResourceScopeResource" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource/roles/{}/resource/scopes/{}/resource/environment", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResourceScopeResourceEnvironment", + "oracle": "Get-MgEntitlementManagementResourceRequestResourceRoleResourceScopeResourceEnvironment" + }, + "replacementNoun": "EntitlementManagementResourceRequestResourceRoleResourceScopeResourceEnvironment" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource/roles/{}/resource/scopes/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResourceScopeCount", + "oracle": "Get-MgEntitlementManagementResourceRequestResourceRoleResourceScopeCount" + }, + "replacementNoun": "EntitlementManagementResourceRequestResourceRoleResourceScopeCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource/roles/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleCount", + "oracle": "Get-MgEntitlementManagementResourceRequestResourceRoleCount" + }, + "replacementNoun": "EntitlementManagementResourceRequestResourceRoleCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource/scopes", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScope", + "oracle": "Get-MgEntitlementManagementResourceRequestResourceScope" + }, + "replacementNoun": "EntitlementManagementResourceRequestResourceScope" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource/scopes/{}", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScope", + "oracle": "Get-MgEntitlementManagementResourceRequestResourceScope" + }, + "replacementNoun": "EntitlementManagementResourceRequestResourceScope" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource/scopes/{}/resource", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResource", + "oracle": "Get-MgEntitlementManagementResourceRequestResourceScopeResource" + }, + "replacementNoun": "EntitlementManagementResourceRequestResourceScopeResource" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource/scopes/{}/resource/environment", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResourceEnvironment", + "oracle": "Get-MgEntitlementManagementResourceRequestResourceScopeResourceEnvironment" + }, + "replacementNoun": "EntitlementManagementResourceRequestResourceScopeResourceEnvironment" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource/scopes/{}/resource/roles", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResourceRole", + "oracle": "Get-MgEntitlementManagementResourceRequestResourceScopeResourceRole" + }, + "replacementNoun": "EntitlementManagementResourceRequestResourceScopeResourceRole" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource/scopes/{}/resource/roles/{}", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResourceRole", + "oracle": "Get-MgEntitlementManagementResourceRequestResourceScopeResourceRole" + }, + "replacementNoun": "EntitlementManagementResourceRequestResourceScopeResourceRole" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource/scopes/{}/resource/roles/{}/resource", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResourceRoleResource", + "oracle": "Get-MgEntitlementManagementResourceRequestResourceScopeResourceRoleResource" + }, + "replacementNoun": "EntitlementManagementResourceRequestResourceScopeResourceRoleResource" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource/scopes/{}/resource/roles/{}/resource/environment", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResourceRoleResourceEnvironment", + "oracle": "Get-MgEntitlementManagementResourceRequestResourceScopeResourceRoleResourceEnvironment" + }, + "replacementNoun": "EntitlementManagementResourceRequestResourceScopeResourceRoleResourceEnvironment" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource/scopes/{}/resource/roles/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResourceRoleCount", + "oracle": "Get-MgEntitlementManagementResourceRequestResourceScopeResourceRoleCount" + }, + "replacementNoun": "EntitlementManagementResourceRequestResourceScopeResourceRoleCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource/scopes/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeCount", + "oracle": "Get-MgEntitlementManagementResourceRequestResourceScopeCount" + }, + "replacementNoun": "EntitlementManagementResourceRequestResourceScopeCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestCount", + "oracle": "Get-MgEntitlementManagementResourceRequestCount" + }, + "replacementNoun": "EntitlementManagementResourceRequestCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRoleScope", + "oracle": "Get-MgEntitlementManagementResourceRoleScope" + }, + "replacementNoun": "EntitlementManagementResourceRoleScope" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRoleScope", + "oracle": "Get-MgEntitlementManagementResourceRoleScope" + }, + "replacementNoun": "EntitlementManagementResourceRoleScope" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/role", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRole", + "oracle": "Get-MgEntitlementManagementResourceRoleScopeRole" + }, + "replacementNoun": "EntitlementManagementResourceRoleScopeRole" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/role/resource", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResource", + "oracle": "Get-MgEntitlementManagementResourceRoleScopeRoleResource" + }, + "replacementNoun": "EntitlementManagementResourceRoleScopeRoleResource" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/role/resource/environment", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceEnvironment", + "oracle": "Get-MgEntitlementManagementResourceRoleScopeRoleResourceEnvironment" + }, + "replacementNoun": "EntitlementManagementResourceRoleScopeRoleResourceEnvironment" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/role/resource/roles", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceRole", + "oracle": "Get-MgEntitlementManagementResourceRoleScopeRoleResourceRole" + }, + "replacementNoun": "EntitlementManagementResourceRoleScopeRoleResourceRole" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/role/resource/roles/{}", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceRole", + "oracle": "Get-MgEntitlementManagementResourceRoleScopeRoleResourceRole" + }, + "replacementNoun": "EntitlementManagementResourceRoleScopeRoleResourceRole" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/role/resource/roles/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceRoleCount", + "oracle": "Get-MgEntitlementManagementResourceRoleScopeRoleResourceRoleCount" + }, + "replacementNoun": "EntitlementManagementResourceRoleScopeRoleResourceRoleCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/role/resource/scopes", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScope", + "oracle": "Get-MgEntitlementManagementResourceRoleScopeRoleResourceScope" + }, + "replacementNoun": "EntitlementManagementResourceRoleScopeRoleResourceScope" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/role/resource/scopes/{}", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScope", + "oracle": "Get-MgEntitlementManagementResourceRoleScopeRoleResourceScope" + }, + "replacementNoun": "EntitlementManagementResourceRoleScopeRoleResourceScope" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/role/resource/scopes/{}/resource", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScopeResource", + "oracle": "Get-MgEntitlementManagementResourceRoleScopeRoleResourceScopeResource" + }, + "replacementNoun": "EntitlementManagementResourceRoleScopeRoleResourceScopeResource" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/role/resource/scopes/{}/resource/environment", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScopeResourceEnvironment", + "oracle": "Get-MgEntitlementManagementResourceRoleScopeRoleResourceScopeResourceEnvironment" + }, + "replacementNoun": "EntitlementManagementResourceRoleScopeRoleResourceScopeResourceEnvironment" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/role/resource/scopes/{}/resource/roles", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScopeResourceRole", + "oracle": "Get-MgEntitlementManagementResourceRoleScopeRoleResourceScopeResourceRole" + }, + "replacementNoun": "EntitlementManagementResourceRoleScopeRoleResourceScopeResourceRole" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/role/resource/scopes/{}/resource/roles/{}", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScopeResourceRole", + "oracle": "Get-MgEntitlementManagementResourceRoleScopeRoleResourceScopeResourceRole" + }, + "replacementNoun": "EntitlementManagementResourceRoleScopeRoleResourceScopeResourceRole" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/role/resource/scopes/{}/resource/roles/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScopeResourceRoleCount", + "oracle": "Get-MgEntitlementManagementResourceRoleScopeRoleResourceScopeResourceRoleCount" + }, + "replacementNoun": "EntitlementManagementResourceRoleScopeRoleResourceScopeResourceRoleCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/role/resource/scopes/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScopeCount", + "oracle": "Get-MgEntitlementManagementResourceRoleScopeRoleResourceScopeCount" + }, + "replacementNoun": "EntitlementManagementResourceRoleScopeRoleResourceScopeCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/scope/resource", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResource", + "oracle": "Get-MgEntitlementManagementResourceRoleScopeResource" + }, + "replacementNoun": "EntitlementManagementResourceRoleScopeResource" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/scope/resource/environment", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceEnvironment", + "oracle": "Get-MgEntitlementManagementResourceRoleScopeResourceEnvironment" + }, + "replacementNoun": "EntitlementManagementResourceRoleScopeResourceEnvironment" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/scope/resource/roles", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRole", + "oracle": "Get-MgEntitlementManagementResourceRoleScopeResourceRole" + }, + "replacementNoun": "EntitlementManagementResourceRoleScopeResourceRole" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/scope/resource/roles/{}", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRole", + "oracle": "Get-MgEntitlementManagementResourceRoleScopeResourceRole" + }, + "replacementNoun": "EntitlementManagementResourceRoleScopeResourceRole" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/scope/resource/roles/{}/resource", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRoleResource", + "oracle": "Get-MgEntitlementManagementResourceRoleScopeResourceRoleResource" + }, + "replacementNoun": "EntitlementManagementResourceRoleScopeResourceRoleResource" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/scope/resource/roles/{}/resource/environment", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRoleResourceEnvironment", + "oracle": "Get-MgEntitlementManagementResourceRoleScopeResourceRoleResourceEnvironment" + }, + "replacementNoun": "EntitlementManagementResourceRoleScopeResourceRoleResourceEnvironment" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/scope/resource/roles/{}/resource/scopes", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRoleResourceScope", + "oracle": "Get-MgEntitlementManagementResourceRoleScopeResourceRoleResourceScope" + }, + "replacementNoun": "EntitlementManagementResourceRoleScopeResourceRoleResourceScope" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/scope/resource/roles/{}/resource/scopes/{}", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRoleResourceScope", + "oracle": "Get-MgEntitlementManagementResourceRoleScopeResourceRoleResourceScope" + }, + "replacementNoun": "EntitlementManagementResourceRoleScopeResourceRoleResourceScope" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/scope/resource/roles/{}/resource/scopes/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRoleResourceScopeCount", + "oracle": "Get-MgEntitlementManagementResourceRoleScopeResourceRoleResourceScopeCount" + }, + "replacementNoun": "EntitlementManagementResourceRoleScopeResourceRoleResourceScopeCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/scope/resource/roles/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRoleCount", + "oracle": "Get-MgEntitlementManagementResourceRoleScopeResourceRoleCount" + }, + "replacementNoun": "EntitlementManagementResourceRoleScopeResourceRoleCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/scope/resource/scopes", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceScope", + "oracle": "Get-MgEntitlementManagementResourceRoleScopeResourceScope" + }, + "replacementNoun": "EntitlementManagementResourceRoleScopeResourceScope" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/scope/resource/scopes/{}", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceScope", + "oracle": "Get-MgEntitlementManagementResourceRoleScopeResourceScope" + }, + "replacementNoun": "EntitlementManagementResourceRoleScopeResourceScope" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/scope/resource/scopes/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceScopeCount", + "oracle": "Get-MgEntitlementManagementResourceRoleScopeResourceScopeCount" + }, + "replacementNoun": "EntitlementManagementResourceRoleScopeResourceScopeCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeCount", + "oracle": "Get-MgEntitlementManagementResourceRoleScopeCount" + }, + "replacementNoun": "EntitlementManagementResourceRoleScopeCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resources", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResource", + "oracle": "Get-MgEntitlementManagementResource" + }, + "replacementNoun": "EntitlementManagementResource" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resources/{}", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResource", + "oracle": "Get-MgEntitlementManagementResource" + }, + "replacementNoun": "EntitlementManagementResource" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resources/{}/roles", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRole", + "oracle": "Get-MgEntitlementManagementResourceRole" + }, + "replacementNoun": "EntitlementManagementResourceRole" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resources/{}/roles/{}", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRole", + "oracle": "Get-MgEntitlementManagementResourceRole" + }, + "replacementNoun": "EntitlementManagementResourceRole" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resources/{}/roles/{}/resource", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRoleResource", + "oracle": "Get-MgEntitlementManagementResourceRoleResource" + }, + "replacementNoun": "EntitlementManagementResourceRoleResource" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resources/{}/roles/{}/resource/environment", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRoleResourceEnvironment", + "oracle": "Get-MgEntitlementManagementResourceRoleResourceEnvironment" + }, + "replacementNoun": "EntitlementManagementResourceRoleResourceEnvironment" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resources/{}/roles/{}/resource/scopes", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRoleResourceScope", + "oracle": "Get-MgEntitlementManagementResourceRoleResourceScope" + }, + "replacementNoun": "EntitlementManagementResourceRoleResourceScope" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resources/{}/roles/{}/resource/scopes/{}", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRoleResourceScope", + "oracle": "Get-MgEntitlementManagementResourceRoleResourceScope" + }, + "replacementNoun": "EntitlementManagementResourceRoleResourceScope" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resources/{}/roles/{}/resource/scopes/{}/resource", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRoleResourceScopeResource", + "oracle": "Get-MgEntitlementManagementResourceRoleResourceScopeResource" + }, + "replacementNoun": "EntitlementManagementResourceRoleResourceScopeResource" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resources/{}/roles/{}/resource/scopes/{}/resource/environment", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRoleResourceScopeResourceEnvironment", + "oracle": "Get-MgEntitlementManagementResourceRoleResourceScopeResourceEnvironment" + }, + "replacementNoun": "EntitlementManagementResourceRoleResourceScopeResourceEnvironment" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resources/{}/roles/{}/resource/scopes/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRoleResourceScopeCount", + "oracle": "Get-MgEntitlementManagementResourceRoleResourceScopeCount" + }, + "replacementNoun": "EntitlementManagementResourceRoleResourceScopeCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resources/{}/roles/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRoleCount", + "oracle": "Get-MgEntitlementManagementResourceRoleCount" + }, + "replacementNoun": "EntitlementManagementResourceRoleCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resources/{}/scopes", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceScope", + "oracle": "Get-MgEntitlementManagementResourceScope" + }, + "replacementNoun": "EntitlementManagementResourceScope" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resources/{}/scopes/{}", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceScope", + "oracle": "Get-MgEntitlementManagementResourceScope" + }, + "replacementNoun": "EntitlementManagementResourceScope" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resources/{}/scopes/{}/resource", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceScopeResource", + "oracle": "Get-MgEntitlementManagementResourceScopeResource" + }, + "replacementNoun": "EntitlementManagementResourceScopeResource" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resources/{}/scopes/{}/resource/environment", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceScopeResourceEnvironment", + "oracle": "Get-MgEntitlementManagementResourceScopeResourceEnvironment" + }, + "replacementNoun": "EntitlementManagementResourceScopeResourceEnvironment" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resources/{}/scopes/{}/resource/roles", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceScopeResourceRole", + "oracle": "Get-MgEntitlementManagementResourceScopeResourceRole" + }, + "replacementNoun": "EntitlementManagementResourceScopeResourceRole" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resources/{}/scopes/{}/resource/roles/{}", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceScopeResourceRole", + "oracle": "Get-MgEntitlementManagementResourceScopeResourceRole" + }, + "replacementNoun": "EntitlementManagementResourceScopeResourceRole" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resources/{}/scopes/{}/resource/roles/{}/resource", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceScopeResourceRoleResource", + "oracle": "Get-MgEntitlementManagementResourceScopeResourceRoleResource" + }, + "replacementNoun": "EntitlementManagementResourceScopeResourceRoleResource" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resources/{}/scopes/{}/resource/roles/{}/resource/environment", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceScopeResourceRoleResourceEnvironment", + "oracle": "Get-MgEntitlementManagementResourceScopeResourceRoleResourceEnvironment" + }, + "replacementNoun": "EntitlementManagementResourceScopeResourceRoleResourceEnvironment" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resources/{}/scopes/{}/resource/roles/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceScopeResourceRoleCount", + "oracle": "Get-MgEntitlementManagementResourceScopeResourceRoleCount" + }, + "replacementNoun": "EntitlementManagementResourceScopeResourceRoleCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resources/{}/scopes/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceScopeCount", + "oracle": "Get-MgEntitlementManagementResourceScopeCount" + }, + "replacementNoun": "EntitlementManagementResourceScopeCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resources/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceCount", + "oracle": "Get-MgEntitlementManagementResourceCount" + }, + "replacementNoun": "EntitlementManagementResourceCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/settings", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementSetting", + "oracle": "Get-MgEntitlementManagementSetting" + }, + "replacementNoun": "EntitlementManagementSetting" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/subjects", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementSubject", + "oracle": "Get-MgEntitlementManagementSubject" + }, + "replacementNoun": "EntitlementManagementSubject" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/subjects/{}", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementSubject", + "oracle": "Get-MgEntitlementManagementSubject" + }, + "replacementNoun": "EntitlementManagementSubject" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/subjects/{}/connectedorganization", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementSubjectConnectedOrganization", + "oracle": "Get-MgEntitlementManagementSubjectConnectedOrganization" + }, + "replacementNoun": "EntitlementManagementSubjectConnectedOrganization" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/subjects/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementSubjectCount", + "oracle": "Get-MgEntitlementManagementSubjectCount" + }, + "replacementNoun": "EntitlementManagementSubjectCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/termsofuse/agreementacceptances", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceTermOfUseAgreementAcceptance", + "oracle": "Get-MgIdentityGovernanceTermsOfUseAgreementAcceptance" + }, + "replacementNoun": "IdentityGovernanceTermsOfUseAgreementAcceptance" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/termsofuse/agreementacceptances/{}", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceTermOfUseAgreementAcceptance", + "oracle": "Get-MgIdentityGovernanceTermsOfUseAgreementAcceptance" + }, + "replacementNoun": "IdentityGovernanceTermsOfUseAgreementAcceptance" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/termsofuse/agreementacceptances/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceTermOfUseAgreementAcceptanceCount", + "oracle": "Get-MgIdentityGovernanceTermsOfUseAgreementAcceptanceCount" + }, + "replacementNoun": "IdentityGovernanceTermsOfUseAgreementAcceptanceCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/termsofuse/agreements", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceTermOfUseAgreement", + "oracle": "Get-MgIdentityGovernanceTermsOfUseAgreement" + }, + "replacementNoun": "IdentityGovernanceTermsOfUseAgreement" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/termsofuse/agreements/{}", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceTermOfUseAgreement", + "oracle": "Get-MgIdentityGovernanceTermsOfUseAgreement" + }, + "replacementNoun": "IdentityGovernanceTermsOfUseAgreement" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/termsofuse/agreements/{}/file/localizations", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceTermOfUseAgreementFileLocalization", + "oracle": "Get-MgIdentityGovernanceTermsOfUseAgreementFileLocalization" + }, + "replacementNoun": "IdentityGovernanceTermsOfUseAgreementFileLocalization" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/termsofuse/agreements/{}/file/localizations/{}", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceTermOfUseAgreementFileLocalization", + "oracle": "Get-MgIdentityGovernanceTermsOfUseAgreementFileLocalization" + }, + "replacementNoun": "IdentityGovernanceTermsOfUseAgreementFileLocalization" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/termsofuse/agreements/{}/file/localizations/{}/versions", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceTermOfUseAgreementFileLocalizationVersion", + "oracle": "Get-MgIdentityGovernanceTermsOfUseAgreementFileLocalizationVersion" + }, + "replacementNoun": "IdentityGovernanceTermsOfUseAgreementFileLocalizationVersion" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/termsofuse/agreements/{}/file/localizations/{}/versions/{}", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceTermOfUseAgreementFileLocalizationVersion", + "oracle": "Get-MgIdentityGovernanceTermsOfUseAgreementFileLocalizationVersion" + }, + "replacementNoun": "IdentityGovernanceTermsOfUseAgreementFileLocalizationVersion" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/termsofuse/agreements/{}/file/localizations/{}/versions/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceTermOfUseAgreementFileLocalizationVersionCount", + "oracle": "Get-MgIdentityGovernanceTermsOfUseAgreementFileLocalizationVersionCount" + }, + "replacementNoun": "IdentityGovernanceTermsOfUseAgreementFileLocalizationVersionCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/termsofuse/agreements/{}/file/localizations/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceTermOfUseAgreementFileLocalizationCount", + "oracle": "Get-MgIdentityGovernanceTermsOfUseAgreementFileLocalizationCount" + }, + "replacementNoun": "IdentityGovernanceTermsOfUseAgreementFileLocalizationCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/termsofuse/agreements/{}/files", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceTermOfUseAgreementFile", + "oracle": "Get-MgIdentityGovernanceTermsOfUseAgreementFile" + }, + "replacementNoun": "IdentityGovernanceTermsOfUseAgreementFile" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/termsofuse/agreements/{}/files/{}/versions", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceTermOfUseAgreementFileVersion", + "oracle": "Get-MgIdentityGovernanceTermsOfUseAgreementFileVersion" + }, + "replacementNoun": "IdentityGovernanceTermsOfUseAgreementFileVersion" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/termsofuse/agreements/{}/files/{}/versions/{}", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceTermOfUseAgreementFileVersion", + "oracle": "Get-MgIdentityGovernanceTermsOfUseAgreementFileVersion" + }, + "replacementNoun": "IdentityGovernanceTermsOfUseAgreementFileVersion" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/termsofuse/agreements/{}/files/{}/versions/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceTermOfUseAgreementFileVersionCount", + "oracle": "Get-MgIdentityGovernanceTermsOfUseAgreementFileVersionCount" + }, + "replacementNoun": "IdentityGovernanceTermsOfUseAgreementFileVersionCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/termsofuse/agreements/{}/files/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceTermOfUseAgreementFileCount", + "oracle": "Get-MgIdentityGovernanceTermsOfUseAgreementFileCount" + }, + "replacementNoun": "IdentityGovernanceTermsOfUseAgreementFileCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/termsofuse/agreements/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceTermOfUseAgreementCount", + "oracle": "Get-MgIdentityGovernanceTermsOfUseAgreementCount" + }, + "replacementNoun": "IdentityGovernanceTermsOfUseAgreementCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identityprotection/riskdetections", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityProtectionRiskDetection", + "oracle": "Get-MgRiskDetection" + }, + "replacementNoun": "RiskDetection" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identityprotection/riskdetections/{}", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityProtectionRiskDetection", + "oracle": "Get-MgRiskDetection" + }, + "replacementNoun": "RiskDetection" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identityprotection/riskdetections/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityProtectionRiskDetectionCount", + "oracle": "Get-MgRiskDetectionCount" + }, + "replacementNoun": "RiskDetectionCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identityprotection/riskyserviceprincipals", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityProtectionRiskyServicePrincipal", + "oracle": "Get-MgRiskyServicePrincipal" + }, + "replacementNoun": "RiskyServicePrincipal" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identityprotection/riskyserviceprincipals/{}", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityProtectionRiskyServicePrincipal", + "oracle": "Get-MgRiskyServicePrincipal" + }, + "replacementNoun": "RiskyServicePrincipal" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identityprotection/riskyserviceprincipals/{}/history", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityProtectionRiskyServicePrincipalHistory", + "oracle": "Get-MgRiskyServicePrincipalHistory" + }, + "replacementNoun": "RiskyServicePrincipalHistory" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identityprotection/riskyserviceprincipals/{}/history/{}", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityProtectionRiskyServicePrincipalHistory", + "oracle": "Get-MgRiskyServicePrincipalHistory" + }, + "replacementNoun": "RiskyServicePrincipalHistory" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identityprotection/riskyserviceprincipals/{}/history/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityProtectionRiskyServicePrincipalHistoryCount", + "oracle": "Get-MgRiskyServicePrincipalHistoryCount" + }, + "replacementNoun": "RiskyServicePrincipalHistoryCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identityprotection/riskyserviceprincipals/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityProtectionRiskyServicePrincipalCount", + "oracle": "Get-MgRiskyServicePrincipalCount" + }, + "replacementNoun": "RiskyServicePrincipalCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identityprotection/riskyusers", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityProtectionRiskyUser", + "oracle": "Get-MgRiskyUser" + }, + "replacementNoun": "RiskyUser" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identityprotection/riskyusers/{}", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityProtectionRiskyUser", + "oracle": "Get-MgRiskyUser" + }, + "replacementNoun": "RiskyUser" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identityprotection/riskyusers/{}/history", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityProtectionRiskyUserHistory", + "oracle": "Get-MgRiskyUserHistory" + }, + "replacementNoun": "RiskyUserHistory" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identityprotection/riskyusers/{}/history/{}", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityProtectionRiskyUserHistory", + "oracle": "Get-MgRiskyUserHistory" + }, + "replacementNoun": "RiskyUserHistory" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identityprotection/riskyusers/{}/history/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityProtectionRiskyUserHistoryCount", + "oracle": "Get-MgRiskyUserHistoryCount" + }, + "replacementNoun": "RiskyUserHistoryCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identityprotection/riskyusers/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityProtectionRiskyUserCount", + "oracle": "Get-MgRiskyUserCount" + }, + "replacementNoun": "RiskyUserCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identityprotection/serviceprincipalriskdetections", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityProtectionServicePrincipalRiskDetection", + "oracle": "Get-MgServicePrincipalRiskDetection" + }, + "replacementNoun": "ServicePrincipalRiskDetection" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identityprotection/serviceprincipalriskdetections/{}", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityProtectionServicePrincipalRiskDetection", + "oracle": "Get-MgServicePrincipalRiskDetection" + }, + "replacementNoun": "ServicePrincipalRiskDetection" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identityprotection/serviceprincipalriskdetections/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgIdentityProtectionServicePrincipalRiskDetectionCount", + "oracle": "Get-MgServicePrincipalRiskDetectionCount" + }, + "replacementNoun": "ServicePrincipalRiskDetectionCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/places/{}/descendants", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgPlaceDescendants", + "oracle": "Invoke-MgDescendantPlace" + }, + "replacementNoun": "DescendantPlace", + "replacementVerb": "Invoke" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/policies/authenticationstrengthpolicies/{}/usage", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgPolicyAuthenticationStrengthPolicyUsage", + "oracle": "Invoke-MgUsagePolicyAuthenticationStrengthPolicy" + }, + "replacementNoun": "UsagePolicyAuthenticationStrengthPolicy", + "replacementVerb": "Invoke" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/print/printers", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgPrinter", + "oracle": "Get-MgPrintPrinter" + }, + "replacementNoun": "PrintPrinter" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/print/printers/{}", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgPrinter", + "oracle": "Get-MgPrintPrinter" + }, + "replacementNoun": "PrintPrinter" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/print/printers/{}/connectors", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgPrinterConnector", + "oracle": "Get-MgPrintPrinterConnector" + }, + "replacementNoun": "PrintPrinterConnector" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/print/printers/{}/connectors/{}", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgPrinterConnector", + "oracle": "Get-MgPrintPrinterConnector" + }, + "replacementNoun": "PrintPrinterConnector" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/print/printers/{}/connectors/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgPrinterConnectorCount", + "oracle": "Get-MgPrintPrinterConnectorCount" + }, + "replacementNoun": "PrintPrinterConnectorCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/print/printers/{}/jobs", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgPrinterJob", + "oracle": "Get-MgPrintPrinterJob" + }, + "replacementNoun": "PrintPrinterJob" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/print/printers/{}/jobs/{}", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgPrinterJob", + "oracle": "Get-MgPrintPrinterJob" + }, + "replacementNoun": "PrintPrinterJob" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/print/printers/{}/jobs/{}/documents", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgPrinterJobDocument", + "oracle": "Get-MgPrintPrinterJobDocument" + }, + "replacementNoun": "PrintPrinterJobDocument" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/print/printers/{}/jobs/{}/documents/{}", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgPrinterJobDocument", + "oracle": "Get-MgPrintPrinterJobDocument" + }, + "replacementNoun": "PrintPrinterJobDocument" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/print/printers/{}/jobs/{}/documents/{}/$value", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgPrinterJobDocumentContent", + "oracle": "Get-MgPrintPrinterJobDocumentContent" + }, + "replacementNoun": "PrintPrinterJobDocumentContent" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/print/printers/{}/jobs/{}/documents/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgPrinterJobDocumentCount", + "oracle": "Get-MgPrintPrinterJobDocumentCount" + }, + "replacementNoun": "PrintPrinterJobDocumentCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/print/printers/{}/jobs/{}/tasks", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgPrinterJobTask", + "oracle": "Get-MgPrintPrinterJobTask" + }, + "replacementNoun": "PrintPrinterJobTask" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/print/printers/{}/jobs/{}/tasks/{}", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgPrinterJobTask", + "oracle": "Get-MgPrintPrinterJobTask" + }, + "replacementNoun": "PrintPrinterJobTask" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/print/printers/{}/jobs/{}/tasks/{}/definition", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgPrinterJobTaskDefinition", + "oracle": "Get-MgPrintPrinterJobTaskDefinition" + }, + "replacementNoun": "PrintPrinterJobTaskDefinition" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/print/printers/{}/jobs/{}/tasks/{}/trigger", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgPrinterJobTaskTrigger", + "oracle": "Get-MgPrintPrinterJobTaskTrigger" + }, + "replacementNoun": "PrintPrinterJobTaskTrigger" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/print/printers/{}/jobs/{}/tasks/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgPrinterJobTaskCount", + "oracle": "Get-MgPrintPrinterJobTaskCount" + }, + "replacementNoun": "PrintPrinterJobTaskCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/print/printers/{}/jobs/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgPrinterJobCount", + "oracle": "Get-MgPrintPrinterJobCount" + }, + "replacementNoun": "PrintPrinterJobCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/print/printers/{}/shares", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgPrinterShare", + "oracle": "Get-MgPrintPrinterShare" + }, + "replacementNoun": "PrintPrinterShare" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/print/printers/{}/shares/{}", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgPrinterShare", + "oracle": "Get-MgPrintPrinterShare" + }, + "replacementNoun": "PrintPrinterShare" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/print/printers/{}/shares/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgPrinterShareCount", + "oracle": "Get-MgPrintPrinterShareCount" + }, + "replacementNoun": "PrintPrinterShareCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/print/printers/{}/tasktriggers", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgPrinterTaskTrigger", + "oracle": "Get-MgPrintPrinterTaskTrigger" + }, + "replacementNoun": "PrintPrinterTaskTrigger" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/print/printers/{}/tasktriggers/{}", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgPrinterTaskTrigger", + "oracle": "Get-MgPrintPrinterTaskTrigger" + }, + "replacementNoun": "PrintPrinterTaskTrigger" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/print/printers/{}/tasktriggers/{}/definition", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgPrinterTaskTriggerDefinition", + "oracle": "Get-MgPrintPrinterTaskTriggerDefinition" + }, + "replacementNoun": "PrintPrinterTaskTriggerDefinition" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/print/printers/{}/tasktriggers/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgPrinterTaskTriggerCount", + "oracle": "Get-MgPrintPrinterTaskTriggerCount" + }, + "replacementNoun": "PrintPrinterTaskTriggerCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/print/printers/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgPrinterCount", + "oracle": "Get-MgPrintPrinterCount" + }, + "replacementNoun": "PrintPrinterCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/privacy/subjectrightsrequests/{}/getfinalattachment", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgPrivacySubjectRightsRequestGetFinalAttachment", + "oracle": "Get-MgPrivacySubjectRightsRequestFinalAttachment" + }, + "replacementNoun": "PrivacySubjectRightsRequestFinalAttachment" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/privacy/subjectrightsrequests/{}/getfinalreport", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgPrivacySubjectRightsRequestGetFinalReport", + "oracle": "Get-MgPrivacySubjectRightsRequestFinalReport" + }, + "replacementNoun": "PrivacySubjectRightsRequestFinalReport" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/reports/authenticationmethods/usersregisteredbyfeature", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgReportAuthenticationMethodUsersRegisteredByFeature", + "oracle": "Invoke-MgGraphReportAuthenticationMethod" + }, + "replacementNoun": "GraphReportAuthenticationMethod", + "replacementVerb": "Invoke" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/reports/getoffice365activationcounts", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgReportGetOffice365ActivationCounts", + "oracle": "Get-MgReportOffice365ActivationCount" + }, + "replacementNoun": "ReportOffice365ActivationCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/reports/getoffice365activationsusercounts", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgReportGetOffice365ActivationsUserCounts", + "oracle": "Get-MgReportOffice365ActivationUserCount" + }, + "replacementNoun": "ReportOffice365ActivationUserCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/reports/getoffice365activationsuserdetail", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgReportGetOffice365ActivationsUserDetail", + "oracle": "Get-MgReportOffice365ActivationUserDetail" + }, + "replacementNoun": "ReportOffice365ActivationUserDetail" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/reports/manageddeviceenrollmentfailuredetails", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgReportManagedDeviceEnrollmentFailureDetails", + "oracle": "Get-MgReportManagedDeviceEnrollmentFailureDetail" + }, + "replacementNoun": "ReportManagedDeviceEnrollmentFailureDetail" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/reports/manageddeviceenrollmenttopfailures", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgReportManagedDeviceEnrollmentTopFailures", + "oracle": "Get-MgReportManagedDeviceEnrollmentTopFailure" + }, + "replacementNoun": "ReportManagedDeviceEnrollmentTopFailure" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/reports/security/getattacksimulationrepeatoffenders", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgReportSecurityGetAttackSimulationRepeatOffenders", + "oracle": "Get-MgReportSecurityAttackSimulationRepeatOffender" + }, + "replacementNoun": "ReportSecurityAttackSimulationRepeatOffender" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/reports/security/getattacksimulationsimulationusercoverage", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgReportSecurityGetAttackSimulationSimulationUserCoverage", + "oracle": "Get-MgReportSecurityAttackSimulationUserCoverage" + }, + "replacementNoun": "ReportSecurityAttackSimulationUserCoverage" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/reports/security/getattacksimulationtrainingusercoverage", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgReportSecurityGetAttackSimulationTrainingUserCoverage", + "oracle": "Get-MgReportSecurityAttackSimulationTrainingUserCoverage" + }, + "replacementNoun": "ReportSecurityAttackSimulationTrainingUserCoverage" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/security/labels/retentionlabels/{}/retentioneventtype", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgSecurityLabelRetentionLabelRetentionEventType", + "oracle": "Get-MgSecurityLabelRetentionEventType" + }, + "replacementNoun": "SecurityLabelRetentionEventType" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/security/subjectrightsrequests/{}/getfinalattachment", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgSecuritySubjectRightsRequestGetFinalAttachment", + "oracle": "Get-MgSecuritySubjectRightsRequestFinalAttachment" + }, + "replacementNoun": "SecuritySubjectRightsRequestFinalAttachment" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/security/subjectrightsrequests/{}/getfinalreport", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgSecuritySubjectRightsRequestGetFinalReport", + "oracle": "Get-MgSecuritySubjectRightsRequestFinalReport" + }, + "replacementNoun": "SecuritySubjectRightsRequestFinalReport" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/security/triggers/retentionevents/{}/retentioneventtype", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgSecurityTriggerRetentionEventRetentionEventType", + "oracle": "Get-MgSecurityTriggerRetentionEventType" + }, + "replacementNoun": "SecurityTriggerRetentionEventType" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/serviceprincipals/{}/synchronization/jobs/{}/schema/filteroperators", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgServicePrincipalSynchronizationJobSchemaFilterOperators", + "oracle": "Invoke-MgFilterServicePrincipalSynchronizationJobSchemaOperator" + }, + "replacementNoun": "FilterServicePrincipalSynchronizationJobSchemaOperator", + "replacementVerb": "Invoke" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/serviceprincipals/{}/synchronization/jobs/{}/schema/functions", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgServicePrincipalSynchronizationJobSchemaFunctions", + "oracle": "Invoke-MgFunctionServicePrincipalSynchronizationJobSchema" + }, + "replacementNoun": "FunctionServicePrincipalSynchronizationJobSchema", + "replacementVerb": "Invoke" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/serviceprincipals/{}/synchronization/templates/{}/schema/filteroperators", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgServicePrincipalSynchronizationTemplateSchemaFilterOperators", + "oracle": "Invoke-MgFilterServicePrincipalSynchronizationTemplateSchemaOperator" + }, + "replacementNoun": "FilterServicePrincipalSynchronizationTemplateSchemaOperator", + "replacementVerb": "Invoke" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/serviceprincipals/{}/synchronization/templates/{}/schema/functions", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgServicePrincipalSynchronizationTemplateSchemaFunctions", + "oracle": "Invoke-MgFunctionServicePrincipalSynchronizationTemplateSchema" + }, + "replacementNoun": "FunctionServicePrincipalSynchronizationTemplateSchema", + "replacementVerb": "Invoke" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/shares/{}/list/contenttypes/{}/base", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgShareListContentTypeBase", + "oracle": "Get-MgShareContentTypeBase" + }, + "replacementNoun": "ShareContentTypeBase" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/shares/{}/list/contenttypes/{}/basetypes", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgShareListContentTypeBaseType", + "oracle": "Get-MgShareContentTypeBaseType" + }, + "replacementNoun": "ShareContentTypeBaseType" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/shares/{}/list/contenttypes/{}/basetypes/{}", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgShareListContentTypeBaseType", + "oracle": "Get-MgShareContentTypeBaseType" + }, + "replacementNoun": "ShareContentTypeBaseType" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/shares/{}/list/contenttypes/{}/basetypes/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgShareListContentTypeBaseTypeCount", + "oracle": "Get-MgShareContentTypeBaseTypeCount" + }, + "replacementNoun": "ShareContentTypeBaseTypeCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/shares/{}/list/contenttypes/{}/ispublished", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgShareListContentTypeIsPublished", + "oracle": "Test-MgShareListContentTypePublished" + }, + "replacementNoun": "ShareListContentTypePublished", + "replacementVerb": "Test" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/shares/{}/list/contenttypes/getcompatiblehubcontenttypes", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgShareListContentTypeGetCompatibleHubContentTypes", + "oracle": "Get-MgShareListContentTypeCompatibleHubContentType" + }, + "replacementNoun": "ShareListContentTypeCompatibleHubContentType" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/shares/{}/list/items/{}/getactivitiesbyinterval", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgShareListItemGetActivitiesByInterval", + "oracle": "Get-MgShareListItemActivityByInterval" + }, + "replacementNoun": "ShareListItemActivityByInterval" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/shares/{}/list/items/{}/lastmodifiedbyuser", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgShareListItemLastModifiedByUser", + "oracle": "Get-MgShareItemLastModifiedByUser" + }, + "replacementNoun": "ShareItemLastModifiedByUser" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/shares/{}/list/items/{}/lastmodifiedbyuser/mailboxsettings", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgShareListItemLastModifiedByUserMailboxSetting", + "oracle": "Get-MgShareItemLastModifiedByUserMailboxSetting" + }, + "replacementNoun": "ShareItemLastModifiedByUserMailboxSetting" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/shares/{}/list/items/{}/lastmodifiedbyuser/serviceprovisioningerrors", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgShareListItemLastModifiedByUserServiceProvisioningError", + "oracle": "Get-MgShareItemLastModifiedByUserServiceProvisioningError" + }, + "replacementNoun": "ShareItemLastModifiedByUserServiceProvisioningError" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/shares/{}/list/items/{}/lastmodifiedbyuser/serviceprovisioningerrors/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgShareListItemLastModifiedByUserServiceProvisioningErrorCount", + "oracle": "Get-MgShareItemLastModifiedByUserServiceProvisioningErrorCount" + }, + "replacementNoun": "ShareItemLastModifiedByUserServiceProvisioningErrorCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/sites/{}/analytics/alltime", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgSiteAnalyticAllTime", + "oracle": "Get-MgSiteAnalyticTime" + }, + "replacementNoun": "SiteAnalyticTime" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/sites/{}/contenttypes/{}/ispublished", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgSiteContentTypeIsPublished", + "oracle": "Test-MgSiteContentTypePublished" + }, + "replacementNoun": "SiteContentTypePublished", + "replacementVerb": "Test" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/sites/{}/contenttypes/getcompatiblehubcontenttypes", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgSiteContentTypeGetCompatibleHubContentTypes", + "oracle": "Get-MgSiteContentTypeCompatibleHubContentType" + }, + "replacementNoun": "SiteContentTypeCompatibleHubContentType" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/sites/{}/getactivitiesbyinterval", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgSiteGetActivitiesByInterval", + "oracle": "Get-MgSiteActivityByInterval" + }, + "replacementNoun": "SiteActivityByInterval" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/sites/{}/lists/{}/contenttypes/{}/ispublished", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgSiteListContentTypeIsPublished", + "oracle": "Test-MgSiteListContentTypePublished" + }, + "replacementNoun": "SiteListContentTypePublished", + "replacementVerb": "Test" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/sites/{}/lists/{}/contenttypes/getcompatiblehubcontenttypes", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgSiteListContentTypeGetCompatibleHubContentTypes", + "oracle": "Get-MgSiteListContentTypeCompatibleHubContentType" + }, + "replacementNoun": "SiteListContentTypeCompatibleHubContentType" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/sites/{}/lists/{}/items/{}/getactivitiesbyinterval", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgSiteListItemGetActivitiesByInterval", + "oracle": "Get-MgSiteListItemActivityByInterval" + }, + "replacementNoun": "SiteListItemActivityByInterval" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/sites/{}/lists/{}/items/{}/lastmodifiedbyuser", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgSiteListItemLastModifiedByUser", + "oracle": "Get-MgSiteItemLastModifiedByUser" + }, + "replacementNoun": "SiteItemLastModifiedByUser" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/sites/{}/lists/{}/items/{}/lastmodifiedbyuser/mailboxsettings", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgSiteListItemLastModifiedByUserMailboxSetting", + "oracle": "Get-MgSiteItemLastModifiedByUserMailboxSetting" + }, + "replacementNoun": "SiteItemLastModifiedByUserMailboxSetting" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/sites/{}/lists/{}/items/{}/lastmodifiedbyuser/serviceprovisioningerrors", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgSiteListItemLastModifiedByUserServiceProvisioningError", + "oracle": "Get-MgSiteItemLastModifiedByUserServiceProvisioningError" + }, + "replacementNoun": "SiteItemLastModifiedByUserServiceProvisioningError" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/sites/{}/lists/{}/items/{}/lastmodifiedbyuser/serviceprovisioningerrors/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgSiteListItemLastModifiedByUserServiceProvisioningErrorCount", + "oracle": "Get-MgSiteItemLastModifiedByUserServiceProvisioningErrorCount" + }, + "replacementNoun": "SiteItemLastModifiedByUserServiceProvisioningErrorCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/sites/{}/lists/{}/lastmodifiedbyuser", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgSiteListLastModifiedByUser", + "oracle": "Get-MgSiteLastModifiedByUser" + }, + "replacementNoun": "SiteLastModifiedByUser" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/sites/{}/lists/{}/lastmodifiedbyuser/mailboxsettings", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgSiteListLastModifiedByUserMailboxSetting", + "oracle": "Get-MgSiteLastModifiedByUserMailboxSetting" + }, + "replacementNoun": "SiteLastModifiedByUserMailboxSetting" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/sites/{}/lists/{}/lastmodifiedbyuser/serviceprovisioningerrors", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgSiteListLastModifiedByUserServiceProvisioningError", + "oracle": "Get-MgSiteLastModifiedByUserServiceProvisioningError" + }, + "replacementNoun": "SiteLastModifiedByUserServiceProvisioningError" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/sites/{}/lists/{}/lastmodifiedbyuser/serviceprovisioningerrors/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgSiteListLastModifiedByUserServiceProvisioningErrorCount", + "oracle": "Get-MgSiteLastModifiedByUserServiceProvisioningErrorCount" + }, + "replacementNoun": "SiteLastModifiedByUserServiceProvisioningErrorCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/sites/{}/onenote/notebooks/{}/sectiongroups/{}/sections/{}/pages/{}/preview", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgSiteOnenoteNotebookSectionGroupSectionPagePreview", + "oracle": "Invoke-MgPreviewSiteOnenoteNotebookSectionGroupSectionPage" + }, + "replacementNoun": "PreviewSiteOnenoteNotebookSectionGroupSectionPage", + "replacementVerb": "Invoke" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/sites/{}/onenote/notebooks/{}/sections/{}/pages/{}/preview", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgSiteOnenoteNotebookSectionPagePreview", + "oracle": "Invoke-MgPreviewSiteOnenoteNotebookSectionPage" + }, + "replacementNoun": "PreviewSiteOnenoteNotebookSectionPage", + "replacementVerb": "Invoke" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/sites/{}/onenote/pages/{}/preview", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgSiteOnenotePagePreview", + "oracle": "Invoke-MgPreviewSiteOnenotePage" + }, + "replacementNoun": "PreviewSiteOnenotePage", + "replacementVerb": "Invoke" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/sites/{}/onenote/sectiongroups/{}/sections/{}/pages/{}/preview", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgSiteOnenoteSectionGroupSectionPagePreview", + "oracle": "Invoke-MgPreviewSiteOnenoteSectionGroupSectionPage" + }, + "replacementNoun": "PreviewSiteOnenoteSectionGroupSectionPage", + "replacementVerb": "Invoke" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/sites/{}/onenote/sections/{}/pages/{}/preview", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgSiteOnenoteSectionPagePreview", + "oracle": "Invoke-MgPreviewSiteOnenoteSectionPage" + }, + "replacementNoun": "PreviewSiteOnenoteSectionPage", + "replacementVerb": "Invoke" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/sites/{}/sites/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgSiteCount", + "oracle": "Get-MgSubSiteCount" + }, + "replacementNoun": "SubSiteCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/sites/getallsites", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgSiteGetAllSites", + "oracle": "Get-MgAllSite" + }, + "replacementNoun": "AllSite" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/teams/{}/allchannels", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgTeamAllChannel", + "oracle": "Get-MgAllTeamChannel" + }, + "replacementNoun": "AllTeamChannel" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/teams/{}/allchannels/{}", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgTeamAllChannel", + "oracle": "Get-MgAllTeamChannel" + }, + "replacementNoun": "AllTeamChannel" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/teams/{}/allchannels/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgTeamAllChannelCount", + "oracle": "Get-MgAllTeamChannelCount" + }, + "replacementNoun": "AllTeamChannelCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/teams/{}/channels/{}/allmembers", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgTeamChannelAllMember", + "oracle": "Get-MgTeamChannelMember" + }, + "replacementNoun": "TeamChannelMember" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/teams/{}/channels/{}/allmembers/{}", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgTeamChannelAllMember", + "oracle": "Get-MgTeamChannelMember" + }, + "replacementNoun": "TeamChannelMember" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/teams/{}/channels/getallretainedmessages", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgTeamChannelGetAllRetainedMessages", + "oracle": "Get-MgTeamChannelRetainedMessage" + }, + "replacementNoun": "TeamChannelRetainedMessage" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/teams/{}/primarychannel/allmembers", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgTeamPrimaryChannelAllMember", + "oracle": "Get-MgTeamPrimaryChannelMember" + }, + "replacementNoun": "TeamPrimaryChannelMember" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/teams/{}/primarychannel/allmembers/{}", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgTeamPrimaryChannelAllMember", + "oracle": "Get-MgTeamPrimaryChannelMember" + }, + "replacementNoun": "TeamPrimaryChannelMember" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/teams/getallmessages", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgTeamGetAllMessages", + "oracle": "Get-MgAllTeamMessage" + }, + "replacementNoun": "AllTeamMessage" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/teamwork/deletedteams/{}/channels/{}/allmembers", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgTeamworkDeletedTeamChannelAllMember", + "oracle": "Get-MgTeamworkDeletedTeamChannelMember" + }, + "replacementNoun": "TeamworkDeletedTeamChannelMember" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/teamwork/deletedteams/{}/channels/{}/allmembers/{}", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgTeamworkDeletedTeamChannelAllMember", + "oracle": "Get-MgTeamworkDeletedTeamChannelMember" + }, + "replacementNoun": "TeamworkDeletedTeamChannelMember" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/teamwork/deletedteams/{}/channels/getallretainedmessages", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgTeamworkDeletedTeamChannelGetAllRetainedMessages", + "oracle": "Get-MgTeamworkDeletedTeamChannelRetainedMessage" + }, + "replacementNoun": "TeamworkDeletedTeamChannelRetainedMessage" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/teamwork/deletedteams/getallmessages", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgTeamworkDeletedTeamGetAllMessages", + "oracle": "Get-MgAllTeamworkDeletedTeamMessage" + }, + "replacementNoun": "AllTeamworkDeletedTeamMessage" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/activities/recent", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgUserActivityRecent", + "oracle": "Invoke-MgRecentUserActivity" + }, + "replacementNoun": "RecentUserActivity", + "replacementVerb": "Invoke" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/authentication/fido2methods/creationoptions", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgUserAuthenticationFido2MethodCreationOptions", + "oracle": "Invoke-MgCreationUserAuthenticationFido2MethodOption" + }, + "replacementNoun": "CreationUserAuthenticationFido2MethodOption", + "replacementVerb": "Invoke" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/chats/{}/messages", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgUserChatMessage", + "oracle": "Get-MgAllUserChatMessage" + }, + "replacementNoun": "AllUserChatMessage" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/chats/{}/messages/{}", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgUserChatMessage", + "oracle": "Get-MgAllUserChatMessage" + }, + "replacementNoun": "AllUserChatMessage" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/chats/getallretainedmessages", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgUserChatGetAllRetainedMessages", + "oracle": "Get-MgUserChatRetainedMessage" + }, + "replacementNoun": "UserChatRetainedMessage" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/exportdeviceandappmanagementdata", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgUserExportDeviceAndAppManagementData", + "oracle": "Export-MgUserDeviceAndAppManagementData" + }, + "replacementNoun": "UserDeviceAndAppManagementData", + "replacementVerb": "Export" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/getmanagedappdiagnosticstatuses", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgUserGetManagedAppDiagnosticStatuses", + "oracle": "Get-MgUserManagedAppDiagnosticStatus" + }, + "replacementNoun": "UserManagedAppDiagnosticStatus" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/getmanagedapppolicies", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgUserGetManagedAppPolicies", + "oracle": "Get-MgUserManagedAppPolicy" + }, + "replacementNoun": "UserManagedAppPolicy" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/getmanageddeviceswithappfailures", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgUserGetManagedDevicesWithAppFailures", + "oracle": "Get-MgUserManagedDeviceWithAppFailure" + }, + "replacementNoun": "UserManagedDeviceWithAppFailure" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/licensedetails/getteamslicensingdetails", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgUserLicenseDetailGetTeamsLicensingDetails", + "oracle": "Get-MgUserLicenseDetailTeamLicensingDetail" + }, + "replacementNoun": "UserLicenseDetailTeamLicensingDetail" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/manageddevices/{}/logcollectionrequests", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgUserManagedDeviceLogCollectionRequest", + "oracle": "Get-MgUserManagedDeviceLogCollectionResponse" + }, + "replacementNoun": "UserManagedDeviceLogCollectionResponse" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/manageddevices/{}/logcollectionrequests/{}", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgUserManagedDeviceLogCollectionRequest", + "oracle": "Get-MgUserManagedDeviceLogCollectionResponse" + }, + "replacementNoun": "UserManagedDeviceLogCollectionResponse" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/onenote/notebooks/{}/sectiongroups/{}/sections/{}/pages/{}/preview", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgUserOnenoteNotebookSectionGroupSectionPagePreview", + "oracle": "Invoke-MgPreviewUserOnenoteNotebookSectionGroupSectionPage" + }, + "replacementNoun": "PreviewUserOnenoteNotebookSectionGroupSectionPage", + "replacementVerb": "Invoke" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/onenote/notebooks/{}/sections/{}/pages/{}/preview", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgUserOnenoteNotebookSectionPagePreview", + "oracle": "Invoke-MgPreviewUserOnenoteNotebookSectionPage" + }, + "replacementNoun": "PreviewUserOnenoteNotebookSectionPage", + "replacementVerb": "Invoke" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/onenote/pages/{}/preview", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgUserOnenotePagePreview", + "oracle": "Invoke-MgPreviewUserOnenotePage" + }, + "replacementNoun": "PreviewUserOnenotePage", + "replacementVerb": "Invoke" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/onenote/sectiongroups/{}/sections/{}/pages/{}/preview", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgUserOnenoteSectionGroupSectionPagePreview", + "oracle": "Invoke-MgPreviewUserOnenoteSectionGroupSectionPage" + }, + "replacementNoun": "PreviewUserOnenoteSectionGroupSectionPage", + "replacementVerb": "Invoke" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/onenote/sections/{}/pages/{}/preview", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgUserOnenoteSectionPagePreview", + "oracle": "Invoke-MgPreviewUserOnenoteSectionPage" + }, + "replacementNoun": "PreviewUserOnenoteSectionPage", + "replacementVerb": "Invoke" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/onlinemeetings/{}/getvirtualappointmentjoinweburl", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgUserOnlineMeetingGetVirtualAppointmentJoinWebUrl", + "oracle": "Get-MgUserOnlineMeetingVirtualAppointmentJoinWebUrl" + }, + "replacementNoun": "UserOnlineMeetingVirtualAppointmentJoinWebUrl" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/outlook/supportedlanguages", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgUserOutlookSupportedLanguages", + "oracle": "Invoke-MgSupportedUserOutlookLanguage" + }, + "replacementNoun": "SupportedUserOutlookLanguage", + "replacementVerb": "Invoke" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/outlook/supportedtimezones", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgUserOutlookSupportedTimeZones", + "oracle": "Invoke-MgTimeUserOutlook" + }, + "replacementNoun": "TimeUserOutlook", + "replacementVerb": "Invoke" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/teamwork/getallretainedtargetedmessages", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgUserTeamworkGetAllRetainedTargetedMessages", + "oracle": "Get-MgUserTeamworkRetainedTargetedMessage" + }, + "replacementNoun": "UserTeamworkRetainedTargetedMessage" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/teamwork/getalltargetedmessages", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgUserTeamworkGetAllTargetedMessages", + "oracle": "Get-MgUserTeamworkTargetedMessage" + }, + "replacementNoun": "UserTeamworkTargetedMessage" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/todo/lists/{}/tasks", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgUserTodoListTask", + "oracle": "Get-MgUserTodoTask" + }, + "replacementNoun": "UserTodoTask" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/todo/lists/{}/tasks/{}", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgUserTodoListTask", + "oracle": "Get-MgUserTodoTask" + }, + "replacementNoun": "UserTodoTask" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/todo/lists/{}/tasks/{}/attachments", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgUserTodoListTaskAttachment", + "oracle": "Get-MgUserTodoTaskAttachment" + }, + "replacementNoun": "UserTodoTaskAttachment" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/todo/lists/{}/tasks/{}/attachments/{}", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgUserTodoListTaskAttachment", + "oracle": "Get-MgUserTodoTaskAttachment" + }, + "replacementNoun": "UserTodoTaskAttachment" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/todo/lists/{}/tasks/{}/attachments/{}/$value", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgUserTodoListTaskAttachmentContent", + "oracle": "Get-MgUserTodoTaskAttachmentContent" + }, + "replacementNoun": "UserTodoTaskAttachmentContent" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/todo/lists/{}/tasks/{}/attachments/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgUserTodoListTaskAttachmentCount", + "oracle": "Get-MgUserTodoTaskAttachmentCount" + }, + "replacementNoun": "UserTodoTaskAttachmentCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/todo/lists/{}/tasks/{}/attachmentsessions", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgUserTodoListTaskAttachmentSession", + "oracle": "Get-MgUserTodoTaskAttachmentSession" + }, + "replacementNoun": "UserTodoTaskAttachmentSession" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/todo/lists/{}/tasks/{}/attachmentsessions/{}", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgUserTodoListTaskAttachmentSession", + "oracle": "Get-MgUserTodoTaskAttachmentSession" + }, + "replacementNoun": "UserTodoTaskAttachmentSession" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/todo/lists/{}/tasks/{}/attachmentsessions/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgUserTodoListTaskAttachmentSessionCount", + "oracle": "Get-MgUserTodoTaskAttachmentSessionCount" + }, + "replacementNoun": "UserTodoTaskAttachmentSessionCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/todo/lists/{}/tasks/{}/checklistitems", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgUserTodoListTaskChecklistItem", + "oracle": "Get-MgUserTodoTaskChecklistItem" + }, + "replacementNoun": "UserTodoTaskChecklistItem" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/todo/lists/{}/tasks/{}/checklistitems/{}", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgUserTodoListTaskChecklistItem", + "oracle": "Get-MgUserTodoTaskChecklistItem" + }, + "replacementNoun": "UserTodoTaskChecklistItem" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/todo/lists/{}/tasks/{}/checklistitems/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgUserTodoListTaskChecklistItemCount", + "oracle": "Get-MgUserTodoTaskChecklistItemCount" + }, + "replacementNoun": "UserTodoTaskChecklistItemCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/todo/lists/{}/tasks/{}/extensions", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgUserTodoListTaskExtension", + "oracle": "Get-MgUserTodoTaskExtension" + }, + "replacementNoun": "UserTodoTaskExtension" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/todo/lists/{}/tasks/{}/extensions/{}", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgUserTodoListTaskExtension", + "oracle": "Get-MgUserTodoTaskExtension" + }, + "replacementNoun": "UserTodoTaskExtension" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/todo/lists/{}/tasks/{}/extensions/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgUserTodoListTaskExtensionCount", + "oracle": "Get-MgUserTodoTaskExtensionCount" + }, + "replacementNoun": "UserTodoTaskExtensionCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/todo/lists/{}/tasks/{}/linkedresources", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgUserTodoListTaskLinkedResource", + "oracle": "Get-MgUserTodoTaskLinkedResource" + }, + "replacementNoun": "UserTodoTaskLinkedResource" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/todo/lists/{}/tasks/{}/linkedresources/{}", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgUserTodoListTaskLinkedResource", + "oracle": "Get-MgUserTodoTaskLinkedResource" + }, + "replacementNoun": "UserTodoTaskLinkedResource" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/todo/lists/{}/tasks/{}/linkedresources/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgUserTodoListTaskLinkedResourceCount", + "oracle": "Get-MgUserTodoTaskLinkedResourceCount" + }, + "replacementNoun": "UserTodoTaskLinkedResourceCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/todo/lists/{}/tasks/$count", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgUserTodoListTaskCount", + "oracle": "Get-MgUserTodoTaskCount" + }, + "replacementNoun": "UserTodoTaskCount" + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/todo/lists/{}/tasks/delta", + "action": "rename", + "evidence": { + "ourCommand": "Get-MgUserTodoListTaskDelta", + "oracle": "Get-MgUserTodoTaskDelta" + }, + "replacementNoun": "UserTodoTaskDelta" + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/deviceappmanagement/iosmanagedappprotections/{}", + "action": "rename", + "evidence": { + "ourCommand": "Update-MgDeviceAppManagementIosManagedAppProtection", + "oracle": "Update-MgDeviceAppManagementiOSManagedAppProtection" + }, + "replacementNoun": "DeviceAppManagementiOSManagedAppProtection" + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/deviceappmanagement/iosmanagedappprotections/{}/apps/{}", + "action": "rename", + "evidence": { + "ourCommand": "Update-MgDeviceAppManagementIosManagedAppProtectionApp", + "oracle": "Update-MgDeviceAppManagementiOSManagedAppProtectionApp" + }, + "replacementNoun": "DeviceAppManagementiOSManagedAppProtectionApp" + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/deviceappmanagement/iosmanagedappprotections/{}/assignments/{}", + "action": "rename", + "evidence": { + "ourCommand": "Update-MgDeviceAppManagementIosManagedAppProtectionAssignment", + "oracle": "Update-MgDeviceAppManagementiOSManagedAppProtectionAssignment" + }, + "replacementNoun": "DeviceAppManagementiOSManagedAppProtectionAssignment" + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/deviceappmanagement/iosmanagedappprotections/{}/deploymentsummary", + "action": "rename", + "evidence": { + "ourCommand": "Update-MgDeviceAppManagementIosManagedAppProtectionDeploymentSummary", + "oracle": "Update-MgDeviceAppManagementiOSManagedAppProtectionDeploymentSummary" + }, + "replacementNoun": "DeviceAppManagementiOSManagedAppProtectionDeploymentSummary" + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/deviceappmanagement/mobileapprelationships/{}", + "action": "rename", + "evidence": { + "ourCommand": "Update-MgDeviceAppManagementMobileAppRelationship", + "oracle": "Update-MgDeviceAppManagementMultipleMobileAppRelationship" + }, + "replacementNoun": "DeviceAppManagementMultipleMobileAppRelationship" + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/devicemanagement/iosupdatestatuses/{}", + "action": "rename", + "evidence": { + "ourCommand": "Update-MgDeviceManagementIosUpdateStatus", + "oracle": "Update-MgDeviceManagementIoUpdateStatus" + }, + "replacementNoun": "DeviceManagementIoUpdateStatus" + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/education/reports/reflectcheckinresponses/{}", + "action": "rename", + "evidence": { + "ourCommand": "Update-MgEducationReportReflectCheckInResponse", + "oracle": "Update-MgEducationReportReflectCheck" + }, + "replacementNoun": "EducationReportReflectCheck" + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/groups/{}/team/channels/{}/allmembers/{}", + "action": "rename", + "evidence": { + "ourCommand": "Update-MgGroupTeamChannelAllMember", + "oracle": "Update-MgGroupTeamChannelMember" + }, + "replacementNoun": "GroupTeamChannelMember" + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/groups/{}/team/primarychannel/allmembers/{}", + "action": "rename", + "evidence": { + "ourCommand": "Update-MgGroupTeamPrimaryChannelAllMember", + "oracle": "Update-MgGroupTeamPrimaryChannelMember" + }, + "replacementNoun": "GroupTeamPrimaryChannelMember" + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identity/authenticationeventsflows/{}/conditions/applications/includeapplications/{}", + "action": "rename", + "evidence": { + "ourCommand": "Update-MgIdentityAuthenticationEventFlowConditionApplicationIncludeApplication", + "oracle": "Update-MgIdentityAuthenticationEventFlowIncludeApplication" + }, + "replacementNoun": "IdentityAuthenticationEventFlowIncludeApplication" + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identity/b2xuserflows/{}", + "action": "rename", + "evidence": { + "ourCommand": "Update-MgIdentityB2xUserFlow", + "oracle": "Update-MgIdentityB2XUserFlow" + }, + "replacementNoun": "IdentityB2XUserFlow" + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identity/b2xuserflows/{}/apiconnectorconfiguration/postattributecollection", + "action": "rename", + "evidence": { + "ourCommand": "Update-MgIdentityB2xUserFlowApiConnectorConfigurationPostAttributeCollection", + "oracle": "Update-MgIdentityB2XUserFlowPostAttributeCollection" + }, + "replacementNoun": "IdentityB2XUserFlowPostAttributeCollection" + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identity/b2xuserflows/{}/apiconnectorconfiguration/postfederationsignup", + "action": "rename", + "evidence": { + "ourCommand": "Update-MgIdentityB2xUserFlowApiConnectorConfigurationPostFederationSignup", + "oracle": "Update-MgIdentityB2XUserFlowPostFederationSignup" + }, + "replacementNoun": "IdentityB2XUserFlowPostFederationSignup" + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identity/b2xuserflows/{}/languages/{}", + "action": "rename", + "evidence": { + "ourCommand": "Update-MgIdentityB2xUserFlowLanguage", + "oracle": "Update-MgIdentityB2XUserFlowLanguage" + }, + "replacementNoun": "IdentityB2XUserFlowLanguage" + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identity/b2xuserflows/{}/languages/{}/defaultpages/{}", + "action": "rename", + "evidence": { + "ourCommand": "Update-MgIdentityB2xUserFlowLanguageDefaultPage", + "oracle": "Update-MgIdentityB2XUserFlowLanguageDefaultPage" + }, + "replacementNoun": "IdentityB2XUserFlowLanguageDefaultPage" + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identity/b2xuserflows/{}/languages/{}/overridespages/{}", + "action": "rename", + "evidence": { + "ourCommand": "Update-MgIdentityB2xUserFlowLanguageOverridePage", + "oracle": "Update-MgIdentityB2XUserFlowLanguageOverridePage" + }, + "replacementNoun": "IdentityB2XUserFlowLanguageOverridePage" + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identity/b2xuserflows/{}/userattributeassignments/{}", + "action": "rename", + "evidence": { + "ourCommand": "Update-MgIdentityB2xUserFlowUserAttributeAssignment", + "oracle": "Update-MgIdentityB2XUserFlowUserAttributeAssignment" + }, + "replacementNoun": "IdentityB2XUserFlowUserAttributeAssignment" + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/appconsent/appconsentrequests/{}", + "action": "rename", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceAppConsentAppConsentRequest", + "oracle": "Update-MgIdentityGovernanceAppConsentRequest" + }, + "replacementNoun": "IdentityGovernanceAppConsentRequest" + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/appconsent/appconsentrequests/{}/userconsentrequests/{}", + "action": "rename", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequest", + "oracle": "Update-MgIdentityGovernanceAppConsentRequestUserConsentRequest" + }, + "replacementNoun": "IdentityGovernanceAppConsentRequestUserConsentRequest" + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/appconsent/appconsentrequests/{}/userconsentrequests/{}/approval", + "action": "rename", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequestApproval", + "oracle": "Update-MgIdentityGovernanceAppConsentRequestUserConsentRequestApproval" + }, + "replacementNoun": "IdentityGovernanceAppConsentRequestUserConsentRequestApproval" + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/appconsent/appconsentrequests/{}/userconsentrequests/{}/approval/stages/{}", + "action": "rename", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequestApprovalStage", + "oracle": "Update-MgIdentityGovernanceAppConsentRequestUserConsentRequestApprovalStage" + }, + "replacementNoun": "IdentityGovernanceAppConsentRequestUserConsentRequestApprovalStage" + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/accesspackageassignmentapprovals/{}", + "action": "rename", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentApproval", + "oracle": "Update-MgEntitlementManagementAccessPackageAssignmentApproval" + }, + "replacementNoun": "EntitlementManagementAccessPackageAssignmentApproval" + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/accesspackageassignmentapprovals/{}/stages/{}", + "action": "rename", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentApprovalStage", + "oracle": "Update-MgEntitlementManagementAccessPackageAssignmentApprovalStage" + }, + "replacementNoun": "EntitlementManagementAccessPackageAssignmentApprovalStage" + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}", + "action": "rename", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementAccessPackage", + "oracle": "Update-MgEntitlementManagementAccessPackage" + }, + "replacementNoun": "EntitlementManagementAccessPackage" + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/assignmentpolicies/{}", + "action": "rename", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicy", + "oracle": "Update-MgEntitlementManagementAccessPackageAssignmentPolicy" + }, + "replacementNoun": "EntitlementManagementAccessPackageAssignmentPolicy" + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/resourcerolescopes/{}", + "action": "rename", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScope", + "oracle": "Update-MgEntitlementManagementAccessPackageResourceRoleScope" + }, + "replacementNoun": "EntitlementManagementAccessPackageResourceRoleScope" + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/accesspackagesuggestions/{}", + "action": "rename", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementAccessPackageSuggestion", + "oracle": "Update-MgEntitlementManagementAccessPackageSuggestion" + }, + "replacementNoun": "EntitlementManagementAccessPackageSuggestion" + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/assignmentpolicies/{}/customextensionstagesettings/{}", + "action": "rename", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementAssignmentPolicyCustomExtensionStageSetting", + "oracle": "Update-MgEntitlementManagementAssignmentPolicyCustomExtensionStageSetting" + }, + "replacementNoun": "EntitlementManagementAssignmentPolicyCustomExtensionStageSetting" + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/assignmentpolicies/{}/questions/{}", + "action": "rename", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementAssignmentPolicyQuestion", + "oracle": "Update-MgEntitlementManagementAssignmentPolicyQuestion" + }, + "replacementNoun": "EntitlementManagementAssignmentPolicyQuestion" + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/availableaccesspackages/{}", + "action": "rename", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementAvailableAccessPackage", + "oracle": "Update-MgEntitlementManagementAvailableAccessPackage" + }, + "replacementNoun": "EntitlementManagementAvailableAccessPackage" + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}", + "action": "rename", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementCatalog", + "oracle": "Update-MgEntitlementManagementCatalog" + }, + "replacementNoun": "EntitlementManagementCatalog" + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/customworkflowextensions/{}", + "action": "rename", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementCatalogCustomWorkflowExtension", + "oracle": "Update-MgEntitlementManagementCatalogCustomWorkflowExtension" + }, + "replacementNoun": "EntitlementManagementCatalogCustomWorkflowExtension" + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}", + "action": "rename", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementCatalogResourceRole", + "oracle": "Update-MgEntitlementManagementCatalogResourceRole" + }, + "replacementNoun": "EntitlementManagementCatalogResourceRole" + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes/{}", + "action": "rename", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScope", + "oracle": "Update-MgEntitlementManagementCatalogResourceRoleResourceScope" + }, + "replacementNoun": "EntitlementManagementCatalogResourceRoleResourceScope" + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes/{}/resource/roles/{}", + "action": "rename", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResourceRole", + "oracle": "Update-MgEntitlementManagementCatalogResourceRoleResourceScopeResourceRole" + }, + "replacementNoun": "EntitlementManagementCatalogResourceRoleResourceScopeResourceRole" + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles/{}", + "action": "rename", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRole", + "oracle": "Update-MgEntitlementManagementCatalogResourceScopeResourceRole" + }, + "replacementNoun": "EntitlementManagementCatalogResourceScopeResourceRole" + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/roles/{}/resource/scopes/{}", + "action": "rename", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResourceScope", + "oracle": "Update-MgEntitlementManagementCatalogResourceScopeResourceRoleResourceScope" + }, + "replacementNoun": "EntitlementManagementCatalogResourceScopeResourceRoleResourceScope" + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/connectedorganizations/{}", + "action": "rename", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementConnectedOrganization", + "oracle": "Update-MgEntitlementManagementConnectedOrganization" + }, + "replacementNoun": "EntitlementManagementConnectedOrganization" + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}", + "action": "rename", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementResourceEnvironment", + "oracle": "Update-MgEntitlementManagementResourceEnvironment" + }, + "replacementNoun": "EntitlementManagementResourceEnvironment" + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/{}/roles/{}", + "action": "rename", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRole", + "oracle": "Update-MgEntitlementManagementResourceEnvironmentResourceRole" + }, + "replacementNoun": "EntitlementManagementResourceEnvironmentResourceRole" + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/{}/roles/{}/resource/scopes/{}", + "action": "rename", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResourceScope", + "oracle": "Update-MgEntitlementManagementResourceEnvironmentResourceRoleResourceScope" + }, + "replacementNoun": "EntitlementManagementResourceEnvironmentResourceRoleResourceScope" + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/{}/scopes/{}", + "action": "rename", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScope", + "oracle": "Update-MgEntitlementManagementResourceEnvironmentResourceScope" + }, + "replacementNoun": "EntitlementManagementResourceEnvironmentResourceScope" + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/{}/scopes/{}/resource/roles/{}", + "action": "rename", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResourceRole", + "oracle": "Update-MgEntitlementManagementResourceEnvironmentResourceScopeResourceRole" + }, + "replacementNoun": "EntitlementManagementResourceEnvironmentResourceScopeResourceRole" + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}", + "action": "rename", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementResourceRequest", + "oracle": "Update-MgEntitlementManagementResourceRequest" + }, + "replacementNoun": "EntitlementManagementResourceRequest" + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog", + "action": "rename", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalog", + "oracle": "Update-MgEntitlementManagementResourceRequestCatalog" + }, + "replacementNoun": "EntitlementManagementResourceRequestCatalog" + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/customworkflowextensions/{}", + "action": "rename", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogCustomWorkflowExtension", + "oracle": "Update-MgEntitlementManagementResourceRequestCatalogCustomWorkflowExtension" + }, + "replacementNoun": "EntitlementManagementResourceRequestCatalogCustomWorkflowExtension" + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}", + "action": "rename", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRole", + "oracle": "Update-MgEntitlementManagementResourceRequestCatalogResourceRole" + }, + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceRole" + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes/{}", + "action": "rename", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScope", + "oracle": "Update-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScope" + }, + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceRoleResourceScope" + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes/{}/resource/roles/{}", + "action": "rename", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRole", + "oracle": "Update-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRole" + }, + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRole" + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles/{}", + "action": "rename", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRole", + "oracle": "Update-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRole" + }, + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceScopeResourceRole" + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/roles/{}/resource/scopes/{}", + "action": "rename", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceScope", + "oracle": "Update-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceScope" + }, + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceScope" + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource/roles/{}", + "action": "rename", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRole", + "oracle": "Update-MgEntitlementManagementResourceRequestResourceRole" + }, + "replacementNoun": "EntitlementManagementResourceRequestResourceRole" + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource/roles/{}/resource/scopes/{}", + "action": "rename", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResourceScope", + "oracle": "Update-MgEntitlementManagementResourceRequestResourceRoleResourceScope" + }, + "replacementNoun": "EntitlementManagementResourceRequestResourceRoleResourceScope" + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource/scopes/{}", + "action": "rename", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScope", + "oracle": "Update-MgEntitlementManagementResourceRequestResourceScope" + }, + "replacementNoun": "EntitlementManagementResourceRequestResourceScope" + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource/scopes/{}/resource/roles/{}", + "action": "rename", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResourceRole", + "oracle": "Update-MgEntitlementManagementResourceRequestResourceScopeResourceRole" + }, + "replacementNoun": "EntitlementManagementResourceRequestResourceScopeResourceRole" + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}", + "action": "rename", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementResourceRoleScope", + "oracle": "Update-MgEntitlementManagementResourceRoleScope" + }, + "replacementNoun": "EntitlementManagementResourceRoleScope" + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/role", + "action": "rename", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRole", + "oracle": "Update-MgEntitlementManagementResourceRoleScopeRole" + }, + "replacementNoun": "EntitlementManagementResourceRoleScopeRole" + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/role/resource/roles/{}", + "action": "rename", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceRole", + "oracle": "Update-MgEntitlementManagementResourceRoleScopeRoleResourceRole" + }, + "replacementNoun": "EntitlementManagementResourceRoleScopeRoleResourceRole" + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/role/resource/scopes/{}", + "action": "rename", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScope", + "oracle": "Update-MgEntitlementManagementResourceRoleScopeRoleResourceScope" + }, + "replacementNoun": "EntitlementManagementResourceRoleScopeRoleResourceScope" + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/role/resource/scopes/{}/resource/roles/{}", + "action": "rename", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScopeResourceRole", + "oracle": "Update-MgEntitlementManagementResourceRoleScopeRoleResourceScopeResourceRole" + }, + "replacementNoun": "EntitlementManagementResourceRoleScopeRoleResourceScopeResourceRole" + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/scope/resource/roles/{}", + "action": "rename", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRole", + "oracle": "Update-MgEntitlementManagementResourceRoleScopeResourceRole" + }, + "replacementNoun": "EntitlementManagementResourceRoleScopeResourceRole" + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/scope/resource/roles/{}/resource/scopes/{}", + "action": "rename", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRoleResourceScope", + "oracle": "Update-MgEntitlementManagementResourceRoleScopeResourceRoleResourceScope" + }, + "replacementNoun": "EntitlementManagementResourceRoleScopeResourceRoleResourceScope" + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/scope/resource/scopes/{}", + "action": "rename", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceScope", + "oracle": "Update-MgEntitlementManagementResourceRoleScopeResourceScope" + }, + "replacementNoun": "EntitlementManagementResourceRoleScopeResourceScope" + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/resources/{}/roles/{}", + "action": "rename", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementResourceRole", + "oracle": "Update-MgEntitlementManagementResourceRole" + }, + "replacementNoun": "EntitlementManagementResourceRole" + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/resources/{}/roles/{}/resource/scopes/{}", + "action": "rename", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementResourceRoleResourceScope", + "oracle": "Update-MgEntitlementManagementResourceRoleResourceScope" + }, + "replacementNoun": "EntitlementManagementResourceRoleResourceScope" + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/resources/{}/scopes/{}", + "action": "rename", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementResourceScope", + "oracle": "Update-MgEntitlementManagementResourceScope" + }, + "replacementNoun": "EntitlementManagementResourceScope" + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/resources/{}/scopes/{}/resource/roles/{}", + "action": "rename", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementResourceScopeResourceRole", + "oracle": "Update-MgEntitlementManagementResourceScopeResourceRole" + }, + "replacementNoun": "EntitlementManagementResourceScopeResourceRole" + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/settings", + "action": "rename", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementSetting", + "oracle": "Update-MgEntitlementManagementSetting" + }, + "replacementNoun": "EntitlementManagementSetting" + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/subjects/{}", + "action": "rename", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementSubject", + "oracle": "Update-MgEntitlementManagementSubject" + }, + "replacementNoun": "EntitlementManagementSubject" + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/termsofuse/agreementacceptances/{}", + "action": "rename", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceTermOfUseAgreementAcceptance", + "oracle": "Update-MgIdentityGovernanceTermsOfUseAgreementAcceptance" + }, + "replacementNoun": "IdentityGovernanceTermsOfUseAgreementAcceptance" + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/termsofuse/agreements/{}", + "action": "rename", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceTermOfUseAgreement", + "oracle": "Update-MgIdentityGovernanceTermsOfUseAgreement" + }, + "replacementNoun": "IdentityGovernanceTermsOfUseAgreement" + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/termsofuse/agreements/{}/file", + "action": "rename", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceTermOfUseAgreementFile", + "oracle": "Update-MgIdentityGovernanceTermsOfUseAgreementFile" + }, + "replacementNoun": "IdentityGovernanceTermsOfUseAgreementFile" + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/termsofuse/agreements/{}/file/localizations/{}", + "action": "rename", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceTermOfUseAgreementFileLocalization", + "oracle": "Update-MgIdentityGovernanceTermsOfUseAgreementFileLocalization" + }, + "replacementNoun": "IdentityGovernanceTermsOfUseAgreementFileLocalization" + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/termsofuse/agreements/{}/file/localizations/{}/versions/{}", + "action": "rename", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceTermOfUseAgreementFileLocalizationVersion", + "oracle": "Update-MgIdentityGovernanceTermsOfUseAgreementFileLocalizationVersion" + }, + "replacementNoun": "IdentityGovernanceTermsOfUseAgreementFileLocalizationVersion" + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/termsofuse/agreements/{}/files/{}/versions/{}", + "action": "rename", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceTermOfUseAgreementFileVersion", + "oracle": "Update-MgIdentityGovernanceTermsOfUseAgreementFileVersion" + }, + "replacementNoun": "IdentityGovernanceTermsOfUseAgreementFileVersion" + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identityprotection/riskdetections/{}", + "action": "rename", + "evidence": { + "ourCommand": "Update-MgIdentityProtectionRiskDetection", + "oracle": "Update-MgRiskDetection" + }, + "replacementNoun": "RiskDetection" + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identityprotection/riskyserviceprincipals/{}", + "action": "rename", + "evidence": { + "ourCommand": "Update-MgIdentityProtectionRiskyServicePrincipal", + "oracle": "Update-MgRiskyServicePrincipal" + }, + "replacementNoun": "RiskyServicePrincipal" + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identityprotection/riskyserviceprincipals/{}/history/{}", + "action": "rename", + "evidence": { + "ourCommand": "Update-MgIdentityProtectionRiskyServicePrincipalHistory", + "oracle": "Update-MgRiskyServicePrincipalHistory" + }, + "replacementNoun": "RiskyServicePrincipalHistory" + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identityprotection/riskyusers/{}", + "action": "rename", + "evidence": { + "ourCommand": "Update-MgIdentityProtectionRiskyUser", + "oracle": "Update-MgRiskyUser" + }, + "replacementNoun": "RiskyUser" + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identityprotection/riskyusers/{}/history/{}", + "action": "rename", + "evidence": { + "ourCommand": "Update-MgIdentityProtectionRiskyUserHistory", + "oracle": "Update-MgRiskyUserHistory" + }, + "replacementNoun": "RiskyUserHistory" + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identityprotection/serviceprincipalriskdetections/{}", + "action": "rename", + "evidence": { + "ourCommand": "Update-MgIdentityProtectionServicePrincipalRiskDetection", + "oracle": "Update-MgServicePrincipalRiskDetection" + }, + "replacementNoun": "ServicePrincipalRiskDetection" + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/print/printers/{}", + "action": "rename", + "evidence": { + "ourCommand": "Update-MgPrinter", + "oracle": "Update-MgPrintPrinter" + }, + "replacementNoun": "PrintPrinter" + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/print/printers/{}/jobs/{}", + "action": "rename", + "evidence": { + "ourCommand": "Update-MgPrinterJob", + "oracle": "Update-MgPrintPrinterJob" + }, + "replacementNoun": "PrintPrinterJob" + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/print/printers/{}/jobs/{}/documents/{}", + "action": "rename", + "evidence": { + "ourCommand": "Update-MgPrinterJobDocument", + "oracle": "Update-MgPrintPrinterJobDocument" + }, + "replacementNoun": "PrintPrinterJobDocument" + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/print/printers/{}/jobs/{}/tasks/{}", + "action": "rename", + "evidence": { + "ourCommand": "Update-MgPrinterJobTask", + "oracle": "Update-MgPrintPrinterJobTask" + }, + "replacementNoun": "PrintPrinterJobTask" + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/print/printers/{}/tasktriggers/{}", + "action": "rename", + "evidence": { + "ourCommand": "Update-MgPrinterTaskTrigger", + "oracle": "Update-MgPrintPrinterTaskTrigger" + }, + "replacementNoun": "PrintPrinterTaskTrigger" + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/teams/{}/channels/{}/allmembers/{}", + "action": "rename", + "evidence": { + "ourCommand": "Update-MgTeamChannelAllMember", + "oracle": "Update-MgTeamChannelMember" + }, + "replacementNoun": "TeamChannelMember" + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/teams/{}/primarychannel/allmembers/{}", + "action": "rename", + "evidence": { + "ourCommand": "Update-MgTeamPrimaryChannelAllMember", + "oracle": "Update-MgTeamPrimaryChannelMember" + }, + "replacementNoun": "TeamPrimaryChannelMember" + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/teamwork/deletedteams/{}/channels/{}/allmembers/{}", + "action": "rename", + "evidence": { + "ourCommand": "Update-MgTeamworkDeletedTeamChannelAllMember", + "oracle": "Update-MgTeamworkDeletedTeamChannelMember" + }, + "replacementNoun": "TeamworkDeletedTeamChannelMember" + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/users/{}/manageddevices/{}/logcollectionrequests/{}", + "action": "rename", + "evidence": { + "ourCommand": "Update-MgUserManagedDeviceLogCollectionRequest", + "oracle": "Update-MgUserManagedDeviceLogCollectionResponse" + }, + "replacementNoun": "UserManagedDeviceLogCollectionResponse" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/admin/edge/internetexplorermode/sitelists/{}/publish", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgAdminEdgeInternetExplorerModeSiteListPublish", + "oracle": "Publish-MgAdminEdgeInternetExplorerModeSiteList" + }, + "replacementNoun": "AdminEdgeInternetExplorerModeSiteList", + "replacementVerb": "Publish" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/admin/serviceannouncement/messages/archive", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgAdminServiceAnnouncementMessageArchive", + "oracle": "Invoke-MgArchiveServiceAnnouncementMessage" + }, + "replacementNoun": "ArchiveServiceAnnouncementMessage" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/admin/serviceannouncement/messages/favorite", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgAdminServiceAnnouncementMessageFavorite", + "oracle": "Invoke-MgFavoriteServiceAnnouncementMessage" + }, + "replacementNoun": "FavoriteServiceAnnouncementMessage" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/admin/serviceannouncement/messages/markread", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgAdminServiceAnnouncementMessageMarkRead", + "oracle": "Invoke-MgMarkServiceAnnouncementMessageRead" + }, + "replacementNoun": "MarkServiceAnnouncementMessageRead" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/admin/serviceannouncement/messages/markunread", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgAdminServiceAnnouncementMessageMarkUnread", + "oracle": "Invoke-MgMarkServiceAnnouncementMessageUnread" + }, + "replacementNoun": "MarkServiceAnnouncementMessageUnread" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/admin/serviceannouncement/messages/unarchive", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgAdminServiceAnnouncementMessageUnarchive", + "oracle": "Invoke-MgUnarchiveServiceAnnouncementMessage" + }, + "replacementNoun": "UnarchiveServiceAnnouncementMessage" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/admin/serviceannouncement/messages/unfavorite", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgAdminServiceAnnouncementMessageUnfavorite", + "oracle": "Invoke-MgUnfavoriteServiceAnnouncementMessage" + }, + "replacementNoun": "UnfavoriteServiceAnnouncementMessage" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/applications/{}/addkey", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgApplicationAddKey", + "oracle": "Add-MgApplicationKey" + }, + "replacementNoun": "ApplicationKey", + "replacementVerb": "Add" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/applications/{}/addpassword", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgApplicationAddPassword", + "oracle": "Add-MgApplicationPassword" + }, + "replacementNoun": "ApplicationPassword", + "replacementVerb": "Add" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/applications/{}/checkmembergroups", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgApplicationCheckMemberGroups", + "oracle": "Confirm-MgApplicationMemberGroup" + }, + "replacementNoun": "ApplicationMemberGroup", + "replacementVerb": "Confirm" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/applications/{}/checkmemberobjects", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgApplicationCheckMemberObjects", + "oracle": "Confirm-MgApplicationMemberObject" + }, + "replacementNoun": "ApplicationMemberObject", + "replacementVerb": "Confirm" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/applications/{}/getmembergroups", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgApplicationGetMemberGroups", + "oracle": "Get-MgApplicationMemberGroup" + }, + "replacementNoun": "ApplicationMemberGroup", + "replacementVerb": "Get" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/applications/{}/getmemberobjects", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgApplicationGetMemberObjects", + "oracle": "Get-MgApplicationMemberObject" + }, + "replacementNoun": "ApplicationMemberObject", + "replacementVerb": "Get" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/applications/{}/removekey", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgApplicationRemoveKey", + "oracle": "Remove-MgApplicationKey" + }, + "replacementNoun": "ApplicationKey", + "replacementVerb": "Remove" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/applications/{}/removepassword", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgApplicationRemovePassword", + "oracle": "Remove-MgApplicationPassword" + }, + "replacementNoun": "ApplicationPassword", + "replacementVerb": "Remove" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/applications/{}/setverifiedpublisher", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgApplicationSetVerifiedPublisher", + "oracle": "Set-MgApplicationVerifiedPublisher" + }, + "replacementNoun": "ApplicationVerifiedPublisher", + "replacementVerb": "Set" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/applications/{}/synchronization/acquireaccesstoken", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgApplicationSynchronizationAcquireAccessToken", + "oracle": "Get-MgApplicationSynchronizationAccessToken" + }, + "replacementNoun": "ApplicationSynchronizationAccessToken", + "replacementVerb": "Get" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/applications/{}/synchronization/jobs/{}/pause", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgApplicationSynchronizationJobPause", + "oracle": "Suspend-MgApplicationSynchronizationJob" + }, + "replacementNoun": "ApplicationSynchronizationJob", + "replacementVerb": "Suspend" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/applications/{}/synchronization/jobs/{}/provisionondemand", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgApplicationSynchronizationJobProvisionOnDemand", + "oracle": "New-MgApplicationSynchronizationJobOnDemand" + }, + "replacementNoun": "ApplicationSynchronizationJobOnDemand", + "replacementVerb": "New" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/applications/{}/synchronization/jobs/{}/restart", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgApplicationSynchronizationJobRestart", + "oracle": "Restart-MgApplicationSynchronizationJob" + }, + "replacementNoun": "ApplicationSynchronizationJob", + "replacementVerb": "Restart" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/applications/{}/synchronization/jobs/{}/schema/directories/{}/discover", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgApplicationSynchronizationJobSchemaDirectoryDiscover", + "oracle": "Find-MgApplicationSynchronizationJobSchemaDirectory" + }, + "replacementNoun": "ApplicationSynchronizationJobSchemaDirectory", + "replacementVerb": "Find" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/applications/{}/synchronization/jobs/{}/schema/parseexpression", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgApplicationSynchronizationJobSchemaParseExpression", + "oracle": "Invoke-MgParseApplicationSynchronizationJobSchemaExpression" + }, + "replacementNoun": "ParseApplicationSynchronizationJobSchemaExpression" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/applications/{}/synchronization/jobs/{}/start", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgApplicationSynchronizationJobStart", + "oracle": "Start-MgApplicationSynchronizationJob" + }, + "replacementNoun": "ApplicationSynchronizationJob", + "replacementVerb": "Start" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/applications/{}/synchronization/jobs/{}/validatecredentials", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgApplicationSynchronizationJobValidateCredentials", + "oracle": "Test-MgApplicationSynchronizationJobCredential" + }, + "replacementNoun": "ApplicationSynchronizationJobCredential", + "replacementVerb": "Test" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/applications/{}/synchronization/templates/{}/schema/directories/{}/discover", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgApplicationSynchronizationTemplateSchemaDirectoryDiscover", + "oracle": "Find-MgApplicationSynchronizationTemplateSchemaDirectory" + }, + "replacementNoun": "ApplicationSynchronizationTemplateSchemaDirectory", + "replacementVerb": "Find" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/applications/{}/synchronization/templates/{}/schema/parseexpression", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgApplicationSynchronizationTemplateSchemaParseExpression", + "oracle": "Invoke-MgParseApplicationSynchronizationTemplateSchemaExpression" + }, + "replacementNoun": "ParseApplicationSynchronizationTemplateSchemaExpression" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/applications/{}/unsetverifiedpublisher", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgApplicationUnsetVerifiedPublisher", + "oracle": "Clear-MgApplicationVerifiedPublisher" + }, + "replacementNoun": "ApplicationVerifiedPublisher", + "replacementVerb": "Clear" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/applications/getbyids", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgApplicationGetByIds", + "oracle": "Get-MgApplicationById" + }, + "replacementNoun": "ApplicationById", + "replacementVerb": "Get" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/applications/validateproperties", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgApplicationValidateProperties", + "oracle": "Test-MgApplicationProperty" + }, + "replacementNoun": "ApplicationProperty", + "replacementVerb": "Test" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/applicationtemplates/{}/instantiate", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgApplicationTemplateInstantiate", + "oracle": "Invoke-MgInstantiateApplicationTemplate" + }, + "replacementNoun": "InstantiateApplicationTemplate" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/auditlogs/signins/confirmcompromised", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgAuditLogSignInConfirmCompromised", + "oracle": "Confirm-MgAuditLogSignInCompromised" + }, + "replacementNoun": "AuditLogSignInCompromised", + "replacementVerb": "Confirm" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/auditlogs/signins/confirmsafe", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgAuditLogSignInConfirmSafe", + "oracle": "Confirm-MgAuditLogSignInSafe" + }, + "replacementNoun": "AuditLogSignInSafe", + "replacementVerb": "Confirm" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/auditlogs/signins/dismiss", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgAuditLogSignInDismiss", + "oracle": "Invoke-MgDismissAuditLogSignIn" + }, + "replacementNoun": "DismissAuditLogSignIn" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/chats/{}/completemigration", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgChatCompleteMigration", + "oracle": "Complete-MgChatMigration" + }, + "replacementNoun": "ChatMigration", + "replacementVerb": "Complete" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/chats/{}/hideforuser", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgChatHideForUser", + "oracle": "Hide-MgChatForUser" + }, + "replacementNoun": "ChatForUser", + "replacementVerb": "Hide" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/chats/{}/installedapps/{}/upgrade", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgChatInstalledAppUpgrade", + "oracle": "Update-MgChatInstalledApp" + }, + "replacementNoun": "ChatInstalledApp", + "replacementVerb": "Update" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/chats/{}/markchatreadforuser", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgChatMarkChatReadForUser", + "oracle": "Invoke-MgMarkChatReadForUser" + }, + "replacementNoun": "MarkChatReadForUser" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/chats/{}/markchatunreadforuser", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgChatMarkChatUnreadForUser", + "oracle": "Invoke-MgMarkChatUnreadForUser" + }, + "replacementNoun": "MarkChatUnreadForUser" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/chats/{}/members/add", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgChatMemberAdd", + "oracle": "Add-MgChatMember" + }, + "replacementNoun": "ChatMember", + "replacementVerb": "Add" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/chats/{}/messages/{}/replies/{}/setreaction", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgChatMessageReplySetReaction", + "oracle": "Set-MgChatMessageReplyReaction" + }, + "replacementNoun": "ChatMessageReplyReaction", + "replacementVerb": "Set" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/chats/{}/messages/{}/replies/{}/softdelete", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgChatMessageReplySoftDelete", + "oracle": "Invoke-MgSoftChatMessageReplyDelete" + }, + "replacementNoun": "SoftChatMessageReplyDelete" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/chats/{}/messages/{}/replies/{}/undosoftdelete", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgChatMessageReplyUndoSoftDelete", + "oracle": "Undo-MgChatMessageReplySoftDelete" + }, + "replacementNoun": "ChatMessageReplySoftDelete", + "replacementVerb": "Undo" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/chats/{}/messages/{}/replies/{}/unsetreaction", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgChatMessageReplyUnsetReaction", + "oracle": "Clear-MgChatMessageReplyReaction" + }, + "replacementNoun": "ChatMessageReplyReaction", + "replacementVerb": "Clear" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/chats/{}/messages/{}/replies/replywithquote", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgChatMessageReplyReplyWithQuote", + "oracle": "Invoke-MgGraphChatMessageReply" + }, + "replacementNoun": "GraphChatMessageReply" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/chats/{}/messages/{}/setreaction", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgChatMessageSetReaction", + "oracle": "Set-MgChatMessageReaction" + }, + "replacementNoun": "ChatMessageReaction", + "replacementVerb": "Set" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/chats/{}/messages/{}/softdelete", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgChatMessageSoftDelete", + "oracle": "Invoke-MgSoftChatMessageDelete" + }, + "replacementNoun": "SoftChatMessageDelete" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/chats/{}/messages/{}/undosoftdelete", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgChatMessageUndoSoftDelete", + "oracle": "Undo-MgChatMessageSoftDelete" + }, + "replacementNoun": "ChatMessageSoftDelete", + "replacementVerb": "Undo" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/chats/{}/messages/{}/unsetreaction", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgChatMessageUnsetReaction", + "oracle": "Clear-MgChatMessageReaction" + }, + "replacementNoun": "ChatMessageReaction", + "replacementVerb": "Clear" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/chats/{}/messages/replywithquote", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgChatMessageReplyWithQuote", + "oracle": "Invoke-MgGraphChatMessage" + }, + "replacementNoun": "GraphChatMessage" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/chats/{}/removeallaccessforuser", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgChatRemoveAllAccessForUser", + "oracle": "Remove-MgChatAccessForUser" + }, + "replacementNoun": "ChatAccessForUser", + "replacementVerb": "Remove" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/chats/{}/sendactivitynotification", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgChatSendActivityNotification", + "oracle": "Send-MgChatActivityNotification" + }, + "replacementNoun": "ChatActivityNotification", + "replacementVerb": "Send" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/chats/{}/startmigration", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgChatStartMigration", + "oracle": "Start-MgChatMigration" + }, + "replacementNoun": "ChatMigration", + "replacementVerb": "Start" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/chats/{}/targetedmessages/{}/replies/{}/setreaction", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgChatTargetedMessageReplySetReaction", + "oracle": "Set-MgChatTargetedMessageReplyReaction" + }, + "replacementNoun": "ChatTargetedMessageReplyReaction", + "replacementVerb": "Set" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/chats/{}/targetedmessages/{}/replies/{}/softdelete", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgChatTargetedMessageReplySoftDelete", + "oracle": "Invoke-MgSoftChatTargetedMessageReplyDelete" + }, + "replacementNoun": "SoftChatTargetedMessageReplyDelete" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/chats/{}/targetedmessages/{}/replies/{}/undosoftdelete", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgChatTargetedMessageReplyUndoSoftDelete", + "oracle": "Undo-MgChatTargetedMessageReplySoftDelete" + }, + "replacementNoun": "ChatTargetedMessageReplySoftDelete", + "replacementVerb": "Undo" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/chats/{}/targetedmessages/{}/replies/{}/unsetreaction", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgChatTargetedMessageReplyUnsetReaction", + "oracle": "Clear-MgChatTargetedMessageReplyReaction" + }, + "replacementNoun": "ChatTargetedMessageReplyReaction", + "replacementVerb": "Clear" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/chats/{}/targetedmessages/{}/replies/replywithquote", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgChatTargetedMessageReplyReplyWithQuote", + "oracle": "Invoke-MgGraphChatTargetedMessageReply" + }, + "replacementNoun": "GraphChatTargetedMessageReply" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/chats/{}/unhideforuser", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgChatUnhideForUser", + "oracle": "Invoke-MgGraphChat" + }, + "replacementNoun": "GraphChat" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/communications/calls/{}/addlargegalleryview", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgCommunicationCallAddLargeGalleryView", + "oracle": "Add-MgCommunicationCallLargeGalleryView" + }, + "replacementNoun": "CommunicationCallLargeGalleryView", + "replacementVerb": "Add" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/communications/calls/{}/answer", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgCommunicationCallAnswer", + "oracle": "Invoke-MgAnswerCommunicationCall" + }, + "replacementNoun": "AnswerCommunicationCall" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/communications/calls/{}/cancelmediaprocessing", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgCommunicationCallCancelMediaProcessing", + "oracle": "Stop-MgCommunicationCallMediaProcessing" + }, + "replacementNoun": "CommunicationCallMediaProcessing", + "replacementVerb": "Stop" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/communications/calls/{}/changescreensharingrole", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgCommunicationCallChangeScreenSharingRole", + "oracle": "Rename-MgCommunicationCallScreenSharingRole" + }, + "replacementNoun": "CommunicationCallScreenSharingRole", + "replacementVerb": "Rename" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/communications/calls/{}/keepalive", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgCommunicationCallKeepAlive", + "oracle": "Invoke-MgKeepCommunicationCallAlive" + }, + "replacementNoun": "KeepCommunicationCallAlive" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/communications/calls/{}/mute", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgCommunicationCallMute", + "oracle": "Invoke-MgMuteCommunicationCall" + }, + "replacementNoun": "MuteCommunicationCall" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/communications/calls/{}/participants/{}/mute", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgCommunicationCallParticipantMute", + "oracle": "Invoke-MgMuteCommunicationCallParticipant" + }, + "replacementNoun": "MuteCommunicationCallParticipant" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/communications/calls/{}/participants/{}/startholdmusic", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgCommunicationCallParticipantStartHoldMusic", + "oracle": "Start-MgCommunicationCallParticipantHoldMusic" + }, + "replacementNoun": "CommunicationCallParticipantHoldMusic", + "replacementVerb": "Start" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/communications/calls/{}/participants/{}/stopholdmusic", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgCommunicationCallParticipantStopHoldMusic", + "oracle": "Stop-MgCommunicationCallParticipantHoldMusic" + }, + "replacementNoun": "CommunicationCallParticipantHoldMusic", + "replacementVerb": "Stop" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/communications/calls/{}/participants/invite", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgCommunicationCallParticipantInvite", + "oracle": "Invoke-MgInviteCommunicationCallParticipant" + }, + "replacementNoun": "InviteCommunicationCallParticipant" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/communications/calls/{}/playprompt", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgCommunicationCallPlayPrompt", + "oracle": "Invoke-MgPlayCommunicationCallPrompt" + }, + "replacementNoun": "PlayCommunicationCallPrompt" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/communications/calls/{}/recordresponse", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgCommunicationCallRecordResponse", + "oracle": "Invoke-MgRecordCommunicationCallResponse" + }, + "replacementNoun": "RecordCommunicationCallResponse" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/communications/calls/{}/redirect", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgCommunicationCallRedirect", + "oracle": "Invoke-MgRedirectCommunicationCall" + }, + "replacementNoun": "RedirectCommunicationCall" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/communications/calls/{}/reject", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgCommunicationCallReject", + "oracle": "Invoke-MgRejectCommunicationCall" + }, + "replacementNoun": "RejectCommunicationCall" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/communications/calls/{}/senddtmftones", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgCommunicationCallSendDtmfTones", + "oracle": "Send-MgCommunicationCallDtmfTone" + }, + "replacementNoun": "CommunicationCallDtmfTone", + "replacementVerb": "Send" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/communications/calls/{}/subscribetotone", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgCommunicationCallSubscribeToTone", + "oracle": "Invoke-MgSubscribeCommunicationCallToTone" + }, + "replacementNoun": "SubscribeCommunicationCallToTone" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/communications/calls/{}/transfer", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgCommunicationCallTransfer", + "oracle": "Move-MgCommunicationCall" + }, + "replacementNoun": "CommunicationCall", + "replacementVerb": "Move" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/communications/calls/{}/unmute", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgCommunicationCallUnmute", + "oracle": "Invoke-MgUnmuteCommunicationCall" + }, + "replacementNoun": "UnmuteCommunicationCall" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/communications/calls/{}/updaterecordingstatus", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgCommunicationCallUpdateRecordingStatus", + "oracle": "Update-MgCommunicationCallRecordingStatus" + }, + "replacementNoun": "CommunicationCallRecordingStatus", + "replacementVerb": "Update" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/communications/calls/logteleconferencedevicequality", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgCommunicationCallLogTeleconferenceDeviceQuality", + "oracle": "Invoke-MgLogCommunicationCallTeleconferenceDeviceQuality" + }, + "replacementNoun": "LogCommunicationCallTeleconferenceDeviceQuality" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/communications/getpresencesbyuserid", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgCommunicationGetPresencesByUserId", + "oracle": "Get-MgCommunicationPresenceByUserId" + }, + "replacementNoun": "CommunicationPresenceByUserId", + "replacementVerb": "Get" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/communications/onlinemeetings/{}/sendvirtualappointmentremindersms", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgCommunicationOnlineMeetingSendVirtualAppointmentReminderSms", + "oracle": "Send-MgCommunicationOnlineMeetingVirtualAppointmentReminderSm" + }, + "replacementNoun": "CommunicationOnlineMeetingVirtualAppointmentReminderSm", + "replacementVerb": "Send" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/communications/onlinemeetings/{}/sendvirtualappointmentsms", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgCommunicationOnlineMeetingSendVirtualAppointmentSms", + "oracle": "Send-MgCommunicationOnlineMeetingVirtualAppointmentSm" + }, + "replacementNoun": "CommunicationOnlineMeetingVirtualAppointmentSm", + "replacementVerb": "Send" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/communications/onlinemeetings/createorget", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgCommunicationOnlineMeetingCreateOrGet", + "oracle": "Invoke-MgCreateOrGetCommunicationOnlineMeeting" + }, + "replacementNoun": "CreateOrGetCommunicationOnlineMeeting" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/communications/presences/{}/clearautomaticlocation", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgCommunicationPresenceClearAutomaticLocation", + "oracle": "Clear-MgCommunicationPresenceAutomaticLocation" + }, + "replacementNoun": "CommunicationPresenceAutomaticLocation", + "replacementVerb": "Clear" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/communications/presences/{}/clearlocation", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgCommunicationPresenceClearLocation", + "oracle": "Clear-MgCommunicationPresenceLocation" + }, + "replacementNoun": "CommunicationPresenceLocation", + "replacementVerb": "Clear" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/communications/presences/{}/clearpresence", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgCommunicationPresenceClearPresence", + "oracle": "Clear-MgCommunicationPresence" + }, + "replacementNoun": "CommunicationPresence", + "replacementVerb": "Clear" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/communications/presences/{}/clearuserpreferredpresence", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgCommunicationPresenceClearUserPreferredPresence", + "oracle": "Clear-MgCommunicationPresenceUserPreferredPresence" + }, + "replacementNoun": "CommunicationPresenceUserPreferredPresence", + "replacementVerb": "Clear" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/communications/presences/{}/setautomaticlocation", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgCommunicationPresenceSetAutomaticLocation", + "oracle": "Set-MgCommunicationPresenceAutomaticLocation" + }, + "replacementNoun": "CommunicationPresenceAutomaticLocation", + "replacementVerb": "Set" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/communications/presences/{}/setmanuallocation", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgCommunicationPresenceSetManualLocation", + "oracle": "Set-MgCommunicationPresenceManualLocation" + }, + "replacementNoun": "CommunicationPresenceManualLocation", + "replacementVerb": "Set" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/communications/presences/{}/setpresence", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgCommunicationPresenceSetPresence", + "oracle": "Set-MgCommunicationPresence" + }, + "replacementNoun": "CommunicationPresence", + "replacementVerb": "Set" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/communications/presences/{}/setstatusmessage", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgCommunicationPresenceSetStatusMessage", + "oracle": "Set-MgCommunicationPresenceStatusMessage" + }, + "replacementNoun": "CommunicationPresenceStatusMessage", + "replacementVerb": "Set" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/communications/presences/{}/setuserpreferredpresence", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgCommunicationPresenceSetUserPreferredPresence", + "oracle": "Set-MgCommunicationPresenceUserPreferredPresence" + }, + "replacementNoun": "CommunicationPresenceUserPreferredPresence", + "replacementVerb": "Set" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/contacts/{}/checkmembergroups", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgContactCheckMemberGroups", + "oracle": "Confirm-MgContactMemberGroup" + }, + "replacementNoun": "ContactMemberGroup", + "replacementVerb": "Confirm" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/contacts/{}/checkmemberobjects", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgContactCheckMemberObjects", + "oracle": "Confirm-MgContactMemberObject" + }, + "replacementNoun": "ContactMemberObject", + "replacementVerb": "Confirm" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/contacts/{}/getmembergroups", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgContactGetMemberGroups", + "oracle": "Get-MgContactMemberGroup" + }, + "replacementNoun": "ContactMemberGroup", + "replacementVerb": "Get" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/contacts/{}/getmemberobjects", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgContactGetMemberObjects", + "oracle": "Get-MgContactMemberObject" + }, + "replacementNoun": "ContactMemberObject", + "replacementVerb": "Get" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/contacts/{}/retryserviceprovisioning", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgContactRetryServiceProvisioning", + "oracle": "Invoke-MgRetryContactServiceProvisioning" + }, + "replacementNoun": "RetryContactServiceProvisioning" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/contacts/getbyids", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgContactGetByIds", + "oracle": "Get-MgContactById" + }, + "replacementNoun": "ContactById", + "replacementVerb": "Get" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/contacts/validateproperties", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgContactValidateProperties", + "oracle": "Test-MgContactProperty" + }, + "replacementNoun": "ContactProperty", + "replacementVerb": "Test" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/contracts/{}/checkmembergroups", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgContractCheckMemberGroups", + "oracle": "Confirm-MgContractMemberGroup" + }, + "replacementNoun": "ContractMemberGroup", + "replacementVerb": "Confirm" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/contracts/{}/checkmemberobjects", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgContractCheckMemberObjects", + "oracle": "Confirm-MgContractMemberObject" + }, + "replacementNoun": "ContractMemberObject", + "replacementVerb": "Confirm" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/contracts/{}/getmembergroups", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgContractGetMemberGroups", + "oracle": "Get-MgContractMemberGroup" + }, + "replacementNoun": "ContractMemberGroup", + "replacementVerb": "Get" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/contracts/{}/getmemberobjects", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgContractGetMemberObjects", + "oracle": "Get-MgContractMemberObject" + }, + "replacementNoun": "ContractMemberObject", + "replacementVerb": "Get" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/contracts/getbyids", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgContractGetByIds", + "oracle": "Get-MgContractById" + }, + "replacementNoun": "ContractById", + "replacementVerb": "Get" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/contracts/validateproperties", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgContractValidateProperties", + "oracle": "Test-MgContractProperty" + }, + "replacementNoun": "ContractProperty", + "replacementVerb": "Test" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/deviceappmanagement/iosmanagedappprotections", + "action": "rename", + "evidence": { + "ourCommand": "New-MgDeviceAppManagementIosManagedAppProtection", + "oracle": "New-MgDeviceAppManagementiOSManagedAppProtection" + }, + "replacementNoun": "DeviceAppManagementiOSManagedAppProtection" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/deviceappmanagement/iosmanagedappprotections/{}/apps", + "action": "rename", + "evidence": { + "ourCommand": "New-MgDeviceAppManagementIosManagedAppProtectionApp", + "oracle": "New-MgDeviceAppManagementiOSManagedAppProtectionApp" + }, + "replacementNoun": "DeviceAppManagementiOSManagedAppProtectionApp" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/deviceappmanagement/iosmanagedappprotections/{}/assignments", + "action": "rename", + "evidence": { + "ourCommand": "New-MgDeviceAppManagementIosManagedAppProtectionAssignment", + "oracle": "New-MgDeviceAppManagementiOSManagedAppProtectionAssignment" + }, + "replacementNoun": "DeviceAppManagementiOSManagedAppProtectionAssignment" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/deviceappmanagement/managedapppolicies/{}/targetapps", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDeviceAppManagementManagedAppPolicyTargetApps", + "oracle": "Invoke-MgTargetDeviceAppManagementManagedAppPolicyApp" + }, + "replacementNoun": "TargetDeviceAppManagementManagedAppPolicyApp" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/deviceappmanagement/managedappregistrations/{}/appliedpolicies/{}/targetapps", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDeviceAppManagementManagedAppRegistrationAppliedPolicyTargetApps", + "oracle": "Invoke-MgTargetDeviceAppManagementManagedAppRegistrationAppliedPolicyApp" + }, + "replacementNoun": "TargetDeviceAppManagementManagedAppRegistrationAppliedPolicyApp" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/deviceappmanagement/managedappregistrations/{}/intendedpolicies/{}/targetapps", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDeviceAppManagementManagedAppRegistrationIntendedPolicyTargetApps", + "oracle": "Invoke-MgTargetDeviceAppManagementManagedAppRegistrationIntendedPolicyApp" + }, + "replacementNoun": "TargetDeviceAppManagementManagedAppRegistrationIntendedPolicyApp" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/deviceappmanagement/managedebooks/{}/assign", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDeviceAppManagementManagedEBookAssign", + "oracle": "Set-MgDeviceAppManagementManagedEBook" + }, + "replacementNoun": "DeviceAppManagementManagedEBook", + "replacementVerb": "Set" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/deviceappmanagement/mobileappconfigurations/{}/assign", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDeviceAppManagementMobileAppConfigurationAssign", + "oracle": "Set-MgDeviceAppManagementMobileAppConfiguration" + }, + "replacementNoun": "DeviceAppManagementMobileAppConfiguration", + "replacementVerb": "Set" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/deviceappmanagement/mobileapps/{}/assign", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDeviceAppManagementMobileAppAssign", + "oracle": "Set-MgDeviceAppManagementMobileApp" + }, + "replacementNoun": "DeviceAppManagementMobileApp", + "replacementVerb": "Set" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/deviceappmanagement/syncmicrosoftstoreforbusinessapps", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDeviceAppManagementSyncMicrosoftStoreForBusinessApps", + "oracle": "Sync-MgDeviceAppManagementMicrosoftStoreForBusinessApp" + }, + "replacementNoun": "DeviceAppManagementMicrosoftStoreForBusinessApp", + "replacementVerb": "Sync" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/deviceappmanagement/targetedmanagedappconfigurations/{}/assign", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDeviceAppManagementTargetedManagedAppConfigurationAssign", + "oracle": "Set-MgDeviceAppManagementTargetedManagedAppConfiguration" + }, + "replacementNoun": "DeviceAppManagementTargetedManagedAppConfiguration", + "replacementVerb": "Set" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/deviceappmanagement/targetedmanagedappconfigurations/{}/targetapps", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDeviceAppManagementTargetedManagedAppConfigurationTargetApps", + "oracle": "Invoke-MgTargetDeviceAppManagementTargetedManagedAppConfigurationApp" + }, + "replacementNoun": "TargetDeviceAppManagementTargetedManagedAppConfigurationApp" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/deviceappmanagement/vpptokens/{}/synclicenses", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDeviceAppManagementVppTokenSyncLicenses", + "oracle": "Sync-MgDeviceAppManagementVppTokenLicense" + }, + "replacementNoun": "DeviceAppManagementVppTokenLicense", + "replacementVerb": "Sync" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/devicemanagement/devicecompliancepolicies/{}/assign", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDeviceManagementDeviceCompliancePolicyAssign", + "oracle": "Set-MgDeviceManagementDeviceCompliancePolicy" + }, + "replacementNoun": "DeviceManagementDeviceCompliancePolicy", + "replacementVerb": "Set" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/devicemanagement/devicecompliancepolicies/{}/scheduleactionsforrules", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDeviceManagementDeviceCompliancePolicyScheduleActionsForRules", + "oracle": "Invoke-MgScheduleDeviceManagementDeviceCompliancePolicyActionForRule" + }, + "replacementNoun": "ScheduleDeviceManagementDeviceCompliancePolicyActionForRule" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/devicemanagement/deviceconfigurations/{}/assign", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDeviceManagementDeviceConfigurationAssign", + "oracle": "Set-MgDeviceManagementDeviceConfiguration" + }, + "replacementNoun": "DeviceManagementDeviceConfiguration", + "replacementVerb": "Set" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/devicemanagement/deviceenrollmentconfigurations/{}/assign", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDeviceManagementDeviceEnrollmentConfigurationAssign", + "oracle": "Set-MgDeviceManagementDeviceEnrollmentConfiguration" + }, + "replacementNoun": "DeviceManagementDeviceEnrollmentConfiguration", + "replacementVerb": "Set" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/devicemanagement/deviceenrollmentconfigurations/{}/setpriority", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDeviceManagementDeviceEnrollmentConfigurationSetPriority", + "oracle": "Set-MgDeviceManagementDeviceEnrollmentConfigurationPriority" + }, + "replacementNoun": "DeviceManagementDeviceEnrollmentConfigurationPriority", + "replacementVerb": "Set" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/devicemanagement/devicemanagementpartners/{}/terminate", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDeviceManagementDeviceManagementPartnerTerminate", + "oracle": "Invoke-MgTerminateDeviceManagementPartner" + }, + "replacementNoun": "TerminateDeviceManagementPartner" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/devicemanagement/exchangeconnectors/{}/sync", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDeviceManagementExchangeConnectorSync", + "oracle": "Sync-MgDeviceManagementExchangeConnector" + }, + "replacementNoun": "DeviceManagementExchangeConnector", + "replacementVerb": "Sync" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/devicemanagement/importedwindowsautopilotdeviceidentities/import", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDeviceManagementImportedWindowsAutopilotDeviceIdentityImport", + "oracle": "Import-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity" + }, + "replacementNoun": "DeviceManagementImportedWindowsAutopilotDeviceIdentity", + "replacementVerb": "Import" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/devicemanagement/iosupdatestatuses", + "action": "rename", + "evidence": { + "ourCommand": "New-MgDeviceManagementIosUpdateStatus", + "oracle": "New-MgDeviceManagementIoUpdateStatus" + }, + "replacementNoun": "DeviceManagementIoUpdateStatus" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/devicemanagement/manageddevices/{}/bypassactivationlock", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDeviceManagementManagedDeviceBypassActivationLock", + "oracle": "Skip-MgDeviceManagementManagedDeviceActivationLock" + }, + "replacementNoun": "DeviceManagementManagedDeviceActivationLock", + "replacementVerb": "Skip" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/devicemanagement/manageddevices/{}/cleanwindowsdevice", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDeviceManagementManagedDeviceCleanWindowsDevice", + "oracle": "Invoke-MgCleanDeviceManagementManagedDeviceWindowsDevice" + }, + "replacementNoun": "CleanDeviceManagementManagedDeviceWindowsDevice" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/devicemanagement/manageddevices/{}/deleteuserfromsharedappledevice", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDeviceManagementManagedDeviceDeleteUserFromSharedAppleDevice", + "oracle": "Remove-MgDeviceManagementManagedDeviceUserFromSharedAppleDevice" + }, + "replacementNoun": "DeviceManagementManagedDeviceUserFromSharedAppleDevice", + "replacementVerb": "Remove" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/devicemanagement/manageddevices/{}/disablelostmode", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDeviceManagementManagedDeviceDisableLostMode", + "oracle": "Disable-MgDeviceManagementManagedDeviceLostMode" + }, + "replacementNoun": "DeviceManagementManagedDeviceLostMode", + "replacementVerb": "Disable" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/devicemanagement/manageddevices/{}/locatedevice", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDeviceManagementManagedDeviceLocateDevice", + "oracle": "Find-MgDeviceManagementManagedDevice" + }, + "replacementNoun": "DeviceManagementManagedDevice", + "replacementVerb": "Find" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/devicemanagement/manageddevices/{}/logcollectionrequests/{}/createdownloadurl", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDeviceManagementManagedDeviceLogCollectionRequestCreateDownloadUrl", + "oracle": "New-MgDeviceManagementManagedDeviceLogCollectionRequestDownloadUrl" + }, + "replacementNoun": "DeviceManagementManagedDeviceLogCollectionRequestDownloadUrl", + "replacementVerb": "New" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/devicemanagement/manageddevices/{}/logoutsharedappledeviceactiveuser", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDeviceManagementManagedDeviceLogoutSharedAppleDeviceActiveUser", + "oracle": "Invoke-MgLogoutDeviceManagementManagedDeviceSharedAppleDeviceActiveUser" + }, + "replacementNoun": "LogoutDeviceManagementManagedDeviceSharedAppleDeviceActiveUser" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/devicemanagement/manageddevices/{}/rebootnow", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDeviceManagementManagedDeviceRebootNow", + "oracle": "Restart-MgDeviceManagementManagedDeviceNow" + }, + "replacementNoun": "DeviceManagementManagedDeviceNow", + "replacementVerb": "Restart" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/devicemanagement/manageddevices/{}/recoverpasscode", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDeviceManagementManagedDeviceRecoverPasscode", + "oracle": "Restore-MgDeviceManagementManagedDevicePasscode" + }, + "replacementNoun": "DeviceManagementManagedDevicePasscode", + "replacementVerb": "Restore" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/devicemanagement/manageddevices/{}/remotelock", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDeviceManagementManagedDeviceRemoteLock", + "oracle": "Lock-MgDeviceManagementManagedDeviceRemote" + }, + "replacementNoun": "DeviceManagementManagedDeviceRemote", + "replacementVerb": "Lock" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/devicemanagement/manageddevices/{}/requestremoteassistance", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDeviceManagementManagedDeviceRequestRemoteAssistance", + "oracle": "Request-MgDeviceManagementManagedDeviceRemoteAssistance" + }, + "replacementNoun": "DeviceManagementManagedDeviceRemoteAssistance", + "replacementVerb": "Request" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/devicemanagement/manageddevices/{}/resetpasscode", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDeviceManagementManagedDeviceResetPasscode", + "oracle": "Reset-MgDeviceManagementManagedDevicePasscode" + }, + "replacementNoun": "DeviceManagementManagedDevicePasscode", + "replacementVerb": "Reset" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/devicemanagement/manageddevices/{}/retire", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDeviceManagementManagedDeviceRetire", + "oracle": "Invoke-MgRetireDeviceManagementManagedDevice" + }, + "replacementNoun": "RetireDeviceManagementManagedDevice" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/devicemanagement/manageddevices/{}/shutdown", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDeviceManagementManagedDeviceShutDown", + "oracle": "Invoke-MgDownDeviceManagementManagedDeviceShut" + }, + "replacementNoun": "DownDeviceManagementManagedDeviceShut" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/devicemanagement/manageddevices/{}/syncdevice", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDeviceManagementManagedDeviceSyncDevice", + "oracle": "Sync-MgDeviceManagementManagedDevice" + }, + "replacementNoun": "DeviceManagementManagedDevice", + "replacementVerb": "Sync" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/devicemanagement/manageddevices/{}/updatewindowsdeviceaccount", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDeviceManagementManagedDeviceUpdateWindowsDeviceAccount", + "oracle": "Update-MgDeviceManagementManagedDeviceWindowsDeviceAccount" + }, + "replacementNoun": "DeviceManagementManagedDeviceWindowsDeviceAccount", + "replacementVerb": "Update" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/devicemanagement/manageddevices/{}/windowsdefenderscan", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDeviceManagementManagedDeviceWindowsDefenderScan", + "oracle": "Invoke-MgScanDeviceManagementManagedDeviceWindowsDefender" + }, + "replacementNoun": "ScanDeviceManagementManagedDeviceWindowsDefender" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/devicemanagement/manageddevices/{}/wipe", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDeviceManagementManagedDeviceWipe", + "oracle": "Clear-MgDeviceManagementManagedDevice" + }, + "replacementNoun": "DeviceManagementManagedDevice", + "replacementVerb": "Clear" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/devicemanagement/mobileapptroubleshootingevents/{}/applogcollectionrequests/{}/createdownloadurl", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestCreateDownloadUrl", + "oracle": "New-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestDownloadUrl" + }, + "replacementNoun": "DeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestDownloadUrl", + "replacementVerb": "New" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/devicemanagement/notificationmessagetemplates/{}/sendtestmessage", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDeviceManagementNotificationMessageTemplateSendTestMessage", + "oracle": "Send-MgDeviceManagementNotificationMessageTemplateTestMessage" + }, + "replacementNoun": "DeviceManagementNotificationMessageTemplateTestMessage", + "replacementVerb": "Send" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/devicemanagement/remoteassistancepartners/{}/beginonboarding", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDeviceManagementRemoteAssistancePartnerBeginOnboarding", + "oracle": "Invoke-MgBeginDeviceManagementRemoteAssistancePartnerOnboarding" + }, + "replacementNoun": "BeginDeviceManagementRemoteAssistancePartnerOnboarding" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/devicemanagement/remoteassistancepartners/{}/disconnect", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDeviceManagementRemoteAssistancePartnerDisconnect", + "oracle": "Disconnect-MgDeviceManagementRemoteAssistancePartner" + }, + "replacementNoun": "DeviceManagementRemoteAssistancePartner", + "replacementVerb": "Disconnect" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/devicemanagement/reports/getcachedreport", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDeviceManagementReportGetCachedReport", + "oracle": "Get-MgDeviceManagementReportCachedReport" + }, + "replacementNoun": "DeviceManagementReportCachedReport", + "replacementVerb": "Get" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/devicemanagement/reports/getcompliancepolicynoncompliancereport", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDeviceManagementReportGetCompliancePolicyNonComplianceReport", + "oracle": "Get-MgDeviceManagementReportCompliancePolicyNonComplianceReport" + }, + "replacementNoun": "DeviceManagementReportCompliancePolicyNonComplianceReport", + "replacementVerb": "Get" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/devicemanagement/reports/getcompliancepolicynoncompliancesummaryreport", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDeviceManagementReportGetCompliancePolicyNonComplianceSummaryReport", + "oracle": "Get-MgDeviceManagementReportCompliancePolicyNonComplianceSummaryReport" + }, + "replacementNoun": "DeviceManagementReportCompliancePolicyNonComplianceSummaryReport", + "replacementVerb": "Get" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/devicemanagement/reports/getcompliancesettingnoncompliancereport", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDeviceManagementReportGetComplianceSettingNonComplianceReport", + "oracle": "Get-MgDeviceManagementReportComplianceSettingNonComplianceReport" + }, + "replacementNoun": "DeviceManagementReportComplianceSettingNonComplianceReport", + "replacementVerb": "Get" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/devicemanagement/reports/getconfigurationpolicynoncompliancereport", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDeviceManagementReportGetConfigurationPolicyNonComplianceReport", + "oracle": "Get-MgDeviceManagementReportConfigurationPolicyNonComplianceReport" + }, + "replacementNoun": "DeviceManagementReportConfigurationPolicyNonComplianceReport", + "replacementVerb": "Get" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/devicemanagement/reports/getconfigurationpolicynoncompliancesummaryreport", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDeviceManagementReportGetConfigurationPolicyNonComplianceSummaryReport", + "oracle": "Get-MgDeviceManagementReportConfigurationPolicyNonComplianceSummaryReport" + }, + "replacementNoun": "DeviceManagementReportConfigurationPolicyNonComplianceSummaryReport", + "replacementVerb": "Get" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/devicemanagement/reports/getconfigurationsettingnoncompliancereport", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDeviceManagementReportGetConfigurationSettingNonComplianceReport", + "oracle": "Get-MgDeviceManagementReportConfigurationSettingNonComplianceReport" + }, + "replacementNoun": "DeviceManagementReportConfigurationSettingNonComplianceReport", + "replacementVerb": "Get" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/devicemanagement/reports/getdevicemanagementintentpersettingcontributingprofiles", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDeviceManagementReportGetDeviceManagementIntentPerSettingContributingProfiles", + "oracle": "Get-MgDeviceManagementReportDeviceManagementIntentPerSettingContributingProfile" + }, + "replacementNoun": "DeviceManagementReportDeviceManagementIntentPerSettingContributingProfile", + "replacementVerb": "Get" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/devicemanagement/reports/getdevicemanagementintentsettingsreport", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDeviceManagementReportGetDeviceManagementIntentSettingsReport", + "oracle": "Get-MgDeviceManagementReportDeviceManagementIntentSettingReport" + }, + "replacementNoun": "DeviceManagementReportDeviceManagementIntentSettingReport", + "replacementVerb": "Get" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/devicemanagement/reports/getdevicenoncompliancereport", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDeviceManagementReportGetDeviceNonComplianceReport", + "oracle": "Get-MgDeviceManagementReportDeviceNonComplianceReport" + }, + "replacementNoun": "DeviceManagementReportDeviceNonComplianceReport", + "replacementVerb": "Get" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/devicemanagement/reports/getdeviceswithoutcompliancepolicyreport", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDeviceManagementReportGetDevicesWithoutCompliancePolicyReport", + "oracle": "Get-MgDeviceManagementReportDeviceWithoutCompliancePolicyReport" + }, + "replacementNoun": "DeviceManagementReportDeviceWithoutCompliancePolicyReport", + "replacementVerb": "Get" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/devicemanagement/reports/gethistoricalreport", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDeviceManagementReportGetHistoricalReport", + "oracle": "Get-MgDeviceManagementReportHistoricalReport" + }, + "replacementNoun": "DeviceManagementReportHistoricalReport", + "replacementVerb": "Get" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/devicemanagement/reports/getnoncompliantdevicesandsettingsreport", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDeviceManagementReportGetNoncompliantDevicesAndSettingsReport", + "oracle": "Get-MgDeviceManagementReportNoncompliantDeviceAndSettingReport" + }, + "replacementNoun": "DeviceManagementReportNoncompliantDeviceAndSettingReport", + "replacementVerb": "Get" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/devicemanagement/reports/getpolicynoncompliancemetadata", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDeviceManagementReportGetPolicyNonComplianceMetadata", + "oracle": "Get-MgDeviceManagementReportPolicyNonComplianceMetadata" + }, + "replacementNoun": "DeviceManagementReportPolicyNonComplianceMetadata", + "replacementVerb": "Get" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/devicemanagement/reports/getpolicynoncompliancereport", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDeviceManagementReportGetPolicyNonComplianceReport", + "oracle": "Get-MgDeviceManagementReportPolicyNonComplianceReport" + }, + "replacementNoun": "DeviceManagementReportPolicyNonComplianceReport", + "replacementVerb": "Get" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/devicemanagement/reports/getpolicynoncompliancesummaryreport", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDeviceManagementReportGetPolicyNonComplianceSummaryReport", + "oracle": "Get-MgDeviceManagementReportPolicyNonComplianceSummaryReport" + }, + "replacementNoun": "DeviceManagementReportPolicyNonComplianceSummaryReport", + "replacementVerb": "Get" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/devicemanagement/reports/getreportfilters", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDeviceManagementReportGetReportFilters", + "oracle": "Get-MgDeviceManagementReportFilter" + }, + "replacementNoun": "DeviceManagementReportFilter", + "replacementVerb": "Get" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/devicemanagement/reports/getsettingnoncompliancereport", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDeviceManagementReportGetSettingNonComplianceReport", + "oracle": "Get-MgDeviceManagementReportSettingNonComplianceReport" + }, + "replacementNoun": "DeviceManagementReportSettingNonComplianceReport", + "replacementVerb": "Get" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/devicemanagement/reports/retrievedeviceappinstallationstatusreport", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDeviceManagementReportRetrieveDeviceAppInstallationStatusReport", + "oracle": "Get-MgDeviceManagementReportDeviceAppInstallationStatusReport" + }, + "replacementNoun": "DeviceManagementReportDeviceAppInstallationStatusReport", + "replacementVerb": "Get" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/devicemanagement/virtualendpoint/cloudpcs/{}/endgraceperiod", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDeviceManagementVirtualEndpointCloudPCsEndGracePeriod", + "oracle": "Stop-MgDeviceManagementVirtualEndpointCloudPcGracePeriod" + }, + "replacementNoun": "DeviceManagementVirtualEndpointCloudPcGracePeriod", + "replacementVerb": "Stop" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/devicemanagement/virtualendpoint/cloudpcs/{}/reboot", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDeviceManagementVirtualEndpointCloudPCsReboot", + "oracle": "Restart-MgDeviceManagementVirtualEndpointCloudPc" + }, + "replacementNoun": "DeviceManagementVirtualEndpointCloudPc", + "replacementVerb": "Restart" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/devicemanagement/virtualendpoint/cloudpcs/{}/rename", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDeviceManagementVirtualEndpointCloudPCsRename", + "oracle": "Rename-MgDeviceManagementVirtualEndpointCloudPc" + }, + "replacementNoun": "DeviceManagementVirtualEndpointCloudPc", + "replacementVerb": "Rename" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/devicemanagement/virtualendpoint/cloudpcs/{}/reprovision", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDeviceManagementVirtualEndpointCloudPCsReprovision", + "oracle": "Invoke-MgReprovisionDeviceManagementVirtualEndpointCloudPc" + }, + "replacementNoun": "ReprovisionDeviceManagementVirtualEndpointCloudPc" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/devicemanagement/virtualendpoint/cloudpcs/{}/resize", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDeviceManagementVirtualEndpointCloudPCsResize", + "oracle": "Resize-MgDeviceManagementVirtualEndpointCloudPc" + }, + "replacementNoun": "DeviceManagementVirtualEndpointCloudPc", + "replacementVerb": "Resize" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/devicemanagement/virtualendpoint/cloudpcs/{}/restore", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDeviceManagementVirtualEndpointCloudPCsRestore", + "oracle": "Restore-MgDeviceManagementVirtualEndpointCloudPc" + }, + "replacementNoun": "DeviceManagementVirtualEndpointCloudPc", + "replacementVerb": "Restore" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/devicemanagement/virtualendpoint/cloudpcs/{}/troubleshoot", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDeviceManagementVirtualEndpointCloudPCsTroubleshoot", + "oracle": "Invoke-MgTroubleshootDeviceManagementVirtualEndpointCloudPc" + }, + "replacementNoun": "TroubleshootDeviceManagementVirtualEndpointCloudPc" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/devicemanagement/virtualendpoint/onpremisesconnections/{}/runhealthchecks", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDeviceManagementVirtualEndpointOnPremiseConnectionRunHealthChecks", + "oracle": "Start-MgDeviceManagementVirtualEndpointOnPremiseConnectionHealthCheck" + }, + "replacementNoun": "DeviceManagementVirtualEndpointOnPremiseConnectionHealthCheck", + "replacementVerb": "Start" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/devicemanagement/virtualendpoint/onpremisesconnections/{}/updateaddomainpassword", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDeviceManagementVirtualEndpointOnPremiseConnectionUpdateAdDomainPassword", + "oracle": "Update-MgDeviceManagementVirtualEndpointOnPremiseConnectionAdDomainPassword" + }, + "replacementNoun": "DeviceManagementVirtualEndpointOnPremiseConnectionAdDomainPassword", + "replacementVerb": "Update" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/devicemanagement/virtualendpoint/provisioningpolicies/{}/assign", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDeviceManagementVirtualEndpointProvisioningPolicyAssign", + "oracle": "Set-MgDeviceManagementVirtualEndpointProvisioningPolicy" + }, + "replacementNoun": "DeviceManagementVirtualEndpointProvisioningPolicy", + "replacementVerb": "Set" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/devicemanagement/virtualendpoint/report/retrievecloudpcrecommendationreports", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDeviceManagementVirtualEndpointReportRetrieveCloudPcRecommendationReports", + "oracle": "Get-MgDeviceManagementVirtualEndpointReportCloudPcRecommendationReport" + }, + "replacementNoun": "DeviceManagementVirtualEndpointReportCloudPcRecommendationReport", + "replacementVerb": "Get" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/devicemanagement/virtualendpoint/usersettings/{}/assign", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDeviceManagementVirtualEndpointUserSettingAssign", + "oracle": "Set-MgDeviceManagementVirtualEndpointUserSetting" + }, + "replacementNoun": "DeviceManagementVirtualEndpointUserSetting", + "replacementVerb": "Set" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/devicemanagement/windowsautopilotdeviceidentities/{}/assignusertodevice", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDeviceManagementWindowsAutopilotDeviceIdentityAssignUserToDevice", + "oracle": "Set-MgDeviceManagementWindowsAutopilotDeviceIdentityUserToDevice" + }, + "replacementNoun": "DeviceManagementWindowsAutopilotDeviceIdentityUserToDevice", + "replacementVerb": "Set" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/devicemanagement/windowsautopilotdeviceidentities/{}/unassignuserfromdevice", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDeviceManagementWindowsAutopilotDeviceIdentityUnassignUserFromDevice", + "oracle": "Invoke-MgUnassignDeviceManagementWindowsAutopilotDeviceIdentityUserFromDevice" + }, + "replacementNoun": "UnassignDeviceManagementWindowsAutopilotDeviceIdentityUserFromDevice" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/devicemanagement/windowsautopilotdeviceidentities/{}/updatedeviceproperties", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDeviceManagementWindowsAutopilotDeviceIdentityUpdateDeviceProperties", + "oracle": "Update-MgDeviceManagementWindowsAutopilotDeviceIdentityDeviceProperty" + }, + "replacementNoun": "DeviceManagementWindowsAutopilotDeviceIdentityDeviceProperty", + "replacementVerb": "Update" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/devices/{}/checkmembergroups", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDeviceCheckMemberGroups", + "oracle": "Confirm-MgDeviceMemberGroup" + }, + "replacementNoun": "DeviceMemberGroup", + "replacementVerb": "Confirm" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/devices/{}/checkmemberobjects", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDeviceCheckMemberObjects", + "oracle": "Confirm-MgDeviceMemberObject" + }, + "replacementNoun": "DeviceMemberObject", + "replacementVerb": "Confirm" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/devices/{}/getmembergroups", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDeviceGetMemberGroups", + "oracle": "Get-MgDeviceMemberGroup" + }, + "replacementNoun": "DeviceMemberGroup", + "replacementVerb": "Get" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/devices/{}/getmemberobjects", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDeviceGetMemberObjects", + "oracle": "Get-MgDeviceMemberObject" + }, + "replacementNoun": "DeviceMemberObject", + "replacementVerb": "Get" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/devices/getbyids", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDeviceGetByIds", + "oracle": "Get-MgDeviceById" + }, + "replacementNoun": "DeviceById", + "replacementVerb": "Get" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/devices/validateproperties", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDeviceValidateProperties", + "oracle": "Test-MgDeviceProperty" + }, + "replacementNoun": "DeviceProperty", + "replacementVerb": "Test" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/directory/deleteditems/{}/checkmembergroups", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDirectoryDeletedItemCheckMemberGroups", + "oracle": "Confirm-MgDirectoryDeletedItemMemberGroup" + }, + "replacementNoun": "DirectoryDeletedItemMemberGroup", + "replacementVerb": "Confirm" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/directory/deleteditems/{}/checkmemberobjects", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDirectoryDeletedItemCheckMemberObjects", + "oracle": "Confirm-MgDirectoryDeletedItemMemberObject" + }, + "replacementNoun": "DirectoryDeletedItemMemberObject", + "replacementVerb": "Confirm" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/directory/deleteditems/{}/getmembergroups", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDirectoryDeletedItemGetMemberGroups", + "oracle": "Get-MgDirectoryDeletedItemMemberGroup" + }, + "replacementNoun": "DirectoryDeletedItemMemberGroup", + "replacementVerb": "Get" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/directory/deleteditems/{}/getmemberobjects", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDirectoryDeletedItemGetMemberObjects", + "oracle": "Get-MgDirectoryDeletedItemMemberObject" + }, + "replacementNoun": "DirectoryDeletedItemMemberObject", + "replacementVerb": "Get" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/directory/deleteditems/{}/restore", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDirectoryDeletedItemRestore", + "oracle": "Restore-MgDirectoryDeletedItem" + }, + "replacementNoun": "DirectoryDeletedItem", + "replacementVerb": "Restore" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/directory/deleteditems/getbyids", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDirectoryDeletedItemGetByIds", + "oracle": "Get-MgDirectoryDeletedItemById" + }, + "replacementNoun": "DirectoryDeletedItemById", + "replacementVerb": "Get" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/directory/deleteditems/validateproperties", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDirectoryDeletedItemValidateProperties", + "oracle": "Test-MgDirectoryDeletedItemProperty" + }, + "replacementNoun": "DirectoryDeletedItemProperty", + "replacementVerb": "Test" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/directory/publickeyinfrastructure/certificatebasedauthconfigurations/{}/upload", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfigurationUpload", + "oracle": "Invoke-MgUploadDirectoryPublicKeyInfrastructureCertificateBasedAuthConfiguration" + }, + "replacementNoun": "UploadDirectoryPublicKeyInfrastructureCertificateBasedAuthConfiguration" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/directoryobjects/{}/checkmembergroups", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDirectoryObjectCheckMemberGroups", + "oracle": "Confirm-MgDirectoryObjectMemberGroup" + }, + "replacementNoun": "DirectoryObjectMemberGroup", + "replacementVerb": "Confirm" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/directoryobjects/{}/checkmemberobjects", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDirectoryObjectCheckMemberObjects", + "oracle": "Confirm-MgDirectoryObjectMemberObject" + }, + "replacementNoun": "DirectoryObjectMemberObject", + "replacementVerb": "Confirm" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/directoryobjects/{}/getmembergroups", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDirectoryObjectGetMemberGroups", + "oracle": "Get-MgDirectoryObjectMemberGroup" + }, + "replacementNoun": "DirectoryObjectMemberGroup", + "replacementVerb": "Get" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/directoryobjects/{}/getmemberobjects", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDirectoryObjectGetMemberObjects", + "oracle": "Get-MgDirectoryObjectMemberObject" + }, + "replacementNoun": "DirectoryObjectMemberObject", + "replacementVerb": "Get" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/directoryobjects/getavailableextensionproperties", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDirectoryObjectGetAvailableExtensionProperties", + "oracle": "Get-MgDirectoryObjectAvailableExtensionProperty" + }, + "replacementNoun": "DirectoryObjectAvailableExtensionProperty", + "replacementVerb": "Get" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/directoryobjects/getbyids", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDirectoryObjectGetByIds", + "oracle": "Get-MgDirectoryObjectById" + }, + "replacementNoun": "DirectoryObjectById", + "replacementVerb": "Get" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/directoryobjects/validateproperties", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDirectoryObjectValidateProperties", + "oracle": "Test-MgDirectoryObjectProperty" + }, + "replacementNoun": "DirectoryObjectProperty", + "replacementVerb": "Test" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/directoryroles/{}/checkmembergroups", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDirectoryRoleCheckMemberGroups", + "oracle": "Confirm-MgDirectoryRoleMemberGroup" + }, + "replacementNoun": "DirectoryRoleMemberGroup", + "replacementVerb": "Confirm" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/directoryroles/{}/checkmemberobjects", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDirectoryRoleCheckMemberObjects", + "oracle": "Confirm-MgDirectoryRoleMemberObject" + }, + "replacementNoun": "DirectoryRoleMemberObject", + "replacementVerb": "Confirm" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/directoryroles/{}/getmembergroups", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDirectoryRoleGetMemberGroups", + "oracle": "Get-MgDirectoryRoleMemberGroup" + }, + "replacementNoun": "DirectoryRoleMemberGroup", + "replacementVerb": "Get" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/directoryroles/{}/getmemberobjects", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDirectoryRoleGetMemberObjects", + "oracle": "Get-MgDirectoryRoleMemberObject" + }, + "replacementNoun": "DirectoryRoleMemberObject", + "replacementVerb": "Get" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/directoryroles/getbyids", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDirectoryRoleGetByIds", + "oracle": "Get-MgDirectoryRoleById" + }, + "replacementNoun": "DirectoryRoleById", + "replacementVerb": "Get" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/directoryroles/validateproperties", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDirectoryRoleValidateProperties", + "oracle": "Test-MgDirectoryRoleProperty" + }, + "replacementNoun": "DirectoryRoleProperty", + "replacementVerb": "Test" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/directoryroletemplates/{}/checkmembergroups", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDirectoryRoleTemplateCheckMemberGroups", + "oracle": "Confirm-MgDirectoryRoleTemplateMemberGroup" + }, + "replacementNoun": "DirectoryRoleTemplateMemberGroup", + "replacementVerb": "Confirm" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/directoryroletemplates/{}/checkmemberobjects", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDirectoryRoleTemplateCheckMemberObjects", + "oracle": "Confirm-MgDirectoryRoleTemplateMemberObject" + }, + "replacementNoun": "DirectoryRoleTemplateMemberObject", + "replacementVerb": "Confirm" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/directoryroletemplates/{}/getmembergroups", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDirectoryRoleTemplateGetMemberGroups", + "oracle": "Get-MgDirectoryRoleTemplateMemberGroup" + }, + "replacementNoun": "DirectoryRoleTemplateMemberGroup", + "replacementVerb": "Get" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/directoryroletemplates/{}/getmemberobjects", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDirectoryRoleTemplateGetMemberObjects", + "oracle": "Get-MgDirectoryRoleTemplateMemberObject" + }, + "replacementNoun": "DirectoryRoleTemplateMemberObject", + "replacementVerb": "Get" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/directoryroletemplates/getbyids", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDirectoryRoleTemplateGetByIds", + "oracle": "Get-MgDirectoryRoleTemplateById" + }, + "replacementNoun": "DirectoryRoleTemplateById", + "replacementVerb": "Get" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/directoryroletemplates/validateproperties", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDirectoryRoleTemplateValidateProperties", + "oracle": "Test-MgDirectoryRoleTemplateProperty" + }, + "replacementNoun": "DirectoryRoleTemplateProperty", + "replacementVerb": "Test" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/domains/{}/forcedelete", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDomainForceDelete", + "oracle": "Invoke-MgForceDomainDelete" + }, + "replacementNoun": "ForceDomainDelete" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/domains/{}/promote", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDomainPromote", + "oracle": "Invoke-MgPromoteDomain" + }, + "replacementNoun": "PromoteDomain" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/domains/{}/verify", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDomainVerify", + "oracle": "Confirm-MgDomain" + }, + "replacementNoun": "Domain", + "replacementVerb": "Confirm" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/assignsensitivitylabel", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDriveItemAssignSensitivityLabel", + "oracle": "Set-MgDriveItemSensitivityLabel" + }, + "replacementNoun": "DriveItemSensitivityLabel", + "replacementVerb": "Set" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/checkin", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDriveItemCheckin", + "oracle": "Invoke-MgCheckinDriveItem" + }, + "replacementNoun": "CheckinDriveItem" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/checkout", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDriveItemCheckout", + "oracle": "Invoke-MgCheckoutDriveItem" + }, + "replacementNoun": "CheckoutDriveItem" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/copy", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDriveItemCopy", + "oracle": "Copy-MgDriveItem" + }, + "replacementNoun": "DriveItem", + "replacementVerb": "Copy" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/createlink", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDriveItemCreateLink", + "oracle": "New-MgDriveItemLink" + }, + "replacementNoun": "DriveItemLink", + "replacementVerb": "New" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/createuploadsession", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDriveItemCreateUploadSession", + "oracle": "New-MgDriveItemUploadSession" + }, + "replacementNoun": "DriveItemUploadSession", + "replacementVerb": "New" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/discardcheckout", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDriveItemDiscardCheckout", + "oracle": "Remove-MgDriveItemCheckout" + }, + "replacementNoun": "DriveItemCheckout", + "replacementVerb": "Remove" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/extractsensitivitylabels", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDriveItemExtractSensitivityLabels", + "oracle": "Invoke-MgExtractDriveItemSensitivityLabel" + }, + "replacementNoun": "ExtractDriveItemSensitivityLabel" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/follow", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDriveItemFollow", + "oracle": "Invoke-MgFollowDriveItem" + }, + "replacementNoun": "FollowDriveItem" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/invite", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDriveItemInvite", + "oracle": "Invoke-MgInviteDriveItem" + }, + "replacementNoun": "InviteDriveItem" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/permanentdelete", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDriveItemPermanentDelete", + "oracle": "Remove-MgDriveItemPermanent" + }, + "replacementNoun": "DriveItemPermanent", + "replacementVerb": "Remove" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/permissions/{}/grant", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDriveItemPermissionGrant", + "oracle": "Grant-MgDriveItemPermission" + }, + "replacementNoun": "DriveItemPermission", + "replacementVerb": "Grant" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/preview", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDriveItemPreview", + "oracle": "Invoke-MgPreviewDriveItem" + }, + "replacementNoun": "PreviewDriveItem" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/restore", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDriveItemRestore", + "oracle": "Restore-MgDriveItem" + }, + "replacementNoun": "DriveItem", + "replacementVerb": "Restore" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/subscriptions/{}/reauthorize", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDriveItemSubscriptionReauthorize", + "oracle": "Invoke-MgReauthorizeDriveItemSubscription" + }, + "replacementNoun": "ReauthorizeDriveItemSubscription" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/unfollow", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDriveItemUnfollow", + "oracle": "Invoke-MgUnfollowDriveItem" + }, + "replacementNoun": "UnfollowDriveItem" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/validatepermission", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDriveItemValidatePermission", + "oracle": "Test-MgDriveItemPermission" + }, + "replacementNoun": "DriveItemPermission", + "replacementVerb": "Test" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/versions/{}/restoreversion", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDriveItemVersionRestoreVersion", + "oracle": "Restore-MgDriveItemVersion" + }, + "replacementNoun": "DriveItemVersion", + "replacementVerb": "Restore" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/list/contenttypes/{}/associatewithhubsites", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDriveListContentTypeAssociateWithHubSites", + "oracle": "Join-MgDriveListContentTypeWithHubSite" + }, + "replacementNoun": "DriveListContentTypeWithHubSite", + "replacementVerb": "Join" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/list/contenttypes/{}/copytodefaultcontentlocation", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDriveListContentTypeCopyToDefaultContentLocation", + "oracle": "Copy-MgDriveListContentTypeToDefaultContentLocation" + }, + "replacementNoun": "DriveListContentTypeToDefaultContentLocation", + "replacementVerb": "Copy" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/list/contenttypes/{}/publish", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDriveListContentTypePublish", + "oracle": "Publish-MgDriveListContentType" + }, + "replacementNoun": "DriveListContentType", + "replacementVerb": "Publish" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/list/contenttypes/{}/unpublish", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDriveListContentTypeUnpublish", + "oracle": "Unpublish-MgDriveListContentType" + }, + "replacementNoun": "DriveListContentType", + "replacementVerb": "Unpublish" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/list/contenttypes/addcopy", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDriveListContentTypeAddCopy", + "oracle": "Add-MgDriveListContentTypeCopy" + }, + "replacementNoun": "DriveListContentTypeCopy", + "replacementVerb": "Add" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/list/contenttypes/addcopyfromcontenttypehub", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDriveListContentTypeAddCopyFromContentTypeHub", + "oracle": "Add-MgDriveListContentTypeCopyFromContentTypeHub" + }, + "replacementNoun": "DriveListContentTypeCopyFromContentTypeHub", + "replacementVerb": "Add" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/list/items/{}/createlink", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDriveListItemCreateLink", + "oracle": "New-MgDriveListItemLink" + }, + "replacementNoun": "DriveListItemLink", + "replacementVerb": "New" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/list/items/{}/documentsetversions/{}/restore", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDriveListItemDocumentSetVersionRestore", + "oracle": "Restore-MgDriveListItemDocumentSetVersion" + }, + "replacementNoun": "DriveListItemDocumentSetVersion", + "replacementVerb": "Restore" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/list/items/{}/versions/{}/restoreversion", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDriveListItemVersionRestoreVersion", + "oracle": "Restore-MgDriveListItemVersion" + }, + "replacementNoun": "DriveListItemVersion", + "replacementVerb": "Restore" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/list/subscriptions/{}/reauthorize", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgDriveListSubscriptionReauthorize", + "oracle": "Invoke-MgReauthorizeDriveListSubscription" + }, + "replacementNoun": "ReauthorizeDriveListSubscription" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/education/classes/{}/assignments/{}/activate", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgEducationClassAssignmentActivate", + "oracle": "Initialize-MgEducationClassAssignment" + }, + "replacementNoun": "EducationClassAssignment", + "replacementVerb": "Initialize" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/education/classes/{}/assignments/{}/deactivate", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgEducationClassAssignmentDeactivate", + "oracle": "Invoke-MgDeactivateEducationClassAssignment" + }, + "replacementNoun": "DeactivateEducationClassAssignment" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/education/classes/{}/assignments/{}/publish", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgEducationClassAssignmentPublish", + "oracle": "Publish-MgEducationClassAssignment" + }, + "replacementNoun": "EducationClassAssignment", + "replacementVerb": "Publish" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/education/classes/{}/assignments/{}/setupfeedbackresourcesfolder", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgEducationClassAssignmentSetUpFeedbackResourcesFolder", + "oracle": "Set-MgEducationClassAssignmentUpFeedbackResourceFolder" + }, + "replacementNoun": "EducationClassAssignmentUpFeedbackResourceFolder", + "replacementVerb": "Set" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/education/classes/{}/assignments/{}/setupresourcesfolder", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgEducationClassAssignmentSetUpResourcesFolder", + "oracle": "Set-MgEducationClassAssignmentUpResourceFolder" + }, + "replacementNoun": "EducationClassAssignmentUpResourceFolder", + "replacementVerb": "Set" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/education/classes/{}/assignments/{}/submissions/{}/excuse", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgEducationClassAssignmentSubmissionExcuse", + "oracle": "Invoke-MgExcuseEducationClassAssignmentSubmission" + }, + "replacementNoun": "ExcuseEducationClassAssignmentSubmission" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/education/classes/{}/assignments/{}/submissions/{}/reassign", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgEducationClassAssignmentSubmissionReassign", + "oracle": "Invoke-MgReassignEducationClassAssignmentSubmission" + }, + "replacementNoun": "ReassignEducationClassAssignmentSubmission" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/education/classes/{}/assignments/{}/submissions/{}/return", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgEducationClassAssignmentSubmissionReturn", + "oracle": "Invoke-MgReturnEducationClassAssignmentSubmission" + }, + "replacementNoun": "ReturnEducationClassAssignmentSubmission" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/education/classes/{}/assignments/{}/submissions/{}/setupresourcesfolder", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgEducationClassAssignmentSubmissionSetUpResourcesFolder", + "oracle": "Set-MgEducationClassAssignmentSubmissionUpResourceFolder" + }, + "replacementNoun": "EducationClassAssignmentSubmissionUpResourceFolder", + "replacementVerb": "Set" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/education/classes/{}/assignments/{}/submissions/{}/submit", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgEducationClassAssignmentSubmissionSubmit", + "oracle": "Submit-MgEducationClassAssignmentSubmission" + }, + "replacementNoun": "EducationClassAssignmentSubmission", + "replacementVerb": "Submit" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/education/classes/{}/assignments/{}/submissions/{}/unsubmit", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgEducationClassAssignmentSubmissionUnsubmit", + "oracle": "Invoke-MgUnsubmitEducationClassAssignmentSubmission" + }, + "replacementNoun": "UnsubmitEducationClassAssignmentSubmission" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/education/classes/{}/modules/{}/pin", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgEducationClassModulePin", + "oracle": "Invoke-MgPinEducationClassModule" + }, + "replacementNoun": "PinEducationClassModule" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/education/classes/{}/modules/{}/publish", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgEducationClassModulePublish", + "oracle": "Publish-MgEducationClassModule" + }, + "replacementNoun": "EducationClassModule", + "replacementVerb": "Publish" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/education/classes/{}/modules/{}/setupresourcesfolder", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgEducationClassModuleSetUpResourcesFolder", + "oracle": "Set-MgEducationClassModuleUpResourceFolder" + }, + "replacementNoun": "EducationClassModuleUpResourceFolder", + "replacementVerb": "Set" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/education/classes/{}/modules/{}/unpin", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgEducationClassModuleUnpin", + "oracle": "Invoke-MgUnpinEducationClassModule" + }, + "replacementNoun": "UnpinEducationClassModule" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/education/me/assignments/{}/activate", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgEducationMeAssignmentActivate", + "oracle": "Initialize-MgEducationMeAssignment" + }, + "replacementNoun": "EducationMeAssignment", + "replacementVerb": "Initialize" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/education/me/assignments/{}/deactivate", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgEducationMeAssignmentDeactivate", + "oracle": "Invoke-MgDeactivateEducationMeAssignment" + }, + "replacementNoun": "DeactivateEducationMeAssignment" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/education/me/assignments/{}/publish", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgEducationMeAssignmentPublish", + "oracle": "Publish-MgEducationMeAssignment" + }, + "replacementNoun": "EducationMeAssignment", + "replacementVerb": "Publish" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/education/me/assignments/{}/setupfeedbackresourcesfolder", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgEducationMeAssignmentSetUpFeedbackResourcesFolder", + "oracle": "Set-MgEducationMeAssignmentUpFeedbackResourceFolder" + }, + "replacementNoun": "EducationMeAssignmentUpFeedbackResourceFolder", + "replacementVerb": "Set" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/education/me/assignments/{}/setupresourcesfolder", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgEducationMeAssignmentSetUpResourcesFolder", + "oracle": "Set-MgEducationMeAssignmentUpResourceFolder" + }, + "replacementNoun": "EducationMeAssignmentUpResourceFolder", + "replacementVerb": "Set" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/education/me/assignments/{}/submissions/{}/excuse", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgEducationMeAssignmentSubmissionExcuse", + "oracle": "Invoke-MgExcuseEducationMeAssignmentSubmission" + }, + "replacementNoun": "ExcuseEducationMeAssignmentSubmission" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/education/me/assignments/{}/submissions/{}/reassign", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgEducationMeAssignmentSubmissionReassign", + "oracle": "Invoke-MgReassignEducationMeAssignmentSubmission" + }, + "replacementNoun": "ReassignEducationMeAssignmentSubmission" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/education/me/assignments/{}/submissions/{}/return", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgEducationMeAssignmentSubmissionReturn", + "oracle": "Invoke-MgReturnEducationMeAssignmentSubmission" + }, + "replacementNoun": "ReturnEducationMeAssignmentSubmission" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/education/me/assignments/{}/submissions/{}/setupresourcesfolder", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgEducationMeAssignmentSubmissionSetUpResourcesFolder", + "oracle": "Set-MgEducationMeAssignmentSubmissionUpResourceFolder" + }, + "replacementNoun": "EducationMeAssignmentSubmissionUpResourceFolder", + "replacementVerb": "Set" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/education/me/assignments/{}/submissions/{}/submit", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgEducationMeAssignmentSubmissionSubmit", + "oracle": "Submit-MgEducationMeAssignmentSubmission" + }, + "replacementNoun": "EducationMeAssignmentSubmission", + "replacementVerb": "Submit" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/education/me/assignments/{}/submissions/{}/unsubmit", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgEducationMeAssignmentSubmissionUnsubmit", + "oracle": "Invoke-MgUnsubmitEducationMeAssignmentSubmission" + }, + "replacementNoun": "UnsubmitEducationMeAssignmentSubmission" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/education/reports/reflectcheckinresponses", + "action": "rename", + "evidence": { + "ourCommand": "New-MgEducationReportReflectCheckInResponse", + "oracle": "New-MgEducationReportReflectCheck" + }, + "replacementNoun": "EducationReportReflectCheck" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/education/users/{}/assignments/{}/activate", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgEducationUserAssignmentActivate", + "oracle": "Initialize-MgEducationUserAssignment" + }, + "replacementNoun": "EducationUserAssignment", + "replacementVerb": "Initialize" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/education/users/{}/assignments/{}/deactivate", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgEducationUserAssignmentDeactivate", + "oracle": "Invoke-MgDeactivateEducationUserAssignment" + }, + "replacementNoun": "DeactivateEducationUserAssignment" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/education/users/{}/assignments/{}/publish", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgEducationUserAssignmentPublish", + "oracle": "Publish-MgEducationUserAssignment" + }, + "replacementNoun": "EducationUserAssignment", + "replacementVerb": "Publish" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/education/users/{}/assignments/{}/setupfeedbackresourcesfolder", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgEducationUserAssignmentSetUpFeedbackResourcesFolder", + "oracle": "Set-MgEducationUserAssignmentUpFeedbackResourceFolder" + }, + "replacementNoun": "EducationUserAssignmentUpFeedbackResourceFolder", + "replacementVerb": "Set" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/education/users/{}/assignments/{}/setupresourcesfolder", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgEducationUserAssignmentSetUpResourcesFolder", + "oracle": "Set-MgEducationUserAssignmentUpResourceFolder" + }, + "replacementNoun": "EducationUserAssignmentUpResourceFolder", + "replacementVerb": "Set" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/education/users/{}/assignments/{}/submissions/{}/excuse", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgEducationUserAssignmentSubmissionExcuse", + "oracle": "Invoke-MgExcuseEducationUserAssignmentSubmission" + }, + "replacementNoun": "ExcuseEducationUserAssignmentSubmission" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/education/users/{}/assignments/{}/submissions/{}/reassign", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgEducationUserAssignmentSubmissionReassign", + "oracle": "Invoke-MgReassignEducationUserAssignmentSubmission" + }, + "replacementNoun": "ReassignEducationUserAssignmentSubmission" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/education/users/{}/assignments/{}/submissions/{}/return", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgEducationUserAssignmentSubmissionReturn", + "oracle": "Invoke-MgReturnEducationUserAssignmentSubmission" + }, + "replacementNoun": "ReturnEducationUserAssignmentSubmission" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/education/users/{}/assignments/{}/submissions/{}/setupresourcesfolder", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgEducationUserAssignmentSubmissionSetUpResourcesFolder", + "oracle": "Set-MgEducationUserAssignmentSubmissionUpResourceFolder" + }, + "replacementNoun": "EducationUserAssignmentSubmissionUpResourceFolder", + "replacementVerb": "Set" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/education/users/{}/assignments/{}/submissions/{}/submit", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgEducationUserAssignmentSubmissionSubmit", + "oracle": "Submit-MgEducationUserAssignmentSubmission" + }, + "replacementNoun": "EducationUserAssignmentSubmission", + "replacementVerb": "Submit" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/education/users/{}/assignments/{}/submissions/{}/unsubmit", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgEducationUserAssignmentSubmissionUnsubmit", + "oracle": "Invoke-MgUnsubmitEducationUserAssignmentSubmission" + }, + "replacementNoun": "UnsubmitEducationUserAssignmentSubmission" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/grouplifecyclepolicies/{}/addgroup", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupLifecyclePolicyAddGroup", + "oracle": "Add-MgGroupToLifecyclePolicy" + }, + "replacementNoun": "GroupToLifecyclePolicy", + "replacementVerb": "Add" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/grouplifecyclepolicies/{}/removegroup", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupLifecyclePolicyRemoveGroup", + "oracle": "Remove-MgGroupFromLifecyclePolicy" + }, + "replacementNoun": "GroupFromLifecyclePolicy", + "replacementVerb": "Remove" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/addfavorite", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupAddFavorite", + "oracle": "Add-MgGroupFavorite" + }, + "replacementNoun": "GroupFavorite", + "replacementVerb": "Add" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/assignlicense", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupAssignLicense", + "oracle": "Set-MgGroupLicense" + }, + "replacementNoun": "GroupLicense", + "replacementVerb": "Set" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/calendar/getschedule", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupCalendarGetSchedule", + "oracle": "Get-MgGroupCalendarSchedule" + }, + "replacementNoun": "GroupCalendarSchedule", + "replacementVerb": "Get" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/calendar/permanentdelete", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupCalendarPermanentDelete", + "oracle": "Remove-MgGroupCalendarPermanent" + }, + "replacementNoun": "GroupCalendarPermanent", + "replacementVerb": "Remove" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/checkgrantedpermissionsforapp", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupCheckGrantedPermissionsForApp", + "oracle": "Confirm-MgGroupGrantedPermissionForApp" + }, + "replacementNoun": "GroupGrantedPermissionForApp", + "replacementVerb": "Confirm" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/checkmembergroups", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupCheckMemberGroups", + "oracle": "Confirm-MgGroupMemberGroup" + }, + "replacementNoun": "GroupMemberGroup", + "replacementVerb": "Confirm" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/checkmemberobjects", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupCheckMemberObjects", + "oracle": "Confirm-MgGroupMemberObject" + }, + "replacementNoun": "GroupMemberObject", + "replacementVerb": "Confirm" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/conversations/{}/threads/{}/posts/{}/attachments/createuploadsession", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupConversationThreadPostAttachmentCreateUploadSession", + "oracle": "New-MgGroupConversationThreadPostAttachmentUploadSession" + }, + "replacementNoun": "GroupConversationThreadPostAttachmentUploadSession", + "replacementVerb": "New" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/conversations/{}/threads/{}/posts/{}/forward", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupConversationThreadPostForward", + "oracle": "Invoke-MgForwardGroupConversationThreadPost" + }, + "replacementNoun": "ForwardGroupConversationThreadPost" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/conversations/{}/threads/{}/posts/{}/inreplyto/attachments/createuploadsession", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupConversationThreadPostInReplyToAttachmentCreateUploadSession", + "oracle": "New-MgGroupConversationThreadPostInReplyToAttachmentUploadSession" + }, + "replacementNoun": "GroupConversationThreadPostInReplyToAttachmentUploadSession", + "replacementVerb": "New" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/conversations/{}/threads/{}/posts/{}/inreplyto/forward", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupConversationThreadPostInReplyToForward", + "oracle": "Invoke-MgForwardGroupConversationThreadPostInReplyTo" + }, + "replacementNoun": "ForwardGroupConversationThreadPostInReplyTo" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/conversations/{}/threads/{}/posts/{}/inreplyto/reply", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupConversationThreadPostInReplyToReply", + "oracle": "Invoke-MgReplyGroupConversationThreadPostInReplyTo" + }, + "replacementNoun": "ReplyGroupConversationThreadPostInReplyTo" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/conversations/{}/threads/{}/posts/{}/reply", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupConversationThreadPostReply", + "oracle": "Invoke-MgReplyGroupConversationThreadPost" + }, + "replacementNoun": "ReplyGroupConversationThreadPost" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/conversations/{}/threads/{}/reply", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupConversationThreadReply", + "oracle": "Invoke-MgReplyGroupConversationThread" + }, + "replacementNoun": "ReplyGroupConversationThread" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/events/{}/accept", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupEventAccept", + "oracle": "Invoke-MgAcceptGroupEvent" + }, + "replacementNoun": "AcceptGroupEvent" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/events/{}/attachments/createuploadsession", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupEventAttachmentCreateUploadSession", + "oracle": "New-MgGroupEventAttachmentUploadSession" + }, + "replacementNoun": "GroupEventAttachmentUploadSession", + "replacementVerb": "New" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/events/{}/cancel", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupEventCancel", + "oracle": "Stop-MgGroupEvent" + }, + "replacementNoun": "GroupEvent", + "replacementVerb": "Stop" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/events/{}/decline", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupEventDecline", + "oracle": "Invoke-MgDeclineGroupEvent" + }, + "replacementNoun": "DeclineGroupEvent" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/events/{}/dismissreminder", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupEventDismissReminder", + "oracle": "Invoke-MgDismissGroupEventReminder" + }, + "replacementNoun": "DismissGroupEventReminder" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/events/{}/forward", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupEventForward", + "oracle": "Invoke-MgForwardGroupEvent" + }, + "replacementNoun": "ForwardGroupEvent" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/events/{}/permanentdelete", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupEventPermanentDelete", + "oracle": "Remove-MgGroupEventPermanent" + }, + "replacementNoun": "GroupEventPermanent", + "replacementVerb": "Remove" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/events/{}/snoozereminder", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupEventSnoozeReminder", + "oracle": "Invoke-MgSnoozeGroupEventReminder" + }, + "replacementNoun": "SnoozeGroupEventReminder" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/events/{}/tentativelyaccept", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupEventTentativelyAccept", + "oracle": "Invoke-MgAcceptGroupEventTentatively" + }, + "replacementNoun": "AcceptGroupEventTentatively" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/getmembergroups", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupGetMemberGroups", + "oracle": "Get-MgGroupMemberGroup" + }, + "replacementNoun": "GroupMemberGroup", + "replacementVerb": "Get" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/getmemberobjects", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupGetMemberObjects", + "oracle": "Get-MgGroupMemberObject" + }, + "replacementNoun": "GroupMemberObject", + "replacementVerb": "Get" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/onenote/notebooks/{}/copynotebook", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupOnenoteNotebookCopyNotebook", + "oracle": "Copy-MgGroupOnenoteNotebook" + }, + "replacementNoun": "GroupOnenoteNotebook", + "replacementVerb": "Copy" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/onenote/notebooks/{}/sectiongroups/{}/sections/{}/copytonotebook", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupOnenoteNotebookSectionGroupSectionCopyToNotebook", + "oracle": "Copy-MgGroupOnenoteNotebookSectionGroupSectionToNotebook" + }, + "replacementNoun": "GroupOnenoteNotebookSectionGroupSectionToNotebook", + "replacementVerb": "Copy" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/onenote/notebooks/{}/sectiongroups/{}/sections/{}/copytosectiongroup", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupOnenoteNotebookSectionGroupSectionCopyToSectionGroup", + "oracle": "Copy-MgGroupOnenoteNotebookSectionGroupSectionToSectionGroup" + }, + "replacementNoun": "GroupOnenoteNotebookSectionGroupSectionToSectionGroup", + "replacementVerb": "Copy" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/onenote/notebooks/{}/sectiongroups/{}/sections/{}/pages/{}/copytosection", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupOnenoteNotebookSectionGroupSectionPageCopyToSection", + "oracle": "Copy-MgGroupOnenoteNotebookSectionGroupSectionPageToSection" + }, + "replacementNoun": "GroupOnenoteNotebookSectionGroupSectionPageToSection", + "replacementVerb": "Copy" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/onenote/notebooks/{}/sectiongroups/{}/sections/{}/pages/{}/onenotepatchcontent", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupOnenoteNotebookSectionGroupSectionPageOnenotePatchContent", + "oracle": "Update-MgGroupOnenoteNotebookSectionGroupSectionPageContent" + }, + "replacementNoun": "GroupOnenoteNotebookSectionGroupSectionPageContent", + "replacementVerb": "Update" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/onenote/notebooks/{}/sections/{}/copytonotebook", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupOnenoteNotebookSectionCopyToNotebook", + "oracle": "Copy-MgGroupOnenoteNotebookSectionToNotebook" + }, + "replacementNoun": "GroupOnenoteNotebookSectionToNotebook", + "replacementVerb": "Copy" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/onenote/notebooks/{}/sections/{}/copytosectiongroup", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupOnenoteNotebookSectionCopyToSectionGroup", + "oracle": "Copy-MgGroupOnenoteNotebookSectionToSectionGroup" + }, + "replacementNoun": "GroupOnenoteNotebookSectionToSectionGroup", + "replacementVerb": "Copy" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/onenote/notebooks/{}/sections/{}/pages/{}/copytosection", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupOnenoteNotebookSectionPageCopyToSection", + "oracle": "Copy-MgGroupOnenoteNotebookSectionPageToSection" + }, + "replacementNoun": "GroupOnenoteNotebookSectionPageToSection", + "replacementVerb": "Copy" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/onenote/notebooks/{}/sections/{}/pages/{}/onenotepatchcontent", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupOnenoteNotebookSectionPageOnenotePatchContent", + "oracle": "Update-MgGroupOnenoteNotebookSectionPageContent" + }, + "replacementNoun": "GroupOnenoteNotebookSectionPageContent", + "replacementVerb": "Update" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/onenote/notebooks/getnotebookfromweburl", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupOnenoteNotebookGetNotebookFromWebUrl", + "oracle": "Get-MgGroupOnenoteNotebookFromWebUrl" + }, + "replacementNoun": "GroupOnenoteNotebookFromWebUrl", + "replacementVerb": "Get" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/onenote/pages/{}/copytosection", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupOnenotePageCopyToSection", + "oracle": "Copy-MgGroupOnenotePageToSection" + }, + "replacementNoun": "GroupOnenotePageToSection", + "replacementVerb": "Copy" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/onenote/pages/{}/onenotepatchcontent", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupOnenotePageOnenotePatchContent", + "oracle": "Update-MgGroupOnenotePageContent" + }, + "replacementNoun": "GroupOnenotePageContent", + "replacementVerb": "Update" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/onenote/sectiongroups/{}/sections/{}/copytonotebook", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupOnenoteSectionGroupSectionCopyToNotebook", + "oracle": "Copy-MgGroupOnenoteSectionGroupSectionToNotebook" + }, + "replacementNoun": "GroupOnenoteSectionGroupSectionToNotebook", + "replacementVerb": "Copy" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/onenote/sectiongroups/{}/sections/{}/copytosectiongroup", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupOnenoteSectionGroupSectionCopyToSectionGroup", + "oracle": "Copy-MgGroupOnenoteSectionGroupSectionToSectionGroup" + }, + "replacementNoun": "GroupOnenoteSectionGroupSectionToSectionGroup", + "replacementVerb": "Copy" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/onenote/sectiongroups/{}/sections/{}/pages/{}/copytosection", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupOnenoteSectionGroupSectionPageCopyToSection", + "oracle": "Copy-MgGroupOnenoteSectionGroupSectionPageToSection" + }, + "replacementNoun": "GroupOnenoteSectionGroupSectionPageToSection", + "replacementVerb": "Copy" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/onenote/sectiongroups/{}/sections/{}/pages/{}/onenotepatchcontent", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupOnenoteSectionGroupSectionPageOnenotePatchContent", + "oracle": "Update-MgGroupOnenoteSectionGroupSectionPageContent" + }, + "replacementNoun": "GroupOnenoteSectionGroupSectionPageContent", + "replacementVerb": "Update" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/onenote/sections/{}/copytonotebook", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupOnenoteSectionCopyToNotebook", + "oracle": "Copy-MgGroupOnenoteSectionToNotebook" + }, + "replacementNoun": "GroupOnenoteSectionToNotebook", + "replacementVerb": "Copy" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/onenote/sections/{}/copytosectiongroup", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupOnenoteSectionCopyToSectionGroup", + "oracle": "Copy-MgGroupOnenoteSectionToSectionGroup" + }, + "replacementNoun": "GroupOnenoteSectionToSectionGroup", + "replacementVerb": "Copy" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/onenote/sections/{}/pages/{}/copytosection", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupOnenoteSectionPageCopyToSection", + "oracle": "Copy-MgGroupOnenoteSectionPageToSection" + }, + "replacementNoun": "GroupOnenoteSectionPageToSection", + "replacementVerb": "Copy" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/onenote/sections/{}/pages/{}/onenotepatchcontent", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupOnenoteSectionPageOnenotePatchContent", + "oracle": "Update-MgGroupOnenoteSectionPageContent" + }, + "replacementNoun": "GroupOnenoteSectionPageContent", + "replacementVerb": "Update" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/removefavorite", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupRemoveFavorite", + "oracle": "Remove-MgGroupFavorite" + }, + "replacementNoun": "GroupFavorite", + "replacementVerb": "Remove" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/renew", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupRenew", + "oracle": "Invoke-MgRenewGroup" + }, + "replacementNoun": "RenewGroup" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/resetunseencount", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupResetUnseenCount", + "oracle": "Reset-MgGroupUnseenCount" + }, + "replacementNoun": "GroupUnseenCount", + "replacementVerb": "Reset" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/retryserviceprovisioning", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupRetryServiceProvisioning", + "oracle": "Invoke-MgRetryGroupServiceProvisioning" + }, + "replacementNoun": "RetryGroupServiceProvisioning" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/sites/{}/contenttypes/{}/associatewithhubsites", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupSiteContentTypeAssociateWithHubSites", + "oracle": "Join-MgGroupSiteContentTypeWithHubSite" + }, + "replacementNoun": "GroupSiteContentTypeWithHubSite", + "replacementVerb": "Join" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/sites/{}/contenttypes/{}/copytodefaultcontentlocation", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupSiteContentTypeCopyToDefaultContentLocation", + "oracle": "Copy-MgGroupSiteContentTypeToDefaultContentLocation" + }, + "replacementNoun": "GroupSiteContentTypeToDefaultContentLocation", + "replacementVerb": "Copy" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/sites/{}/contenttypes/{}/publish", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupSiteContentTypePublish", + "oracle": "Publish-MgGroupSiteContentType" + }, + "replacementNoun": "GroupSiteContentType", + "replacementVerb": "Publish" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/sites/{}/contenttypes/{}/unpublish", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupSiteContentTypeUnpublish", + "oracle": "Unpublish-MgGroupSiteContentType" + }, + "replacementNoun": "GroupSiteContentType", + "replacementVerb": "Unpublish" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/sites/{}/contenttypes/addcopy", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupSiteContentTypeAddCopy", + "oracle": "Add-MgGroupSiteContentTypeCopy" + }, + "replacementNoun": "GroupSiteContentTypeCopy", + "replacementVerb": "Add" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/sites/{}/contenttypes/addcopyfromcontenttypehub", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupSiteContentTypeAddCopyFromContentTypeHub", + "oracle": "Add-MgGroupSiteContentTypeCopyFromContentTypeHub" + }, + "replacementNoun": "GroupSiteContentTypeCopyFromContentTypeHub", + "replacementVerb": "Add" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/sites/{}/lists/{}/contenttypes/{}/associatewithhubsites", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupSiteListContentTypeAssociateWithHubSites", + "oracle": "Join-MgGroupSiteListContentTypeWithHubSite" + }, + "replacementNoun": "GroupSiteListContentTypeWithHubSite", + "replacementVerb": "Join" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/sites/{}/lists/{}/contenttypes/{}/copytodefaultcontentlocation", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupSiteListContentTypeCopyToDefaultContentLocation", + "oracle": "Copy-MgGroupSiteListContentTypeToDefaultContentLocation" + }, + "replacementNoun": "GroupSiteListContentTypeToDefaultContentLocation", + "replacementVerb": "Copy" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/sites/{}/lists/{}/contenttypes/{}/publish", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupSiteListContentTypePublish", + "oracle": "Publish-MgGroupSiteListContentType" + }, + "replacementNoun": "GroupSiteListContentType", + "replacementVerb": "Publish" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/sites/{}/lists/{}/contenttypes/{}/unpublish", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupSiteListContentTypeUnpublish", + "oracle": "Unpublish-MgGroupSiteListContentType" + }, + "replacementNoun": "GroupSiteListContentType", + "replacementVerb": "Unpublish" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/sites/{}/lists/{}/contenttypes/addcopy", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupSiteListContentTypeAddCopy", + "oracle": "Add-MgGroupSiteListContentTypeCopy" + }, + "replacementNoun": "GroupSiteListContentTypeCopy", + "replacementVerb": "Add" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/sites/{}/lists/{}/contenttypes/addcopyfromcontenttypehub", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupSiteListContentTypeAddCopyFromContentTypeHub", + "oracle": "Add-MgGroupSiteListContentTypeCopyFromContentTypeHub" + }, + "replacementNoun": "GroupSiteListContentTypeCopyFromContentTypeHub", + "replacementVerb": "Add" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/sites/{}/lists/{}/items/{}/createlink", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupSiteListItemCreateLink", + "oracle": "New-MgGroupSiteListItemLink" + }, + "replacementNoun": "GroupSiteListItemLink", + "replacementVerb": "New" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/sites/{}/lists/{}/items/{}/documentsetversions/{}/restore", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupSiteListItemDocumentSetVersionRestore", + "oracle": "Restore-MgGroupSiteListItemDocumentSetVersion" + }, + "replacementNoun": "GroupSiteListItemDocumentSetVersion", + "replacementVerb": "Restore" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/sites/{}/lists/{}/items/{}/permissions/{}/grant", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupSiteListItemPermissionGrant", + "oracle": "Grant-MgGroupSiteListItemPermission" + }, + "replacementNoun": "GroupSiteListItemPermission", + "replacementVerb": "Grant" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/sites/{}/lists/{}/items/{}/versions/{}/restoreversion", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupSiteListItemVersionRestoreVersion", + "oracle": "Restore-MgGroupSiteListItemVersion" + }, + "replacementNoun": "GroupSiteListItemVersion", + "replacementVerb": "Restore" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/sites/{}/lists/{}/permissions/{}/grant", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupSiteListPermissionGrant", + "oracle": "Grant-MgGroupSiteListPermission" + }, + "replacementNoun": "GroupSiteListPermission", + "replacementVerb": "Grant" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/sites/{}/lists/{}/subscriptions/{}/reauthorize", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupSiteListSubscriptionReauthorize", + "oracle": "Invoke-MgReauthorizeGroupSiteListSubscription" + }, + "replacementNoun": "ReauthorizeGroupSiteListSubscription" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/sites/{}/onenote/notebooks/{}/copynotebook", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupSiteOnenoteNotebookCopyNotebook", + "oracle": "Copy-MgGroupSiteOnenoteNotebook" + }, + "replacementNoun": "GroupSiteOnenoteNotebook", + "replacementVerb": "Copy" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/sites/{}/onenote/notebooks/{}/sectiongroups/{}/sections/{}/copytonotebook", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupSiteOnenoteNotebookSectionGroupSectionCopyToNotebook", + "oracle": "Copy-MgGroupSiteOnenoteNotebookSectionGroupSectionToNotebook" + }, + "replacementNoun": "GroupSiteOnenoteNotebookSectionGroupSectionToNotebook", + "replacementVerb": "Copy" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/sites/{}/onenote/notebooks/{}/sectiongroups/{}/sections/{}/copytosectiongroup", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupSiteOnenoteNotebookSectionGroupSectionCopyToSectionGroup", + "oracle": "Copy-MgGroupSiteOnenoteNotebookSectionGroupSectionToSectionGroup" + }, + "replacementNoun": "GroupSiteOnenoteNotebookSectionGroupSectionToSectionGroup", + "replacementVerb": "Copy" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/sites/{}/onenote/notebooks/{}/sectiongroups/{}/sections/{}/pages/{}/copytosection", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupSiteOnenoteNotebookSectionGroupSectionPageCopyToSection", + "oracle": "Copy-MgGroupSiteOnenoteNotebookSectionGroupSectionPageToSection" + }, + "replacementNoun": "GroupSiteOnenoteNotebookSectionGroupSectionPageToSection", + "replacementVerb": "Copy" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/sites/{}/onenote/notebooks/{}/sections/{}/copytonotebook", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupSiteOnenoteNotebookSectionCopyToNotebook", + "oracle": "Copy-MgGroupSiteOnenoteNotebookSectionToNotebook" + }, + "replacementNoun": "GroupSiteOnenoteNotebookSectionToNotebook", + "replacementVerb": "Copy" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/sites/{}/onenote/notebooks/{}/sections/{}/copytosectiongroup", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupSiteOnenoteNotebookSectionCopyToSectionGroup", + "oracle": "Copy-MgGroupSiteOnenoteNotebookSectionToSectionGroup" + }, + "replacementNoun": "GroupSiteOnenoteNotebookSectionToSectionGroup", + "replacementVerb": "Copy" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/sites/{}/onenote/notebooks/{}/sections/{}/pages/{}/copytosection", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupSiteOnenoteNotebookSectionPageCopyToSection", + "oracle": "Copy-MgGroupSiteOnenoteNotebookSectionPageToSection" + }, + "replacementNoun": "GroupSiteOnenoteNotebookSectionPageToSection", + "replacementVerb": "Copy" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/sites/{}/onenote/notebooks/getnotebookfromweburl", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupSiteOnenoteNotebookGetNotebookFromWebUrl", + "oracle": "Get-MgGroupSiteOnenoteNotebookFromWebUrl" + }, + "replacementNoun": "GroupSiteOnenoteNotebookFromWebUrl", + "replacementVerb": "Get" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/sites/{}/onenote/pages/{}/copytosection", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupSiteOnenotePageCopyToSection", + "oracle": "Copy-MgGroupSiteOnenotePageToSection" + }, + "replacementNoun": "GroupSiteOnenotePageToSection", + "replacementVerb": "Copy" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/sites/{}/onenote/sectiongroups/{}/sections/{}/copytonotebook", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupSiteOnenoteSectionGroupSectionCopyToNotebook", + "oracle": "Copy-MgGroupSiteOnenoteSectionGroupSectionToNotebook" + }, + "replacementNoun": "GroupSiteOnenoteSectionGroupSectionToNotebook", + "replacementVerb": "Copy" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/sites/{}/onenote/sectiongroups/{}/sections/{}/copytosectiongroup", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupSiteOnenoteSectionGroupSectionCopyToSectionGroup", + "oracle": "Copy-MgGroupSiteOnenoteSectionGroupSectionToSectionGroup" + }, + "replacementNoun": "GroupSiteOnenoteSectionGroupSectionToSectionGroup", + "replacementVerb": "Copy" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/sites/{}/onenote/sectiongroups/{}/sections/{}/pages/{}/copytosection", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupSiteOnenoteSectionGroupSectionPageCopyToSection", + "oracle": "Copy-MgGroupSiteOnenoteSectionGroupSectionPageToSection" + }, + "replacementNoun": "GroupSiteOnenoteSectionGroupSectionPageToSection", + "replacementVerb": "Copy" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/sites/{}/onenote/sections/{}/copytonotebook", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupSiteOnenoteSectionCopyToNotebook", + "oracle": "Copy-MgGroupSiteOnenoteSectionToNotebook" + }, + "replacementNoun": "GroupSiteOnenoteSectionToNotebook", + "replacementVerb": "Copy" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/sites/{}/onenote/sections/{}/copytosectiongroup", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupSiteOnenoteSectionCopyToSectionGroup", + "oracle": "Copy-MgGroupSiteOnenoteSectionToSectionGroup" + }, + "replacementNoun": "GroupSiteOnenoteSectionToSectionGroup", + "replacementVerb": "Copy" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/sites/{}/onenote/sections/{}/pages/{}/copytosection", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupSiteOnenoteSectionPageCopyToSection", + "oracle": "Copy-MgGroupSiteOnenoteSectionPageToSection" + }, + "replacementNoun": "GroupSiteOnenoteSectionPageToSection", + "replacementVerb": "Copy" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/sites/{}/permissions/{}/grant", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupSitePermissionGrant", + "oracle": "Grant-MgGroupSitePermission" + }, + "replacementNoun": "GroupSitePermission", + "replacementVerb": "Grant" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/sites/add", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupSiteAdd", + "oracle": "Add-MgGroupSite" + }, + "replacementNoun": "GroupSite", + "replacementVerb": "Add" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/sites/remove", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupSiteRemove", + "oracle": "Remove-MgGroupSite" + }, + "replacementNoun": "GroupSite", + "replacementVerb": "Remove" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/subscribebymail", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupSubscribeByMail", + "oracle": "Invoke-MgSubscribeGroupByMail" + }, + "replacementNoun": "SubscribeGroupByMail" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/team/archive", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupTeamArchive", + "oracle": "Invoke-MgArchiveGroupTeam" + }, + "replacementNoun": "ArchiveGroupTeam" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/team/channels/{}/allmembers", + "action": "rename", + "evidence": { + "ourCommand": "New-MgGroupTeamChannelAllMember", + "oracle": "New-MgGroupTeamChannelMember" + }, + "replacementNoun": "GroupTeamChannelMember" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/team/channels/{}/allmembers/add", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupTeamChannelAllMemberAdd", + "oracle": "Add-MgGroupTeamChannelAllMember" + }, + "replacementNoun": "GroupTeamChannelAllMember", + "replacementVerb": "Add" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/team/channels/{}/allmembers/remove", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupTeamChannelAllMemberRemove", + "oracle": "Remove-MgGroupTeamChannelAllMember" + }, + "replacementNoun": "GroupTeamChannelAllMember", + "replacementVerb": "Remove" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/team/channels/{}/archive", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupTeamChannelArchive", + "oracle": "Invoke-MgArchiveGroupTeamChannel" + }, + "replacementNoun": "ArchiveGroupTeamChannel" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/team/channels/{}/completemigration", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupTeamChannelCompleteMigration", + "oracle": "Complete-MgGroupTeamChannelMigration" + }, + "replacementNoun": "GroupTeamChannelMigration", + "replacementVerb": "Complete" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/team/channels/{}/members/add", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupTeamChannelMemberAdd", + "oracle": "Add-MgGroupTeamChannelMember" + }, + "replacementNoun": "GroupTeamChannelMember", + "replacementVerb": "Add" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/team/channels/{}/messages/{}/replies/{}/setreaction", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupTeamChannelMessageReplySetReaction", + "oracle": "Set-MgGroupTeamChannelMessageReplyReaction" + }, + "replacementNoun": "GroupTeamChannelMessageReplyReaction", + "replacementVerb": "Set" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/team/channels/{}/messages/{}/replies/{}/softdelete", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupTeamChannelMessageReplySoftDelete", + "oracle": "Invoke-MgSoftGroupTeamChannelMessageReplyDelete" + }, + "replacementNoun": "SoftGroupTeamChannelMessageReplyDelete" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/team/channels/{}/messages/{}/replies/{}/undosoftdelete", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupTeamChannelMessageReplyUndoSoftDelete", + "oracle": "Undo-MgGroupTeamChannelMessageReplySoftDelete" + }, + "replacementNoun": "GroupTeamChannelMessageReplySoftDelete", + "replacementVerb": "Undo" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/team/channels/{}/messages/{}/replies/{}/unsetreaction", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupTeamChannelMessageReplyUnsetReaction", + "oracle": "Clear-MgGroupTeamChannelMessageReplyReaction" + }, + "replacementNoun": "GroupTeamChannelMessageReplyReaction", + "replacementVerb": "Clear" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/team/channels/{}/messages/{}/replies/replywithquote", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupTeamChannelMessageReplyReplyWithQuote", + "oracle": "Invoke-MgGraphGroupTeamChannelMessageReply" + }, + "replacementNoun": "GraphGroupTeamChannelMessageReply" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/team/channels/{}/messages/{}/setreaction", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupTeamChannelMessageSetReaction", + "oracle": "Set-MgGroupTeamChannelMessageReaction" + }, + "replacementNoun": "GroupTeamChannelMessageReaction", + "replacementVerb": "Set" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/team/channels/{}/messages/{}/softdelete", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupTeamChannelMessageSoftDelete", + "oracle": "Invoke-MgSoftGroupTeamChannelMessageDelete" + }, + "replacementNoun": "SoftGroupTeamChannelMessageDelete" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/team/channels/{}/messages/{}/undosoftdelete", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupTeamChannelMessageUndoSoftDelete", + "oracle": "Undo-MgGroupTeamChannelMessageSoftDelete" + }, + "replacementNoun": "GroupTeamChannelMessageSoftDelete", + "replacementVerb": "Undo" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/team/channels/{}/messages/{}/unsetreaction", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupTeamChannelMessageUnsetReaction", + "oracle": "Clear-MgGroupTeamChannelMessageReaction" + }, + "replacementNoun": "GroupTeamChannelMessageReaction", + "replacementVerb": "Clear" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/team/channels/{}/messages/replywithquote", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupTeamChannelMessageReplyWithQuote", + "oracle": "Invoke-MgGraphGroupTeamChannelMessage" + }, + "replacementNoun": "GraphGroupTeamChannelMessage" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/team/channels/{}/provisionemail", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupTeamChannelProvisionEmail", + "oracle": "New-MgGroupTeamChannelEmail" + }, + "replacementNoun": "GroupTeamChannelEmail", + "replacementVerb": "New" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/team/channels/{}/removeemail", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupTeamChannelRemoveEmail", + "oracle": "Remove-MgGroupTeamChannelEmail" + }, + "replacementNoun": "GroupTeamChannelEmail", + "replacementVerb": "Remove" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/team/channels/{}/startmigration", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupTeamChannelStartMigration", + "oracle": "Start-MgGroupTeamChannelMigration" + }, + "replacementNoun": "GroupTeamChannelMigration", + "replacementVerb": "Start" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/team/channels/{}/unarchive", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupTeamChannelUnarchive", + "oracle": "Invoke-MgUnarchiveGroupTeamChannel" + }, + "replacementNoun": "UnarchiveGroupTeamChannel" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/team/clone", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupTeamClone", + "oracle": "Copy-MgGroupTeam" + }, + "replacementNoun": "GroupTeam", + "replacementVerb": "Copy" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/team/completemigration", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupTeamCompleteMigration", + "oracle": "Complete-MgGroupTeamMigration" + }, + "replacementNoun": "GroupTeamMigration", + "replacementVerb": "Complete" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/team/installedapps/{}/upgrade", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupTeamInstalledAppUpgrade", + "oracle": "Update-MgGroupTeamInstalledApp" + }, + "replacementNoun": "GroupTeamInstalledApp", + "replacementVerb": "Update" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/team/members/add", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupTeamMemberAdd", + "oracle": "Add-MgGroupTeamMember" + }, + "replacementNoun": "GroupTeamMember", + "replacementVerb": "Add" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/team/primarychannel/allmembers", + "action": "rename", + "evidence": { + "ourCommand": "New-MgGroupTeamPrimaryChannelAllMember", + "oracle": "New-MgGroupTeamPrimaryChannelMember" + }, + "replacementNoun": "GroupTeamPrimaryChannelMember" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/team/primarychannel/allmembers/add", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupTeamPrimaryChannelAllMemberAdd", + "oracle": "Add-MgGroupTeamPrimaryChannelAllMember" + }, + "replacementNoun": "GroupTeamPrimaryChannelAllMember", + "replacementVerb": "Add" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/team/primarychannel/allmembers/remove", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupTeamPrimaryChannelAllMemberRemove", + "oracle": "Remove-MgGroupTeamPrimaryChannelAllMember" + }, + "replacementNoun": "GroupTeamPrimaryChannelAllMember", + "replacementVerb": "Remove" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/team/primarychannel/archive", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupTeamPrimaryChannelArchive", + "oracle": "Invoke-MgArchiveGroupTeamPrimaryChannel" + }, + "replacementNoun": "ArchiveGroupTeamPrimaryChannel" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/team/primarychannel/completemigration", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupTeamPrimaryChannelCompleteMigration", + "oracle": "Complete-MgGroupTeamPrimaryChannelMigration" + }, + "replacementNoun": "GroupTeamPrimaryChannelMigration", + "replacementVerb": "Complete" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/team/primarychannel/members/add", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupTeamPrimaryChannelMemberAdd", + "oracle": "Add-MgGroupTeamPrimaryChannelMember" + }, + "replacementNoun": "GroupTeamPrimaryChannelMember", + "replacementVerb": "Add" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/team/primarychannel/messages/{}/replies/{}/setreaction", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupTeamPrimaryChannelMessageReplySetReaction", + "oracle": "Set-MgGroupTeamPrimaryChannelMessageReplyReaction" + }, + "replacementNoun": "GroupTeamPrimaryChannelMessageReplyReaction", + "replacementVerb": "Set" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/team/primarychannel/messages/{}/replies/{}/softdelete", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupTeamPrimaryChannelMessageReplySoftDelete", + "oracle": "Invoke-MgSoftGroupTeamPrimaryChannelMessageReplyDelete" + }, + "replacementNoun": "SoftGroupTeamPrimaryChannelMessageReplyDelete" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/team/primarychannel/messages/{}/replies/{}/undosoftdelete", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupTeamPrimaryChannelMessageReplyUndoSoftDelete", + "oracle": "Undo-MgGroupTeamPrimaryChannelMessageReplySoftDelete" + }, + "replacementNoun": "GroupTeamPrimaryChannelMessageReplySoftDelete", + "replacementVerb": "Undo" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/team/primarychannel/messages/{}/replies/{}/unsetreaction", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupTeamPrimaryChannelMessageReplyUnsetReaction", + "oracle": "Clear-MgGroupTeamPrimaryChannelMessageReplyReaction" + }, + "replacementNoun": "GroupTeamPrimaryChannelMessageReplyReaction", + "replacementVerb": "Clear" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/team/primarychannel/messages/{}/replies/replywithquote", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupTeamPrimaryChannelMessageReplyReplyWithQuote", + "oracle": "Invoke-MgGraphGroupTeamPrimaryChannelMessageReply" + }, + "replacementNoun": "GraphGroupTeamPrimaryChannelMessageReply" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/team/primarychannel/messages/{}/setreaction", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupTeamPrimaryChannelMessageSetReaction", + "oracle": "Set-MgGroupTeamPrimaryChannelMessageReaction" + }, + "replacementNoun": "GroupTeamPrimaryChannelMessageReaction", + "replacementVerb": "Set" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/team/primarychannel/messages/{}/softdelete", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupTeamPrimaryChannelMessageSoftDelete", + "oracle": "Invoke-MgSoftGroupTeamPrimaryChannelMessageDelete" + }, + "replacementNoun": "SoftGroupTeamPrimaryChannelMessageDelete" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/team/primarychannel/messages/{}/undosoftdelete", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupTeamPrimaryChannelMessageUndoSoftDelete", + "oracle": "Undo-MgGroupTeamPrimaryChannelMessageSoftDelete" + }, + "replacementNoun": "GroupTeamPrimaryChannelMessageSoftDelete", + "replacementVerb": "Undo" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/team/primarychannel/messages/{}/unsetreaction", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupTeamPrimaryChannelMessageUnsetReaction", + "oracle": "Clear-MgGroupTeamPrimaryChannelMessageReaction" + }, + "replacementNoun": "GroupTeamPrimaryChannelMessageReaction", + "replacementVerb": "Clear" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/team/primarychannel/messages/replywithquote", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupTeamPrimaryChannelMessageReplyWithQuote", + "oracle": "Invoke-MgGraphGroupTeamPrimaryChannelMessage" + }, + "replacementNoun": "GraphGroupTeamPrimaryChannelMessage" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/team/primarychannel/provisionemail", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupTeamPrimaryChannelProvisionEmail", + "oracle": "New-MgGroupTeamPrimaryChannelEmail" + }, + "replacementNoun": "GroupTeamPrimaryChannelEmail", + "replacementVerb": "New" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/team/primarychannel/removeemail", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupTeamPrimaryChannelRemoveEmail", + "oracle": "Remove-MgGroupTeamPrimaryChannelEmail" + }, + "replacementNoun": "GroupTeamPrimaryChannelEmail", + "replacementVerb": "Remove" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/team/primarychannel/startmigration", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupTeamPrimaryChannelStartMigration", + "oracle": "Start-MgGroupTeamPrimaryChannelMigration" + }, + "replacementNoun": "GroupTeamPrimaryChannelMigration", + "replacementVerb": "Start" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/team/primarychannel/unarchive", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupTeamPrimaryChannelUnarchive", + "oracle": "Invoke-MgUnarchiveGroupTeamPrimaryChannel" + }, + "replacementNoun": "UnarchiveGroupTeamPrimaryChannel" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/team/schedule/share", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupTeamScheduleShare", + "oracle": "Invoke-MgShareGroupTeamSchedule" + }, + "replacementNoun": "ShareGroupTeamSchedule" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/team/schedule/timecards/{}/clockout", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupTeamScheduleTimeCardClockOut", + "oracle": "Invoke-MgClockGroupTeamScheduleTimeCardOut" + }, + "replacementNoun": "ClockGroupTeamScheduleTimeCardOut" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/team/schedule/timecards/{}/confirm", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupTeamScheduleTimeCardConfirm", + "oracle": "Confirm-MgGroupTeamScheduleTimeCard" + }, + "replacementNoun": "GroupTeamScheduleTimeCard", + "replacementVerb": "Confirm" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/team/schedule/timecards/{}/endbreak", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupTeamScheduleTimeCardEndBreak", + "oracle": "Stop-MgGroupTeamScheduleTimeCardBreak" + }, + "replacementNoun": "GroupTeamScheduleTimeCardBreak", + "replacementVerb": "Stop" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/team/schedule/timecards/{}/startbreak", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupTeamScheduleTimeCardStartBreak", + "oracle": "Start-MgGroupTeamScheduleTimeCardBreak" + }, + "replacementNoun": "GroupTeamScheduleTimeCardBreak", + "replacementVerb": "Start" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/team/schedule/timecards/clockin", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupTeamScheduleTimeCardClockIn", + "oracle": "Invoke-MgClockGroupTeamScheduleTimeCardIn" + }, + "replacementNoun": "ClockGroupTeamScheduleTimeCardIn" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/team/sendactivitynotification", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupTeamSendActivityNotification", + "oracle": "Send-MgGroupTeamActivityNotification" + }, + "replacementNoun": "GroupTeamActivityNotification", + "replacementVerb": "Send" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/team/unarchive", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupTeamUnarchive", + "oracle": "Invoke-MgUnarchiveGroupTeam" + }, + "replacementNoun": "UnarchiveGroupTeam" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/threads/{}/posts/{}/attachments/createuploadsession", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupThreadPostAttachmentCreateUploadSession", + "oracle": "New-MgGroupThreadPostAttachmentUploadSession" + }, + "replacementNoun": "GroupThreadPostAttachmentUploadSession", + "replacementVerb": "New" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/threads/{}/posts/{}/forward", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupThreadPostForward", + "oracle": "Invoke-MgForwardGroupThreadPost" + }, + "replacementNoun": "ForwardGroupThreadPost" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/threads/{}/posts/{}/inreplyto/attachments/createuploadsession", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupThreadPostInReplyToAttachmentCreateUploadSession", + "oracle": "New-MgGroupThreadPostInReplyToAttachmentUploadSession" + }, + "replacementNoun": "GroupThreadPostInReplyToAttachmentUploadSession", + "replacementVerb": "New" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/threads/{}/posts/{}/inreplyto/forward", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupThreadPostInReplyToForward", + "oracle": "Invoke-MgForwardGroupThreadPostInReplyTo" + }, + "replacementNoun": "ForwardGroupThreadPostInReplyTo" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/threads/{}/posts/{}/inreplyto/reply", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupThreadPostInReplyToReply", + "oracle": "Invoke-MgReplyGroupThreadPostInReplyTo" + }, + "replacementNoun": "ReplyGroupThreadPostInReplyTo" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/threads/{}/posts/{}/reply", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupThreadPostReply", + "oracle": "Invoke-MgReplyGroupThreadPost" + }, + "replacementNoun": "ReplyGroupThreadPost" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/threads/{}/reply", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupThreadReply", + "oracle": "Invoke-MgReplyGroupThread" + }, + "replacementNoun": "ReplyGroupThread" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/unsubscribebymail", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupUnsubscribeByMail", + "oracle": "Invoke-MgGraphGroup" + }, + "replacementNoun": "GraphGroup" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/validateproperties", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupValidateProperties", + "oracle": "Test-MgGroupProperty" + }, + "replacementNoun": "GroupProperty", + "replacementVerb": "Test" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/getbyids", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupGetByIds", + "oracle": "Get-MgGroupById" + }, + "replacementNoun": "GroupById", + "replacementVerb": "Get" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groupsettingtemplates/{}/checkmembergroups", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupSettingTemplateCheckMemberGroups", + "oracle": "Confirm-MgGroupSettingTemplateMemberGroup" + }, + "replacementNoun": "GroupSettingTemplateMemberGroup", + "replacementVerb": "Confirm" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groupsettingtemplates/{}/checkmemberobjects", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupSettingTemplateCheckMemberObjects", + "oracle": "Confirm-MgGroupSettingTemplateMemberObject" + }, + "replacementNoun": "GroupSettingTemplateMemberObject", + "replacementVerb": "Confirm" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groupsettingtemplates/{}/getmembergroups", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupSettingTemplateGetMemberGroups", + "oracle": "Get-MgGroupSettingTemplateMemberGroup" + }, + "replacementNoun": "GroupSettingTemplateMemberGroup", + "replacementVerb": "Get" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groupsettingtemplates/{}/getmemberobjects", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupSettingTemplateGetMemberObjects", + "oracle": "Get-MgGroupSettingTemplateMemberObject" + }, + "replacementNoun": "GroupSettingTemplateMemberObject", + "replacementVerb": "Get" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groupsettingtemplates/{}/restore", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupSettingTemplateRestore", + "oracle": "Restore-MgGroupSettingTemplate" + }, + "replacementNoun": "GroupSettingTemplate", + "replacementVerb": "Restore" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groupsettingtemplates/getbyids", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupSettingTemplateGetByIds", + "oracle": "Get-MgGroupSettingTemplateById" + }, + "replacementNoun": "GroupSettingTemplateById", + "replacementVerb": "Get" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groupsettingtemplates/validateproperties", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgGroupSettingTemplateValidateProperties", + "oracle": "Test-MgGroupSettingTemplateProperty" + }, + "replacementNoun": "GroupSettingTemplateProperty", + "replacementVerb": "Test" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identity/apiconnectors/{}/uploadclientcertificate", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgIdentityApiConnectorUploadClientCertificate", + "oracle": "Invoke-MgUploadIdentityApiConnectorClientCertificate" + }, + "replacementNoun": "UploadIdentityApiConnectorClientCertificate" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identity/authenticationeventsflows/{}/conditions/applications/includeapplications", + "action": "rename", + "evidence": { + "ourCommand": "New-MgIdentityAuthenticationEventFlowConditionApplicationIncludeApplication", + "oracle": "New-MgIdentityAuthenticationEventFlowIncludeApplication" + }, + "replacementNoun": "IdentityAuthenticationEventFlowIncludeApplication" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identity/b2xuserflows", + "action": "rename", + "evidence": { + "ourCommand": "New-MgIdentityB2xUserFlow", + "oracle": "New-MgIdentityB2XUserFlow" + }, + "replacementNoun": "IdentityB2XUserFlow" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identity/b2xuserflows/{}/apiconnectorconfiguration/postattributecollection/uploadclientcertificate", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgIdentityB2xUserFlowApiConnectorConfigurationPostAttributeCollectionUploadClientCertificate", + "oracle": "Invoke-MgUploadIdentityB2XUserFlowApiConnectorConfigurationPostAttributeCollectionClientCertificate" + }, + "replacementNoun": "UploadIdentityB2XUserFlowApiConnectorConfigurationPostAttributeCollectionClientCertificate" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identity/b2xuserflows/{}/apiconnectorconfiguration/postfederationsignup/uploadclientcertificate", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgIdentityB2xUserFlowApiConnectorConfigurationPostFederationSignupUploadClientCertificate", + "oracle": "Invoke-MgUploadIdentityB2XUserFlowApiConnectorConfigurationPostFederationSignupClientCertificate" + }, + "replacementNoun": "UploadIdentityB2XUserFlowApiConnectorConfigurationPostFederationSignupClientCertificate" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identity/b2xuserflows/{}/languages", + "action": "rename", + "evidence": { + "ourCommand": "New-MgIdentityB2xUserFlowLanguage", + "oracle": "New-MgIdentityB2XUserFlowLanguage" + }, + "replacementNoun": "IdentityB2XUserFlowLanguage" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identity/b2xuserflows/{}/languages/{}/defaultpages", + "action": "rename", + "evidence": { + "ourCommand": "New-MgIdentityB2xUserFlowLanguageDefaultPage", + "oracle": "New-MgIdentityB2XUserFlowLanguageDefaultPage" + }, + "replacementNoun": "IdentityB2XUserFlowLanguageDefaultPage" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identity/b2xuserflows/{}/languages/{}/overridespages", + "action": "rename", + "evidence": { + "ourCommand": "New-MgIdentityB2xUserFlowLanguageOverridePage", + "oracle": "New-MgIdentityB2XUserFlowLanguageOverridePage" + }, + "replacementNoun": "IdentityB2XUserFlowLanguageOverridePage" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identity/b2xuserflows/{}/userattributeassignments", + "action": "rename", + "evidence": { + "ourCommand": "New-MgIdentityB2xUserFlowUserAttributeAssignment", + "oracle": "New-MgIdentityB2XUserFlowUserAttributeAssignment" + }, + "replacementNoun": "IdentityB2XUserFlowUserAttributeAssignment" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identity/b2xuserflows/{}/userattributeassignments/setorder", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgIdentityB2xUserFlowUserAttributeAssignmentSetOrder", + "oracle": "Set-MgIdentityB2XUserFlowUserAttributeAssignmentOrder" + }, + "replacementNoun": "IdentityB2XUserFlowUserAttributeAssignmentOrder", + "replacementVerb": "Set" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identity/b2xuserflows/{}/userflowidentityproviders/$ref", + "action": "rename", + "evidence": { + "ourCommand": "New-MgIdentityB2xUserFlowUserFlowIdentityProviderByRef", + "oracle": "New-MgIdentityB2XUserFlowIdentityProviderByRef" + }, + "replacementNoun": "IdentityB2XUserFlowIdentityProviderByRef" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identity/conditionalaccess/deleteditems/namedlocations/{}/restore", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgIdentityConditionalAccessDeletedItemNamedLocationRestore", + "oracle": "Restore-MgIdentityConditionalAccessDeletedItemNamedLocation" + }, + "replacementNoun": "IdentityConditionalAccessDeletedItemNamedLocation", + "replacementVerb": "Restore" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identity/conditionalaccess/deleteditems/policies/{}/restore", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgIdentityConditionalAccessDeletedItemPolicyRestore", + "oracle": "Restore-MgIdentityConditionalAccessDeletedItemPolicy" + }, + "replacementNoun": "IdentityConditionalAccessDeletedItemPolicy", + "replacementVerb": "Restore" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identity/conditionalaccess/evaluate", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgIdentityConditionalAccessEvaluate", + "oracle": "Test-MgIdentityConditionalAccess" + }, + "replacementNoun": "IdentityConditionalAccess", + "replacementVerb": "Test" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identity/conditionalaccess/namedlocations/{}/restore", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgIdentityConditionalAccessNamedLocationRestore", + "oracle": "Restore-MgIdentityConditionalAccessNamedLocation" + }, + "replacementNoun": "IdentityConditionalAccessNamedLocation", + "replacementVerb": "Restore" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identity/conditionalaccess/policies/{}/restore", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgIdentityConditionalAccessPolicyRestore", + "oracle": "Restore-MgIdentityConditionalAccessPolicy" + }, + "replacementNoun": "IdentityConditionalAccessPolicy", + "replacementVerb": "Restore" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identity/customauthenticationextensions/{}/validateauthenticationconfiguration", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgIdentityCustomAuthenticationExtensionValidateAuthenticationConfiguration", + "oracle": "Test-MgIdentityCustomAuthenticationExtensionAuthenticationConfiguration" + }, + "replacementNoun": "IdentityCustomAuthenticationExtensionAuthenticationConfiguration", + "replacementVerb": "Test" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identity/riskprevention/webapplicationfirewallproviders/{}/verify", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgIdentityRiskPreventionWebApplicationFirewallProviderVerify", + "oracle": "Confirm-MgIdentityRiskPreventionWebApplicationFirewallProvider" + }, + "replacementNoun": "IdentityRiskPreventionWebApplicationFirewallProvider", + "replacementVerb": "Confirm" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/accessreviews/definitions/{}/instances/{}/acceptrecommendations", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgIdentityGovernanceAccessReviewDefinitionInstanceAcceptRecommendations", + "oracle": "Invoke-MgAcceptIdentityGovernanceAccessReviewDefinitionInstanceRecommendation" + }, + "replacementNoun": "AcceptIdentityGovernanceAccessReviewDefinitionInstanceRecommendation" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/accessreviews/definitions/{}/instances/{}/applydecisions", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgIdentityGovernanceAccessReviewDefinitionInstanceApplyDecisions", + "oracle": "Add-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision" + }, + "replacementNoun": "IdentityGovernanceAccessReviewDefinitionInstanceDecision", + "replacementVerb": "Add" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/accessreviews/definitions/{}/instances/{}/batchrecorddecisions", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgIdentityGovernanceAccessReviewDefinitionInstanceBatchRecordDecisions", + "oracle": "Invoke-MgBatchIdentityGovernanceAccessReviewDefinitionInstanceRecordDecision" + }, + "replacementNoun": "BatchIdentityGovernanceAccessReviewDefinitionInstanceRecordDecision" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/accessreviews/definitions/{}/instances/{}/resetdecisions", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgIdentityGovernanceAccessReviewDefinitionInstanceResetDecisions", + "oracle": "Reset-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision" + }, + "replacementNoun": "IdentityGovernanceAccessReviewDefinitionInstanceDecision", + "replacementVerb": "Reset" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/accessreviews/definitions/{}/instances/{}/sendreminder", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgIdentityGovernanceAccessReviewDefinitionInstanceSendReminder", + "oracle": "Send-MgIdentityGovernanceAccessReviewDefinitionInstanceReminder" + }, + "replacementNoun": "IdentityGovernanceAccessReviewDefinitionInstanceReminder", + "replacementVerb": "Send" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/accessreviews/definitions/{}/instances/{}/stages/{}/stop", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgIdentityGovernanceAccessReviewDefinitionInstanceStageStop", + "oracle": "Stop-MgIdentityGovernanceAccessReviewDefinitionInstanceStage" + }, + "replacementNoun": "IdentityGovernanceAccessReviewDefinitionInstanceStage", + "replacementVerb": "Stop" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/accessreviews/definitions/{}/instances/{}/stop", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgIdentityGovernanceAccessReviewDefinitionInstanceStop", + "oracle": "Stop-MgIdentityGovernanceAccessReviewDefinitionInstance" + }, + "replacementNoun": "IdentityGovernanceAccessReviewDefinitionInstance", + "replacementVerb": "Stop" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/accessreviews/definitions/{}/stop", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgIdentityGovernanceAccessReviewDefinitionStop", + "oracle": "Stop-MgIdentityGovernanceAccessReviewDefinition" + }, + "replacementNoun": "IdentityGovernanceAccessReviewDefinition", + "replacementVerb": "Stop" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/accessreviews/historydefinitions/{}/instances/{}/generatedownloaduri", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgIdentityGovernanceAccessReviewHistoryDefinitionInstanceGenerateDownloadUri", + "oracle": "New-MgIdentityGovernanceAccessReviewHistoryDefinitionInstanceDownloadUri" + }, + "replacementNoun": "IdentityGovernanceAccessReviewHistoryDefinitionInstanceDownloadUri", + "replacementVerb": "New" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/appconsent/appconsentrequests", + "action": "rename", + "evidence": { + "ourCommand": "New-MgIdentityGovernanceAppConsentAppConsentRequest", + "oracle": "New-MgIdentityGovernanceAppConsentRequest" + }, + "replacementNoun": "IdentityGovernanceAppConsentRequest" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/appconsent/appconsentrequests/{}/userconsentrequests", + "action": "rename", + "evidence": { + "ourCommand": "New-MgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequest", + "oracle": "New-MgIdentityGovernanceAppConsentRequestUserConsentRequest" + }, + "replacementNoun": "IdentityGovernanceAppConsentRequestUserConsentRequest" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/appconsent/appconsentrequests/{}/userconsentrequests/{}/approval/stages", + "action": "rename", + "evidence": { + "ourCommand": "New-MgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequestApprovalStage", + "oracle": "New-MgIdentityGovernanceAppConsentRequestUserConsentRequestApprovalStage" + }, + "replacementNoun": "IdentityGovernanceAppConsentRequestUserConsentRequestApprovalStage" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/accesspackageassignmentapprovals/{}/stages", + "action": "rename", + "evidence": { + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentApprovalStage", + "oracle": "New-MgEntitlementManagementAccessPackageAssignmentApprovalStage" + }, + "replacementNoun": "EntitlementManagementAccessPackageAssignmentApprovalStage" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/accesspackages", + "action": "rename", + "evidence": { + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementAccessPackage", + "oracle": "New-MgEntitlementManagementAccessPackage" + }, + "replacementNoun": "EntitlementManagementAccessPackage" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/assignmentpolicies", + "action": "rename", + "evidence": { + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicy", + "oracle": "New-MgEntitlementManagementAccessPackageAssignmentPolicy" + }, + "replacementNoun": "EntitlementManagementAccessPackageAssignmentPolicy" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/getapplicablepolicyrequirements", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgIdentityGovernanceEntitlementManagementAccessPackageGetApplicablePolicyRequirements", + "oracle": "Get-MgEntitlementManagementAccessPackageApplicablePolicyRequirement" + }, + "replacementNoun": "EntitlementManagementAccessPackageApplicablePolicyRequirement", + "replacementVerb": "Get" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/incompatibleaccesspackages/$ref", + "action": "rename", + "evidence": { + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementAccessPackageIncompatibleAccessPackageByRef", + "oracle": "New-MgEntitlementManagementAccessPackageIncompatibleAccessPackageByRef" + }, + "replacementNoun": "EntitlementManagementAccessPackageIncompatibleAccessPackageByRef" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/incompatiblegroups/$ref", + "action": "rename", + "evidence": { + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementAccessPackageIncompatibleGroupByRef", + "oracle": "New-MgEntitlementManagementAccessPackageIncompatibleGroupByRef" + }, + "replacementNoun": "EntitlementManagementAccessPackageIncompatibleGroupByRef" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/resourcerolescopes", + "action": "rename", + "evidence": { + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScope", + "oracle": "New-MgEntitlementManagementAccessPackageResourceRoleScope" + }, + "replacementNoun": "EntitlementManagementAccessPackageResourceRoleScope" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/accesspackagesuggestions", + "action": "rename", + "evidence": { + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementAccessPackageSuggestion", + "oracle": "New-MgEntitlementManagementAccessPackageSuggestion" + }, + "replacementNoun": "EntitlementManagementAccessPackageSuggestion" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/assignmentpolicies", + "action": "rename", + "evidence": { + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementAssignmentPolicy", + "oracle": "New-MgEntitlementManagementAssignmentPolicy" + }, + "replacementNoun": "EntitlementManagementAssignmentPolicy" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/assignmentpolicies/{}/customextensionstagesettings", + "action": "rename", + "evidence": { + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementAssignmentPolicyCustomExtensionStageSetting", + "oracle": "New-MgEntitlementManagementAssignmentPolicyCustomExtensionStageSetting" + }, + "replacementNoun": "EntitlementManagementAssignmentPolicyCustomExtensionStageSetting" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/assignmentpolicies/{}/questions", + "action": "rename", + "evidence": { + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementAssignmentPolicyQuestion", + "oracle": "New-MgEntitlementManagementAssignmentPolicyQuestion" + }, + "replacementNoun": "EntitlementManagementAssignmentPolicyQuestion" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/assignmentrequests", + "action": "rename", + "evidence": { + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementAssignmentRequest", + "oracle": "New-MgEntitlementManagementAssignmentRequest" + }, + "replacementNoun": "EntitlementManagementAssignmentRequest" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/assignmentrequests/{}/cancel", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgIdentityGovernanceEntitlementManagementAssignmentRequestCancel", + "oracle": "Stop-MgEntitlementManagementAssignmentRequest" + }, + "replacementNoun": "EntitlementManagementAssignmentRequest", + "replacementVerb": "Stop" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/assignmentrequests/{}/reprocess", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgIdentityGovernanceEntitlementManagementAssignmentRequestReprocess", + "oracle": "Update-MgEntitlementManagementAssignmentRequest" + }, + "replacementNoun": "EntitlementManagementAssignmentRequest", + "replacementVerb": "Update" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/assignmentrequests/{}/resume", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgIdentityGovernanceEntitlementManagementAssignmentRequestResume", + "oracle": "Resume-MgEntitlementManagementAssignmentRequest" + }, + "replacementNoun": "EntitlementManagementAssignmentRequest", + "replacementVerb": "Resume" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/assignments", + "action": "rename", + "evidence": { + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementAssignment", + "oracle": "New-MgEntitlementManagementAssignment" + }, + "replacementNoun": "EntitlementManagementAssignment" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/assignments/{}/reprocess", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgIdentityGovernanceEntitlementManagementAssignmentReprocess", + "oracle": "Update-MgEntitlementManagementAssignment" + }, + "replacementNoun": "EntitlementManagementAssignment", + "replacementVerb": "Update" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/availableaccesspackages", + "action": "rename", + "evidence": { + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementAvailableAccessPackage", + "oracle": "New-MgEntitlementManagementAvailableAccessPackage" + }, + "replacementNoun": "EntitlementManagementAvailableAccessPackage" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/catalogs", + "action": "rename", + "evidence": { + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementCatalog", + "oracle": "New-MgEntitlementManagementCatalog" + }, + "replacementNoun": "EntitlementManagementCatalog" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/customworkflowextensions", + "action": "rename", + "evidence": { + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementCatalogCustomWorkflowExtension", + "oracle": "New-MgEntitlementManagementCatalogCustomWorkflowExtension" + }, + "replacementNoun": "EntitlementManagementCatalogCustomWorkflowExtension" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles", + "action": "rename", + "evidence": { + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementCatalogResourceRole", + "oracle": "New-MgEntitlementManagementCatalogResourceRole" + }, + "replacementNoun": "EntitlementManagementCatalogResourceRole" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/refresh", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceRefresh", + "oracle": "Update-MgEntitlementManagementCatalogResourceRoleResource" + }, + "replacementNoun": "EntitlementManagementCatalogResourceRoleResource", + "replacementVerb": "Update" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes", + "action": "rename", + "evidence": { + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScope", + "oracle": "New-MgEntitlementManagementCatalogResourceRoleResourceScope" + }, + "replacementNoun": "EntitlementManagementCatalogResourceRoleResourceScope" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes/{}/resource/refresh", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResourceRefresh", + "oracle": "Update-MgEntitlementManagementCatalogResourceRoleResourceScopeResource" + }, + "replacementNoun": "EntitlementManagementCatalogResourceRoleResourceScopeResource", + "replacementVerb": "Update" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes/{}/resource/roles", + "action": "rename", + "evidence": { + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResourceRole", + "oracle": "New-MgEntitlementManagementCatalogResourceRoleResourceScopeResourceRole" + }, + "replacementNoun": "EntitlementManagementCatalogResourceRoleResourceScopeResourceRole" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources", + "action": "rename", + "evidence": { + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementCatalogResource", + "oracle": "New-MgEntitlementManagementCatalogResource" + }, + "replacementNoun": "EntitlementManagementCatalogResource" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/refresh", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgIdentityGovernanceEntitlementManagementCatalogResourceRefresh", + "oracle": "Update-MgEntitlementManagementCatalogResource" + }, + "replacementNoun": "EntitlementManagementCatalogResource", + "replacementVerb": "Update" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/refresh", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRefresh", + "oracle": "Update-MgEntitlementManagementCatalogResourceScopeResource" + }, + "replacementNoun": "EntitlementManagementCatalogResourceScopeResource", + "replacementVerb": "Update" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles", + "action": "rename", + "evidence": { + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRole", + "oracle": "New-MgEntitlementManagementCatalogResourceScopeResourceRole" + }, + "replacementNoun": "EntitlementManagementCatalogResourceScopeResourceRole" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles/{}/resource/refresh", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResourceRefresh", + "oracle": "Update-MgEntitlementManagementCatalogResourceScopeResourceRoleResource" + }, + "replacementNoun": "EntitlementManagementCatalogResourceScopeResourceRoleResource", + "replacementVerb": "Update" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/roles/{}/resource/scopes", + "action": "rename", + "evidence": { + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResourceScope", + "oracle": "New-MgEntitlementManagementCatalogResourceScopeResourceRoleResourceScope" + }, + "replacementNoun": "EntitlementManagementCatalogResourceScopeResourceRoleResourceScope" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/connectedorganizations", + "action": "rename", + "evidence": { + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementConnectedOrganization", + "oracle": "New-MgEntitlementManagementConnectedOrganization" + }, + "replacementNoun": "EntitlementManagementConnectedOrganization" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/connectedorganizations/{}/externalsponsors/$ref", + "action": "rename", + "evidence": { + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementConnectedOrganizationExternalSponsorByRef", + "oracle": "New-MgEntitlementManagementConnectedOrganizationExternalSponsorByRef" + }, + "replacementNoun": "EntitlementManagementConnectedOrganizationExternalSponsorByRef" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/connectedorganizations/{}/internalsponsors/$ref", + "action": "rename", + "evidence": { + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementConnectedOrganizationInternalSponsorByRef", + "oracle": "New-MgEntitlementManagementConnectedOrganizationInternalSponsorByRef" + }, + "replacementNoun": "EntitlementManagementConnectedOrganizationInternalSponsorByRef" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/controlconfigurations", + "action": "rename", + "evidence": { + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementControlConfiguration", + "oracle": "New-MgEntitlementManagementControlConfiguration" + }, + "replacementNoun": "EntitlementManagementControlConfiguration" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/resourceenvironments", + "action": "rename", + "evidence": { + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementResourceEnvironment", + "oracle": "New-MgEntitlementManagementResourceEnvironment" + }, + "replacementNoun": "EntitlementManagementResourceEnvironment" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources", + "action": "rename", + "evidence": { + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResource", + "oracle": "New-MgEntitlementManagementResourceEnvironmentResource" + }, + "replacementNoun": "EntitlementManagementResourceEnvironmentResource" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/{}/refresh", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRefresh", + "oracle": "Update-MgEntitlementManagementResourceEnvironmentResource" + }, + "replacementNoun": "EntitlementManagementResourceEnvironmentResource", + "replacementVerb": "Update" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/{}/roles", + "action": "rename", + "evidence": { + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRole", + "oracle": "New-MgEntitlementManagementResourceEnvironmentResourceRole" + }, + "replacementNoun": "EntitlementManagementResourceEnvironmentResourceRole" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/{}/roles/{}/resource/refresh", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResourceRefresh", + "oracle": "Update-MgEntitlementManagementResourceEnvironmentResourceRoleResource" + }, + "replacementNoun": "EntitlementManagementResourceEnvironmentResourceRoleResource", + "replacementVerb": "Update" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/{}/roles/{}/resource/scopes", + "action": "rename", + "evidence": { + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResourceScope", + "oracle": "New-MgEntitlementManagementResourceEnvironmentResourceRoleResourceScope" + }, + "replacementNoun": "EntitlementManagementResourceEnvironmentResourceRoleResourceScope" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/{}/roles/{}/resource/scopes/{}/resource/refresh", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResourceScopeResourceRefresh", + "oracle": "Update-MgEntitlementManagementResourceEnvironmentResourceRoleResourceScopeResource" + }, + "replacementNoun": "EntitlementManagementResourceEnvironmentResourceRoleResourceScopeResource", + "replacementVerb": "Update" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/{}/scopes", + "action": "rename", + "evidence": { + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScope", + "oracle": "New-MgEntitlementManagementResourceEnvironmentResourceScope" + }, + "replacementNoun": "EntitlementManagementResourceEnvironmentResourceScope" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/{}/scopes/{}/resource/refresh", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResourceRefresh", + "oracle": "Update-MgEntitlementManagementResourceEnvironmentResourceScopeResource" + }, + "replacementNoun": "EntitlementManagementResourceEnvironmentResourceScopeResource", + "replacementVerb": "Update" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/{}/scopes/{}/resource/roles", + "action": "rename", + "evidence": { + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResourceRole", + "oracle": "New-MgEntitlementManagementResourceEnvironmentResourceScopeResourceRole" + }, + "replacementNoun": "EntitlementManagementResourceEnvironmentResourceScopeResourceRole" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/{}/scopes/{}/resource/roles/{}/resource/refresh", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResourceRoleResourceRefresh", + "oracle": "Update-MgEntitlementManagementResourceEnvironmentResourceScopeResourceRoleResource" + }, + "replacementNoun": "EntitlementManagementResourceEnvironmentResourceScopeResourceRoleResource", + "replacementVerb": "Update" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests", + "action": "rename", + "evidence": { + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementResourceRequest", + "oracle": "New-MgEntitlementManagementResourceRequest" + }, + "replacementNoun": "EntitlementManagementResourceRequest" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/customworkflowextensions", + "action": "rename", + "evidence": { + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogCustomWorkflowExtension", + "oracle": "New-MgEntitlementManagementResourceRequestCatalogCustomWorkflowExtension" + }, + "replacementNoun": "EntitlementManagementResourceRequestCatalogCustomWorkflowExtension" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles", + "action": "rename", + "evidence": { + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRole", + "oracle": "New-MgEntitlementManagementResourceRequestCatalogResourceRole" + }, + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceRole" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/refresh", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceRefresh", + "oracle": "Update-MgEntitlementManagementResourceRequestCatalogResourceRoleResource" + }, + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceRoleResource", + "replacementVerb": "Update" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes", + "action": "rename", + "evidence": { + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScope", + "oracle": "New-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScope" + }, + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceRoleResourceScope" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes/{}/resource/refresh", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRefresh", + "oracle": "Update-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResource" + }, + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResource", + "replacementVerb": "Update" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes/{}/resource/roles", + "action": "rename", + "evidence": { + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRole", + "oracle": "New-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRole" + }, + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRole" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources", + "action": "rename", + "evidence": { + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResource", + "oracle": "New-MgEntitlementManagementResourceRequestCatalogResource" + }, + "replacementNoun": "EntitlementManagementResourceRequestCatalogResource" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/refresh", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRefresh", + "oracle": "Update-MgEntitlementManagementResourceRequestCatalogResource" + }, + "replacementNoun": "EntitlementManagementResourceRequestCatalogResource", + "replacementVerb": "Update" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/refresh", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRefresh", + "oracle": "Update-MgEntitlementManagementResourceRequestCatalogResourceScopeResource" + }, + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceScopeResource", + "replacementVerb": "Update" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles", + "action": "rename", + "evidence": { + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRole", + "oracle": "New-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRole" + }, + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceScopeResourceRole" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles/{}/resource/refresh", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceRefresh", + "oracle": "Update-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResource" + }, + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResource", + "replacementVerb": "Update" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/roles/{}/resource/scopes", + "action": "rename", + "evidence": { + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceScope", + "oracle": "New-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceScope" + }, + "replacementNoun": "EntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceScope" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource/refresh", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRefresh", + "oracle": "Update-MgEntitlementManagementResourceRequestResource" + }, + "replacementNoun": "EntitlementManagementResourceRequestResource", + "replacementVerb": "Update" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource/roles", + "action": "rename", + "evidence": { + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRole", + "oracle": "New-MgEntitlementManagementResourceRequestResourceRole" + }, + "replacementNoun": "EntitlementManagementResourceRequestResourceRole" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource/roles/{}/resource/refresh", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResourceRefresh", + "oracle": "Update-MgEntitlementManagementResourceRequestResourceRoleResource" + }, + "replacementNoun": "EntitlementManagementResourceRequestResourceRoleResource", + "replacementVerb": "Update" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource/roles/{}/resource/scopes", + "action": "rename", + "evidence": { + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResourceScope", + "oracle": "New-MgEntitlementManagementResourceRequestResourceRoleResourceScope" + }, + "replacementNoun": "EntitlementManagementResourceRequestResourceRoleResourceScope" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource/roles/{}/resource/scopes/{}/resource/refresh", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResourceScopeResourceRefresh", + "oracle": "Update-MgEntitlementManagementResourceRequestResourceRoleResourceScopeResource" + }, + "replacementNoun": "EntitlementManagementResourceRequestResourceRoleResourceScopeResource", + "replacementVerb": "Update" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource/scopes", + "action": "rename", + "evidence": { + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScope", + "oracle": "New-MgEntitlementManagementResourceRequestResourceScope" + }, + "replacementNoun": "EntitlementManagementResourceRequestResourceScope" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource/scopes/{}/resource/refresh", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResourceRefresh", + "oracle": "Update-MgEntitlementManagementResourceRequestResourceScopeResource" + }, + "replacementNoun": "EntitlementManagementResourceRequestResourceScopeResource", + "replacementVerb": "Update" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource/scopes/{}/resource/roles", + "action": "rename", + "evidence": { + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResourceRole", + "oracle": "New-MgEntitlementManagementResourceRequestResourceScopeResourceRole" + }, + "replacementNoun": "EntitlementManagementResourceRequestResourceScopeResourceRole" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource/scopes/{}/resource/roles/{}/resource/refresh", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResourceRoleResourceRefresh", + "oracle": "Update-MgEntitlementManagementResourceRequestResourceScopeResourceRoleResource" + }, + "replacementNoun": "EntitlementManagementResourceRequestResourceScopeResourceRoleResource", + "replacementVerb": "Update" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes", + "action": "rename", + "evidence": { + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementResourceRoleScope", + "oracle": "New-MgEntitlementManagementResourceRoleScope" + }, + "replacementNoun": "EntitlementManagementResourceRoleScope" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/role/resource/refresh", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceRefresh", + "oracle": "Update-MgEntitlementManagementResourceRoleScopeRoleResource" + }, + "replacementNoun": "EntitlementManagementResourceRoleScopeRoleResource", + "replacementVerb": "Update" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/role/resource/roles", + "action": "rename", + "evidence": { + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceRole", + "oracle": "New-MgEntitlementManagementResourceRoleScopeRoleResourceRole" + }, + "replacementNoun": "EntitlementManagementResourceRoleScopeRoleResourceRole" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/role/resource/scopes", + "action": "rename", + "evidence": { + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScope", + "oracle": "New-MgEntitlementManagementResourceRoleScopeRoleResourceScope" + }, + "replacementNoun": "EntitlementManagementResourceRoleScopeRoleResourceScope" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/role/resource/scopes/{}/resource/refresh", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScopeResourceRefresh", + "oracle": "Update-MgEntitlementManagementResourceRoleScopeRoleResourceScopeResource" + }, + "replacementNoun": "EntitlementManagementResourceRoleScopeRoleResourceScopeResource", + "replacementVerb": "Update" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/role/resource/scopes/{}/resource/roles", + "action": "rename", + "evidence": { + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScopeResourceRole", + "oracle": "New-MgEntitlementManagementResourceRoleScopeRoleResourceScopeResourceRole" + }, + "replacementNoun": "EntitlementManagementResourceRoleScopeRoleResourceScopeResourceRole" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/scope/resource/refresh", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRefresh", + "oracle": "Update-MgEntitlementManagementResourceRoleScopeResource" + }, + "replacementNoun": "EntitlementManagementResourceRoleScopeResource", + "replacementVerb": "Update" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/scope/resource/roles", + "action": "rename", + "evidence": { + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRole", + "oracle": "New-MgEntitlementManagementResourceRoleScopeResourceRole" + }, + "replacementNoun": "EntitlementManagementResourceRoleScopeResourceRole" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/scope/resource/roles/{}/resource/refresh", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRoleResourceRefresh", + "oracle": "Update-MgEntitlementManagementResourceRoleScopeResourceRoleResource" + }, + "replacementNoun": "EntitlementManagementResourceRoleScopeResourceRoleResource", + "replacementVerb": "Update" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/scope/resource/roles/{}/resource/scopes", + "action": "rename", + "evidence": { + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRoleResourceScope", + "oracle": "New-MgEntitlementManagementResourceRoleScopeResourceRoleResourceScope" + }, + "replacementNoun": "EntitlementManagementResourceRoleScopeResourceRoleResourceScope" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/scope/resource/scopes", + "action": "rename", + "evidence": { + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceScope", + "oracle": "New-MgEntitlementManagementResourceRoleScopeResourceScope" + }, + "replacementNoun": "EntitlementManagementResourceRoleScopeResourceScope" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/resources", + "action": "rename", + "evidence": { + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementResource", + "oracle": "New-MgEntitlementManagementResource" + }, + "replacementNoun": "EntitlementManagementResource" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/resources/{}/refresh", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgIdentityGovernanceEntitlementManagementResourceRefresh", + "oracle": "Update-MgEntitlementManagementResource" + }, + "replacementNoun": "EntitlementManagementResource", + "replacementVerb": "Update" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/resources/{}/roles", + "action": "rename", + "evidence": { + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementResourceRole", + "oracle": "New-MgEntitlementManagementResourceRole" + }, + "replacementNoun": "EntitlementManagementResourceRole" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/resources/{}/roles/{}/resource/refresh", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgIdentityGovernanceEntitlementManagementResourceRoleResourceRefresh", + "oracle": "Update-MgEntitlementManagementResourceRoleResource" + }, + "replacementNoun": "EntitlementManagementResourceRoleResource", + "replacementVerb": "Update" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/resources/{}/roles/{}/resource/scopes", + "action": "rename", + "evidence": { + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementResourceRoleResourceScope", + "oracle": "New-MgEntitlementManagementResourceRoleResourceScope" + }, + "replacementNoun": "EntitlementManagementResourceRoleResourceScope" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/resources/{}/roles/{}/resource/scopes/{}/resource/refresh", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgIdentityGovernanceEntitlementManagementResourceRoleResourceScopeResourceRefresh", + "oracle": "Update-MgEntitlementManagementResourceRoleResourceScopeResource" + }, + "replacementNoun": "EntitlementManagementResourceRoleResourceScopeResource", + "replacementVerb": "Update" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/resources/{}/scopes", + "action": "rename", + "evidence": { + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementResourceScope", + "oracle": "New-MgEntitlementManagementResourceScope" + }, + "replacementNoun": "EntitlementManagementResourceScope" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/resources/{}/scopes/{}/resource/refresh", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgIdentityGovernanceEntitlementManagementResourceScopeResourceRefresh", + "oracle": "Update-MgEntitlementManagementResourceScopeResource" + }, + "replacementNoun": "EntitlementManagementResourceScopeResource", + "replacementVerb": "Update" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/resources/{}/scopes/{}/resource/roles", + "action": "rename", + "evidence": { + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementResourceScopeResourceRole", + "oracle": "New-MgEntitlementManagementResourceScopeResourceRole" + }, + "replacementNoun": "EntitlementManagementResourceScopeResourceRole" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/resources/{}/scopes/{}/resource/roles/{}/resource/refresh", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgIdentityGovernanceEntitlementManagementResourceScopeResourceRoleResourceRefresh", + "oracle": "Update-MgEntitlementManagementResourceScopeResourceRoleResource" + }, + "replacementNoun": "EntitlementManagementResourceScopeResourceRoleResource", + "replacementVerb": "Update" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/subjects", + "action": "rename", + "evidence": { + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementSubject", + "oracle": "New-MgEntitlementManagementSubject" + }, + "replacementNoun": "EntitlementManagementSubject" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/privilegedaccess/group/assignmentschedulerequests/{}/cancel", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestCancel", + "oracle": "Stop-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequest" + }, + "replacementNoun": "IdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequest", + "replacementVerb": "Stop" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/privilegedaccess/group/eligibilityschedulerequests/{}/cancel", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequestCancel", + "oracle": "Stop-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequest" + }, + "replacementNoun": "IdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequest", + "replacementVerb": "Stop" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/termsofuse/agreementacceptances", + "action": "rename", + "evidence": { + "ourCommand": "New-MgIdentityGovernanceTermOfUseAgreementAcceptance", + "oracle": "New-MgIdentityGovernanceTermsOfUseAgreementAcceptance" + }, + "replacementNoun": "IdentityGovernanceTermsOfUseAgreementAcceptance" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/termsofuse/agreements", + "action": "rename", + "evidence": { + "ourCommand": "New-MgIdentityGovernanceTermOfUseAgreement", + "oracle": "New-MgIdentityGovernanceTermsOfUseAgreement" + }, + "replacementNoun": "IdentityGovernanceTermsOfUseAgreement" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/termsofuse/agreements/{}/file/localizations", + "action": "rename", + "evidence": { + "ourCommand": "New-MgIdentityGovernanceTermOfUseAgreementFileLocalization", + "oracle": "New-MgIdentityGovernanceTermsOfUseAgreementFileLocalization" + }, + "replacementNoun": "IdentityGovernanceTermsOfUseAgreementFileLocalization" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/termsofuse/agreements/{}/file/localizations/{}/versions", + "action": "rename", + "evidence": { + "ourCommand": "New-MgIdentityGovernanceTermOfUseAgreementFileLocalizationVersion", + "oracle": "New-MgIdentityGovernanceTermsOfUseAgreementFileLocalizationVersion" + }, + "replacementNoun": "IdentityGovernanceTermsOfUseAgreementFileLocalizationVersion" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/termsofuse/agreements/{}/files", + "action": "rename", + "evidence": { + "ourCommand": "New-MgIdentityGovernanceTermOfUseAgreementFile", + "oracle": "New-MgIdentityGovernanceTermsOfUseAgreementFile" + }, + "replacementNoun": "IdentityGovernanceTermsOfUseAgreementFile" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/termsofuse/agreements/{}/files/{}/versions", + "action": "rename", + "evidence": { + "ourCommand": "New-MgIdentityGovernanceTermOfUseAgreementFileVersion", + "oracle": "New-MgIdentityGovernanceTermsOfUseAgreementFileVersion" + }, + "replacementNoun": "IdentityGovernanceTermsOfUseAgreementFileVersion" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identityprotection/riskdetections", + "action": "rename", + "evidence": { + "ourCommand": "New-MgIdentityProtectionRiskDetection", + "oracle": "New-MgRiskDetection" + }, + "replacementNoun": "RiskDetection" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identityprotection/riskyserviceprincipals", + "action": "rename", + "evidence": { + "ourCommand": "New-MgIdentityProtectionRiskyServicePrincipal", + "oracle": "New-MgRiskyServicePrincipal" + }, + "replacementNoun": "RiskyServicePrincipal" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identityprotection/riskyserviceprincipals/{}/history", + "action": "rename", + "evidence": { + "ourCommand": "New-MgIdentityProtectionRiskyServicePrincipalHistory", + "oracle": "New-MgRiskyServicePrincipalHistory" + }, + "replacementNoun": "RiskyServicePrincipalHistory" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identityprotection/riskyserviceprincipals/confirmcompromised", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgIdentityProtectionRiskyServicePrincipalConfirmCompromised", + "oracle": "Confirm-MgRiskyServicePrincipalCompromised" + }, + "replacementNoun": "RiskyServicePrincipalCompromised", + "replacementVerb": "Confirm" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identityprotection/riskyserviceprincipals/dismiss", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgIdentityProtectionRiskyServicePrincipalDismiss", + "oracle": "Invoke-MgDismissRiskyServicePrincipal" + }, + "replacementNoun": "DismissRiskyServicePrincipal" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identityprotection/riskyusers", + "action": "rename", + "evidence": { + "ourCommand": "New-MgIdentityProtectionRiskyUser", + "oracle": "New-MgRiskyUser" + }, + "replacementNoun": "RiskyUser" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identityprotection/riskyusers/{}/history", + "action": "rename", + "evidence": { + "ourCommand": "New-MgIdentityProtectionRiskyUserHistory", + "oracle": "New-MgRiskyUserHistory" + }, + "replacementNoun": "RiskyUserHistory" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identityprotection/riskyusers/confirmcompromised", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgIdentityProtectionRiskyUserConfirmCompromised", + "oracle": "Confirm-MgRiskyUserCompromised" + }, + "replacementNoun": "RiskyUserCompromised", + "replacementVerb": "Confirm" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identityprotection/riskyusers/confirmsafe", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgIdentityProtectionRiskyUserConfirmSafe", + "oracle": "Confirm-MgRiskyUserSafe" + }, + "replacementNoun": "RiskyUserSafe", + "replacementVerb": "Confirm" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identityprotection/riskyusers/dismiss", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgIdentityProtectionRiskyUserDismiss", + "oracle": "Invoke-MgDismissRiskyUser" + }, + "replacementNoun": "DismissRiskyUser" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identityprotection/serviceprincipalriskdetections", + "action": "rename", + "evidence": { + "ourCommand": "New-MgIdentityProtectionServicePrincipalRiskDetection", + "oracle": "New-MgServicePrincipalRiskDetection" + }, + "replacementNoun": "ServicePrincipalRiskDetection" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/organization/{}/checkmembergroups", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgOrganizationCheckMemberGroups", + "oracle": "Confirm-MgOrganizationMemberGroup" + }, + "replacementNoun": "OrganizationMemberGroup", + "replacementVerb": "Confirm" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/organization/{}/checkmemberobjects", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgOrganizationCheckMemberObjects", + "oracle": "Confirm-MgOrganizationMemberObject" + }, + "replacementNoun": "OrganizationMemberObject", + "replacementVerb": "Confirm" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/organization/{}/getmembergroups", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgOrganizationGetMemberGroups", + "oracle": "Get-MgOrganizationMemberGroup" + }, + "replacementNoun": "OrganizationMemberGroup", + "replacementVerb": "Get" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/organization/{}/getmemberobjects", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgOrganizationGetMemberObjects", + "oracle": "Get-MgOrganizationMemberObject" + }, + "replacementNoun": "OrganizationMemberObject", + "replacementVerb": "Get" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/organization/{}/setmobiledevicemanagementauthority", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgOrganizationSetMobileDeviceManagementAuthority", + "oracle": "Set-MgOrganizationMobileDeviceManagementAuthority" + }, + "replacementNoun": "OrganizationMobileDeviceManagementAuthority", + "replacementVerb": "Set" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/organization/getbyids", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgOrganizationGetByIds", + "oracle": "Get-MgOrganizationById" + }, + "replacementNoun": "OrganizationById", + "replacementVerb": "Get" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/organization/validateproperties", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgOrganizationValidateProperties", + "oracle": "Test-MgOrganizationProperty" + }, + "replacementNoun": "OrganizationProperty", + "replacementVerb": "Test" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/policies/authenticationstrengthpolicies/{}/updateallowedcombinations", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgPolicyAuthenticationStrengthPolicyUpdateAllowedCombinations", + "oracle": "Update-MgPolicyAuthenticationStrengthPolicyAllowedCombination" + }, + "replacementNoun": "PolicyAuthenticationStrengthPolicyAllowedCombination", + "replacementVerb": "Update" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/policies/conditionalaccesspolicies/{}/restore", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgPolicyConditionalAccessPolicyRestore", + "oracle": "Restore-MgPolicyConditionalAccessPolicy" + }, + "replacementNoun": "PolicyConditionalAccessPolicy", + "replacementVerb": "Restore" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/policies/crosstenantaccesspolicy/default/resettosystemdefault", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgPolicyCrossTenantAccessPolicyDefaultResetToSystemDefault", + "oracle": "Reset-MgPolicyCrossTenantAccessPolicyDefaultToSystemDefault" + }, + "replacementNoun": "PolicyCrossTenantAccessPolicyDefaultToSystemDefault", + "replacementVerb": "Reset" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/print/printers/{}/jobs", + "action": "rename", + "evidence": { + "ourCommand": "New-MgPrinterJob", + "oracle": "New-MgPrintPrinterJob" + }, + "replacementNoun": "PrintPrinterJob" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/print/printers/{}/jobs/{}/abort", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgPrinterJobAbort", + "oracle": "Invoke-MgAbortPrintPrinterJob" + }, + "replacementNoun": "AbortPrintPrinterJob" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/print/printers/{}/jobs/{}/cancel", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgPrinterJobCancel", + "oracle": "Stop-MgPrintPrinterJob" + }, + "replacementNoun": "PrintPrinterJob", + "replacementVerb": "Stop" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/print/printers/{}/jobs/{}/documents", + "action": "rename", + "evidence": { + "ourCommand": "New-MgPrinterJobDocument", + "oracle": "New-MgPrintPrinterJobDocument" + }, + "replacementNoun": "PrintPrinterJobDocument" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/print/printers/{}/jobs/{}/documents/{}/createuploadsession", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgPrinterJobDocumentCreateUploadSession", + "oracle": "New-MgPrintPrinterJobDocumentUploadSession" + }, + "replacementNoun": "PrintPrinterJobDocumentUploadSession", + "replacementVerb": "New" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/print/printers/{}/jobs/{}/redirect", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgPrinterJobRedirect", + "oracle": "Invoke-MgRedirectPrintPrinterJob" + }, + "replacementNoun": "RedirectPrintPrinterJob" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/print/printers/{}/jobs/{}/start", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgPrinterJobStart", + "oracle": "Start-MgPrintPrinterJob" + }, + "replacementNoun": "PrintPrinterJob", + "replacementVerb": "Start" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/print/printers/{}/jobs/{}/tasks", + "action": "rename", + "evidence": { + "ourCommand": "New-MgPrinterJobTask", + "oracle": "New-MgPrintPrinterJobTask" + }, + "replacementNoun": "PrintPrinterJobTask" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/print/printers/{}/restorefactorydefaults", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgPrinterRestoreFactoryDefaults", + "oracle": "Restore-MgPrintPrinterFactoryDefault" + }, + "replacementNoun": "PrintPrinterFactoryDefault", + "replacementVerb": "Restore" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/print/printers/{}/tasktriggers", + "action": "rename", + "evidence": { + "ourCommand": "New-MgPrinterTaskTrigger", + "oracle": "New-MgPrintPrinterTaskTrigger" + }, + "replacementNoun": "PrintPrinterTaskTrigger" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/print/printers/create", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgPrinterCreate", + "oracle": "New-MgPrintPrinter" + }, + "replacementNoun": "PrintPrinter", + "replacementVerb": "New" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/print/shares/{}/jobs/{}/abort", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgPrintShareJobAbort", + "oracle": "Invoke-MgAbortPrintShareJob" + }, + "replacementNoun": "AbortPrintShareJob" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/print/shares/{}/jobs/{}/cancel", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgPrintShareJobCancel", + "oracle": "Stop-MgPrintShareJob" + }, + "replacementNoun": "PrintShareJob", + "replacementVerb": "Stop" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/print/shares/{}/jobs/{}/documents/{}/createuploadsession", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgPrintShareJobDocumentCreateUploadSession", + "oracle": "New-MgPrintShareJobDocumentUploadSession" + }, + "replacementNoun": "PrintShareJobDocumentUploadSession", + "replacementVerb": "New" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/print/shares/{}/jobs/{}/redirect", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgPrintShareJobRedirect", + "oracle": "Invoke-MgRedirectPrintShareJob" + }, + "replacementNoun": "RedirectPrintShareJob" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/print/shares/{}/jobs/{}/start", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgPrintShareJobStart", + "oracle": "Start-MgPrintShareJob" + }, + "replacementNoun": "PrintShareJob", + "replacementVerb": "Start" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/rolemanagement/directory/roleassignmentschedulerequests/{}/cancel", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgRoleManagementDirectoryRoleAssignmentScheduleRequestCancel", + "oracle": "Stop-MgRoleManagementDirectoryRoleAssignmentScheduleRequest" + }, + "replacementNoun": "RoleManagementDirectoryRoleAssignmentScheduleRequest", + "replacementVerb": "Stop" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/rolemanagement/directory/roleeligibilityschedulerequests/{}/cancel", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgRoleManagementDirectoryRoleEligibilityScheduleRequestCancel", + "oracle": "Stop-MgRoleManagementDirectoryRoleEligibilityScheduleRequest" + }, + "replacementNoun": "RoleManagementDirectoryRoleEligibilityScheduleRequest", + "replacementVerb": "Stop" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/rolemanagement/entitlementmanagement/roleassignmentschedulerequests/{}/cancel", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestCancel", + "oracle": "Stop-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequest" + }, + "replacementNoun": "RoleManagementEntitlementManagementRoleAssignmentScheduleRequest", + "replacementVerb": "Stop" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/rolemanagement/entitlementmanagement/roleeligibilityschedulerequests/{}/cancel", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequestCancel", + "oracle": "Stop-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequest" + }, + "replacementNoun": "RoleManagementEntitlementManagementRoleEligibilityScheduleRequest", + "replacementVerb": "Stop" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/search/query", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgSearchQuery", + "oracle": "Invoke-MgQuerySearch" + }, + "replacementNoun": "QuerySearch" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/security/datasecurityandgovernance/processcontentasync", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgSecurityDataSecurityAndGovernanceProcessContentAsync", + "oracle": "Invoke-MgProcessSecurityDataSecurityAndGovernanceContentAsync" + }, + "replacementNoun": "ProcessSecurityDataSecurityAndGovernanceContentAsync" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/security/datasecurityandgovernance/protectionscopes/compute", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgSecurityDataSecurityAndGovernanceProtectionScopeCompute", + "oracle": "Invoke-MgComputeSecurityDataSecurityAndGovernanceProtectionScope" + }, + "replacementNoun": "ComputeSecurityDataSecurityAndGovernanceProtectionScope" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/security/datasecurityandgovernance/sensitivitylabels/{}/sublabels/computerightsandinheritance", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgSecurityDataSecurityAndGovernanceSensitivityLabelSublabelComputeRightsAndInheritance", + "oracle": "Invoke-MgAndSecurityDataSecurityAndGovernanceSensitivityLabelSublabel" + }, + "replacementNoun": "AndSecurityDataSecurityAndGovernanceSensitivityLabelSublabel" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/security/datasecurityandgovernance/sensitivitylabels/computerightsandinheritance", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgSecurityDataSecurityAndGovernanceSensitivityLabelComputeRightsAndInheritance", + "oracle": "Invoke-MgAndSecurityDataSecurityAndGovernanceSensitivityLabel" + }, + "replacementNoun": "AndSecurityDataSecurityAndGovernanceSensitivityLabel" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/serviceprincipals/{}/addkey", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgServicePrincipalAddKey", + "oracle": "Add-MgServicePrincipalKey" + }, + "replacementNoun": "ServicePrincipalKey", + "replacementVerb": "Add" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/serviceprincipals/{}/addpassword", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgServicePrincipalAddPassword", + "oracle": "Add-MgServicePrincipalPassword" + }, + "replacementNoun": "ServicePrincipalPassword", + "replacementVerb": "Add" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/serviceprincipals/{}/addtokensigningcertificate", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgServicePrincipalAddTokenSigningCertificate", + "oracle": "Add-MgServicePrincipalTokenSigningCertificate" + }, + "replacementNoun": "ServicePrincipalTokenSigningCertificate", + "replacementVerb": "Add" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/serviceprincipals/{}/checkmembergroups", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgServicePrincipalCheckMemberGroups", + "oracle": "Confirm-MgServicePrincipalMemberGroup" + }, + "replacementNoun": "ServicePrincipalMemberGroup", + "replacementVerb": "Confirm" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/serviceprincipals/{}/checkmemberobjects", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgServicePrincipalCheckMemberObjects", + "oracle": "Confirm-MgServicePrincipalMemberObject" + }, + "replacementNoun": "ServicePrincipalMemberObject", + "replacementVerb": "Confirm" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/serviceprincipals/{}/getmembergroups", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgServicePrincipalGetMemberGroups", + "oracle": "Get-MgServicePrincipalMemberGroup" + }, + "replacementNoun": "ServicePrincipalMemberGroup", + "replacementVerb": "Get" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/serviceprincipals/{}/getmemberobjects", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgServicePrincipalGetMemberObjects", + "oracle": "Get-MgServicePrincipalMemberObject" + }, + "replacementNoun": "ServicePrincipalMemberObject", + "replacementVerb": "Get" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/serviceprincipals/{}/removekey", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgServicePrincipalRemoveKey", + "oracle": "Remove-MgServicePrincipalKey" + }, + "replacementNoun": "ServicePrincipalKey", + "replacementVerb": "Remove" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/serviceprincipals/{}/removepassword", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgServicePrincipalRemovePassword", + "oracle": "Remove-MgServicePrincipalPassword" + }, + "replacementNoun": "ServicePrincipalPassword", + "replacementVerb": "Remove" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/serviceprincipals/{}/synchronization/acquireaccesstoken", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgServicePrincipalSynchronizationAcquireAccessToken", + "oracle": "Get-MgServicePrincipalSynchronizationAccessToken" + }, + "replacementNoun": "ServicePrincipalSynchronizationAccessToken", + "replacementVerb": "Get" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/serviceprincipals/{}/synchronization/jobs/{}/pause", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgServicePrincipalSynchronizationJobPause", + "oracle": "Suspend-MgServicePrincipalSynchronizationJob" + }, + "replacementNoun": "ServicePrincipalSynchronizationJob", + "replacementVerb": "Suspend" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/serviceprincipals/{}/synchronization/jobs/{}/provisionondemand", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgServicePrincipalSynchronizationJobProvisionOnDemand", + "oracle": "New-MgServicePrincipalSynchronizationJobOnDemand" + }, + "replacementNoun": "ServicePrincipalSynchronizationJobOnDemand", + "replacementVerb": "New" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/serviceprincipals/{}/synchronization/jobs/{}/restart", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgServicePrincipalSynchronizationJobRestart", + "oracle": "Restart-MgServicePrincipalSynchronizationJob" + }, + "replacementNoun": "ServicePrincipalSynchronizationJob", + "replacementVerb": "Restart" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/serviceprincipals/{}/synchronization/jobs/{}/schema/directories/{}/discover", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgServicePrincipalSynchronizationJobSchemaDirectoryDiscover", + "oracle": "Find-MgServicePrincipalSynchronizationJobSchemaDirectory" + }, + "replacementNoun": "ServicePrincipalSynchronizationJobSchemaDirectory", + "replacementVerb": "Find" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/serviceprincipals/{}/synchronization/jobs/{}/schema/parseexpression", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgServicePrincipalSynchronizationJobSchemaParseExpression", + "oracle": "Invoke-MgParseServicePrincipalSynchronizationJobSchemaExpression" + }, + "replacementNoun": "ParseServicePrincipalSynchronizationJobSchemaExpression" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/serviceprincipals/{}/synchronization/jobs/{}/start", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgServicePrincipalSynchronizationJobStart", + "oracle": "Start-MgServicePrincipalSynchronizationJob" + }, + "replacementNoun": "ServicePrincipalSynchronizationJob", + "replacementVerb": "Start" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/serviceprincipals/{}/synchronization/jobs/{}/validatecredentials", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgServicePrincipalSynchronizationJobValidateCredentials", + "oracle": "Test-MgServicePrincipalSynchronizationJobCredential" + }, + "replacementNoun": "ServicePrincipalSynchronizationJobCredential", + "replacementVerb": "Test" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/serviceprincipals/{}/synchronization/templates/{}/schema/directories/{}/discover", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgServicePrincipalSynchronizationTemplateSchemaDirectoryDiscover", + "oracle": "Find-MgServicePrincipalSynchronizationTemplateSchemaDirectory" + }, + "replacementNoun": "ServicePrincipalSynchronizationTemplateSchemaDirectory", + "replacementVerb": "Find" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/serviceprincipals/{}/synchronization/templates/{}/schema/parseexpression", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgServicePrincipalSynchronizationTemplateSchemaParseExpression", + "oracle": "Invoke-MgParseServicePrincipalSynchronizationTemplateSchemaExpression" + }, + "replacementNoun": "ParseServicePrincipalSynchronizationTemplateSchemaExpression" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/serviceprincipals/getbyids", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgServicePrincipalGetByIds", + "oracle": "Get-MgServicePrincipalById" + }, + "replacementNoun": "ServicePrincipalById", + "replacementVerb": "Get" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/serviceprincipals/validateproperties", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgServicePrincipalValidateProperties", + "oracle": "Test-MgServicePrincipalProperty" + }, + "replacementNoun": "ServicePrincipalProperty", + "replacementVerb": "Test" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/shares/{}/list/contenttypes/{}/associatewithhubsites", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgShareListContentTypeAssociateWithHubSites", + "oracle": "Join-MgShareListContentTypeWithHubSite" + }, + "replacementNoun": "ShareListContentTypeWithHubSite", + "replacementVerb": "Join" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/shares/{}/list/contenttypes/{}/copytodefaultcontentlocation", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgShareListContentTypeCopyToDefaultContentLocation", + "oracle": "Copy-MgShareListContentTypeToDefaultContentLocation" + }, + "replacementNoun": "ShareListContentTypeToDefaultContentLocation", + "replacementVerb": "Copy" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/shares/{}/list/contenttypes/{}/publish", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgShareListContentTypePublish", + "oracle": "Publish-MgShareListContentType" + }, + "replacementNoun": "ShareListContentType", + "replacementVerb": "Publish" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/shares/{}/list/contenttypes/{}/unpublish", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgShareListContentTypeUnpublish", + "oracle": "Unpublish-MgShareListContentType" + }, + "replacementNoun": "ShareListContentType", + "replacementVerb": "Unpublish" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/shares/{}/list/contenttypes/addcopy", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgShareListContentTypeAddCopy", + "oracle": "Add-MgShareListContentTypeCopy" + }, + "replacementNoun": "ShareListContentTypeCopy", + "replacementVerb": "Add" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/shares/{}/list/contenttypes/addcopyfromcontenttypehub", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgShareListContentTypeAddCopyFromContentTypeHub", + "oracle": "Add-MgShareListContentTypeCopyFromContentTypeHub" + }, + "replacementNoun": "ShareListContentTypeCopyFromContentTypeHub", + "replacementVerb": "Add" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/shares/{}/list/items/{}/documentsetversions/{}/restore", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgShareListItemDocumentSetVersionRestore", + "oracle": "Restore-MgShareListItemDocumentSetVersion" + }, + "replacementNoun": "ShareListItemDocumentSetVersion", + "replacementVerb": "Restore" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/shares/{}/list/items/{}/versions/{}/restoreversion", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgShareListItemVersionRestoreVersion", + "oracle": "Restore-MgShareListItemVersion" + }, + "replacementNoun": "ShareListItemVersion", + "replacementVerb": "Restore" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/shares/{}/list/subscriptions/{}/reauthorize", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgShareListSubscriptionReauthorize", + "oracle": "Invoke-MgReauthorizeShareListSubscription" + }, + "replacementNoun": "ReauthorizeShareListSubscription" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/shares/{}/permission/grant", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgSharePermissionGrant", + "oracle": "Grant-MgSharePermission" + }, + "replacementNoun": "SharePermission", + "replacementVerb": "Grant" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/sites/{}/contenttypes/{}/associatewithhubsites", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgSiteContentTypeAssociateWithHubSites", + "oracle": "Join-MgSiteContentTypeWithHubSite" + }, + "replacementNoun": "SiteContentTypeWithHubSite", + "replacementVerb": "Join" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/sites/{}/contenttypes/{}/copytodefaultcontentlocation", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgSiteContentTypeCopyToDefaultContentLocation", + "oracle": "Copy-MgSiteContentTypeToDefaultContentLocation" + }, + "replacementNoun": "SiteContentTypeToDefaultContentLocation", + "replacementVerb": "Copy" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/sites/{}/contenttypes/{}/publish", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgSiteContentTypePublish", + "oracle": "Publish-MgSiteContentType" + }, + "replacementNoun": "SiteContentType", + "replacementVerb": "Publish" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/sites/{}/contenttypes/{}/unpublish", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgSiteContentTypeUnpublish", + "oracle": "Unpublish-MgSiteContentType" + }, + "replacementNoun": "SiteContentType", + "replacementVerb": "Unpublish" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/sites/{}/contenttypes/addcopy", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgSiteContentTypeAddCopy", + "oracle": "Add-MgSiteContentTypeCopy" + }, + "replacementNoun": "SiteContentTypeCopy", + "replacementVerb": "Add" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/sites/{}/contenttypes/addcopyfromcontenttypehub", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgSiteContentTypeAddCopyFromContentTypeHub", + "oracle": "Add-MgSiteContentTypeCopyFromContentTypeHub" + }, + "replacementNoun": "SiteContentTypeCopyFromContentTypeHub", + "replacementVerb": "Add" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/sites/{}/lists/{}/contenttypes/{}/associatewithhubsites", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgSiteListContentTypeAssociateWithHubSites", + "oracle": "Join-MgSiteListContentTypeWithHubSite" + }, + "replacementNoun": "SiteListContentTypeWithHubSite", + "replacementVerb": "Join" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/sites/{}/lists/{}/contenttypes/{}/copytodefaultcontentlocation", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgSiteListContentTypeCopyToDefaultContentLocation", + "oracle": "Copy-MgSiteListContentTypeToDefaultContentLocation" + }, + "replacementNoun": "SiteListContentTypeToDefaultContentLocation", + "replacementVerb": "Copy" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/sites/{}/lists/{}/contenttypes/{}/publish", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgSiteListContentTypePublish", + "oracle": "Publish-MgSiteListContentType" + }, + "replacementNoun": "SiteListContentType", + "replacementVerb": "Publish" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/sites/{}/lists/{}/contenttypes/{}/unpublish", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgSiteListContentTypeUnpublish", + "oracle": "Unpublish-MgSiteListContentType" + }, + "replacementNoun": "SiteListContentType", + "replacementVerb": "Unpublish" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/sites/{}/lists/{}/contenttypes/addcopy", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgSiteListContentTypeAddCopy", + "oracle": "Add-MgSiteListContentTypeCopy" + }, + "replacementNoun": "SiteListContentTypeCopy", + "replacementVerb": "Add" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/sites/{}/lists/{}/contenttypes/addcopyfromcontenttypehub", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgSiteListContentTypeAddCopyFromContentTypeHub", + "oracle": "Add-MgSiteListContentTypeCopyFromContentTypeHub" + }, + "replacementNoun": "SiteListContentTypeCopyFromContentTypeHub", + "replacementVerb": "Add" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/sites/{}/lists/{}/items/{}/createlink", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgSiteListItemCreateLink", + "oracle": "New-MgSiteListItemLink" + }, + "replacementNoun": "SiteListItemLink", + "replacementVerb": "New" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/sites/{}/lists/{}/items/{}/documentsetversions/{}/restore", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgSiteListItemDocumentSetVersionRestore", + "oracle": "Restore-MgSiteListItemDocumentSetVersion" + }, + "replacementNoun": "SiteListItemDocumentSetVersion", + "replacementVerb": "Restore" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/sites/{}/lists/{}/items/{}/permissions/{}/grant", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgSiteListItemPermissionGrant", + "oracle": "Grant-MgSiteListItemPermission" + }, + "replacementNoun": "SiteListItemPermission", + "replacementVerb": "Grant" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/sites/{}/lists/{}/items/{}/versions/{}/restoreversion", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgSiteListItemVersionRestoreVersion", + "oracle": "Restore-MgSiteListItemVersion" + }, + "replacementNoun": "SiteListItemVersion", + "replacementVerb": "Restore" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/sites/{}/lists/{}/permissions/{}/grant", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgSiteListPermissionGrant", + "oracle": "Grant-MgSiteListPermission" + }, + "replacementNoun": "SiteListPermission", + "replacementVerb": "Grant" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/sites/{}/lists/{}/subscriptions/{}/reauthorize", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgSiteListSubscriptionReauthorize", + "oracle": "Invoke-MgReauthorizeSiteListSubscription" + }, + "replacementNoun": "ReauthorizeSiteListSubscription" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/sites/{}/onenote/notebooks/{}/copynotebook", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgSiteOnenoteNotebookCopyNotebook", + "oracle": "Copy-MgSiteOnenoteNotebook" + }, + "replacementNoun": "SiteOnenoteNotebook", + "replacementVerb": "Copy" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/sites/{}/onenote/notebooks/{}/sectiongroups/{}/sections/{}/copytonotebook", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgSiteOnenoteNotebookSectionGroupSectionCopyToNotebook", + "oracle": "Copy-MgSiteOnenoteNotebookSectionGroupSectionToNotebook" + }, + "replacementNoun": "SiteOnenoteNotebookSectionGroupSectionToNotebook", + "replacementVerb": "Copy" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/sites/{}/onenote/notebooks/{}/sectiongroups/{}/sections/{}/copytosectiongroup", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgSiteOnenoteNotebookSectionGroupSectionCopyToSectionGroup", + "oracle": "Copy-MgSiteOnenoteNotebookSectionGroupSectionToSectionGroup" + }, + "replacementNoun": "SiteOnenoteNotebookSectionGroupSectionToSectionGroup", + "replacementVerb": "Copy" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/sites/{}/onenote/notebooks/{}/sectiongroups/{}/sections/{}/pages/{}/copytosection", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgSiteOnenoteNotebookSectionGroupSectionPageCopyToSection", + "oracle": "Copy-MgSiteOnenoteNotebookSectionGroupSectionPageToSection" + }, + "replacementNoun": "SiteOnenoteNotebookSectionGroupSectionPageToSection", + "replacementVerb": "Copy" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/sites/{}/onenote/notebooks/{}/sectiongroups/{}/sections/{}/pages/{}/onenotepatchcontent", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgSiteOnenoteNotebookSectionGroupSectionPageOnenotePatchContent", + "oracle": "Update-MgSiteOnenoteNotebookSectionGroupSectionPageContent" + }, + "replacementNoun": "SiteOnenoteNotebookSectionGroupSectionPageContent", + "replacementVerb": "Update" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/sites/{}/onenote/notebooks/{}/sections/{}/copytonotebook", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgSiteOnenoteNotebookSectionCopyToNotebook", + "oracle": "Copy-MgSiteOnenoteNotebookSectionToNotebook" + }, + "replacementNoun": "SiteOnenoteNotebookSectionToNotebook", + "replacementVerb": "Copy" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/sites/{}/onenote/notebooks/{}/sections/{}/copytosectiongroup", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgSiteOnenoteNotebookSectionCopyToSectionGroup", + "oracle": "Copy-MgSiteOnenoteNotebookSectionToSectionGroup" + }, + "replacementNoun": "SiteOnenoteNotebookSectionToSectionGroup", + "replacementVerb": "Copy" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/sites/{}/onenote/notebooks/{}/sections/{}/pages/{}/copytosection", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgSiteOnenoteNotebookSectionPageCopyToSection", + "oracle": "Copy-MgSiteOnenoteNotebookSectionPageToSection" + }, + "replacementNoun": "SiteOnenoteNotebookSectionPageToSection", + "replacementVerb": "Copy" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/sites/{}/onenote/notebooks/{}/sections/{}/pages/{}/onenotepatchcontent", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgSiteOnenoteNotebookSectionPageOnenotePatchContent", + "oracle": "Update-MgSiteOnenoteNotebookSectionPageContent" + }, + "replacementNoun": "SiteOnenoteNotebookSectionPageContent", + "replacementVerb": "Update" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/sites/{}/onenote/notebooks/getnotebookfromweburl", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgSiteOnenoteNotebookGetNotebookFromWebUrl", + "oracle": "Get-MgSiteOnenoteNotebookFromWebUrl" + }, + "replacementNoun": "SiteOnenoteNotebookFromWebUrl", + "replacementVerb": "Get" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/sites/{}/onenote/pages/{}/copytosection", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgSiteOnenotePageCopyToSection", + "oracle": "Copy-MgSiteOnenotePageToSection" + }, + "replacementNoun": "SiteOnenotePageToSection", + "replacementVerb": "Copy" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/sites/{}/onenote/pages/{}/onenotepatchcontent", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgSiteOnenotePageOnenotePatchContent", + "oracle": "Update-MgSiteOnenotePageContent" + }, + "replacementNoun": "SiteOnenotePageContent", + "replacementVerb": "Update" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/sites/{}/onenote/sectiongroups/{}/sections/{}/copytonotebook", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgSiteOnenoteSectionGroupSectionCopyToNotebook", + "oracle": "Copy-MgSiteOnenoteSectionGroupSectionToNotebook" + }, + "replacementNoun": "SiteOnenoteSectionGroupSectionToNotebook", + "replacementVerb": "Copy" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/sites/{}/onenote/sectiongroups/{}/sections/{}/copytosectiongroup", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgSiteOnenoteSectionGroupSectionCopyToSectionGroup", + "oracle": "Copy-MgSiteOnenoteSectionGroupSectionToSectionGroup" + }, + "replacementNoun": "SiteOnenoteSectionGroupSectionToSectionGroup", + "replacementVerb": "Copy" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/sites/{}/onenote/sectiongroups/{}/sections/{}/pages/{}/copytosection", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgSiteOnenoteSectionGroupSectionPageCopyToSection", + "oracle": "Copy-MgSiteOnenoteSectionGroupSectionPageToSection" + }, + "replacementNoun": "SiteOnenoteSectionGroupSectionPageToSection", + "replacementVerb": "Copy" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/sites/{}/onenote/sectiongroups/{}/sections/{}/pages/{}/onenotepatchcontent", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgSiteOnenoteSectionGroupSectionPageOnenotePatchContent", + "oracle": "Update-MgSiteOnenoteSectionGroupSectionPageContent" + }, + "replacementNoun": "SiteOnenoteSectionGroupSectionPageContent", + "replacementVerb": "Update" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/sites/{}/onenote/sections/{}/copytonotebook", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgSiteOnenoteSectionCopyToNotebook", + "oracle": "Copy-MgSiteOnenoteSectionToNotebook" + }, + "replacementNoun": "SiteOnenoteSectionToNotebook", + "replacementVerb": "Copy" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/sites/{}/onenote/sections/{}/copytosectiongroup", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgSiteOnenoteSectionCopyToSectionGroup", + "oracle": "Copy-MgSiteOnenoteSectionToSectionGroup" + }, + "replacementNoun": "SiteOnenoteSectionToSectionGroup", + "replacementVerb": "Copy" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/sites/{}/onenote/sections/{}/pages/{}/copytosection", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgSiteOnenoteSectionPageCopyToSection", + "oracle": "Copy-MgSiteOnenoteSectionPageToSection" + }, + "replacementNoun": "SiteOnenoteSectionPageToSection", + "replacementVerb": "Copy" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/sites/{}/onenote/sections/{}/pages/{}/onenotepatchcontent", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgSiteOnenoteSectionPageOnenotePatchContent", + "oracle": "Update-MgSiteOnenoteSectionPageContent" + }, + "replacementNoun": "SiteOnenoteSectionPageContent", + "replacementVerb": "Update" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/sites/{}/permissions/{}/grant", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgSitePermissionGrant", + "oracle": "Grant-MgSitePermission" + }, + "replacementNoun": "SitePermission", + "replacementVerb": "Grant" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/sites/add", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgSiteAdd", + "oracle": "Add-MgSite" + }, + "replacementNoun": "Site", + "replacementVerb": "Add" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/solutions/backuprestore/browsesessions/{}/browse", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgSolutionBackupRestoreBrowseSessionBrowse", + "oracle": "Invoke-MgBrowseSolutionBackupRestoreBrowseSession" + }, + "replacementNoun": "BrowseSolutionBackupRestoreBrowseSession" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/solutions/backuprestore/enable", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgSolutionBackupRestoreEnable", + "oracle": "Enable-MgSolutionBackupRestore" + }, + "replacementNoun": "SolutionBackupRestore", + "replacementVerb": "Enable" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/solutions/backuprestore/protectionpolicies/{}/activate", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgSolutionBackupRestoreProtectionPolicyActivate", + "oracle": "Initialize-MgSolutionBackupRestoreProtectionPolicy" + }, + "replacementNoun": "SolutionBackupRestoreProtectionPolicy", + "replacementVerb": "Initialize" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/solutions/backuprestore/protectionpolicies/{}/deactivate", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgSolutionBackupRestoreProtectionPolicyDeactivate", + "oracle": "Invoke-MgDeactivateSolutionBackupRestoreProtectionPolicy" + }, + "replacementNoun": "DeactivateSolutionBackupRestoreProtectionPolicy" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/solutions/backuprestore/protectionunits/{}/canceloffboard", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgSolutionBackupRestoreProtectionUnitCancelOffboard", + "oracle": "Stop-MgSolutionBackupRestoreProtectionUnitOffboard" + }, + "replacementNoun": "SolutionBackupRestoreProtectionUnitOffboard", + "replacementVerb": "Stop" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/solutions/backuprestore/protectionunits/{}/offboard", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgSolutionBackupRestoreProtectionUnitOffboard", + "oracle": "Invoke-MgOffboardSolutionBackupRestoreProtectionUnit" + }, + "replacementNoun": "OffboardSolutionBackupRestoreProtectionUnit" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/solutions/backuprestore/restorepoints/search", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgSolutionBackupRestorePointSearch", + "oracle": "Search-MgSolutionBackupRestorePoint" + }, + "replacementNoun": "SolutionBackupRestorePoint", + "replacementVerb": "Search" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/solutions/backuprestore/restoresessions/{}/activate", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgSolutionBackupRestoreSessionActivate", + "oracle": "Initialize-MgSolutionBackupRestoreSession" + }, + "replacementNoun": "SolutionBackupRestoreSession", + "replacementVerb": "Initialize" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/solutions/backuprestore/serviceapps/{}/activate", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgSolutionBackupRestoreServiceAppActivate", + "oracle": "Initialize-MgSolutionBackupRestoreServiceApp" + }, + "replacementNoun": "SolutionBackupRestoreServiceApp", + "replacementVerb": "Initialize" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/solutions/backuprestore/serviceapps/{}/deactivate", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgSolutionBackupRestoreServiceAppDeactivate", + "oracle": "Invoke-MgDeactivateSolutionBackupRestoreServiceApp" + }, + "replacementNoun": "DeactivateSolutionBackupRestoreServiceApp" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/solutions/bookingbusinesses/{}/appointments/{}/cancel", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgBookingBusinessAppointmentCancel", + "oracle": "Stop-MgBookingBusinessAppointment" + }, + "replacementNoun": "BookingBusinessAppointment", + "replacementVerb": "Stop" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/solutions/bookingbusinesses/{}/calendarview/{}/cancel", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgBookingBusinessCalendarViewCancel", + "oracle": "Stop-MgBookingBusinessCalendarView" + }, + "replacementNoun": "BookingBusinessCalendarView", + "replacementVerb": "Stop" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/solutions/bookingbusinesses/{}/getstaffavailability", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgBookingBusinessGetStaffAvailability", + "oracle": "Get-MgBookingBusinessStaffAvailability" + }, + "replacementNoun": "BookingBusinessStaffAvailability", + "replacementVerb": "Get" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/solutions/bookingbusinesses/{}/publish", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgBookingBusinessPublish", + "oracle": "Publish-MgBookingBusiness" + }, + "replacementNoun": "BookingBusiness", + "replacementVerb": "Publish" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/solutions/bookingbusinesses/{}/unpublish", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgBookingBusinessUnpublish", + "oracle": "Unpublish-MgBookingBusiness" + }, + "replacementNoun": "BookingBusiness", + "replacementVerb": "Unpublish" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/solutions/virtualevents/events/{}/cancel", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgVirtualEventCancel", + "oracle": "Stop-MgVirtualEvent" + }, + "replacementNoun": "VirtualEvent", + "replacementVerb": "Stop" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/solutions/virtualevents/events/{}/publish", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgVirtualEventPublish", + "oracle": "Publish-MgVirtualEvent" + }, + "replacementNoun": "VirtualEvent", + "replacementVerb": "Publish" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/solutions/virtualevents/events/{}/setexternaleventinformation", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgVirtualEventSetExternalEventInformation", + "oracle": "Set-MgVirtualEventExternalEventInformation" + }, + "replacementNoun": "VirtualEventExternalEventInformation", + "replacementVerb": "Set" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/solutions/virtualevents/webinars/{}/registrations/{}/cancel", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgVirtualEventWebinarRegistrationCancel", + "oracle": "Stop-MgVirtualEventWebinarRegistration" + }, + "replacementNoun": "VirtualEventWebinarRegistration", + "replacementVerb": "Stop" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/subscriptions/{}/reauthorize", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgSubscriptionReauthorize", + "oracle": "Invoke-MgReauthorizeSubscription" + }, + "replacementNoun": "ReauthorizeSubscription" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/teams/{}/archive", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgTeamArchive", + "oracle": "Invoke-MgArchiveTeam" + }, + "replacementNoun": "ArchiveTeam" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/teams/{}/channels/{}/allmembers", + "action": "rename", + "evidence": { + "ourCommand": "New-MgTeamChannelAllMember", + "oracle": "New-MgTeamChannelMember" + }, + "replacementNoun": "TeamChannelMember" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/teams/{}/channels/{}/allmembers/add", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgTeamChannelAllMemberAdd", + "oracle": "Add-MgTeamChannelAllMember" + }, + "replacementNoun": "TeamChannelAllMember", + "replacementVerb": "Add" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/teams/{}/channels/{}/allmembers/remove", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgTeamChannelAllMemberRemove", + "oracle": "Remove-MgTeamChannelAllMember" + }, + "replacementNoun": "TeamChannelAllMember", + "replacementVerb": "Remove" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/teams/{}/channels/{}/archive", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgTeamChannelArchive", + "oracle": "Invoke-MgArchiveTeamChannel" + }, + "replacementNoun": "ArchiveTeamChannel" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/teams/{}/channels/{}/completemigration", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgTeamChannelCompleteMigration", + "oracle": "Complete-MgTeamChannelMigration" + }, + "replacementNoun": "TeamChannelMigration", + "replacementVerb": "Complete" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/teams/{}/channels/{}/members/add", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgTeamChannelMemberAdd", + "oracle": "Add-MgTeamChannelMember" + }, + "replacementNoun": "TeamChannelMember", + "replacementVerb": "Add" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/teams/{}/channels/{}/messages/{}/replies/{}/setreaction", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgTeamChannelMessageReplySetReaction", + "oracle": "Set-MgTeamChannelMessageReplyReaction" + }, + "replacementNoun": "TeamChannelMessageReplyReaction", + "replacementVerb": "Set" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/teams/{}/channels/{}/messages/{}/replies/{}/softdelete", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgTeamChannelMessageReplySoftDelete", + "oracle": "Invoke-MgSoftTeamChannelMessageReplyDelete" + }, + "replacementNoun": "SoftTeamChannelMessageReplyDelete" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/teams/{}/channels/{}/messages/{}/replies/{}/undosoftdelete", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgTeamChannelMessageReplyUndoSoftDelete", + "oracle": "Undo-MgTeamChannelMessageReplySoftDelete" + }, + "replacementNoun": "TeamChannelMessageReplySoftDelete", + "replacementVerb": "Undo" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/teams/{}/channels/{}/messages/{}/replies/{}/unsetreaction", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgTeamChannelMessageReplyUnsetReaction", + "oracle": "Clear-MgTeamChannelMessageReplyReaction" + }, + "replacementNoun": "TeamChannelMessageReplyReaction", + "replacementVerb": "Clear" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/teams/{}/channels/{}/messages/{}/replies/replywithquote", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgTeamChannelMessageReplyReplyWithQuote", + "oracle": "Invoke-MgGraphTeamChannelMessageReply" + }, + "replacementNoun": "GraphTeamChannelMessageReply" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/teams/{}/channels/{}/messages/{}/setreaction", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgTeamChannelMessageSetReaction", + "oracle": "Set-MgTeamChannelMessageReaction" + }, + "replacementNoun": "TeamChannelMessageReaction", + "replacementVerb": "Set" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/teams/{}/channels/{}/messages/{}/softdelete", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgTeamChannelMessageSoftDelete", + "oracle": "Invoke-MgSoftTeamChannelMessageDelete" + }, + "replacementNoun": "SoftTeamChannelMessageDelete" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/teams/{}/channels/{}/messages/{}/undosoftdelete", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgTeamChannelMessageUndoSoftDelete", + "oracle": "Undo-MgTeamChannelMessageSoftDelete" + }, + "replacementNoun": "TeamChannelMessageSoftDelete", + "replacementVerb": "Undo" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/teams/{}/channels/{}/messages/{}/unsetreaction", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgTeamChannelMessageUnsetReaction", + "oracle": "Clear-MgTeamChannelMessageReaction" + }, + "replacementNoun": "TeamChannelMessageReaction", + "replacementVerb": "Clear" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/teams/{}/channels/{}/messages/replywithquote", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgTeamChannelMessageReplyWithQuote", + "oracle": "Invoke-MgGraphTeamChannelMessage" + }, + "replacementNoun": "GraphTeamChannelMessage" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/teams/{}/channels/{}/provisionemail", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgTeamChannelProvisionEmail", + "oracle": "New-MgTeamChannelEmail" + }, + "replacementNoun": "TeamChannelEmail", + "replacementVerb": "New" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/teams/{}/channels/{}/removeemail", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgTeamChannelRemoveEmail", + "oracle": "Remove-MgTeamChannelEmail" + }, + "replacementNoun": "TeamChannelEmail", + "replacementVerb": "Remove" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/teams/{}/channels/{}/startmigration", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgTeamChannelStartMigration", + "oracle": "Start-MgTeamChannelMigration" + }, + "replacementNoun": "TeamChannelMigration", + "replacementVerb": "Start" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/teams/{}/channels/{}/unarchive", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgTeamChannelUnarchive", + "oracle": "Invoke-MgUnarchiveTeamChannel" + }, + "replacementNoun": "UnarchiveTeamChannel" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/teams/{}/clone", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgTeamClone", + "oracle": "Copy-MgTeam" + }, + "replacementNoun": "Team", + "replacementVerb": "Copy" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/teams/{}/completemigration", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgTeamCompleteMigration", + "oracle": "Complete-MgTeamMigration" + }, + "replacementNoun": "TeamMigration", + "replacementVerb": "Complete" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/teams/{}/installedapps/{}/upgrade", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgTeamInstalledAppUpgrade", + "oracle": "Update-MgTeamInstalledApp" + }, + "replacementNoun": "TeamInstalledApp", + "replacementVerb": "Update" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/teams/{}/members/add", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgTeamMemberAdd", + "oracle": "Add-MgTeamMember" + }, + "replacementNoun": "TeamMember", + "replacementVerb": "Add" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/teams/{}/primarychannel/allmembers", + "action": "rename", + "evidence": { + "ourCommand": "New-MgTeamPrimaryChannelAllMember", + "oracle": "New-MgTeamPrimaryChannelMember" + }, + "replacementNoun": "TeamPrimaryChannelMember" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/teams/{}/primarychannel/allmembers/add", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgTeamPrimaryChannelAllMemberAdd", + "oracle": "Add-MgTeamPrimaryChannelAllMember" + }, + "replacementNoun": "TeamPrimaryChannelAllMember", + "replacementVerb": "Add" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/teams/{}/primarychannel/allmembers/remove", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgTeamPrimaryChannelAllMemberRemove", + "oracle": "Remove-MgTeamPrimaryChannelAllMember" + }, + "replacementNoun": "TeamPrimaryChannelAllMember", + "replacementVerb": "Remove" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/teams/{}/primarychannel/archive", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgTeamPrimaryChannelArchive", + "oracle": "Invoke-MgArchiveTeamPrimaryChannel" + }, + "replacementNoun": "ArchiveTeamPrimaryChannel" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/teams/{}/primarychannel/completemigration", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgTeamPrimaryChannelCompleteMigration", + "oracle": "Complete-MgTeamPrimaryChannelMigration" + }, + "replacementNoun": "TeamPrimaryChannelMigration", + "replacementVerb": "Complete" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/teams/{}/primarychannel/members/add", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgTeamPrimaryChannelMemberAdd", + "oracle": "Add-MgTeamPrimaryChannelMember" + }, + "replacementNoun": "TeamPrimaryChannelMember", + "replacementVerb": "Add" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/teams/{}/primarychannel/messages/{}/replies/{}/setreaction", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgTeamPrimaryChannelMessageReplySetReaction", + "oracle": "Set-MgTeamPrimaryChannelMessageReplyReaction" + }, + "replacementNoun": "TeamPrimaryChannelMessageReplyReaction", + "replacementVerb": "Set" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/teams/{}/primarychannel/messages/{}/replies/{}/softdelete", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgTeamPrimaryChannelMessageReplySoftDelete", + "oracle": "Invoke-MgSoftTeamPrimaryChannelMessageReplyDelete" + }, + "replacementNoun": "SoftTeamPrimaryChannelMessageReplyDelete" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/teams/{}/primarychannel/messages/{}/replies/{}/undosoftdelete", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgTeamPrimaryChannelMessageReplyUndoSoftDelete", + "oracle": "Undo-MgTeamPrimaryChannelMessageReplySoftDelete" + }, + "replacementNoun": "TeamPrimaryChannelMessageReplySoftDelete", + "replacementVerb": "Undo" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/teams/{}/primarychannel/messages/{}/replies/{}/unsetreaction", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgTeamPrimaryChannelMessageReplyUnsetReaction", + "oracle": "Clear-MgTeamPrimaryChannelMessageReplyReaction" + }, + "replacementNoun": "TeamPrimaryChannelMessageReplyReaction", + "replacementVerb": "Clear" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/teams/{}/primarychannel/messages/{}/replies/replywithquote", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgTeamPrimaryChannelMessageReplyReplyWithQuote", + "oracle": "Invoke-MgGraphTeamPrimaryChannelMessageReply" + }, + "replacementNoun": "GraphTeamPrimaryChannelMessageReply" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/teams/{}/primarychannel/messages/{}/setreaction", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgTeamPrimaryChannelMessageSetReaction", + "oracle": "Set-MgTeamPrimaryChannelMessageReaction" + }, + "replacementNoun": "TeamPrimaryChannelMessageReaction", + "replacementVerb": "Set" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/teams/{}/primarychannel/messages/{}/softdelete", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgTeamPrimaryChannelMessageSoftDelete", + "oracle": "Invoke-MgSoftTeamPrimaryChannelMessageDelete" + }, + "replacementNoun": "SoftTeamPrimaryChannelMessageDelete" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/teams/{}/primarychannel/messages/{}/undosoftdelete", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgTeamPrimaryChannelMessageUndoSoftDelete", + "oracle": "Undo-MgTeamPrimaryChannelMessageSoftDelete" + }, + "replacementNoun": "TeamPrimaryChannelMessageSoftDelete", + "replacementVerb": "Undo" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/teams/{}/primarychannel/messages/{}/unsetreaction", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgTeamPrimaryChannelMessageUnsetReaction", + "oracle": "Clear-MgTeamPrimaryChannelMessageReaction" + }, + "replacementNoun": "TeamPrimaryChannelMessageReaction", + "replacementVerb": "Clear" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/teams/{}/primarychannel/messages/replywithquote", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgTeamPrimaryChannelMessageReplyWithQuote", + "oracle": "Invoke-MgGraphTeamPrimaryChannelMessage" + }, + "replacementNoun": "GraphTeamPrimaryChannelMessage" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/teams/{}/primarychannel/provisionemail", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgTeamPrimaryChannelProvisionEmail", + "oracle": "New-MgTeamPrimaryChannelEmail" + }, + "replacementNoun": "TeamPrimaryChannelEmail", + "replacementVerb": "New" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/teams/{}/primarychannel/removeemail", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgTeamPrimaryChannelRemoveEmail", + "oracle": "Remove-MgTeamPrimaryChannelEmail" + }, + "replacementNoun": "TeamPrimaryChannelEmail", + "replacementVerb": "Remove" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/teams/{}/primarychannel/startmigration", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgTeamPrimaryChannelStartMigration", + "oracle": "Start-MgTeamPrimaryChannelMigration" + }, + "replacementNoun": "TeamPrimaryChannelMigration", + "replacementVerb": "Start" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/teams/{}/primarychannel/unarchive", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgTeamPrimaryChannelUnarchive", + "oracle": "Invoke-MgUnarchiveTeamPrimaryChannel" + }, + "replacementNoun": "UnarchiveTeamPrimaryChannel" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/teams/{}/schedule/share", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgTeamScheduleShare", + "oracle": "Invoke-MgShareTeamSchedule" + }, + "replacementNoun": "ShareTeamSchedule" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/teams/{}/schedule/timecards/{}/clockout", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgTeamScheduleTimeCardClockOut", + "oracle": "Invoke-MgClockTeamScheduleTimeCardOut" + }, + "replacementNoun": "ClockTeamScheduleTimeCardOut" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/teams/{}/schedule/timecards/{}/confirm", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgTeamScheduleTimeCardConfirm", + "oracle": "Confirm-MgTeamScheduleTimeCard" + }, + "replacementNoun": "TeamScheduleTimeCard", + "replacementVerb": "Confirm" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/teams/{}/schedule/timecards/{}/endbreak", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgTeamScheduleTimeCardEndBreak", + "oracle": "Stop-MgTeamScheduleTimeCardBreak" + }, + "replacementNoun": "TeamScheduleTimeCardBreak", + "replacementVerb": "Stop" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/teams/{}/schedule/timecards/{}/startbreak", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgTeamScheduleTimeCardStartBreak", + "oracle": "Start-MgTeamScheduleTimeCardBreak" + }, + "replacementNoun": "TeamScheduleTimeCardBreak", + "replacementVerb": "Start" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/teams/{}/schedule/timecards/clockin", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgTeamScheduleTimeCardClockIn", + "oracle": "Invoke-MgClockTeamScheduleTimeCardIn" + }, + "replacementNoun": "ClockTeamScheduleTimeCardIn" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/teams/{}/sendactivitynotification", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgTeamSendActivityNotification", + "oracle": "Send-MgTeamActivityNotification" + }, + "replacementNoun": "TeamActivityNotification", + "replacementVerb": "Send" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/teams/{}/unarchive", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgTeamUnarchive", + "oracle": "Invoke-MgUnarchiveTeam" + }, + "replacementNoun": "UnarchiveTeam" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/teamwork/deletedchats/{}/undodelete", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgTeamworkDeletedChatUndoDelete", + "oracle": "Undo-MgTeamworkDeletedChatDelete" + }, + "replacementNoun": "TeamworkDeletedChatDelete", + "replacementVerb": "Undo" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/teamwork/deletedteams/{}/channels/{}/allmembers", + "action": "rename", + "evidence": { + "ourCommand": "New-MgTeamworkDeletedTeamChannelAllMember", + "oracle": "New-MgTeamworkDeletedTeamChannelMember" + }, + "replacementNoun": "TeamworkDeletedTeamChannelMember" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/teamwork/deletedteams/{}/channels/{}/allmembers/add", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgTeamworkDeletedTeamChannelAllMemberAdd", + "oracle": "Add-MgTeamworkDeletedTeamChannelAllMember" + }, + "replacementNoun": "TeamworkDeletedTeamChannelAllMember", + "replacementVerb": "Add" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/teamwork/deletedteams/{}/channels/{}/allmembers/remove", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgTeamworkDeletedTeamChannelAllMemberRemove", + "oracle": "Remove-MgTeamworkDeletedTeamChannelAllMember" + }, + "replacementNoun": "TeamworkDeletedTeamChannelAllMember", + "replacementVerb": "Remove" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/teamwork/deletedteams/{}/channels/{}/archive", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgTeamworkDeletedTeamChannelArchive", + "oracle": "Invoke-MgArchiveTeamworkDeletedTeamChannel" + }, + "replacementNoun": "ArchiveTeamworkDeletedTeamChannel" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/teamwork/deletedteams/{}/channels/{}/completemigration", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgTeamworkDeletedTeamChannelCompleteMigration", + "oracle": "Complete-MgTeamworkDeletedTeamChannelMigration" + }, + "replacementNoun": "TeamworkDeletedTeamChannelMigration", + "replacementVerb": "Complete" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/teamwork/deletedteams/{}/channels/{}/members/add", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgTeamworkDeletedTeamChannelMemberAdd", + "oracle": "Add-MgTeamworkDeletedTeamChannelMember" + }, + "replacementNoun": "TeamworkDeletedTeamChannelMember", + "replacementVerb": "Add" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/teamwork/deletedteams/{}/channels/{}/messages/{}/replies/{}/setreaction", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgTeamworkDeletedTeamChannelMessageReplySetReaction", + "oracle": "Set-MgTeamworkDeletedTeamChannelMessageReplyReaction" + }, + "replacementNoun": "TeamworkDeletedTeamChannelMessageReplyReaction", + "replacementVerb": "Set" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/teamwork/deletedteams/{}/channels/{}/messages/{}/replies/{}/softdelete", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgTeamworkDeletedTeamChannelMessageReplySoftDelete", + "oracle": "Invoke-MgSoftTeamworkDeletedTeamChannelMessageReplyDelete" + }, + "replacementNoun": "SoftTeamworkDeletedTeamChannelMessageReplyDelete" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/teamwork/deletedteams/{}/channels/{}/messages/{}/replies/{}/undosoftdelete", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgTeamworkDeletedTeamChannelMessageReplyUndoSoftDelete", + "oracle": "Undo-MgTeamworkDeletedTeamChannelMessageReplySoftDelete" + }, + "replacementNoun": "TeamworkDeletedTeamChannelMessageReplySoftDelete", + "replacementVerb": "Undo" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/teamwork/deletedteams/{}/channels/{}/messages/{}/replies/{}/unsetreaction", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgTeamworkDeletedTeamChannelMessageReplyUnsetReaction", + "oracle": "Clear-MgTeamworkDeletedTeamChannelMessageReplyReaction" + }, + "replacementNoun": "TeamworkDeletedTeamChannelMessageReplyReaction", + "replacementVerb": "Clear" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/teamwork/deletedteams/{}/channels/{}/messages/{}/replies/replywithquote", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgTeamworkDeletedTeamChannelMessageReplyReplyWithQuote", + "oracle": "Invoke-MgGraphTeamworkDeletedTeamChannelMessageReply" + }, + "replacementNoun": "GraphTeamworkDeletedTeamChannelMessageReply" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/teamwork/deletedteams/{}/channels/{}/messages/{}/setreaction", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgTeamworkDeletedTeamChannelMessageSetReaction", + "oracle": "Set-MgTeamworkDeletedTeamChannelMessageReaction" + }, + "replacementNoun": "TeamworkDeletedTeamChannelMessageReaction", + "replacementVerb": "Set" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/teamwork/deletedteams/{}/channels/{}/messages/{}/softdelete", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgTeamworkDeletedTeamChannelMessageSoftDelete", + "oracle": "Invoke-MgSoftTeamworkDeletedTeamChannelMessageDelete" + }, + "replacementNoun": "SoftTeamworkDeletedTeamChannelMessageDelete" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/teamwork/deletedteams/{}/channels/{}/messages/{}/undosoftdelete", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgTeamworkDeletedTeamChannelMessageUndoSoftDelete", + "oracle": "Undo-MgTeamworkDeletedTeamChannelMessageSoftDelete" + }, + "replacementNoun": "TeamworkDeletedTeamChannelMessageSoftDelete", + "replacementVerb": "Undo" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/teamwork/deletedteams/{}/channels/{}/messages/{}/unsetreaction", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgTeamworkDeletedTeamChannelMessageUnsetReaction", + "oracle": "Clear-MgTeamworkDeletedTeamChannelMessageReaction" + }, + "replacementNoun": "TeamworkDeletedTeamChannelMessageReaction", + "replacementVerb": "Clear" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/teamwork/deletedteams/{}/channels/{}/messages/replywithquote", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgTeamworkDeletedTeamChannelMessageReplyWithQuote", + "oracle": "Invoke-MgGraphTeamworkDeletedTeamChannelMessage" + }, + "replacementNoun": "GraphTeamworkDeletedTeamChannelMessage" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/teamwork/deletedteams/{}/channels/{}/provisionemail", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgTeamworkDeletedTeamChannelProvisionEmail", + "oracle": "New-MgTeamworkDeletedTeamChannelEmail" + }, + "replacementNoun": "TeamworkDeletedTeamChannelEmail", + "replacementVerb": "New" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/teamwork/deletedteams/{}/channels/{}/removeemail", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgTeamworkDeletedTeamChannelRemoveEmail", + "oracle": "Remove-MgTeamworkDeletedTeamChannelEmail" + }, + "replacementNoun": "TeamworkDeletedTeamChannelEmail", + "replacementVerb": "Remove" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/teamwork/deletedteams/{}/channels/{}/startmigration", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgTeamworkDeletedTeamChannelStartMigration", + "oracle": "Start-MgTeamworkDeletedTeamChannelMigration" + }, + "replacementNoun": "TeamworkDeletedTeamChannelMigration", + "replacementVerb": "Start" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/teamwork/deletedteams/{}/channels/{}/unarchive", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgTeamworkDeletedTeamChannelUnarchive", + "oracle": "Invoke-MgUnarchiveTeamworkDeletedTeamChannel" + }, + "replacementNoun": "UnarchiveTeamworkDeletedTeamChannel" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/teamwork/sendactivitynotificationtorecipients", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgTeamworkSendActivityNotificationToRecipients", + "oracle": "Send-MgTeamworkActivityNotificationToRecipient" + }, + "replacementNoun": "TeamworkActivityNotificationToRecipient", + "replacementVerb": "Send" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/assignlicense", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserAssignLicense", + "oracle": "Set-MgUserLicense" + }, + "replacementNoun": "UserLicense", + "replacementVerb": "Set" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/authentication/methods/{}/resetpassword", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserAuthenticationMethodResetPassword", + "oracle": "Reset-MgUserAuthenticationMethodPassword" + }, + "replacementNoun": "UserAuthenticationMethodPassword", + "replacementVerb": "Reset" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/authentication/phonemethods/{}/disablesmssignin", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserAuthenticationPhoneMethodDisableSmsSignIn", + "oracle": "Disable-MgUserAuthenticationPhoneMethodSmsSignIn" + }, + "replacementNoun": "UserAuthenticationPhoneMethodSmsSignIn", + "replacementVerb": "Disable" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/authentication/phonemethods/{}/enablesmssignin", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserAuthenticationPhoneMethodEnableSmsSignIn", + "oracle": "Enable-MgUserAuthenticationPhoneMethodSmsSignIn" + }, + "replacementNoun": "UserAuthenticationPhoneMethodSmsSignIn", + "replacementVerb": "Enable" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/calendar/permanentdelete", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserCalendarPermanentDelete", + "oracle": "Remove-MgUserCalendarPermanent" + }, + "replacementNoun": "UserCalendarPermanent", + "replacementVerb": "Remove" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/changepassword", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserChangePassword", + "oracle": "Update-MgUserPassword" + }, + "replacementNoun": "UserPassword", + "replacementVerb": "Update" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/chats/{}/completemigration", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserChatCompleteMigration", + "oracle": "Complete-MgUserChatMigration" + }, + "replacementNoun": "UserChatMigration", + "replacementVerb": "Complete" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/chats/{}/hideforuser", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserChatHideForUser", + "oracle": "Hide-MgUserChatForUser" + }, + "replacementNoun": "UserChatForUser", + "replacementVerb": "Hide" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/chats/{}/installedapps/{}/upgrade", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserChatInstalledAppUpgrade", + "oracle": "Update-MgUserChatInstalledApp" + }, + "replacementNoun": "UserChatInstalledApp", + "replacementVerb": "Update" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/chats/{}/markchatreadforuser", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserChatMarkChatReadForUser", + "oracle": "Invoke-MgMarkUserChatReadForUser" + }, + "replacementNoun": "MarkUserChatReadForUser" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/chats/{}/markchatunreadforuser", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserChatMarkChatUnreadForUser", + "oracle": "Invoke-MgMarkUserChatUnreadForUser" + }, + "replacementNoun": "MarkUserChatUnreadForUser" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/chats/{}/members/add", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserChatMemberAdd", + "oracle": "Add-MgUserChatMember" + }, + "replacementNoun": "UserChatMember", + "replacementVerb": "Add" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/chats/{}/messages/{}/replies/{}/setreaction", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserChatMessageReplySetReaction", + "oracle": "Set-MgUserChatMessageReplyReaction" + }, + "replacementNoun": "UserChatMessageReplyReaction", + "replacementVerb": "Set" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/chats/{}/messages/{}/replies/{}/softdelete", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserChatMessageReplySoftDelete", + "oracle": "Invoke-MgSoftUserChatMessageReplyDelete" + }, + "replacementNoun": "SoftUserChatMessageReplyDelete" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/chats/{}/messages/{}/replies/{}/undosoftdelete", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserChatMessageReplyUndoSoftDelete", + "oracle": "Undo-MgUserChatMessageReplySoftDelete" + }, + "replacementNoun": "UserChatMessageReplySoftDelete", + "replacementVerb": "Undo" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/chats/{}/messages/{}/replies/{}/unsetreaction", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserChatMessageReplyUnsetReaction", + "oracle": "Clear-MgUserChatMessageReplyReaction" + }, + "replacementNoun": "UserChatMessageReplyReaction", + "replacementVerb": "Clear" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/chats/{}/messages/{}/replies/replywithquote", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserChatMessageReplyReplyWithQuote", + "oracle": "Invoke-MgGraphUserChatMessageReply" + }, + "replacementNoun": "GraphUserChatMessageReply" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/chats/{}/messages/{}/setreaction", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserChatMessageSetReaction", + "oracle": "Set-MgUserChatMessageReaction" + }, + "replacementNoun": "UserChatMessageReaction", + "replacementVerb": "Set" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/chats/{}/messages/{}/softdelete", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserChatMessageSoftDelete", + "oracle": "Invoke-MgSoftUserChatMessageDelete" + }, + "replacementNoun": "SoftUserChatMessageDelete" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/chats/{}/messages/{}/undosoftdelete", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserChatMessageUndoSoftDelete", + "oracle": "Undo-MgUserChatMessageSoftDelete" + }, + "replacementNoun": "UserChatMessageSoftDelete", + "replacementVerb": "Undo" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/chats/{}/messages/{}/unsetreaction", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserChatMessageUnsetReaction", + "oracle": "Clear-MgUserChatMessageReaction" + }, + "replacementNoun": "UserChatMessageReaction", + "replacementVerb": "Clear" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/chats/{}/messages/replywithquote", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserChatMessageReplyWithQuote", + "oracle": "Invoke-MgGraphUserChatMessage" + }, + "replacementNoun": "GraphUserChatMessage" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/chats/{}/removeallaccessforuser", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserChatRemoveAllAccessForUser", + "oracle": "Remove-MgUserChatAccessForUser" + }, + "replacementNoun": "UserChatAccessForUser", + "replacementVerb": "Remove" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/chats/{}/sendactivitynotification", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserChatSendActivityNotification", + "oracle": "Send-MgUserChatActivityNotification" + }, + "replacementNoun": "UserChatActivityNotification", + "replacementVerb": "Send" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/chats/{}/startmigration", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserChatStartMigration", + "oracle": "Start-MgUserChatMigration" + }, + "replacementNoun": "UserChatMigration", + "replacementVerb": "Start" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/chats/{}/targetedmessages/{}/replies/{}/setreaction", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserChatTargetedMessageReplySetReaction", + "oracle": "Set-MgUserChatTargetedMessageReplyReaction" + }, + "replacementNoun": "UserChatTargetedMessageReplyReaction", + "replacementVerb": "Set" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/chats/{}/targetedmessages/{}/replies/{}/softdelete", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserChatTargetedMessageReplySoftDelete", + "oracle": "Invoke-MgSoftUserChatTargetedMessageReplyDelete" + }, + "replacementNoun": "SoftUserChatTargetedMessageReplyDelete" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/chats/{}/targetedmessages/{}/replies/{}/undosoftdelete", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserChatTargetedMessageReplyUndoSoftDelete", + "oracle": "Undo-MgUserChatTargetedMessageReplySoftDelete" + }, + "replacementNoun": "UserChatTargetedMessageReplySoftDelete", + "replacementVerb": "Undo" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/chats/{}/targetedmessages/{}/replies/{}/unsetreaction", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserChatTargetedMessageReplyUnsetReaction", + "oracle": "Clear-MgUserChatTargetedMessageReplyReaction" + }, + "replacementNoun": "UserChatTargetedMessageReplyReaction", + "replacementVerb": "Clear" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/chats/{}/targetedmessages/{}/replies/replywithquote", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserChatTargetedMessageReplyReplyWithQuote", + "oracle": "Invoke-MgGraphUserChatTargetedMessageReply" + }, + "replacementNoun": "GraphUserChatTargetedMessageReply" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/chats/{}/unhideforuser", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserChatUnhideForUser", + "oracle": "Invoke-MgGraphUserChat" + }, + "replacementNoun": "GraphUserChat" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/checkmembergroups", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserCheckMemberGroups", + "oracle": "Confirm-MgUserMemberGroup" + }, + "replacementNoun": "UserMemberGroup", + "replacementVerb": "Confirm" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/checkmemberobjects", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserCheckMemberObjects", + "oracle": "Confirm-MgUserMemberObject" + }, + "replacementNoun": "UserMemberObject", + "replacementVerb": "Confirm" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/contactfolders/{}/childfolders/{}/contacts/{}/permanentdelete", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserContactFolderChildFolderContactPermanentDelete", + "oracle": "Remove-MgUserContactFolderChildFolderContactPermanent" + }, + "replacementNoun": "UserContactFolderChildFolderContactPermanent", + "replacementVerb": "Remove" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/contactfolders/{}/childfolders/{}/permanentdelete", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserContactFolderChildFolderPermanentDelete", + "oracle": "Remove-MgUserContactFolderChildFolderPermanent" + }, + "replacementNoun": "UserContactFolderChildFolderPermanent", + "replacementVerb": "Remove" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/contactfolders/{}/contacts/{}/permanentdelete", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserContactFolderContactPermanentDelete", + "oracle": "Remove-MgUserContactFolderContactPermanent" + }, + "replacementNoun": "UserContactFolderContactPermanent", + "replacementVerb": "Remove" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/contactfolders/{}/permanentdelete", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserContactFolderPermanentDelete", + "oracle": "Remove-MgUserContactFolderPermanent" + }, + "replacementNoun": "UserContactFolderPermanent", + "replacementVerb": "Remove" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/contacts/{}/permanentdelete", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserContactPermanentDelete", + "oracle": "Remove-MgUserContactPermanent" + }, + "replacementNoun": "UserContactPermanent", + "replacementVerb": "Remove" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/events/{}/accept", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserEventAccept", + "oracle": "Invoke-MgAcceptUserEvent" + }, + "replacementNoun": "AcceptUserEvent" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/events/{}/attachments/createuploadsession", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserEventAttachmentCreateUploadSession", + "oracle": "New-MgUserEventAttachmentUploadSession" + }, + "replacementNoun": "UserEventAttachmentUploadSession", + "replacementVerb": "New" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/events/{}/cancel", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserEventCancel", + "oracle": "Stop-MgUserEvent" + }, + "replacementNoun": "UserEvent", + "replacementVerb": "Stop" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/events/{}/decline", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserEventDecline", + "oracle": "Invoke-MgDeclineUserEvent" + }, + "replacementNoun": "DeclineUserEvent" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/events/{}/dismissreminder", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserEventDismissReminder", + "oracle": "Invoke-MgDismissUserEventReminder" + }, + "replacementNoun": "DismissUserEventReminder" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/events/{}/forward", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserEventForward", + "oracle": "Invoke-MgForwardUserEvent" + }, + "replacementNoun": "ForwardUserEvent" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/events/{}/permanentdelete", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserEventPermanentDelete", + "oracle": "Remove-MgUserEventPermanent" + }, + "replacementNoun": "UserEventPermanent", + "replacementVerb": "Remove" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/events/{}/snoozereminder", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserEventSnoozeReminder", + "oracle": "Invoke-MgSnoozeUserEventReminder" + }, + "replacementNoun": "SnoozeUserEventReminder" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/events/{}/tentativelyaccept", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserEventTentativelyAccept", + "oracle": "Invoke-MgAcceptUserEventTentatively" + }, + "replacementNoun": "AcceptUserEventTentatively" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/exportpersonaldata", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserExportPersonalData", + "oracle": "Export-MgUserPersonalData" + }, + "replacementNoun": "UserPersonalData", + "replacementVerb": "Export" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/findmeetingtimes", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserFindMeetingTimes", + "oracle": "Find-MgUserMeetingTime" + }, + "replacementNoun": "UserMeetingTime", + "replacementVerb": "Find" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/followedsites/add", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserFollowedSiteAdd", + "oracle": "Add-MgUserFollowedSite" + }, + "replacementNoun": "UserFollowedSite", + "replacementVerb": "Add" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/followedsites/remove", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserFollowedSiteRemove", + "oracle": "Remove-MgUserFollowedSite" + }, + "replacementNoun": "UserFollowedSite", + "replacementVerb": "Remove" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/getmailtips", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserGetMailTips", + "oracle": "Get-MgUserMailTip" + }, + "replacementNoun": "UserMailTip", + "replacementVerb": "Get" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/getmembergroups", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserGetMemberGroups", + "oracle": "Get-MgUserMemberGroup" + }, + "replacementNoun": "UserMemberGroup", + "replacementVerb": "Get" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/getmemberobjects", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserGetMemberObjects", + "oracle": "Get-MgUserMemberObject" + }, + "replacementNoun": "UserMemberObject", + "replacementVerb": "Get" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/mailfolders/{}/childfolders/{}/copy", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserMailFolderChildFolderCopy", + "oracle": "Copy-MgUserMailFolderChildFolder" + }, + "replacementNoun": "UserMailFolderChildFolder", + "replacementVerb": "Copy" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/mailfolders/{}/childfolders/{}/messages/{}/attachments/createuploadsession", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserMailFolderChildFolderMessageAttachmentCreateUploadSession", + "oracle": "New-MgUserMailFolderChildFolderMessageAttachmentUploadSession" + }, + "replacementNoun": "UserMailFolderChildFolderMessageAttachmentUploadSession", + "replacementVerb": "New" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/mailfolders/{}/childfolders/{}/messages/{}/copy", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserMailFolderChildFolderMessageCopy", + "oracle": "Copy-MgUserMailFolderChildFolderMessage" + }, + "replacementNoun": "UserMailFolderChildFolderMessage", + "replacementVerb": "Copy" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/mailfolders/{}/childfolders/{}/messages/{}/createforward", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserMailFolderChildFolderMessageCreateForward", + "oracle": "New-MgUserMailFolderChildFolderMessageForward" + }, + "replacementNoun": "UserMailFolderChildFolderMessageForward", + "replacementVerb": "New" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/mailfolders/{}/childfolders/{}/messages/{}/createreply", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserMailFolderChildFolderMessageCreateReply", + "oracle": "New-MgUserMailFolderChildFolderMessageReply" + }, + "replacementNoun": "UserMailFolderChildFolderMessageReply", + "replacementVerb": "New" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/mailfolders/{}/childfolders/{}/messages/{}/createreplyall", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserMailFolderChildFolderMessageCreateReplyAll", + "oracle": "New-MgUserMailFolderChildFolderMessageReplyAll" + }, + "replacementNoun": "UserMailFolderChildFolderMessageReplyAll", + "replacementVerb": "New" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/mailfolders/{}/childfolders/{}/messages/{}/forward", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserMailFolderChildFolderMessageForward", + "oracle": "Invoke-MgForwardUserMailFolderChildFolderMessage" + }, + "replacementNoun": "ForwardUserMailFolderChildFolderMessage" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/mailfolders/{}/childfolders/{}/messages/{}/move", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserMailFolderChildFolderMessageMove", + "oracle": "Move-MgUserMailFolderChildFolderMessage" + }, + "replacementNoun": "UserMailFolderChildFolderMessage", + "replacementVerb": "Move" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/mailfolders/{}/childfolders/{}/messages/{}/permanentdelete", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserMailFolderChildFolderMessagePermanentDelete", + "oracle": "Remove-MgUserMailFolderChildFolderMessagePermanent" + }, + "replacementNoun": "UserMailFolderChildFolderMessagePermanent", + "replacementVerb": "Remove" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/mailfolders/{}/childfolders/{}/messages/{}/reply", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserMailFolderChildFolderMessageReply", + "oracle": "Invoke-MgReplyUserMailFolderChildFolderMessage" + }, + "replacementNoun": "ReplyUserMailFolderChildFolderMessage" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/mailfolders/{}/childfolders/{}/messages/{}/replyall", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserMailFolderChildFolderMessageReplyAll", + "oracle": "Invoke-MgReplyAllUserMailFolderChildFolderMessage" + }, + "replacementNoun": "ReplyAllUserMailFolderChildFolderMessage" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/mailfolders/{}/childfolders/{}/messages/{}/send", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserMailFolderChildFolderMessageSend", + "oracle": "Send-MgUserMailFolderChildFolderMessage" + }, + "replacementNoun": "UserMailFolderChildFolderMessage", + "replacementVerb": "Send" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/mailfolders/{}/childfolders/{}/move", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserMailFolderChildFolderMove", + "oracle": "Move-MgUserMailFolderChildFolder" + }, + "replacementNoun": "UserMailFolderChildFolder", + "replacementVerb": "Move" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/mailfolders/{}/childfolders/{}/permanentdelete", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserMailFolderChildFolderPermanentDelete", + "oracle": "Remove-MgUserMailFolderChildFolderPermanent" + }, + "replacementNoun": "UserMailFolderChildFolderPermanent", + "replacementVerb": "Remove" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/mailfolders/{}/copy", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserMailFolderCopy", + "oracle": "Copy-MgUserMailFolder" + }, + "replacementNoun": "UserMailFolder", + "replacementVerb": "Copy" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/mailfolders/{}/messages/{}/attachments/createuploadsession", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserMailFolderMessageAttachmentCreateUploadSession", + "oracle": "New-MgUserMailFolderMessageAttachmentUploadSession" + }, + "replacementNoun": "UserMailFolderMessageAttachmentUploadSession", + "replacementVerb": "New" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/mailfolders/{}/messages/{}/copy", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserMailFolderMessageCopy", + "oracle": "Copy-MgUserMailFolderMessage" + }, + "replacementNoun": "UserMailFolderMessage", + "replacementVerb": "Copy" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/mailfolders/{}/messages/{}/createforward", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserMailFolderMessageCreateForward", + "oracle": "New-MgUserMailFolderMessageForward" + }, + "replacementNoun": "UserMailFolderMessageForward", + "replacementVerb": "New" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/mailfolders/{}/messages/{}/createreply", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserMailFolderMessageCreateReply", + "oracle": "New-MgUserMailFolderMessageReply" + }, + "replacementNoun": "UserMailFolderMessageReply", + "replacementVerb": "New" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/mailfolders/{}/messages/{}/createreplyall", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserMailFolderMessageCreateReplyAll", + "oracle": "New-MgUserMailFolderMessageReplyAll" + }, + "replacementNoun": "UserMailFolderMessageReplyAll", + "replacementVerb": "New" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/mailfolders/{}/messages/{}/forward", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserMailFolderMessageForward", + "oracle": "Invoke-MgForwardUserMailFolderMessage" + }, + "replacementNoun": "ForwardUserMailFolderMessage" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/mailfolders/{}/messages/{}/move", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserMailFolderMessageMove", + "oracle": "Move-MgUserMailFolderMessage" + }, + "replacementNoun": "UserMailFolderMessage", + "replacementVerb": "Move" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/mailfolders/{}/messages/{}/permanentdelete", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserMailFolderMessagePermanentDelete", + "oracle": "Remove-MgUserMailFolderMessagePermanent" + }, + "replacementNoun": "UserMailFolderMessagePermanent", + "replacementVerb": "Remove" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/mailfolders/{}/messages/{}/reply", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserMailFolderMessageReply", + "oracle": "Invoke-MgReplyUserMailFolderMessage" + }, + "replacementNoun": "ReplyUserMailFolderMessage" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/mailfolders/{}/messages/{}/replyall", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserMailFolderMessageReplyAll", + "oracle": "Invoke-MgReplyAllUserMailFolderMessage" + }, + "replacementNoun": "ReplyAllUserMailFolderMessage" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/mailfolders/{}/messages/{}/send", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserMailFolderMessageSend", + "oracle": "Send-MgUserMailFolderMessage" + }, + "replacementNoun": "UserMailFolderMessage", + "replacementVerb": "Send" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/mailfolders/{}/move", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserMailFolderMove", + "oracle": "Move-MgUserMailFolder" + }, + "replacementNoun": "UserMailFolder", + "replacementVerb": "Move" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/mailfolders/{}/permanentdelete", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserMailFolderPermanentDelete", + "oracle": "Remove-MgUserMailFolderPermanent" + }, + "replacementNoun": "UserMailFolderPermanent", + "replacementVerb": "Remove" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/manageddevices/{}/bypassactivationlock", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserManagedDeviceBypassActivationLock", + "oracle": "Skip-MgUserManagedDeviceActivationLock" + }, + "replacementNoun": "UserManagedDeviceActivationLock", + "replacementVerb": "Skip" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/manageddevices/{}/cleanwindowsdevice", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserManagedDeviceCleanWindowsDevice", + "oracle": "Invoke-MgCleanUserManagedDeviceWindowsDevice" + }, + "replacementNoun": "CleanUserManagedDeviceWindowsDevice" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/manageddevices/{}/deleteuserfromsharedappledevice", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserManagedDeviceDeleteUserFromSharedAppleDevice", + "oracle": "Remove-MgUserManagedDeviceUserFromSharedAppleDevice" + }, + "replacementNoun": "UserManagedDeviceUserFromSharedAppleDevice", + "replacementVerb": "Remove" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/manageddevices/{}/disablelostmode", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserManagedDeviceDisableLostMode", + "oracle": "Disable-MgUserManagedDeviceLostMode" + }, + "replacementNoun": "UserManagedDeviceLostMode", + "replacementVerb": "Disable" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/manageddevices/{}/locatedevice", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserManagedDeviceLocateDevice", + "oracle": "Find-MgUserManagedDevice" + }, + "replacementNoun": "UserManagedDevice", + "replacementVerb": "Find" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/manageddevices/{}/logcollectionrequests", + "action": "rename", + "evidence": { + "ourCommand": "New-MgUserManagedDeviceLogCollectionRequest", + "oracle": "New-MgUserManagedDeviceLogCollectionResponse" + }, + "replacementNoun": "UserManagedDeviceLogCollectionResponse" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/manageddevices/{}/logcollectionrequests/{}/createdownloadurl", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserManagedDeviceLogCollectionRequestCreateDownloadUrl", + "oracle": "New-MgUserManagedDeviceLogCollectionRequestDownloadUrl" + }, + "replacementNoun": "UserManagedDeviceLogCollectionRequestDownloadUrl", + "replacementVerb": "New" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/manageddevices/{}/logoutsharedappledeviceactiveuser", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserManagedDeviceLogoutSharedAppleDeviceActiveUser", + "oracle": "Invoke-MgLogoutUserManagedDeviceSharedAppleDeviceActiveUser" + }, + "replacementNoun": "LogoutUserManagedDeviceSharedAppleDeviceActiveUser" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/manageddevices/{}/rebootnow", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserManagedDeviceRebootNow", + "oracle": "Restart-MgUserManagedDeviceNow" + }, + "replacementNoun": "UserManagedDeviceNow", + "replacementVerb": "Restart" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/manageddevices/{}/recoverpasscode", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserManagedDeviceRecoverPasscode", + "oracle": "Restore-MgUserManagedDevicePasscode" + }, + "replacementNoun": "UserManagedDevicePasscode", + "replacementVerb": "Restore" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/manageddevices/{}/remotelock", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserManagedDeviceRemoteLock", + "oracle": "Lock-MgUserManagedDeviceRemote" + }, + "replacementNoun": "UserManagedDeviceRemote", + "replacementVerb": "Lock" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/manageddevices/{}/requestremoteassistance", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserManagedDeviceRequestRemoteAssistance", + "oracle": "Request-MgUserManagedDeviceRemoteAssistance" + }, + "replacementNoun": "UserManagedDeviceRemoteAssistance", + "replacementVerb": "Request" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/manageddevices/{}/resetpasscode", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserManagedDeviceResetPasscode", + "oracle": "Reset-MgUserManagedDevicePasscode" + }, + "replacementNoun": "UserManagedDevicePasscode", + "replacementVerb": "Reset" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/manageddevices/{}/retire", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserManagedDeviceRetire", + "oracle": "Invoke-MgRetireUserManagedDevice" + }, + "replacementNoun": "RetireUserManagedDevice" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/manageddevices/{}/shutdown", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserManagedDeviceShutDown", + "oracle": "Invoke-MgDownUserManagedDeviceShut" + }, + "replacementNoun": "DownUserManagedDeviceShut" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/manageddevices/{}/syncdevice", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserManagedDeviceSyncDevice", + "oracle": "Sync-MgUserManagedDevice" + }, + "replacementNoun": "UserManagedDevice", + "replacementVerb": "Sync" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/manageddevices/{}/updatewindowsdeviceaccount", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserManagedDeviceUpdateWindowsDeviceAccount", + "oracle": "Update-MgUserManagedDeviceWindowsDeviceAccount" + }, + "replacementNoun": "UserManagedDeviceWindowsDeviceAccount", + "replacementVerb": "Update" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/manageddevices/{}/windowsdefenderscan", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserManagedDeviceWindowsDefenderScan", + "oracle": "Invoke-MgScanUserManagedDeviceWindowsDefender" + }, + "replacementNoun": "ScanUserManagedDeviceWindowsDefender" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/manageddevices/{}/wipe", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserManagedDeviceWipe", + "oracle": "Clear-MgUserManagedDevice" + }, + "replacementNoun": "UserManagedDevice", + "replacementVerb": "Clear" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/messages/{}/attachments/createuploadsession", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserMessageAttachmentCreateUploadSession", + "oracle": "New-MgUserMessageAttachmentUploadSession" + }, + "replacementNoun": "UserMessageAttachmentUploadSession", + "replacementVerb": "New" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/messages/{}/copy", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserMessageCopy", + "oracle": "Copy-MgUserMessage" + }, + "replacementNoun": "UserMessage", + "replacementVerb": "Copy" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/messages/{}/createforward", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserMessageCreateForward", + "oracle": "New-MgUserMessageForward" + }, + "replacementNoun": "UserMessageForward", + "replacementVerb": "New" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/messages/{}/createreply", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserMessageCreateReply", + "oracle": "New-MgUserMessageReply" + }, + "replacementNoun": "UserMessageReply", + "replacementVerb": "New" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/messages/{}/createreplyall", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserMessageCreateReplyAll", + "oracle": "New-MgUserMessageReplyAll" + }, + "replacementNoun": "UserMessageReplyAll", + "replacementVerb": "New" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/messages/{}/forward", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserMessageForward", + "oracle": "Invoke-MgForwardUserMessage" + }, + "replacementNoun": "ForwardUserMessage" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/messages/{}/move", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserMessageMove", + "oracle": "Move-MgUserMessage" + }, + "replacementNoun": "UserMessage", + "replacementVerb": "Move" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/messages/{}/permanentdelete", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserMessagePermanentDelete", + "oracle": "Remove-MgUserMessagePermanent" + }, + "replacementNoun": "UserMessagePermanent", + "replacementVerb": "Remove" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/messages/{}/reply", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserMessageReply", + "oracle": "Invoke-MgReplyUserMessage" + }, + "replacementNoun": "ReplyUserMessage" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/messages/{}/replyall", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserMessageReplyAll", + "oracle": "Invoke-MgReplyAllUserMessage" + }, + "replacementNoun": "ReplyAllUserMessage" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/messages/{}/send", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserMessageSend", + "oracle": "Send-MgUserMessage" + }, + "replacementNoun": "UserMessage", + "replacementVerb": "Send" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/onenote/notebooks/{}/copynotebook", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserOnenoteNotebookCopyNotebook", + "oracle": "Copy-MgUserOnenoteNotebook" + }, + "replacementNoun": "UserOnenoteNotebook", + "replacementVerb": "Copy" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/onenote/notebooks/{}/sectiongroups/{}/sections/{}/copytonotebook", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserOnenoteNotebookSectionGroupSectionCopyToNotebook", + "oracle": "Copy-MgUserOnenoteNotebookSectionGroupSectionToNotebook" + }, + "replacementNoun": "UserOnenoteNotebookSectionGroupSectionToNotebook", + "replacementVerb": "Copy" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/onenote/notebooks/{}/sectiongroups/{}/sections/{}/copytosectiongroup", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserOnenoteNotebookSectionGroupSectionCopyToSectionGroup", + "oracle": "Copy-MgUserOnenoteNotebookSectionGroupSectionToSectionGroup" + }, + "replacementNoun": "UserOnenoteNotebookSectionGroupSectionToSectionGroup", + "replacementVerb": "Copy" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/onenote/notebooks/{}/sectiongroups/{}/sections/{}/pages/{}/copytosection", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserOnenoteNotebookSectionGroupSectionPageCopyToSection", + "oracle": "Copy-MgUserOnenoteNotebookSectionGroupSectionPageToSection" + }, + "replacementNoun": "UserOnenoteNotebookSectionGroupSectionPageToSection", + "replacementVerb": "Copy" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/onenote/notebooks/{}/sectiongroups/{}/sections/{}/pages/{}/onenotepatchcontent", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserOnenoteNotebookSectionGroupSectionPageOnenotePatchContent", + "oracle": "Update-MgUserOnenoteNotebookSectionGroupSectionPage" + }, + "replacementNoun": "UserOnenoteNotebookSectionGroupSectionPage", + "replacementVerb": "Update" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/onenote/notebooks/{}/sections/{}/copytonotebook", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserOnenoteNotebookSectionCopyToNotebook", + "oracle": "Copy-MgUserOnenoteNotebookSectionToNotebook" + }, + "replacementNoun": "UserOnenoteNotebookSectionToNotebook", + "replacementVerb": "Copy" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/onenote/notebooks/{}/sections/{}/copytosectiongroup", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserOnenoteNotebookSectionCopyToSectionGroup", + "oracle": "Copy-MgUserOnenoteNotebookSectionToSectionGroup" + }, + "replacementNoun": "UserOnenoteNotebookSectionToSectionGroup", + "replacementVerb": "Copy" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/onenote/notebooks/{}/sections/{}/pages/{}/copytosection", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserOnenoteNotebookSectionPageCopyToSection", + "oracle": "Copy-MgUserOnenoteNotebookSectionPageToSection" + }, + "replacementNoun": "UserOnenoteNotebookSectionPageToSection", + "replacementVerb": "Copy" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/onenote/notebooks/{}/sections/{}/pages/{}/onenotepatchcontent", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserOnenoteNotebookSectionPageOnenotePatchContent", + "oracle": "Update-MgUserOnenoteNotebookSectionPage" + }, + "replacementNoun": "UserOnenoteNotebookSectionPage", + "replacementVerb": "Update" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/onenote/notebooks/getnotebookfromweburl", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserOnenoteNotebookGetNotebookFromWebUrl", + "oracle": "Get-MgUserOnenoteNotebookFromWebUrl" + }, + "replacementNoun": "UserOnenoteNotebookFromWebUrl", + "replacementVerb": "Get" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/onenote/pages/{}/copytosection", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserOnenotePageCopyToSection", + "oracle": "Copy-MgUserOnenotePageToSection" + }, + "replacementNoun": "UserOnenotePageToSection", + "replacementVerb": "Copy" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/onenote/pages/{}/onenotepatchcontent", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserOnenotePageOnenotePatchContent", + "oracle": "Update-MgUserOnenotePage" + }, + "replacementNoun": "UserOnenotePage", + "replacementVerb": "Update" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/onenote/sectiongroups/{}/sections/{}/copytonotebook", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserOnenoteSectionGroupSectionCopyToNotebook", + "oracle": "Copy-MgUserOnenoteSectionGroupSectionToNotebook" + }, + "replacementNoun": "UserOnenoteSectionGroupSectionToNotebook", + "replacementVerb": "Copy" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/onenote/sectiongroups/{}/sections/{}/copytosectiongroup", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserOnenoteSectionGroupSectionCopyToSectionGroup", + "oracle": "Copy-MgUserOnenoteSectionGroupSectionToSectionGroup" + }, + "replacementNoun": "UserOnenoteSectionGroupSectionToSectionGroup", + "replacementVerb": "Copy" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/onenote/sectiongroups/{}/sections/{}/pages/{}/copytosection", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserOnenoteSectionGroupSectionPageCopyToSection", + "oracle": "Copy-MgUserOnenoteSectionGroupSectionPageToSection" + }, + "replacementNoun": "UserOnenoteSectionGroupSectionPageToSection", + "replacementVerb": "Copy" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/onenote/sectiongroups/{}/sections/{}/pages/{}/onenotepatchcontent", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserOnenoteSectionGroupSectionPageOnenotePatchContent", + "oracle": "Update-MgUserOnenoteSectionGroupSectionPage" + }, + "replacementNoun": "UserOnenoteSectionGroupSectionPage", + "replacementVerb": "Update" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/onenote/sections/{}/copytonotebook", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserOnenoteSectionCopyToNotebook", + "oracle": "Copy-MgUserOnenoteSectionToNotebook" + }, + "replacementNoun": "UserOnenoteSectionToNotebook", + "replacementVerb": "Copy" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/onenote/sections/{}/copytosectiongroup", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserOnenoteSectionCopyToSectionGroup", + "oracle": "Copy-MgUserOnenoteSectionToSectionGroup" + }, + "replacementNoun": "UserOnenoteSectionToSectionGroup", + "replacementVerb": "Copy" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/onenote/sections/{}/pages/{}/copytosection", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserOnenoteSectionPageCopyToSection", + "oracle": "Copy-MgUserOnenoteSectionPageToSection" + }, + "replacementNoun": "UserOnenoteSectionPageToSection", + "replacementVerb": "Copy" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/onenote/sections/{}/pages/{}/onenotepatchcontent", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserOnenoteSectionPageOnenotePatchContent", + "oracle": "Update-MgUserOnenoteSectionPage" + }, + "replacementNoun": "UserOnenoteSectionPage", + "replacementVerb": "Update" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/onlinemeetings/{}/sendvirtualappointmentremindersms", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserOnlineMeetingSendVirtualAppointmentReminderSms", + "oracle": "Send-MgUserOnlineMeetingVirtualAppointmentReminderSm" + }, + "replacementNoun": "UserOnlineMeetingVirtualAppointmentReminderSm", + "replacementVerb": "Send" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/onlinemeetings/{}/sendvirtualappointmentsms", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserOnlineMeetingSendVirtualAppointmentSms", + "oracle": "Send-MgUserOnlineMeetingVirtualAppointmentSm" + }, + "replacementNoun": "UserOnlineMeetingVirtualAppointmentSm", + "replacementVerb": "Send" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/presence/clearautomaticlocation", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserPresenceClearAutomaticLocation", + "oracle": "Clear-MgUserPresenceAutomaticLocation" + }, + "replacementNoun": "UserPresenceAutomaticLocation", + "replacementVerb": "Clear" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/presence/clearlocation", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserPresenceClearLocation", + "oracle": "Clear-MgUserPresenceLocation" + }, + "replacementNoun": "UserPresenceLocation", + "replacementVerb": "Clear" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/presence/clearpresence", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserPresenceClearPresence", + "oracle": "Clear-MgUserPresence" + }, + "replacementNoun": "UserPresence", + "replacementVerb": "Clear" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/presence/clearuserpreferredpresence", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserPresenceClearUserPreferredPresence", + "oracle": "Clear-MgUserPresenceUserPreferredPresence" + }, + "replacementNoun": "UserPresenceUserPreferredPresence", + "replacementVerb": "Clear" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/presence/setautomaticlocation", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserPresenceSetAutomaticLocation", + "oracle": "Set-MgUserPresenceAutomaticLocation" + }, + "replacementNoun": "UserPresenceAutomaticLocation", + "replacementVerb": "Set" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/presence/setmanuallocation", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserPresenceSetManualLocation", + "oracle": "Set-MgUserPresenceManualLocation" + }, + "replacementNoun": "UserPresenceManualLocation", + "replacementVerb": "Set" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/presence/setpresence", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserPresenceSetPresence", + "oracle": "Set-MgUserPresence" + }, + "replacementNoun": "UserPresence", + "replacementVerb": "Set" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/presence/setstatusmessage", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserPresenceSetStatusMessage", + "oracle": "Set-MgUserPresenceStatusMessage" + }, + "replacementNoun": "UserPresenceStatusMessage", + "replacementVerb": "Set" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/presence/setuserpreferredpresence", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserPresenceSetUserPreferredPresence", + "oracle": "Set-MgUserPresenceUserPreferredPresence" + }, + "replacementNoun": "UserPresenceUserPreferredPresence", + "replacementVerb": "Set" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/removealldevicesfrommanagement", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserRemoveAllDevicesFromManagement", + "oracle": "Remove-MgAllUserDeviceFromManagement" + }, + "replacementNoun": "AllUserDeviceFromManagement", + "replacementVerb": "Remove" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/reprocesslicenseassignment", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserReprocessLicenseAssignment", + "oracle": "Invoke-MgLicenseUser" + }, + "replacementNoun": "LicenseUser" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/retryserviceprovisioning", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserRetryServiceProvisioning", + "oracle": "Invoke-MgRetryUserServiceProvisioning" + }, + "replacementNoun": "RetryUserServiceProvisioning" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/revokesigninsessions", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserRevokeSignInSessions", + "oracle": "Revoke-MgUserSignInSession" + }, + "replacementNoun": "UserSignInSession", + "replacementVerb": "Revoke" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/sendmail", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserSendMail", + "oracle": "Send-MgUserMail" + }, + "replacementNoun": "UserMail", + "replacementVerb": "Send" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/settings/workhoursandlocations/occurrences/setcurrentlocation", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserSettingWorkHourAndLocationOccurrenceSetCurrentLocation", + "oracle": "Set-MgUserSettingWorkHourAndLocationOccurrenceCurrentLocation" + }, + "replacementNoun": "UserSettingWorkHourAndLocationOccurrenceCurrentLocation", + "replacementVerb": "Set" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/teamwork/deletetargetedmessage", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserTeamworkDeleteTargetedMessage", + "oracle": "Remove-MgUserTeamworkTargetedMessage" + }, + "replacementNoun": "UserTeamworkTargetedMessage", + "replacementVerb": "Remove" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/teamwork/sendactivitynotification", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserTeamworkSendActivityNotification", + "oracle": "Send-MgUserTeamworkActivityNotification" + }, + "replacementNoun": "UserTeamworkActivityNotification", + "replacementVerb": "Send" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/todo/lists/{}/tasks/{}/attachments/createuploadsession", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserTodoListTaskAttachmentCreateUploadSession", + "oracle": "New-MgUserTodoListTaskAttachmentUploadSession" + }, + "replacementNoun": "UserTodoListTaskAttachmentUploadSession", + "replacementVerb": "New" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/translateexchangeids", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserTranslateExchangeIds", + "oracle": "Invoke-MgTranslateUserExchangeId" + }, + "replacementNoun": "TranslateUserExchangeId" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/getbyids", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserGetByIds", + "oracle": "Get-MgUserById" + }, + "replacementNoun": "UserById", + "replacementVerb": "Get" + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/validateproperties", + "action": "rename", + "evidence": { + "ourCommand": "Invoke-MgUserValidateProperties", + "oracle": "Test-MgUserProperty" + }, + "replacementNoun": "UserProperty", + "replacementVerb": "Test" + }, + { + "apiVersion": "v1.0", + "method": "PUT", + "uri": "/identity/b2xuserflows/{}/apiconnectorconfiguration/postattributecollection/$ref", + "action": "rename", + "evidence": { + "ourCommand": "Set-MgIdentityB2xUserFlowApiConnectorConfigurationPostAttributeCollectionByRef", + "oracle": "Set-MgIdentityB2XUserFlowPostAttributeCollectionByRef" + }, + "replacementNoun": "IdentityB2XUserFlowPostAttributeCollectionByRef" + }, + { + "apiVersion": "v1.0", + "method": "PUT", + "uri": "/identity/b2xuserflows/{}/apiconnectorconfiguration/postfederationsignup/$ref", + "action": "rename", + "evidence": { + "ourCommand": "Set-MgIdentityB2xUserFlowApiConnectorConfigurationPostFederationSignupByRef", + "oracle": "Set-MgIdentityB2XUserFlowPostFederationSignupByRef" + }, + "replacementNoun": "IdentityB2XUserFlowPostFederationSignupByRef" + }, + { + "apiVersion": "v1.0", + "method": "PUT", + "uri": "/identitygovernance/entitlementmanagement/assignmentpolicies/{}", + "action": "rename", + "evidence": { + "ourCommand": "Set-MgIdentityGovernanceEntitlementManagementAssignmentPolicy", + "oracle": "Set-MgEntitlementManagementAssignmentPolicy" + }, + "replacementNoun": "EntitlementManagementAssignmentPolicy" + }, + { + "apiVersion": "v1.0", + "method": "PUT", + "uri": "/identitygovernance/entitlementmanagement/controlconfigurations/{}", + "action": "rename", + "evidence": { + "ourCommand": "Set-MgIdentityGovernanceEntitlementManagementControlConfiguration", + "oracle": "Set-MgEntitlementManagementControlConfiguration" + }, + "replacementNoun": "EntitlementManagementControlConfiguration" + } +] \ No newline at end of file diff --git a/tools/WrapperGenerator/data/parity-resolution-ledger.v1.0.csv b/tools/WrapperGenerator/data/parity-resolution-ledger.v1.0.csv new file mode 100644 index 00000000000..540dfcd1d14 --- /dev/null +++ b/tools/WrapperGenerator/data/parity-resolution-ledger.v1.0.csv @@ -0,0 +1,10929 @@ +"Method","Uri","Action","Noun","OurCommand","Evidence" +"DELETE","/admin/configurationManagement","keep",,"Remove-MgAdminConfigurationManagement","Remove-MgAdminConfigurationManagement" +"DELETE","/admin/configurationManagement/configurationDrifts/{param}","keep",,"Remove-MgAdminConfigurationManagementConfigurationDrift","Remove-MgAdminConfigurationManagementConfigurationDrift" +"DELETE","/admin/configurationManagement/configurationMonitoringResults/{param}","keep",,"Remove-MgAdminConfigurationManagementConfigurationMonitoringResult","Remove-MgAdminConfigurationManagementConfigurationMonitoringResult" +"DELETE","/admin/configurationManagement/configurationMonitors/{param}","keep",,"Remove-MgAdminConfigurationManagementConfigurationMonitor","Remove-MgAdminConfigurationManagementConfigurationMonitor" +"DELETE","/admin/configurationManagement/configurationMonitors/{param}/baseline","keep",,"Remove-MgAdminConfigurationManagementConfigurationMonitorBaseline","Remove-MgAdminConfigurationManagementConfigurationMonitorBaseline" +"DELETE","/admin/configurationManagement/configurationSnapshotJobs/{param}","keep",,"Remove-MgAdminConfigurationManagementConfigurationSnapshotJob","Remove-MgAdminConfigurationManagementConfigurationSnapshotJob" +"DELETE","/admin/configurationManagement/configurationSnapshots/{param}","keep",,"Remove-MgAdminConfigurationManagementConfigurationSnapshot","Remove-MgAdminConfigurationManagementConfigurationSnapshot" +"DELETE","/admin/edge","keep",,"Remove-MgAdminEdge","Remove-MgAdminEdge" +"DELETE","/admin/edge/internetExplorerMode","keep",,"Remove-MgAdminEdgeInternetExplorerMode","Remove-MgAdminEdgeInternetExplorerMode" +"DELETE","/admin/edge/internetExplorerMode/siteLists/{param}","keep",,"Remove-MgAdminEdgeInternetExplorerModeSiteList","Remove-MgAdminEdgeInternetExplorerModeSiteList" +"DELETE","/admin/edge/internetExplorerMode/siteLists/{param}/sharedCookies/{param}","keep",,"Remove-MgAdminEdgeInternetExplorerModeSiteListSharedCookie","Remove-MgAdminEdgeInternetExplorerModeSiteListSharedCookie" +"DELETE","/admin/edge/internetExplorerMode/siteLists/{param}/sites/{param}","keep",,"Remove-MgAdminEdgeInternetExplorerModeSiteListSite","Remove-MgAdminEdgeInternetExplorerModeSiteListSite" +"DELETE","/admin/people/itemInsights","keep",,"Remove-MgAdminPeopleItemInsight","Remove-MgAdminPeopleItemInsight" +"DELETE","/admin/people/profileCardProperties/{param}","keep",,"Remove-MgAdminPeopleProfileCardProperty","Remove-MgAdminPeopleProfileCardProperty" +"DELETE","/admin/people/profilePropertySettings/{param}","keep",,"Remove-MgAdminPeopleProfilePropertySetting","Remove-MgAdminPeopleProfilePropertySetting" +"DELETE","/admin/people/profileSources/{param}","keep",,"Remove-MgAdminPeopleProfileSource","Remove-MgAdminPeopleProfileSource" +"DELETE","/admin/reportSettings","keep",,"Remove-MgAdminReportSetting","Remove-MgAdminReportSetting" +"DELETE","/admin/serviceAnnouncement","suppress",,"Remove-MgAdminServiceAnnouncement","no oracle row for DELETE /admin/serviceAnnouncement and 'Remove-MgAdminServiceAnnouncement' unshipped" +"DELETE","/admin/serviceAnnouncement/healthOverviews/{param}","suppress",,"Remove-MgAdminServiceAnnouncementHealthOverview","no oracle row for DELETE /admin/serviceAnnouncement/healthOverviews/{param} and 'Remove-MgAdminServiceAnnouncementHealthOverview' unshipped" +"DELETE","/admin/serviceAnnouncement/healthOverviews/{param}/issues/{param}","suppress",,"Remove-MgAdminServiceAnnouncementHealthOverviewIssue","no oracle row for DELETE /admin/serviceAnnouncement/healthOverviews/{param}/issues/{param} and 'Remove-MgAdminServiceAnnouncementHealthOverviewIssue' unshipped" +"DELETE","/admin/serviceAnnouncement/issues/{param}","suppress",,"Remove-MgAdminServiceAnnouncementIssue","no oracle row for DELETE /admin/serviceAnnouncement/issues/{param} and 'Remove-MgAdminServiceAnnouncementIssue' unshipped" +"DELETE","/admin/serviceAnnouncement/messages/{param}","suppress",,"Remove-MgAdminServiceAnnouncementMessage","no oracle row for DELETE /admin/serviceAnnouncement/messages/{param} and 'Remove-MgAdminServiceAnnouncementMessage' unshipped" +"DELETE","/admin/serviceAnnouncement/messages/{param}/attachments/{param}","suppress",,"Remove-MgAdminServiceAnnouncementMessageAttachment","no oracle row for DELETE /admin/serviceAnnouncement/messages/{param}/attachments/{param} and 'Remove-MgAdminServiceAnnouncementMessageAttachment' unshipped" +"DELETE","/admin/serviceAnnouncement/messages/{param}/attachments/{param}/$value","suppress",,"Remove-MgAdminServiceAnnouncementMessageAttachmentContent","no oracle row for DELETE /admin/serviceAnnouncement/messages/{param}/attachments/{param}/$value and 'Remove-MgAdminServiceAnnouncementMessageAttachmentContent' unshipped" +"DELETE","/admin/serviceAnnouncement/messages/{param}/attachmentsArchive","suppress",,"Remove-MgAdminServiceAnnouncementMessageAttachmentArchive","no oracle row for DELETE /admin/serviceAnnouncement/messages/{param}/attachmentsArchive and 'Remove-MgAdminServiceAnnouncementMessageAttachmentArchive' unshipped" +"DELETE","/admin/sharepoint","keep",,"Remove-MgAdminSharepoint","Remove-MgAdminSharepoint" +"DELETE","/admin/sharepoint/settings","keep",,"Remove-MgAdminSharepointSetting","Remove-MgAdminSharepointSetting" +"DELETE","/agreements/{param}","keep",,"Remove-MgAgreement","Remove-MgAgreement" +"DELETE","/agreements/{param}/acceptances/{param}","keep",,"Remove-MgAgreementAcceptance","Remove-MgAgreementAcceptance" +"DELETE","/agreements/{param}/file","keep",,"Remove-MgAgreementFile","Remove-MgAgreementFile" +"DELETE","/agreements/{param}/file/localizations/{param}","keep",,"Remove-MgAgreementFileLocalization","Remove-MgAgreementFileLocalization" +"DELETE","/agreements/{param}/file/localizations/{param}/versions/{param}","keep",,"Remove-MgAgreementFileLocalizationVersion","Remove-MgAgreementFileLocalizationVersion" +"DELETE","/agreements/{param}/files/{param}/versions/{param}","keep",,"Remove-MgAgreementFileVersion","Remove-MgAgreementFileVersion" +"DELETE","/appCatalogs/teamsApps/{param}","keep",,"Remove-MgAppCatalogTeamApp","Remove-MgAppCatalogTeamApp" +"DELETE","/appCatalogs/teamsApps/{param}/appDefinitions/{param}","keep",,"Remove-MgAppCatalogTeamAppDefinition","Remove-MgAppCatalogTeamAppDefinition" +"DELETE","/appCatalogs/teamsApps/{param}/appDefinitions/{param}/bot","keep",,"Remove-MgAppCatalogTeamAppDefinitionBot","Remove-MgAppCatalogTeamAppDefinitionBot" +"DELETE","/applications/{param}","keep",,"Remove-MgApplication","Remove-MgApplication" +"DELETE","/applications/{param}/appManagementPolicies/{param}/$ref","rename","ApplicationAppManagementPolicyAppManagementPolicyByRef","Remove-MgApplicationAppManagementPolicyByRef","Remove-MgApplicationAppManagementPolicyAppManagementPolicyByRef" +"DELETE","/applications/{param}/extensionProperties/{param}","keep",,"Remove-MgApplicationExtensionProperty","Remove-MgApplicationExtensionProperty" +"DELETE","/applications/{param}/federatedIdentityCredentials/{param}","keep",,"Remove-MgApplicationFederatedIdentityCredential","Remove-MgApplicationFederatedIdentityCredential" +"DELETE","/applications/{param}/logo","keep",,"Remove-MgApplicationLogo","Remove-MgApplicationLogo" +"DELETE","/applications/{param}/owners/{param}/$ref","rename","ApplicationOwnerDirectoryObjectByRef","Remove-MgApplicationOwnerByRef","Remove-MgApplicationOwnerDirectoryObjectByRef" +"DELETE","/applications/{param}/synchronization","keep",,"Remove-MgApplicationSynchronization","Remove-MgApplicationSynchronization" +"DELETE","/applications/{param}/synchronization/jobs/{param}","keep",,"Remove-MgApplicationSynchronizationJob","Remove-MgApplicationSynchronizationJob" +"DELETE","/applications/{param}/synchronization/jobs/{param}/bulkUpload","keep",,"Remove-MgApplicationSynchronizationJobBulkUpload","Remove-MgApplicationSynchronizationJobBulkUpload" +"DELETE","/applications/{param}/synchronization/jobs/{param}/bulkUpload/$value","keep",,"Remove-MgApplicationSynchronizationJobBulkUploadContent","Remove-MgApplicationSynchronizationJobBulkUploadContent" +"DELETE","/applications/{param}/synchronization/jobs/{param}/schema","keep",,"Remove-MgApplicationSynchronizationJobSchema","Remove-MgApplicationSynchronizationJobSchema" +"DELETE","/applications/{param}/synchronization/jobs/{param}/schema/directories/{param}","keep",,"Remove-MgApplicationSynchronizationJobSchemaDirectory","Remove-MgApplicationSynchronizationJobSchemaDirectory" +"DELETE","/applications/{param}/synchronization/templates/{param}","keep",,"Remove-MgApplicationSynchronizationTemplate","Remove-MgApplicationSynchronizationTemplate" +"DELETE","/applications/{param}/synchronization/templates/{param}/schema","keep",,"Remove-MgApplicationSynchronizationTemplateSchema","Remove-MgApplicationSynchronizationTemplateSchema" +"DELETE","/applications/{param}/synchronization/templates/{param}/schema/directories/{param}","keep",,"Remove-MgApplicationSynchronizationTemplateSchemaDirectory","Remove-MgApplicationSynchronizationTemplateSchemaDirectory" +"DELETE","/applications/{param}/tokenIssuancePolicies/{param}/$ref","rename","ApplicationTokenIssuancePolicyTokenIssuancePolicyByRef","Remove-MgApplicationTokenIssuancePolicyByRef","Remove-MgApplicationTokenIssuancePolicyTokenIssuancePolicyByRef" +"DELETE","/applications/{param}/tokenLifetimePolicies/{param}/$ref","rename","ApplicationTokenLifetimePolicyTokenLifetimePolicyByRef","Remove-MgApplicationTokenLifetimePolicyByRef","Remove-MgApplicationTokenLifetimePolicyTokenLifetimePolicyByRef" +"DELETE","/auditLogs/directoryAudits/{param}","suppress",,"Remove-MgAuditLogDirectoryAudit","no oracle row for DELETE /auditLogs/directoryAudits/{param} and 'Remove-MgAuditLogDirectoryAudit' unshipped" +"DELETE","/auditLogs/provisioning/{param}","suppress",,"Remove-MgAuditLogProvisioning","no oracle row for DELETE /auditLogs/provisioning/{param} and 'Remove-MgAuditLogProvisioning' unshipped" +"DELETE","/auditLogs/signIns/{param}","suppress",,"Remove-MgAuditLogSignIn","no oracle row for DELETE /auditLogs/signIns/{param} and 'Remove-MgAuditLogSignIn' unshipped" +"DELETE","/chats/{param}","keep",,"Remove-MgChat","Remove-MgChat" +"DELETE","/chats/{param}/installedApps/{param}","keep",,"Remove-MgChatInstalledApp","Remove-MgChatInstalledApp" +"DELETE","/chats/{param}/lastMessagePreview","keep",,"Remove-MgChatLastMessagePreview","Remove-MgChatLastMessagePreview" +"DELETE","/chats/{param}/members/{param}","keep",,"Remove-MgChatMember","Remove-MgChatMember" +"DELETE","/chats/{param}/messages/{param}","suppress",,"Remove-MgChatMessage","no oracle row for DELETE /chats/{param}/messages/{param} and 'Remove-MgChatMessage' unshipped" +"DELETE","/chats/{param}/messages/{param}/hostedContents/{param}","suppress",,"Remove-MgChatMessageHostedContent","no oracle row for DELETE /chats/{param}/messages/{param}/hostedContents/{param} and 'Remove-MgChatMessageHostedContent' unshipped" +"DELETE","/chats/{param}/messages/{param}/hostedContents/{param}/$value","suppress",,"Remove-MgChatMessageHostedContentContent","no oracle row for DELETE /chats/{param}/messages/{param}/hostedContents/{param}/$value and 'Remove-MgChatMessageHostedContentContent' unshipped" +"DELETE","/chats/{param}/messages/{param}/replies/{param}","suppress",,"Remove-MgChatMessageReply","no oracle row for DELETE /chats/{param}/messages/{param}/replies/{param} and 'Remove-MgChatMessageReply' unshipped" +"DELETE","/chats/{param}/messages/{param}/replies/{param}/hostedContents/{param}","keep",,"Remove-MgChatMessageReplyHostedContent","Remove-MgChatMessageReplyHostedContent" +"DELETE","/chats/{param}/messages/{param}/replies/{param}/hostedContents/{param}/$value","suppress",,"Remove-MgChatMessageReplyHostedContentContent","no oracle row for DELETE /chats/{param}/messages/{param}/replies/{param}/hostedContents/{param}/$value and 'Remove-MgChatMessageReplyHostedContentContent' unshipped" +"DELETE","/chats/{param}/permissionGrants/{param}","keep",,"Remove-MgChatPermissionGrant","Remove-MgChatPermissionGrant" +"DELETE","/chats/{param}/pinnedMessages/{param}","keep",,"Remove-MgChatPinnedMessage","Remove-MgChatPinnedMessage" +"DELETE","/chats/{param}/tabs/{param}","keep",,"Remove-MgChatTab","Remove-MgChatTab" +"DELETE","/chats/{param}/targetedMessages/{param}","keep",,"Remove-MgChatTargetedMessage","Remove-MgChatTargetedMessage" +"DELETE","/chats/{param}/targetedMessages/{param}/hostedContents/{param}","keep",,"Remove-MgChatTargetedMessageHostedContent","Remove-MgChatTargetedMessageHostedContent" +"DELETE","/chats/{param}/targetedMessages/{param}/hostedContents/{param}/$value","suppress",,"Remove-MgChatTargetedMessageHostedContentContent","no oracle row for DELETE /chats/{param}/targetedMessages/{param}/hostedContents/{param}/$value and 'Remove-MgChatTargetedMessageHostedContentContent' unshipped" +"DELETE","/chats/{param}/targetedMessages/{param}/replies/{param}","keep",,"Remove-MgChatTargetedMessageReply","Remove-MgChatTargetedMessageReply" +"DELETE","/chats/{param}/targetedMessages/{param}/replies/{param}/hostedContents/{param}","keep",,"Remove-MgChatTargetedMessageReplyHostedContent","Remove-MgChatTargetedMessageReplyHostedContent" +"DELETE","/chats/{param}/targetedMessages/{param}/replies/{param}/hostedContents/{param}/$value","suppress",,"Remove-MgChatTargetedMessageReplyHostedContentContent","no oracle row for DELETE /chats/{param}/targetedMessages/{param}/replies/{param}/hostedContents/{param}/$value and 'Remove-MgChatTargetedMessageReplyHostedContentContent' unshipped" +"DELETE","/communications/adhocCalls/{param}","keep",,"Remove-MgCommunicationAdhocCall","Remove-MgCommunicationAdhocCall" +"DELETE","/communications/adhocCalls/{param}/recordings/{param}","keep",,"Remove-MgCommunicationAdhocCallRecording","Remove-MgCommunicationAdhocCallRecording" +"DELETE","/communications/adhocCalls/{param}/recordings/{param}/$value","keep",,"Remove-MgCommunicationAdhocCallRecordingContent","Remove-MgCommunicationAdhocCallRecordingContent" +"DELETE","/communications/adhocCalls/{param}/transcripts/{param}","keep",,"Remove-MgCommunicationAdhocCallTranscript","Remove-MgCommunicationAdhocCallTranscript" +"DELETE","/communications/adhocCalls/{param}/transcripts/{param}/$value","keep",,"Remove-MgCommunicationAdhocCallTranscriptContent","Remove-MgCommunicationAdhocCallTranscriptContent" +"DELETE","/communications/adhocCalls/{param}/transcripts/{param}/metadataContent","keep",,"Remove-MgCommunicationAdhocCallTranscriptMetadataContent","Remove-MgCommunicationAdhocCallTranscriptMetadataContent" +"DELETE","/communications/callRecords/{param}","suppress",,"Remove-MgCommunicationCallRecord","no oracle row for DELETE /communications/callRecords/{param} and 'Remove-MgCommunicationCallRecord' unshipped" +"DELETE","/communications/callRecords/{param}/sessions/{param}","keep",,"Remove-MgCommunicationCallRecordSession","Remove-MgCommunicationCallRecordSession" +"DELETE","/communications/callRecords/{param}/sessions/{param}/segments/{param}","suppress",,"Remove-MgCommunicationCallRecordSessionSegment","no oracle row for DELETE /communications/callRecords/{param}/sessions/{param}/segments/{param} and 'Remove-MgCommunicationCallRecordSessionSegment' unshipped" +"DELETE","/communications/calls/{param}","keep",,"Remove-MgCommunicationCall","Remove-MgCommunicationCall" +"DELETE","/communications/calls/{param}/audioRoutingGroups/{param}","keep",,"Remove-MgCommunicationCallAudioRoutingGroup","Remove-MgCommunicationCallAudioRoutingGroup" +"DELETE","/communications/calls/{param}/contentSharingSessions/{param}","keep",,"Remove-MgCommunicationCallContentSharingSession","Remove-MgCommunicationCallContentSharingSession" +"DELETE","/communications/calls/{param}/operations/{param}","keep",,"Remove-MgCommunicationCallOperation","Remove-MgCommunicationCallOperation" +"DELETE","/communications/calls/{param}/participants/{param}","keep",,"Remove-MgCommunicationCallParticipant","Remove-MgCommunicationCallParticipant" +"DELETE","/communications/onlineMeetingConversations/{param}","keep",,"Remove-MgCommunicationOnlineMeetingConversation","Remove-MgCommunicationOnlineMeetingConversation" +"DELETE","/communications/onlineMeetingConversations/{param}/messages/{param}","keep",,"Remove-MgCommunicationOnlineMeetingConversationMessage","Remove-MgCommunicationOnlineMeetingConversationMessage" +"DELETE","/communications/onlineMeetingConversations/{param}/messages/{param}/reactions/{param}","keep",,"Remove-MgCommunicationOnlineMeetingConversationMessageReaction","Remove-MgCommunicationOnlineMeetingConversationMessageReaction" +"DELETE","/communications/onlineMeetingConversations/{param}/messages/{param}/replies/{param}","keep",,"Remove-MgCommunicationOnlineMeetingConversationMessageReply","Remove-MgCommunicationOnlineMeetingConversationMessageReply" +"DELETE","/communications/onlineMeetingConversations/{param}/messages/{param}/replies/{param}/reactions/{param}","keep",,"Remove-MgCommunicationOnlineMeetingConversationMessageReplyReaction","Remove-MgCommunicationOnlineMeetingConversationMessageReplyReaction" +"DELETE","/communications/onlineMeetingConversations/{param}/onlineMeeting/attendeeReport","keep",,"Remove-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport","Remove-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport" +"DELETE","/communications/onlineMeetingConversations/{param}/starter","keep",,"Remove-MgCommunicationOnlineMeetingConversationStarter","Remove-MgCommunicationOnlineMeetingConversationStarter" +"DELETE","/communications/onlineMeetingConversations/{param}/starter/reactions/{param}","keep",,"Remove-MgCommunicationOnlineMeetingConversationStarterReaction","Remove-MgCommunicationOnlineMeetingConversationStarterReaction" +"DELETE","/communications/onlineMeetingConversations/{param}/starter/replies/{param}","keep",,"Remove-MgCommunicationOnlineMeetingConversationStarterReply","Remove-MgCommunicationOnlineMeetingConversationStarterReply" +"DELETE","/communications/onlineMeetingConversations/{param}/starter/replies/{param}/reactions/{param}","keep",,"Remove-MgCommunicationOnlineMeetingConversationStarterReplyReaction","Remove-MgCommunicationOnlineMeetingConversationStarterReplyReaction" +"DELETE","/communications/onlineMeetings/{param}","keep",,"Remove-MgCommunicationOnlineMeeting","Remove-MgCommunicationOnlineMeeting" +"DELETE","/communications/onlineMeetings/{param}/attendanceReports/{param}","keep",,"Remove-MgCommunicationOnlineMeetingAttendanceReport","Remove-MgCommunicationOnlineMeetingAttendanceReport" +"DELETE","/communications/onlineMeetings/{param}/attendanceReports/{param}/attendanceRecords/{param}","keep",,"Remove-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord","Remove-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord" +"DELETE","/communications/onlineMeetings/{param}/attendeeReport","keep",,"Remove-MgCommunicationOnlineMeetingAttendeeReport","Remove-MgCommunicationOnlineMeetingAttendeeReport" +"DELETE","/communications/onlineMeetings/{param}/recordings/{param}","keep",,"Remove-MgCommunicationOnlineMeetingRecording","Remove-MgCommunicationOnlineMeetingRecording" +"DELETE","/communications/onlineMeetings/{param}/recordings/{param}/$value","keep",,"Remove-MgCommunicationOnlineMeetingRecordingContent","Remove-MgCommunicationOnlineMeetingRecordingContent" +"DELETE","/communications/onlineMeetings/{param}/transcripts/{param}","keep",,"Remove-MgCommunicationOnlineMeetingTranscript","Remove-MgCommunicationOnlineMeetingTranscript" +"DELETE","/communications/onlineMeetings/{param}/transcripts/{param}/$value","keep",,"Remove-MgCommunicationOnlineMeetingTranscriptContent","Remove-MgCommunicationOnlineMeetingTranscriptContent" +"DELETE","/communications/onlineMeetings/{param}/transcripts/{param}/metadataContent","keep",,"Remove-MgCommunicationOnlineMeetingTranscriptMetadataContent","Remove-MgCommunicationOnlineMeetingTranscriptMetadataContent" +"DELETE","/communications/presences/{param}","keep",,"Remove-MgCommunicationPresence","Remove-MgCommunicationPresence" +"DELETE","/contacts/{param}","keep",,"Remove-MgContact","Remove-MgContact" +"DELETE","/contacts/{param}/onPremisesSyncBehavior","keep",,"Remove-MgContactOnPremiseSyncBehavior","Remove-MgContactOnPremiseSyncBehavior" +"DELETE","/contracts/{param}","keep",,"Remove-MgContract","Remove-MgContract" +"DELETE","/dataPolicyOperations/{param}","keep",,"Remove-MgDataPolicyOperation","Remove-MgDataPolicyOperation" +"DELETE","/deviceAppManagement/androidManagedAppProtections/{param}","keep",,"Remove-MgDeviceAppManagementAndroidManagedAppProtection","Remove-MgDeviceAppManagementAndroidManagedAppProtection" +"DELETE","/deviceAppManagement/androidManagedAppProtections/{param}/apps/{param}","keep",,"Remove-MgDeviceAppManagementAndroidManagedAppProtectionApp","Remove-MgDeviceAppManagementAndroidManagedAppProtectionApp" +"DELETE","/deviceAppManagement/androidManagedAppProtections/{param}/assignments/{param}","keep",,"Remove-MgDeviceAppManagementAndroidManagedAppProtectionAssignment","Remove-MgDeviceAppManagementAndroidManagedAppProtectionAssignment" +"DELETE","/deviceAppManagement/androidManagedAppProtections/{param}/deploymentSummary","keep",,"Remove-MgDeviceAppManagementAndroidManagedAppProtectionDeploymentSummary","Remove-MgDeviceAppManagementAndroidManagedAppProtectionDeploymentSummary" +"DELETE","/deviceAppManagement/defaultManagedAppProtections/{param}","keep",,"Remove-MgDeviceAppManagementDefaultManagedAppProtection","Remove-MgDeviceAppManagementDefaultManagedAppProtection" +"DELETE","/deviceAppManagement/defaultManagedAppProtections/{param}/apps/{param}","keep",,"Remove-MgDeviceAppManagementDefaultManagedAppProtectionApp","Remove-MgDeviceAppManagementDefaultManagedAppProtectionApp" +"DELETE","/deviceAppManagement/defaultManagedAppProtections/{param}/deploymentSummary","keep",,"Remove-MgDeviceAppManagementDefaultManagedAppProtectionDeploymentSummary","Remove-MgDeviceAppManagementDefaultManagedAppProtectionDeploymentSummary" +"DELETE","/deviceAppManagement/iosManagedAppProtections/{param}","rename","DeviceAppManagementiOSManagedAppProtection","Remove-MgDeviceAppManagementIosManagedAppProtection","Remove-MgDeviceAppManagementiOSManagedAppProtection" +"DELETE","/deviceAppManagement/iosManagedAppProtections/{param}/apps/{param}","rename","DeviceAppManagementiOSManagedAppProtectionApp","Remove-MgDeviceAppManagementIosManagedAppProtectionApp","Remove-MgDeviceAppManagementiOSManagedAppProtectionApp" +"DELETE","/deviceAppManagement/iosManagedAppProtections/{param}/assignments/{param}","rename","DeviceAppManagementiOSManagedAppProtectionAssignment","Remove-MgDeviceAppManagementIosManagedAppProtectionAssignment","Remove-MgDeviceAppManagementiOSManagedAppProtectionAssignment" +"DELETE","/deviceAppManagement/iosManagedAppProtections/{param}/deploymentSummary","rename","DeviceAppManagementiOSManagedAppProtectionDeploymentSummary","Remove-MgDeviceAppManagementIosManagedAppProtectionDeploymentSummary","Remove-MgDeviceAppManagementiOSManagedAppProtectionDeploymentSummary" +"DELETE","/deviceAppManagement/managedAppPolicies/{param}","keep",,"Remove-MgDeviceAppManagementManagedAppPolicy","Remove-MgDeviceAppManagementManagedAppPolicy" +"DELETE","/deviceAppManagement/managedAppRegistrations/{param}","keep",,"Remove-MgDeviceAppManagementManagedAppRegistration","Remove-MgDeviceAppManagementManagedAppRegistration" +"DELETE","/deviceAppManagement/managedAppRegistrations/{param}/appliedPolicies/{param}","keep",,"Remove-MgDeviceAppManagementManagedAppRegistrationAppliedPolicy","Remove-MgDeviceAppManagementManagedAppRegistrationAppliedPolicy" +"DELETE","/deviceAppManagement/managedAppRegistrations/{param}/intendedPolicies/{param}","keep",,"Remove-MgDeviceAppManagementManagedAppRegistrationIntendedPolicy","Remove-MgDeviceAppManagementManagedAppRegistrationIntendedPolicy" +"DELETE","/deviceAppManagement/managedAppRegistrations/{param}/operations/{param}","keep",,"Remove-MgDeviceAppManagementManagedAppRegistrationOperation","Remove-MgDeviceAppManagementManagedAppRegistrationOperation" +"DELETE","/deviceAppManagement/managedAppStatuses/{param}","keep",,"Remove-MgDeviceAppManagementManagedAppStatus","Remove-MgDeviceAppManagementManagedAppStatus" +"DELETE","/deviceAppManagement/managedEBooks/{param}","keep",,"Remove-MgDeviceAppManagementManagedEBook","Remove-MgDeviceAppManagementManagedEBook" +"DELETE","/deviceAppManagement/managedEBooks/{param}/assignments/{param}","keep",,"Remove-MgDeviceAppManagementManagedEBookAssignment","Remove-MgDeviceAppManagementManagedEBookAssignment" +"DELETE","/deviceAppManagement/managedEBooks/{param}/deviceStates/{param}","keep",,"Remove-MgDeviceAppManagementManagedEBookDeviceState","Remove-MgDeviceAppManagementManagedEBookDeviceState" +"DELETE","/deviceAppManagement/managedEBooks/{param}/installSummary","keep",,"Remove-MgDeviceAppManagementManagedEBookInstallSummary","Remove-MgDeviceAppManagementManagedEBookInstallSummary" +"DELETE","/deviceAppManagement/managedEBooks/{param}/userStateSummary/{param}","keep",,"Remove-MgDeviceAppManagementManagedEBookUserStateSummary","Remove-MgDeviceAppManagementManagedEBookUserStateSummary" +"DELETE","/deviceAppManagement/managedEBooks/{param}/userStateSummary/{param}/deviceStates/{param}","keep",,"Remove-MgDeviceAppManagementManagedEBookUserStateSummaryDeviceState","Remove-MgDeviceAppManagementManagedEBookUserStateSummaryDeviceState" +"DELETE","/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{param}","keep",,"Remove-MgDeviceAppManagementMdmWindowsInformationProtectionPolicy","Remove-MgDeviceAppManagementMdmWindowsInformationProtectionPolicy" +"DELETE","/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{param}/assignments/{param}","keep",,"Remove-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyAssignment","Remove-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyAssignment" +"DELETE","/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{param}/exemptAppLockerFiles/{param}","keep",,"Remove-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyExemptAppLockerFile","Remove-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyExemptAppLockerFile" +"DELETE","/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{param}/protectedAppLockerFiles/{param}","keep",,"Remove-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyProtectedAppLockerFile","Remove-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyProtectedAppLockerFile" +"DELETE","/deviceAppManagement/mobileAppCategories/{param}","keep",,"Remove-MgDeviceAppManagementMobileAppCategory","Remove-MgDeviceAppManagementMobileAppCategory" +"DELETE","/deviceAppManagement/mobileAppConfigurations/{param}","keep",,"Remove-MgDeviceAppManagementMobileAppConfiguration","Remove-MgDeviceAppManagementMobileAppConfiguration" +"DELETE","/deviceAppManagement/mobileAppConfigurations/{param}/assignments/{param}","keep",,"Remove-MgDeviceAppManagementMobileAppConfigurationAssignment","Remove-MgDeviceAppManagementMobileAppConfigurationAssignment" +"DELETE","/deviceAppManagement/mobileAppConfigurations/{param}/deviceStatuses/{param}","keep",,"Remove-MgDeviceAppManagementMobileAppConfigurationDeviceStatus","Remove-MgDeviceAppManagementMobileAppConfigurationDeviceStatus" +"DELETE","/deviceAppManagement/mobileAppConfigurations/{param}/deviceStatusSummary","keep",,"Remove-MgDeviceAppManagementMobileAppConfigurationDeviceStatusSummary","Remove-MgDeviceAppManagementMobileAppConfigurationDeviceStatusSummary" +"DELETE","/deviceAppManagement/mobileAppConfigurations/{param}/userStatuses/{param}","keep",,"Remove-MgDeviceAppManagementMobileAppConfigurationUserStatus","Remove-MgDeviceAppManagementMobileAppConfigurationUserStatus" +"DELETE","/deviceAppManagement/mobileAppConfigurations/{param}/userStatusSummary","keep",,"Remove-MgDeviceAppManagementMobileAppConfigurationUserStatusSummary","Remove-MgDeviceAppManagementMobileAppConfigurationUserStatusSummary" +"DELETE","/deviceAppManagement/mobileAppRelationships/{param}","keep",,"Remove-MgDeviceAppManagementMobileAppRelationship","Remove-MgDeviceAppManagementMobileAppRelationship" +"DELETE","/deviceAppManagement/mobileApps/{param}","keep",,"Remove-MgDeviceAppManagementMobileApp","Remove-MgDeviceAppManagementMobileApp" +"DELETE","/deviceAppManagement/mobileApps/{param}/assignments/{param}","keep",,"Remove-MgDeviceAppManagementMobileAppAssignment","Remove-MgDeviceAppManagementMobileAppAssignment" +"DELETE","/deviceAppManagement/targetedManagedAppConfigurations/{param}","keep",,"Remove-MgDeviceAppManagementTargetedManagedAppConfiguration","Remove-MgDeviceAppManagementTargetedManagedAppConfiguration" +"DELETE","/deviceAppManagement/targetedManagedAppConfigurations/{param}/apps/{param}","keep",,"Remove-MgDeviceAppManagementTargetedManagedAppConfigurationApp","Remove-MgDeviceAppManagementTargetedManagedAppConfigurationApp" +"DELETE","/deviceAppManagement/targetedManagedAppConfigurations/{param}/assignments/{param}","keep",,"Remove-MgDeviceAppManagementTargetedManagedAppConfigurationAssignment","Remove-MgDeviceAppManagementTargetedManagedAppConfigurationAssignment" +"DELETE","/deviceAppManagement/targetedManagedAppConfigurations/{param}/deploymentSummary","keep",,"Remove-MgDeviceAppManagementTargetedManagedAppConfigurationDeploymentSummary","Remove-MgDeviceAppManagementTargetedManagedAppConfigurationDeploymentSummary" +"DELETE","/deviceAppManagement/vppTokens/{param}","keep",,"Remove-MgDeviceAppManagementVppToken","Remove-MgDeviceAppManagementVppToken" +"DELETE","/deviceAppManagement/windowsInformationProtectionPolicies/{param}","keep",,"Remove-MgDeviceAppManagementWindowsInformationProtectionPolicy","Remove-MgDeviceAppManagementWindowsInformationProtectionPolicy" +"DELETE","/deviceAppManagement/windowsInformationProtectionPolicies/{param}/assignments/{param}","keep",,"Remove-MgDeviceAppManagementWindowsInformationProtectionPolicyAssignment","Remove-MgDeviceAppManagementWindowsInformationProtectionPolicyAssignment" +"DELETE","/deviceAppManagement/windowsInformationProtectionPolicies/{param}/exemptAppLockerFiles/{param}","keep",,"Remove-MgDeviceAppManagementWindowsInformationProtectionPolicyExemptAppLockerFile","Remove-MgDeviceAppManagementWindowsInformationProtectionPolicyExemptAppLockerFile" +"DELETE","/deviceAppManagement/windowsInformationProtectionPolicies/{param}/protectedAppLockerFiles/{param}","keep",,"Remove-MgDeviceAppManagementWindowsInformationProtectionPolicyProtectedAppLockerFile","Remove-MgDeviceAppManagementWindowsInformationProtectionPolicyProtectedAppLockerFile" +"DELETE","/deviceManagement/applePushNotificationCertificate","keep",,"Remove-MgDeviceManagementApplePushNotificationCertificate","Remove-MgDeviceManagementApplePushNotificationCertificate" +"DELETE","/deviceManagement/auditEvents/{param}","keep",,"Remove-MgDeviceManagementAuditEvent","Remove-MgDeviceManagementAuditEvent" +"DELETE","/deviceManagement/complianceManagementPartners/{param}","keep",,"Remove-MgDeviceManagementComplianceManagementPartner","Remove-MgDeviceManagementComplianceManagementPartner" +"DELETE","/deviceManagement/conditionalAccessSettings","keep",,"Remove-MgDeviceManagementConditionalAccessSetting","Remove-MgDeviceManagementConditionalAccessSetting" +"DELETE","/deviceManagement/detectedApps/{param}","keep",,"Remove-MgDeviceManagementDetectedApp","Remove-MgDeviceManagementDetectedApp" +"DELETE","/deviceManagement/deviceCategories/{param}","keep",,"Remove-MgDeviceManagementDeviceCategory","Remove-MgDeviceManagementDeviceCategory" +"DELETE","/deviceManagement/deviceCompliancePolicies/{param}","keep",,"Remove-MgDeviceManagementDeviceCompliancePolicy","Remove-MgDeviceManagementDeviceCompliancePolicy" +"DELETE","/deviceManagement/deviceCompliancePolicies/{param}/assignments/{param}","keep",,"Remove-MgDeviceManagementDeviceCompliancePolicyAssignment","Remove-MgDeviceManagementDeviceCompliancePolicyAssignment" +"DELETE","/deviceManagement/deviceCompliancePolicies/{param}/deviceSettingStateSummaries/{param}","keep",,"Remove-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary","Remove-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary" +"DELETE","/deviceManagement/deviceCompliancePolicies/{param}/deviceStatuses/{param}","keep",,"Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStatus","Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStatus" +"DELETE","/deviceManagement/deviceCompliancePolicies/{param}/deviceStatusOverview","keep",,"Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview","Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview" +"DELETE","/deviceManagement/deviceCompliancePolicies/{param}/scheduledActionsForRule/{param}","keep",,"Remove-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule","Remove-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule" +"DELETE","/deviceManagement/deviceCompliancePolicies/{param}/scheduledActionsForRule/{param}/scheduledActionConfigurations/{param}","keep",,"Remove-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration","Remove-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration" +"DELETE","/deviceManagement/deviceCompliancePolicies/{param}/userStatuses/{param}","keep",,"Remove-MgDeviceManagementDeviceCompliancePolicyUserStatus","Remove-MgDeviceManagementDeviceCompliancePolicyUserStatus" +"DELETE","/deviceManagement/deviceCompliancePolicies/{param}/userStatusOverview","keep",,"Remove-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview","Remove-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview" +"DELETE","/deviceManagement/deviceCompliancePolicyDeviceStateSummary","keep",,"Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary","Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary" +"DELETE","/deviceManagement/deviceCompliancePolicySettingStateSummaries/{param}","keep",,"Remove-MgDeviceManagementDeviceCompliancePolicySettingStateSummary","Remove-MgDeviceManagementDeviceCompliancePolicySettingStateSummary" +"DELETE","/deviceManagement/deviceCompliancePolicySettingStateSummaries/{param}/deviceComplianceSettingStates/{param}","keep",,"Remove-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState","Remove-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState" +"DELETE","/deviceManagement/deviceConfigurationDeviceStateSummaries","keep",,"Remove-MgDeviceManagementDeviceConfigurationDeviceStateSummary","Remove-MgDeviceManagementDeviceConfigurationDeviceStateSummary" +"DELETE","/deviceManagement/deviceConfigurations/{param}","keep",,"Remove-MgDeviceManagementDeviceConfiguration","Remove-MgDeviceManagementDeviceConfiguration" +"DELETE","/deviceManagement/deviceConfigurations/{param}/assignments/{param}","keep",,"Remove-MgDeviceManagementDeviceConfigurationAssignment","Remove-MgDeviceManagementDeviceConfigurationAssignment" +"DELETE","/deviceManagement/deviceConfigurations/{param}/deviceSettingStateSummaries/{param}","keep",,"Remove-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary","Remove-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary" +"DELETE","/deviceManagement/deviceConfigurations/{param}/deviceStatuses/{param}","keep",,"Remove-MgDeviceManagementDeviceConfigurationDeviceStatus","Remove-MgDeviceManagementDeviceConfigurationDeviceStatus" +"DELETE","/deviceManagement/deviceConfigurations/{param}/deviceStatusOverview","keep",,"Remove-MgDeviceManagementDeviceConfigurationDeviceStatusOverview","Remove-MgDeviceManagementDeviceConfigurationDeviceStatusOverview" +"DELETE","/deviceManagement/deviceConfigurations/{param}/userStatuses/{param}","keep",,"Remove-MgDeviceManagementDeviceConfigurationUserStatus","Remove-MgDeviceManagementDeviceConfigurationUserStatus" +"DELETE","/deviceManagement/deviceConfigurations/{param}/userStatusOverview","keep",,"Remove-MgDeviceManagementDeviceConfigurationUserStatusOverview","Remove-MgDeviceManagementDeviceConfigurationUserStatusOverview" +"DELETE","/deviceManagement/deviceEnrollmentConfigurations/{param}","keep",,"Remove-MgDeviceManagementDeviceEnrollmentConfiguration","Remove-MgDeviceManagementDeviceEnrollmentConfiguration" +"DELETE","/deviceManagement/deviceEnrollmentConfigurations/{param}/assignments/{param}","keep",,"Remove-MgDeviceManagementDeviceEnrollmentConfigurationAssignment","Remove-MgDeviceManagementDeviceEnrollmentConfigurationAssignment" +"DELETE","/deviceManagement/deviceManagementPartners/{param}","keep",,"Remove-MgDeviceManagementPartner","Remove-MgDeviceManagementPartner" +"DELETE","/deviceManagement/exchangeConnectors/{param}","keep",,"Remove-MgDeviceManagementExchangeConnector","Remove-MgDeviceManagementExchangeConnector" +"DELETE","/deviceManagement/importedWindowsAutopilotDeviceIdentities/{param}","keep",,"Remove-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity","Remove-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity" +"DELETE","/deviceManagement/iosUpdateStatuses/{param}","rename","DeviceManagementIoUpdateStatus","Remove-MgDeviceManagementIosUpdateStatus","Remove-MgDeviceManagementIoUpdateStatus" +"DELETE","/deviceManagement/managedDevices/{param}","keep",,"Remove-MgDeviceManagementManagedDevice","Remove-MgDeviceManagementManagedDevice" +"DELETE","/deviceManagement/managedDevices/{param}/deviceCategory","keep",,"Remove-MgDeviceManagementManagedDeviceCategory","Remove-MgDeviceManagementManagedDeviceCategory" +"DELETE","/deviceManagement/managedDevices/{param}/deviceCategory/$ref","keep",,"Remove-MgDeviceManagementManagedDeviceCategoryByRef","Remove-MgDeviceManagementManagedDeviceCategoryByRef" +"DELETE","/deviceManagement/managedDevices/{param}/deviceCompliancePolicyStates/{param}","keep",,"Remove-MgDeviceManagementManagedDeviceCompliancePolicyState","Remove-MgDeviceManagementManagedDeviceCompliancePolicyState" +"DELETE","/deviceManagement/managedDevices/{param}/deviceConfigurationStates/{param}","keep",,"Remove-MgDeviceManagementManagedDeviceConfigurationState","Remove-MgDeviceManagementManagedDeviceConfigurationState" +"DELETE","/deviceManagement/managedDevices/{param}/logCollectionRequests/{param}","keep",,"Remove-MgDeviceManagementManagedDeviceLogCollectionRequest","Remove-MgDeviceManagementManagedDeviceLogCollectionRequest" +"DELETE","/deviceManagement/managedDevices/{param}/windowsProtectionState","keep",,"Remove-MgDeviceManagementManagedDeviceWindowsProtectionState","Remove-MgDeviceManagementManagedDeviceWindowsProtectionState" +"DELETE","/deviceManagement/managedDevices/{param}/windowsProtectionState/detectedMalwareState/{param}","keep",,"Remove-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState","Remove-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState" +"DELETE","/deviceManagement/mobileAppTroubleshootingEvents/{param}","keep",,"Remove-MgDeviceManagementMobileAppTroubleshootingEvent","Remove-MgDeviceManagementMobileAppTroubleshootingEvent" +"DELETE","/deviceManagement/mobileAppTroubleshootingEvents/{param}/appLogCollectionRequests/{param}","keep",,"Remove-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest","Remove-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest" +"DELETE","/deviceManagement/mobileThreatDefenseConnectors/{param}","keep",,"Remove-MgDeviceManagementMobileThreatDefenseConnector","Remove-MgDeviceManagementMobileThreatDefenseConnector" +"DELETE","/deviceManagement/notificationMessageTemplates/{param}","keep",,"Remove-MgDeviceManagementNotificationMessageTemplate","Remove-MgDeviceManagementNotificationMessageTemplate" +"DELETE","/deviceManagement/notificationMessageTemplates/{param}/localizedNotificationMessages/{param}","keep",,"Remove-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage","Remove-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage" +"DELETE","/deviceManagement/remoteAssistancePartners/{param}","keep",,"Remove-MgDeviceManagementRemoteAssistancePartner","Remove-MgDeviceManagementRemoteAssistancePartner" +"DELETE","/deviceManagement/reports","keep",,"Remove-MgDeviceManagementReport","Remove-MgDeviceManagementReport" +"DELETE","/deviceManagement/reports/exportJobs/{param}","suppress",,"Remove-MgDeviceManagementReportExportJob","no oracle row for DELETE /deviceManagement/reports/exportJobs/{param} and 'Remove-MgDeviceManagementReportExportJob' unshipped" +"DELETE","/deviceManagement/resourceOperations/{param}","keep",,"Remove-MgDeviceManagementResourceOperation","Remove-MgDeviceManagementResourceOperation" +"DELETE","/deviceManagement/roleAssignments/{param}","keep",,"Remove-MgDeviceManagementRoleAssignment","Remove-MgDeviceManagementRoleAssignment" +"DELETE","/deviceManagement/roleDefinitions/{param}","keep",,"Remove-MgDeviceManagementRoleDefinition","Remove-MgDeviceManagementRoleDefinition" +"DELETE","/deviceManagement/roleDefinitions/{param}/roleAssignments/{param}","keep",,"Remove-MgDeviceManagementRoleDefinitionRoleAssignment","Remove-MgDeviceManagementRoleDefinitionRoleAssignment" +"DELETE","/deviceManagement/termsAndConditions/{param}","keep",,"Remove-MgDeviceManagementTermAndCondition","Remove-MgDeviceManagementTermAndCondition" +"DELETE","/deviceManagement/termsAndConditions/{param}/acceptanceStatuses/{param}","keep",,"Remove-MgDeviceManagementTermAndConditionAcceptanceStatus","Remove-MgDeviceManagementTermAndConditionAcceptanceStatus" +"DELETE","/deviceManagement/termsAndConditions/{param}/assignments/{param}","keep",,"Remove-MgDeviceManagementTermAndConditionAssignment","Remove-MgDeviceManagementTermAndConditionAssignment" +"DELETE","/deviceManagement/troubleshootingEvents/{param}","keep",,"Remove-MgDeviceManagementTroubleshootingEvent","Remove-MgDeviceManagementTroubleshootingEvent" +"DELETE","/deviceManagement/virtualEndpoint","suppress",,"Remove-MgDeviceManagementVirtualEndpoint","no oracle row for DELETE /deviceManagement/virtualEndpoint and 'Remove-MgDeviceManagementVirtualEndpoint' unshipped" +"DELETE","/deviceManagement/virtualEndpoint/auditEvents/{param}","suppress",,"Remove-MgDeviceManagementVirtualEndpointAuditEvent","no oracle row for DELETE /deviceManagement/virtualEndpoint/auditEvents/{param} and 'Remove-MgDeviceManagementVirtualEndpointAuditEvent' unshipped" +"DELETE","/deviceManagement/virtualEndpoint/cloudPCs/{param}","suppress",,"Remove-MgDeviceManagementVirtualEndpointCloudPCs","no oracle row for DELETE /deviceManagement/virtualEndpoint/cloudPCs/{param} and 'Remove-MgDeviceManagementVirtualEndpointCloudPCs' unshipped" +"DELETE","/deviceManagement/virtualEndpoint/deviceImages/{param}","keep",,"Remove-MgDeviceManagementVirtualEndpointDeviceImage","Remove-MgDeviceManagementVirtualEndpointDeviceImage" +"DELETE","/deviceManagement/virtualEndpoint/galleryImages/{param}","keep",,"Remove-MgDeviceManagementVirtualEndpointGalleryImage","Remove-MgDeviceManagementVirtualEndpointGalleryImage" +"DELETE","/deviceManagement/virtualEndpoint/onPremisesConnections/{param}","keep",,"Remove-MgDeviceManagementVirtualEndpointOnPremiseConnection","Remove-MgDeviceManagementVirtualEndpointOnPremiseConnection" +"DELETE","/deviceManagement/virtualEndpoint/provisioningPolicies/{param}","keep",,"Remove-MgDeviceManagementVirtualEndpointProvisioningPolicy","Remove-MgDeviceManagementVirtualEndpointProvisioningPolicy" +"DELETE","/deviceManagement/virtualEndpoint/provisioningPolicies/{param}/assignments/{param}","keep",,"Remove-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment","Remove-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment" +"DELETE","/deviceManagement/virtualEndpoint/report","keep",,"Remove-MgDeviceManagementVirtualEndpointReport","Remove-MgDeviceManagementVirtualEndpointReport" +"DELETE","/deviceManagement/virtualEndpoint/userSettings/{param}","keep",,"Remove-MgDeviceManagementVirtualEndpointUserSetting","Remove-MgDeviceManagementVirtualEndpointUserSetting" +"DELETE","/deviceManagement/virtualEndpoint/userSettings/{param}/assignments/{param}","keep",,"Remove-MgDeviceManagementVirtualEndpointUserSettingAssignment","Remove-MgDeviceManagementVirtualEndpointUserSettingAssignment" +"DELETE","/deviceManagement/windowsAutopilotDeviceIdentities/{param}","keep",,"Remove-MgDeviceManagementWindowsAutopilotDeviceIdentity","Remove-MgDeviceManagementWindowsAutopilotDeviceIdentity" +"DELETE","/deviceManagement/windowsInformationProtectionAppLearningSummaries/{param}","keep",,"Remove-MgDeviceManagementWindowsInformationProtectionAppLearningSummary","Remove-MgDeviceManagementWindowsInformationProtectionAppLearningSummary" +"DELETE","/deviceManagement/windowsInformationProtectionNetworkLearningSummaries/{param}","keep",,"Remove-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary","Remove-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary" +"DELETE","/deviceManagement/windowsMalwareInformation/{param}","keep",,"Remove-MgDeviceManagementWindowsMalwareInformation","Remove-MgDeviceManagementWindowsMalwareInformation" +"DELETE","/deviceManagement/windowsMalwareInformation/{param}/deviceMalwareStates/{param}","keep",,"Remove-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState","Remove-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState" +"DELETE","/devices/{param}","keep",,"Remove-MgDevice","Remove-MgDevice" +"DELETE","/devices/{param}/extensions/{param}","keep",,"Remove-MgDeviceExtension","Remove-MgDeviceExtension" +"DELETE","/devices/{param}/registeredOwners/{param}/$ref","rename","DeviceRegisteredOwnerDirectoryObjectByRef","Remove-MgDeviceRegisteredOwnerByRef","Remove-MgDeviceRegisteredOwnerDirectoryObjectByRef" +"DELETE","/devices/{param}/registeredUsers/{param}/$ref","rename","DeviceRegisteredUserDirectoryObjectByRef","Remove-MgDeviceRegisteredUserByRef","Remove-MgDeviceRegisteredUserDirectoryObjectByRef" +"DELETE","/directory/administrativeUnits/{param}","keep",,"Remove-MgDirectoryAdministrativeUnit","Remove-MgDirectoryAdministrativeUnit" +"DELETE","/directory/administrativeUnits/{param}/extensions/{param}","keep",,"Remove-MgDirectoryAdministrativeUnitExtension","Remove-MgDirectoryAdministrativeUnitExtension" +"DELETE","/directory/administrativeUnits/{param}/members/{param}/$ref","rename","DirectoryAdministrativeUnitMemberDirectoryObjectByRef","Remove-MgDirectoryAdministrativeUnitMemberByRef","Remove-MgDirectoryAdministrativeUnitMemberDirectoryObjectByRef" +"DELETE","/directory/administrativeUnits/{param}/scopedRoleMembers/{param}","keep",,"Remove-MgDirectoryAdministrativeUnitScopedRoleMember","Remove-MgDirectoryAdministrativeUnitScopedRoleMember" +"DELETE","/directory/attributeSets/{param}","keep",,"Remove-MgDirectoryAttributeSet","Remove-MgDirectoryAttributeSet" +"DELETE","/directory/customSecurityAttributeDefinitions/{param}","keep",,"Remove-MgDirectoryCustomSecurityAttributeDefinition","Remove-MgDirectoryCustomSecurityAttributeDefinition" +"DELETE","/directory/customSecurityAttributeDefinitions/{param}/allowedValues/{param}","keep",,"Remove-MgDirectoryCustomSecurityAttributeDefinitionAllowedValue","Remove-MgDirectoryCustomSecurityAttributeDefinitionAllowedValue" +"DELETE","/directory/deletedItems/{param}","keep",,"Remove-MgDirectoryDeletedItem","Remove-MgDirectoryDeletedItem" +"DELETE","/directory/deviceLocalCredentials/{param}","keep",,"Remove-MgDirectoryDeviceLocalCredential","Remove-MgDirectoryDeviceLocalCredential" +"DELETE","/directory/federationConfigurations/{param}","keep",,"Remove-MgDirectoryFederationConfiguration","Remove-MgDirectoryFederationConfiguration" +"DELETE","/directory/onPremisesSynchronization/{param}","keep",,"Remove-MgDirectoryOnPremiseSynchronization","Remove-MgDirectoryOnPremiseSynchronization" +"DELETE","/directory/publicKeyInfrastructure","keep",,"Remove-MgDirectoryPublicKeyInfrastructure","Remove-MgDirectoryPublicKeyInfrastructure" +"DELETE","/directory/publicKeyInfrastructure/certificateBasedAuthConfigurations/{param}","keep",,"Remove-MgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfiguration","Remove-MgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfiguration" +"DELETE","/directory/publicKeyInfrastructure/certificateBasedAuthConfigurations/{param}/certificateAuthorities/{param}","keep",,"Remove-MgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfigurationCertificateAuthority","Remove-MgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfigurationCertificateAuthority" +"DELETE","/directory/recovery","keep",,"Remove-MgDirectoryRecovery","Remove-MgDirectoryRecovery" +"DELETE","/directory/recovery/jobs/{param}","keep",,"Remove-MgDirectoryRecoveryJob","Remove-MgDirectoryRecoveryJob" +"DELETE","/directory/recovery/snapshots/{param}","keep",,"Remove-MgDirectoryRecoverySnapshot","Remove-MgDirectoryRecoverySnapshot" +"DELETE","/directory/subscriptions/{param}","keep",,"Remove-MgDirectorySubscription","Remove-MgDirectorySubscription" +"DELETE","/directoryObjects/{param}","keep",,"Remove-MgDirectoryObject","Remove-MgDirectoryObject" +"DELETE","/directoryRoles/{param}","keep",,"Remove-MgDirectoryRole","Remove-MgDirectoryRole" +"DELETE","/directoryRoles/{param}/members/{param}/$ref","rename","DirectoryRoleMemberDirectoryObjectByRef","Remove-MgDirectoryRoleMemberByRef","Remove-MgDirectoryRoleMemberDirectoryObjectByRef" +"DELETE","/directoryRoles/{param}/scopedMembers/{param}","keep",,"Remove-MgDirectoryRoleScopedMember","Remove-MgDirectoryRoleScopedMember" +"DELETE","/directoryRoleTemplates/{param}","keep",,"Remove-MgDirectoryRoleTemplate","Remove-MgDirectoryRoleTemplate" +"DELETE","/domains/{param}","keep",,"Remove-MgDomain","Remove-MgDomain" +"DELETE","/domains/{param}/federationConfiguration/{param}","keep",,"Remove-MgDomainFederationConfiguration","Remove-MgDomainFederationConfiguration" +"DELETE","/domains/{param}/serviceConfigurationRecords/{param}","keep",,"Remove-MgDomainServiceConfigurationRecord","Remove-MgDomainServiceConfigurationRecord" +"DELETE","/domains/{param}/verificationDnsRecords/{param}","keep",,"Remove-MgDomainVerificationDnsRecord","Remove-MgDomainVerificationDnsRecord" +"DELETE","/drives/{param}","keep",,"Remove-MgDrive","Remove-MgDrive" +"DELETE","/drives/{param}/bundles/{param}/$value","keep",,"Remove-MgDriveBundleContent","Remove-MgDriveBundleContent" +"DELETE","/drives/{param}/following/{param}/$value","keep",,"Remove-MgDriveFollowingContent","Remove-MgDriveFollowingContent" +"DELETE","/drives/{param}/items/{param}","keep",,"Remove-MgDriveItem","Remove-MgDriveItem" +"DELETE","/drives/{param}/items/{param}/$value","keep",,"Remove-MgDriveItemContent","Remove-MgDriveItemContent" +"DELETE","/drives/{param}/items/{param}/analytics","keep",,"Remove-MgDriveItemAnalytic","Remove-MgDriveItemAnalytic" +"DELETE","/drives/{param}/items/{param}/analytics/itemActivityStats/{param}","keep",,"Remove-MgDriveItemAnalyticItemActivityStat","Remove-MgDriveItemAnalyticItemActivityStat" +"DELETE","/drives/{param}/items/{param}/analytics/itemActivityStats/{param}/activities/{param}","suppress",,"Remove-MgDriveItemAnalyticItemActivityStatActivity","no oracle row for DELETE /drives/{param}/items/{param}/analytics/itemActivityStats/{param}/activities/{param} and 'Remove-MgDriveItemAnalyticItemActivityStatActivity' unshipped" +"DELETE","/drives/{param}/items/{param}/analytics/itemActivityStats/{param}/activities/{param}/driveItem/$value","suppress",,"Remove-MgDriveItemAnalyticItemActivityStatActivityDriveItemContent","no oracle row for DELETE /drives/{param}/items/{param}/analytics/itemActivityStats/{param}/activities/{param}/driveItem/$value and 'Remove-MgDriveItemAnalyticItemActivityStatActivityDriveItemContent' unshipped" +"DELETE","/drives/{param}/items/{param}/children/{param}/$value","keep",,"Remove-MgDriveItemChildContent","Remove-MgDriveItemChildContent" +"DELETE","/drives/{param}/items/{param}/permissions/{param}","keep",,"Remove-MgDriveItemPermission","Remove-MgDriveItemPermission" +"DELETE","/drives/{param}/items/{param}/retentionLabel","keep",,"Remove-MgDriveItemRetentionLabel","Remove-MgDriveItemRetentionLabel" +"DELETE","/drives/{param}/items/{param}/subscriptions/{param}","keep",,"Remove-MgDriveItemSubscription","Remove-MgDriveItemSubscription" +"DELETE","/drives/{param}/items/{param}/thumbnails/{param}","keep",,"Remove-MgDriveItemThumbnail","Remove-MgDriveItemThumbnail" +"DELETE","/drives/{param}/items/{param}/versions/{param}","keep",,"Remove-MgDriveItemVersion","Remove-MgDriveItemVersion" +"DELETE","/drives/{param}/items/{param}/versions/{param}/$value","keep",,"Remove-MgDriveItemVersionContent","Remove-MgDriveItemVersionContent" +"DELETE","/drives/{param}/items/{param}/workbook","suppress",,"Remove-MgDriveItemWorkbook","no oracle row for DELETE /drives/{param}/items/{param}/workbook and 'Remove-MgDriveItemWorkbook' unshipped" +"DELETE","/drives/{param}/items/{param}/workbook/application","suppress",,"Remove-MgDriveItemWorkbookApplication","no oracle row for DELETE /drives/{param}/items/{param}/workbook/application and 'Remove-MgDriveItemWorkbookApplication' unshipped" +"DELETE","/drives/{param}/items/{param}/workbook/comments/{param}","suppress",,"Remove-MgDriveItemWorkbookComment","no oracle row for DELETE /drives/{param}/items/{param}/workbook/comments/{param} and 'Remove-MgDriveItemWorkbookComment' unshipped" +"DELETE","/drives/{param}/items/{param}/workbook/comments/{param}/replies/{param}","suppress",,"Remove-MgDriveItemWorkbookCommentReply","no oracle row for DELETE /drives/{param}/items/{param}/workbook/comments/{param}/replies/{param} and 'Remove-MgDriveItemWorkbookCommentReply' unshipped" +"DELETE","/drives/{param}/items/{param}/workbook/functions","suppress",,"Remove-MgDriveItemWorkbookFunction","no oracle row for DELETE /drives/{param}/items/{param}/workbook/functions and 'Remove-MgDriveItemWorkbookFunction' unshipped" +"DELETE","/drives/{param}/items/{param}/workbook/names/{param}","suppress",,"Remove-MgDriveItemWorkbookName","no oracle row for DELETE /drives/{param}/items/{param}/workbook/names/{param} and 'Remove-MgDriveItemWorkbookName' unshipped" +"DELETE","/drives/{param}/items/{param}/workbook/operations/{param}","suppress",,"Remove-MgDriveItemWorkbookOperation","no oracle row for DELETE /drives/{param}/items/{param}/workbook/operations/{param} and 'Remove-MgDriveItemWorkbookOperation' unshipped" +"DELETE","/drives/{param}/items/{param}/workbook/tables/{param}","suppress",,"Remove-MgDriveItemWorkbookTable","no oracle row for DELETE /drives/{param}/items/{param}/workbook/tables/{param} and 'Remove-MgDriveItemWorkbookTable' unshipped" +"DELETE","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}","suppress",,"Remove-MgDriveItemWorkbookTableColumn","no oracle row for DELETE /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param} and 'Remove-MgDriveItemWorkbookTableColumn' unshipped" +"DELETE","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/filter","suppress",,"Remove-MgDriveItemWorkbookTableColumnFilter","no oracle row for DELETE /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/filter and 'Remove-MgDriveItemWorkbookTableColumnFilter' unshipped" +"DELETE","/drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}","suppress",,"Remove-MgDriveItemWorkbookTableRow","no oracle row for DELETE /drives/{param}/items/{param}/workbook/tables/{param}/rows/{param} and 'Remove-MgDriveItemWorkbookTableRow' unshipped" +"DELETE","/drives/{param}/items/{param}/workbook/tables/{param}/sort","suppress",,"Remove-MgDriveItemWorkbookTableSort","no oracle row for DELETE /drives/{param}/items/{param}/workbook/tables/{param}/sort and 'Remove-MgDriveItemWorkbookTableSort' unshipped" +"DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}","suppress",,"Remove-MgDriveItemWorkbookWorksheet","no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param} and 'Remove-MgDriveItemWorkbookWorksheet' unshipped" +"DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}","suppress",,"Remove-MgDriveItemWorkbookWorksheetChart","no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param} and 'Remove-MgDriveItemWorkbookWorksheetChart' unshipped" +"DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes","suppress",,"Remove-MgDriveItemWorkbookWorksheetChartAx","no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes and 'Remove-MgDriveItemWorkbookWorksheetChartAx' unshipped" +"DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis","suppress",,"Remove-MgDriveItemWorkbookWorksheetChartAxCategoryAxis","no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis and 'Remove-MgDriveItemWorkbookWorksheetChartAxCategoryAxis' unshipped" +"DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/format","suppress",,"Remove-MgDriveItemWorkbookWorksheetChartAxCategoryAxisFormat","no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/format and 'Remove-MgDriveItemWorkbookWorksheetChartAxCategoryAxisFormat' unshipped" +"DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/format/font","suppress",,"Remove-MgDriveItemWorkbookWorksheetChartAxCategoryAxisFormatFont","no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/format/font and 'Remove-MgDriveItemWorkbookWorksheetChartAxCategoryAxisFormatFont' unshipped" +"DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/format/line","suppress",,"Remove-MgDriveItemWorkbookWorksheetChartAxCategoryAxisFormatLine","no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/format/line and 'Remove-MgDriveItemWorkbookWorksheetChartAxCategoryAxisFormatLine' unshipped" +"DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/majorGridlines","suppress",,"Remove-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMajorGridline","no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/majorGridlines and 'Remove-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMajorGridline' unshipped" +"DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/majorGridlines/format","suppress",,"Remove-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMajorGridlineFormat","no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/majorGridlines/format and 'Remove-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMajorGridlineFormat' unshipped" +"DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/majorGridlines/format/line","suppress",,"Remove-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMajorGridlineFormatLine","no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/majorGridlines/format/line and 'Remove-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMajorGridlineFormatLine' unshipped" +"DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/minorGridlines","suppress",,"Remove-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMinorGridline","no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/minorGridlines and 'Remove-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMinorGridline' unshipped" +"DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/minorGridlines/format","suppress",,"Remove-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMinorGridlineFormat","no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/minorGridlines/format and 'Remove-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMinorGridlineFormat' unshipped" +"DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/minorGridlines/format/line","suppress",,"Remove-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMinorGridlineFormatLine","no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/minorGridlines/format/line and 'Remove-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMinorGridlineFormatLine' unshipped" +"DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/title","suppress",,"Remove-MgDriveItemWorkbookWorksheetChartAxCategoryAxisTitle","no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/title and 'Remove-MgDriveItemWorkbookWorksheetChartAxCategoryAxisTitle' unshipped" +"DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/title/format","suppress",,"Remove-MgDriveItemWorkbookWorksheetChartAxCategoryAxisTitleFormat","no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/title/format and 'Remove-MgDriveItemWorkbookWorksheetChartAxCategoryAxisTitleFormat' unshipped" +"DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/title/format/font","suppress",,"Remove-MgDriveItemWorkbookWorksheetChartAxCategoryAxisTitleFormatFont","no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/title/format/font and 'Remove-MgDriveItemWorkbookWorksheetChartAxCategoryAxisTitleFormatFont' unshipped" +"DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis","suppress",,"Remove-MgDriveItemWorkbookWorksheetChartAxSeryAxis","no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis and 'Remove-MgDriveItemWorkbookWorksheetChartAxSeryAxis' unshipped" +"DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/format","suppress",,"Remove-MgDriveItemWorkbookWorksheetChartAxSeryAxisFormat","no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/format and 'Remove-MgDriveItemWorkbookWorksheetChartAxSeryAxisFormat' unshipped" +"DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/format/font","suppress",,"Remove-MgDriveItemWorkbookWorksheetChartAxSeryAxisFormatFont","no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/format/font and 'Remove-MgDriveItemWorkbookWorksheetChartAxSeryAxisFormatFont' unshipped" +"DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/format/line","suppress",,"Remove-MgDriveItemWorkbookWorksheetChartAxSeryAxisFormatLine","no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/format/line and 'Remove-MgDriveItemWorkbookWorksheetChartAxSeryAxisFormatLine' unshipped" +"DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/majorGridlines","suppress",,"Remove-MgDriveItemWorkbookWorksheetChartAxSeryAxisMajorGridline","no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/majorGridlines and 'Remove-MgDriveItemWorkbookWorksheetChartAxSeryAxisMajorGridline' unshipped" +"DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/majorGridlines/format","suppress",,"Remove-MgDriveItemWorkbookWorksheetChartAxSeryAxisMajorGridlineFormat","no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/majorGridlines/format and 'Remove-MgDriveItemWorkbookWorksheetChartAxSeryAxisMajorGridlineFormat' unshipped" +"DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/majorGridlines/format/line","suppress",,"Remove-MgDriveItemWorkbookWorksheetChartAxSeryAxisMajorGridlineFormatLine","no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/majorGridlines/format/line and 'Remove-MgDriveItemWorkbookWorksheetChartAxSeryAxisMajorGridlineFormatLine' unshipped" +"DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/minorGridlines","suppress",,"Remove-MgDriveItemWorkbookWorksheetChartAxSeryAxisMinorGridline","no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/minorGridlines and 'Remove-MgDriveItemWorkbookWorksheetChartAxSeryAxisMinorGridline' unshipped" +"DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/minorGridlines/format","suppress",,"Remove-MgDriveItemWorkbookWorksheetChartAxSeryAxisMinorGridlineFormat","no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/minorGridlines/format and 'Remove-MgDriveItemWorkbookWorksheetChartAxSeryAxisMinorGridlineFormat' unshipped" +"DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/minorGridlines/format/line","suppress",,"Remove-MgDriveItemWorkbookWorksheetChartAxSeryAxisMinorGridlineFormatLine","no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/minorGridlines/format/line and 'Remove-MgDriveItemWorkbookWorksheetChartAxSeryAxisMinorGridlineFormatLine' unshipped" +"DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/title","suppress",,"Remove-MgDriveItemWorkbookWorksheetChartAxSeryAxisTitle","no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/title and 'Remove-MgDriveItemWorkbookWorksheetChartAxSeryAxisTitle' unshipped" +"DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/title/format","suppress",,"Remove-MgDriveItemWorkbookWorksheetChartAxSeryAxisTitleFormat","no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/title/format and 'Remove-MgDriveItemWorkbookWorksheetChartAxSeryAxisTitleFormat' unshipped" +"DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/title/format/font","suppress",,"Remove-MgDriveItemWorkbookWorksheetChartAxSeryAxisTitleFormatFont","no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/title/format/font and 'Remove-MgDriveItemWorkbookWorksheetChartAxSeryAxisTitleFormatFont' unshipped" +"DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis","suppress",,"Remove-MgDriveItemWorkbookWorksheetChartAxValueAxis","no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis and 'Remove-MgDriveItemWorkbookWorksheetChartAxValueAxis' unshipped" +"DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/format","suppress",,"Remove-MgDriveItemWorkbookWorksheetChartAxValueAxisFormat","no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/format and 'Remove-MgDriveItemWorkbookWorksheetChartAxValueAxisFormat' unshipped" +"DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/format/font","suppress",,"Remove-MgDriveItemWorkbookWorksheetChartAxValueAxisFormatFont","no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/format/font and 'Remove-MgDriveItemWorkbookWorksheetChartAxValueAxisFormatFont' unshipped" +"DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/format/line","suppress",,"Remove-MgDriveItemWorkbookWorksheetChartAxValueAxisFormatLine","no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/format/line and 'Remove-MgDriveItemWorkbookWorksheetChartAxValueAxisFormatLine' unshipped" +"DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/majorGridlines","suppress",,"Remove-MgDriveItemWorkbookWorksheetChartAxValueAxisMajorGridline","no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/majorGridlines and 'Remove-MgDriveItemWorkbookWorksheetChartAxValueAxisMajorGridline' unshipped" +"DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/majorGridlines/format","suppress",,"Remove-MgDriveItemWorkbookWorksheetChartAxValueAxisMajorGridlineFormat","no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/majorGridlines/format and 'Remove-MgDriveItemWorkbookWorksheetChartAxValueAxisMajorGridlineFormat' unshipped" +"DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/majorGridlines/format/line","suppress",,"Remove-MgDriveItemWorkbookWorksheetChartAxValueAxisMajorGridlineFormatLine","no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/majorGridlines/format/line and 'Remove-MgDriveItemWorkbookWorksheetChartAxValueAxisMajorGridlineFormatLine' unshipped" +"DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/minorGridlines","suppress",,"Remove-MgDriveItemWorkbookWorksheetChartAxValueAxisMinorGridline","no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/minorGridlines and 'Remove-MgDriveItemWorkbookWorksheetChartAxValueAxisMinorGridline' unshipped" +"DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/minorGridlines/format","suppress",,"Remove-MgDriveItemWorkbookWorksheetChartAxValueAxisMinorGridlineFormat","no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/minorGridlines/format and 'Remove-MgDriveItemWorkbookWorksheetChartAxValueAxisMinorGridlineFormat' unshipped" +"DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/minorGridlines/format/line","suppress",,"Remove-MgDriveItemWorkbookWorksheetChartAxValueAxisMinorGridlineFormatLine","no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/minorGridlines/format/line and 'Remove-MgDriveItemWorkbookWorksheetChartAxValueAxisMinorGridlineFormatLine' unshipped" +"DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/title","suppress",,"Remove-MgDriveItemWorkbookWorksheetChartAxValueAxisTitle","no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/title and 'Remove-MgDriveItemWorkbookWorksheetChartAxValueAxisTitle' unshipped" +"DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/title/format","suppress",,"Remove-MgDriveItemWorkbookWorksheetChartAxValueAxisTitleFormat","no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/title/format and 'Remove-MgDriveItemWorkbookWorksheetChartAxValueAxisTitleFormat' unshipped" +"DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/title/format/font","suppress",,"Remove-MgDriveItemWorkbookWorksheetChartAxValueAxisTitleFormatFont","no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/title/format/font and 'Remove-MgDriveItemWorkbookWorksheetChartAxValueAxisTitleFormatFont' unshipped" +"DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/dataLabels","suppress",,"Remove-MgDriveItemWorkbookWorksheetChartDataLabel","no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/dataLabels and 'Remove-MgDriveItemWorkbookWorksheetChartDataLabel' unshipped" +"DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/dataLabels/format","suppress",,"Remove-MgDriveItemWorkbookWorksheetChartDataLabelFormat","no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/dataLabels/format and 'Remove-MgDriveItemWorkbookWorksheetChartDataLabelFormat' unshipped" +"DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/dataLabels/format/fill","suppress",,"Remove-MgDriveItemWorkbookWorksheetChartDataLabelFormatFill","no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/dataLabels/format/fill and 'Remove-MgDriveItemWorkbookWorksheetChartDataLabelFormatFill' unshipped" +"DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/dataLabels/format/font","suppress",,"Remove-MgDriveItemWorkbookWorksheetChartDataLabelFormatFont","no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/dataLabels/format/font and 'Remove-MgDriveItemWorkbookWorksheetChartDataLabelFormatFont' unshipped" +"DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/format","suppress",,"Remove-MgDriveItemWorkbookWorksheetChartFormat","no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/format and 'Remove-MgDriveItemWorkbookWorksheetChartFormat' unshipped" +"DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/format/fill","suppress",,"Remove-MgDriveItemWorkbookWorksheetChartFormatFill","no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/format/fill and 'Remove-MgDriveItemWorkbookWorksheetChartFormatFill' unshipped" +"DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/format/font","suppress",,"Remove-MgDriveItemWorkbookWorksheetChartFormatFont","no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/format/font and 'Remove-MgDriveItemWorkbookWorksheetChartFormatFont' unshipped" +"DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/legend","suppress",,"Remove-MgDriveItemWorkbookWorksheetChartLegend","no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/legend and 'Remove-MgDriveItemWorkbookWorksheetChartLegend' unshipped" +"DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/legend/format","suppress",,"Remove-MgDriveItemWorkbookWorksheetChartLegendFormat","no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/legend/format and 'Remove-MgDriveItemWorkbookWorksheetChartLegendFormat' unshipped" +"DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/legend/format/fill","suppress",,"Remove-MgDriveItemWorkbookWorksheetChartLegendFormatFill","no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/legend/format/fill and 'Remove-MgDriveItemWorkbookWorksheetChartLegendFormatFill' unshipped" +"DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/legend/format/font","suppress",,"Remove-MgDriveItemWorkbookWorksheetChartLegendFormatFont","no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/legend/format/font and 'Remove-MgDriveItemWorkbookWorksheetChartLegendFormatFont' unshipped" +"DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}","suppress",,"Remove-MgDriveItemWorkbookWorksheetChartSery","no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param} and 'Remove-MgDriveItemWorkbookWorksheetChartSery' unshipped" +"DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/format","suppress",,"Remove-MgDriveItemWorkbookWorksheetChartSeryFormat","no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/format and 'Remove-MgDriveItemWorkbookWorksheetChartSeryFormat' unshipped" +"DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/format/fill","suppress",,"Remove-MgDriveItemWorkbookWorksheetChartSeryFormatFill","no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/format/fill and 'Remove-MgDriveItemWorkbookWorksheetChartSeryFormatFill' unshipped" +"DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/format/line","suppress",,"Remove-MgDriveItemWorkbookWorksheetChartSeryFormatLine","no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/format/line and 'Remove-MgDriveItemWorkbookWorksheetChartSeryFormatLine' unshipped" +"DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/points/{param}","suppress",,"Remove-MgDriveItemWorkbookWorksheetChartSeryPoint","no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/points/{param} and 'Remove-MgDriveItemWorkbookWorksheetChartSeryPoint' unshipped" +"DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/points/{param}/format","suppress",,"Remove-MgDriveItemWorkbookWorksheetChartSeryPointFormat","no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/points/{param}/format and 'Remove-MgDriveItemWorkbookWorksheetChartSeryPointFormat' unshipped" +"DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/points/{param}/format/fill","suppress",,"Remove-MgDriveItemWorkbookWorksheetChartSeryPointFormatFill","no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/points/{param}/format/fill and 'Remove-MgDriveItemWorkbookWorksheetChartSeryPointFormatFill' unshipped" +"DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/title","suppress",,"Remove-MgDriveItemWorkbookWorksheetChartTitle","no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/title and 'Remove-MgDriveItemWorkbookWorksheetChartTitle' unshipped" +"DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/title/format","suppress",,"Remove-MgDriveItemWorkbookWorksheetChartTitleFormat","no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/title/format and 'Remove-MgDriveItemWorkbookWorksheetChartTitleFormat' unshipped" +"DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/title/format/fill","suppress",,"Remove-MgDriveItemWorkbookWorksheetChartTitleFormatFill","no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/title/format/fill and 'Remove-MgDriveItemWorkbookWorksheetChartTitleFormatFill' unshipped" +"DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/title/format/font","suppress",,"Remove-MgDriveItemWorkbookWorksheetChartTitleFormatFont","no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/title/format/font and 'Remove-MgDriveItemWorkbookWorksheetChartTitleFormatFont' unshipped" +"DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}","suppress",,"Remove-MgDriveItemWorkbookWorksheetName","no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param} and 'Remove-MgDriveItemWorkbookWorksheetName' unshipped" +"DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/pivotTables/{param}","suppress",,"Remove-MgDriveItemWorkbookWorksheetPivotTable","no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/pivotTables/{param} and 'Remove-MgDriveItemWorkbookWorksheetPivotTable' unshipped" +"DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/protection","suppress",,"Remove-MgDriveItemWorkbookWorksheetProtection","no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/protection and 'Remove-MgDriveItemWorkbookWorksheetProtection' unshipped" +"DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}","suppress",,"Remove-MgDriveItemWorkbookWorksheetTable","no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param} and 'Remove-MgDriveItemWorkbookWorksheetTable' unshipped" +"DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}","suppress",,"Remove-MgDriveItemWorkbookWorksheetTableColumn","no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param} and 'Remove-MgDriveItemWorkbookWorksheetTableColumn' unshipped" +"DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/filter","suppress",,"Remove-MgDriveItemWorkbookWorksheetTableColumnFilter","no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/filter and 'Remove-MgDriveItemWorkbookWorksheetTableColumnFilter' unshipped" +"DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}","suppress",,"Remove-MgDriveItemWorkbookWorksheetTableRow","no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param} and 'Remove-MgDriveItemWorkbookWorksheetTableRow' unshipped" +"DELETE","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/sort","suppress",,"Remove-MgDriveItemWorkbookWorksheetTableSort","no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/sort and 'Remove-MgDriveItemWorkbookWorksheetTableSort' unshipped" +"DELETE","/drives/{param}/list","keep",,"Remove-MgDriveList","Remove-MgDriveList" +"DELETE","/drives/{param}/list/columns/{param}","keep",,"Remove-MgDriveListColumn","Remove-MgDriveListColumn" +"DELETE","/drives/{param}/list/contentTypes/{param}","keep",,"Remove-MgDriveListContentType","Remove-MgDriveListContentType" +"DELETE","/drives/{param}/list/contentTypes/{param}/columnLinks/{param}","keep",,"Remove-MgDriveListContentTypeColumnLink","Remove-MgDriveListContentTypeColumnLink" +"DELETE","/drives/{param}/list/contentTypes/{param}/columns/{param}","keep",,"Remove-MgDriveListContentTypeColumn","Remove-MgDriveListContentTypeColumn" +"DELETE","/drives/{param}/list/items/{param}","keep",,"Remove-MgDriveListItem","Remove-MgDriveListItem" +"DELETE","/drives/{param}/list/items/{param}/documentSetVersions/{param}","keep",,"Remove-MgDriveListItemDocumentSetVersion","Remove-MgDriveListItemDocumentSetVersion" +"DELETE","/drives/{param}/list/items/{param}/documentSetVersions/{param}/fields","keep",,"Remove-MgDriveListItemDocumentSetVersionField","Remove-MgDriveListItemDocumentSetVersionField" +"DELETE","/drives/{param}/list/items/{param}/driveItem/$value","keep",,"Remove-MgDriveListItemDriveItemContent","Remove-MgDriveListItemDriveItemContent" +"DELETE","/drives/{param}/list/items/{param}/fields","keep",,"Remove-MgDriveListItemField","Remove-MgDriveListItemField" +"DELETE","/drives/{param}/list/items/{param}/permissions/{param}","suppress",,"Remove-MgDriveListItemPermission","no oracle row for DELETE /drives/{param}/list/items/{param}/permissions/{param} and 'Remove-MgDriveListItemPermission' unshipped" +"DELETE","/drives/{param}/list/items/{param}/versions/{param}","keep",,"Remove-MgDriveListItemVersion","Remove-MgDriveListItemVersion" +"DELETE","/drives/{param}/list/items/{param}/versions/{param}/fields","keep",,"Remove-MgDriveListItemVersionField","Remove-MgDriveListItemVersionField" +"DELETE","/drives/{param}/list/operations/{param}","keep",,"Remove-MgDriveListOperation","Remove-MgDriveListOperation" +"DELETE","/drives/{param}/list/permissions/{param}","suppress",,"Remove-MgDriveListPermission","no oracle row for DELETE /drives/{param}/list/permissions/{param} and 'Remove-MgDriveListPermission' unshipped" +"DELETE","/drives/{param}/list/subscriptions/{param}","keep",,"Remove-MgDriveListSubscription","Remove-MgDriveListSubscription" +"DELETE","/drives/{param}/root/$value","keep",,"Remove-MgDriveRootContent","Remove-MgDriveRootContent" +"DELETE","/drives/{param}/special/{param}/$value","keep",,"Remove-MgDriveSpecialContent","Remove-MgDriveSpecialContent" +"DELETE","/education/classes/{param}","keep",,"Remove-MgEducationClass","Remove-MgEducationClass" +"DELETE","/education/classes/{param}/assignmentCategories/{param}","keep",,"Remove-MgEducationClassAssignmentCategory","Remove-MgEducationClassAssignmentCategory" +"DELETE","/education/classes/{param}/assignmentDefaults","keep",,"Remove-MgEducationClassAssignmentDefault","Remove-MgEducationClassAssignmentDefault" +"DELETE","/education/classes/{param}/assignments/{param}","keep",,"Remove-MgEducationClassAssignment","Remove-MgEducationClassAssignment" +"DELETE","/education/classes/{param}/assignments/{param}/categories/{param}/$ref","rename","EducationClassAssignmentCategoryEducationCategoryByRef","Remove-MgEducationClassAssignmentCategoryByRef","Remove-MgEducationClassAssignmentCategoryEducationCategoryByRef" +"DELETE","/education/classes/{param}/assignments/{param}/resources/{param}","keep",,"Remove-MgEducationClassAssignmentResource","Remove-MgEducationClassAssignmentResource" +"DELETE","/education/classes/{param}/assignments/{param}/resources/{param}/dependentResources/{param}","keep",,"Remove-MgEducationClassAssignmentResourceDependentResource","Remove-MgEducationClassAssignmentResourceDependentResource" +"DELETE","/education/classes/{param}/assignments/{param}/rubric","keep",,"Remove-MgEducationClassAssignmentRubric","Remove-MgEducationClassAssignmentRubric" +"DELETE","/education/classes/{param}/assignments/{param}/rubric/$ref","keep",,"Remove-MgEducationClassAssignmentRubricByRef","Remove-MgEducationClassAssignmentRubricByRef" +"DELETE","/education/classes/{param}/assignments/{param}/submissions/{param}","keep",,"Remove-MgEducationClassAssignmentSubmission","Remove-MgEducationClassAssignmentSubmission" +"DELETE","/education/classes/{param}/assignments/{param}/submissions/{param}/outcomes/{param}","keep",,"Remove-MgEducationClassAssignmentSubmissionOutcome","Remove-MgEducationClassAssignmentSubmissionOutcome" +"DELETE","/education/classes/{param}/assignments/{param}/submissions/{param}/resources/{param}","keep",,"Remove-MgEducationClassAssignmentSubmissionResource","Remove-MgEducationClassAssignmentSubmissionResource" +"DELETE","/education/classes/{param}/assignments/{param}/submissions/{param}/resources/{param}/dependentResources/{param}","keep",,"Remove-MgEducationClassAssignmentSubmissionResourceDependentResource","Remove-MgEducationClassAssignmentSubmissionResourceDependentResource" +"DELETE","/education/classes/{param}/assignments/{param}/submissions/{param}/submittedResources/{param}","keep",,"Remove-MgEducationClassAssignmentSubmissionSubmittedResource","Remove-MgEducationClassAssignmentSubmissionSubmittedResource" +"DELETE","/education/classes/{param}/assignments/{param}/submissions/{param}/submittedResources/{param}/dependentResources/{param}","keep",,"Remove-MgEducationClassAssignmentSubmissionSubmittedResourceDependentResource","Remove-MgEducationClassAssignmentSubmissionSubmittedResourceDependentResource" +"DELETE","/education/classes/{param}/assignmentSettings","keep",,"Remove-MgEducationClassAssignmentSetting","Remove-MgEducationClassAssignmentSetting" +"DELETE","/education/classes/{param}/assignmentSettings/gradingCategories/{param}","keep",,"Remove-MgEducationClassAssignmentSettingGradingCategory","Remove-MgEducationClassAssignmentSettingGradingCategory" +"DELETE","/education/classes/{param}/assignmentSettings/gradingSchemes/{param}","keep",,"Remove-MgEducationClassAssignmentSettingGradingScheme","Remove-MgEducationClassAssignmentSettingGradingScheme" +"DELETE","/education/classes/{param}/members/{param}/$ref","rename","EducationClassMemberEducationUserByRef","Remove-MgEducationClassMemberByRef","Remove-MgEducationClassMemberEducationUserByRef" +"DELETE","/education/classes/{param}/modules/{param}","keep",,"Remove-MgEducationClassModule","Remove-MgEducationClassModule" +"DELETE","/education/classes/{param}/modules/{param}/resources/{param}","keep",,"Remove-MgEducationClassModuleResource","Remove-MgEducationClassModuleResource" +"DELETE","/education/classes/{param}/teachers/{param}/$ref","rename","EducationClassTeacherEducationUserByRef","Remove-MgEducationClassTeacherByRef","Remove-MgEducationClassTeacherEducationUserByRef" +"DELETE","/education/me","keep",,"Remove-MgEducationMe","Remove-MgEducationMe" +"DELETE","/education/me/assignments/{param}","keep",,"Remove-MgEducationMeAssignment","Remove-MgEducationMeAssignment" +"DELETE","/education/me/assignments/{param}/categories/{param}/$ref","rename","EducationMeAssignmentCategoryEducationCategoryByRef","Remove-MgEducationMeAssignmentCategoryByRef","Remove-MgEducationMeAssignmentCategoryEducationCategoryByRef" +"DELETE","/education/me/assignments/{param}/resources/{param}","keep",,"Remove-MgEducationMeAssignmentResource","Remove-MgEducationMeAssignmentResource" +"DELETE","/education/me/assignments/{param}/resources/{param}/dependentResources/{param}","keep",,"Remove-MgEducationMeAssignmentResourceDependentResource","Remove-MgEducationMeAssignmentResourceDependentResource" +"DELETE","/education/me/assignments/{param}/rubric","keep",,"Remove-MgEducationMeAssignmentRubric","Remove-MgEducationMeAssignmentRubric" +"DELETE","/education/me/assignments/{param}/rubric/$ref","keep",,"Remove-MgEducationMeAssignmentRubricByRef","Remove-MgEducationMeAssignmentRubricByRef" +"DELETE","/education/me/assignments/{param}/submissions/{param}","keep",,"Remove-MgEducationMeAssignmentSubmission","Remove-MgEducationMeAssignmentSubmission" +"DELETE","/education/me/assignments/{param}/submissions/{param}/outcomes/{param}","keep",,"Remove-MgEducationMeAssignmentSubmissionOutcome","Remove-MgEducationMeAssignmentSubmissionOutcome" +"DELETE","/education/me/assignments/{param}/submissions/{param}/resources/{param}","keep",,"Remove-MgEducationMeAssignmentSubmissionResource","Remove-MgEducationMeAssignmentSubmissionResource" +"DELETE","/education/me/assignments/{param}/submissions/{param}/resources/{param}/dependentResources/{param}","keep",,"Remove-MgEducationMeAssignmentSubmissionResourceDependentResource","Remove-MgEducationMeAssignmentSubmissionResourceDependentResource" +"DELETE","/education/me/assignments/{param}/submissions/{param}/submittedResources/{param}","keep",,"Remove-MgEducationMeAssignmentSubmissionSubmittedResource","Remove-MgEducationMeAssignmentSubmissionSubmittedResource" +"DELETE","/education/me/assignments/{param}/submissions/{param}/submittedResources/{param}/dependentResources/{param}","keep",,"Remove-MgEducationMeAssignmentSubmissionSubmittedResourceDependentResource","Remove-MgEducationMeAssignmentSubmissionSubmittedResourceDependentResource" +"DELETE","/education/me/rubrics/{param}","keep",,"Remove-MgEducationMeRubric","Remove-MgEducationMeRubric" +"DELETE","/education/reports","keep",,"Remove-MgEducationReport","Remove-MgEducationReport" +"DELETE","/education/reports/readingAssignmentSubmissions/{param}","keep",,"Remove-MgEducationReportReadingAssignmentSubmission","Remove-MgEducationReportReadingAssignmentSubmission" +"DELETE","/education/reports/readingCoachPassages/{param}","keep",,"Remove-MgEducationReportReadingCoachPassage","Remove-MgEducationReportReadingCoachPassage" +"DELETE","/education/reports/reflectCheckInResponses/{param}","rename","EducationReportReflectCheck","Remove-MgEducationReportReflectCheckInResponse","Remove-MgEducationReportReflectCheck" +"DELETE","/education/reports/speakerAssignmentSubmissions/{param}","keep",,"Remove-MgEducationReportSpeakerAssignmentSubmission","Remove-MgEducationReportSpeakerAssignmentSubmission" +"DELETE","/education/schools/{param}","keep",,"Remove-MgEducationSchool","Remove-MgEducationSchool" +"DELETE","/education/schools/{param}/classes/{param}/$ref","rename","EducationSchoolClassEducationClassByRef","Remove-MgEducationSchoolClassByRef","Remove-MgEducationSchoolClassEducationClassByRef" +"DELETE","/education/schools/{param}/users/{param}/$ref","rename","EducationSchoolUserEducationUserByRef","Remove-MgEducationSchoolUserByRef","Remove-MgEducationSchoolUserEducationUserByRef" +"DELETE","/education/users/{param}","keep",,"Remove-MgEducationUser","Remove-MgEducationUser" +"DELETE","/education/users/{param}/assignments/{param}","keep",,"Remove-MgEducationUserAssignment","Remove-MgEducationUserAssignment" +"DELETE","/education/users/{param}/assignments/{param}/categories/{param}/$ref","rename","EducationUserAssignmentCategoryEducationCategoryByRef","Remove-MgEducationUserAssignmentCategoryByRef","Remove-MgEducationUserAssignmentCategoryEducationCategoryByRef" +"DELETE","/education/users/{param}/assignments/{param}/resources/{param}","keep",,"Remove-MgEducationUserAssignmentResource","Remove-MgEducationUserAssignmentResource" +"DELETE","/education/users/{param}/assignments/{param}/resources/{param}/dependentResources/{param}","keep",,"Remove-MgEducationUserAssignmentResourceDependentResource","Remove-MgEducationUserAssignmentResourceDependentResource" +"DELETE","/education/users/{param}/assignments/{param}/rubric","keep",,"Remove-MgEducationUserAssignmentRubric","Remove-MgEducationUserAssignmentRubric" +"DELETE","/education/users/{param}/assignments/{param}/rubric/$ref","keep",,"Remove-MgEducationUserAssignmentRubricByRef","Remove-MgEducationUserAssignmentRubricByRef" +"DELETE","/education/users/{param}/assignments/{param}/submissions/{param}","keep",,"Remove-MgEducationUserAssignmentSubmission","Remove-MgEducationUserAssignmentSubmission" +"DELETE","/education/users/{param}/assignments/{param}/submissions/{param}/outcomes/{param}","keep",,"Remove-MgEducationUserAssignmentSubmissionOutcome","Remove-MgEducationUserAssignmentSubmissionOutcome" +"DELETE","/education/users/{param}/assignments/{param}/submissions/{param}/resources/{param}","keep",,"Remove-MgEducationUserAssignmentSubmissionResource","Remove-MgEducationUserAssignmentSubmissionResource" +"DELETE","/education/users/{param}/assignments/{param}/submissions/{param}/resources/{param}/dependentResources/{param}","keep",,"Remove-MgEducationUserAssignmentSubmissionResourceDependentResource","Remove-MgEducationUserAssignmentSubmissionResourceDependentResource" +"DELETE","/education/users/{param}/assignments/{param}/submissions/{param}/submittedResources/{param}","keep",,"Remove-MgEducationUserAssignmentSubmissionSubmittedResource","Remove-MgEducationUserAssignmentSubmissionSubmittedResource" +"DELETE","/education/users/{param}/assignments/{param}/submissions/{param}/submittedResources/{param}/dependentResources/{param}","keep",,"Remove-MgEducationUserAssignmentSubmissionSubmittedResourceDependentResource","Remove-MgEducationUserAssignmentSubmissionSubmittedResourceDependentResource" +"DELETE","/education/users/{param}/rubrics/{param}","keep",,"Remove-MgEducationUserRubric","Remove-MgEducationUserRubric" +"DELETE","/external/connections/{param}","keep",,"Remove-MgExternalConnection","Remove-MgExternalConnection" +"DELETE","/external/connections/{param}/groups/{param}","keep",,"Remove-MgExternalConnectionGroup","Remove-MgExternalConnectionGroup" +"DELETE","/external/connections/{param}/groups/{param}/members/{param}","keep",,"Remove-MgExternalConnectionGroupMember","Remove-MgExternalConnectionGroupMember" +"DELETE","/external/connections/{param}/items/{param}","keep",,"Remove-MgExternalConnectionItem","Remove-MgExternalConnectionItem" +"DELETE","/external/connections/{param}/items/{param}/activities/{param}","keep",,"Remove-MgExternalConnectionItemActivity","Remove-MgExternalConnectionItemActivity" +"DELETE","/external/connections/{param}/operations/{param}","keep",,"Remove-MgExternalConnectionOperation","Remove-MgExternalConnectionOperation" +"DELETE","/groupLifecyclePolicies/{param}","keep",,"Remove-MgGroupLifecyclePolicy","Remove-MgGroupLifecyclePolicy" +"DELETE","/groups/{param}","keep",,"Remove-MgGroup","Remove-MgGroup" +"DELETE","/groups/{param}/acceptedSenders/{param}/$ref","rename","GroupAcceptedSenderDirectoryObjectByRef","Remove-MgGroupAcceptedSenderByRef","Remove-MgGroupAcceptedSenderDirectoryObjectByRef" +"DELETE","/groups/{param}/appRoleAssignments/{param}","keep",,"Remove-MgGroupAppRoleAssignment","Remove-MgGroupAppRoleAssignment" +"DELETE","/groups/{param}/calendar/calendarPermissions/{param}","keep",,"Remove-MgGroupCalendarPermission","Remove-MgGroupCalendarPermission" +"DELETE","/groups/{param}/calendar/events/{param}","keep",,"Remove-MgGroupCalendarEvent","Remove-MgGroupCalendarEvent" +"DELETE","/groups/{param}/calendar/events/{param}/attachments/{param}","suppress",,"Remove-MgGroupCalendarEventAttachment","no oracle row for DELETE /groups/{param}/calendar/events/{param}/attachments/{param} and 'Remove-MgGroupCalendarEventAttachment' unshipped" +"DELETE","/groups/{param}/calendar/events/{param}/extensions/{param}","suppress",,"Remove-MgGroupCalendarEventExtension","no oracle row for DELETE /groups/{param}/calendar/events/{param}/extensions/{param} and 'Remove-MgGroupCalendarEventExtension' unshipped" +"DELETE","/groups/{param}/conversations/{param}","keep",,"Remove-MgGroupConversation","Remove-MgGroupConversation" +"DELETE","/groups/{param}/conversations/{param}/threads/{param}","keep",,"Remove-MgGroupConversationThread","Remove-MgGroupConversationThread" +"DELETE","/groups/{param}/conversations/{param}/threads/{param}/posts/{param}/attachments/{param}","keep",,"Remove-MgGroupConversationThreadPostAttachment","Remove-MgGroupConversationThreadPostAttachment" +"DELETE","/groups/{param}/conversations/{param}/threads/{param}/posts/{param}/extensions/{param}","keep",,"Remove-MgGroupConversationThreadPostExtension","Remove-MgGroupConversationThreadPostExtension" +"DELETE","/groups/{param}/conversations/{param}/threads/{param}/posts/{param}/inReplyTo/attachments/{param}","keep",,"Remove-MgGroupConversationThreadPostInReplyToAttachment","Remove-MgGroupConversationThreadPostInReplyToAttachment" +"DELETE","/groups/{param}/conversations/{param}/threads/{param}/posts/{param}/inReplyTo/extensions/{param}","keep",,"Remove-MgGroupConversationThreadPostInReplyToExtension","Remove-MgGroupConversationThreadPostInReplyToExtension" +"DELETE","/groups/{param}/events/{param}","keep",,"Remove-MgGroupEvent","Remove-MgGroupEvent" +"DELETE","/groups/{param}/events/{param}/attachments/{param}","keep",,"Remove-MgGroupEventAttachment","Remove-MgGroupEventAttachment" +"DELETE","/groups/{param}/events/{param}/extensions/{param}","keep",,"Remove-MgGroupEventExtension","Remove-MgGroupEventExtension" +"DELETE","/groups/{param}/extensions/{param}","keep",,"Remove-MgGroupExtension","Remove-MgGroupExtension" +"DELETE","/groups/{param}/members/{param}/$ref","rename","GroupMemberDirectoryObjectByRef","Remove-MgGroupMemberByRef","Remove-MgGroupMemberDirectoryObjectByRef" +"DELETE","/groups/{param}/onenote","keep",,"Remove-MgGroupOnenote","Remove-MgGroupOnenote" +"DELETE","/groups/{param}/onenote/notebooks/{param}","keep",,"Remove-MgGroupOnenoteNotebook","Remove-MgGroupOnenoteNotebook" +"DELETE","/groups/{param}/onenote/notebooks/{param}/sectionGroups/{param}","keep",,"Remove-MgGroupOnenoteNotebookSectionGroup","Remove-MgGroupOnenoteNotebookSectionGroup" +"DELETE","/groups/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}","keep",,"Remove-MgGroupOnenoteNotebookSectionGroupSection","Remove-MgGroupOnenoteNotebookSectionGroupSection" +"DELETE","/groups/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}","keep",,"Remove-MgGroupOnenoteNotebookSectionGroupSectionPage","Remove-MgGroupOnenoteNotebookSectionGroupSectionPage" +"DELETE","/groups/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}/$value","keep",,"Remove-MgGroupOnenoteNotebookSectionGroupSectionPageContent","Remove-MgGroupOnenoteNotebookSectionGroupSectionPageContent" +"DELETE","/groups/{param}/onenote/notebooks/{param}/sections/{param}","keep",,"Remove-MgGroupOnenoteNotebookSection","Remove-MgGroupOnenoteNotebookSection" +"DELETE","/groups/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}","keep",,"Remove-MgGroupOnenoteNotebookSectionPage","Remove-MgGroupOnenoteNotebookSectionPage" +"DELETE","/groups/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}/$value","keep",,"Remove-MgGroupOnenoteNotebookSectionPageContent","Remove-MgGroupOnenoteNotebookSectionPageContent" +"DELETE","/groups/{param}/onenote/operations/{param}","keep",,"Remove-MgGroupOnenoteOperation","Remove-MgGroupOnenoteOperation" +"DELETE","/groups/{param}/onenote/pages/{param}","keep",,"Remove-MgGroupOnenotePage","Remove-MgGroupOnenotePage" +"DELETE","/groups/{param}/onenote/pages/{param}/$value","keep",,"Remove-MgGroupOnenotePageContent","Remove-MgGroupOnenotePageContent" +"DELETE","/groups/{param}/onenote/resources/{param}","keep",,"Remove-MgGroupOnenoteResource","Remove-MgGroupOnenoteResource" +"DELETE","/groups/{param}/onenote/resources/{param}/$value","keep",,"Remove-MgGroupOnenoteResourceContent","Remove-MgGroupOnenoteResourceContent" +"DELETE","/groups/{param}/onenote/sectionGroups/{param}","keep",,"Remove-MgGroupOnenoteSectionGroup","Remove-MgGroupOnenoteSectionGroup" +"DELETE","/groups/{param}/onenote/sectionGroups/{param}/sections/{param}","keep",,"Remove-MgGroupOnenoteSectionGroupSection","Remove-MgGroupOnenoteSectionGroupSection" +"DELETE","/groups/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}","keep",,"Remove-MgGroupOnenoteSectionGroupSectionPage","Remove-MgGroupOnenoteSectionGroupSectionPage" +"DELETE","/groups/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}/$value","keep",,"Remove-MgGroupOnenoteSectionGroupSectionPageContent","Remove-MgGroupOnenoteSectionGroupSectionPageContent" +"DELETE","/groups/{param}/onenote/sections/{param}","keep",,"Remove-MgGroupOnenoteSection","Remove-MgGroupOnenoteSection" +"DELETE","/groups/{param}/onenote/sections/{param}/pages/{param}","keep",,"Remove-MgGroupOnenoteSectionPage","Remove-MgGroupOnenoteSectionPage" +"DELETE","/groups/{param}/onenote/sections/{param}/pages/{param}/$value","keep",,"Remove-MgGroupOnenoteSectionPageContent","Remove-MgGroupOnenoteSectionPageContent" +"DELETE","/groups/{param}/onPremisesSyncBehavior","keep",,"Remove-MgGroupOnPremiseSyncBehavior","Remove-MgGroupOnPremiseSyncBehavior" +"DELETE","/groups/{param}/owners/{param}/$ref","rename","GroupOwnerDirectoryObjectByRef","Remove-MgGroupOwnerByRef","Remove-MgGroupOwnerDirectoryObjectByRef" +"DELETE","/groups/{param}/permissionGrants/{param}","keep",,"Remove-MgGroupPermissionGrant","Remove-MgGroupPermissionGrant" +"DELETE","/groups/{param}/photo","keep",,"Remove-MgGroupPhoto","Remove-MgGroupPhoto" +"DELETE","/groups/{param}/photo/$value","keep",,"Remove-MgGroupPhotoContent","Remove-MgGroupPhotoContent" +"DELETE","/groups/{param}/planner","suppress",,"Remove-MgGroupPlanner","no oracle row for DELETE /groups/{param}/planner and 'Remove-MgGroupPlanner' unshipped" +"DELETE","/groups/{param}/planner/plans/{param}","suppress",,"Remove-MgGroupPlannerPlan","no oracle row for DELETE /groups/{param}/planner/plans/{param} and 'Remove-MgGroupPlannerPlan' unshipped" +"DELETE","/groups/{param}/planner/plans/{param}/buckets/{param}","suppress",,"Remove-MgGroupPlannerPlanBucket","no oracle row for DELETE /groups/{param}/planner/plans/{param}/buckets/{param} and 'Remove-MgGroupPlannerPlanBucket' unshipped" +"DELETE","/groups/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}","suppress",,"Remove-MgGroupPlannerPlanBucketTask","no oracle row for DELETE /groups/{param}/planner/plans/{param}/buckets/{param}/tasks/{param} and 'Remove-MgGroupPlannerPlanBucketTask' unshipped" +"DELETE","/groups/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/assignedToTaskBoardFormat","suppress",,"Remove-MgGroupPlannerPlanBucketTaskAssignedToTaskBoardFormat","no oracle row for DELETE /groups/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/assignedToTaskBoardFormat and 'Remove-MgGroupPlannerPlanBucketTaskAssignedToTaskBoardFormat' unshipped" +"DELETE","/groups/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/bucketTaskBoardFormat","suppress",,"Remove-MgGroupPlannerPlanBucketTaskBucketTaskBoardFormat","no oracle row for DELETE /groups/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/bucketTaskBoardFormat and 'Remove-MgGroupPlannerPlanBucketTaskBucketTaskBoardFormat' unshipped" +"DELETE","/groups/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/details","suppress",,"Remove-MgGroupPlannerPlanBucketTaskDetail","no oracle row for DELETE /groups/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/details and 'Remove-MgGroupPlannerPlanBucketTaskDetail' unshipped" +"DELETE","/groups/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/progressTaskBoardFormat","suppress",,"Remove-MgGroupPlannerPlanBucketTaskProgressTaskBoardFormat","no oracle row for DELETE /groups/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/progressTaskBoardFormat and 'Remove-MgGroupPlannerPlanBucketTaskProgressTaskBoardFormat' unshipped" +"DELETE","/groups/{param}/planner/plans/{param}/details","keep",,"Remove-MgGroupPlannerPlanDetail","Remove-MgGroupPlannerPlanDetail" +"DELETE","/groups/{param}/planner/plans/{param}/tasks/{param}","suppress",,"Remove-MgGroupPlannerPlanTask","no oracle row for DELETE /groups/{param}/planner/plans/{param}/tasks/{param} and 'Remove-MgGroupPlannerPlanTask' unshipped" +"DELETE","/groups/{param}/planner/plans/{param}/tasks/{param}/assignedToTaskBoardFormat","suppress",,"Remove-MgGroupPlannerPlanTaskAssignedToTaskBoardFormat","no oracle row for DELETE /groups/{param}/planner/plans/{param}/tasks/{param}/assignedToTaskBoardFormat and 'Remove-MgGroupPlannerPlanTaskAssignedToTaskBoardFormat' unshipped" +"DELETE","/groups/{param}/planner/plans/{param}/tasks/{param}/bucketTaskBoardFormat","suppress",,"Remove-MgGroupPlannerPlanTaskBucketTaskBoardFormat","no oracle row for DELETE /groups/{param}/planner/plans/{param}/tasks/{param}/bucketTaskBoardFormat and 'Remove-MgGroupPlannerPlanTaskBucketTaskBoardFormat' unshipped" +"DELETE","/groups/{param}/planner/plans/{param}/tasks/{param}/details","suppress",,"Remove-MgGroupPlannerPlanTaskDetail","no oracle row for DELETE /groups/{param}/planner/plans/{param}/tasks/{param}/details and 'Remove-MgGroupPlannerPlanTaskDetail' unshipped" +"DELETE","/groups/{param}/planner/plans/{param}/tasks/{param}/progressTaskBoardFormat","suppress",,"Remove-MgGroupPlannerPlanTaskProgressTaskBoardFormat","no oracle row for DELETE /groups/{param}/planner/plans/{param}/tasks/{param}/progressTaskBoardFormat and 'Remove-MgGroupPlannerPlanTaskProgressTaskBoardFormat' unshipped" +"DELETE","/groups/{param}/rejectedSenders/{param}/$ref","rename","GroupRejectedSenderDirectoryObjectByRef","Remove-MgGroupRejectedSenderByRef","Remove-MgGroupRejectedSenderDirectoryObjectByRef" +"DELETE","/groups/{param}/settings/{param}","keep",,"Remove-MgGroupSetting","Remove-MgGroupSetting" +"DELETE","/groups/{param}/sites/{param}/analytics","keep",,"Remove-MgGroupSiteAnalytic","Remove-MgGroupSiteAnalytic" +"DELETE","/groups/{param}/sites/{param}/analytics/itemActivityStats/{param}","keep",,"Remove-MgGroupSiteAnalyticItemActivityStat","Remove-MgGroupSiteAnalyticItemActivityStat" +"DELETE","/groups/{param}/sites/{param}/analytics/itemActivityStats/{param}/activities/{param}","keep",,"Remove-MgGroupSiteAnalyticItemActivityStatActivity","Remove-MgGroupSiteAnalyticItemActivityStatActivity" +"DELETE","/groups/{param}/sites/{param}/analytics/itemActivityStats/{param}/activities/{param}/driveItem/$value","keep",,"Remove-MgGroupSiteAnalyticItemActivityStatActivityDriveItemContent","Remove-MgGroupSiteAnalyticItemActivityStatActivityDriveItemContent" +"DELETE","/groups/{param}/sites/{param}/columns/{param}","keep",,"Remove-MgGroupSiteColumn","Remove-MgGroupSiteColumn" +"DELETE","/groups/{param}/sites/{param}/contentTypes/{param}","keep",,"Remove-MgGroupSiteContentType","Remove-MgGroupSiteContentType" +"DELETE","/groups/{param}/sites/{param}/contentTypes/{param}/columnLinks/{param}","keep",,"Remove-MgGroupSiteContentTypeColumnLink","Remove-MgGroupSiteContentTypeColumnLink" +"DELETE","/groups/{param}/sites/{param}/contentTypes/{param}/columns/{param}","keep",,"Remove-MgGroupSiteContentTypeColumn","Remove-MgGroupSiteContentTypeColumn" +"DELETE","/groups/{param}/sites/{param}/lists/{param}","keep",,"Remove-MgGroupSiteList","Remove-MgGroupSiteList" +"DELETE","/groups/{param}/sites/{param}/lists/{param}/columns/{param}","keep",,"Remove-MgGroupSiteListColumn","Remove-MgGroupSiteListColumn" +"DELETE","/groups/{param}/sites/{param}/lists/{param}/contentTypes/{param}","keep",,"Remove-MgGroupSiteListContentType","Remove-MgGroupSiteListContentType" +"DELETE","/groups/{param}/sites/{param}/lists/{param}/contentTypes/{param}/columnLinks/{param}","keep",,"Remove-MgGroupSiteListContentTypeColumnLink","Remove-MgGroupSiteListContentTypeColumnLink" +"DELETE","/groups/{param}/sites/{param}/lists/{param}/contentTypes/{param}/columns/{param}","keep",,"Remove-MgGroupSiteListContentTypeColumn","Remove-MgGroupSiteListContentTypeColumn" +"DELETE","/groups/{param}/sites/{param}/lists/{param}/items/{param}","keep",,"Remove-MgGroupSiteListItem","Remove-MgGroupSiteListItem" +"DELETE","/groups/{param}/sites/{param}/lists/{param}/items/{param}/documentSetVersions/{param}","keep",,"Remove-MgGroupSiteListItemDocumentSetVersion","Remove-MgGroupSiteListItemDocumentSetVersion" +"DELETE","/groups/{param}/sites/{param}/lists/{param}/items/{param}/documentSetVersions/{param}/fields","keep",,"Remove-MgGroupSiteListItemDocumentSetVersionField","Remove-MgGroupSiteListItemDocumentSetVersionField" +"DELETE","/groups/{param}/sites/{param}/lists/{param}/items/{param}/driveItem/$value","keep",,"Remove-MgGroupSiteListItemDriveItemContent","Remove-MgGroupSiteListItemDriveItemContent" +"DELETE","/groups/{param}/sites/{param}/lists/{param}/items/{param}/fields","keep",,"Remove-MgGroupSiteListItemField","Remove-MgGroupSiteListItemField" +"DELETE","/groups/{param}/sites/{param}/lists/{param}/items/{param}/permissions/{param}","keep",,"Remove-MgGroupSiteListItemPermission","Remove-MgGroupSiteListItemPermission" +"DELETE","/groups/{param}/sites/{param}/lists/{param}/items/{param}/versions/{param}","keep",,"Remove-MgGroupSiteListItemVersion","Remove-MgGroupSiteListItemVersion" +"DELETE","/groups/{param}/sites/{param}/lists/{param}/items/{param}/versions/{param}/fields","keep",,"Remove-MgGroupSiteListItemVersionField","Remove-MgGroupSiteListItemVersionField" +"DELETE","/groups/{param}/sites/{param}/lists/{param}/operations/{param}","keep",,"Remove-MgGroupSiteListOperation","Remove-MgGroupSiteListOperation" +"DELETE","/groups/{param}/sites/{param}/lists/{param}/permissions/{param}","keep",,"Remove-MgGroupSiteListPermission","Remove-MgGroupSiteListPermission" +"DELETE","/groups/{param}/sites/{param}/lists/{param}/subscriptions/{param}","keep",,"Remove-MgGroupSiteListSubscription","Remove-MgGroupSiteListSubscription" +"DELETE","/groups/{param}/sites/{param}/onenote","keep",,"Remove-MgGroupSiteOnenote","Remove-MgGroupSiteOnenote" +"DELETE","/groups/{param}/sites/{param}/onenote/notebooks/{param}","keep",,"Remove-MgGroupSiteOnenoteNotebook","Remove-MgGroupSiteOnenoteNotebook" +"DELETE","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}","keep",,"Remove-MgGroupSiteOnenoteNotebookSectionGroup","Remove-MgGroupSiteOnenoteNotebookSectionGroup" +"DELETE","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}","keep",,"Remove-MgGroupSiteOnenoteNotebookSectionGroupSection","Remove-MgGroupSiteOnenoteNotebookSectionGroupSection" +"DELETE","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}","keep",,"Remove-MgGroupSiteOnenoteNotebookSectionGroupSectionPage","Remove-MgGroupSiteOnenoteNotebookSectionGroupSectionPage" +"DELETE","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}/$value","keep",,"Remove-MgGroupSiteOnenoteNotebookSectionGroupSectionPageContent","Remove-MgGroupSiteOnenoteNotebookSectionGroupSectionPageContent" +"DELETE","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sections/{param}","keep",,"Remove-MgGroupSiteOnenoteNotebookSection","Remove-MgGroupSiteOnenoteNotebookSection" +"DELETE","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}","keep",,"Remove-MgGroupSiteOnenoteNotebookSectionPage","Remove-MgGroupSiteOnenoteNotebookSectionPage" +"DELETE","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}/$value","keep",,"Remove-MgGroupSiteOnenoteNotebookSectionPageContent","Remove-MgGroupSiteOnenoteNotebookSectionPageContent" +"DELETE","/groups/{param}/sites/{param}/onenote/operations/{param}","keep",,"Remove-MgGroupSiteOnenoteOperation","Remove-MgGroupSiteOnenoteOperation" +"DELETE","/groups/{param}/sites/{param}/onenote/pages/{param}","keep",,"Remove-MgGroupSiteOnenotePage","Remove-MgGroupSiteOnenotePage" +"DELETE","/groups/{param}/sites/{param}/onenote/pages/{param}/$value","keep",,"Remove-MgGroupSiteOnenotePageContent","Remove-MgGroupSiteOnenotePageContent" +"DELETE","/groups/{param}/sites/{param}/onenote/resources/{param}","keep",,"Remove-MgGroupSiteOnenoteResource","Remove-MgGroupSiteOnenoteResource" +"DELETE","/groups/{param}/sites/{param}/onenote/resources/{param}/$value","keep",,"Remove-MgGroupSiteOnenoteResourceContent","Remove-MgGroupSiteOnenoteResourceContent" +"DELETE","/groups/{param}/sites/{param}/onenote/sectionGroups/{param}","keep",,"Remove-MgGroupSiteOnenoteSectionGroup","Remove-MgGroupSiteOnenoteSectionGroup" +"DELETE","/groups/{param}/sites/{param}/onenote/sectionGroups/{param}/sections/{param}","keep",,"Remove-MgGroupSiteOnenoteSectionGroupSection","Remove-MgGroupSiteOnenoteSectionGroupSection" +"DELETE","/groups/{param}/sites/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}","keep",,"Remove-MgGroupSiteOnenoteSectionGroupSectionPage","Remove-MgGroupSiteOnenoteSectionGroupSectionPage" +"DELETE","/groups/{param}/sites/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}/$value","keep",,"Remove-MgGroupSiteOnenoteSectionGroupSectionPageContent","Remove-MgGroupSiteOnenoteSectionGroupSectionPageContent" +"DELETE","/groups/{param}/sites/{param}/onenote/sections/{param}","keep",,"Remove-MgGroupSiteOnenoteSection","Remove-MgGroupSiteOnenoteSection" +"DELETE","/groups/{param}/sites/{param}/onenote/sections/{param}/pages/{param}","keep",,"Remove-MgGroupSiteOnenoteSectionPage","Remove-MgGroupSiteOnenoteSectionPage" +"DELETE","/groups/{param}/sites/{param}/onenote/sections/{param}/pages/{param}/$value","keep",,"Remove-MgGroupSiteOnenoteSectionPageContent","Remove-MgGroupSiteOnenoteSectionPageContent" +"DELETE","/groups/{param}/sites/{param}/operations/{param}","keep",,"Remove-MgGroupSiteOperation","Remove-MgGroupSiteOperation" +"DELETE","/groups/{param}/sites/{param}/pages/{param}","keep",,"Remove-MgGroupSitePage","Remove-MgGroupSitePage" +"DELETE","/groups/{param}/sites/{param}/permissions/{param}","keep",,"Remove-MgGroupSitePermission","Remove-MgGroupSitePermission" +"DELETE","/groups/{param}/sites/{param}/termStore","keep",,"Remove-MgGroupSiteTermStore","Remove-MgGroupSiteTermStore" +"DELETE","/groups/{param}/sites/{param}/termStore/groups/{param}","keep",,"Remove-MgGroupSiteTermStoreGroup","Remove-MgGroupSiteTermStoreGroup" +"DELETE","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}","keep",,"Remove-MgGroupSiteTermStoreGroupSet","Remove-MgGroupSiteTermStoreGroupSet" +"DELETE","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/children/{param}","keep",,"Remove-MgGroupSiteTermStoreGroupSetChild","Remove-MgGroupSiteTermStoreGroupSetChild" +"DELETE","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/children/{param}/children/{param}/relations/{param}","keep",,"Remove-MgGroupSiteTermStoreGroupSetChildRelation","Remove-MgGroupSiteTermStoreGroupSetChildRelation" +"DELETE","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/parentGroup","keep",,"Remove-MgGroupSiteTermStoreGroupSetParentGroup","Remove-MgGroupSiteTermStoreGroupSetParentGroup" +"DELETE","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/relations/{param}","keep",,"Remove-MgGroupSiteTermStoreGroupSetRelation","Remove-MgGroupSiteTermStoreGroupSetRelation" +"DELETE","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}","keep",,"Remove-MgGroupSiteTermStoreGroupSetTerm","Remove-MgGroupSiteTermStoreGroupSetTerm" +"DELETE","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/children/{param}","keep",,"Remove-MgGroupSiteTermStoreGroupSetTermChild","Remove-MgGroupSiteTermStoreGroupSetTermChild" +"DELETE","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/children/{param}/relations/{param}","keep",,"Remove-MgGroupSiteTermStoreGroupSetTermChildRelation","Remove-MgGroupSiteTermStoreGroupSetTermChildRelation" +"DELETE","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/relations/{param}","keep",,"Remove-MgGroupSiteTermStoreGroupSetTermRelation","Remove-MgGroupSiteTermStoreGroupSetTermRelation" +"DELETE","/groups/{param}/sites/{param}/termStore/sets/{param}","keep",,"Remove-MgGroupSiteTermStoreSet","Remove-MgGroupSiteTermStoreSet" +"DELETE","/groups/{param}/sites/{param}/termStore/sets/{param}/children/{param}","keep",,"Remove-MgGroupSiteTermStoreSetChild","Remove-MgGroupSiteTermStoreSetChild" +"DELETE","/groups/{param}/sites/{param}/termStore/sets/{param}/children/{param}/children/{param}/relations/{param}","keep",,"Remove-MgGroupSiteTermStoreSetChildRelation","Remove-MgGroupSiteTermStoreSetChildRelation" +"DELETE","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup","keep",,"Remove-MgGroupSiteTermStoreSetParentGroup","Remove-MgGroupSiteTermStoreSetParentGroup" +"DELETE","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}","keep",,"Remove-MgGroupSiteTermStoreSetParentGroupSet","Remove-MgGroupSiteTermStoreSetParentGroupSet" +"DELETE","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/children/{param}","keep",,"Remove-MgGroupSiteTermStoreSetParentGroupSetChild","Remove-MgGroupSiteTermStoreSetParentGroupSetChild" +"DELETE","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/children/{param}/children/{param}/relations/{param}","keep",,"Remove-MgGroupSiteTermStoreSetParentGroupSetChildRelation","Remove-MgGroupSiteTermStoreSetParentGroupSetChildRelation" +"DELETE","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/relations/{param}","keep",,"Remove-MgGroupSiteTermStoreSetParentGroupSetRelation","Remove-MgGroupSiteTermStoreSetParentGroupSetRelation" +"DELETE","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}","keep",,"Remove-MgGroupSiteTermStoreSetParentGroupSetTerm","Remove-MgGroupSiteTermStoreSetParentGroupSetTerm" +"DELETE","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/children/{param}","keep",,"Remove-MgGroupSiteTermStoreSetParentGroupSetTermChild","Remove-MgGroupSiteTermStoreSetParentGroupSetTermChild" +"DELETE","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/children/{param}/relations/{param}","keep",,"Remove-MgGroupSiteTermStoreSetParentGroupSetTermChildRelation","Remove-MgGroupSiteTermStoreSetParentGroupSetTermChildRelation" +"DELETE","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/relations/{param}","keep",,"Remove-MgGroupSiteTermStoreSetParentGroupSetTermRelation","Remove-MgGroupSiteTermStoreSetParentGroupSetTermRelation" +"DELETE","/groups/{param}/sites/{param}/termStore/sets/{param}/relations/{param}","keep",,"Remove-MgGroupSiteTermStoreSetRelation","Remove-MgGroupSiteTermStoreSetRelation" +"DELETE","/groups/{param}/sites/{param}/termStore/sets/{param}/terms/{param}","keep",,"Remove-MgGroupSiteTermStoreSetTerm","Remove-MgGroupSiteTermStoreSetTerm" +"DELETE","/groups/{param}/sites/{param}/termStore/sets/{param}/terms/{param}/children/{param}","keep",,"Remove-MgGroupSiteTermStoreSetTermChild","Remove-MgGroupSiteTermStoreSetTermChild" +"DELETE","/groups/{param}/sites/{param}/termStore/sets/{param}/terms/{param}/children/{param}/relations/{param}","keep",,"Remove-MgGroupSiteTermStoreSetTermChildRelation","Remove-MgGroupSiteTermStoreSetTermChildRelation" +"DELETE","/groups/{param}/sites/{param}/termStore/sets/{param}/terms/{param}/relations/{param}","keep",,"Remove-MgGroupSiteTermStoreSetTermRelation","Remove-MgGroupSiteTermStoreSetTermRelation" +"DELETE","/groups/{param}/team","keep",,"Remove-MgGroupTeam","Remove-MgGroupTeam" +"DELETE","/groups/{param}/team/channels/{param}","keep",,"Remove-MgGroupTeamChannel","Remove-MgGroupTeamChannel" +"DELETE","/groups/{param}/team/channels/{param}/allMembers/{param}","rename","GroupTeamChannelMember","Remove-MgGroupTeamChannelAllMember","Remove-MgGroupTeamChannelMember" +"DELETE","/groups/{param}/team/channels/{param}/filesFolder/$value","keep",,"Remove-MgGroupTeamChannelFileFolderContent","Remove-MgGroupTeamChannelFileFolderContent" +"DELETE","/groups/{param}/team/channels/{param}/members/{param}","suppress",,"Remove-MgGroupTeamChannelMember","no oracle row; 'Remove-MgGroupTeamChannelMember' ships from sibling family (see rename entries for this noun)" +"DELETE","/groups/{param}/team/channels/{param}/messages/{param}","keep",,"Remove-MgGroupTeamChannelMessage","Remove-MgGroupTeamChannelMessage" +"DELETE","/groups/{param}/team/channels/{param}/messages/{param}/hostedContents/{param}","keep",,"Remove-MgGroupTeamChannelMessageHostedContent","Remove-MgGroupTeamChannelMessageHostedContent" +"DELETE","/groups/{param}/team/channels/{param}/messages/{param}/hostedContents/{param}/$value","suppress",,"Remove-MgGroupTeamChannelMessageHostedContentContent","no oracle row for DELETE /groups/{param}/team/channels/{param}/messages/{param}/hostedContents/{param}/$value and 'Remove-MgGroupTeamChannelMessageHostedContentContent' unshipped" +"DELETE","/groups/{param}/team/channels/{param}/messages/{param}/replies/{param}","keep",,"Remove-MgGroupTeamChannelMessageReply","Remove-MgGroupTeamChannelMessageReply" +"DELETE","/groups/{param}/team/channels/{param}/messages/{param}/replies/{param}/hostedContents/{param}","keep",,"Remove-MgGroupTeamChannelMessageReplyHostedContent","Remove-MgGroupTeamChannelMessageReplyHostedContent" +"DELETE","/groups/{param}/team/channels/{param}/messages/{param}/replies/{param}/hostedContents/{param}/$value","suppress",,"Remove-MgGroupTeamChannelMessageReplyHostedContentContent","no oracle row for DELETE /groups/{param}/team/channels/{param}/messages/{param}/replies/{param}/hostedContents/{param}/$value and 'Remove-MgGroupTeamChannelMessageReplyHostedContentContent' unshipped" +"DELETE","/groups/{param}/team/channels/{param}/sharedWithTeams/{param}","keep",,"Remove-MgGroupTeamChannelSharedWithTeam","Remove-MgGroupTeamChannelSharedWithTeam" +"DELETE","/groups/{param}/team/channels/{param}/tabs/{param}","keep",,"Remove-MgGroupTeamChannelTab","Remove-MgGroupTeamChannelTab" +"DELETE","/groups/{param}/team/installedApps/{param}","keep",,"Remove-MgGroupTeamInstalledApp","Remove-MgGroupTeamInstalledApp" +"DELETE","/groups/{param}/team/members/{param}","keep",,"Remove-MgGroupTeamMember","Remove-MgGroupTeamMember" +"DELETE","/groups/{param}/team/operations/{param}","keep",,"Remove-MgGroupTeamOperation","Remove-MgGroupTeamOperation" +"DELETE","/groups/{param}/team/permissionGrants/{param}","keep",,"Remove-MgGroupTeamPermissionGrant","Remove-MgGroupTeamPermissionGrant" +"DELETE","/groups/{param}/team/photo/$value","keep",,"Remove-MgGroupTeamPhotoContent","Remove-MgGroupTeamPhotoContent" +"DELETE","/groups/{param}/team/primaryChannel","keep",,"Remove-MgGroupTeamPrimaryChannel","Remove-MgGroupTeamPrimaryChannel" +"DELETE","/groups/{param}/team/primaryChannel/allMembers/{param}","rename","GroupTeamPrimaryChannelMember","Remove-MgGroupTeamPrimaryChannelAllMember","Remove-MgGroupTeamPrimaryChannelMember" +"DELETE","/groups/{param}/team/primaryChannel/filesFolder/$value","keep",,"Remove-MgGroupTeamPrimaryChannelFileFolderContent","Remove-MgGroupTeamPrimaryChannelFileFolderContent" +"DELETE","/groups/{param}/team/primaryChannel/members/{param}","suppress",,"Remove-MgGroupTeamPrimaryChannelMember","no oracle row; 'Remove-MgGroupTeamPrimaryChannelMember' ships from sibling family (see rename entries for this noun)" +"DELETE","/groups/{param}/team/primaryChannel/messages/{param}","keep",,"Remove-MgGroupTeamPrimaryChannelMessage","Remove-MgGroupTeamPrimaryChannelMessage" +"DELETE","/groups/{param}/team/primaryChannel/messages/{param}/hostedContents/{param}","keep",,"Remove-MgGroupTeamPrimaryChannelMessageHostedContent","Remove-MgGroupTeamPrimaryChannelMessageHostedContent" +"DELETE","/groups/{param}/team/primaryChannel/messages/{param}/hostedContents/{param}/$value","suppress",,"Remove-MgGroupTeamPrimaryChannelMessageHostedContentContent","no oracle row for DELETE /groups/{param}/team/primaryChannel/messages/{param}/hostedContents/{param}/$value and 'Remove-MgGroupTeamPrimaryChannelMessageHostedContentContent' unshipped" +"DELETE","/groups/{param}/team/primaryChannel/messages/{param}/replies/{param}","keep",,"Remove-MgGroupTeamPrimaryChannelMessageReply","Remove-MgGroupTeamPrimaryChannelMessageReply" +"DELETE","/groups/{param}/team/primaryChannel/messages/{param}/replies/{param}/hostedContents/{param}","keep",,"Remove-MgGroupTeamPrimaryChannelMessageReplyHostedContent","Remove-MgGroupTeamPrimaryChannelMessageReplyHostedContent" +"DELETE","/groups/{param}/team/primaryChannel/messages/{param}/replies/{param}/hostedContents/{param}/$value","suppress",,"Remove-MgGroupTeamPrimaryChannelMessageReplyHostedContentContent","no oracle row for DELETE /groups/{param}/team/primaryChannel/messages/{param}/replies/{param}/hostedContents/{param}/$value and 'Remove-MgGroupTeamPrimaryChannelMessageReplyHostedContentContent' unshipped" +"DELETE","/groups/{param}/team/primaryChannel/sharedWithTeams/{param}","keep",,"Remove-MgGroupTeamPrimaryChannelSharedWithTeam","Remove-MgGroupTeamPrimaryChannelSharedWithTeam" +"DELETE","/groups/{param}/team/primaryChannel/tabs/{param}","keep",,"Remove-MgGroupTeamPrimaryChannelTab","Remove-MgGroupTeamPrimaryChannelTab" +"DELETE","/groups/{param}/team/schedule","keep",,"Remove-MgGroupTeamSchedule","Remove-MgGroupTeamSchedule" +"DELETE","/groups/{param}/team/schedule/dayNotes/{param}","keep",,"Remove-MgGroupTeamScheduleDayNote","Remove-MgGroupTeamScheduleDayNote" +"DELETE","/groups/{param}/team/schedule/offerShiftRequests/{param}","keep",,"Remove-MgGroupTeamScheduleOfferShiftRequest","Remove-MgGroupTeamScheduleOfferShiftRequest" +"DELETE","/groups/{param}/team/schedule/openShiftChangeRequests/{param}","keep",,"Remove-MgGroupTeamScheduleOpenShiftChangeRequest","Remove-MgGroupTeamScheduleOpenShiftChangeRequest" +"DELETE","/groups/{param}/team/schedule/openShifts/{param}","keep",,"Remove-MgGroupTeamScheduleOpenShift","Remove-MgGroupTeamScheduleOpenShift" +"DELETE","/groups/{param}/team/schedule/schedulingGroups/{param}","keep",,"Remove-MgGroupTeamScheduleSchedulingGroup","Remove-MgGroupTeamScheduleSchedulingGroup" +"DELETE","/groups/{param}/team/schedule/shifts/{param}","keep",,"Remove-MgGroupTeamScheduleShift","Remove-MgGroupTeamScheduleShift" +"DELETE","/groups/{param}/team/schedule/swapShiftsChangeRequests/{param}","keep",,"Remove-MgGroupTeamScheduleSwapShiftChangeRequest","Remove-MgGroupTeamScheduleSwapShiftChangeRequest" +"DELETE","/groups/{param}/team/schedule/timeCards/{param}","keep",,"Remove-MgGroupTeamScheduleTimeCard","Remove-MgGroupTeamScheduleTimeCard" +"DELETE","/groups/{param}/team/schedule/timeOffReasons/{param}","keep",,"Remove-MgGroupTeamScheduleTimeOffReason","Remove-MgGroupTeamScheduleTimeOffReason" +"DELETE","/groups/{param}/team/schedule/timeOffRequests/{param}","keep",,"Remove-MgGroupTeamScheduleTimeOffRequest","Remove-MgGroupTeamScheduleTimeOffRequest" +"DELETE","/groups/{param}/team/schedule/timesOff/{param}","keep",,"Remove-MgGroupTeamScheduleTimeOff","Remove-MgGroupTeamScheduleTimeOff" +"DELETE","/groups/{param}/team/tags/{param}","keep",,"Remove-MgGroupTeamTag","Remove-MgGroupTeamTag" +"DELETE","/groups/{param}/team/tags/{param}/members/{param}","keep",,"Remove-MgGroupTeamTagMember","Remove-MgGroupTeamTagMember" +"DELETE","/groups/{param}/threads/{param}","keep",,"Remove-MgGroupThread","Remove-MgGroupThread" +"DELETE","/groups/{param}/threads/{param}/posts/{param}/attachments/{param}","keep",,"Remove-MgGroupThreadPostAttachment","Remove-MgGroupThreadPostAttachment" +"DELETE","/groups/{param}/threads/{param}/posts/{param}/extensions/{param}","keep",,"Remove-MgGroupThreadPostExtension","Remove-MgGroupThreadPostExtension" +"DELETE","/groups/{param}/threads/{param}/posts/{param}/inReplyTo/attachments/{param}","keep",,"Remove-MgGroupThreadPostInReplyToAttachment","Remove-MgGroupThreadPostInReplyToAttachment" +"DELETE","/groups/{param}/threads/{param}/posts/{param}/inReplyTo/extensions/{param}","keep",,"Remove-MgGroupThreadPostInReplyToExtension","Remove-MgGroupThreadPostInReplyToExtension" +"DELETE","/groupSettingTemplates/{param}","keep",,"Remove-MgGroupSettingTemplate","Remove-MgGroupSettingTemplateGroupSettingTemplate" +"DELETE","/identity/apiConnectors/{param}","keep",,"Remove-MgIdentityApiConnector","Remove-MgIdentityApiConnector" +"DELETE","/identity/authenticationEventListeners/{param}","keep",,"Remove-MgIdentityAuthenticationEventListener","Remove-MgIdentityAuthenticationEventListener" +"DELETE","/identity/authenticationEventsFlows/{param}","keep",,"Remove-MgIdentityAuthenticationEventFlow","Remove-MgIdentityAuthenticationEventFlow" +"DELETE","/identity/authenticationEventsFlows/{param}/conditions/applications/includeApplications/{param}","rename","IdentityAuthenticationEventFlowIncludeApplication","Remove-MgIdentityAuthenticationEventFlowConditionApplicationIncludeApplication","Remove-MgIdentityAuthenticationEventFlowIncludeApplication" +"DELETE","/identity/b2xUserFlows/{param}","rename","IdentityB2XUserFlow","Remove-MgIdentityB2xUserFlow","Remove-MgIdentityB2XUserFlow" +"DELETE","/identity/b2xUserFlows/{param}/apiConnectorConfiguration/postAttributeCollection","rename","IdentityB2XUserFlowPostAttributeCollection","Remove-MgIdentityB2xUserFlowApiConnectorConfigurationPostAttributeCollection","Remove-MgIdentityB2XUserFlowPostAttributeCollection" +"DELETE","/identity/b2xUserFlows/{param}/apiConnectorConfiguration/postAttributeCollection/$ref","rename","IdentityB2XUserFlowPostAttributeCollectionByRef","Remove-MgIdentityB2xUserFlowApiConnectorConfigurationPostAttributeCollectionByRef","Remove-MgIdentityB2XUserFlowPostAttributeCollectionByRef" +"DELETE","/identity/b2xUserFlows/{param}/apiConnectorConfiguration/postFederationSignup","rename","IdentityB2XUserFlowPostFederationSignup","Remove-MgIdentityB2xUserFlowApiConnectorConfigurationPostFederationSignup","Remove-MgIdentityB2XUserFlowPostFederationSignup" +"DELETE","/identity/b2xUserFlows/{param}/apiConnectorConfiguration/postFederationSignup/$ref","rename","IdentityB2XUserFlowPostFederationSignupByRef","Remove-MgIdentityB2xUserFlowApiConnectorConfigurationPostFederationSignupByRef","Remove-MgIdentityB2XUserFlowPostFederationSignupByRef" +"DELETE","/identity/b2xUserFlows/{param}/languages/{param}","rename","IdentityB2XUserFlowLanguage","Remove-MgIdentityB2xUserFlowLanguage","Remove-MgIdentityB2XUserFlowLanguage" +"DELETE","/identity/b2xUserFlows/{param}/languages/{param}/defaultPages/{param}","rename","IdentityB2XUserFlowLanguageDefaultPage","Remove-MgIdentityB2xUserFlowLanguageDefaultPage","Remove-MgIdentityB2XUserFlowLanguageDefaultPage" +"DELETE","/identity/b2xUserFlows/{param}/languages/{param}/defaultPages/{param}/$value","rename","IdentityB2XUserFlowLanguageDefaultPageContent","Remove-MgIdentityB2xUserFlowLanguageDefaultPageContent","Remove-MgIdentityB2XUserFlowLanguageDefaultPageContent" +"DELETE","/identity/b2xUserFlows/{param}/languages/{param}/overridesPages/{param}","rename","IdentityB2XUserFlowLanguageOverridePage","Remove-MgIdentityB2xUserFlowLanguageOverridePage","Remove-MgIdentityB2XUserFlowLanguageOverridePage" +"DELETE","/identity/b2xUserFlows/{param}/languages/{param}/overridesPages/{param}/$value","rename","IdentityB2XUserFlowLanguageOverridePageContent","Remove-MgIdentityB2xUserFlowLanguageOverridePageContent","Remove-MgIdentityB2XUserFlowLanguageOverridePageContent" +"DELETE","/identity/b2xUserFlows/{param}/userAttributeAssignments/{param}","rename","IdentityB2XUserFlowUserAttributeAssignment","Remove-MgIdentityB2xUserFlowUserAttributeAssignment","Remove-MgIdentityB2XUserFlowUserAttributeAssignment" +"DELETE","/identity/b2xUserFlows/{param}/userFlowIdentityProviders/{param}/$ref","rename","IdentityB2XUserFlowIdentityProviderBaseByRef","Remove-MgIdentityB2xUserFlowUserFlowIdentityProviderByRef","Remove-MgIdentityB2XUserFlowIdentityProviderBaseByRef" +"DELETE","/identity/conditionalAccess/authenticationContextClassReferences/{param}","keep",,"Remove-MgIdentityConditionalAccessAuthenticationContextClassReference","Remove-MgIdentityConditionalAccessAuthenticationContextClassReference" +"DELETE","/identity/conditionalAccess/authenticationStrength","suppress",,"Remove-MgIdentityConditionalAccessAuthenticationStrength","no oracle row for DELETE /identity/conditionalAccess/authenticationStrength and 'Remove-MgIdentityConditionalAccessAuthenticationStrength' unshipped" +"DELETE","/identity/conditionalAccess/authenticationStrength/authenticationMethodModes/{param}","suppress",,"Remove-MgIdentityConditionalAccessAuthenticationStrengthAuthenticationMethodMode","no oracle row for DELETE /identity/conditionalAccess/authenticationStrength/authenticationMethodModes/{param} and 'Remove-MgIdentityConditionalAccessAuthenticationStrengthAuthenticationMethodMode' unshipped" +"DELETE","/identity/conditionalAccess/authenticationStrength/policies/{param}","suppress",,"Remove-MgIdentityConditionalAccessAuthenticationStrengthPolicy","no oracle row for DELETE /identity/conditionalAccess/authenticationStrength/policies/{param} and 'Remove-MgIdentityConditionalAccessAuthenticationStrengthPolicy' unshipped" +"DELETE","/identity/conditionalAccess/authenticationStrength/policies/{param}/combinationConfigurations/{param}","suppress",,"Remove-MgIdentityConditionalAccessAuthenticationStrengthPolicyCombinationConfiguration","no oracle row for DELETE /identity/conditionalAccess/authenticationStrength/policies/{param}/combinationConfigurations/{param} and 'Remove-MgIdentityConditionalAccessAuthenticationStrengthPolicyCombinationConfiguration' unshipped" +"DELETE","/identity/conditionalAccess/deletedItems","keep",,"Remove-MgIdentityConditionalAccessDeletedItem","Remove-MgIdentityConditionalAccessDeletedItem" +"DELETE","/identity/conditionalAccess/deletedItems/namedLocations/{param}","keep",,"Remove-MgIdentityConditionalAccessDeletedItemNamedLocation","Remove-MgIdentityConditionalAccessDeletedItemNamedLocation" +"DELETE","/identity/conditionalAccess/deletedItems/policies/{param}","keep",,"Remove-MgIdentityConditionalAccessDeletedItemPolicy","Remove-MgIdentityConditionalAccessDeletedItemPolicy" +"DELETE","/identity/conditionalAccess/namedLocations/{param}","keep",,"Remove-MgIdentityConditionalAccessNamedLocation","Remove-MgIdentityConditionalAccessNamedLocation" +"DELETE","/identity/conditionalAccess/policies/{param}","keep",,"Remove-MgIdentityConditionalAccessPolicy","Remove-MgIdentityConditionalAccessPolicy" +"DELETE","/identity/customAuthenticationExtensions/{param}","keep",,"Remove-MgIdentityCustomAuthenticationExtension","Remove-MgIdentityCustomAuthenticationExtension" +"DELETE","/identity/identityProviders/{param}","keep",,"Remove-MgIdentityProvider","Remove-MgIdentityProvider" +"DELETE","/identity/riskPrevention","keep",,"Remove-MgIdentityRiskPrevention","Remove-MgIdentityRiskPrevention" +"DELETE","/identity/riskPrevention/fraudProtectionProviders/{param}","keep",,"Remove-MgIdentityRiskPreventionFraudProtectionProvider","Remove-MgIdentityRiskPreventionFraudProtectionProvider" +"DELETE","/identity/riskPrevention/webApplicationFirewallProviders/{param}","keep",,"Remove-MgIdentityRiskPreventionWebApplicationFirewallProvider","Remove-MgIdentityRiskPreventionWebApplicationFirewallProvider" +"DELETE","/identity/riskPrevention/webApplicationFirewallVerifications/{param}","keep",,"Remove-MgIdentityRiskPreventionWebApplicationFirewallVerification","Remove-MgIdentityRiskPreventionWebApplicationFirewallVerification" +"DELETE","/identity/userFlowAttributes/{param}","keep",,"Remove-MgIdentityUserFlowAttribute","Remove-MgIdentityUserFlowAttribute" +"DELETE","/identity/verifiedId","keep",,"Remove-MgIdentityVerifiedId","Remove-MgIdentityVerifiedId" +"DELETE","/identity/verifiedId/profiles/{param}","keep",,"Remove-MgIdentityVerifiedIdProfile","Remove-MgIdentityVerifiedIdProfile" +"DELETE","/identityGovernance/accessReviews","suppress",,"Remove-MgIdentityGovernanceAccessReview","no oracle row for DELETE /identityGovernance/accessReviews and 'Remove-MgIdentityGovernanceAccessReview' unshipped" +"DELETE","/identityGovernance/accessReviews/definitions/{param}","keep",,"Remove-MgIdentityGovernanceAccessReviewDefinition","Remove-MgIdentityGovernanceAccessReviewDefinition" +"DELETE","/identityGovernance/accessReviews/definitions/{param}/instances/{param}","keep",,"Remove-MgIdentityGovernanceAccessReviewDefinitionInstance","Remove-MgIdentityGovernanceAccessReviewDefinitionInstance" +"DELETE","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/contactedReviewers/{param}","keep",,"Remove-MgIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewer","Remove-MgIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewer" +"DELETE","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/decisions/{param}","keep",,"Remove-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision","Remove-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision" +"DELETE","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/decisions/{param}/insights/{param}","keep",,"Remove-MgIdentityGovernanceAccessReviewDefinitionInstanceDecisionInsight","Remove-MgIdentityGovernanceAccessReviewDefinitionInstanceDecisionInsight" +"DELETE","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/stages/{param}","keep",,"Remove-MgIdentityGovernanceAccessReviewDefinitionInstanceStage","Remove-MgIdentityGovernanceAccessReviewDefinitionInstanceStage" +"DELETE","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/stages/{param}/decisions/{param}","keep",,"Remove-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision","Remove-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision" +"DELETE","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/stages/{param}/decisions/{param}/insights/{param}","keep",,"Remove-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionInsight","Remove-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionInsight" +"DELETE","/identityGovernance/accessReviews/historyDefinitions/{param}","keep",,"Remove-MgIdentityGovernanceAccessReviewHistoryDefinition","Remove-MgIdentityGovernanceAccessReviewHistoryDefinition" +"DELETE","/identityGovernance/accessReviews/historyDefinitions/{param}/instances/{param}","keep",,"Remove-MgIdentityGovernanceAccessReviewHistoryDefinitionInstance","Remove-MgIdentityGovernanceAccessReviewHistoryDefinitionInstance" +"DELETE","/identityGovernance/appConsent","suppress",,"Remove-MgIdentityGovernanceAppConsent","no oracle row for DELETE /identityGovernance/appConsent and 'Remove-MgIdentityGovernanceAppConsent' unshipped" +"DELETE","/identityGovernance/appConsent/appConsentRequests/{param}","rename","IdentityGovernanceAppConsentRequest","Remove-MgIdentityGovernanceAppConsentAppConsentRequest","Remove-MgIdentityGovernanceAppConsentRequest" +"DELETE","/identityGovernance/appConsent/appConsentRequests/{param}/userConsentRequests/{param}","rename","IdentityGovernanceAppConsentRequestUserConsentRequest","Remove-MgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequest","Remove-MgIdentityGovernanceAppConsentRequestUserConsentRequest" +"DELETE","/identityGovernance/appConsent/appConsentRequests/{param}/userConsentRequests/{param}/approval","rename","IdentityGovernanceAppConsentRequestUserConsentRequestApproval","Remove-MgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequestApproval","Remove-MgIdentityGovernanceAppConsentRequestUserConsentRequestApproval" +"DELETE","/identityGovernance/appConsent/appConsentRequests/{param}/userConsentRequests/{param}/approval/stages/{param}","rename","IdentityGovernanceAppConsentRequestUserConsentRequestApprovalStage","Remove-MgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequestApprovalStage","Remove-MgIdentityGovernanceAppConsentRequestUserConsentRequestApprovalStage" +"DELETE","/identityGovernance/entitlementManagement","suppress",,"Remove-MgIdentityGovernanceEntitlementManagement","no oracle row for DELETE /identityGovernance/entitlementManagement and 'Remove-MgIdentityGovernanceEntitlementManagement' unshipped" +"DELETE","/identityGovernance/entitlementManagement/accessPackageAssignmentApprovals/{param}","rename","EntitlementManagementAccessPackageAssignmentApproval","Remove-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentApproval","Remove-MgEntitlementManagementAccessPackageAssignmentApproval" +"DELETE","/identityGovernance/entitlementManagement/accessPackageAssignmentApprovals/{param}/stages/{param}","rename","EntitlementManagementAccessPackageAssignmentApprovalStage","Remove-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentApprovalStage","Remove-MgEntitlementManagementAccessPackageAssignmentApprovalStage" +"DELETE","/identityGovernance/entitlementManagement/accessPackages/{param}","rename","EntitlementManagementAccessPackage","Remove-MgIdentityGovernanceEntitlementManagementAccessPackage","Remove-MgEntitlementManagementAccessPackage" +"DELETE","/identityGovernance/entitlementManagement/accessPackages/{param}/assignmentPolicies/{param}","rename","EntitlementManagementAccessPackageAssignmentPolicy","Remove-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicy","Remove-MgEntitlementManagementAccessPackageAssignmentPolicy" +"DELETE","/identityGovernance/entitlementManagement/accessPackages/{param}/assignmentPolicies/{param}/customExtensionStageSettings/{param}","suppress",,"Remove-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyCustomExtensionStageSetting","no oracle row for DELETE /identityGovernance/entitlementManagement/accessPackages/{param}/assignmentPolicies/{param}/customExtensionStageSettings/{param} and 'Remove-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyCustomExtensionStageSetting' unshipped" +"DELETE","/identityGovernance/entitlementManagement/accessPackages/{param}/assignmentPolicies/{param}/questions/{param}","suppress",,"Remove-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyQuestion","no oracle row for DELETE /identityGovernance/entitlementManagement/accessPackages/{param}/assignmentPolicies/{param}/questions/{param} and 'Remove-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyQuestion' unshipped" +"DELETE","/identityGovernance/entitlementManagement/accessPackages/{param}/incompatibleAccessPackages/{param}/$ref","suppress",,"Remove-MgIdentityGovernanceEntitlementManagementAccessPackageIncompatibleAccessPackageByRef","no oracle row for DELETE /identityGovernance/entitlementManagement/accessPackages/{param}/incompatibleAccessPackages/{param}/$ref and 'Remove-MgIdentityGovernanceEntitlementManagementAccessPackageIncompatibleAccessPackageByRef' unshipped" +"DELETE","/identityGovernance/entitlementManagement/accessPackages/{param}/incompatibleGroups/{param}/$ref","suppress",,"Remove-MgIdentityGovernanceEntitlementManagementAccessPackageIncompatibleGroupByRef","no oracle row for DELETE /identityGovernance/entitlementManagement/accessPackages/{param}/incompatibleGroups/{param}/$ref and 'Remove-MgIdentityGovernanceEntitlementManagementAccessPackageIncompatibleGroupByRef' unshipped" +"DELETE","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}","rename","EntitlementManagementAccessPackageResourceRoleScope","Remove-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScope","Remove-MgEntitlementManagementAccessPackageResourceRoleScope" +"DELETE","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role","suppress",,"Remove-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRole","no oracle row for DELETE /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role and 'Remove-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRole' unshipped" +"DELETE","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource","suppress",,"Remove-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResource","no oracle row for DELETE /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource and 'Remove-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResource' unshipped" +"DELETE","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/roles/{param}","suppress",,"Remove-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceRole","no oracle row for DELETE /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/roles/{param} and 'Remove-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceRole' unshipped" +"DELETE","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/scopes/{param}","suppress",,"Remove-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScope","no oracle row for DELETE /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/scopes/{param} and 'Remove-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScope' unshipped" +"DELETE","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/scopes/{param}/resource","suppress",,"Remove-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScopeResource","no oracle row for DELETE /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/scopes/{param}/resource and 'Remove-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScopeResource' unshipped" +"DELETE","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/scopes/{param}/resource/roles/{param}","suppress",,"Remove-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScopeResourceRole","no oracle row for DELETE /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/scopes/{param}/resource/roles/{param} and 'Remove-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScopeResourceRole' unshipped" +"DELETE","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource","suppress",,"Remove-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResource","no oracle row for DELETE /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource and 'Remove-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResource' unshipped" +"DELETE","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/roles/{param}","suppress",,"Remove-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRole","no oracle row for DELETE /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/roles/{param} and 'Remove-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRole' unshipped" +"DELETE","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/roles/{param}/resource","suppress",,"Remove-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRoleResource","no oracle row for DELETE /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/roles/{param}/resource and 'Remove-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRoleResource' unshipped" +"DELETE","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/roles/{param}/resource/scopes/{param}","suppress",,"Remove-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRoleResourceScope","no oracle row for DELETE /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/roles/{param}/resource/scopes/{param} and 'Remove-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRoleResourceScope' unshipped" +"DELETE","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/scopes/{param}","suppress",,"Remove-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceScope","no oracle row for DELETE /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/scopes/{param} and 'Remove-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceScope' unshipped" +"DELETE","/identityGovernance/entitlementManagement/accessPackageSuggestions/{param}","rename","EntitlementManagementAccessPackageSuggestion","Remove-MgIdentityGovernanceEntitlementManagementAccessPackageSuggestion","Remove-MgEntitlementManagementAccessPackageSuggestion" +"DELETE","/identityGovernance/entitlementManagement/assignmentPolicies/{param}","rename","EntitlementManagementAssignmentPolicy","Remove-MgIdentityGovernanceEntitlementManagementAssignmentPolicy","Remove-MgEntitlementManagementAssignmentPolicy" +"DELETE","/identityGovernance/entitlementManagement/assignmentPolicies/{param}/customExtensionStageSettings/{param}","rename","EntitlementManagementAssignmentPolicyCustomExtensionStageSetting","Remove-MgIdentityGovernanceEntitlementManagementAssignmentPolicyCustomExtensionStageSetting","Remove-MgEntitlementManagementAssignmentPolicyCustomExtensionStageSetting" +"DELETE","/identityGovernance/entitlementManagement/assignmentPolicies/{param}/questions/{param}","rename","EntitlementManagementAssignmentPolicyQuestion","Remove-MgIdentityGovernanceEntitlementManagementAssignmentPolicyQuestion","Remove-MgEntitlementManagementAssignmentPolicyQuestion" +"DELETE","/identityGovernance/entitlementManagement/assignmentRequests/{param}","rename","EntitlementManagementAssignmentRequest","Remove-MgIdentityGovernanceEntitlementManagementAssignmentRequest","Remove-MgEntitlementManagementAssignmentRequest" +"DELETE","/identityGovernance/entitlementManagement/assignments/{param}","rename","EntitlementManagementAssignment","Remove-MgIdentityGovernanceEntitlementManagementAssignment","Remove-MgEntitlementManagementAssignment" +"DELETE","/identityGovernance/entitlementManagement/availableAccessPackages/{param}","rename","EntitlementManagementAvailableAccessPackage","Remove-MgIdentityGovernanceEntitlementManagementAvailableAccessPackage","Remove-MgEntitlementManagementAvailableAccessPackage" +"DELETE","/identityGovernance/entitlementManagement/catalogs/{param}","rename","EntitlementManagementCatalog","Remove-MgIdentityGovernanceEntitlementManagementCatalog","Remove-MgEntitlementManagementCatalog" +"DELETE","/identityGovernance/entitlementManagement/catalogs/{param}/customWorkflowExtensions/{param}","rename","EntitlementManagementCatalogCustomWorkflowExtension","Remove-MgIdentityGovernanceEntitlementManagementCatalogCustomWorkflowExtension","Remove-MgEntitlementManagementCatalogCustomWorkflowExtension" +"DELETE","/identityGovernance/entitlementManagement/catalogs/{param}/resourceRoles/{param}","rename","EntitlementManagementCatalogResourceRole","Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceRole","Remove-MgEntitlementManagementCatalogResourceRole" +"DELETE","/identityGovernance/entitlementManagement/catalogs/{param}/resourceRoles/{param}/resource","rename","EntitlementManagementCatalogResourceRoleResource","Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResource","Remove-MgEntitlementManagementCatalogResourceRoleResource" +"DELETE","/identityGovernance/entitlementManagement/catalogs/{param}/resourceRoles/{param}/resource/roles/{param}","suppress",,"Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceRole","no oracle row for DELETE /identityGovernance/entitlementManagement/catalogs/{param}/resourceRoles/{param}/resource/roles/{param} and 'Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceRole' unshipped" +"DELETE","/identityGovernance/entitlementManagement/catalogs/{param}/resourceRoles/{param}/resource/scopes/{param}","rename","EntitlementManagementCatalogResourceRoleResourceScope","Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScope","Remove-MgEntitlementManagementCatalogResourceRoleResourceScope" +"DELETE","/identityGovernance/entitlementManagement/catalogs/{param}/resourceRoles/{param}/resource/scopes/{param}/resource","rename","EntitlementManagementCatalogResourceRoleResourceScopeResource","Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResource","Remove-MgEntitlementManagementCatalogResourceRoleResourceScopeResource" +"DELETE","/identityGovernance/entitlementManagement/catalogs/{param}/resourceRoles/{param}/resource/scopes/{param}/resource/roles/{param}","rename","EntitlementManagementCatalogResourceRoleResourceScopeResourceRole","Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResourceRole","Remove-MgEntitlementManagementCatalogResourceRoleResourceScopeResourceRole" +"DELETE","/identityGovernance/entitlementManagement/catalogs/{param}/resources/{param}","rename","EntitlementManagementCatalogResource","Remove-MgIdentityGovernanceEntitlementManagementCatalogResource","Remove-MgEntitlementManagementCatalogResource" +"DELETE","/identityGovernance/entitlementManagement/catalogs/{param}/resources/{param}/scopes/{param}","suppress",,"Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceScope","no oracle row for DELETE /identityGovernance/entitlementManagement/catalogs/{param}/resources/{param}/scopes/{param} and 'Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceScope' unshipped" +"DELETE","/identityGovernance/entitlementManagement/catalogs/{param}/resources/{param}/scopes/{param}/resource","rename","EntitlementManagementCatalogResourceScopeResource","Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResource","Remove-MgEntitlementManagementCatalogResourceScopeResource" +"DELETE","/identityGovernance/entitlementManagement/catalogs/{param}/resources/{param}/scopes/{param}/resource/roles/{param}","rename","EntitlementManagementCatalogResourceScopeResourceRole","Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRole","Remove-MgEntitlementManagementCatalogResourceScopeResourceRole" +"DELETE","/identityGovernance/entitlementManagement/catalogs/{param}/resources/{param}/scopes/{param}/resource/roles/{param}/resource","rename","EntitlementManagementCatalogResourceScopeResourceRoleResource","Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResource","Remove-MgEntitlementManagementCatalogResourceScopeResourceRoleResource" +"DELETE","/identityGovernance/entitlementManagement/catalogs/{param}/resourceScopes/{param}/resource/roles/{param}/resource/scopes/{param}","rename","EntitlementManagementCatalogResourceScopeResourceRoleResourceScope","Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResourceScope","Remove-MgEntitlementManagementCatalogResourceScopeResourceRoleResourceScope" +"DELETE","/identityGovernance/entitlementManagement/catalogs/{param}/resourceScopes/{param}/resource/scopes/{param}","suppress",,"Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceScope","no oracle row for DELETE /identityGovernance/entitlementManagement/catalogs/{param}/resourceScopes/{param}/resource/scopes/{param} and 'Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceScope' unshipped" +"DELETE","/identityGovernance/entitlementManagement/connectedOrganizations/{param}","rename","EntitlementManagementConnectedOrganization","Remove-MgIdentityGovernanceEntitlementManagementConnectedOrganization","Remove-MgEntitlementManagementConnectedOrganization" +"DELETE","/identityGovernance/entitlementManagement/connectedOrganizations/{param}/externalSponsors/{param}/$ref","rename","EntitlementManagementConnectedOrganizationExternalSponsorDirectoryObjectByRef","Remove-MgIdentityGovernanceEntitlementManagementConnectedOrganizationExternalSponsorByRef","Remove-MgEntitlementManagementConnectedOrganizationExternalSponsorDirectoryObjectByRef" +"DELETE","/identityGovernance/entitlementManagement/connectedOrganizations/{param}/internalSponsors/{param}/$ref","rename","EntitlementManagementConnectedOrganizationInternalSponsorDirectoryObjectByRef","Remove-MgIdentityGovernanceEntitlementManagementConnectedOrganizationInternalSponsorByRef","Remove-MgEntitlementManagementConnectedOrganizationInternalSponsorDirectoryObjectByRef" +"DELETE","/identityGovernance/entitlementManagement/controlConfigurations/{param}","rename","EntitlementManagementControlConfiguration","Remove-MgIdentityGovernanceEntitlementManagementControlConfiguration","Remove-MgEntitlementManagementControlConfiguration" +"DELETE","/identityGovernance/entitlementManagement/resourceEnvironments/{param}","rename","EntitlementManagementResourceEnvironment","Remove-MgIdentityGovernanceEntitlementManagementResourceEnvironment","Remove-MgEntitlementManagementResourceEnvironment" +"DELETE","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}","rename","EntitlementManagementResourceEnvironmentResource","Remove-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResource","Remove-MgEntitlementManagementResourceEnvironmentResource" +"DELETE","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/roles/{param}","rename","EntitlementManagementResourceEnvironmentResourceRole","Remove-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRole","Remove-MgEntitlementManagementResourceEnvironmentResourceRole" +"DELETE","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/roles/{param}/resource","rename","EntitlementManagementResourceEnvironmentResourceRoleResource","Remove-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResource","Remove-MgEntitlementManagementResourceEnvironmentResourceRoleResource" +"DELETE","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/roles/{param}/resource/scopes/{param}","rename","EntitlementManagementResourceEnvironmentResourceRoleResourceScope","Remove-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResourceScope","Remove-MgEntitlementManagementResourceEnvironmentResourceRoleResourceScope" +"DELETE","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/roles/{param}/resource/scopes/{param}/resource","rename","EntitlementManagementResourceEnvironmentResourceRoleResourceScopeResource","Remove-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResourceScopeResource","Remove-MgEntitlementManagementResourceEnvironmentResourceRoleResourceScopeResource" +"DELETE","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/scopes/{param}","rename","EntitlementManagementResourceEnvironmentResourceScope","Remove-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScope","Remove-MgEntitlementManagementResourceEnvironmentResourceScope" +"DELETE","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/scopes/{param}/resource","rename","EntitlementManagementResourceEnvironmentResourceScopeResource","Remove-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResource","Remove-MgEntitlementManagementResourceEnvironmentResourceScopeResource" +"DELETE","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/scopes/{param}/resource/roles/{param}","rename","EntitlementManagementResourceEnvironmentResourceScopeResourceRole","Remove-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResourceRole","Remove-MgEntitlementManagementResourceEnvironmentResourceScopeResourceRole" +"DELETE","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/scopes/{param}/resource/roles/{param}/resource","rename","EntitlementManagementResourceEnvironmentResourceScopeResourceRoleResource","Remove-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResourceRoleResource","Remove-MgEntitlementManagementResourceEnvironmentResourceScopeResourceRoleResource" +"DELETE","/identityGovernance/entitlementManagement/resourceRequests/{param}","rename","EntitlementManagementResourceRequest","Remove-MgIdentityGovernanceEntitlementManagementResourceRequest","Remove-MgEntitlementManagementResourceRequest" +"DELETE","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog","rename","EntitlementManagementResourceRequestCatalog","Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalog","Remove-MgEntitlementManagementResourceRequestCatalog" +"DELETE","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/customWorkflowExtensions/{param}","rename","EntitlementManagementResourceRequestCatalogCustomWorkflowExtension","Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogCustomWorkflowExtension","Remove-MgEntitlementManagementResourceRequestCatalogCustomWorkflowExtension" +"DELETE","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceRoles/{param}","rename","EntitlementManagementResourceRequestCatalogResourceRole","Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRole","Remove-MgEntitlementManagementResourceRequestCatalogResourceRole" +"DELETE","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceRoles/{param}/resource","rename","EntitlementManagementResourceRequestCatalogResourceRoleResource","Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResource","Remove-MgEntitlementManagementResourceRequestCatalogResourceRoleResource" +"DELETE","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceRoles/{param}/resource/roles/{param}","suppress",,"Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceRole","no oracle row for DELETE /identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceRoles/{param}/resource/roles/{param} and 'Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceRole' unshipped" +"DELETE","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceRoles/{param}/resource/scopes/{param}","rename","EntitlementManagementResourceRequestCatalogResourceRoleResourceScope","Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScope","Remove-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScope" +"DELETE","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceRoles/{param}/resource/scopes/{param}/resource","rename","EntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResource","Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResource","Remove-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResource" +"DELETE","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceRoles/{param}/resource/scopes/{param}/resource/roles/{param}","rename","EntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRole","Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRole","Remove-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRole" +"DELETE","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resources/{param}","rename","EntitlementManagementResourceRequestCatalogResource","Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResource","Remove-MgEntitlementManagementResourceRequestCatalogResource" +"DELETE","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resources/{param}/scopes/{param}","suppress",,"Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScope","no oracle row for DELETE /identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resources/{param}/scopes/{param} and 'Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScope' unshipped" +"DELETE","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resources/{param}/scopes/{param}/resource","rename","EntitlementManagementResourceRequestCatalogResourceScopeResource","Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResource","Remove-MgEntitlementManagementResourceRequestCatalogResourceScopeResource" +"DELETE","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resources/{param}/scopes/{param}/resource/roles/{param}","rename","EntitlementManagementResourceRequestCatalogResourceScopeResourceRole","Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRole","Remove-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRole" +"DELETE","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resources/{param}/scopes/{param}/resource/roles/{param}/resource","rename","EntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResource","Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResource","Remove-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResource" +"DELETE","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceScopes/{param}/resource/roles/{param}/resource/scopes/{param}","rename","EntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceScope","Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceScope","Remove-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceScope" +"DELETE","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceScopes/{param}/resource/scopes/{param}","suppress",,"Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceScope","no oracle row for DELETE /identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceScopes/{param}/resource/scopes/{param} and 'Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceScope' unshipped" +"DELETE","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource","rename","EntitlementManagementResourceRequestResource","Remove-MgIdentityGovernanceEntitlementManagementResourceRequestResource","Remove-MgEntitlementManagementResourceRequestResource" +"DELETE","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/roles/{param}","rename","EntitlementManagementResourceRequestResourceRole","Remove-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRole","Remove-MgEntitlementManagementResourceRequestResourceRole" +"DELETE","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/roles/{param}/resource","rename","EntitlementManagementResourceRequestResourceRoleResource","Remove-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResource","Remove-MgEntitlementManagementResourceRequestResourceRoleResource" +"DELETE","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/roles/{param}/resource/scopes/{param}","rename","EntitlementManagementResourceRequestResourceRoleResourceScope","Remove-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResourceScope","Remove-MgEntitlementManagementResourceRequestResourceRoleResourceScope" +"DELETE","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/roles/{param}/resource/scopes/{param}/resource","rename","EntitlementManagementResourceRequestResourceRoleResourceScopeResource","Remove-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResourceScopeResource","Remove-MgEntitlementManagementResourceRequestResourceRoleResourceScopeResource" +"DELETE","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/scopes/{param}","rename","EntitlementManagementResourceRequestResourceScope","Remove-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScope","Remove-MgEntitlementManagementResourceRequestResourceScope" +"DELETE","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/scopes/{param}/resource","rename","EntitlementManagementResourceRequestResourceScopeResource","Remove-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResource","Remove-MgEntitlementManagementResourceRequestResourceScopeResource" +"DELETE","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/scopes/{param}/resource/roles/{param}","rename","EntitlementManagementResourceRequestResourceScopeResourceRole","Remove-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResourceRole","Remove-MgEntitlementManagementResourceRequestResourceScopeResourceRole" +"DELETE","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/scopes/{param}/resource/roles/{param}/resource","rename","EntitlementManagementResourceRequestResourceScopeResourceRoleResource","Remove-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResourceRoleResource","Remove-MgEntitlementManagementResourceRequestResourceScopeResourceRoleResource" +"DELETE","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}","rename","EntitlementManagementResourceRoleScope","Remove-MgIdentityGovernanceEntitlementManagementResourceRoleScope","Remove-MgEntitlementManagementResourceRoleScope" +"DELETE","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/role","rename","EntitlementManagementResourceRoleScopeRole","Remove-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRole","Remove-MgEntitlementManagementResourceRoleScopeRole" +"DELETE","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/role/resource","rename","EntitlementManagementResourceRoleScopeRoleResource","Remove-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResource","Remove-MgEntitlementManagementResourceRoleScopeRoleResource" +"DELETE","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/role/resource/roles/{param}","rename","EntitlementManagementResourceRoleScopeRoleResourceRole","Remove-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceRole","Remove-MgEntitlementManagementResourceRoleScopeRoleResourceRole" +"DELETE","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/role/resource/scopes/{param}","rename","EntitlementManagementResourceRoleScopeRoleResourceScope","Remove-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScope","Remove-MgEntitlementManagementResourceRoleScopeRoleResourceScope" +"DELETE","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/role/resource/scopes/{param}/resource","rename","EntitlementManagementResourceRoleScopeRoleResourceScopeResource","Remove-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScopeResource","Remove-MgEntitlementManagementResourceRoleScopeRoleResourceScopeResource" +"DELETE","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/role/resource/scopes/{param}/resource/roles/{param}","rename","EntitlementManagementResourceRoleScopeRoleResourceScopeResourceRole","Remove-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScopeResourceRole","Remove-MgEntitlementManagementResourceRoleScopeRoleResourceScopeResourceRole" +"DELETE","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/scope/resource","rename","EntitlementManagementResourceRoleScopeResource","Remove-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResource","Remove-MgEntitlementManagementResourceRoleScopeResource" +"DELETE","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/scope/resource/roles/{param}","rename","EntitlementManagementResourceRoleScopeResourceRole","Remove-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRole","Remove-MgEntitlementManagementResourceRoleScopeResourceRole" +"DELETE","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/scope/resource/roles/{param}/resource","rename","EntitlementManagementResourceRoleScopeResourceRoleResource","Remove-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRoleResource","Remove-MgEntitlementManagementResourceRoleScopeResourceRoleResource" +"DELETE","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/scope/resource/roles/{param}/resource/scopes/{param}","rename","EntitlementManagementResourceRoleScopeResourceRoleResourceScope","Remove-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRoleResourceScope","Remove-MgEntitlementManagementResourceRoleScopeResourceRoleResourceScope" +"DELETE","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/scope/resource/scopes/{param}","rename","EntitlementManagementResourceRoleScopeResourceScope","Remove-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceScope","Remove-MgEntitlementManagementResourceRoleScopeResourceScope" +"DELETE","/identityGovernance/entitlementManagement/resources/{param}","rename","EntitlementManagementResource","Remove-MgIdentityGovernanceEntitlementManagementResource","Remove-MgEntitlementManagementResource" +"DELETE","/identityGovernance/entitlementManagement/resources/{param}/roles/{param}","rename","EntitlementManagementResourceRole","Remove-MgIdentityGovernanceEntitlementManagementResourceRole","Remove-MgEntitlementManagementResourceRole" +"DELETE","/identityGovernance/entitlementManagement/resources/{param}/roles/{param}/resource","rename","EntitlementManagementResourceRoleResource","Remove-MgIdentityGovernanceEntitlementManagementResourceRoleResource","Remove-MgEntitlementManagementResourceRoleResource" +"DELETE","/identityGovernance/entitlementManagement/resources/{param}/roles/{param}/resource/scopes/{param}","rename","EntitlementManagementResourceRoleResourceScope","Remove-MgIdentityGovernanceEntitlementManagementResourceRoleResourceScope","Remove-MgEntitlementManagementResourceRoleResourceScope" +"DELETE","/identityGovernance/entitlementManagement/resources/{param}/roles/{param}/resource/scopes/{param}/resource","rename","EntitlementManagementResourceRoleResourceScopeResource","Remove-MgIdentityGovernanceEntitlementManagementResourceRoleResourceScopeResource","Remove-MgEntitlementManagementResourceRoleResourceScopeResource" +"DELETE","/identityGovernance/entitlementManagement/resources/{param}/scopes/{param}","rename","EntitlementManagementResourceScope","Remove-MgIdentityGovernanceEntitlementManagementResourceScope","Remove-MgEntitlementManagementResourceScope" +"DELETE","/identityGovernance/entitlementManagement/resources/{param}/scopes/{param}/resource","rename","EntitlementManagementResourceScopeResource","Remove-MgIdentityGovernanceEntitlementManagementResourceScopeResource","Remove-MgEntitlementManagementResourceScopeResource" +"DELETE","/identityGovernance/entitlementManagement/resources/{param}/scopes/{param}/resource/roles/{param}","rename","EntitlementManagementResourceScopeResourceRole","Remove-MgIdentityGovernanceEntitlementManagementResourceScopeResourceRole","Remove-MgEntitlementManagementResourceScopeResourceRole" +"DELETE","/identityGovernance/entitlementManagement/resources/{param}/scopes/{param}/resource/roles/{param}/resource","rename","EntitlementManagementResourceScopeResourceRoleResource","Remove-MgIdentityGovernanceEntitlementManagementResourceScopeResourceRoleResource","Remove-MgEntitlementManagementResourceScopeResourceRoleResource" +"DELETE","/identityGovernance/entitlementManagement/settings","suppress",,"Remove-MgIdentityGovernanceEntitlementManagementSetting","no oracle row for DELETE /identityGovernance/entitlementManagement/settings and 'Remove-MgIdentityGovernanceEntitlementManagementSetting' unshipped" +"DELETE","/identityGovernance/entitlementManagement/subjects/{param}","rename","EntitlementManagementSubject","Remove-MgIdentityGovernanceEntitlementManagementSubject","Remove-MgEntitlementManagementSubject" +"DELETE","/identityGovernance/lifecycleWorkflows/customTaskExtensions/{param}","keep",,"Remove-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtension","Remove-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtension" +"DELETE","/identityGovernance/lifecycleWorkflows/deletedItems","keep",,"Remove-MgIdentityGovernanceLifecycleWorkflowDeletedItem","Remove-MgIdentityGovernanceLifecycleWorkflowDeletedItem" +"DELETE","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}","keep",,"Remove-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflow","Remove-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflow" +"DELETE","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/tasks/{param}","keep",,"Remove-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTask","Remove-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTask" +"DELETE","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/tasks/{param}","suppress",,"Remove-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTask","no oracle row for DELETE /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/tasks/{param} and 'Remove-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTask' unshipped" +"DELETE","/identityGovernance/lifecycleWorkflows/insights","keep",,"Remove-MgIdentityGovernanceLifecycleWorkflowInsight","Remove-MgIdentityGovernanceLifecycleWorkflowInsight" +"DELETE","/identityGovernance/lifecycleWorkflows/workflows/{param}","keep",,"Remove-MgIdentityGovernanceLifecycleWorkflow","Remove-MgIdentityGovernanceLifecycleWorkflow" +"DELETE","/identityGovernance/lifecycleWorkflows/workflows/{param}/tasks/{param}","keep",,"Remove-MgIdentityGovernanceLifecycleWorkflowTask","Remove-MgIdentityGovernanceLifecycleWorkflowTask" +"DELETE","/identityGovernance/lifecycleWorkflows/workflows/{param}/versions/{param}/tasks/{param}","keep",,"Remove-MgIdentityGovernanceLifecycleWorkflowVersionTask","Remove-MgIdentityGovernanceLifecycleWorkflowVersionTask" +"DELETE","/identityGovernance/privilegedAccess","keep",,"Remove-MgIdentityGovernancePrivilegedAccess","Remove-MgIdentityGovernancePrivilegedAccess" +"DELETE","/identityGovernance/privilegedAccess/group","keep",,"Remove-MgIdentityGovernancePrivilegedAccessGroup","Remove-MgIdentityGovernancePrivilegedAccessGroup" +"DELETE","/identityGovernance/privilegedAccess/group/assignmentApprovals/{param}","keep",,"Remove-MgIdentityGovernancePrivilegedAccessGroupAssignmentApproval","Remove-MgIdentityGovernancePrivilegedAccessGroupAssignmentApproval" +"DELETE","/identityGovernance/privilegedAccess/group/assignmentApprovals/{param}/stages/{param}","keep",,"Remove-MgIdentityGovernancePrivilegedAccessGroupAssignmentApprovalStage","Remove-MgIdentityGovernancePrivilegedAccessGroupAssignmentApprovalStage" +"DELETE","/identityGovernance/privilegedAccess/group/assignmentScheduleInstances/{param}","keep",,"Remove-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstance","Remove-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstance" +"DELETE","/identityGovernance/privilegedAccess/group/assignmentScheduleRequests/{param}","keep",,"Remove-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequest","Remove-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequest" +"DELETE","/identityGovernance/privilegedAccess/group/assignmentSchedules/{param}","keep",,"Remove-MgIdentityGovernancePrivilegedAccessGroupAssignmentSchedule","Remove-MgIdentityGovernancePrivilegedAccessGroupAssignmentSchedule" +"DELETE","/identityGovernance/privilegedAccess/group/eligibilityScheduleInstances/{param}","keep",,"Remove-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstance","Remove-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstance" +"DELETE","/identityGovernance/privilegedAccess/group/eligibilityScheduleRequests/{param}","keep",,"Remove-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequest","Remove-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequest" +"DELETE","/identityGovernance/privilegedAccess/group/eligibilitySchedules/{param}","keep",,"Remove-MgIdentityGovernancePrivilegedAccessGroupEligibilitySchedule","Remove-MgIdentityGovernancePrivilegedAccessGroupEligibilitySchedule" +"DELETE","/identityGovernance/termsOfUse","suppress",,"Remove-MgIdentityGovernanceTermOfUse","no oracle row for DELETE /identityGovernance/termsOfUse and 'Remove-MgIdentityGovernanceTermOfUse' unshipped" +"DELETE","/identityGovernance/termsOfUse/agreementAcceptances/{param}","rename","IdentityGovernanceTermsOfUseAgreementAcceptance","Remove-MgIdentityGovernanceTermOfUseAgreementAcceptance","Remove-MgIdentityGovernanceTermsOfUseAgreementAcceptance" +"DELETE","/identityGovernance/termsOfUse/agreements/{param}","rename","IdentityGovernanceTermsOfUseAgreement","Remove-MgIdentityGovernanceTermOfUseAgreement","Remove-MgIdentityGovernanceTermsOfUseAgreement" +"DELETE","/identityGovernance/termsOfUse/agreements/{param}/file","rename","IdentityGovernanceTermsOfUseAgreementFile","Remove-MgIdentityGovernanceTermOfUseAgreementFile","Remove-MgIdentityGovernanceTermsOfUseAgreementFile" +"DELETE","/identityGovernance/termsOfUse/agreements/{param}/file/localizations/{param}","rename","IdentityGovernanceTermsOfUseAgreementFileLocalization","Remove-MgIdentityGovernanceTermOfUseAgreementFileLocalization","Remove-MgIdentityGovernanceTermsOfUseAgreementFileLocalization" +"DELETE","/identityGovernance/termsOfUse/agreements/{param}/file/localizations/{param}/versions/{param}","rename","IdentityGovernanceTermsOfUseAgreementFileLocalizationVersion","Remove-MgIdentityGovernanceTermOfUseAgreementFileLocalizationVersion","Remove-MgIdentityGovernanceTermsOfUseAgreementFileLocalizationVersion" +"DELETE","/identityGovernance/termsOfUse/agreements/{param}/files/{param}/versions/{param}","rename","IdentityGovernanceTermsOfUseAgreementFileVersion","Remove-MgIdentityGovernanceTermOfUseAgreementFileVersion","Remove-MgIdentityGovernanceTermsOfUseAgreementFileVersion" +"DELETE","/identityProtection/riskDetections/{param}","rename","RiskDetection","Remove-MgIdentityProtectionRiskDetection","Remove-MgRiskDetection" +"DELETE","/identityProtection/riskyServicePrincipals/{param}","rename","RiskyServicePrincipal","Remove-MgIdentityProtectionRiskyServicePrincipal","Remove-MgRiskyServicePrincipal" +"DELETE","/identityProtection/riskyServicePrincipals/{param}/history/{param}","rename","RiskyServicePrincipalHistory","Remove-MgIdentityProtectionRiskyServicePrincipalHistory","Remove-MgRiskyServicePrincipalHistory" +"DELETE","/identityProtection/riskyUsers/{param}","rename","RiskyUser","Remove-MgIdentityProtectionRiskyUser","Remove-MgRiskyUser" +"DELETE","/identityProtection/riskyUsers/{param}/history/{param}","rename","RiskyUserHistory","Remove-MgIdentityProtectionRiskyUserHistory","Remove-MgRiskyUserHistory" +"DELETE","/identityProtection/servicePrincipalRiskDetections/{param}","rename","ServicePrincipalRiskDetection","Remove-MgIdentityProtectionServicePrincipalRiskDetection","Remove-MgServicePrincipalRiskDetection" +"DELETE","/informationProtection/threatAssessmentRequests/{param}","keep",,"Remove-MgInformationProtectionThreatAssessmentRequest","Remove-MgInformationProtectionThreatAssessmentRequest" +"DELETE","/informationProtection/threatAssessmentRequests/{param}/results/{param}","keep",,"Remove-MgInformationProtectionThreatAssessmentRequestResult","Remove-MgInformationProtectionThreatAssessmentRequestResult" +"DELETE","/oauth2PermissionGrants/{param}","keep",,"Remove-MgOauth2PermissionGrant","Remove-MgOauth2PermissionGrant" +"DELETE","/organization/{param}","keep",,"Remove-MgOrganization","Remove-MgOrganization" +"DELETE","/organization/{param}/branding","keep",,"Remove-MgOrganizationBranding","Remove-MgOrganizationBranding" +"DELETE","/organization/{param}/branding/backgroundImage","keep",,"Remove-MgOrganizationBrandingBackgroundImage","Remove-MgOrganizationBrandingBackgroundImage" +"DELETE","/organization/{param}/branding/bannerLogo","keep",,"Remove-MgOrganizationBrandingBannerLogo","Remove-MgOrganizationBrandingBannerLogo" +"DELETE","/organization/{param}/branding/customCSS","rename","OrganizationBrandingCustomCss","Remove-MgOrganizationBrandingCustomCSS","Remove-MgOrganizationBrandingCustomCss" +"DELETE","/organization/{param}/branding/favicon","keep",,"Remove-MgOrganizationBrandingFavicon","Remove-MgOrganizationBrandingFavicon" +"DELETE","/organization/{param}/branding/headerLogo","keep",,"Remove-MgOrganizationBrandingHeaderLogo","Remove-MgOrganizationBrandingHeaderLogo" +"DELETE","/organization/{param}/branding/localizations/{param}","keep",,"Remove-MgOrganizationBrandingLocalization","Remove-MgOrganizationBrandingLocalization" +"DELETE","/organization/{param}/branding/localizations/{param}/backgroundImage","keep",,"Remove-MgOrganizationBrandingLocalizationBackgroundImage","Remove-MgOrganizationBrandingLocalizationBackgroundImage" +"DELETE","/organization/{param}/branding/localizations/{param}/bannerLogo","keep",,"Remove-MgOrganizationBrandingLocalizationBannerLogo","Remove-MgOrganizationBrandingLocalizationBannerLogo" +"DELETE","/organization/{param}/branding/localizations/{param}/customCSS","rename","OrganizationBrandingLocalizationCustomCss","Remove-MgOrganizationBrandingLocalizationCustomCSS","Remove-MgOrganizationBrandingLocalizationCustomCss" +"DELETE","/organization/{param}/branding/localizations/{param}/favicon","keep",,"Remove-MgOrganizationBrandingLocalizationFavicon","Remove-MgOrganizationBrandingLocalizationFavicon" +"DELETE","/organization/{param}/branding/localizations/{param}/headerLogo","keep",,"Remove-MgOrganizationBrandingLocalizationHeaderLogo","Remove-MgOrganizationBrandingLocalizationHeaderLogo" +"DELETE","/organization/{param}/branding/localizations/{param}/squareLogo","keep",,"Remove-MgOrganizationBrandingLocalizationSquareLogo","Remove-MgOrganizationBrandingLocalizationSquareLogo" +"DELETE","/organization/{param}/branding/localizations/{param}/squareLogoDark","keep",,"Remove-MgOrganizationBrandingLocalizationSquareLogoDark","Remove-MgOrganizationBrandingLocalizationSquareLogoDark" +"DELETE","/organization/{param}/branding/squareLogo","keep",,"Remove-MgOrganizationBrandingSquareLogo","Remove-MgOrganizationBrandingSquareLogo" +"DELETE","/organization/{param}/branding/squareLogoDark","keep",,"Remove-MgOrganizationBrandingSquareLogoDark","Remove-MgOrganizationBrandingSquareLogoDark" +"DELETE","/organization/{param}/certificateBasedAuthConfiguration/{param}","keep",,"Remove-MgOrganizationCertificateBasedAuthConfiguration","Remove-MgOrganizationCertificateBasedAuthConfiguration" +"DELETE","/organization/{param}/extensions/{param}","keep",,"Remove-MgOrganizationExtension","Remove-MgOrganizationExtension" +"DELETE","/places/{param}","keep",,"Remove-MgPlace","Remove-MgPlace" +"DELETE","/places/{param}/checkIns/{param}","keep",,"Remove-MgPlaceCheckIn","deliberate correction; oracle ships Remove-MgPlaceCheck" +"DELETE","/planner/buckets/{param}","keep",,"Remove-MgPlannerBucket","Remove-MgPlannerBucket" +"DELETE","/planner/buckets/{param}/tasks/{param}","suppress",,"Remove-MgPlannerBucketTask","no oracle row for DELETE /planner/buckets/{param}/tasks/{param} and 'Remove-MgPlannerBucketTask' unshipped" +"DELETE","/planner/buckets/{param}/tasks/{param}/assignedToTaskBoardFormat","suppress",,"Remove-MgPlannerBucketTaskAssignedToTaskBoardFormat","no oracle row for DELETE /planner/buckets/{param}/tasks/{param}/assignedToTaskBoardFormat and 'Remove-MgPlannerBucketTaskAssignedToTaskBoardFormat' unshipped" +"DELETE","/planner/buckets/{param}/tasks/{param}/bucketTaskBoardFormat","suppress",,"Remove-MgPlannerBucketTaskBucketTaskBoardFormat","no oracle row for DELETE /planner/buckets/{param}/tasks/{param}/bucketTaskBoardFormat and 'Remove-MgPlannerBucketTaskBucketTaskBoardFormat' unshipped" +"DELETE","/planner/buckets/{param}/tasks/{param}/details","suppress",,"Remove-MgPlannerBucketTaskDetail","no oracle row for DELETE /planner/buckets/{param}/tasks/{param}/details and 'Remove-MgPlannerBucketTaskDetail' unshipped" +"DELETE","/planner/buckets/{param}/tasks/{param}/progressTaskBoardFormat","suppress",,"Remove-MgPlannerBucketTaskProgressTaskBoardFormat","no oracle row for DELETE /planner/buckets/{param}/tasks/{param}/progressTaskBoardFormat and 'Remove-MgPlannerBucketTaskProgressTaskBoardFormat' unshipped" +"DELETE","/planner/plans/{param}","keep",,"Remove-MgPlannerPlan","Remove-MgPlannerPlan" +"DELETE","/planner/plans/{param}/buckets/{param}","suppress",,"Remove-MgPlannerPlanBucket","no oracle row for DELETE /planner/plans/{param}/buckets/{param} and 'Remove-MgPlannerPlanBucket' unshipped" +"DELETE","/planner/plans/{param}/buckets/{param}/tasks/{param}","suppress",,"Remove-MgPlannerPlanBucketTask","no oracle row for DELETE /planner/plans/{param}/buckets/{param}/tasks/{param} and 'Remove-MgPlannerPlanBucketTask' unshipped" +"DELETE","/planner/plans/{param}/buckets/{param}/tasks/{param}/assignedToTaskBoardFormat","suppress",,"Remove-MgPlannerPlanBucketTaskAssignedToTaskBoardFormat","no oracle row for DELETE /planner/plans/{param}/buckets/{param}/tasks/{param}/assignedToTaskBoardFormat and 'Remove-MgPlannerPlanBucketTaskAssignedToTaskBoardFormat' unshipped" +"DELETE","/planner/plans/{param}/buckets/{param}/tasks/{param}/bucketTaskBoardFormat","suppress",,"Remove-MgPlannerPlanBucketTaskBucketTaskBoardFormat","no oracle row for DELETE /planner/plans/{param}/buckets/{param}/tasks/{param}/bucketTaskBoardFormat and 'Remove-MgPlannerPlanBucketTaskBucketTaskBoardFormat' unshipped" +"DELETE","/planner/plans/{param}/buckets/{param}/tasks/{param}/details","suppress",,"Remove-MgPlannerPlanBucketTaskDetail","no oracle row for DELETE /planner/plans/{param}/buckets/{param}/tasks/{param}/details and 'Remove-MgPlannerPlanBucketTaskDetail' unshipped" +"DELETE","/planner/plans/{param}/buckets/{param}/tasks/{param}/progressTaskBoardFormat","suppress",,"Remove-MgPlannerPlanBucketTaskProgressTaskBoardFormat","no oracle row for DELETE /planner/plans/{param}/buckets/{param}/tasks/{param}/progressTaskBoardFormat and 'Remove-MgPlannerPlanBucketTaskProgressTaskBoardFormat' unshipped" +"DELETE","/planner/plans/{param}/details","suppress",,"Remove-MgPlannerPlanDetail","no oracle row for DELETE /planner/plans/{param}/details and 'Remove-MgPlannerPlanDetail' unshipped" +"DELETE","/planner/plans/{param}/tasks/{param}","suppress",,"Remove-MgPlannerPlanTask","no oracle row for DELETE /planner/plans/{param}/tasks/{param} and 'Remove-MgPlannerPlanTask' unshipped" +"DELETE","/planner/plans/{param}/tasks/{param}/assignedToTaskBoardFormat","suppress",,"Remove-MgPlannerPlanTaskAssignedToTaskBoardFormat","no oracle row for DELETE /planner/plans/{param}/tasks/{param}/assignedToTaskBoardFormat and 'Remove-MgPlannerPlanTaskAssignedToTaskBoardFormat' unshipped" +"DELETE","/planner/plans/{param}/tasks/{param}/bucketTaskBoardFormat","suppress",,"Remove-MgPlannerPlanTaskBucketTaskBoardFormat","no oracle row for DELETE /planner/plans/{param}/tasks/{param}/bucketTaskBoardFormat and 'Remove-MgPlannerPlanTaskBucketTaskBoardFormat' unshipped" +"DELETE","/planner/plans/{param}/tasks/{param}/details","suppress",,"Remove-MgPlannerPlanTaskDetail","no oracle row for DELETE /planner/plans/{param}/tasks/{param}/details and 'Remove-MgPlannerPlanTaskDetail' unshipped" +"DELETE","/planner/plans/{param}/tasks/{param}/progressTaskBoardFormat","suppress",,"Remove-MgPlannerPlanTaskProgressTaskBoardFormat","no oracle row for DELETE /planner/plans/{param}/tasks/{param}/progressTaskBoardFormat and 'Remove-MgPlannerPlanTaskProgressTaskBoardFormat' unshipped" +"DELETE","/planner/tasks/{param}","keep",,"Remove-MgPlannerTask","Remove-MgPlannerTask" +"DELETE","/planner/tasks/{param}/assignedToTaskBoardFormat","keep",,"Remove-MgPlannerTaskAssignedToTaskBoardFormat","Remove-MgPlannerTaskAssignedToTaskBoardFormat" +"DELETE","/planner/tasks/{param}/bucketTaskBoardFormat","keep",,"Remove-MgPlannerTaskBucketTaskBoardFormat","Remove-MgPlannerTaskBucketTaskBoardFormat" +"DELETE","/planner/tasks/{param}/details","suppress",,"Remove-MgPlannerTaskDetail","no oracle row for DELETE /planner/tasks/{param}/details and 'Remove-MgPlannerTaskDetail' unshipped" +"DELETE","/planner/tasks/{param}/progressTaskBoardFormat","keep",,"Remove-MgPlannerTaskProgressTaskBoardFormat","Remove-MgPlannerTaskProgressTaskBoardFormat" +"DELETE","/policies/activityBasedTimeoutPolicies/{param}","keep",,"Remove-MgPolicyActivityBasedTimeoutPolicy","Remove-MgPolicyActivityBasedTimeoutPolicy" +"DELETE","/policies/adminConsentRequestPolicy","keep",,"Remove-MgPolicyAdminConsentRequestPolicy","Remove-MgPolicyAdminConsentRequestPolicy" +"DELETE","/policies/appManagementPolicies/{param}","keep",,"Remove-MgPolicyAppManagementPolicy","Remove-MgPolicyAppManagementPolicy" +"DELETE","/policies/authenticationFlowsPolicy","keep",,"Remove-MgPolicyAuthenticationFlowPolicy","Remove-MgPolicyAuthenticationFlowPolicy" +"DELETE","/policies/authenticationMethodsPolicy","keep",,"Remove-MgPolicyAuthenticationMethodPolicy","Remove-MgPolicyAuthenticationMethodPolicy" +"DELETE","/policies/authenticationMethodsPolicy/authenticationMethodConfigurations/{param}","keep",,"Remove-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration","Remove-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration" +"DELETE","/policies/authenticationStrengthPolicies/{param}","keep",,"Remove-MgPolicyAuthenticationStrengthPolicy","Remove-MgPolicyAuthenticationStrengthPolicy" +"DELETE","/policies/authenticationStrengthPolicies/{param}/combinationConfigurations/{param}","keep",,"Remove-MgPolicyAuthenticationStrengthPolicyCombinationConfiguration","Remove-MgPolicyAuthenticationStrengthPolicyCombinationConfiguration" +"DELETE","/policies/authorizationPolicy","keep",,"Remove-MgPolicyAuthorizationPolicy","Remove-MgPolicyAuthorizationPolicy" +"DELETE","/policies/claimsMappingPolicies/{param}","keep",,"Remove-MgPolicyClaimMappingPolicy","Remove-MgPolicyClaimMappingPolicy" +"DELETE","/policies/conditionalAccessPolicies/{param}","suppress",,"Remove-MgPolicyConditionalAccessPolicy","no oracle row for DELETE /policies/conditionalAccessPolicies/{param} and 'Remove-MgPolicyConditionalAccessPolicy' unshipped" +"DELETE","/policies/crossTenantAccessPolicy","keep",,"Remove-MgPolicyCrossTenantAccessPolicy","Remove-MgPolicyCrossTenantAccessPolicy" +"DELETE","/policies/crossTenantAccessPolicy/default","keep",,"Remove-MgPolicyCrossTenantAccessPolicyDefault","Remove-MgPolicyCrossTenantAccessPolicyDefault" +"DELETE","/policies/crossTenantAccessPolicy/partners/{param}","keep",,"Remove-MgPolicyCrossTenantAccessPolicyPartner","Remove-MgPolicyCrossTenantAccessPolicyPartner" +"DELETE","/policies/crossTenantAccessPolicy/partners/{param}/identitySynchronization","keep",,"Remove-MgPolicyCrossTenantAccessPolicyPartnerIdentitySynchronization","Remove-MgPolicyCrossTenantAccessPolicyPartnerIdentitySynchronization" +"DELETE","/policies/crossTenantAccessPolicy/templates","keep",,"Remove-MgPolicyCrossTenantAccessPolicyTemplate","Remove-MgPolicyCrossTenantAccessPolicyTemplate" +"DELETE","/policies/crossTenantAccessPolicy/templates/multiTenantOrganizationIdentitySynchronization","keep",,"Remove-MgPolicyCrossTenantAccessPolicyTemplateMultiTenantOrganizationIdentitySynchronization","Remove-MgPolicyCrossTenantAccessPolicyTemplateMultiTenantOrganizationIdentitySynchronization" +"DELETE","/policies/crossTenantAccessPolicy/templates/multiTenantOrganizationPartnerConfiguration","keep",,"Remove-MgPolicyCrossTenantAccessPolicyTemplateMultiTenantOrganizationPartnerConfiguration","Remove-MgPolicyCrossTenantAccessPolicyTemplateMultiTenantOrganizationPartnerConfiguration" +"DELETE","/policies/defaultAppManagementPolicy","keep",,"Remove-MgPolicyDefaultAppManagementPolicy","Remove-MgPolicyDefaultAppManagementPolicy" +"DELETE","/policies/featureRolloutPolicies/{param}","keep",,"Remove-MgPolicyFeatureRolloutPolicy","Remove-MgPolicyFeatureRolloutPolicy" +"DELETE","/policies/featureRolloutPolicies/{param}/appliesTo/{param}/$ref","rename","PolicyFeatureRolloutPolicyApplyToDirectoryObjectByRef","Remove-MgPolicyFeatureRolloutPolicyApplyToByRef","Remove-MgPolicyFeatureRolloutPolicyApplyToDirectoryObjectByRef" +"DELETE","/policies/federatedTokenValidationPolicy","keep",,"Remove-MgPolicyFederatedTokenValidationPolicy","Remove-MgPolicyFederatedTokenValidationPolicy" +"DELETE","/policies/homeRealmDiscoveryPolicies/{param}","keep",,"Remove-MgPolicyHomeRealmDiscoveryPolicy","Remove-MgPolicyHomeRealmDiscoveryPolicy" +"DELETE","/policies/identitySecurityDefaultsEnforcementPolicy","keep",,"Remove-MgPolicyIdentitySecurityDefaultEnforcementPolicy","Remove-MgPolicyIdentitySecurityDefaultEnforcementPolicy" +"DELETE","/policies/permissionGrantPolicies/{param}","keep",,"Remove-MgPolicyPermissionGrantPolicy","Remove-MgPolicyPermissionGrantPolicy" +"DELETE","/policies/permissionGrantPolicies/{param}/excludes/{param}","keep",,"Remove-MgPolicyPermissionGrantPolicyExclude","Remove-MgPolicyPermissionGrantPolicyExclude" +"DELETE","/policies/permissionGrantPolicies/{param}/includes/{param}","keep",,"Remove-MgPolicyPermissionGrantPolicyInclude","Remove-MgPolicyPermissionGrantPolicyInclude" +"DELETE","/policies/roleManagementPolicies/{param}","keep",,"Remove-MgPolicyRoleManagementPolicy","Remove-MgPolicyRoleManagementPolicy" +"DELETE","/policies/roleManagementPolicies/{param}/effectiveRules/{param}","keep",,"Remove-MgPolicyRoleManagementPolicyEffectiveRule","Remove-MgPolicyRoleManagementPolicyEffectiveRule" +"DELETE","/policies/roleManagementPolicies/{param}/rules/{param}","keep",,"Remove-MgPolicyRoleManagementPolicyRule","Remove-MgPolicyRoleManagementPolicyRule" +"DELETE","/policies/roleManagementPolicyAssignments/{param}","keep",,"Remove-MgPolicyRoleManagementPolicyAssignment","Remove-MgPolicyRoleManagementPolicyAssignment" +"DELETE","/policies/tokenIssuancePolicies/{param}","keep",,"Remove-MgPolicyTokenIssuancePolicy","Remove-MgPolicyTokenIssuancePolicy" +"DELETE","/policies/tokenLifetimePolicies/{param}","keep",,"Remove-MgPolicyTokenLifetimePolicy","Remove-MgPolicyTokenLifetimePolicy" +"DELETE","/print/connectors/{param}","keep",,"Remove-MgPrintConnector","Remove-MgPrintConnector" +"DELETE","/print/operations/{param}","keep",,"Remove-MgPrintOperation","Remove-MgPrintOperation" +"DELETE","/print/printers/{param}","rename","PrintPrinter","Remove-MgPrinter","Remove-MgPrintPrinter" +"DELETE","/print/printers/{param}/jobs/{param}","rename","PrintPrinterJob","Remove-MgPrinterJob","Remove-MgPrintPrinterJob" +"DELETE","/print/printers/{param}/jobs/{param}/documents/{param}","rename","PrintPrinterJobDocument","Remove-MgPrinterJobDocument","Remove-MgPrintPrinterJobDocument" +"DELETE","/print/printers/{param}/jobs/{param}/documents/{param}/$value","rename","PrintPrinterJobDocumentContent","Remove-MgPrinterJobDocumentContent","Remove-MgPrintPrinterJobDocumentContent" +"DELETE","/print/printers/{param}/jobs/{param}/tasks/{param}","rename","PrintPrinterJobTask","Remove-MgPrinterJobTask","Remove-MgPrintPrinterJobTask" +"DELETE","/print/printers/{param}/taskTriggers/{param}","rename","PrintPrinterTaskTrigger","Remove-MgPrinterTaskTrigger","Remove-MgPrintPrinterTaskTrigger" +"DELETE","/print/services/{param}","keep",,"Remove-MgPrintService","Remove-MgPrintService" +"DELETE","/print/services/{param}/endpoints/{param}","keep",,"Remove-MgPrintServiceEndpoint","Remove-MgPrintServiceEndpoint" +"DELETE","/print/shares/{param}","keep",,"Remove-MgPrintShare","Remove-MgPrintShare" +"DELETE","/print/shares/{param}/allowedGroups/{param}/$ref","defer-crosspath",,"Remove-MgPrintShareAllowedGroupByRef","Remove-MgPrintShareAllowedGroupByRef ships from a different uri" +"DELETE","/print/shares/{param}/allowedUsers/{param}/$ref","defer-crosspath",,"Remove-MgPrintShareAllowedUserByRef","Remove-MgPrintShareAllowedUserByRef ships from a different uri" +"DELETE","/print/shares/{param}/jobs/{param}","keep",,"Remove-MgPrintShareJob","Remove-MgPrintShareJob" +"DELETE","/print/shares/{param}/jobs/{param}/documents/{param}","keep",,"Remove-MgPrintShareJobDocument","Remove-MgPrintShareJobDocument" +"DELETE","/print/shares/{param}/jobs/{param}/documents/{param}/$value","keep",,"Remove-MgPrintShareJobDocumentContent","Remove-MgPrintShareJobDocumentContent" +"DELETE","/print/shares/{param}/jobs/{param}/tasks/{param}","keep",,"Remove-MgPrintShareJobTask","Remove-MgPrintShareJobTask" +"DELETE","/print/taskDefinitions/{param}","keep",,"Remove-MgPrintTaskDefinition","Remove-MgPrintTaskDefinition" +"DELETE","/print/taskDefinitions/{param}/tasks/{param}","keep",,"Remove-MgPrintTaskDefinitionTask","Remove-MgPrintTaskDefinitionTask" +"DELETE","/privacy/subjectRightsRequests/{param}","keep",,"Remove-MgPrivacySubjectRightsRequest","Remove-MgPrivacySubjectRightsRequest" +"DELETE","/privacy/subjectRightsRequests/{param}/notes/{param}","keep",,"Remove-MgPrivacySubjectRightsRequestNote","Remove-MgPrivacySubjectRightsRequestNote" +"DELETE","/reports/authenticationMethods","suppress",,"Remove-MgReportAuthenticationMethod","no oracle row for DELETE /reports/authenticationMethods and 'Remove-MgReportAuthenticationMethod' unshipped" +"DELETE","/reports/authenticationMethods/userRegistrationDetails/{param}","keep",,"Remove-MgReportAuthenticationMethodUserRegistrationDetail","Remove-MgReportAuthenticationMethodUserRegistrationDetail" +"DELETE","/reports/dailyPrintUsageByPrinter/{param}","suppress",,"Remove-MgReportDailyPrintUsageByPrinter","no oracle row for DELETE /reports/dailyPrintUsageByPrinter/{param} and 'Remove-MgReportDailyPrintUsageByPrinter' unshipped" +"DELETE","/reports/dailyPrintUsageByUser/{param}","suppress",,"Remove-MgReportDailyPrintUsageByUser","no oracle row for DELETE /reports/dailyPrintUsageByUser/{param} and 'Remove-MgReportDailyPrintUsageByUser' unshipped" +"DELETE","/reports/monthlyPrintUsageByPrinter/{param}","suppress",,"Remove-MgReportMonthlyPrintUsageByPrinter","no oracle row for DELETE /reports/monthlyPrintUsageByPrinter/{param} and 'Remove-MgReportMonthlyPrintUsageByPrinter' unshipped" +"DELETE","/reports/monthlyPrintUsageByUser/{param}","suppress",,"Remove-MgReportMonthlyPrintUsageByUser","no oracle row for DELETE /reports/monthlyPrintUsageByUser/{param} and 'Remove-MgReportMonthlyPrintUsageByUser' unshipped" +"DELETE","/reports/partners","suppress",,"Remove-MgReportPartner","no oracle row for DELETE /reports/partners and 'Remove-MgReportPartner' unshipped" +"DELETE","/reports/partners/billing","keep",,"Remove-MgReportPartnerBilling","Remove-MgReportPartnerBilling" +"DELETE","/reports/partners/billing/manifests/{param}","keep",,"Remove-MgReportPartnerBillingManifest","Remove-MgReportPartnerBillingManifest" +"DELETE","/reports/partners/billing/operations/{param}","keep",,"Remove-MgReportPartnerBillingOperation","Remove-MgReportPartnerBillingOperation" +"DELETE","/reports/partners/billing/reconciliation","keep",,"Remove-MgReportPartnerBillingReconciliation","Remove-MgReportPartnerBillingReconciliation" +"DELETE","/reports/partners/billing/reconciliation/billed","keep",,"Remove-MgReportPartnerBillingReconciliationBilled","Remove-MgReportPartnerBillingReconciliationBilled" +"DELETE","/reports/partners/billing/reconciliation/unbilled","keep",,"Remove-MgReportPartnerBillingReconciliationUnbilled","Remove-MgReportPartnerBillingReconciliationUnbilled" +"DELETE","/reports/partners/billing/usage","keep",,"Remove-MgReportPartnerBillingUsage","Remove-MgReportPartnerBillingUsage" +"DELETE","/reports/partners/billing/usage/billed","keep",,"Remove-MgReportPartnerBillingUsageBilled","Remove-MgReportPartnerBillingUsageBilled" +"DELETE","/reports/partners/billing/usage/unbilled","keep",,"Remove-MgReportPartnerBillingUsageUnbilled","Remove-MgReportPartnerBillingUsageUnbilled" +"DELETE","/reports/security","suppress",,"Remove-MgReportSecurity","no oracle row for DELETE /reports/security and 'Remove-MgReportSecurity' unshipped" +"DELETE","/roleManagement/directory","keep",,"Remove-MgRoleManagementDirectory","Remove-MgRoleManagementDirectory" +"DELETE","/roleManagement/directory/resourceNamespaces/{param}","keep",,"Remove-MgRoleManagementDirectoryResourceNamespace","Remove-MgRoleManagementDirectoryResourceNamespace" +"DELETE","/roleManagement/directory/resourceNamespaces/{param}/resourceActions/{param}","keep",,"Remove-MgRoleManagementDirectoryResourceNamespaceResourceAction","Remove-MgRoleManagementDirectoryResourceNamespaceResourceAction" +"DELETE","/roleManagement/directory/roleAssignments/{param}","keep",,"Remove-MgRoleManagementDirectoryRoleAssignment","Remove-MgRoleManagementDirectoryRoleAssignment" +"DELETE","/roleManagement/directory/roleAssignments/{param}/appScope","keep",,"Remove-MgRoleManagementDirectoryRoleAssignmentAppScope","Remove-MgRoleManagementDirectoryRoleAssignmentAppScope" +"DELETE","/roleManagement/directory/roleAssignmentScheduleInstances/{param}","keep",,"Remove-MgRoleManagementDirectoryRoleAssignmentScheduleInstance","Remove-MgRoleManagementDirectoryRoleAssignmentScheduleInstance" +"DELETE","/roleManagement/directory/roleAssignmentScheduleRequests/{param}","keep",,"Remove-MgRoleManagementDirectoryRoleAssignmentScheduleRequest","Remove-MgRoleManagementDirectoryRoleAssignmentScheduleRequest" +"DELETE","/roleManagement/directory/roleAssignmentSchedules/{param}","keep",,"Remove-MgRoleManagementDirectoryRoleAssignmentSchedule","Remove-MgRoleManagementDirectoryRoleAssignmentSchedule" +"DELETE","/roleManagement/directory/roleDefinitions/{param}","keep",,"Remove-MgRoleManagementDirectoryRoleDefinition","Remove-MgRoleManagementDirectoryRoleDefinition" +"DELETE","/roleManagement/directory/roleDefinitions/{param}/inheritsPermissionsFrom/{param}","keep",,"Remove-MgRoleManagementDirectoryRoleDefinitionInheritPermissionFrom","Remove-MgRoleManagementDirectoryRoleDefinitionInheritPermissionFrom" +"DELETE","/roleManagement/directory/roleEligibilityScheduleInstances/{param}","keep",,"Remove-MgRoleManagementDirectoryRoleEligibilityScheduleInstance","Remove-MgRoleManagementDirectoryRoleEligibilityScheduleInstance" +"DELETE","/roleManagement/directory/roleEligibilityScheduleRequests/{param}","keep",,"Remove-MgRoleManagementDirectoryRoleEligibilityScheduleRequest","Remove-MgRoleManagementDirectoryRoleEligibilityScheduleRequest" +"DELETE","/roleManagement/directory/roleEligibilitySchedules/{param}","keep",,"Remove-MgRoleManagementDirectoryRoleEligibilitySchedule","Remove-MgRoleManagementDirectoryRoleEligibilitySchedule" +"DELETE","/roleManagement/entitlementManagement","keep",,"Remove-MgRoleManagementEntitlementManagement","Remove-MgRoleManagementEntitlementManagement" +"DELETE","/roleManagement/entitlementManagement/resourceNamespaces/{param}","keep",,"Remove-MgRoleManagementEntitlementManagementResourceNamespace","Remove-MgRoleManagementEntitlementManagementResourceNamespace" +"DELETE","/roleManagement/entitlementManagement/resourceNamespaces/{param}/resourceActions/{param}","keep",,"Remove-MgRoleManagementEntitlementManagementResourceNamespaceResourceAction","Remove-MgRoleManagementEntitlementManagementResourceNamespaceResourceAction" +"DELETE","/roleManagement/entitlementManagement/roleAssignments/{param}","keep",,"Remove-MgRoleManagementEntitlementManagementRoleAssignment","Remove-MgRoleManagementEntitlementManagementRoleAssignment" +"DELETE","/roleManagement/entitlementManagement/roleAssignments/{param}/appScope","keep",,"Remove-MgRoleManagementEntitlementManagementRoleAssignmentAppScope","Remove-MgRoleManagementEntitlementManagementRoleAssignmentAppScope" +"DELETE","/roleManagement/entitlementManagement/roleAssignmentScheduleInstances/{param}","keep",,"Remove-MgRoleManagementEntitlementManagementRoleAssignmentScheduleInstance","Remove-MgRoleManagementEntitlementManagementRoleAssignmentScheduleInstance" +"DELETE","/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{param}","keep",,"Remove-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequest","Remove-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequest" +"DELETE","/roleManagement/entitlementManagement/roleAssignmentSchedules/{param}","keep",,"Remove-MgRoleManagementEntitlementManagementRoleAssignmentSchedule","Remove-MgRoleManagementEntitlementManagementRoleAssignmentSchedule" +"DELETE","/roleManagement/entitlementManagement/roleDefinitions/{param}","keep",,"Remove-MgRoleManagementEntitlementManagementRoleDefinition","Remove-MgRoleManagementEntitlementManagementRoleDefinition" +"DELETE","/roleManagement/entitlementManagement/roleDefinitions/{param}/inheritsPermissionsFrom/{param}","keep",,"Remove-MgRoleManagementEntitlementManagementRoleDefinitionInheritPermissionFrom","Remove-MgRoleManagementEntitlementManagementRoleDefinitionInheritPermissionFrom" +"DELETE","/roleManagement/entitlementManagement/roleEligibilityScheduleInstances/{param}","keep",,"Remove-MgRoleManagementEntitlementManagementRoleEligibilityScheduleInstance","Remove-MgRoleManagementEntitlementManagementRoleEligibilityScheduleInstance" +"DELETE","/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{param}","keep",,"Remove-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequest","Remove-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequest" +"DELETE","/roleManagement/entitlementManagement/roleEligibilitySchedules/{param}","keep",,"Remove-MgRoleManagementEntitlementManagementRoleEligibilitySchedule","Remove-MgRoleManagementEntitlementManagementRoleEligibilitySchedule" +"DELETE","/schemaExtensions/{param}","keep",,"Remove-MgSchemaExtension","Remove-MgSchemaExtension" +"DELETE","/search/acronyms/{param}","keep",,"Remove-MgSearchAcronym","Remove-MgSearchAcronym" +"DELETE","/search/bookmarks/{param}","keep",,"Remove-MgSearchBookmark","Remove-MgSearchBookmark" +"DELETE","/search/qnas/{param}","keep",,"Remove-MgSearchQna","Remove-MgSearchQna" +"DELETE","/security/attackSimulation/endUserNotifications/{param}","keep",,"Remove-MgSecurityAttackSimulationEndUserNotification","Remove-MgSecurityAttackSimulationEndUserNotification" +"DELETE","/security/attackSimulation/endUserNotifications/{param}/details/{param}","keep",,"Remove-MgSecurityAttackSimulationEndUserNotificationDetail","Remove-MgSecurityAttackSimulationEndUserNotificationDetail" +"DELETE","/security/attackSimulation/landingPages/{param}","keep",,"Remove-MgSecurityAttackSimulationLandingPage","Remove-MgSecurityAttackSimulationLandingPage" +"DELETE","/security/attackSimulation/landingPages/{param}/details/{param}","keep",,"Remove-MgSecurityAttackSimulationLandingPageDetail","Remove-MgSecurityAttackSimulationLandingPageDetail" +"DELETE","/security/attackSimulation/loginPages/{param}","keep",,"Remove-MgSecurityAttackSimulationLoginPage","Remove-MgSecurityAttackSimulationLoginPage" +"DELETE","/security/attackSimulation/operations/{param}","keep",,"Remove-MgSecurityAttackSimulationOperation","Remove-MgSecurityAttackSimulationOperation" +"DELETE","/security/attackSimulation/payloads/{param}","keep",,"Remove-MgSecurityAttackSimulationPayload","Remove-MgSecurityAttackSimulationPayload" +"DELETE","/security/attackSimulation/simulationAutomations/{param}","keep",,"Remove-MgSecurityAttackSimulationAutomation","Remove-MgSecurityAttackSimulationAutomation" +"DELETE","/security/attackSimulation/simulationAutomations/{param}/runs/{param}","keep",,"Remove-MgSecurityAttackSimulationAutomationRun","Remove-MgSecurityAttackSimulationAutomationRun" +"DELETE","/security/attackSimulation/simulations/{param}","keep",,"Remove-MgSecurityAttackSimulation","Remove-MgSecurityAttackSimulation" +"DELETE","/security/attackSimulation/trainings/{param}","keep",,"Remove-MgSecurityAttackSimulationTraining","Remove-MgSecurityAttackSimulationTraining" +"DELETE","/security/attackSimulation/trainings/{param}/languageDetails/{param}","keep",,"Remove-MgSecurityAttackSimulationTrainingLanguageDetail","Remove-MgSecurityAttackSimulationTrainingLanguageDetail" +"DELETE","/security/auditLog","keep",,"Remove-MgSecurityAuditLog","Remove-MgSecurityAuditLog" +"DELETE","/security/auditLog/queries/{param}","keep",,"Remove-MgSecurityAuditLogQuery","Remove-MgSecurityAuditLogQuery" +"DELETE","/security/cases","keep",,"Remove-MgSecurityCase","Remove-MgSecurityCase" +"DELETE","/security/cases/ediscoveryCases/{param}","keep",,"Remove-MgSecurityCaseEdiscoveryCase","Remove-MgSecurityCaseEdiscoveryCase" +"DELETE","/security/cases/ediscoveryCases/{param}/caseMembers/{param}","keep",,"Remove-MgSecurityCaseEdiscoveryCaseMember","Remove-MgSecurityCaseEdiscoveryCaseMember" +"DELETE","/security/cases/ediscoveryCases/{param}/custodians/{param}","keep",,"Remove-MgSecurityCaseEdiscoveryCaseCustodian","Remove-MgSecurityCaseEdiscoveryCaseCustodian" +"DELETE","/security/cases/ediscoveryCases/{param}/custodians/{param}/siteSources/{param}","keep",,"Remove-MgSecurityCaseEdiscoveryCaseCustodianSiteSource","Remove-MgSecurityCaseEdiscoveryCaseCustodianSiteSource" +"DELETE","/security/cases/ediscoveryCases/{param}/custodians/{param}/unifiedGroupSources/{param}","keep",,"Remove-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource","Remove-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource" +"DELETE","/security/cases/ediscoveryCases/{param}/custodians/{param}/userSources/{param}","keep",,"Remove-MgSecurityCaseEdiscoveryCaseCustodianUserSource","Remove-MgSecurityCaseEdiscoveryCaseCustodianUserSource" +"DELETE","/security/cases/ediscoveryCases/{param}/noncustodialDataSources/{param}","keep",,"Remove-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource","Remove-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource" +"DELETE","/security/cases/ediscoveryCases/{param}/noncustodialDataSources/{param}/dataSource","suppress",,"Remove-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceDataSource","no oracle row for DELETE /security/cases/ediscoveryCases/{param}/noncustodialDataSources/{param}/dataSource and 'Remove-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceDataSource' unshipped" +"DELETE","/security/cases/ediscoveryCases/{param}/operations/{param}","keep",,"Remove-MgSecurityCaseEdiscoveryCaseOperation","Remove-MgSecurityCaseEdiscoveryCaseOperation" +"DELETE","/security/cases/ediscoveryCases/{param}/reviewSets/{param}","keep",,"Remove-MgSecurityCaseEdiscoveryCaseReviewSet","Remove-MgSecurityCaseEdiscoveryCaseReviewSet" +"DELETE","/security/cases/ediscoveryCases/{param}/reviewSets/{param}/queries/{param}","keep",,"Remove-MgSecurityCaseEdiscoveryCaseReviewSetQuery","Remove-MgSecurityCaseEdiscoveryCaseReviewSetQuery" +"DELETE","/security/cases/ediscoveryCases/{param}/searches/{param}","keep",,"Remove-MgSecurityCaseEdiscoveryCaseSearch","Remove-MgSecurityCaseEdiscoveryCaseSearch" +"DELETE","/security/cases/ediscoveryCases/{param}/searches/{param}/additionalSources/{param}","keep",,"Remove-MgSecurityCaseEdiscoveryCaseSearchAdditionalSource","Remove-MgSecurityCaseEdiscoveryCaseSearchAdditionalSource" +"DELETE","/security/cases/ediscoveryCases/{param}/settings","keep",,"Remove-MgSecurityCaseEdiscoveryCaseSetting","Remove-MgSecurityCaseEdiscoveryCaseSetting" +"DELETE","/security/cases/ediscoveryCases/{param}/tags/{param}","keep",,"Remove-MgSecurityCaseEdiscoveryCaseTag","Remove-MgSecurityCaseEdiscoveryCaseTag" +"DELETE","/security/collaboration","keep",,"Remove-MgSecurityCollaboration","Remove-MgSecurityCollaboration" +"DELETE","/security/collaboration/analyzedEmails/{param}","keep",,"Remove-MgSecurityCollaborationAnalyzedEmail","Remove-MgSecurityCollaborationAnalyzedEmail" +"DELETE","/security/dataSecurityAndGovernance","keep",,"Remove-MgSecurityDataSecurityAndGovernance","Remove-MgSecurityDataSecurityAndGovernance" +"DELETE","/security/dataSecurityAndGovernance/protectionScopes","keep",,"Remove-MgSecurityDataSecurityAndGovernanceProtectionScope","Remove-MgSecurityDataSecurityAndGovernanceProtectionScope" +"DELETE","/security/dataSecurityAndGovernance/sensitivityLabels/{param}","keep",,"Remove-MgSecurityDataSecurityAndGovernanceSensitivityLabel","Remove-MgSecurityDataSecurityAndGovernanceSensitivityLabel" +"DELETE","/security/dataSecurityAndGovernance/sensitivityLabels/{param}/sublabels/{param}","keep",,"Remove-MgSecurityDataSecurityAndGovernanceSensitivityLabelSublabel","Remove-MgSecurityDataSecurityAndGovernanceSensitivityLabelSublabel" +"DELETE","/security/identities","keep",,"Remove-MgSecurityIdentity","Remove-MgSecurityIdentity" +"DELETE","/security/identities/healthIssues/{param}","keep",,"Remove-MgSecurityIdentityHealthIssue","Remove-MgSecurityIdentityHealthIssue" +"DELETE","/security/identities/identityAccounts/{param}","keep",,"Remove-MgSecurityIdentityAccount","Remove-MgSecurityIdentityAccount" +"DELETE","/security/identities/sensorCandidateActivationConfiguration","keep",,"Remove-MgSecurityIdentitySensorCandidateActivationConfiguration","Remove-MgSecurityIdentitySensorCandidateActivationConfiguration" +"DELETE","/security/identities/sensorCandidates/{param}","keep",,"Remove-MgSecurityIdentitySensorCandidate","Remove-MgSecurityIdentitySensorCandidate" +"DELETE","/security/identities/sensors/{param}","keep",,"Remove-MgSecurityIdentitySensor","Remove-MgSecurityIdentitySensor" +"DELETE","/security/identities/settings","keep",,"Remove-MgSecurityIdentitySetting","Remove-MgSecurityIdentitySetting" +"DELETE","/security/identities/settings/autoAuditingConfiguration","keep",,"Remove-MgSecurityIdentitySettingAutoAuditingConfiguration","Remove-MgSecurityIdentitySettingAutoAuditingConfiguration" +"DELETE","/security/incidents/{param}","keep",,"Remove-MgSecurityIncident","Remove-MgSecurityIncident" +"DELETE","/security/labels","keep",,"Remove-MgSecurityLabel","Remove-MgSecurityLabel" +"DELETE","/security/labels/authorities/{param}","keep",,"Remove-MgSecurityLabelAuthority","Remove-MgSecurityLabelAuthority" +"DELETE","/security/labels/categories/{param}","keep",,"Remove-MgSecurityLabelCategory","Remove-MgSecurityLabelCategory" +"DELETE","/security/labels/categories/{param}/subcategories/{param}","keep",,"Remove-MgSecurityLabelCategorySubcategory","Remove-MgSecurityLabelCategorySubcategory" +"DELETE","/security/labels/citations/{param}","keep",,"Remove-MgSecurityLabelCitation","Remove-MgSecurityLabelCitation" +"DELETE","/security/labels/departments/{param}","keep",,"Remove-MgSecurityLabelDepartment","Remove-MgSecurityLabelDepartment" +"DELETE","/security/labels/filePlanReferences/{param}","keep",,"Remove-MgSecurityLabelFilePlanReference","Remove-MgSecurityLabelFilePlanReference" +"DELETE","/security/labels/retentionLabels/{param}","keep",,"Remove-MgSecurityLabelRetentionLabel","Remove-MgSecurityLabelRetentionLabel" +"DELETE","/security/labels/retentionLabels/{param}/descriptors","keep",,"Remove-MgSecurityLabelRetentionLabelDescriptor","Remove-MgSecurityLabelRetentionLabelDescriptor" +"DELETE","/security/labels/retentionLabels/{param}/dispositionReviewStages/{param}","keep",,"Remove-MgSecurityLabelRetentionLabelDispositionReviewStage","Remove-MgSecurityLabelRetentionLabelDispositionReviewStage" +"DELETE","/security/secureScoreControlProfiles/{param}","keep",,"Remove-MgSecuritySecureScoreControlProfile","Remove-MgSecuritySecureScoreControlProfile" +"DELETE","/security/secureScores/{param}","keep",,"Remove-MgSecuritySecureScore","Remove-MgSecuritySecureScore" +"DELETE","/security/subjectRightsRequests/{param}","keep",,"Remove-MgSecuritySubjectRightsRequest","Remove-MgSecuritySubjectRightsRequest" +"DELETE","/security/subjectRightsRequests/{param}/notes/{param}","keep",,"Remove-MgSecuritySubjectRightsRequestNote","Remove-MgSecuritySubjectRightsRequestNote" +"DELETE","/security/threatIntelligence","keep",,"Remove-MgSecurityThreatIntelligence","Remove-MgSecurityThreatIntelligence" +"DELETE","/security/threatIntelligence/articleIndicators/{param}","keep",,"Remove-MgSecurityThreatIntelligenceArticleIndicator","Remove-MgSecurityThreatIntelligenceArticleIndicator" +"DELETE","/security/threatIntelligence/articles/{param}","keep",,"Remove-MgSecurityThreatIntelligenceArticle","Remove-MgSecurityThreatIntelligenceArticle" +"DELETE","/security/threatIntelligence/hostComponents/{param}","keep",,"Remove-MgSecurityThreatIntelligenceHostComponent","Remove-MgSecurityThreatIntelligenceHostComponent" +"DELETE","/security/threatIntelligence/hostCookies/{param}","keep",,"Remove-MgSecurityThreatIntelligenceHostCookie","Remove-MgSecurityThreatIntelligenceHostCookie" +"DELETE","/security/threatIntelligence/hostPairs/{param}","keep",,"Remove-MgSecurityThreatIntelligenceHostPair","Remove-MgSecurityThreatIntelligenceHostPair" +"DELETE","/security/threatIntelligence/hostPorts/{param}","keep",,"Remove-MgSecurityThreatIntelligenceHostPort","Remove-MgSecurityThreatIntelligenceHostPort" +"DELETE","/security/threatIntelligence/hosts/{param}","keep",,"Remove-MgSecurityThreatIntelligenceHost","Remove-MgSecurityThreatIntelligenceHost" +"DELETE","/security/threatIntelligence/hosts/{param}/reputation","keep",,"Remove-MgSecurityThreatIntelligenceHostReputation","Remove-MgSecurityThreatIntelligenceHostReputation" +"DELETE","/security/threatIntelligence/hostSslCertificates/{param}","keep",,"Remove-MgSecurityThreatIntelligenceHostSslCertificate","Remove-MgSecurityThreatIntelligenceHostSslCertificate" +"DELETE","/security/threatIntelligence/hostTrackers/{param}","keep",,"Remove-MgSecurityThreatIntelligenceHostTracker","Remove-MgSecurityThreatIntelligenceHostTracker" +"DELETE","/security/threatIntelligence/intelligenceProfileIndicators/{param}","keep",,"Remove-MgSecurityThreatIntelligenceProfileIndicator","Remove-MgSecurityThreatIntelligenceProfileIndicator" +"DELETE","/security/threatIntelligence/intelProfiles/{param}","keep",,"Remove-MgSecurityThreatIntelligenceIntelProfile","Remove-MgSecurityThreatIntelligenceIntelProfile" +"DELETE","/security/threatIntelligence/passiveDnsRecords/{param}","keep",,"Remove-MgSecurityThreatIntelligencePassiveDnsRecord","Remove-MgSecurityThreatIntelligencePassiveDnsRecord" +"DELETE","/security/threatIntelligence/sslCertificates/{param}","keep",,"Remove-MgSecurityThreatIntelligenceSslCertificate","Remove-MgSecurityThreatIntelligenceSslCertificate" +"DELETE","/security/threatIntelligence/subdomains/{param}","keep",,"Remove-MgSecurityThreatIntelligenceSubdomain","Remove-MgSecurityThreatIntelligenceSubdomain" +"DELETE","/security/threatIntelligence/vulnerabilities/{param}","keep",,"Remove-MgSecurityThreatIntelligenceVulnerability","Remove-MgSecurityThreatIntelligenceVulnerability" +"DELETE","/security/threatIntelligence/vulnerabilities/{param}/components/{param}","keep",,"Remove-MgSecurityThreatIntelligenceVulnerabilityComponent","Remove-MgSecurityThreatIntelligenceVulnerabilityComponent" +"DELETE","/security/threatIntelligence/whoisHistoryRecords/{param}","keep",,"Remove-MgSecurityThreatIntelligenceWhoisHistoryRecord","Remove-MgSecurityThreatIntelligenceWhoisHistoryRecord" +"DELETE","/security/threatIntelligence/whoisRecords/{param}","keep",,"Remove-MgSecurityThreatIntelligenceWhoisRecord","Remove-MgSecurityThreatIntelligenceWhoisRecord" +"DELETE","/security/triggers","keep",,"Remove-MgSecurityTrigger","Remove-MgSecurityTrigger" +"DELETE","/security/triggers/retentionEvents/{param}","keep",,"Remove-MgSecurityTriggerRetentionEvent","Remove-MgSecurityTriggerRetentionEvent" +"DELETE","/security/triggerTypes","keep",,"Remove-MgSecurityTriggerType","Remove-MgSecurityTriggerType" +"DELETE","/security/triggerTypes/retentionEventTypes/{param}","keep",,"Remove-MgSecurityTriggerTypeRetentionEventType","Remove-MgSecurityTriggerTypeRetentionEventType" +"DELETE","/servicePrincipals/{param}","keep",,"Remove-MgServicePrincipal","Remove-MgServicePrincipal" +"DELETE","/servicePrincipals/{param}/appRoleAssignedTo/{param}","keep",,"Remove-MgServicePrincipalAppRoleAssignedTo","Remove-MgServicePrincipalAppRoleAssignedTo" +"DELETE","/servicePrincipals/{param}/appRoleAssignments/{param}","keep",,"Remove-MgServicePrincipalAppRoleAssignment","Remove-MgServicePrincipalAppRoleAssignment" +"DELETE","/servicePrincipals/{param}/claimsMappingPolicies/{param}/$ref","rename","ServicePrincipalClaimMappingPolicyClaimMappingPolicyByRef","Remove-MgServicePrincipalClaimMappingPolicyByRef","Remove-MgServicePrincipalClaimMappingPolicyClaimMappingPolicyByRef" +"DELETE","/servicePrincipals/{param}/delegatedPermissionClassifications/{param}","keep",,"Remove-MgServicePrincipalDelegatedPermissionClassification","Remove-MgServicePrincipalDelegatedPermissionClassification" +"DELETE","/servicePrincipals/{param}/endpoints/{param}","keep",,"Remove-MgServicePrincipalEndpoint","Remove-MgServicePrincipalEndpoint" +"DELETE","/servicePrincipals/{param}/federatedIdentityCredentials/{param}","suppress",,"Remove-MgServicePrincipalFederatedIdentityCredential","no oracle row for DELETE /servicePrincipals/{param}/federatedIdentityCredentials/{param} and 'Remove-MgServicePrincipalFederatedIdentityCredential' unshipped" +"DELETE","/servicePrincipals/{param}/homeRealmDiscoveryPolicies/{param}/$ref","rename","ServicePrincipalHomeRealmDiscoveryPolicyHomeRealmDiscoveryPolicyByRef","Remove-MgServicePrincipalHomeRealmDiscoveryPolicyByRef","Remove-MgServicePrincipalHomeRealmDiscoveryPolicyHomeRealmDiscoveryPolicyByRef" +"DELETE","/servicePrincipals/{param}/owners/{param}/$ref","rename","ServicePrincipalOwnerDirectoryObjectByRef","Remove-MgServicePrincipalOwnerByRef","Remove-MgServicePrincipalOwnerDirectoryObjectByRef" +"DELETE","/servicePrincipals/{param}/remoteDesktopSecurityConfiguration","keep",,"Remove-MgServicePrincipalRemoteDesktopSecurityConfiguration","Remove-MgServicePrincipalRemoteDesktopSecurityConfiguration" +"DELETE","/servicePrincipals/{param}/remoteDesktopSecurityConfiguration/approvedClientApps/{param}","keep",,"Remove-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp","Remove-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp" +"DELETE","/servicePrincipals/{param}/remoteDesktopSecurityConfiguration/targetDeviceGroups/{param}","keep",,"Remove-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup","Remove-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup" +"DELETE","/servicePrincipals/{param}/synchronization","keep",,"Remove-MgServicePrincipalSynchronization","Remove-MgServicePrincipalSynchronization" +"DELETE","/servicePrincipals/{param}/synchronization/jobs/{param}","keep",,"Remove-MgServicePrincipalSynchronizationJob","Remove-MgServicePrincipalSynchronizationJob" +"DELETE","/servicePrincipals/{param}/synchronization/jobs/{param}/bulkUpload","keep",,"Remove-MgServicePrincipalSynchronizationJobBulkUpload","Remove-MgServicePrincipalSynchronizationJobBulkUpload" +"DELETE","/servicePrincipals/{param}/synchronization/jobs/{param}/bulkUpload/$value","keep",,"Remove-MgServicePrincipalSynchronizationJobBulkUploadContent","Remove-MgServicePrincipalSynchronizationJobBulkUploadContent" +"DELETE","/servicePrincipals/{param}/synchronization/jobs/{param}/schema","keep",,"Remove-MgServicePrincipalSynchronizationJobSchema","Remove-MgServicePrincipalSynchronizationJobSchema" +"DELETE","/servicePrincipals/{param}/synchronization/jobs/{param}/schema/directories/{param}","keep",,"Remove-MgServicePrincipalSynchronizationJobSchemaDirectory","Remove-MgServicePrincipalSynchronizationJobSchemaDirectory" +"DELETE","/servicePrincipals/{param}/synchronization/templates/{param}","keep",,"Remove-MgServicePrincipalSynchronizationTemplate","Remove-MgServicePrincipalSynchronizationTemplate" +"DELETE","/servicePrincipals/{param}/synchronization/templates/{param}/schema","keep",,"Remove-MgServicePrincipalSynchronizationTemplateSchema","Remove-MgServicePrincipalSynchronizationTemplateSchema" +"DELETE","/servicePrincipals/{param}/synchronization/templates/{param}/schema/directories/{param}","keep",,"Remove-MgServicePrincipalSynchronizationTemplateSchemaDirectory","Remove-MgServicePrincipalSynchronizationTemplateSchemaDirectory" +"DELETE","/servicePrincipals/{param}/tokenIssuancePolicies/{param}/$ref","rename","ServicePrincipalTokenIssuancePolicyTokenIssuancePolicyByRef","Remove-MgServicePrincipalTokenIssuancePolicyByRef","Remove-MgServicePrincipalTokenIssuancePolicyTokenIssuancePolicyByRef" +"DELETE","/servicePrincipals/{param}/tokenLifetimePolicies/{param}/$ref","rename","ServicePrincipalTokenLifetimePolicyTokenLifetimePolicyByRef","Remove-MgServicePrincipalTokenLifetimePolicyByRef","Remove-MgServicePrincipalTokenLifetimePolicyTokenLifetimePolicyByRef" +"DELETE","/shares/{param}","keep",,"Remove-MgShare","Remove-MgShareSharedDriveItemSharedDriveItem" +"DELETE","/shares/{param}/driveItem/$value","keep",,"Remove-MgShareDriveItemContent","Remove-MgShareDriveItemContent" +"DELETE","/shares/{param}/items/{param}/$value","keep",,"Remove-MgShareItemContent","Remove-MgShareItemContent" +"DELETE","/shares/{param}/list","keep",,"Remove-MgShareList","Remove-MgShareList" +"DELETE","/shares/{param}/list/columns/{param}","keep",,"Remove-MgShareListColumn","Remove-MgShareListColumn" +"DELETE","/shares/{param}/list/contentTypes/{param}","keep",,"Remove-MgShareListContentType","Remove-MgShareListContentType" +"DELETE","/shares/{param}/list/contentTypes/{param}/columnLinks/{param}","keep",,"Remove-MgShareListContentTypeColumnLink","Remove-MgShareListContentTypeColumnLink" +"DELETE","/shares/{param}/list/contentTypes/{param}/columns/{param}","keep",,"Remove-MgShareListContentTypeColumn","Remove-MgShareListContentTypeColumn" +"DELETE","/shares/{param}/list/items/{param}","defer-crosspath",,"Remove-MgShareListItem","Remove-MgShareListItem ships from a different uri" +"DELETE","/shares/{param}/list/items/{param}/documentSetVersions/{param}","keep",,"Remove-MgShareListItemDocumentSetVersion","Remove-MgShareListItemDocumentSetVersion" +"DELETE","/shares/{param}/list/items/{param}/documentSetVersions/{param}/fields","keep",,"Remove-MgShareListItemDocumentSetVersionField","Remove-MgShareListItemDocumentSetVersionField" +"DELETE","/shares/{param}/list/items/{param}/driveItem/$value","keep",,"Remove-MgShareListItemDriveItemContent","Remove-MgShareListItemDriveItemContent" +"DELETE","/shares/{param}/list/items/{param}/fields","keep",,"Remove-MgShareListItemField","Remove-MgShareListItemField" +"DELETE","/shares/{param}/list/items/{param}/permissions/{param}","suppress",,"Remove-MgShareListItemPermission","no oracle row for DELETE /shares/{param}/list/items/{param}/permissions/{param} and 'Remove-MgShareListItemPermission' unshipped" +"DELETE","/shares/{param}/list/items/{param}/versions/{param}","keep",,"Remove-MgShareListItemVersion","Remove-MgShareListItemVersion" +"DELETE","/shares/{param}/list/items/{param}/versions/{param}/fields","keep",,"Remove-MgShareListItemVersionField","Remove-MgShareListItemVersionField" +"DELETE","/shares/{param}/list/operations/{param}","keep",,"Remove-MgShareListOperation","Remove-MgShareListOperation" +"DELETE","/shares/{param}/list/permissions/{param}","suppress",,"Remove-MgShareListPermission","no oracle row for DELETE /shares/{param}/list/permissions/{param} and 'Remove-MgShareListPermission' unshipped" +"DELETE","/shares/{param}/list/subscriptions/{param}","keep",,"Remove-MgShareListSubscription","Remove-MgShareListSubscription" +"DELETE","/shares/{param}/permission","keep",,"Remove-MgSharePermission","Remove-MgSharePermission" +"DELETE","/shares/{param}/root/$value","keep",,"Remove-MgShareRootContent","Remove-MgShareRootContent" +"DELETE","/sites/{param}/analytics","keep",,"Remove-MgSiteAnalytic","Remove-MgSiteAnalytic" +"DELETE","/sites/{param}/analytics/itemActivityStats/{param}","keep",,"Remove-MgSiteAnalyticItemActivityStat","Remove-MgSiteAnalyticItemActivityStat" +"DELETE","/sites/{param}/analytics/itemActivityStats/{param}/activities/{param}","keep",,"Remove-MgSiteAnalyticItemActivityStatActivity","Remove-MgSiteAnalyticItemActivityStatActivity" +"DELETE","/sites/{param}/columns/{param}","keep",,"Remove-MgSiteColumn","Remove-MgSiteColumn" +"DELETE","/sites/{param}/contentTypes/{param}","keep",,"Remove-MgSiteContentType","Remove-MgSiteContentType" +"DELETE","/sites/{param}/contentTypes/{param}/columnLinks/{param}","keep",,"Remove-MgSiteContentTypeColumnLink","Remove-MgSiteContentTypeColumnLink" +"DELETE","/sites/{param}/contentTypes/{param}/columns/{param}","keep",,"Remove-MgSiteContentTypeColumn","Remove-MgSiteContentTypeColumn" +"DELETE","/sites/{param}/lists/{param}","keep",,"Remove-MgSiteList","Remove-MgSiteList" +"DELETE","/sites/{param}/lists/{param}/columns/{param}","keep",,"Remove-MgSiteListColumn","Remove-MgSiteListColumn" +"DELETE","/sites/{param}/lists/{param}/contentTypes/{param}","keep",,"Remove-MgSiteListContentType","Remove-MgSiteListContentType" +"DELETE","/sites/{param}/lists/{param}/contentTypes/{param}/columnLinks/{param}","keep",,"Remove-MgSiteListContentTypeColumnLink","Remove-MgSiteListContentTypeColumnLink" +"DELETE","/sites/{param}/lists/{param}/contentTypes/{param}/columns/{param}","keep",,"Remove-MgSiteListContentTypeColumn","Remove-MgSiteListContentTypeColumn" +"DELETE","/sites/{param}/lists/{param}/items/{param}","keep",,"Remove-MgSiteListItem","Remove-MgSiteListItem" +"DELETE","/sites/{param}/lists/{param}/items/{param}/documentSetVersions/{param}","keep",,"Remove-MgSiteListItemDocumentSetVersion","Remove-MgSiteListItemDocumentSetVersion" +"DELETE","/sites/{param}/lists/{param}/items/{param}/documentSetVersions/{param}/fields","keep",,"Remove-MgSiteListItemDocumentSetVersionField","Remove-MgSiteListItemDocumentSetVersionField" +"DELETE","/sites/{param}/lists/{param}/items/{param}/fields","keep",,"Remove-MgSiteListItemField","Remove-MgSiteListItemField" +"DELETE","/sites/{param}/lists/{param}/items/{param}/permissions/{param}","keep",,"Remove-MgSiteListItemPermission","Remove-MgSiteListItemPermission" +"DELETE","/sites/{param}/lists/{param}/items/{param}/versions/{param}","keep",,"Remove-MgSiteListItemVersion","Remove-MgSiteListItemVersion" +"DELETE","/sites/{param}/lists/{param}/items/{param}/versions/{param}/fields","keep",,"Remove-MgSiteListItemVersionField","Remove-MgSiteListItemVersionField" +"DELETE","/sites/{param}/lists/{param}/operations/{param}","keep",,"Remove-MgSiteListOperation","Remove-MgSiteListOperation" +"DELETE","/sites/{param}/lists/{param}/permissions/{param}","keep",,"Remove-MgSiteListPermission","Remove-MgSiteListPermission" +"DELETE","/sites/{param}/lists/{param}/subscriptions/{param}","keep",,"Remove-MgSiteListSubscription","Remove-MgSiteListSubscription" +"DELETE","/sites/{param}/onenote","keep",,"Remove-MgSiteOnenote","Remove-MgSiteOnenote" +"DELETE","/sites/{param}/onenote/notebooks/{param}","keep",,"Remove-MgSiteOnenoteNotebook","Remove-MgSiteOnenoteNotebook" +"DELETE","/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}","keep",,"Remove-MgSiteOnenoteNotebookSectionGroup","Remove-MgSiteOnenoteNotebookSectionGroup" +"DELETE","/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}","keep",,"Remove-MgSiteOnenoteNotebookSectionGroupSection","Remove-MgSiteOnenoteNotebookSectionGroupSection" +"DELETE","/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}","keep",,"Remove-MgSiteOnenoteNotebookSectionGroupSectionPage","Remove-MgSiteOnenoteNotebookSectionGroupSectionPage" +"DELETE","/sites/{param}/onenote/notebooks/{param}/sections/{param}","keep",,"Remove-MgSiteOnenoteNotebookSection","Remove-MgSiteOnenoteNotebookSection" +"DELETE","/sites/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}","keep",,"Remove-MgSiteOnenoteNotebookSectionPage","Remove-MgSiteOnenoteNotebookSectionPage" +"DELETE","/sites/{param}/onenote/operations/{param}","keep",,"Remove-MgSiteOnenoteOperation","Remove-MgSiteOnenoteOperation" +"DELETE","/sites/{param}/onenote/pages/{param}","keep",,"Remove-MgSiteOnenotePage","Remove-MgSiteOnenotePage" +"DELETE","/sites/{param}/onenote/resources/{param}","keep",,"Remove-MgSiteOnenoteResource","Remove-MgSiteOnenoteResource" +"DELETE","/sites/{param}/onenote/sectionGroups/{param}","keep",,"Remove-MgSiteOnenoteSectionGroup","Remove-MgSiteOnenoteSectionGroup" +"DELETE","/sites/{param}/onenote/sectionGroups/{param}/sections/{param}","keep",,"Remove-MgSiteOnenoteSectionGroupSection","Remove-MgSiteOnenoteSectionGroupSection" +"DELETE","/sites/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}","keep",,"Remove-MgSiteOnenoteSectionGroupSectionPage","Remove-MgSiteOnenoteSectionGroupSectionPage" +"DELETE","/sites/{param}/onenote/sections/{param}","keep",,"Remove-MgSiteOnenoteSection","Remove-MgSiteOnenoteSection" +"DELETE","/sites/{param}/onenote/sections/{param}/pages/{param}","keep",,"Remove-MgSiteOnenoteSectionPage","Remove-MgSiteOnenoteSectionPage" +"DELETE","/sites/{param}/operations/{param}","keep",,"Remove-MgSiteOperation","Remove-MgSiteOperation" +"DELETE","/sites/{param}/pages/{param}","keep",,"Remove-MgSitePage","Remove-MgSitePage" +"DELETE","/sites/{param}/permissions/{param}","keep",,"Remove-MgSitePermission","Remove-MgSitePermission" +"DELETE","/sites/{param}/termStore","keep",,"Remove-MgSiteTermStore","Remove-MgSiteTermStore" +"DELETE","/sites/{param}/termStore/groups/{param}","keep",,"Remove-MgSiteTermStoreGroup","Remove-MgSiteTermStoreGroup" +"DELETE","/sites/{param}/termStore/groups/{param}/sets/{param}","keep",,"Remove-MgSiteTermStoreGroupSet","Remove-MgSiteTermStoreGroupSet" +"DELETE","/sites/{param}/termStore/groups/{param}/sets/{param}/children/{param}","keep",,"Remove-MgSiteTermStoreGroupSetChild","Remove-MgSiteTermStoreGroupSetChild" +"DELETE","/sites/{param}/termStore/groups/{param}/sets/{param}/children/{param}/children/{param}/relations/{param}","keep",,"Remove-MgSiteTermStoreGroupSetChildRelation","Remove-MgSiteTermStoreGroupSetChildRelation" +"DELETE","/sites/{param}/termStore/groups/{param}/sets/{param}/parentGroup","keep",,"Remove-MgSiteTermStoreGroupSetParentGroup","Remove-MgSiteTermStoreGroupSetParentGroup" +"DELETE","/sites/{param}/termStore/groups/{param}/sets/{param}/relations/{param}","keep",,"Remove-MgSiteTermStoreGroupSetRelation","Remove-MgSiteTermStoreGroupSetRelation" +"DELETE","/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}","keep",,"Remove-MgSiteTermStoreGroupSetTerm","Remove-MgSiteTermStoreGroupSetTerm" +"DELETE","/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/children/{param}","keep",,"Remove-MgSiteTermStoreGroupSetTermChild","Remove-MgSiteTermStoreGroupSetTermChild" +"DELETE","/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/children/{param}/relations/{param}","keep",,"Remove-MgSiteTermStoreGroupSetTermChildRelation","Remove-MgSiteTermStoreGroupSetTermChildRelation" +"DELETE","/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/relations/{param}","keep",,"Remove-MgSiteTermStoreGroupSetTermRelation","Remove-MgSiteTermStoreGroupSetTermRelation" +"DELETE","/sites/{param}/termStore/sets/{param}","keep",,"Remove-MgSiteTermStoreSet","Remove-MgSiteTermStoreSet" +"DELETE","/sites/{param}/termStore/sets/{param}/children/{param}","keep",,"Remove-MgSiteTermStoreSetChild","Remove-MgSiteTermStoreSetChild" +"DELETE","/sites/{param}/termStore/sets/{param}/children/{param}/children/{param}/relations/{param}","keep",,"Remove-MgSiteTermStoreSetChildRelation","Remove-MgSiteTermStoreSetChildRelation" +"DELETE","/sites/{param}/termStore/sets/{param}/parentGroup","keep",,"Remove-MgSiteTermStoreSetParentGroup","Remove-MgSiteTermStoreSetParentGroup" +"DELETE","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}","keep",,"Remove-MgSiteTermStoreSetParentGroupSet","Remove-MgSiteTermStoreSetParentGroupSet" +"DELETE","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/children/{param}","keep",,"Remove-MgSiteTermStoreSetParentGroupSetChild","Remove-MgSiteTermStoreSetParentGroupSetChild" +"DELETE","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/children/{param}/children/{param}/relations/{param}","keep",,"Remove-MgSiteTermStoreSetParentGroupSetChildRelation","Remove-MgSiteTermStoreSetParentGroupSetChildRelation" +"DELETE","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/relations/{param}","keep",,"Remove-MgSiteTermStoreSetParentGroupSetRelation","Remove-MgSiteTermStoreSetParentGroupSetRelation" +"DELETE","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}","keep",,"Remove-MgSiteTermStoreSetParentGroupSetTerm","Remove-MgSiteTermStoreSetParentGroupSetTerm" +"DELETE","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/children/{param}","keep",,"Remove-MgSiteTermStoreSetParentGroupSetTermChild","Remove-MgSiteTermStoreSetParentGroupSetTermChild" +"DELETE","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/children/{param}/relations/{param}","keep",,"Remove-MgSiteTermStoreSetParentGroupSetTermChildRelation","Remove-MgSiteTermStoreSetParentGroupSetTermChildRelation" +"DELETE","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/relations/{param}","keep",,"Remove-MgSiteTermStoreSetParentGroupSetTermRelation","Remove-MgSiteTermStoreSetParentGroupSetTermRelation" +"DELETE","/sites/{param}/termStore/sets/{param}/relations/{param}","keep",,"Remove-MgSiteTermStoreSetRelation","Remove-MgSiteTermStoreSetRelation" +"DELETE","/sites/{param}/termStore/sets/{param}/terms/{param}","keep",,"Remove-MgSiteTermStoreSetTerm","Remove-MgSiteTermStoreSetTerm" +"DELETE","/sites/{param}/termStore/sets/{param}/terms/{param}/children/{param}","keep",,"Remove-MgSiteTermStoreSetTermChild","Remove-MgSiteTermStoreSetTermChild" +"DELETE","/sites/{param}/termStore/sets/{param}/terms/{param}/children/{param}/relations/{param}","keep",,"Remove-MgSiteTermStoreSetTermChildRelation","Remove-MgSiteTermStoreSetTermChildRelation" +"DELETE","/sites/{param}/termStore/sets/{param}/terms/{param}/relations/{param}","keep",,"Remove-MgSiteTermStoreSetTermRelation","Remove-MgSiteTermStoreSetTermRelation" +"DELETE","/solutions/backupRestore","keep",,"Remove-MgSolutionBackupRestore","Remove-MgSolutionBackupRestore" +"DELETE","/solutions/backupRestore/browseSessions/{param}","keep",,"Remove-MgSolutionBackupRestoreBrowseSession","Remove-MgSolutionBackupRestoreBrowseSession" +"DELETE","/solutions/backupRestore/driveInclusionRules/{param}","keep",,"Remove-MgSolutionBackupRestoreDriveInclusionRule","Remove-MgSolutionBackupRestoreDriveInclusionRule" +"DELETE","/solutions/backupRestore/driveProtectionUnits/{param}","keep",,"Remove-MgSolutionBackupRestoreDriveProtectionUnit","Remove-MgSolutionBackupRestoreDriveProtectionUnit" +"DELETE","/solutions/backupRestore/driveProtectionUnitsBulkAdditionJobs/{param}","keep",,"Remove-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob","Remove-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob" +"DELETE","/solutions/backupRestore/emailNotificationsSetting","keep",,"Remove-MgSolutionBackupRestoreEmailNotificationSetting","Remove-MgSolutionBackupRestoreEmailNotificationSetting" +"DELETE","/solutions/backupRestore/exchangeProtectionPolicies/{param}","keep",,"Remove-MgSolutionBackupRestoreExchangeProtectionPolicy","Remove-MgSolutionBackupRestoreExchangeProtectionPolicy" +"DELETE","/solutions/backupRestore/exchangeRestoreSessions/{param}","keep",,"Remove-MgSolutionBackupRestoreExchangeRestoreSession","Remove-MgSolutionBackupRestoreExchangeRestoreSession" +"DELETE","/solutions/backupRestore/exchangeRestoreSessions/{param}/granularMailboxRestoreArtifacts/{param}","keep",,"Remove-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact","Remove-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact" +"DELETE","/solutions/backupRestore/exchangeRestoreSessions/{param}/mailboxRestoreArtifacts/{param}","keep",,"Remove-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact","Remove-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact" +"DELETE","/solutions/backupRestore/exchangeRestoreSessions/{param}/mailboxRestoreArtifactsBulkAdditionRequests/{param}","keep",,"Remove-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest","Remove-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest" +"DELETE","/solutions/backupRestore/mailboxInclusionRules/{param}","keep",,"Remove-MgSolutionBackupRestoreMailboxInclusionRule","Remove-MgSolutionBackupRestoreMailboxInclusionRule" +"DELETE","/solutions/backupRestore/mailboxProtectionUnits/{param}","keep",,"Remove-MgSolutionBackupRestoreMailboxProtectionUnit","Remove-MgSolutionBackupRestoreMailboxProtectionUnit" +"DELETE","/solutions/backupRestore/mailboxProtectionUnitsBulkAdditionJobs/{param}","keep",,"Remove-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob","Remove-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob" +"DELETE","/solutions/backupRestore/oneDriveForBusinessBrowseSessions/{param}","keep",,"Remove-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession","Remove-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession" +"DELETE","/solutions/backupRestore/oneDriveForBusinessProtectionPolicies/{param}","keep",,"Remove-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy","Remove-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy" +"DELETE","/solutions/backupRestore/oneDriveForBusinessRestoreSessions/{param}","keep",,"Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession","Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession" +"DELETE","/solutions/backupRestore/oneDriveForBusinessRestoreSessions/{param}/driveRestoreArtifacts/{param}","keep",,"Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact","Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact" +"DELETE","/solutions/backupRestore/oneDriveForBusinessRestoreSessions/{param}/driveRestoreArtifactsBulkAdditionRequests/{param}","keep",,"Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest","Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest" +"DELETE","/solutions/backupRestore/oneDriveForBusinessRestoreSessions/{param}/granularDriveRestoreArtifacts/{param}","keep",,"Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact","Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact" +"DELETE","/solutions/backupRestore/protectionPolicies/{param}","keep",,"Remove-MgSolutionBackupRestoreProtectionPolicy","Remove-MgSolutionBackupRestoreProtectionPolicy" +"DELETE","/solutions/backupRestore/restorePoints/{param}","keep",,"Remove-MgSolutionBackupRestorePoint","Remove-MgSolutionBackupRestorePoint" +"DELETE","/solutions/backupRestore/restoreSessions/{param}","keep",,"Remove-MgSolutionBackupRestoreSession","Remove-MgSolutionBackupRestoreSession" +"DELETE","/solutions/backupRestore/serviceApps/{param}","keep",,"Remove-MgSolutionBackupRestoreServiceApp","Remove-MgSolutionBackupRestoreServiceApp" +"DELETE","/solutions/backupRestore/sharePointBrowseSessions/{param}","keep",,"Remove-MgSolutionBackupRestoreSharePointBrowseSession","Remove-MgSolutionBackupRestoreSharePointBrowseSession" +"DELETE","/solutions/backupRestore/sharePointProtectionPolicies/{param}","keep",,"Remove-MgSolutionBackupRestoreSharePointProtectionPolicy","Remove-MgSolutionBackupRestoreSharePointProtectionPolicy" +"DELETE","/solutions/backupRestore/sharePointRestoreSessions/{param}","keep",,"Remove-MgSolutionBackupRestoreSharePointRestoreSession","Remove-MgSolutionBackupRestoreSharePointRestoreSession" +"DELETE","/solutions/backupRestore/sharePointRestoreSessions/{param}/granularSiteRestoreArtifacts/{param}","keep",,"Remove-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact","Remove-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact" +"DELETE","/solutions/backupRestore/sharePointRestoreSessions/{param}/siteRestoreArtifacts/{param}","keep",,"Remove-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact","Remove-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact" +"DELETE","/solutions/backupRestore/sharePointRestoreSessions/{param}/siteRestoreArtifactsBulkAdditionRequests/{param}","keep",,"Remove-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest","Remove-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest" +"DELETE","/solutions/backupRestore/siteInclusionRules/{param}","keep",,"Remove-MgSolutionBackupRestoreSiteInclusionRule","Remove-MgSolutionBackupRestoreSiteInclusionRule" +"DELETE","/solutions/backupRestore/siteProtectionUnits/{param}","keep",,"Remove-MgSolutionBackupRestoreSiteProtectionUnit","Remove-MgSolutionBackupRestoreSiteProtectionUnit" +"DELETE","/solutions/backupRestore/siteProtectionUnitsBulkAdditionJobs/{param}","keep",,"Remove-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob","Remove-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob" +"DELETE","/solutions/bookingBusinesses/{param}","keep",,"Remove-MgBookingBusiness","Remove-MgBookingBusiness" +"DELETE","/solutions/bookingBusinesses/{param}/appointments/{param}","keep",,"Remove-MgBookingBusinessAppointment","Remove-MgBookingBusinessAppointment" +"DELETE","/solutions/bookingBusinesses/{param}/calendarView/{param}","keep",,"Remove-MgBookingBusinessCalendarView","Remove-MgBookingBusinessCalendarView" +"DELETE","/solutions/bookingBusinesses/{param}/customers/{param}","keep",,"Remove-MgBookingBusinessCustomer","Remove-MgBookingBusinessCustomer" +"DELETE","/solutions/bookingBusinesses/{param}/customQuestions/{param}","keep",,"Remove-MgBookingBusinessCustomQuestion","Remove-MgBookingBusinessCustomQuestion" +"DELETE","/solutions/bookingBusinesses/{param}/services/{param}","keep",,"Remove-MgBookingBusinessService","Remove-MgBookingBusinessService" +"DELETE","/solutions/bookingBusinesses/{param}/staffMembers/{param}","keep",,"Remove-MgBookingBusinessStaffMember","Remove-MgBookingBusinessStaffMember" +"DELETE","/solutions/bookingCurrencies/{param}","keep",,"Remove-MgBookingCurrency","Remove-MgBookingCurrency" +"DELETE","/solutions/virtualEvents/events/{param}","keep",,"Remove-MgVirtualEvent","Remove-MgVirtualEvent" +"DELETE","/solutions/virtualEvents/events/{param}/presenters/{param}","keep",,"Remove-MgVirtualEventPresenter","Remove-MgVirtualEventPresenter" +"DELETE","/solutions/virtualEvents/events/{param}/sessions/{param}","keep",,"Remove-MgVirtualEventSession","Remove-MgVirtualEventSession" +"DELETE","/solutions/virtualEvents/events/{param}/sessions/{param}/attendanceReports/{param}","keep",,"Remove-MgVirtualEventSessionAttendanceReport","Remove-MgVirtualEventSessionAttendanceReport" +"DELETE","/solutions/virtualEvents/events/{param}/sessions/{param}/attendanceReports/{param}/attendanceRecords/{param}","keep",,"Remove-MgVirtualEventSessionAttendanceReportAttendanceRecord","Remove-MgVirtualEventSessionAttendanceReportAttendanceRecord" +"DELETE","/solutions/virtualEvents/townhalls/{param}","keep",,"Remove-MgVirtualEventTownhall","Remove-MgVirtualEventTownhall" +"DELETE","/solutions/virtualEvents/townhalls/{param}/presenters/{param}","keep",,"Remove-MgVirtualEventTownhallPresenter","Remove-MgVirtualEventTownhallPresenter" +"DELETE","/solutions/virtualEvents/townhalls/{param}/sessions/{param}","keep",,"Remove-MgVirtualEventTownhallSession","Remove-MgVirtualEventTownhallSession" +"DELETE","/solutions/virtualEvents/townhalls/{param}/sessions/{param}/attendanceReports/{param}","keep",,"Remove-MgVirtualEventTownhallSessionAttendanceReport","Remove-MgVirtualEventTownhallSessionAttendanceReport" +"DELETE","/solutions/virtualEvents/townhalls/{param}/sessions/{param}/attendanceReports/{param}/attendanceRecords/{param}","keep",,"Remove-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord","Remove-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord" +"DELETE","/solutions/virtualEvents/webinars/{param}","keep",,"Remove-MgVirtualEventWebinar","Remove-MgVirtualEventWebinar" +"DELETE","/solutions/virtualEvents/webinars/{param}/presenters/{param}","keep",,"Remove-MgVirtualEventWebinarPresenter","Remove-MgVirtualEventWebinarPresenter" +"DELETE","/solutions/virtualEvents/webinars/{param}/registrationConfiguration","keep",,"Remove-MgVirtualEventWebinarRegistrationConfiguration","Remove-MgVirtualEventWebinarRegistrationConfiguration" +"DELETE","/solutions/virtualEvents/webinars/{param}/registrationConfiguration/questions/{param}","keep",,"Remove-MgVirtualEventWebinarRegistrationConfigurationQuestion","Remove-MgVirtualEventWebinarRegistrationConfigurationQuestion" +"DELETE","/solutions/virtualEvents/webinars/{param}/registrations/{param}","keep",,"Remove-MgVirtualEventWebinarRegistration","Remove-MgVirtualEventWebinarRegistration" +"DELETE","/solutions/virtualEvents/webinars/{param}/sessions/{param}","keep",,"Remove-MgVirtualEventWebinarSession","Remove-MgVirtualEventWebinarSession" +"DELETE","/solutions/virtualEvents/webinars/{param}/sessions/{param}/attendanceReports/{param}","keep",,"Remove-MgVirtualEventWebinarSessionAttendanceReport","Remove-MgVirtualEventWebinarSessionAttendanceReport" +"DELETE","/solutions/virtualEvents/webinars/{param}/sessions/{param}/attendanceReports/{param}/attendanceRecords/{param}","keep",,"Remove-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord","Remove-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord" +"DELETE","/subscribedSkus/{param}","keep",,"Remove-MgSubscribedSku","Remove-MgSubscribedSku" +"DELETE","/subscriptions/{param}","keep",,"Remove-MgSubscription","Remove-MgSubscription" +"DELETE","/teams/{param}","keep",,"Remove-MgTeam","Remove-MgTeam" +"DELETE","/teams/{param}/channels/{param}","keep",,"Remove-MgTeamChannel","Remove-MgTeamChannel" +"DELETE","/teams/{param}/channels/{param}/allMembers/{param}","rename","TeamChannelMember","Remove-MgTeamChannelAllMember","Remove-MgTeamChannelMember" +"DELETE","/teams/{param}/channels/{param}/filesFolder/$value","keep",,"Remove-MgTeamChannelFileFolderContent","Remove-MgTeamChannelFileFolderContent" +"DELETE","/teams/{param}/channels/{param}/members/{param}","suppress",,"Remove-MgTeamChannelMember","no oracle row; 'Remove-MgTeamChannelMember' ships from sibling family (see rename entries for this noun)" +"DELETE","/teams/{param}/channels/{param}/messages/{param}","suppress",,"Remove-MgTeamChannelMessage","no oracle row for DELETE /teams/{param}/channels/{param}/messages/{param} and 'Remove-MgTeamChannelMessage' unshipped" +"DELETE","/teams/{param}/channels/{param}/messages/{param}/hostedContents/{param}","suppress",,"Remove-MgTeamChannelMessageHostedContent","no oracle row for DELETE /teams/{param}/channels/{param}/messages/{param}/hostedContents/{param} and 'Remove-MgTeamChannelMessageHostedContent' unshipped" +"DELETE","/teams/{param}/channels/{param}/messages/{param}/hostedContents/{param}/$value","suppress",,"Remove-MgTeamChannelMessageHostedContentContent","no oracle row for DELETE /teams/{param}/channels/{param}/messages/{param}/hostedContents/{param}/$value and 'Remove-MgTeamChannelMessageHostedContentContent' unshipped" +"DELETE","/teams/{param}/channels/{param}/messages/{param}/replies/{param}","suppress",,"Remove-MgTeamChannelMessageReply","no oracle row for DELETE /teams/{param}/channels/{param}/messages/{param}/replies/{param} and 'Remove-MgTeamChannelMessageReply' unshipped" +"DELETE","/teams/{param}/channels/{param}/messages/{param}/replies/{param}/hostedContents/{param}","keep",,"Remove-MgTeamChannelMessageReplyHostedContent","Remove-MgTeamChannelMessageReplyHostedContent" +"DELETE","/teams/{param}/channels/{param}/messages/{param}/replies/{param}/hostedContents/{param}/$value","suppress",,"Remove-MgTeamChannelMessageReplyHostedContentContent","no oracle row for DELETE /teams/{param}/channels/{param}/messages/{param}/replies/{param}/hostedContents/{param}/$value and 'Remove-MgTeamChannelMessageReplyHostedContentContent' unshipped" +"DELETE","/teams/{param}/channels/{param}/sharedWithTeams/{param}","keep",,"Remove-MgTeamChannelSharedWithTeam","Remove-MgTeamChannelSharedWithTeam" +"DELETE","/teams/{param}/channels/{param}/tabs/{param}","keep",,"Remove-MgTeamChannelTab","Remove-MgTeamChannelTab" +"DELETE","/teams/{param}/installedApps/{param}","keep",,"Remove-MgTeamInstalledApp","Remove-MgTeamInstalledApp" +"DELETE","/teams/{param}/members/{param}","keep",,"Remove-MgTeamMember","Remove-MgTeamMember" +"DELETE","/teams/{param}/operations/{param}","keep",,"Remove-MgTeamOperation","Remove-MgTeamOperation" +"DELETE","/teams/{param}/permissionGrants/{param}","keep",,"Remove-MgTeamPermissionGrant","Remove-MgTeamPermissionGrant" +"DELETE","/teams/{param}/photo/$value","keep",,"Remove-MgTeamPhotoContent","Remove-MgTeamPhotoContent" +"DELETE","/teams/{param}/primaryChannel","keep",,"Remove-MgTeamPrimaryChannel","Remove-MgTeamPrimaryChannel" +"DELETE","/teams/{param}/primaryChannel/allMembers/{param}","rename","TeamPrimaryChannelMember","Remove-MgTeamPrimaryChannelAllMember","Remove-MgTeamPrimaryChannelMember" +"DELETE","/teams/{param}/primaryChannel/filesFolder/$value","keep",,"Remove-MgTeamPrimaryChannelFileFolderContent","Remove-MgTeamPrimaryChannelFileFolderContent" +"DELETE","/teams/{param}/primaryChannel/members/{param}","suppress",,"Remove-MgTeamPrimaryChannelMember","no oracle row; 'Remove-MgTeamPrimaryChannelMember' ships from sibling family (see rename entries for this noun)" +"DELETE","/teams/{param}/primaryChannel/messages/{param}","suppress",,"Remove-MgTeamPrimaryChannelMessage","no oracle row for DELETE /teams/{param}/primaryChannel/messages/{param} and 'Remove-MgTeamPrimaryChannelMessage' unshipped" +"DELETE","/teams/{param}/primaryChannel/messages/{param}/hostedContents/{param}","suppress",,"Remove-MgTeamPrimaryChannelMessageHostedContent","no oracle row for DELETE /teams/{param}/primaryChannel/messages/{param}/hostedContents/{param} and 'Remove-MgTeamPrimaryChannelMessageHostedContent' unshipped" +"DELETE","/teams/{param}/primaryChannel/messages/{param}/hostedContents/{param}/$value","suppress",,"Remove-MgTeamPrimaryChannelMessageHostedContentContent","no oracle row for DELETE /teams/{param}/primaryChannel/messages/{param}/hostedContents/{param}/$value and 'Remove-MgTeamPrimaryChannelMessageHostedContentContent' unshipped" +"DELETE","/teams/{param}/primaryChannel/messages/{param}/replies/{param}","suppress",,"Remove-MgTeamPrimaryChannelMessageReply","no oracle row for DELETE /teams/{param}/primaryChannel/messages/{param}/replies/{param} and 'Remove-MgTeamPrimaryChannelMessageReply' unshipped" +"DELETE","/teams/{param}/primaryChannel/messages/{param}/replies/{param}/hostedContents/{param}","keep",,"Remove-MgTeamPrimaryChannelMessageReplyHostedContent","Remove-MgTeamPrimaryChannelMessageReplyHostedContent" +"DELETE","/teams/{param}/primaryChannel/messages/{param}/replies/{param}/hostedContents/{param}/$value","suppress",,"Remove-MgTeamPrimaryChannelMessageReplyHostedContentContent","no oracle row for DELETE /teams/{param}/primaryChannel/messages/{param}/replies/{param}/hostedContents/{param}/$value and 'Remove-MgTeamPrimaryChannelMessageReplyHostedContentContent' unshipped" +"DELETE","/teams/{param}/primaryChannel/sharedWithTeams/{param}","keep",,"Remove-MgTeamPrimaryChannelSharedWithTeam","Remove-MgTeamPrimaryChannelSharedWithTeam" +"DELETE","/teams/{param}/primaryChannel/tabs/{param}","keep",,"Remove-MgTeamPrimaryChannelTab","Remove-MgTeamPrimaryChannelTab" +"DELETE","/teams/{param}/schedule","keep",,"Remove-MgTeamSchedule","Remove-MgTeamSchedule" +"DELETE","/teams/{param}/schedule/dayNotes/{param}","keep",,"Remove-MgTeamScheduleDayNote","Remove-MgTeamScheduleDayNote" +"DELETE","/teams/{param}/schedule/offerShiftRequests/{param}","keep",,"Remove-MgTeamScheduleOfferShiftRequest","Remove-MgTeamScheduleOfferShiftRequest" +"DELETE","/teams/{param}/schedule/openShiftChangeRequests/{param}","keep",,"Remove-MgTeamScheduleOpenShiftChangeRequest","Remove-MgTeamScheduleOpenShiftChangeRequest" +"DELETE","/teams/{param}/schedule/openShifts/{param}","keep",,"Remove-MgTeamScheduleOpenShift","Remove-MgTeamScheduleOpenShift" +"DELETE","/teams/{param}/schedule/schedulingGroups/{param}","keep",,"Remove-MgTeamScheduleSchedulingGroup","Remove-MgTeamScheduleSchedulingGroup" +"DELETE","/teams/{param}/schedule/shifts/{param}","keep",,"Remove-MgTeamScheduleShift","Remove-MgTeamScheduleShift" +"DELETE","/teams/{param}/schedule/swapShiftsChangeRequests/{param}","keep",,"Remove-MgTeamScheduleSwapShiftChangeRequest","Remove-MgTeamScheduleSwapShiftChangeRequest" +"DELETE","/teams/{param}/schedule/timeCards/{param}","keep",,"Remove-MgTeamScheduleTimeCard","Remove-MgTeamScheduleTimeCard" +"DELETE","/teams/{param}/schedule/timeOffReasons/{param}","keep",,"Remove-MgTeamScheduleTimeOffReason","Remove-MgTeamScheduleTimeOffReason" +"DELETE","/teams/{param}/schedule/timeOffRequests/{param}","keep",,"Remove-MgTeamScheduleTimeOffRequest","Remove-MgTeamScheduleTimeOffRequest" +"DELETE","/teams/{param}/schedule/timesOff/{param}","keep",,"Remove-MgTeamScheduleTimeOff","Remove-MgTeamScheduleTimeOff" +"DELETE","/teams/{param}/tags/{param}","keep",,"Remove-MgTeamTag","Remove-MgTeamTag" +"DELETE","/teams/{param}/tags/{param}/members/{param}","keep",,"Remove-MgTeamTagMember","Remove-MgTeamTagMember" +"DELETE","/teamwork/deletedChats/{param}","keep",,"Remove-MgTeamworkDeletedChat","Remove-MgTeamworkDeletedChat" +"DELETE","/teamwork/deletedTeams/{param}","keep",,"Remove-MgTeamworkDeletedTeam","Remove-MgTeamworkDeletedTeam" +"DELETE","/teamwork/deletedTeams/{param}/channels/{param}","keep",,"Remove-MgTeamworkDeletedTeamChannel","Remove-MgTeamworkDeletedTeamChannel" +"DELETE","/teamwork/deletedTeams/{param}/channels/{param}/allMembers/{param}","rename","TeamworkDeletedTeamChannelMember","Remove-MgTeamworkDeletedTeamChannelAllMember","Remove-MgTeamworkDeletedTeamChannelMember" +"DELETE","/teamwork/deletedTeams/{param}/channels/{param}/filesFolder/$value","keep",,"Remove-MgTeamworkDeletedTeamChannelFileFolderContent","Remove-MgTeamworkDeletedTeamChannelFileFolderContent" +"DELETE","/teamwork/deletedTeams/{param}/channels/{param}/members/{param}","suppress",,"Remove-MgTeamworkDeletedTeamChannelMember","no oracle row; 'Remove-MgTeamworkDeletedTeamChannelMember' ships from sibling family (see rename entries for this noun)" +"DELETE","/teamwork/deletedTeams/{param}/channels/{param}/messages/{param}","keep",,"Remove-MgTeamworkDeletedTeamChannelMessage","Remove-MgTeamworkDeletedTeamChannelMessage" +"DELETE","/teamwork/deletedTeams/{param}/channels/{param}/messages/{param}/hostedContents/{param}","keep",,"Remove-MgTeamworkDeletedTeamChannelMessageHostedContent","Remove-MgTeamworkDeletedTeamChannelMessageHostedContent" +"DELETE","/teamwork/deletedTeams/{param}/channels/{param}/messages/{param}/hostedContents/{param}/$value","suppress",,"Remove-MgTeamworkDeletedTeamChannelMessageHostedContentContent","no oracle row for DELETE /teamwork/deletedTeams/{param}/channels/{param}/messages/{param}/hostedContents/{param}/$value and 'Remove-MgTeamworkDeletedTeamChannelMessageHostedContentContent' unshipped" +"DELETE","/teamwork/deletedTeams/{param}/channels/{param}/messages/{param}/replies/{param}","keep",,"Remove-MgTeamworkDeletedTeamChannelMessageReply","Remove-MgTeamworkDeletedTeamChannelMessageReply" +"DELETE","/teamwork/deletedTeams/{param}/channels/{param}/messages/{param}/replies/{param}/hostedContents/{param}","keep",,"Remove-MgTeamworkDeletedTeamChannelMessageReplyHostedContent","Remove-MgTeamworkDeletedTeamChannelMessageReplyHostedContent" +"DELETE","/teamwork/deletedTeams/{param}/channels/{param}/messages/{param}/replies/{param}/hostedContents/{param}/$value","suppress",,"Remove-MgTeamworkDeletedTeamChannelMessageReplyHostedContentContent","no oracle row for DELETE /teamwork/deletedTeams/{param}/channels/{param}/messages/{param}/replies/{param}/hostedContents/{param}/$value and 'Remove-MgTeamworkDeletedTeamChannelMessageReplyHostedContentContent' unshipped" +"DELETE","/teamwork/deletedTeams/{param}/channels/{param}/sharedWithTeams/{param}","keep",,"Remove-MgTeamworkDeletedTeamChannelSharedWithTeam","Remove-MgTeamworkDeletedTeamChannelSharedWithTeam" +"DELETE","/teamwork/deletedTeams/{param}/channels/{param}/tabs/{param}","keep",,"Remove-MgTeamworkDeletedTeamChannelTab","Remove-MgTeamworkDeletedTeamChannelTab" +"DELETE","/teamwork/teamsAppSettings","keep",,"Remove-MgTeamworkTeamAppSetting","Remove-MgTeamworkTeamAppSetting" +"DELETE","/teamwork/workforceIntegrations/{param}","keep",,"Remove-MgTeamworkWorkforceIntegration","Remove-MgTeamworkWorkforceIntegration" +"DELETE","/tenantRelationships/delegatedAdminCustomers/{param}","keep",,"Remove-MgTenantRelationshipDelegatedAdminCustomer","Remove-MgTenantRelationshipDelegatedAdminCustomer" +"DELETE","/tenantRelationships/delegatedAdminCustomers/{param}/serviceManagementDetails/{param}","keep",,"Remove-MgTenantRelationshipDelegatedAdminCustomerServiceManagementDetail","Remove-MgTenantRelationshipDelegatedAdminCustomerServiceManagementDetail" +"DELETE","/tenantRelationships/delegatedAdminRelationships/{param}","keep",,"Remove-MgTenantRelationshipDelegatedAdminRelationship","Remove-MgTenantRelationshipDelegatedAdminRelationship" +"DELETE","/tenantRelationships/delegatedAdminRelationships/{param}/accessAssignments/{param}","keep",,"Remove-MgTenantRelationshipDelegatedAdminRelationshipAccessAssignment","Remove-MgTenantRelationshipDelegatedAdminRelationshipAccessAssignment" +"DELETE","/tenantRelationships/delegatedAdminRelationships/{param}/operations/{param}","keep",,"Remove-MgTenantRelationshipDelegatedAdminRelationshipOperation","Remove-MgTenantRelationshipDelegatedAdminRelationshipOperation" +"DELETE","/tenantRelationships/delegatedAdminRelationships/{param}/requests/{param}","keep",,"Remove-MgTenantRelationshipDelegatedAdminRelationshipRequest","Remove-MgTenantRelationshipDelegatedAdminRelationshipRequest" +"DELETE","/tenantRelationships/multiTenantOrganization/tenants/{param}","keep",,"Remove-MgTenantRelationshipMultiTenantOrganizationTenant","Remove-MgTenantRelationshipMultiTenantOrganizationTenant" +"DELETE","/users/{param}","keep",,"Remove-MgUser","Remove-MgUser" +"DELETE","/users/{param}/activities/{param}","keep",,"Remove-MgUserActivity","Remove-MgUserActivity" +"DELETE","/users/{param}/activities/{param}/historyItems/{param}","keep",,"Remove-MgUserActivityHistoryItem","Remove-MgUserActivityHistoryItem" +"DELETE","/users/{param}/appRoleAssignments/{param}","keep",,"Remove-MgUserAppRoleAssignment","Remove-MgUserAppRoleAssignment" +"DELETE","/users/{param}/authentication","suppress",,"Remove-MgUserAuthentication","no oracle row for DELETE /users/{param}/authentication and 'Remove-MgUserAuthentication' unshipped" +"DELETE","/users/{param}/authentication/emailMethods/{param}","keep",,"Remove-MgUserAuthenticationEmailMethod","Remove-MgUserAuthenticationEmailMethod" +"DELETE","/users/{param}/authentication/externalAuthenticationMethods/{param}","keep",,"Remove-MgUserAuthenticationExternalAuthenticationMethod","Remove-MgUserAuthenticationExternalAuthenticationMethod" +"DELETE","/users/{param}/authentication/fido2Methods/{param}","keep",,"Remove-MgUserAuthenticationFido2Method","Remove-MgUserAuthenticationFido2Method" +"DELETE","/users/{param}/authentication/microsoftAuthenticatorMethods/{param}","keep",,"Remove-MgUserAuthenticationMicrosoftAuthenticatorMethod","Remove-MgUserAuthenticationMicrosoftAuthenticatorMethod" +"DELETE","/users/{param}/authentication/operations/{param}","keep",,"Remove-MgUserAuthenticationOperation","Remove-MgUserAuthenticationOperation" +"DELETE","/users/{param}/authentication/phoneMethods/{param}","keep",,"Remove-MgUserAuthenticationPhoneMethod","Remove-MgUserAuthenticationPhoneMethod" +"DELETE","/users/{param}/authentication/platformCredentialMethods/{param}","keep",,"Remove-MgUserAuthenticationPlatformCredentialMethod","Remove-MgUserAuthenticationPlatformCredentialMethod" +"DELETE","/users/{param}/authentication/softwareOathMethods/{param}","keep",,"Remove-MgUserAuthenticationSoftwareOathMethod","Remove-MgUserAuthenticationSoftwareOathMethod" +"DELETE","/users/{param}/authentication/temporaryAccessPassMethods/{param}","keep",,"Remove-MgUserAuthenticationTemporaryAccessPassMethod","Remove-MgUserAuthenticationTemporaryAccessPassMethod" +"DELETE","/users/{param}/authentication/windowsHelloForBusinessMethods/{param}","keep",,"Remove-MgUserAuthenticationWindowsHelloForBusinessMethod","Remove-MgUserAuthenticationWindowsHelloForBusinessMethod" +"DELETE","/users/{param}/calendar/calendarPermissions/{param}","keep",,"Remove-MgUserCalendarPermission","Remove-MgUserCalendarPermission" +"DELETE","/users/{param}/calendarGroups/{param}","keep",,"Remove-MgUserCalendarGroup","Remove-MgUserCalendarGroup" +"DELETE","/users/{param}/calendarGroups/{param}/calendars/{param}","suppress",,"Remove-MgUserCalendarGroupCalendar","no oracle row for DELETE /users/{param}/calendarGroups/{param}/calendars/{param} and 'Remove-MgUserCalendarGroupCalendar' unshipped" +"DELETE","/users/{param}/calendarGroups/{param}/calendars/{param}/calendarPermissions/{param}","suppress",,"Remove-MgUserCalendarGroupCalendarPermission","no oracle row for DELETE /users/{param}/calendarGroups/{param}/calendars/{param}/calendarPermissions/{param} and 'Remove-MgUserCalendarGroupCalendarPermission' unshipped" +"DELETE","/users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}","suppress",,"Remove-MgUserCalendarGroupCalendarEvent","no oracle row for DELETE /users/{param}/calendarGroups/{param}/calendars/{param}/events/{param} and 'Remove-MgUserCalendarGroupCalendarEvent' unshipped" +"DELETE","/users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/attachments/{param}","suppress",,"Remove-MgUserCalendarGroupCalendarEventAttachment","no oracle row for DELETE /users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/attachments/{param} and 'Remove-MgUserCalendarGroupCalendarEventAttachment' unshipped" +"DELETE","/users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/extensions/{param}","suppress",,"Remove-MgUserCalendarGroupCalendarEventExtension","no oracle row for DELETE /users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/extensions/{param} and 'Remove-MgUserCalendarGroupCalendarEventExtension' unshipped" +"DELETE","/users/{param}/calendars/{param}","suppress",,"Remove-MgUserCalendar","no oracle row for DELETE /users/{param}/calendars/{param} and 'Remove-MgUserCalendar' unshipped" +"DELETE","/users/{param}/chats/{param}","keep",,"Remove-MgUserChat","Remove-MgUserChat" +"DELETE","/users/{param}/chats/{param}/installedApps/{param}","keep",,"Remove-MgUserChatInstalledApp","Remove-MgUserChatInstalledApp" +"DELETE","/users/{param}/chats/{param}/lastMessagePreview","keep",,"Remove-MgUserChatLastMessagePreview","Remove-MgUserChatLastMessagePreview" +"DELETE","/users/{param}/chats/{param}/members/{param}","keep",,"Remove-MgUserChatMember","Remove-MgUserChatMember" +"DELETE","/users/{param}/chats/{param}/messages/{param}","keep",,"Remove-MgUserChatMessage","Remove-MgUserChatMessage" +"DELETE","/users/{param}/chats/{param}/messages/{param}/hostedContents/{param}","keep",,"Remove-MgUserChatMessageHostedContent","Remove-MgUserChatMessageHostedContent" +"DELETE","/users/{param}/chats/{param}/messages/{param}/hostedContents/{param}/$value","suppress",,"Remove-MgUserChatMessageHostedContentContent","no oracle row for DELETE /users/{param}/chats/{param}/messages/{param}/hostedContents/{param}/$value and 'Remove-MgUserChatMessageHostedContentContent' unshipped" +"DELETE","/users/{param}/chats/{param}/messages/{param}/replies/{param}","keep",,"Remove-MgUserChatMessageReply","Remove-MgUserChatMessageReply" +"DELETE","/users/{param}/chats/{param}/messages/{param}/replies/{param}/hostedContents/{param}","keep",,"Remove-MgUserChatMessageReplyHostedContent","Remove-MgUserChatMessageReplyHostedContent" +"DELETE","/users/{param}/chats/{param}/messages/{param}/replies/{param}/hostedContents/{param}/$value","suppress",,"Remove-MgUserChatMessageReplyHostedContentContent","no oracle row for DELETE /users/{param}/chats/{param}/messages/{param}/replies/{param}/hostedContents/{param}/$value and 'Remove-MgUserChatMessageReplyHostedContentContent' unshipped" +"DELETE","/users/{param}/chats/{param}/permissionGrants/{param}","keep",,"Remove-MgUserChatPermissionGrant","Remove-MgUserChatPermissionGrant" +"DELETE","/users/{param}/chats/{param}/pinnedMessages/{param}","keep",,"Remove-MgUserChatPinnedMessage","Remove-MgUserChatPinnedMessage" +"DELETE","/users/{param}/chats/{param}/tabs/{param}","keep",,"Remove-MgUserChatTab","Remove-MgUserChatTab" +"DELETE","/users/{param}/chats/{param}/targetedMessages/{param}","keep",,"Remove-MgUserChatTargetedMessage","Remove-MgUserChatTargetedMessage" +"DELETE","/users/{param}/chats/{param}/targetedMessages/{param}/hostedContents/{param}","keep",,"Remove-MgUserChatTargetedMessageHostedContent","Remove-MgUserChatTargetedMessageHostedContent" +"DELETE","/users/{param}/chats/{param}/targetedMessages/{param}/hostedContents/{param}/$value","suppress",,"Remove-MgUserChatTargetedMessageHostedContentContent","no oracle row for DELETE /users/{param}/chats/{param}/targetedMessages/{param}/hostedContents/{param}/$value and 'Remove-MgUserChatTargetedMessageHostedContentContent' unshipped" +"DELETE","/users/{param}/chats/{param}/targetedMessages/{param}/replies/{param}","keep",,"Remove-MgUserChatTargetedMessageReply","Remove-MgUserChatTargetedMessageReply" +"DELETE","/users/{param}/chats/{param}/targetedMessages/{param}/replies/{param}/hostedContents/{param}","keep",,"Remove-MgUserChatTargetedMessageReplyHostedContent","Remove-MgUserChatTargetedMessageReplyHostedContent" +"DELETE","/users/{param}/chats/{param}/targetedMessages/{param}/replies/{param}/hostedContents/{param}/$value","suppress",,"Remove-MgUserChatTargetedMessageReplyHostedContentContent","no oracle row for DELETE /users/{param}/chats/{param}/targetedMessages/{param}/replies/{param}/hostedContents/{param}/$value and 'Remove-MgUserChatTargetedMessageReplyHostedContentContent' unshipped" +"DELETE","/users/{param}/contactFolders/{param}","keep",,"Remove-MgUserContactFolder","Remove-MgUserContactFolder" +"DELETE","/users/{param}/contactFolders/{param}/childFolders/{param}","keep",,"Remove-MgUserContactFolderChildFolder","Remove-MgUserContactFolderChildFolder" +"DELETE","/users/{param}/contactFolders/{param}/childFolders/{param}/contacts/{param}","keep",,"Remove-MgUserContactFolderChildFolderContact","Remove-MgUserContactFolderChildFolderContact" +"DELETE","/users/{param}/contactFolders/{param}/childFolders/{param}/contacts/{param}/extensions/{param}","keep",,"Remove-MgUserContactFolderChildFolderContactExtension","Remove-MgUserContactFolderChildFolderContactExtension" +"DELETE","/users/{param}/contactFolders/{param}/childFolders/{param}/contacts/{param}/photo/$value","keep",,"Remove-MgUserContactFolderChildFolderContactPhotoContent","Remove-MgUserContactFolderChildFolderContactPhotoContent" +"DELETE","/users/{param}/contactFolders/{param}/contacts/{param}","keep",,"Remove-MgUserContactFolderContact","Remove-MgUserContactFolderContact" +"DELETE","/users/{param}/contactFolders/{param}/contacts/{param}/extensions/{param}","keep",,"Remove-MgUserContactFolderContactExtension","Remove-MgUserContactFolderContactExtension" +"DELETE","/users/{param}/contactFolders/{param}/contacts/{param}/photo/$value","keep",,"Remove-MgUserContactFolderContactPhotoContent","Remove-MgUserContactFolderContactPhotoContent" +"DELETE","/users/{param}/contacts/{param}","keep",,"Remove-MgUserContact","Remove-MgUserContact" +"DELETE","/users/{param}/contacts/{param}/extensions/{param}","keep",,"Remove-MgUserContactExtension","Remove-MgUserContactExtension" +"DELETE","/users/{param}/contacts/{param}/photo/$value","keep",,"Remove-MgUserContactPhotoContent","Remove-MgUserContactPhotoContent" +"DELETE","/users/{param}/deviceManagementTroubleshootingEvents/{param}","keep",,"Remove-MgUserDeviceManagementTroubleshootingEvent","Remove-MgUserDeviceManagementTroubleshootingEvent" +"DELETE","/users/{param}/events/{param}","keep",,"Remove-MgUserEvent","Remove-MgUserEvent" +"DELETE","/users/{param}/events/{param}/attachments/{param}","keep",,"Remove-MgUserEventAttachment","Remove-MgUserEventAttachment" +"DELETE","/users/{param}/events/{param}/extensions/{param}","keep",,"Remove-MgUserEventExtension","Remove-MgUserEventExtension" +"DELETE","/users/{param}/extensions/{param}","keep",,"Remove-MgUserExtension","Remove-MgUserExtension" +"DELETE","/users/{param}/inferenceClassification/overrides/{param}","keep",,"Remove-MgUserInferenceClassificationOverride","Remove-MgUserInferenceClassificationOverride" +"DELETE","/users/{param}/insights","keep",,"Remove-MgUserInsight","Remove-MgUserInsight" +"DELETE","/users/{param}/insights/shared/{param}","keep",,"Remove-MgUserInsightShared","Remove-MgUserInsightShared" +"DELETE","/users/{param}/insights/trending/{param}","keep",,"Remove-MgUserInsightTrending","Remove-MgUserInsightTrending" +"DELETE","/users/{param}/insights/used/{param}","keep",,"Remove-MgUserInsightUsed","Remove-MgUserInsightUsed" +"DELETE","/users/{param}/joinedTeams/{param}","suppress",,"Remove-MgUserJoinedTeam","no oracle row for DELETE /users/{param}/joinedTeams/{param} and 'Remove-MgUserJoinedTeam' unshipped" +"DELETE","/users/{param}/joinedTeams/{param}/channels/{param}","suppress",,"Remove-MgUserJoinedTeamChannel","no oracle row for DELETE /users/{param}/joinedTeams/{param}/channels/{param} and 'Remove-MgUserJoinedTeamChannel' unshipped" +"DELETE","/users/{param}/joinedTeams/{param}/channels/{param}/allMembers/{param}","suppress",,"Remove-MgUserJoinedTeamChannelAllMember","no oracle row for DELETE /users/{param}/joinedTeams/{param}/channels/{param}/allMembers/{param} and 'Remove-MgUserJoinedTeamChannelAllMember' unshipped" +"DELETE","/users/{param}/joinedTeams/{param}/channels/{param}/filesFolder/$value","suppress",,"Remove-MgUserJoinedTeamChannelFileFolderContent","no oracle row for DELETE /users/{param}/joinedTeams/{param}/channels/{param}/filesFolder/$value and 'Remove-MgUserJoinedTeamChannelFileFolderContent' unshipped" +"DELETE","/users/{param}/joinedTeams/{param}/channels/{param}/members/{param}","suppress",,"Remove-MgUserJoinedTeamChannelMember","no oracle row for DELETE /users/{param}/joinedTeams/{param}/channels/{param}/members/{param} and 'Remove-MgUserJoinedTeamChannelMember' unshipped" +"DELETE","/users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}","suppress",,"Remove-MgUserJoinedTeamChannelMessage","no oracle row for DELETE /users/{param}/joinedTeams/{param}/channels/{param}/messages/{param} and 'Remove-MgUserJoinedTeamChannelMessage' unshipped" +"DELETE","/users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/hostedContents/{param}","suppress",,"Remove-MgUserJoinedTeamChannelMessageHostedContent","no oracle row for DELETE /users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/hostedContents/{param} and 'Remove-MgUserJoinedTeamChannelMessageHostedContent' unshipped" +"DELETE","/users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/hostedContents/{param}/$value","suppress",,"Remove-MgUserJoinedTeamChannelMessageHostedContentContent","no oracle row for DELETE /users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/hostedContents/{param}/$value and 'Remove-MgUserJoinedTeamChannelMessageHostedContentContent' unshipped" +"DELETE","/users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/replies/{param}","suppress",,"Remove-MgUserJoinedTeamChannelMessageReply","no oracle row for DELETE /users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/replies/{param} and 'Remove-MgUserJoinedTeamChannelMessageReply' unshipped" +"DELETE","/users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/replies/{param}/hostedContents/{param}","suppress",,"Remove-MgUserJoinedTeamChannelMessageReplyHostedContent","no oracle row for DELETE /users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/replies/{param}/hostedContents/{param} and 'Remove-MgUserJoinedTeamChannelMessageReplyHostedContent' unshipped" +"DELETE","/users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/replies/{param}/hostedContents/{param}/$value","suppress",,"Remove-MgUserJoinedTeamChannelMessageReplyHostedContentContent","no oracle row for DELETE /users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/replies/{param}/hostedContents/{param}/$value and 'Remove-MgUserJoinedTeamChannelMessageReplyHostedContentContent' unshipped" +"DELETE","/users/{param}/joinedTeams/{param}/channels/{param}/sharedWithTeams/{param}","suppress",,"Remove-MgUserJoinedTeamChannelSharedWithTeam","no oracle row for DELETE /users/{param}/joinedTeams/{param}/channels/{param}/sharedWithTeams/{param} and 'Remove-MgUserJoinedTeamChannelSharedWithTeam' unshipped" +"DELETE","/users/{param}/joinedTeams/{param}/channels/{param}/tabs/{param}","suppress",,"Remove-MgUserJoinedTeamChannelTab","no oracle row for DELETE /users/{param}/joinedTeams/{param}/channels/{param}/tabs/{param} and 'Remove-MgUserJoinedTeamChannelTab' unshipped" +"DELETE","/users/{param}/joinedTeams/{param}/installedApps/{param}","suppress",,"Remove-MgUserJoinedTeamInstalledApp","no oracle row for DELETE /users/{param}/joinedTeams/{param}/installedApps/{param} and 'Remove-MgUserJoinedTeamInstalledApp' unshipped" +"DELETE","/users/{param}/joinedTeams/{param}/members/{param}","suppress",,"Remove-MgUserJoinedTeamMember","no oracle row for DELETE /users/{param}/joinedTeams/{param}/members/{param} and 'Remove-MgUserJoinedTeamMember' unshipped" +"DELETE","/users/{param}/joinedTeams/{param}/operations/{param}","suppress",,"Remove-MgUserJoinedTeamOperation","no oracle row for DELETE /users/{param}/joinedTeams/{param}/operations/{param} and 'Remove-MgUserJoinedTeamOperation' unshipped" +"DELETE","/users/{param}/joinedTeams/{param}/permissionGrants/{param}","suppress",,"Remove-MgUserJoinedTeamPermissionGrant","no oracle row for DELETE /users/{param}/joinedTeams/{param}/permissionGrants/{param} and 'Remove-MgUserJoinedTeamPermissionGrant' unshipped" +"DELETE","/users/{param}/joinedTeams/{param}/photo/$value","suppress",,"Remove-MgUserJoinedTeamPhotoContent","no oracle row for DELETE /users/{param}/joinedTeams/{param}/photo/$value and 'Remove-MgUserJoinedTeamPhotoContent' unshipped" +"DELETE","/users/{param}/joinedTeams/{param}/primaryChannel","suppress",,"Remove-MgUserJoinedTeamPrimaryChannel","no oracle row for DELETE /users/{param}/joinedTeams/{param}/primaryChannel and 'Remove-MgUserJoinedTeamPrimaryChannel' unshipped" +"DELETE","/users/{param}/joinedTeams/{param}/primaryChannel/allMembers/{param}","suppress",,"Remove-MgUserJoinedTeamPrimaryChannelAllMember","no oracle row for DELETE /users/{param}/joinedTeams/{param}/primaryChannel/allMembers/{param} and 'Remove-MgUserJoinedTeamPrimaryChannelAllMember' unshipped" +"DELETE","/users/{param}/joinedTeams/{param}/primaryChannel/filesFolder/$value","suppress",,"Remove-MgUserJoinedTeamPrimaryChannelFileFolderContent","no oracle row for DELETE /users/{param}/joinedTeams/{param}/primaryChannel/filesFolder/$value and 'Remove-MgUserJoinedTeamPrimaryChannelFileFolderContent' unshipped" +"DELETE","/users/{param}/joinedTeams/{param}/primaryChannel/members/{param}","suppress",,"Remove-MgUserJoinedTeamPrimaryChannelMember","no oracle row for DELETE /users/{param}/joinedTeams/{param}/primaryChannel/members/{param} and 'Remove-MgUserJoinedTeamPrimaryChannelMember' unshipped" +"DELETE","/users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}","suppress",,"Remove-MgUserJoinedTeamPrimaryChannelMessage","no oracle row for DELETE /users/{param}/joinedTeams/{param}/primaryChannel/messages/{param} and 'Remove-MgUserJoinedTeamPrimaryChannelMessage' unshipped" +"DELETE","/users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/hostedContents/{param}","suppress",,"Remove-MgUserJoinedTeamPrimaryChannelMessageHostedContent","no oracle row for DELETE /users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/hostedContents/{param} and 'Remove-MgUserJoinedTeamPrimaryChannelMessageHostedContent' unshipped" +"DELETE","/users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/hostedContents/{param}/$value","suppress",,"Remove-MgUserJoinedTeamPrimaryChannelMessageHostedContentContent","no oracle row for DELETE /users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/hostedContents/{param}/$value and 'Remove-MgUserJoinedTeamPrimaryChannelMessageHostedContentContent' unshipped" +"DELETE","/users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/replies/{param}","suppress",,"Remove-MgUserJoinedTeamPrimaryChannelMessageReply","no oracle row for DELETE /users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/replies/{param} and 'Remove-MgUserJoinedTeamPrimaryChannelMessageReply' unshipped" +"DELETE","/users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/replies/{param}/hostedContents/{param}","suppress",,"Remove-MgUserJoinedTeamPrimaryChannelMessageReplyHostedContent","no oracle row for DELETE /users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/replies/{param}/hostedContents/{param} and 'Remove-MgUserJoinedTeamPrimaryChannelMessageReplyHostedContent' unshipped" +"DELETE","/users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/replies/{param}/hostedContents/{param}/$value","suppress",,"Remove-MgUserJoinedTeamPrimaryChannelMessageReplyHostedContentContent","no oracle row for DELETE /users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/replies/{param}/hostedContents/{param}/$value and 'Remove-MgUserJoinedTeamPrimaryChannelMessageReplyHostedContentContent' unshipped" +"DELETE","/users/{param}/joinedTeams/{param}/primaryChannel/sharedWithTeams/{param}","suppress",,"Remove-MgUserJoinedTeamPrimaryChannelSharedWithTeam","no oracle row for DELETE /users/{param}/joinedTeams/{param}/primaryChannel/sharedWithTeams/{param} and 'Remove-MgUserJoinedTeamPrimaryChannelSharedWithTeam' unshipped" +"DELETE","/users/{param}/joinedTeams/{param}/primaryChannel/tabs/{param}","suppress",,"Remove-MgUserJoinedTeamPrimaryChannelTab","no oracle row for DELETE /users/{param}/joinedTeams/{param}/primaryChannel/tabs/{param} and 'Remove-MgUserJoinedTeamPrimaryChannelTab' unshipped" +"DELETE","/users/{param}/joinedTeams/{param}/schedule","suppress",,"Remove-MgUserJoinedTeamSchedule","no oracle row for DELETE /users/{param}/joinedTeams/{param}/schedule and 'Remove-MgUserJoinedTeamSchedule' unshipped" +"DELETE","/users/{param}/joinedTeams/{param}/schedule/dayNotes/{param}","suppress",,"Remove-MgUserJoinedTeamScheduleDayNote","no oracle row for DELETE /users/{param}/joinedTeams/{param}/schedule/dayNotes/{param} and 'Remove-MgUserJoinedTeamScheduleDayNote' unshipped" +"DELETE","/users/{param}/joinedTeams/{param}/schedule/offerShiftRequests/{param}","suppress",,"Remove-MgUserJoinedTeamScheduleOfferShiftRequest","no oracle row for DELETE /users/{param}/joinedTeams/{param}/schedule/offerShiftRequests/{param} and 'Remove-MgUserJoinedTeamScheduleOfferShiftRequest' unshipped" +"DELETE","/users/{param}/joinedTeams/{param}/schedule/openShiftChangeRequests/{param}","suppress",,"Remove-MgUserJoinedTeamScheduleOpenShiftChangeRequest","no oracle row for DELETE /users/{param}/joinedTeams/{param}/schedule/openShiftChangeRequests/{param} and 'Remove-MgUserJoinedTeamScheduleOpenShiftChangeRequest' unshipped" +"DELETE","/users/{param}/joinedTeams/{param}/schedule/openShifts/{param}","suppress",,"Remove-MgUserJoinedTeamScheduleOpenShift","no oracle row for DELETE /users/{param}/joinedTeams/{param}/schedule/openShifts/{param} and 'Remove-MgUserJoinedTeamScheduleOpenShift' unshipped" +"DELETE","/users/{param}/joinedTeams/{param}/schedule/schedulingGroups/{param}","suppress",,"Remove-MgUserJoinedTeamScheduleSchedulingGroup","no oracle row for DELETE /users/{param}/joinedTeams/{param}/schedule/schedulingGroups/{param} and 'Remove-MgUserJoinedTeamScheduleSchedulingGroup' unshipped" +"DELETE","/users/{param}/joinedTeams/{param}/schedule/shifts/{param}","suppress",,"Remove-MgUserJoinedTeamScheduleShift","no oracle row for DELETE /users/{param}/joinedTeams/{param}/schedule/shifts/{param} and 'Remove-MgUserJoinedTeamScheduleShift' unshipped" +"DELETE","/users/{param}/joinedTeams/{param}/schedule/swapShiftsChangeRequests/{param}","suppress",,"Remove-MgUserJoinedTeamScheduleSwapShiftChangeRequest","no oracle row for DELETE /users/{param}/joinedTeams/{param}/schedule/swapShiftsChangeRequests/{param} and 'Remove-MgUserJoinedTeamScheduleSwapShiftChangeRequest' unshipped" +"DELETE","/users/{param}/joinedTeams/{param}/schedule/timeCards/{param}","suppress",,"Remove-MgUserJoinedTeamScheduleTimeCard","no oracle row for DELETE /users/{param}/joinedTeams/{param}/schedule/timeCards/{param} and 'Remove-MgUserJoinedTeamScheduleTimeCard' unshipped" +"DELETE","/users/{param}/joinedTeams/{param}/schedule/timeOffReasons/{param}","suppress",,"Remove-MgUserJoinedTeamScheduleTimeOffReason","no oracle row for DELETE /users/{param}/joinedTeams/{param}/schedule/timeOffReasons/{param} and 'Remove-MgUserJoinedTeamScheduleTimeOffReason' unshipped" +"DELETE","/users/{param}/joinedTeams/{param}/schedule/timeOffRequests/{param}","suppress",,"Remove-MgUserJoinedTeamScheduleTimeOffRequest","no oracle row for DELETE /users/{param}/joinedTeams/{param}/schedule/timeOffRequests/{param} and 'Remove-MgUserJoinedTeamScheduleTimeOffRequest' unshipped" +"DELETE","/users/{param}/joinedTeams/{param}/schedule/timesOff/{param}","suppress",,"Remove-MgUserJoinedTeamScheduleTimeOff","no oracle row for DELETE /users/{param}/joinedTeams/{param}/schedule/timesOff/{param} and 'Remove-MgUserJoinedTeamScheduleTimeOff' unshipped" +"DELETE","/users/{param}/joinedTeams/{param}/tags/{param}","suppress",,"Remove-MgUserJoinedTeamTag","no oracle row for DELETE /users/{param}/joinedTeams/{param}/tags/{param} and 'Remove-MgUserJoinedTeamTag' unshipped" +"DELETE","/users/{param}/joinedTeams/{param}/tags/{param}/members/{param}","suppress",,"Remove-MgUserJoinedTeamTagMember","no oracle row for DELETE /users/{param}/joinedTeams/{param}/tags/{param}/members/{param} and 'Remove-MgUserJoinedTeamTagMember' unshipped" +"DELETE","/users/{param}/licenseDetails/{param}","keep",,"Remove-MgUserLicenseDetail","Remove-MgUserLicenseDetail" +"DELETE","/users/{param}/mailFolders/{param}","keep",,"Remove-MgUserMailFolder","Remove-MgUserMailFolder" +"DELETE","/users/{param}/mailFolders/{param}/childFolders/{param}","keep",,"Remove-MgUserMailFolderChildFolder","Remove-MgUserMailFolderChildFolder" +"DELETE","/users/{param}/mailFolders/{param}/childFolders/{param}/messageRules/{param}","keep",,"Remove-MgUserMailFolderChildFolderMessageRule","Remove-MgUserMailFolderChildFolderMessageRule" +"DELETE","/users/{param}/mailFolders/{param}/childFolders/{param}/messages/{param}","keep",,"Remove-MgUserMailFolderChildFolderMessage","Remove-MgUserMailFolderChildFolderMessage" +"DELETE","/users/{param}/mailFolders/{param}/childFolders/{param}/messages/{param}/$value","keep",,"Remove-MgUserMailFolderChildFolderMessageContent","Remove-MgUserMailFolderChildFolderMessageContent" +"DELETE","/users/{param}/mailFolders/{param}/childFolders/{param}/messages/{param}/attachments/{param}","keep",,"Remove-MgUserMailFolderChildFolderMessageAttachment","Remove-MgUserMailFolderChildFolderMessageAttachment" +"DELETE","/users/{param}/mailFolders/{param}/childFolders/{param}/messages/{param}/extensions/{param}","keep",,"Remove-MgUserMailFolderChildFolderMessageExtension","Remove-MgUserMailFolderChildFolderMessageExtension" +"DELETE","/users/{param}/mailFolders/{param}/messageRules/{param}","keep",,"Remove-MgUserMailFolderMessageRule","Remove-MgUserMailFolderMessageRule" +"DELETE","/users/{param}/mailFolders/{param}/messages/{param}","keep",,"Remove-MgUserMailFolderMessage","Remove-MgUserMailFolderMessage" +"DELETE","/users/{param}/mailFolders/{param}/messages/{param}/$value","keep",,"Remove-MgUserMailFolderMessageContent","Remove-MgUserMailFolderMessageContent" +"DELETE","/users/{param}/mailFolders/{param}/messages/{param}/attachments/{param}","keep",,"Remove-MgUserMailFolderMessageAttachment","Remove-MgUserMailFolderMessageAttachment" +"DELETE","/users/{param}/mailFolders/{param}/messages/{param}/extensions/{param}","keep",,"Remove-MgUserMailFolderMessageExtension","Remove-MgUserMailFolderMessageExtension" +"DELETE","/users/{param}/managedDevices/{param}","keep",,"Remove-MgUserManagedDevice","Remove-MgUserManagedDevice" +"DELETE","/users/{param}/managedDevices/{param}/deviceCategory","keep",,"Remove-MgUserManagedDeviceCategory","Remove-MgUserManagedDeviceCategory" +"DELETE","/users/{param}/managedDevices/{param}/deviceCategory/$ref","keep",,"Remove-MgUserManagedDeviceCategoryByRef","Remove-MgUserManagedDeviceCategoryByRef" +"DELETE","/users/{param}/managedDevices/{param}/deviceCompliancePolicyStates/{param}","keep",,"Remove-MgUserManagedDeviceCompliancePolicyState","Remove-MgUserManagedDeviceCompliancePolicyState" +"DELETE","/users/{param}/managedDevices/{param}/deviceConfigurationStates/{param}","keep",,"Remove-MgUserManagedDeviceConfigurationState","Remove-MgUserManagedDeviceConfigurationState" +"DELETE","/users/{param}/managedDevices/{param}/logCollectionRequests/{param}","rename","UserManagedDeviceLogCollectionResponse","Remove-MgUserManagedDeviceLogCollectionRequest","Remove-MgUserManagedDeviceLogCollectionResponse" +"DELETE","/users/{param}/managedDevices/{param}/windowsProtectionState","keep",,"Remove-MgUserManagedDeviceWindowsProtectionState","Remove-MgUserManagedDeviceWindowsProtectionState" +"DELETE","/users/{param}/managedDevices/{param}/windowsProtectionState/detectedMalwareState/{param}","keep",,"Remove-MgUserManagedDeviceWindowsProtectionStateDetectedMalwareState","Remove-MgUserManagedDeviceWindowsProtectionStateDetectedMalwareState" +"DELETE","/users/{param}/manager/$ref","keep",,"Remove-MgUserManagerByRef","Remove-MgUserManagerByRef" +"DELETE","/users/{param}/messages/{param}","keep",,"Remove-MgUserMessage","Remove-MgUserMessage" +"DELETE","/users/{param}/messages/{param}/$value","keep",,"Remove-MgUserMessageContent","Remove-MgUserMessageContent" +"DELETE","/users/{param}/messages/{param}/attachments/{param}","keep",,"Remove-MgUserMessageAttachment","Remove-MgUserMessageAttachment" +"DELETE","/users/{param}/messages/{param}/extensions/{param}","keep",,"Remove-MgUserMessageExtension","Remove-MgUserMessageExtension" +"DELETE","/users/{param}/onenote","keep",,"Remove-MgUserOnenote","Remove-MgUserOnenote" +"DELETE","/users/{param}/onenote/notebooks/{param}","keep",,"Remove-MgUserOnenoteNotebook","Remove-MgUserOnenoteNotebook" +"DELETE","/users/{param}/onenote/notebooks/{param}/sectionGroups/{param}","keep",,"Remove-MgUserOnenoteNotebookSectionGroup","Remove-MgUserOnenoteNotebookSectionGroup" +"DELETE","/users/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}","keep",,"Remove-MgUserOnenoteNotebookSectionGroupSection","Remove-MgUserOnenoteNotebookSectionGroupSection" +"DELETE","/users/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}","keep",,"Remove-MgUserOnenoteNotebookSectionGroupSectionPage","Remove-MgUserOnenoteNotebookSectionGroupSectionPage" +"DELETE","/users/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}/$value","keep",,"Remove-MgUserOnenoteNotebookSectionGroupSectionPageContent","Remove-MgUserOnenoteNotebookSectionGroupSectionPageContent" +"DELETE","/users/{param}/onenote/notebooks/{param}/sections/{param}","keep",,"Remove-MgUserOnenoteNotebookSection","Remove-MgUserOnenoteNotebookSection" +"DELETE","/users/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}","keep",,"Remove-MgUserOnenoteNotebookSectionPage","Remove-MgUserOnenoteNotebookSectionPage" +"DELETE","/users/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}/$value","keep",,"Remove-MgUserOnenoteNotebookSectionPageContent","Remove-MgUserOnenoteNotebookSectionPageContent" +"DELETE","/users/{param}/onenote/operations/{param}","keep",,"Remove-MgUserOnenoteOperation","Remove-MgUserOnenoteOperation" +"DELETE","/users/{param}/onenote/pages/{param}","keep",,"Remove-MgUserOnenotePage","Remove-MgUserOnenotePage" +"DELETE","/users/{param}/onenote/pages/{param}/$value","keep",,"Remove-MgUserOnenotePageContent","Remove-MgUserOnenotePageContent" +"DELETE","/users/{param}/onenote/resources/{param}","keep",,"Remove-MgUserOnenoteResource","Remove-MgUserOnenoteResource" +"DELETE","/users/{param}/onenote/resources/{param}/$value","keep",,"Remove-MgUserOnenoteResourceContent","Remove-MgUserOnenoteResourceContent" +"DELETE","/users/{param}/onenote/sectionGroups/{param}","keep",,"Remove-MgUserOnenoteSectionGroup","Remove-MgUserOnenoteSectionGroup" +"DELETE","/users/{param}/onenote/sectionGroups/{param}/sections/{param}","keep",,"Remove-MgUserOnenoteSectionGroupSection","Remove-MgUserOnenoteSectionGroupSection" +"DELETE","/users/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}","keep",,"Remove-MgUserOnenoteSectionGroupSectionPage","Remove-MgUserOnenoteSectionGroupSectionPage" +"DELETE","/users/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}/$value","keep",,"Remove-MgUserOnenoteSectionGroupSectionPageContent","Remove-MgUserOnenoteSectionGroupSectionPageContent" +"DELETE","/users/{param}/onenote/sections/{param}","keep",,"Remove-MgUserOnenoteSection","Remove-MgUserOnenoteSection" +"DELETE","/users/{param}/onenote/sections/{param}/pages/{param}","keep",,"Remove-MgUserOnenoteSectionPage","Remove-MgUserOnenoteSectionPage" +"DELETE","/users/{param}/onenote/sections/{param}/pages/{param}/$value","keep",,"Remove-MgUserOnenoteSectionPageContent","Remove-MgUserOnenoteSectionPageContent" +"DELETE","/users/{param}/onlineMeetings/{param}","keep",,"Remove-MgUserOnlineMeeting","Remove-MgUserOnlineMeeting" +"DELETE","/users/{param}/onlineMeetings/{param}/attendanceReports/{param}","keep",,"Remove-MgUserOnlineMeetingAttendanceReport","Remove-MgUserOnlineMeetingAttendanceReport" +"DELETE","/users/{param}/onlineMeetings/{param}/attendanceReports/{param}/attendanceRecords/{param}","keep",,"Remove-MgUserOnlineMeetingAttendanceReportAttendanceRecord","Remove-MgUserOnlineMeetingAttendanceReportAttendanceRecord" +"DELETE","/users/{param}/onlineMeetings/{param}/attendeeReport","keep",,"Remove-MgUserOnlineMeetingAttendeeReport","Remove-MgUserOnlineMeetingAttendeeReport" +"DELETE","/users/{param}/onlineMeetings/{param}/recordings/{param}","keep",,"Remove-MgUserOnlineMeetingRecording","Remove-MgUserOnlineMeetingRecording" +"DELETE","/users/{param}/onlineMeetings/{param}/recordings/{param}/$value","keep",,"Remove-MgUserOnlineMeetingRecordingContent","Remove-MgUserOnlineMeetingRecordingContent" +"DELETE","/users/{param}/onlineMeetings/{param}/transcripts/{param}","keep",,"Remove-MgUserOnlineMeetingTranscript","Remove-MgUserOnlineMeetingTranscript" +"DELETE","/users/{param}/onlineMeetings/{param}/transcripts/{param}/$value","keep",,"Remove-MgUserOnlineMeetingTranscriptContent","Remove-MgUserOnlineMeetingTranscriptContent" +"DELETE","/users/{param}/onlineMeetings/{param}/transcripts/{param}/metadataContent","keep",,"Remove-MgUserOnlineMeetingTranscriptMetadataContent","Remove-MgUserOnlineMeetingTranscriptMetadataContent" +"DELETE","/users/{param}/onPremisesSyncBehavior","keep",,"Remove-MgUserOnPremiseSyncBehavior","Remove-MgUserOnPremiseSyncBehavior" +"DELETE","/users/{param}/outlook/masterCategories/{param}","keep",,"Remove-MgUserOutlookMasterCategory","Remove-MgUserOutlookMasterCategory" +"DELETE","/users/{param}/photo","keep",,"Remove-MgUserPhoto","Remove-MgUserPhoto" +"DELETE","/users/{param}/photo/$value","keep",,"Remove-MgUserPhotoContent","Remove-MgUserPhotoContent" +"DELETE","/users/{param}/planner","suppress",,"Remove-MgUserPlanner","no oracle row for DELETE /users/{param}/planner and 'Remove-MgUserPlanner' unshipped" +"DELETE","/users/{param}/planner/plans/{param}","suppress",,"Remove-MgUserPlannerPlan","no oracle row for DELETE /users/{param}/planner/plans/{param} and 'Remove-MgUserPlannerPlan' unshipped" +"DELETE","/users/{param}/planner/plans/{param}/buckets/{param}","suppress",,"Remove-MgUserPlannerPlanBucket","no oracle row for DELETE /users/{param}/planner/plans/{param}/buckets/{param} and 'Remove-MgUserPlannerPlanBucket' unshipped" +"DELETE","/users/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}","suppress",,"Remove-MgUserPlannerPlanBucketTask","no oracle row for DELETE /users/{param}/planner/plans/{param}/buckets/{param}/tasks/{param} and 'Remove-MgUserPlannerPlanBucketTask' unshipped" +"DELETE","/users/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/assignedToTaskBoardFormat","suppress",,"Remove-MgUserPlannerPlanBucketTaskAssignedToTaskBoardFormat","no oracle row for DELETE /users/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/assignedToTaskBoardFormat and 'Remove-MgUserPlannerPlanBucketTaskAssignedToTaskBoardFormat' unshipped" +"DELETE","/users/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/bucketTaskBoardFormat","suppress",,"Remove-MgUserPlannerPlanBucketTaskBucketTaskBoardFormat","no oracle row for DELETE /users/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/bucketTaskBoardFormat and 'Remove-MgUserPlannerPlanBucketTaskBucketTaskBoardFormat' unshipped" +"DELETE","/users/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/details","suppress",,"Remove-MgUserPlannerPlanBucketTaskDetail","no oracle row for DELETE /users/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/details and 'Remove-MgUserPlannerPlanBucketTaskDetail' unshipped" +"DELETE","/users/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/progressTaskBoardFormat","suppress",,"Remove-MgUserPlannerPlanBucketTaskProgressTaskBoardFormat","no oracle row for DELETE /users/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/progressTaskBoardFormat and 'Remove-MgUserPlannerPlanBucketTaskProgressTaskBoardFormat' unshipped" +"DELETE","/users/{param}/planner/plans/{param}/details","suppress",,"Remove-MgUserPlannerPlanDetail","no oracle row for DELETE /users/{param}/planner/plans/{param}/details and 'Remove-MgUserPlannerPlanDetail' unshipped" +"DELETE","/users/{param}/planner/plans/{param}/tasks/{param}","suppress",,"Remove-MgUserPlannerPlanTask","no oracle row for DELETE /users/{param}/planner/plans/{param}/tasks/{param} and 'Remove-MgUserPlannerPlanTask' unshipped" +"DELETE","/users/{param}/planner/plans/{param}/tasks/{param}/assignedToTaskBoardFormat","suppress",,"Remove-MgUserPlannerPlanTaskAssignedToTaskBoardFormat","no oracle row for DELETE /users/{param}/planner/plans/{param}/tasks/{param}/assignedToTaskBoardFormat and 'Remove-MgUserPlannerPlanTaskAssignedToTaskBoardFormat' unshipped" +"DELETE","/users/{param}/planner/plans/{param}/tasks/{param}/bucketTaskBoardFormat","suppress",,"Remove-MgUserPlannerPlanTaskBucketTaskBoardFormat","no oracle row for DELETE /users/{param}/planner/plans/{param}/tasks/{param}/bucketTaskBoardFormat and 'Remove-MgUserPlannerPlanTaskBucketTaskBoardFormat' unshipped" +"DELETE","/users/{param}/planner/plans/{param}/tasks/{param}/details","suppress",,"Remove-MgUserPlannerPlanTaskDetail","no oracle row for DELETE /users/{param}/planner/plans/{param}/tasks/{param}/details and 'Remove-MgUserPlannerPlanTaskDetail' unshipped" +"DELETE","/users/{param}/planner/plans/{param}/tasks/{param}/progressTaskBoardFormat","suppress",,"Remove-MgUserPlannerPlanTaskProgressTaskBoardFormat","no oracle row for DELETE /users/{param}/planner/plans/{param}/tasks/{param}/progressTaskBoardFormat and 'Remove-MgUserPlannerPlanTaskProgressTaskBoardFormat' unshipped" +"DELETE","/users/{param}/planner/tasks/{param}","suppress",,"Remove-MgUserPlannerTask","no oracle row for DELETE /users/{param}/planner/tasks/{param} and 'Remove-MgUserPlannerTask' unshipped" +"DELETE","/users/{param}/planner/tasks/{param}/assignedToTaskBoardFormat","suppress",,"Remove-MgUserPlannerTaskAssignedToTaskBoardFormat","no oracle row for DELETE /users/{param}/planner/tasks/{param}/assignedToTaskBoardFormat and 'Remove-MgUserPlannerTaskAssignedToTaskBoardFormat' unshipped" +"DELETE","/users/{param}/planner/tasks/{param}/bucketTaskBoardFormat","suppress",,"Remove-MgUserPlannerTaskBucketTaskBoardFormat","no oracle row for DELETE /users/{param}/planner/tasks/{param}/bucketTaskBoardFormat and 'Remove-MgUserPlannerTaskBucketTaskBoardFormat' unshipped" +"DELETE","/users/{param}/planner/tasks/{param}/details","suppress",,"Remove-MgUserPlannerTaskDetail","no oracle row for DELETE /users/{param}/planner/tasks/{param}/details and 'Remove-MgUserPlannerTaskDetail' unshipped" +"DELETE","/users/{param}/planner/tasks/{param}/progressTaskBoardFormat","suppress",,"Remove-MgUserPlannerTaskProgressTaskBoardFormat","no oracle row for DELETE /users/{param}/planner/tasks/{param}/progressTaskBoardFormat and 'Remove-MgUserPlannerTaskProgressTaskBoardFormat' unshipped" +"DELETE","/users/{param}/presence","keep",,"Remove-MgUserPresence","Remove-MgUserPresence" +"DELETE","/users/{param}/scopedRoleMemberOf/{param}","keep",,"Remove-MgUserScopedRoleMemberOf","Remove-MgUserScopedRoleMemberOf" +"DELETE","/users/{param}/settings","keep",,"Remove-MgUserSetting","Remove-MgUserSetting" +"DELETE","/users/{param}/settings/itemInsights","keep",,"Remove-MgUserSettingItemInsight","Remove-MgUserSettingItemInsight" +"DELETE","/users/{param}/settings/shiftPreferences","keep",,"Remove-MgUserSettingShiftPreference","Remove-MgUserSettingShiftPreference" +"DELETE","/users/{param}/settings/storage","keep",,"Remove-MgUserSettingStorage","Remove-MgUserSettingStorage" +"DELETE","/users/{param}/settings/storage/quota","keep",,"Remove-MgUserSettingStorageQuota","Remove-MgUserSettingStorageQuota" +"DELETE","/users/{param}/settings/storage/quota/services/{param}","keep",,"Remove-MgUserSettingStorageQuotaService","Remove-MgUserSettingStorageQuotaService" +"DELETE","/users/{param}/settings/windows/{param}","keep",,"Remove-MgUserSettingWindows","Remove-MgUserSettingWindows" +"DELETE","/users/{param}/settings/windows/{param}/instances/{param}","keep",,"Remove-MgUserSettingWindowsInstance","Remove-MgUserSettingWindowsInstance" +"DELETE","/users/{param}/settings/workHoursAndLocations/occurrences/{param}","keep",,"Remove-MgUserSettingWorkHourAndLocationOccurrence","Remove-MgUserSettingWorkHourAndLocationOccurrence" +"DELETE","/users/{param}/settings/workHoursAndLocations/recurrences/{param}","keep",,"Remove-MgUserSettingWorkHourAndLocationRecurrence","Remove-MgUserSettingWorkHourAndLocationRecurrence" +"DELETE","/users/{param}/sponsors/{param}/$ref","rename","UserSponsorDirectoryObjectByRef","Remove-MgUserSponsorByRef","Remove-MgUserSponsorDirectoryObjectByRef" +"DELETE","/users/{param}/teamwork","keep",,"Remove-MgUserTeamwork","Remove-MgUserTeamwork" +"DELETE","/users/{param}/teamwork/associatedTeams/{param}","keep",,"Remove-MgUserTeamworkAssociatedTeam","Remove-MgUserTeamworkAssociatedTeam" +"DELETE","/users/{param}/teamwork/installedApps/{param}","keep",,"Remove-MgUserTeamworkInstalledApp","Remove-MgUserTeamworkInstalledApp" +"DELETE","/users/{param}/todo","suppress",,"Remove-MgUserTodo","no oracle row for DELETE /users/{param}/todo and 'Remove-MgUserTodo' unshipped" +"DELETE","/users/{param}/todo/lists/{param}","keep",,"Remove-MgUserTodoList","Remove-MgUserTodoList" +"DELETE","/users/{param}/todo/lists/{param}/extensions/{param}","keep",,"Remove-MgUserTodoListExtension","Remove-MgUserTodoListExtension" +"DELETE","/users/{param}/todo/lists/{param}/tasks/{param}","keep",,"Remove-MgUserTodoListTask","Remove-MgUserTodoListTask" +"DELETE","/users/{param}/todo/lists/{param}/tasks/{param}/attachments/{param}","keep",,"Remove-MgUserTodoListTaskAttachment","Remove-MgUserTodoListTaskAttachment" +"DELETE","/users/{param}/todo/lists/{param}/tasks/{param}/attachments/{param}/$value","keep",,"Remove-MgUserTodoListTaskAttachmentContent","Remove-MgUserTodoListTaskAttachmentContent" +"DELETE","/users/{param}/todo/lists/{param}/tasks/{param}/attachmentSessions/{param}","keep",,"Remove-MgUserTodoListTaskAttachmentSession","Remove-MgUserTodoListTaskAttachmentSession" +"DELETE","/users/{param}/todo/lists/{param}/tasks/{param}/attachmentSessions/{param}/$value","keep",,"Remove-MgUserTodoListTaskAttachmentSessionContent","Remove-MgUserTodoListTaskAttachmentSessionContent" +"DELETE","/users/{param}/todo/lists/{param}/tasks/{param}/checklistItems/{param}","keep",,"Remove-MgUserTodoListTaskChecklistItem","Remove-MgUserTodoListTaskChecklistItem" +"DELETE","/users/{param}/todo/lists/{param}/tasks/{param}/extensions/{param}","keep",,"Remove-MgUserTodoListTaskExtension","Remove-MgUserTodoListTaskExtension" +"DELETE","/users/{param}/todo/lists/{param}/tasks/{param}/linkedResources/{param}","keep",,"Remove-MgUserTodoListTaskLinkedResource","Remove-MgUserTodoListTaskLinkedResource" +"GET","/admin/configurationManagement","keep",,"Get-MgAdminConfigurationManagement","Get-MgAdminConfigurationManagement" +"GET","/admin/configurationManagement/configurationDrifts","keep",,"Get-MgAdminConfigurationManagementConfigurationDrift","Get-MgAdminConfigurationManagementConfigurationDrift" +"GET","/admin/configurationManagement/configurationDrifts/{param}","keep",,"Get-MgAdminConfigurationManagementConfigurationDrift","Get-MgAdminConfigurationManagementConfigurationDrift" +"GET","/admin/configurationManagement/configurationDrifts/$count","keep",,"Get-MgAdminConfigurationManagementConfigurationDriftCount","Get-MgAdminConfigurationManagementConfigurationDriftCount" +"GET","/admin/configurationManagement/configurationMonitoringResults","keep",,"Get-MgAdminConfigurationManagementConfigurationMonitoringResult","Get-MgAdminConfigurationManagementConfigurationMonitoringResult" +"GET","/admin/configurationManagement/configurationMonitoringResults/{param}","keep",,"Get-MgAdminConfigurationManagementConfigurationMonitoringResult","Get-MgAdminConfigurationManagementConfigurationMonitoringResult" +"GET","/admin/configurationManagement/configurationMonitoringResults/$count","keep",,"Get-MgAdminConfigurationManagementConfigurationMonitoringResultCount","Get-MgAdminConfigurationManagementConfigurationMonitoringResultCount" +"GET","/admin/configurationManagement/configurationMonitors","keep",,"Get-MgAdminConfigurationManagementConfigurationMonitor","Get-MgAdminConfigurationManagementConfigurationMonitor" +"GET","/admin/configurationManagement/configurationMonitors/{param}","keep",,"Get-MgAdminConfigurationManagementConfigurationMonitor","Get-MgAdminConfigurationManagementConfigurationMonitor" +"GET","/admin/configurationManagement/configurationMonitors/{param}/baseline","keep",,"Get-MgAdminConfigurationManagementConfigurationMonitorBaseline","Get-MgAdminConfigurationManagementConfigurationMonitorBaseline" +"GET","/admin/configurationManagement/configurationMonitors/$count","keep",,"Get-MgAdminConfigurationManagementConfigurationMonitorCount","Get-MgAdminConfigurationManagementConfigurationMonitorCount" +"GET","/admin/configurationManagement/configurationSnapshotJobs","keep",,"Get-MgAdminConfigurationManagementConfigurationSnapshotJob","Get-MgAdminConfigurationManagementConfigurationSnapshotJob" +"GET","/admin/configurationManagement/configurationSnapshotJobs/{param}","keep",,"Get-MgAdminConfigurationManagementConfigurationSnapshotJob","Get-MgAdminConfigurationManagementConfigurationSnapshotJob" +"GET","/admin/configurationManagement/configurationSnapshotJobs/$count","keep",,"Get-MgAdminConfigurationManagementConfigurationSnapshotJobCount","Get-MgAdminConfigurationManagementConfigurationSnapshotJobCount" +"GET","/admin/configurationManagement/configurationSnapshots","keep",,"Get-MgAdminConfigurationManagementConfigurationSnapshot","Get-MgAdminConfigurationManagementConfigurationSnapshot" +"GET","/admin/configurationManagement/configurationSnapshots/{param}","keep",,"Get-MgAdminConfigurationManagementConfigurationSnapshot","Get-MgAdminConfigurationManagementConfigurationSnapshot" +"GET","/admin/configurationManagement/configurationSnapshots/$count","keep",,"Get-MgAdminConfigurationManagementConfigurationSnapshotCount","Get-MgAdminConfigurationManagementConfigurationSnapshotCount" +"GET","/admin/edge","keep",,"Get-MgAdminEdge","Get-MgAdminEdge" +"GET","/admin/edge/internetExplorerMode","keep",,"Get-MgAdminEdgeInternetExplorerMode","Get-MgAdminEdgeInternetExplorerMode" +"GET","/admin/edge/internetExplorerMode/siteLists","keep",,"Get-MgAdminEdgeInternetExplorerModeSiteList","Get-MgAdminEdgeInternetExplorerModeSiteList" +"GET","/admin/edge/internetExplorerMode/siteLists/{param}","keep",,"Get-MgAdminEdgeInternetExplorerModeSiteList","Get-MgAdminEdgeInternetExplorerModeSiteList" +"GET","/admin/edge/internetExplorerMode/siteLists/{param}/sharedCookies","keep",,"Get-MgAdminEdgeInternetExplorerModeSiteListSharedCookie","Get-MgAdminEdgeInternetExplorerModeSiteListSharedCookie" +"GET","/admin/edge/internetExplorerMode/siteLists/{param}/sharedCookies/{param}","keep",,"Get-MgAdminEdgeInternetExplorerModeSiteListSharedCookie","Get-MgAdminEdgeInternetExplorerModeSiteListSharedCookie" +"GET","/admin/edge/internetExplorerMode/siteLists/{param}/sharedCookies/$count","keep",,"Get-MgAdminEdgeInternetExplorerModeSiteListSharedCookieCount","Get-MgAdminEdgeInternetExplorerModeSiteListSharedCookieCount" +"GET","/admin/edge/internetExplorerMode/siteLists/{param}/sites","keep",,"Get-MgAdminEdgeInternetExplorerModeSiteListSite","Get-MgAdminEdgeInternetExplorerModeSiteListSite" +"GET","/admin/edge/internetExplorerMode/siteLists/{param}/sites/{param}","keep",,"Get-MgAdminEdgeInternetExplorerModeSiteListSite","Get-MgAdminEdgeInternetExplorerModeSiteListSite" +"GET","/admin/edge/internetExplorerMode/siteLists/{param}/sites/$count","keep",,"Get-MgAdminEdgeInternetExplorerModeSiteListSiteCount","Get-MgAdminEdgeInternetExplorerModeSiteListSiteCount" +"GET","/admin/edge/internetExplorerMode/siteLists/$count","keep",,"Get-MgAdminEdgeInternetExplorerModeSiteListCount","Get-MgAdminEdgeInternetExplorerModeSiteListCount" +"GET","/admin/people","keep",,"Get-MgAdminPeople","Get-MgAdminPeople" +"GET","/admin/people/itemInsights","keep",,"Get-MgAdminPeopleItemInsight","Get-MgAdminPeopleItemInsight" +"GET","/admin/people/profileCardProperties","keep",,"Get-MgAdminPeopleProfileCardProperty","Get-MgAdminPeopleProfileCardProperty" +"GET","/admin/people/profileCardProperties/{param}","keep",,"Get-MgAdminPeopleProfileCardProperty","Get-MgAdminPeopleProfileCardProperty" +"GET","/admin/people/profileCardProperties/$count","rename","AdminPeopleProfileCardPropertyCount","Get-MgAdminPersonProfileCardPropertyCount","Get-MgAdminPeopleProfileCardPropertyCount" +"GET","/admin/people/profilePropertySettings","keep",,"Get-MgAdminPeopleProfilePropertySetting","Get-MgAdminPeopleProfilePropertySetting" +"GET","/admin/people/profilePropertySettings/{param}","keep",,"Get-MgAdminPeopleProfilePropertySetting","Get-MgAdminPeopleProfilePropertySetting" +"GET","/admin/people/profilePropertySettings/$count","rename","AdminPeopleProfilePropertySettingCount","Get-MgAdminPersonProfilePropertySettingCount","Get-MgAdminPeopleProfilePropertySettingCount" +"GET","/admin/people/profileSources","keep",,"Get-MgAdminPeopleProfileSource","Get-MgAdminPeopleProfileSource" +"GET","/admin/people/profileSources/{param}","keep",,"Get-MgAdminPeopleProfileSource","Get-MgAdminPeopleProfileSource" +"GET","/admin/people/profileSources/$count","rename","AdminPeopleProfileSourceCount","Get-MgAdminPersonProfileSourceCount","Get-MgAdminPeopleProfileSourceCount" +"GET","/admin/people/pronouns","keep",,"Get-MgAdminPeoplePronoun","Get-MgAdminPeoplePronoun" +"GET","/admin/reportSettings","keep",,"Get-MgAdminReportSetting","Get-MgAdminReportSetting" +"GET","/admin/serviceAnnouncement","suppress",,"Get-MgAdminServiceAnnouncement","no oracle row for GET /admin/serviceAnnouncement and 'Get-MgAdminServiceAnnouncement' unshipped" +"GET","/admin/serviceAnnouncement/healthOverviews","rename","ServiceAnnouncementHealthOverview","Get-MgAdminServiceAnnouncementHealthOverview","Get-MgServiceAnnouncementHealthOverview" +"GET","/admin/serviceAnnouncement/healthOverviews/{param}","rename","ServiceAnnouncementHealthOverview","Get-MgAdminServiceAnnouncementHealthOverview","Get-MgServiceAnnouncementHealthOverview" +"GET","/admin/serviceAnnouncement/healthOverviews/{param}/issues","rename","ServiceAnnouncementHealthOverviewIssue","Get-MgAdminServiceAnnouncementHealthOverviewIssue","Get-MgServiceAnnouncementHealthOverviewIssue" +"GET","/admin/serviceAnnouncement/healthOverviews/{param}/issues/{param}","rename","ServiceAnnouncementHealthOverviewIssue","Get-MgAdminServiceAnnouncementHealthOverviewIssue","Get-MgServiceAnnouncementHealthOverviewIssue" +"GET","/admin/serviceAnnouncement/healthOverviews/{param}/issues/{param}/incidentReport","rename","ReportServiceAnnouncementHealthOverviewIssueIncident","Get-MgAdminServiceAnnouncementHealthOverviewIssueIncidentReport","Invoke-MgReportServiceAnnouncementHealthOverviewIssueIncident" +"GET","/admin/serviceAnnouncement/healthOverviews/{param}/issues/$count","rename","ServiceAnnouncementHealthOverviewIssueCount","Get-MgAdminServiceAnnouncementHealthOverviewIssueCount","Get-MgServiceAnnouncementHealthOverviewIssueCount" +"GET","/admin/serviceAnnouncement/healthOverviews/$count","rename","ServiceAnnouncementHealthOverviewCount","Get-MgAdminServiceAnnouncementHealthOverviewCount","Get-MgServiceAnnouncementHealthOverviewCount" +"GET","/admin/serviceAnnouncement/issues","rename","ServiceAnnouncementIssue","Get-MgAdminServiceAnnouncementIssue","Get-MgServiceAnnouncementIssue" +"GET","/admin/serviceAnnouncement/issues/{param}","rename","ServiceAnnouncementIssue","Get-MgAdminServiceAnnouncementIssue","Get-MgServiceAnnouncementIssue" +"GET","/admin/serviceAnnouncement/issues/{param}/incidentReport","rename","ReportServiceAnnouncementIssueIncident","Get-MgAdminServiceAnnouncementIssueIncidentReport","Invoke-MgReportServiceAnnouncementIssueIncident" +"GET","/admin/serviceAnnouncement/issues/$count","rename","ServiceAnnouncementIssueCount","Get-MgAdminServiceAnnouncementIssueCount","Get-MgServiceAnnouncementIssueCount" +"GET","/admin/serviceAnnouncement/messages","rename","ServiceAnnouncementMessage","Get-MgAdminServiceAnnouncementMessage","Get-MgServiceAnnouncementMessage" +"GET","/admin/serviceAnnouncement/messages/{param}","rename","ServiceAnnouncementMessage","Get-MgAdminServiceAnnouncementMessage","Get-MgServiceAnnouncementMessage" +"GET","/admin/serviceAnnouncement/messages/{param}/attachments","rename","ServiceAnnouncementMessageAttachment","Get-MgAdminServiceAnnouncementMessageAttachment","Get-MgServiceAnnouncementMessageAttachment" +"GET","/admin/serviceAnnouncement/messages/{param}/attachments/{param}","rename","ServiceAnnouncementMessageAttachment","Get-MgAdminServiceAnnouncementMessageAttachment","Get-MgServiceAnnouncementMessageAttachment" +"GET","/admin/serviceAnnouncement/messages/{param}/attachments/$count","rename","ServiceAnnouncementMessageAttachmentCount","Get-MgAdminServiceAnnouncementMessageAttachmentCount","Get-MgServiceAnnouncementMessageAttachmentCount" +"GET","/admin/serviceAnnouncement/messages/$count","rename","ServiceAnnouncementMessageCount","Get-MgAdminServiceAnnouncementMessageCount","Get-MgServiceAnnouncementMessageCount" +"GET","/admin/sharepoint","keep",,"Get-MgAdminSharepoint","Get-MgAdminSharepoint" +"GET","/admin/sharepoint/settings","keep",,"Get-MgAdminSharepointSetting","Get-MgAdminSharepointSetting" +"GET","/agreements","keep",,"Get-MgAgreement","Get-MgAgreement" +"GET","/agreements/{param}","keep",,"Get-MgAgreement","Get-MgAgreement" +"GET","/agreements/{param}/acceptances","keep",,"Get-MgAgreementAcceptance","Get-MgAgreementAcceptance" +"GET","/agreements/{param}/acceptances/{param}","keep",,"Get-MgAgreementAcceptance","Get-MgAgreementAcceptance" +"GET","/agreements/{param}/acceptances/$count","keep",,"Get-MgAgreementAcceptanceCount","Get-MgAgreementAcceptanceCount" +"GET","/agreements/{param}/file/localizations","keep",,"Get-MgAgreementFileLocalization","Get-MgAgreementFileLocalization" +"GET","/agreements/{param}/file/localizations/{param}","keep",,"Get-MgAgreementFileLocalization","Get-MgAgreementFileLocalization" +"GET","/agreements/{param}/file/localizations/{param}/versions","keep",,"Get-MgAgreementFileLocalizationVersion","Get-MgAgreementFileLocalizationVersion" +"GET","/agreements/{param}/file/localizations/{param}/versions/{param}","keep",,"Get-MgAgreementFileLocalizationVersion","Get-MgAgreementFileLocalizationVersion" +"GET","/agreements/{param}/file/localizations/{param}/versions/$count","keep",,"Get-MgAgreementFileLocalizationVersionCount","Get-MgAgreementFileLocalizationVersionCount" +"GET","/agreements/{param}/file/localizations/$count","keep",,"Get-MgAgreementFileLocalizationCount","Get-MgAgreementFileLocalizationCount" +"GET","/agreements/{param}/files","keep",,"Get-MgAgreementFile","Get-MgAgreementFile" +"GET","/agreements/{param}/files/{param}/versions","keep",,"Get-MgAgreementFileVersion","Get-MgAgreementFileVersion" +"GET","/agreements/{param}/files/{param}/versions/{param}","keep",,"Get-MgAgreementFileVersion","Get-MgAgreementFileVersion" +"GET","/agreements/{param}/files/{param}/versions/$count","keep",,"Get-MgAgreementFileVersionCount","Get-MgAgreementFileVersionCount" +"GET","/agreements/{param}/files/$count","keep",,"Get-MgAgreementFileCount","Get-MgAgreementFileCount" +"GET","/appCatalogs/teamsApps","keep",,"Get-MgAppCatalogTeamApp","Get-MgAppCatalogTeamApp" +"GET","/appCatalogs/teamsApps/{param}","keep",,"Get-MgAppCatalogTeamApp","Get-MgAppCatalogTeamApp" +"GET","/appCatalogs/teamsApps/{param}/appDefinitions","keep",,"Get-MgAppCatalogTeamAppDefinition","Get-MgAppCatalogTeamAppDefinition" +"GET","/appCatalogs/teamsApps/{param}/appDefinitions/{param}","keep",,"Get-MgAppCatalogTeamAppDefinition","Get-MgAppCatalogTeamAppDefinition" +"GET","/appCatalogs/teamsApps/{param}/appDefinitions/{param}/bot","keep",,"Get-MgAppCatalogTeamAppDefinitionBot","Get-MgAppCatalogTeamAppDefinitionBot" +"GET","/appCatalogs/teamsApps/{param}/appDefinitions/$count","keep",,"Get-MgAppCatalogTeamAppDefinitionCount","Get-MgAppCatalogTeamAppDefinitionCount" +"GET","/appCatalogs/teamsApps/$count","keep",,"Get-MgAppCatalogTeamAppCount","Get-MgAppCatalogTeamAppCount" +"GET","/applications","keep",,"Get-MgApplication","Get-MgApplication" +"GET","/applications/{param}","keep",,"Get-MgApplication","Get-MgApplication" +"GET","/applications/{param}/appManagementPolicies","keep",,"Get-MgApplicationAppManagementPolicy","Get-MgApplicationAppManagementPolicy" +"GET","/applications/{param}/appManagementPolicies/$count","keep",,"Get-MgApplicationAppManagementPolicyCount","Get-MgApplicationAppManagementPolicyCount" +"GET","/applications/{param}/appManagementPolicies/$ref","keep",,"Get-MgApplicationAppManagementPolicyByRef","Get-MgApplicationAppManagementPolicyByRef" +"GET","/applications/{param}/createdOnBehalfOf","keep",,"Get-MgApplicationCreatedOnBehalfOf","Get-MgApplicationCreatedOnBehalfOf" +"GET","/applications/{param}/extensionProperties","keep",,"Get-MgApplicationExtensionProperty","Get-MgApplicationExtensionProperty" +"GET","/applications/{param}/extensionProperties/{param}","keep",,"Get-MgApplicationExtensionProperty","Get-MgApplicationExtensionProperty" +"GET","/applications/{param}/extensionProperties/$count","keep",,"Get-MgApplicationExtensionPropertyCount","Get-MgApplicationExtensionPropertyCount" +"GET","/applications/{param}/federatedIdentityCredentials","keep",,"Get-MgApplicationFederatedIdentityCredential","Get-MgApplicationFederatedIdentityCredential" +"GET","/applications/{param}/federatedIdentityCredentials/{param}","keep",,"Get-MgApplicationFederatedIdentityCredential","Get-MgApplicationFederatedIdentityCredential" +"GET","/applications/{param}/federatedIdentityCredentials/$count","keep",,"Get-MgApplicationFederatedIdentityCredentialCount","Get-MgApplicationFederatedIdentityCredentialCount" +"GET","/applications/{param}/homeRealmDiscoveryPolicies","keep",,"Get-MgApplicationHomeRealmDiscoveryPolicy","Get-MgApplicationHomeRealmDiscoveryPolicy" +"GET","/applications/{param}/homeRealmDiscoveryPolicies/{param}","keep",,"Get-MgApplicationHomeRealmDiscoveryPolicy","Get-MgApplicationHomeRealmDiscoveryPolicy" +"GET","/applications/{param}/homeRealmDiscoveryPolicies/$count","keep",,"Get-MgApplicationHomeRealmDiscoveryPolicyCount","Get-MgApplicationHomeRealmDiscoveryPolicyCount" +"GET","/applications/{param}/owners","keep",,"Get-MgApplicationOwner","Get-MgApplicationOwner" +"GET","/applications/{param}/owners/$count","keep",,"Get-MgApplicationOwnerCount","Get-MgApplicationOwnerCount" +"GET","/applications/{param}/owners/$ref","keep",,"Get-MgApplicationOwnerByRef","Get-MgApplicationOwnerByRef" +"GET","/applications/{param}/synchronization","keep",,"Get-MgApplicationSynchronization","Get-MgApplicationSynchronization" +"GET","/applications/{param}/synchronization/jobs","keep",,"Get-MgApplicationSynchronizationJob","Get-MgApplicationSynchronizationJob" +"GET","/applications/{param}/synchronization/jobs/{param}","keep",,"Get-MgApplicationSynchronizationJob","Get-MgApplicationSynchronizationJob" +"GET","/applications/{param}/synchronization/jobs/{param}/bulkUpload","keep",,"Get-MgApplicationSynchronizationJobBulkUpload","Get-MgApplicationSynchronizationJobBulkUpload" +"GET","/applications/{param}/synchronization/jobs/{param}/bulkUpload/$value","keep",,"Get-MgApplicationSynchronizationJobBulkUploadContent","Get-MgApplicationSynchronizationJobBulkUploadContent" +"GET","/applications/{param}/synchronization/jobs/{param}/schema","keep",,"Get-MgApplicationSynchronizationJobSchema","Get-MgApplicationSynchronizationJobSchema" +"GET","/applications/{param}/synchronization/jobs/{param}/schema/directories","keep",,"Get-MgApplicationSynchronizationJobSchemaDirectory","Get-MgApplicationSynchronizationJobSchemaDirectory" +"GET","/applications/{param}/synchronization/jobs/{param}/schema/directories/{param}","keep",,"Get-MgApplicationSynchronizationJobSchemaDirectory","Get-MgApplicationSynchronizationJobSchemaDirectory" +"GET","/applications/{param}/synchronization/jobs/{param}/schema/directories/$count","keep",,"Get-MgApplicationSynchronizationJobSchemaDirectoryCount","Get-MgApplicationSynchronizationJobSchemaDirectoryCount" +"GET","/applications/{param}/synchronization/jobs/{param}/schema/filterOperators","rename","FilterApplicationSynchronizationJobSchemaOperator","Get-MgApplicationSynchronizationJobSchemaFilterOperators","Invoke-MgFilterApplicationSynchronizationJobSchemaOperator" +"GET","/applications/{param}/synchronization/jobs/{param}/schema/functions","rename","FunctionApplicationSynchronizationJobSchema","Get-MgApplicationSynchronizationJobSchemaFunctions","Invoke-MgFunctionApplicationSynchronizationJobSchema" +"GET","/applications/{param}/synchronization/jobs/$count","keep",,"Get-MgApplicationSynchronizationJobCount","Get-MgApplicationSynchronizationJobCount" +"GET","/applications/{param}/synchronization/secrets/$count","keep",,"Get-MgApplicationSynchronizationSecretCount","Get-MgApplicationSynchronizationSecretCount" +"GET","/applications/{param}/synchronization/templates","keep",,"Get-MgApplicationSynchronizationTemplate","Get-MgApplicationSynchronizationTemplate" +"GET","/applications/{param}/synchronization/templates/{param}","keep",,"Get-MgApplicationSynchronizationTemplate","Get-MgApplicationSynchronizationTemplate" +"GET","/applications/{param}/synchronization/templates/{param}/schema","keep",,"Get-MgApplicationSynchronizationTemplateSchema","Get-MgApplicationSynchronizationTemplateSchema" +"GET","/applications/{param}/synchronization/templates/{param}/schema/directories","keep",,"Get-MgApplicationSynchronizationTemplateSchemaDirectory","Get-MgApplicationSynchronizationTemplateSchemaDirectory" +"GET","/applications/{param}/synchronization/templates/{param}/schema/directories/{param}","keep",,"Get-MgApplicationSynchronizationTemplateSchemaDirectory","Get-MgApplicationSynchronizationTemplateSchemaDirectory" +"GET","/applications/{param}/synchronization/templates/{param}/schema/directories/$count","keep",,"Get-MgApplicationSynchronizationTemplateSchemaDirectoryCount","Get-MgApplicationSynchronizationTemplateSchemaDirectoryCount" +"GET","/applications/{param}/synchronization/templates/{param}/schema/filterOperators","rename","FilterApplicationSynchronizationTemplateSchemaOperator","Get-MgApplicationSynchronizationTemplateSchemaFilterOperators","Invoke-MgFilterApplicationSynchronizationTemplateSchemaOperator" +"GET","/applications/{param}/synchronization/templates/{param}/schema/functions","rename","FunctionApplicationSynchronizationTemplateSchema","Get-MgApplicationSynchronizationTemplateSchemaFunctions","Invoke-MgFunctionApplicationSynchronizationTemplateSchema" +"GET","/applications/{param}/synchronization/templates/$count","keep",,"Get-MgApplicationSynchronizationTemplateCount","Get-MgApplicationSynchronizationTemplateCount" +"GET","/applications/{param}/tokenIssuancePolicies","keep",,"Get-MgApplicationTokenIssuancePolicy","Get-MgApplicationTokenIssuancePolicy" +"GET","/applications/{param}/tokenIssuancePolicies/$count","keep",,"Get-MgApplicationTokenIssuancePolicyCount","Get-MgApplicationTokenIssuancePolicyCount" +"GET","/applications/{param}/tokenIssuancePolicies/$ref","keep",,"Get-MgApplicationTokenIssuancePolicyByRef","Get-MgApplicationTokenIssuancePolicyByRef" +"GET","/applications/{param}/tokenLifetimePolicies","keep",,"Get-MgApplicationTokenLifetimePolicy","Get-MgApplicationTokenLifetimePolicy" +"GET","/applications/{param}/tokenLifetimePolicies/$count","keep",,"Get-MgApplicationTokenLifetimePolicyCount","Get-MgApplicationTokenLifetimePolicyCount" +"GET","/applications/{param}/tokenLifetimePolicies/$ref","keep",,"Get-MgApplicationTokenLifetimePolicyByRef","Get-MgApplicationTokenLifetimePolicyByRef" +"GET","/applications/$count","keep",,"Get-MgApplicationCount","Get-MgApplicationCount" +"GET","/applications/delta","keep",,"Get-MgApplicationDelta","Get-MgApplicationDelta" +"GET","/applicationTemplates","keep",,"Get-MgApplicationTemplate","Get-MgApplicationTemplate" +"GET","/applicationTemplates/{param}","keep",,"Get-MgApplicationTemplate","Get-MgApplicationTemplate" +"GET","/applicationTemplates/$count","keep",,"Get-MgApplicationTemplateCount","Get-MgApplicationTemplateCount" +"GET","/auditLogs","suppress",,"Get-MgAuditLog","no oracle row for GET /auditLogs and 'Get-MgAuditLog' unshipped" +"GET","/auditLogs/directoryAudits","keep",,"Get-MgAuditLogDirectoryAudit","Get-MgAuditLogDirectoryAudit" +"GET","/auditLogs/directoryAudits/{param}","keep",,"Get-MgAuditLogDirectoryAudit","Get-MgAuditLogDirectoryAudit" +"GET","/auditLogs/directoryAudits/$count","keep",,"Get-MgAuditLogDirectoryAuditCount","Get-MgAuditLogDirectoryAuditCount" +"GET","/auditLogs/provisioning","keep",,"Get-MgAuditLogProvisioning","Get-MgAuditLogProvisioning" +"GET","/auditLogs/provisioning/{param}","keep",,"Get-MgAuditLogProvisioning","Get-MgAuditLogProvisioning" +"GET","/auditLogs/provisioning/$count","keep",,"Get-MgAuditLogProvisioningCount","Get-MgAuditLogProvisioningCount" +"GET","/auditLogs/signIns","keep",,"Get-MgAuditLogSignIn","Get-MgAuditLogSignIn" +"GET","/auditLogs/signIns/{param}","keep",,"Get-MgAuditLogSignIn","Get-MgAuditLogSignIn" +"GET","/auditLogs/signIns/$count","keep",,"Get-MgAuditLogSignInCount","Get-MgAuditLogSignInCount" +"GET","/chats","keep",,"Get-MgChat","Get-MgChat" +"GET","/chats/{param}","keep",,"Get-MgChat","Get-MgChat" +"GET","/chats/{param}/installedApps","keep",,"Get-MgChatInstalledApp","Get-MgChatInstalledApp" +"GET","/chats/{param}/installedApps/{param}","keep",,"Get-MgChatInstalledApp","Get-MgChatInstalledApp" +"GET","/chats/{param}/installedApps/{param}/teamsApp","keep",,"Get-MgChatInstalledAppTeamApp","Get-MgChatInstalledAppTeamApp" +"GET","/chats/{param}/installedApps/{param}/teamsAppDefinition","keep",,"Get-MgChatInstalledAppTeamAppDefinition","Get-MgChatInstalledAppTeamAppDefinition" +"GET","/chats/{param}/installedApps/$count","keep",,"Get-MgChatInstalledAppCount","Get-MgChatInstalledAppCount" +"GET","/chats/{param}/lastMessagePreview","keep",,"Get-MgChatLastMessagePreview","Get-MgChatLastMessagePreview" +"GET","/chats/{param}/members","keep",,"Get-MgChatMember","Get-MgChatMember" +"GET","/chats/{param}/members/{param}","keep",,"Get-MgChatMember","Get-MgChatMember" +"GET","/chats/{param}/members/$count","keep",,"Get-MgChatMemberCount","Get-MgChatMemberCount" +"GET","/chats/{param}/messages","keep",,"Get-MgChatMessage","Get-MgChatMessage" +"GET","/chats/{param}/messages/{param}","keep",,"Get-MgChatMessage","Get-MgChatMessage" +"GET","/chats/{param}/messages/{param}/hostedContents","keep",,"Get-MgChatMessageHostedContent","Get-MgChatMessageHostedContent" +"GET","/chats/{param}/messages/{param}/hostedContents/{param}","keep",,"Get-MgChatMessageHostedContent","Get-MgChatMessageHostedContent" +"GET","/chats/{param}/messages/{param}/hostedContents/{param}/$value","suppress",,"Get-MgChatMessageHostedContentContent","no oracle row for GET /chats/{param}/messages/{param}/hostedContents/{param}/$value and 'Get-MgChatMessageHostedContentContent' unshipped" +"GET","/chats/{param}/messages/{param}/hostedContents/$count","keep",,"Get-MgChatMessageHostedContentCount","Get-MgChatMessageHostedContentCount" +"GET","/chats/{param}/messages/{param}/replies","keep",,"Get-MgChatMessageReply","Get-MgChatMessageReply" +"GET","/chats/{param}/messages/{param}/replies/{param}","keep",,"Get-MgChatMessageReply","Get-MgChatMessageReply" +"GET","/chats/{param}/messages/{param}/replies/{param}/hostedContents","keep",,"Get-MgChatMessageReplyHostedContent","Get-MgChatMessageReplyHostedContent" +"GET","/chats/{param}/messages/{param}/replies/{param}/hostedContents/{param}","keep",,"Get-MgChatMessageReplyHostedContent","Get-MgChatMessageReplyHostedContent" +"GET","/chats/{param}/messages/{param}/replies/{param}/hostedContents/{param}/$value","suppress",,"Get-MgChatMessageReplyHostedContentContent","no oracle row for GET /chats/{param}/messages/{param}/replies/{param}/hostedContents/{param}/$value and 'Get-MgChatMessageReplyHostedContentContent' unshipped" +"GET","/chats/{param}/messages/{param}/replies/{param}/hostedContents/$count","keep",,"Get-MgChatMessageReplyHostedContentCount","Get-MgChatMessageReplyHostedContentCount" +"GET","/chats/{param}/messages/{param}/replies/$count","keep",,"Get-MgChatMessageReplyCount","Get-MgChatMessageReplyCount" +"GET","/chats/{param}/messages/{param}/replies/delta","keep",,"Get-MgChatMessageReplyDelta","Get-MgChatMessageReplyDelta" +"GET","/chats/{param}/messages/$count","keep",,"Get-MgChatMessageCount","Get-MgChatMessageCount" +"GET","/chats/{param}/messages/delta","keep",,"Get-MgChatMessageDelta","Get-MgChatMessageDelta" +"GET","/chats/{param}/permissionGrants","keep",,"Get-MgChatPermissionGrant","Get-MgChatPermissionGrant" +"GET","/chats/{param}/permissionGrants/{param}","keep",,"Get-MgChatPermissionGrant","Get-MgChatPermissionGrant" +"GET","/chats/{param}/permissionGrants/$count","keep",,"Get-MgChatPermissionGrantCount","Get-MgChatPermissionGrantCount" +"GET","/chats/{param}/pinnedMessages","keep",,"Get-MgChatPinnedMessage","Get-MgChatPinnedMessage" +"GET","/chats/{param}/pinnedMessages/{param}","keep",,"Get-MgChatPinnedMessage","Get-MgChatPinnedMessage" +"GET","/chats/{param}/pinnedMessages/$count","keep",,"Get-MgChatPinnedMessageCount","Get-MgChatPinnedMessageCount" +"GET","/chats/{param}/tabs","keep",,"Get-MgChatTab","Get-MgChatTab" +"GET","/chats/{param}/tabs/{param}","keep",,"Get-MgChatTab","Get-MgChatTab" +"GET","/chats/{param}/tabs/{param}/teamsApp","keep",,"Get-MgChatTabTeamApp","Get-MgChatTabTeamApp" +"GET","/chats/{param}/tabs/$count","keep",,"Get-MgChatTabCount","Get-MgChatTabCount" +"GET","/chats/{param}/targetedMessages","keep",,"Get-MgChatTargetedMessage","Get-MgChatTargetedMessage" +"GET","/chats/{param}/targetedMessages/{param}","keep",,"Get-MgChatTargetedMessage","Get-MgChatTargetedMessage" +"GET","/chats/{param}/targetedMessages/{param}/hostedContents","keep",,"Get-MgChatTargetedMessageHostedContent","Get-MgChatTargetedMessageHostedContent" +"GET","/chats/{param}/targetedMessages/{param}/hostedContents/{param}","keep",,"Get-MgChatTargetedMessageHostedContent","Get-MgChatTargetedMessageHostedContent" +"GET","/chats/{param}/targetedMessages/{param}/hostedContents/{param}/$value","suppress",,"Get-MgChatTargetedMessageHostedContentContent","no oracle row for GET /chats/{param}/targetedMessages/{param}/hostedContents/{param}/$value and 'Get-MgChatTargetedMessageHostedContentContent' unshipped" +"GET","/chats/{param}/targetedMessages/{param}/hostedContents/$count","keep",,"Get-MgChatTargetedMessageHostedContentCount","Get-MgChatTargetedMessageHostedContentCount" +"GET","/chats/{param}/targetedMessages/{param}/replies","keep",,"Get-MgChatTargetedMessageReply","Get-MgChatTargetedMessageReply" +"GET","/chats/{param}/targetedMessages/{param}/replies/{param}","keep",,"Get-MgChatTargetedMessageReply","Get-MgChatTargetedMessageReply" +"GET","/chats/{param}/targetedMessages/{param}/replies/{param}/hostedContents","keep",,"Get-MgChatTargetedMessageReplyHostedContent","Get-MgChatTargetedMessageReplyHostedContent" +"GET","/chats/{param}/targetedMessages/{param}/replies/{param}/hostedContents/{param}","keep",,"Get-MgChatTargetedMessageReplyHostedContent","Get-MgChatTargetedMessageReplyHostedContent" +"GET","/chats/{param}/targetedMessages/{param}/replies/{param}/hostedContents/{param}/$value","suppress",,"Get-MgChatTargetedMessageReplyHostedContentContent","no oracle row for GET /chats/{param}/targetedMessages/{param}/replies/{param}/hostedContents/{param}/$value and 'Get-MgChatTargetedMessageReplyHostedContentContent' unshipped" +"GET","/chats/{param}/targetedMessages/{param}/replies/{param}/hostedContents/$count","keep",,"Get-MgChatTargetedMessageReplyHostedContentCount","Get-MgChatTargetedMessageReplyHostedContentCount" +"GET","/chats/{param}/targetedMessages/{param}/replies/$count","keep",,"Get-MgChatTargetedMessageReplyCount","Get-MgChatTargetedMessageReplyCount" +"GET","/chats/{param}/targetedMessages/{param}/replies/delta","keep",,"Get-MgChatTargetedMessageReplyDelta","Get-MgChatTargetedMessageReplyDelta" +"GET","/chats/{param}/targetedMessages/$count","keep",,"Get-MgChatTargetedMessageCount","Get-MgChatTargetedMessageCount" +"GET","/chats/$count","keep",,"Get-MgChatCount","Get-MgChatCount" +"GET","/chats/getAllMessages","suppress",,"Get-MgChatGetAllMessages","no oracle row for GET /chats/getAllMessages and 'Get-MgChatGetAllMessages' unshipped" +"GET","/chats/getAllRetainedMessages","rename","ChatRetainedMessage","Get-MgChatGetAllRetainedMessages","Get-MgChatRetainedMessage" +"GET","/communications","suppress",,"Get-MgCommunication","no oracle row for GET /communications and 'Get-MgCommunication' unshipped" +"GET","/communications/adhocCalls","keep",,"Get-MgCommunicationAdhocCall","Get-MgCommunicationAdhocCall" +"GET","/communications/adhocCalls/{param}","keep",,"Get-MgCommunicationAdhocCall","Get-MgCommunicationAdhocCall" +"GET","/communications/adhocCalls/{param}/recordings","keep",,"Get-MgCommunicationAdhocCallRecording","Get-MgCommunicationAdhocCallRecording" +"GET","/communications/adhocCalls/{param}/recordings/{param}","keep",,"Get-MgCommunicationAdhocCallRecording","Get-MgCommunicationAdhocCallRecording" +"GET","/communications/adhocCalls/{param}/recordings/$count","keep",,"Get-MgCommunicationAdhocCallRecordingCount","Get-MgCommunicationAdhocCallRecordingCount" +"GET","/communications/adhocCalls/{param}/recordings/delta","keep",,"Get-MgCommunicationAdhocCallRecordingDelta","Get-MgCommunicationAdhocCallRecordingDelta" +"GET","/communications/adhocCalls/{param}/transcripts","keep",,"Get-MgCommunicationAdhocCallTranscript","Get-MgCommunicationAdhocCallTranscript" +"GET","/communications/adhocCalls/{param}/transcripts/{param}","keep",,"Get-MgCommunicationAdhocCallTranscript","Get-MgCommunicationAdhocCallTranscript" +"GET","/communications/adhocCalls/{param}/transcripts/$count","keep",,"Get-MgCommunicationAdhocCallTranscriptCount","Get-MgCommunicationAdhocCallTranscriptCount" +"GET","/communications/adhocCalls/{param}/transcripts/delta","keep",,"Get-MgCommunicationAdhocCallTranscriptDelta","Get-MgCommunicationAdhocCallTranscriptDelta" +"GET","/communications/adhocCalls/$count","keep",,"Get-MgCommunicationAdhocCallCount","Get-MgCommunicationAdhocCallCount" +"GET","/communications/callRecords","defer-crosspath",,"Get-MgCommunicationCallRecord","Get-MgCommunicationCallRecord ships from a different uri" +"GET","/communications/callRecords/{param}","keep",,"Get-MgCommunicationCallRecord","Get-MgCommunicationCallRecord" +"GET","/communications/callRecords/{param}/sessions","keep",,"Get-MgCommunicationCallRecordSession","Get-MgCommunicationCallRecordSession" +"GET","/communications/callRecords/{param}/sessions/{param}","keep",,"Get-MgCommunicationCallRecordSession","Get-MgCommunicationCallRecordSession" +"GET","/communications/callRecords/{param}/sessions/{param}/segments","suppress",,"Get-MgCommunicationCallRecordSessionSegment","no oracle row for GET /communications/callRecords/{param}/sessions/{param}/segments and 'Get-MgCommunicationCallRecordSessionSegment' unshipped" +"GET","/communications/callRecords/{param}/sessions/{param}/segments/{param}","suppress",,"Get-MgCommunicationCallRecordSessionSegment","no oracle row for GET /communications/callRecords/{param}/sessions/{param}/segments/{param} and 'Get-MgCommunicationCallRecordSessionSegment' unshipped" +"GET","/communications/callRecords/{param}/sessions/{param}/segments/$count","keep",,"Get-MgCommunicationCallRecordSessionSegmentCount","Get-MgCommunicationCallRecordSessionSegmentCount" +"GET","/communications/callRecords/{param}/sessions/$count","keep",,"Get-MgCommunicationCallRecordSessionCount","Get-MgCommunicationCallRecordSessionCount" +"GET","/communications/callRecords/$count","keep",,"Get-MgCommunicationCallRecordCount","Get-MgCommunicationCallRecordCount" +"GET","/communications/calls","defer-crosspath",,"Get-MgCommunicationCall","Get-MgCommunicationCall ships from a different uri" +"GET","/communications/calls/{param}","keep",,"Get-MgCommunicationCall","Get-MgCommunicationCall" +"GET","/communications/calls/{param}/audioRoutingGroups","keep",,"Get-MgCommunicationCallAudioRoutingGroup","Get-MgCommunicationCallAudioRoutingGroup" +"GET","/communications/calls/{param}/audioRoutingGroups/{param}","keep",,"Get-MgCommunicationCallAudioRoutingGroup","Get-MgCommunicationCallAudioRoutingGroup" +"GET","/communications/calls/{param}/audioRoutingGroups/$count","keep",,"Get-MgCommunicationCallAudioRoutingGroupCount","Get-MgCommunicationCallAudioRoutingGroupCount" +"GET","/communications/calls/{param}/contentSharingSessions","keep",,"Get-MgCommunicationCallContentSharingSession","Get-MgCommunicationCallContentSharingSession" +"GET","/communications/calls/{param}/contentSharingSessions/{param}","keep",,"Get-MgCommunicationCallContentSharingSession","Get-MgCommunicationCallContentSharingSession" +"GET","/communications/calls/{param}/contentSharingSessions/$count","keep",,"Get-MgCommunicationCallContentSharingSessionCount","Get-MgCommunicationCallContentSharingSessionCount" +"GET","/communications/calls/{param}/operations","keep",,"Get-MgCommunicationCallOperation","Get-MgCommunicationCallOperation" +"GET","/communications/calls/{param}/operations/{param}","keep",,"Get-MgCommunicationCallOperation","Get-MgCommunicationCallOperation" +"GET","/communications/calls/{param}/operations/$count","keep",,"Get-MgCommunicationCallOperationCount","Get-MgCommunicationCallOperationCount" +"GET","/communications/calls/{param}/participants","keep",,"Get-MgCommunicationCallParticipant","Get-MgCommunicationCallParticipant" +"GET","/communications/calls/{param}/participants/{param}","keep",,"Get-MgCommunicationCallParticipant","Get-MgCommunicationCallParticipant" +"GET","/communications/calls/{param}/participants/$count","keep",,"Get-MgCommunicationCallParticipantCount","Get-MgCommunicationCallParticipantCount" +"GET","/communications/calls/$count","keep",,"Get-MgCommunicationCallCount","Get-MgCommunicationCallCount" +"GET","/communications/getAllOnlineMeetingMessages","rename","CommunicationOnlineMeetingMessage","Get-MgCommunicationGetAllOnlineMeetingMessages","Get-MgCommunicationOnlineMeetingMessage" +"GET","/communications/onlineMeetingConversations","keep",,"Get-MgCommunicationOnlineMeetingConversation","Get-MgCommunicationOnlineMeetingConversation" +"GET","/communications/onlineMeetingConversations/{param}","keep",,"Get-MgCommunicationOnlineMeetingConversation","Get-MgCommunicationOnlineMeetingConversation" +"GET","/communications/onlineMeetingConversations/{param}/messages","keep",,"Get-MgCommunicationOnlineMeetingConversationMessage","Get-MgCommunicationOnlineMeetingConversationMessage" +"GET","/communications/onlineMeetingConversations/{param}/messages/{param}","keep",,"Get-MgCommunicationOnlineMeetingConversationMessage","Get-MgCommunicationOnlineMeetingConversationMessage" +"GET","/communications/onlineMeetingConversations/{param}/messages/{param}/conversation","keep",,"Get-MgCommunicationOnlineMeetingConversationMessageConversation","Get-MgCommunicationOnlineMeetingConversationMessageConversation" +"GET","/communications/onlineMeetingConversations/{param}/messages/{param}/reactions","keep",,"Get-MgCommunicationOnlineMeetingConversationMessageReaction","Get-MgCommunicationOnlineMeetingConversationMessageReaction" +"GET","/communications/onlineMeetingConversations/{param}/messages/{param}/reactions/{param}","keep",,"Get-MgCommunicationOnlineMeetingConversationMessageReaction","Get-MgCommunicationOnlineMeetingConversationMessageReaction" +"GET","/communications/onlineMeetingConversations/{param}/messages/{param}/reactions/$count","keep",,"Get-MgCommunicationOnlineMeetingConversationMessageReactionCount","Get-MgCommunicationOnlineMeetingConversationMessageReactionCount" +"GET","/communications/onlineMeetingConversations/{param}/messages/{param}/replies","keep",,"Get-MgCommunicationOnlineMeetingConversationMessageReply","Get-MgCommunicationOnlineMeetingConversationMessageReply" +"GET","/communications/onlineMeetingConversations/{param}/messages/{param}/replies/{param}","keep",,"Get-MgCommunicationOnlineMeetingConversationMessageReply","Get-MgCommunicationOnlineMeetingConversationMessageReply" +"GET","/communications/onlineMeetingConversations/{param}/messages/{param}/replies/{param}/conversation","keep",,"Get-MgCommunicationOnlineMeetingConversationMessageReplyConversation","Get-MgCommunicationOnlineMeetingConversationMessageReplyConversation" +"GET","/communications/onlineMeetingConversations/{param}/messages/{param}/replies/{param}/reactions","keep",,"Get-MgCommunicationOnlineMeetingConversationMessageReplyReaction","Get-MgCommunicationOnlineMeetingConversationMessageReplyReaction" +"GET","/communications/onlineMeetingConversations/{param}/messages/{param}/replies/{param}/reactions/{param}","keep",,"Get-MgCommunicationOnlineMeetingConversationMessageReplyReaction","Get-MgCommunicationOnlineMeetingConversationMessageReplyReaction" +"GET","/communications/onlineMeetingConversations/{param}/messages/{param}/replies/{param}/reactions/$count","keep",,"Get-MgCommunicationOnlineMeetingConversationMessageReplyReactionCount","Get-MgCommunicationOnlineMeetingConversationMessageReplyReactionCount" +"GET","/communications/onlineMeetingConversations/{param}/messages/{param}/replies/$count","keep",,"Get-MgCommunicationOnlineMeetingConversationMessageReplyCount","Get-MgCommunicationOnlineMeetingConversationMessageReplyCount" +"GET","/communications/onlineMeetingConversations/{param}/messages/{param}/replyTo","keep",,"Get-MgCommunicationOnlineMeetingConversationMessageReplyTo","Get-MgCommunicationOnlineMeetingConversationMessageReplyTo" +"GET","/communications/onlineMeetingConversations/{param}/messages/$count","keep",,"Get-MgCommunicationOnlineMeetingConversationMessageCount","Get-MgCommunicationOnlineMeetingConversationMessageCount" +"GET","/communications/onlineMeetingConversations/{param}/onlineMeeting","keep",,"Get-MgCommunicationOnlineMeetingConversationOnlineMeeting","Get-MgCommunicationOnlineMeetingConversationOnlineMeeting" +"GET","/communications/onlineMeetingConversations/{param}/starter","keep",,"Get-MgCommunicationOnlineMeetingConversationStarter","Get-MgCommunicationOnlineMeetingConversationStarter" +"GET","/communications/onlineMeetingConversations/{param}/starter/conversation","keep",,"Get-MgCommunicationOnlineMeetingConversationStarterConversation","Get-MgCommunicationOnlineMeetingConversationStarterConversation" +"GET","/communications/onlineMeetingConversations/{param}/starter/reactions","keep",,"Get-MgCommunicationOnlineMeetingConversationStarterReaction","Get-MgCommunicationOnlineMeetingConversationStarterReaction" +"GET","/communications/onlineMeetingConversations/{param}/starter/reactions/{param}","keep",,"Get-MgCommunicationOnlineMeetingConversationStarterReaction","Get-MgCommunicationOnlineMeetingConversationStarterReaction" +"GET","/communications/onlineMeetingConversations/{param}/starter/reactions/$count","keep",,"Get-MgCommunicationOnlineMeetingConversationStarterReactionCount","Get-MgCommunicationOnlineMeetingConversationStarterReactionCount" +"GET","/communications/onlineMeetingConversations/{param}/starter/replies","keep",,"Get-MgCommunicationOnlineMeetingConversationStarterReply","Get-MgCommunicationOnlineMeetingConversationStarterReply" +"GET","/communications/onlineMeetingConversations/{param}/starter/replies/{param}","keep",,"Get-MgCommunicationOnlineMeetingConversationStarterReply","Get-MgCommunicationOnlineMeetingConversationStarterReply" +"GET","/communications/onlineMeetingConversations/{param}/starter/replies/{param}/conversation","keep",,"Get-MgCommunicationOnlineMeetingConversationStarterReplyConversation","Get-MgCommunicationOnlineMeetingConversationStarterReplyConversation" +"GET","/communications/onlineMeetingConversations/{param}/starter/replies/{param}/reactions","keep",,"Get-MgCommunicationOnlineMeetingConversationStarterReplyReaction","Get-MgCommunicationOnlineMeetingConversationStarterReplyReaction" +"GET","/communications/onlineMeetingConversations/{param}/starter/replies/{param}/reactions/{param}","keep",,"Get-MgCommunicationOnlineMeetingConversationStarterReplyReaction","Get-MgCommunicationOnlineMeetingConversationStarterReplyReaction" +"GET","/communications/onlineMeetingConversations/{param}/starter/replies/{param}/reactions/$count","keep",,"Get-MgCommunicationOnlineMeetingConversationStarterReplyReactionCount","Get-MgCommunicationOnlineMeetingConversationStarterReplyReactionCount" +"GET","/communications/onlineMeetingConversations/{param}/starter/replies/$count","keep",,"Get-MgCommunicationOnlineMeetingConversationStarterReplyCount","Get-MgCommunicationOnlineMeetingConversationStarterReplyCount" +"GET","/communications/onlineMeetingConversations/{param}/starter/replyTo","keep",,"Get-MgCommunicationOnlineMeetingConversationStarterReplyTo","Get-MgCommunicationOnlineMeetingConversationStarterReplyTo" +"GET","/communications/onlineMeetingConversations/$count","keep",,"Get-MgCommunicationOnlineMeetingConversationCount","Get-MgCommunicationOnlineMeetingConversationCount" +"GET","/communications/onlineMeetings","keep",,"Get-MgCommunicationOnlineMeeting","Get-MgCommunicationOnlineMeeting" +"GET","/communications/onlineMeetings/{param}","keep",,"Get-MgCommunicationOnlineMeeting","Get-MgCommunicationOnlineMeeting" +"GET","/communications/onlineMeetings/{param}/attendanceReports","keep",,"Get-MgCommunicationOnlineMeetingAttendanceReport","Get-MgCommunicationOnlineMeetingAttendanceReport" +"GET","/communications/onlineMeetings/{param}/attendanceReports/{param}","keep",,"Get-MgCommunicationOnlineMeetingAttendanceReport","Get-MgCommunicationOnlineMeetingAttendanceReport" +"GET","/communications/onlineMeetings/{param}/attendanceReports/{param}/attendanceRecords","keep",,"Get-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord","Get-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord" +"GET","/communications/onlineMeetings/{param}/attendanceReports/{param}/attendanceRecords/{param}","keep",,"Get-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord","Get-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord" +"GET","/communications/onlineMeetings/{param}/attendanceReports/{param}/attendanceRecords/$count","keep",,"Get-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecordCount","Get-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecordCount" +"GET","/communications/onlineMeetings/{param}/attendanceReports/$count","keep",,"Get-MgCommunicationOnlineMeetingAttendanceReportCount","Get-MgCommunicationOnlineMeetingAttendanceReportCount" +"GET","/communications/onlineMeetings/{param}/getVirtualAppointmentJoinWebUrl","rename","CommunicationOnlineMeetingVirtualAppointmentJoinWebUrl","Get-MgCommunicationOnlineMeetingGetVirtualAppointmentJoinWebUrl","Get-MgCommunicationOnlineMeetingVirtualAppointmentJoinWebUrl" +"GET","/communications/onlineMeetings/{param}/recordings","keep",,"Get-MgCommunicationOnlineMeetingRecording","Get-MgCommunicationOnlineMeetingRecording" +"GET","/communications/onlineMeetings/{param}/recordings/{param}","keep",,"Get-MgCommunicationOnlineMeetingRecording","Get-MgCommunicationOnlineMeetingRecording" +"GET","/communications/onlineMeetings/{param}/recordings/$count","keep",,"Get-MgCommunicationOnlineMeetingRecordingCount","Get-MgCommunicationOnlineMeetingRecordingCount" +"GET","/communications/onlineMeetings/{param}/recordings/delta","keep",,"Get-MgCommunicationOnlineMeetingRecordingDelta","Get-MgCommunicationOnlineMeetingRecordingDelta" +"GET","/communications/onlineMeetings/{param}/transcripts","keep",,"Get-MgCommunicationOnlineMeetingTranscript","Get-MgCommunicationOnlineMeetingTranscript" +"GET","/communications/onlineMeetings/{param}/transcripts/{param}","keep",,"Get-MgCommunicationOnlineMeetingTranscript","Get-MgCommunicationOnlineMeetingTranscript" +"GET","/communications/onlineMeetings/{param}/transcripts/$count","keep",,"Get-MgCommunicationOnlineMeetingTranscriptCount","Get-MgCommunicationOnlineMeetingTranscriptCount" +"GET","/communications/onlineMeetings/{param}/transcripts/delta","keep",,"Get-MgCommunicationOnlineMeetingTranscriptDelta","Get-MgCommunicationOnlineMeetingTranscriptDelta" +"GET","/communications/onlineMeetings/$count","keep",,"Get-MgCommunicationOnlineMeetingCount","Get-MgCommunicationOnlineMeetingCount" +"GET","/communications/presences","keep",,"Get-MgCommunicationPresence","Get-MgCommunicationPresence" +"GET","/communications/presences/{param}","keep",,"Get-MgCommunicationPresence","Get-MgCommunicationPresence" +"GET","/communications/presences/$count","keep",,"Get-MgCommunicationPresenceCount","Get-MgCommunicationPresenceCount" +"GET","/compliance","keep",,"Get-MgCompliance","Get-MgCompliance" +"GET","/contacts","keep",,"Get-MgContact","Get-MgContact" +"GET","/contacts/{param}","keep",,"Get-MgContact","Get-MgContact" +"GET","/contacts/{param}/directReports","keep",,"Get-MgContactDirectReport","Get-MgContactDirectReport" +"GET","/contacts/{param}/directReports/{param}","keep",,"Get-MgContactDirectReport","Get-MgContactDirectReport" +"GET","/contacts/{param}/directReports/$count","keep",,"Get-MgContactDirectReportCount","Get-MgContactDirectReportCount" +"GET","/contacts/{param}/manager","keep",,"Get-MgContactManager","Get-MgContactManager" +"GET","/contacts/{param}/memberOf","keep",,"Get-MgContactMemberOf","Get-MgContactMemberOf" +"GET","/contacts/{param}/memberOf/{param}","keep",,"Get-MgContactMemberOf","Get-MgContactMemberOf" +"GET","/contacts/{param}/memberOf/$count","keep",,"Get-MgContactMemberOfCount","Get-MgContactMemberOfCount" +"GET","/contacts/{param}/onPremisesSyncBehavior","keep",,"Get-MgContactOnPremiseSyncBehavior","Get-MgContactOnPremiseSyncBehavior" +"GET","/contacts/{param}/serviceProvisioningErrors","keep",,"Get-MgContactServiceProvisioningError","Get-MgContactServiceProvisioningError" +"GET","/contacts/{param}/serviceProvisioningErrors/$count","keep",,"Get-MgContactServiceProvisioningErrorCount","Get-MgContactServiceProvisioningErrorCount" +"GET","/contacts/{param}/transitiveMemberOf","keep",,"Get-MgContactTransitiveMemberOf","Get-MgContactTransitiveMemberOf" +"GET","/contacts/{param}/transitiveMemberOf/{param}","keep",,"Get-MgContactTransitiveMemberOf","Get-MgContactTransitiveMemberOf" +"GET","/contacts/{param}/transitiveMemberOf/$count","keep",,"Get-MgContactTransitiveMemberOfCount","Get-MgContactTransitiveMemberOfCount" +"GET","/contacts/$count","keep",,"Get-MgContactCount","Get-MgContactCount" +"GET","/contacts/delta","keep",,"Get-MgContactDelta","Get-MgContactDelta" +"GET","/contracts","keep",,"Get-MgContract","Get-MgContract" +"GET","/contracts/{param}","keep",,"Get-MgContract","Get-MgContract" +"GET","/contracts/$count","keep",,"Get-MgContractCount","Get-MgContractCount" +"GET","/contracts/delta","keep",,"Get-MgContractDelta","Get-MgContractDelta" +"GET","/dataPolicyOperations","keep",,"Get-MgDataPolicyOperation","Get-MgDataPolicyOperation" +"GET","/dataPolicyOperations/{param}","keep",,"Get-MgDataPolicyOperation","Get-MgDataPolicyOperation" +"GET","/dataPolicyOperations/$count","keep",,"Get-MgDataPolicyOperationCount","Get-MgDataPolicyOperationCount" +"GET","/deviceAppManagement","keep",,"Get-MgDeviceAppManagement","Get-MgDeviceAppManagement" +"GET","/deviceAppManagement/androidManagedAppProtections","keep",,"Get-MgDeviceAppManagementAndroidManagedAppProtection","Get-MgDeviceAppManagementAndroidManagedAppProtection" +"GET","/deviceAppManagement/androidManagedAppProtections/{param}","keep",,"Get-MgDeviceAppManagementAndroidManagedAppProtection","Get-MgDeviceAppManagementAndroidManagedAppProtection" +"GET","/deviceAppManagement/androidManagedAppProtections/{param}/apps","keep",,"Get-MgDeviceAppManagementAndroidManagedAppProtectionApp","Get-MgDeviceAppManagementAndroidManagedAppProtectionApp" +"GET","/deviceAppManagement/androidManagedAppProtections/{param}/apps/{param}","keep",,"Get-MgDeviceAppManagementAndroidManagedAppProtectionApp","Get-MgDeviceAppManagementAndroidManagedAppProtectionApp" +"GET","/deviceAppManagement/androidManagedAppProtections/{param}/apps/$count","keep",,"Get-MgDeviceAppManagementAndroidManagedAppProtectionAppCount","Get-MgDeviceAppManagementAndroidManagedAppProtectionAppCount" +"GET","/deviceAppManagement/androidManagedAppProtections/{param}/assignments","keep",,"Get-MgDeviceAppManagementAndroidManagedAppProtectionAssignment","Get-MgDeviceAppManagementAndroidManagedAppProtectionAssignment" +"GET","/deviceAppManagement/androidManagedAppProtections/{param}/assignments/{param}","keep",,"Get-MgDeviceAppManagementAndroidManagedAppProtectionAssignment","Get-MgDeviceAppManagementAndroidManagedAppProtectionAssignment" +"GET","/deviceAppManagement/androidManagedAppProtections/{param}/assignments/$count","keep",,"Get-MgDeviceAppManagementAndroidManagedAppProtectionAssignmentCount","Get-MgDeviceAppManagementAndroidManagedAppProtectionAssignmentCount" +"GET","/deviceAppManagement/androidManagedAppProtections/{param}/deploymentSummary","keep",,"Get-MgDeviceAppManagementAndroidManagedAppProtectionDeploymentSummary","Get-MgDeviceAppManagementAndroidManagedAppProtectionDeploymentSummary" +"GET","/deviceAppManagement/androidManagedAppProtections/$count","keep",,"Get-MgDeviceAppManagementAndroidManagedAppProtectionCount","Get-MgDeviceAppManagementAndroidManagedAppProtectionCount" +"GET","/deviceAppManagement/defaultManagedAppProtections","keep",,"Get-MgDeviceAppManagementDefaultManagedAppProtection","Get-MgDeviceAppManagementDefaultManagedAppProtection" +"GET","/deviceAppManagement/defaultManagedAppProtections/{param}","keep",,"Get-MgDeviceAppManagementDefaultManagedAppProtection","Get-MgDeviceAppManagementDefaultManagedAppProtection" +"GET","/deviceAppManagement/defaultManagedAppProtections/{param}/apps","keep",,"Get-MgDeviceAppManagementDefaultManagedAppProtectionApp","Get-MgDeviceAppManagementDefaultManagedAppProtectionApp" +"GET","/deviceAppManagement/defaultManagedAppProtections/{param}/apps/{param}","keep",,"Get-MgDeviceAppManagementDefaultManagedAppProtectionApp","Get-MgDeviceAppManagementDefaultManagedAppProtectionApp" +"GET","/deviceAppManagement/defaultManagedAppProtections/{param}/apps/$count","keep",,"Get-MgDeviceAppManagementDefaultManagedAppProtectionAppCount","Get-MgDeviceAppManagementDefaultManagedAppProtectionAppCount" +"GET","/deviceAppManagement/defaultManagedAppProtections/{param}/deploymentSummary","keep",,"Get-MgDeviceAppManagementDefaultManagedAppProtectionDeploymentSummary","Get-MgDeviceAppManagementDefaultManagedAppProtectionDeploymentSummary" +"GET","/deviceAppManagement/defaultManagedAppProtections/$count","keep",,"Get-MgDeviceAppManagementDefaultManagedAppProtectionCount","Get-MgDeviceAppManagementDefaultManagedAppProtectionCount" +"GET","/deviceAppManagement/iosManagedAppProtections","rename","DeviceAppManagementiOSManagedAppProtection","Get-MgDeviceAppManagementIosManagedAppProtection","Get-MgDeviceAppManagementiOSManagedAppProtection" +"GET","/deviceAppManagement/iosManagedAppProtections/{param}","rename","DeviceAppManagementiOSManagedAppProtection","Get-MgDeviceAppManagementIosManagedAppProtection","Get-MgDeviceAppManagementiOSManagedAppProtection" +"GET","/deviceAppManagement/iosManagedAppProtections/{param}/apps","rename","DeviceAppManagementiOSManagedAppProtectionApp","Get-MgDeviceAppManagementIosManagedAppProtectionApp","Get-MgDeviceAppManagementiOSManagedAppProtectionApp" +"GET","/deviceAppManagement/iosManagedAppProtections/{param}/apps/{param}","rename","DeviceAppManagementiOSManagedAppProtectionApp","Get-MgDeviceAppManagementIosManagedAppProtectionApp","Get-MgDeviceAppManagementiOSManagedAppProtectionApp" +"GET","/deviceAppManagement/iosManagedAppProtections/{param}/apps/$count","rename","DeviceAppManagementiOSManagedAppProtectionAppCount","Get-MgDeviceAppManagementIosManagedAppProtectionAppCount","Get-MgDeviceAppManagementiOSManagedAppProtectionAppCount" +"GET","/deviceAppManagement/iosManagedAppProtections/{param}/assignments","rename","DeviceAppManagementiOSManagedAppProtectionAssignment","Get-MgDeviceAppManagementIosManagedAppProtectionAssignment","Get-MgDeviceAppManagementiOSManagedAppProtectionAssignment" +"GET","/deviceAppManagement/iosManagedAppProtections/{param}/assignments/{param}","rename","DeviceAppManagementiOSManagedAppProtectionAssignment","Get-MgDeviceAppManagementIosManagedAppProtectionAssignment","Get-MgDeviceAppManagementiOSManagedAppProtectionAssignment" +"GET","/deviceAppManagement/iosManagedAppProtections/{param}/assignments/$count","rename","DeviceAppManagementiOSManagedAppProtectionAssignmentCount","Get-MgDeviceAppManagementIosManagedAppProtectionAssignmentCount","Get-MgDeviceAppManagementiOSManagedAppProtectionAssignmentCount" +"GET","/deviceAppManagement/iosManagedAppProtections/{param}/deploymentSummary","rename","DeviceAppManagementiOSManagedAppProtectionDeploymentSummary","Get-MgDeviceAppManagementIosManagedAppProtectionDeploymentSummary","Get-MgDeviceAppManagementiOSManagedAppProtectionDeploymentSummary" +"GET","/deviceAppManagement/iosManagedAppProtections/$count","rename","DeviceAppManagementiOSManagedAppProtectionCount","Get-MgDeviceAppManagementIosManagedAppProtectionCount","Get-MgDeviceAppManagementiOSManagedAppProtectionCount" +"GET","/deviceAppManagement/managedAppPolicies","keep",,"Get-MgDeviceAppManagementManagedAppPolicy","Get-MgDeviceAppManagementManagedAppPolicy" +"GET","/deviceAppManagement/managedAppPolicies/{param}","keep",,"Get-MgDeviceAppManagementManagedAppPolicy","Get-MgDeviceAppManagementManagedAppPolicy" +"GET","/deviceAppManagement/managedAppPolicies/$count","keep",,"Get-MgDeviceAppManagementManagedAppPolicyCount","Get-MgDeviceAppManagementManagedAppPolicyCount" +"GET","/deviceAppManagement/managedAppRegistrations","keep",,"Get-MgDeviceAppManagementManagedAppRegistration","Get-MgDeviceAppManagementManagedAppRegistration" +"GET","/deviceAppManagement/managedAppRegistrations/{param}","keep",,"Get-MgDeviceAppManagementManagedAppRegistration","Get-MgDeviceAppManagementManagedAppRegistration" +"GET","/deviceAppManagement/managedAppRegistrations/{param}/appliedPolicies","keep",,"Get-MgDeviceAppManagementManagedAppRegistrationAppliedPolicy","Get-MgDeviceAppManagementManagedAppRegistrationAppliedPolicy" +"GET","/deviceAppManagement/managedAppRegistrations/{param}/appliedPolicies/{param}","keep",,"Get-MgDeviceAppManagementManagedAppRegistrationAppliedPolicy","Get-MgDeviceAppManagementManagedAppRegistrationAppliedPolicy" +"GET","/deviceAppManagement/managedAppRegistrations/{param}/appliedPolicies/$count","keep",,"Get-MgDeviceAppManagementManagedAppRegistrationAppliedPolicyCount","Get-MgDeviceAppManagementManagedAppRegistrationAppliedPolicyCount" +"GET","/deviceAppManagement/managedAppRegistrations/{param}/intendedPolicies","keep",,"Get-MgDeviceAppManagementManagedAppRegistrationIntendedPolicy","Get-MgDeviceAppManagementManagedAppRegistrationIntendedPolicy" +"GET","/deviceAppManagement/managedAppRegistrations/{param}/intendedPolicies/{param}","keep",,"Get-MgDeviceAppManagementManagedAppRegistrationIntendedPolicy","Get-MgDeviceAppManagementManagedAppRegistrationIntendedPolicy" +"GET","/deviceAppManagement/managedAppRegistrations/{param}/intendedPolicies/$count","keep",,"Get-MgDeviceAppManagementManagedAppRegistrationIntendedPolicyCount","Get-MgDeviceAppManagementManagedAppRegistrationIntendedPolicyCount" +"GET","/deviceAppManagement/managedAppRegistrations/{param}/operations","keep",,"Get-MgDeviceAppManagementManagedAppRegistrationOperation","Get-MgDeviceAppManagementManagedAppRegistrationOperation" +"GET","/deviceAppManagement/managedAppRegistrations/{param}/operations/{param}","keep",,"Get-MgDeviceAppManagementManagedAppRegistrationOperation","Get-MgDeviceAppManagementManagedAppRegistrationOperation" +"GET","/deviceAppManagement/managedAppRegistrations/{param}/operations/$count","keep",,"Get-MgDeviceAppManagementManagedAppRegistrationOperationCount","Get-MgDeviceAppManagementManagedAppRegistrationOperationCount" +"GET","/deviceAppManagement/managedAppRegistrations/$count","keep",,"Get-MgDeviceAppManagementManagedAppRegistrationCount","Get-MgDeviceAppManagementManagedAppRegistrationCount" +"GET","/deviceAppManagement/managedAppRegistrations/getUserIdsWithFlaggedAppRegistration","rename","DeviceAppManagementManagedAppRegistrationUserIdWithFlaggedAppRegistration","Get-MgDeviceAppManagementManagedAppRegistrationGetUserIdsWithFlaggedAppRegistration","Get-MgDeviceAppManagementManagedAppRegistrationUserIdWithFlaggedAppRegistration" +"GET","/deviceAppManagement/managedAppStatuses","keep",,"Get-MgDeviceAppManagementManagedAppStatus","Get-MgDeviceAppManagementManagedAppStatus" +"GET","/deviceAppManagement/managedAppStatuses/{param}","keep",,"Get-MgDeviceAppManagementManagedAppStatus","Get-MgDeviceAppManagementManagedAppStatus" +"GET","/deviceAppManagement/managedAppStatuses/$count","keep",,"Get-MgDeviceAppManagementManagedAppStatusCount","Get-MgDeviceAppManagementManagedAppStatusCount" +"GET","/deviceAppManagement/managedEBooks","keep",,"Get-MgDeviceAppManagementManagedEBook","Get-MgDeviceAppManagementManagedEBook" +"GET","/deviceAppManagement/managedEBooks/{param}","keep",,"Get-MgDeviceAppManagementManagedEBook","Get-MgDeviceAppManagementManagedEBook" +"GET","/deviceAppManagement/managedEBooks/{param}/assignments","keep",,"Get-MgDeviceAppManagementManagedEBookAssignment","Get-MgDeviceAppManagementManagedEBookAssignment" +"GET","/deviceAppManagement/managedEBooks/{param}/assignments/{param}","keep",,"Get-MgDeviceAppManagementManagedEBookAssignment","Get-MgDeviceAppManagementManagedEBookAssignment" +"GET","/deviceAppManagement/managedEBooks/{param}/assignments/$count","keep",,"Get-MgDeviceAppManagementManagedEBookAssignmentCount","Get-MgDeviceAppManagementManagedEBookAssignmentCount" +"GET","/deviceAppManagement/managedEBooks/{param}/deviceStates","keep",,"Get-MgDeviceAppManagementManagedEBookDeviceState","Get-MgDeviceAppManagementManagedEBookDeviceState" +"GET","/deviceAppManagement/managedEBooks/{param}/deviceStates/{param}","keep",,"Get-MgDeviceAppManagementManagedEBookDeviceState","Get-MgDeviceAppManagementManagedEBookDeviceState" +"GET","/deviceAppManagement/managedEBooks/{param}/deviceStates/$count","keep",,"Get-MgDeviceAppManagementManagedEBookDeviceStateCount","Get-MgDeviceAppManagementManagedEBookDeviceStateCount" +"GET","/deviceAppManagement/managedEBooks/{param}/installSummary","keep",,"Get-MgDeviceAppManagementManagedEBookInstallSummary","Get-MgDeviceAppManagementManagedEBookInstallSummary" +"GET","/deviceAppManagement/managedEBooks/{param}/userStateSummary","keep",,"Get-MgDeviceAppManagementManagedEBookUserStateSummary","Get-MgDeviceAppManagementManagedEBookUserStateSummary" +"GET","/deviceAppManagement/managedEBooks/{param}/userStateSummary/{param}","keep",,"Get-MgDeviceAppManagementManagedEBookUserStateSummary","Get-MgDeviceAppManagementManagedEBookUserStateSummary" +"GET","/deviceAppManagement/managedEBooks/{param}/userStateSummary/{param}/deviceStates","keep",,"Get-MgDeviceAppManagementManagedEBookUserStateSummaryDeviceState","Get-MgDeviceAppManagementManagedEBookUserStateSummaryDeviceState" +"GET","/deviceAppManagement/managedEBooks/{param}/userStateSummary/{param}/deviceStates/{param}","keep",,"Get-MgDeviceAppManagementManagedEBookUserStateSummaryDeviceState","Get-MgDeviceAppManagementManagedEBookUserStateSummaryDeviceState" +"GET","/deviceAppManagement/managedEBooks/{param}/userStateSummary/{param}/deviceStates/$count","keep",,"Get-MgDeviceAppManagementManagedEBookUserStateSummaryDeviceStateCount","Get-MgDeviceAppManagementManagedEBookUserStateSummaryDeviceStateCount" +"GET","/deviceAppManagement/managedEBooks/{param}/userStateSummary/$count","keep",,"Get-MgDeviceAppManagementManagedEBookUserStateSummaryCount","Get-MgDeviceAppManagementManagedEBookUserStateSummaryCount" +"GET","/deviceAppManagement/managedEBooks/$count","keep",,"Get-MgDeviceAppManagementManagedEBookCount","Get-MgDeviceAppManagementManagedEBookCount" +"GET","/deviceAppManagement/mdmWindowsInformationProtectionPolicies","keep",,"Get-MgDeviceAppManagementMdmWindowsInformationProtectionPolicy","Get-MgDeviceAppManagementMdmWindowsInformationProtectionPolicy" +"GET","/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{param}","keep",,"Get-MgDeviceAppManagementMdmWindowsInformationProtectionPolicy","Get-MgDeviceAppManagementMdmWindowsInformationProtectionPolicy" +"GET","/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{param}/assignments","keep",,"Get-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyAssignment","Get-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyAssignment" +"GET","/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{param}/assignments/{param}","keep",,"Get-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyAssignment","Get-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyAssignment" +"GET","/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{param}/assignments/$count","keep",,"Get-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyAssignmentCount","Get-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyAssignmentCount" +"GET","/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{param}/exemptAppLockerFiles","keep",,"Get-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyExemptAppLockerFile","Get-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyExemptAppLockerFile" +"GET","/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{param}/exemptAppLockerFiles/{param}","keep",,"Get-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyExemptAppLockerFile","Get-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyExemptAppLockerFile" +"GET","/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{param}/exemptAppLockerFiles/$count","keep",,"Get-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyExemptAppLockerFileCount","Get-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyExemptAppLockerFileCount" +"GET","/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{param}/protectedAppLockerFiles","keep",,"Get-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyProtectedAppLockerFile","Get-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyProtectedAppLockerFile" +"GET","/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{param}/protectedAppLockerFiles/{param}","keep",,"Get-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyProtectedAppLockerFile","Get-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyProtectedAppLockerFile" +"GET","/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{param}/protectedAppLockerFiles/$count","keep",,"Get-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyProtectedAppLockerFileCount","Get-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyProtectedAppLockerFileCount" +"GET","/deviceAppManagement/mdmWindowsInformationProtectionPolicies/$count","keep",,"Get-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyCount","Get-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyCount" +"GET","/deviceAppManagement/mobileAppCategories","keep",,"Get-MgDeviceAppManagementMobileAppCategory","Get-MgDeviceAppManagementMobileAppCategory" +"GET","/deviceAppManagement/mobileAppCategories/{param}","keep",,"Get-MgDeviceAppManagementMobileAppCategory","Get-MgDeviceAppManagementMobileAppCategory" +"GET","/deviceAppManagement/mobileAppCategories/$count","keep",,"Get-MgDeviceAppManagementMobileAppCategoryCount","Get-MgDeviceAppManagementMobileAppCategoryCount" +"GET","/deviceAppManagement/mobileAppConfigurations","keep",,"Get-MgDeviceAppManagementMobileAppConfiguration","Get-MgDeviceAppManagementMobileAppConfiguration" +"GET","/deviceAppManagement/mobileAppConfigurations/{param}","keep",,"Get-MgDeviceAppManagementMobileAppConfiguration","Get-MgDeviceAppManagementMobileAppConfiguration" +"GET","/deviceAppManagement/mobileAppConfigurations/{param}/assignments","keep",,"Get-MgDeviceAppManagementMobileAppConfigurationAssignment","Get-MgDeviceAppManagementMobileAppConfigurationAssignment" +"GET","/deviceAppManagement/mobileAppConfigurations/{param}/assignments/{param}","keep",,"Get-MgDeviceAppManagementMobileAppConfigurationAssignment","Get-MgDeviceAppManagementMobileAppConfigurationAssignment" +"GET","/deviceAppManagement/mobileAppConfigurations/{param}/assignments/$count","keep",,"Get-MgDeviceAppManagementMobileAppConfigurationAssignmentCount","Get-MgDeviceAppManagementMobileAppConfigurationAssignmentCount" +"GET","/deviceAppManagement/mobileAppConfigurations/{param}/deviceStatuses","keep",,"Get-MgDeviceAppManagementMobileAppConfigurationDeviceStatus","Get-MgDeviceAppManagementMobileAppConfigurationDeviceStatus" +"GET","/deviceAppManagement/mobileAppConfigurations/{param}/deviceStatuses/{param}","keep",,"Get-MgDeviceAppManagementMobileAppConfigurationDeviceStatus","Get-MgDeviceAppManagementMobileAppConfigurationDeviceStatus" +"GET","/deviceAppManagement/mobileAppConfigurations/{param}/deviceStatuses/$count","keep",,"Get-MgDeviceAppManagementMobileAppConfigurationDeviceStatusCount","Get-MgDeviceAppManagementMobileAppConfigurationDeviceStatusCount" +"GET","/deviceAppManagement/mobileAppConfigurations/{param}/deviceStatusSummary","keep",,"Get-MgDeviceAppManagementMobileAppConfigurationDeviceStatusSummary","Get-MgDeviceAppManagementMobileAppConfigurationDeviceStatusSummary" +"GET","/deviceAppManagement/mobileAppConfigurations/{param}/userStatuses","keep",,"Get-MgDeviceAppManagementMobileAppConfigurationUserStatus","Get-MgDeviceAppManagementMobileAppConfigurationUserStatus" +"GET","/deviceAppManagement/mobileAppConfigurations/{param}/userStatuses/{param}","keep",,"Get-MgDeviceAppManagementMobileAppConfigurationUserStatus","Get-MgDeviceAppManagementMobileAppConfigurationUserStatus" +"GET","/deviceAppManagement/mobileAppConfigurations/{param}/userStatuses/$count","keep",,"Get-MgDeviceAppManagementMobileAppConfigurationUserStatusCount","Get-MgDeviceAppManagementMobileAppConfigurationUserStatusCount" +"GET","/deviceAppManagement/mobileAppConfigurations/{param}/userStatusSummary","keep",,"Get-MgDeviceAppManagementMobileAppConfigurationUserStatusSummary","Get-MgDeviceAppManagementMobileAppConfigurationUserStatusSummary" +"GET","/deviceAppManagement/mobileAppConfigurations/$count","keep",,"Get-MgDeviceAppManagementMobileAppConfigurationCount","Get-MgDeviceAppManagementMobileAppConfigurationCount" +"GET","/deviceAppManagement/mobileAppRelationships","keep",,"Get-MgDeviceAppManagementMobileAppRelationship","Get-MgDeviceAppManagementMobileAppRelationship" +"GET","/deviceAppManagement/mobileAppRelationships/{param}","keep",,"Get-MgDeviceAppManagementMobileAppRelationship","Get-MgDeviceAppManagementMobileAppRelationship" +"GET","/deviceAppManagement/mobileAppRelationships/$count","keep",,"Get-MgDeviceAppManagementMobileAppRelationshipCount","Get-MgDeviceAppManagementMobileAppRelationshipCount" +"GET","/deviceAppManagement/mobileApps","keep",,"Get-MgDeviceAppManagementMobileApp","Get-MgDeviceAppManagementMobileApp" +"GET","/deviceAppManagement/mobileApps/{param}","keep",,"Get-MgDeviceAppManagementMobileApp","Get-MgDeviceAppManagementMobileApp" +"GET","/deviceAppManagement/mobileApps/{param}/assignments","keep",,"Get-MgDeviceAppManagementMobileAppAssignment","Get-MgDeviceAppManagementMobileAppAssignment" +"GET","/deviceAppManagement/mobileApps/{param}/assignments/{param}","keep",,"Get-MgDeviceAppManagementMobileAppAssignment","Get-MgDeviceAppManagementMobileAppAssignment" +"GET","/deviceAppManagement/mobileApps/{param}/assignments/$count","keep",,"Get-MgDeviceAppManagementMobileAppAssignmentCount","Get-MgDeviceAppManagementMobileAppAssignmentCount" +"GET","/deviceAppManagement/mobileApps/$count","keep",,"Get-MgDeviceAppManagementMobileAppCount","Get-MgDeviceAppManagementMobileAppCount" +"GET","/deviceAppManagement/targetedManagedAppConfigurations","keep",,"Get-MgDeviceAppManagementTargetedManagedAppConfiguration","Get-MgDeviceAppManagementTargetedManagedAppConfiguration" +"GET","/deviceAppManagement/targetedManagedAppConfigurations/{param}","keep",,"Get-MgDeviceAppManagementTargetedManagedAppConfiguration","Get-MgDeviceAppManagementTargetedManagedAppConfiguration" +"GET","/deviceAppManagement/targetedManagedAppConfigurations/{param}/apps","keep",,"Get-MgDeviceAppManagementTargetedManagedAppConfigurationApp","Get-MgDeviceAppManagementTargetedManagedAppConfigurationApp" +"GET","/deviceAppManagement/targetedManagedAppConfigurations/{param}/apps/{param}","keep",,"Get-MgDeviceAppManagementTargetedManagedAppConfigurationApp","Get-MgDeviceAppManagementTargetedManagedAppConfigurationApp" +"GET","/deviceAppManagement/targetedManagedAppConfigurations/{param}/apps/$count","keep",,"Get-MgDeviceAppManagementTargetedManagedAppConfigurationAppCount","Get-MgDeviceAppManagementTargetedManagedAppConfigurationAppCount" +"GET","/deviceAppManagement/targetedManagedAppConfigurations/{param}/assignments","keep",,"Get-MgDeviceAppManagementTargetedManagedAppConfigurationAssignment","Get-MgDeviceAppManagementTargetedManagedAppConfigurationAssignment" +"GET","/deviceAppManagement/targetedManagedAppConfigurations/{param}/assignments/{param}","keep",,"Get-MgDeviceAppManagementTargetedManagedAppConfigurationAssignment","Get-MgDeviceAppManagementTargetedManagedAppConfigurationAssignment" +"GET","/deviceAppManagement/targetedManagedAppConfigurations/{param}/assignments/$count","keep",,"Get-MgDeviceAppManagementTargetedManagedAppConfigurationAssignmentCount","Get-MgDeviceAppManagementTargetedManagedAppConfigurationAssignmentCount" +"GET","/deviceAppManagement/targetedManagedAppConfigurations/{param}/deploymentSummary","keep",,"Get-MgDeviceAppManagementTargetedManagedAppConfigurationDeploymentSummary","Get-MgDeviceAppManagementTargetedManagedAppConfigurationDeploymentSummary" +"GET","/deviceAppManagement/targetedManagedAppConfigurations/$count","keep",,"Get-MgDeviceAppManagementTargetedManagedAppConfigurationCount","Get-MgDeviceAppManagementTargetedManagedAppConfigurationCount" +"GET","/deviceAppManagement/vppTokens","keep",,"Get-MgDeviceAppManagementVppToken","Get-MgDeviceAppManagementVppToken" +"GET","/deviceAppManagement/vppTokens/{param}","keep",,"Get-MgDeviceAppManagementVppToken","Get-MgDeviceAppManagementVppToken" +"GET","/deviceAppManagement/vppTokens/$count","keep",,"Get-MgDeviceAppManagementVppTokenCount","Get-MgDeviceAppManagementVppTokenCount" +"GET","/deviceAppManagement/windowsInformationProtectionPolicies","keep",,"Get-MgDeviceAppManagementWindowsInformationProtectionPolicy","Get-MgDeviceAppManagementWindowsInformationProtectionPolicy" +"GET","/deviceAppManagement/windowsInformationProtectionPolicies/{param}","keep",,"Get-MgDeviceAppManagementWindowsInformationProtectionPolicy","Get-MgDeviceAppManagementWindowsInformationProtectionPolicy" +"GET","/deviceAppManagement/windowsInformationProtectionPolicies/{param}/assignments","keep",,"Get-MgDeviceAppManagementWindowsInformationProtectionPolicyAssignment","Get-MgDeviceAppManagementWindowsInformationProtectionPolicyAssignment" +"GET","/deviceAppManagement/windowsInformationProtectionPolicies/{param}/assignments/{param}","keep",,"Get-MgDeviceAppManagementWindowsInformationProtectionPolicyAssignment","Get-MgDeviceAppManagementWindowsInformationProtectionPolicyAssignment" +"GET","/deviceAppManagement/windowsInformationProtectionPolicies/{param}/assignments/$count","keep",,"Get-MgDeviceAppManagementWindowsInformationProtectionPolicyAssignmentCount","Get-MgDeviceAppManagementWindowsInformationProtectionPolicyAssignmentCount" +"GET","/deviceAppManagement/windowsInformationProtectionPolicies/{param}/exemptAppLockerFiles","keep",,"Get-MgDeviceAppManagementWindowsInformationProtectionPolicyExemptAppLockerFile","Get-MgDeviceAppManagementWindowsInformationProtectionPolicyExemptAppLockerFile" +"GET","/deviceAppManagement/windowsInformationProtectionPolicies/{param}/exemptAppLockerFiles/{param}","keep",,"Get-MgDeviceAppManagementWindowsInformationProtectionPolicyExemptAppLockerFile","Get-MgDeviceAppManagementWindowsInformationProtectionPolicyExemptAppLockerFile" +"GET","/deviceAppManagement/windowsInformationProtectionPolicies/{param}/exemptAppLockerFiles/$count","keep",,"Get-MgDeviceAppManagementWindowsInformationProtectionPolicyExemptAppLockerFileCount","Get-MgDeviceAppManagementWindowsInformationProtectionPolicyExemptAppLockerFileCount" +"GET","/deviceAppManagement/windowsInformationProtectionPolicies/{param}/protectedAppLockerFiles","keep",,"Get-MgDeviceAppManagementWindowsInformationProtectionPolicyProtectedAppLockerFile","Get-MgDeviceAppManagementWindowsInformationProtectionPolicyProtectedAppLockerFile" +"GET","/deviceAppManagement/windowsInformationProtectionPolicies/{param}/protectedAppLockerFiles/{param}","keep",,"Get-MgDeviceAppManagementWindowsInformationProtectionPolicyProtectedAppLockerFile","Get-MgDeviceAppManagementWindowsInformationProtectionPolicyProtectedAppLockerFile" +"GET","/deviceAppManagement/windowsInformationProtectionPolicies/{param}/protectedAppLockerFiles/$count","keep",,"Get-MgDeviceAppManagementWindowsInformationProtectionPolicyProtectedAppLockerFileCount","Get-MgDeviceAppManagementWindowsInformationProtectionPolicyProtectedAppLockerFileCount" +"GET","/deviceAppManagement/windowsInformationProtectionPolicies/$count","keep",,"Get-MgDeviceAppManagementWindowsInformationProtectionPolicyCount","Get-MgDeviceAppManagementWindowsInformationProtectionPolicyCount" +"GET","/deviceManagement","keep",,"Get-MgDeviceManagement","Get-MgDeviceManagement" +"GET","/deviceManagement/applePushNotificationCertificate","keep",,"Get-MgDeviceManagementApplePushNotificationCertificate","Get-MgDeviceManagementApplePushNotificationCertificate" +"GET","/deviceManagement/applePushNotificationCertificate/downloadApplePushNotificationCertificateSigningRequest","rename","DownloadDeviceManagementApplePushNotificationCertificateApplePushNotificationCertificateSigningRequest","Get-MgDeviceManagementApplePushNotificationCertificateDownloadApplePushNotificationCertificateSigningRequest","Invoke-MgDownloadDeviceManagementApplePushNotificationCertificateApplePushNotificationCertificateSigningRequest" +"GET","/deviceManagement/auditEvents","keep",,"Get-MgDeviceManagementAuditEvent","Get-MgDeviceManagementAuditEvent" +"GET","/deviceManagement/auditEvents/{param}","keep",,"Get-MgDeviceManagementAuditEvent","Get-MgDeviceManagementAuditEvent" +"GET","/deviceManagement/auditEvents/$count","keep",,"Get-MgDeviceManagementAuditEventCount","Get-MgDeviceManagementAuditEventCount" +"GET","/deviceManagement/auditEvents/getAuditCategories","rename","DeviceManagementAuditEventAuditCategory","Get-MgDeviceManagementAuditEventGetAuditCategories","Get-MgDeviceManagementAuditEventAuditCategory" +"GET","/deviceManagement/complianceManagementPartners","keep",,"Get-MgDeviceManagementComplianceManagementPartner","Get-MgDeviceManagementComplianceManagementPartner" +"GET","/deviceManagement/complianceManagementPartners/{param}","keep",,"Get-MgDeviceManagementComplianceManagementPartner","Get-MgDeviceManagementComplianceManagementPartner" +"GET","/deviceManagement/complianceManagementPartners/$count","keep",,"Get-MgDeviceManagementComplianceManagementPartnerCount","Get-MgDeviceManagementComplianceManagementPartnerCount" +"GET","/deviceManagement/conditionalAccessSettings","keep",,"Get-MgDeviceManagementConditionalAccessSetting","Get-MgDeviceManagementConditionalAccessSetting" +"GET","/deviceManagement/detectedApps","keep",,"Get-MgDeviceManagementDetectedApp","Get-MgDeviceManagementDetectedApp" +"GET","/deviceManagement/detectedApps/{param}","keep",,"Get-MgDeviceManagementDetectedApp","Get-MgDeviceManagementDetectedApp" +"GET","/deviceManagement/detectedApps/{param}/managedDevices","keep",,"Get-MgDeviceManagementDetectedAppManagedDevice","Get-MgDeviceManagementDetectedAppManagedDevice" +"GET","/deviceManagement/detectedApps/{param}/managedDevices/{param}","keep",,"Get-MgDeviceManagementDetectedAppManagedDevice","Get-MgDeviceManagementDetectedAppManagedDevice" +"GET","/deviceManagement/detectedApps/{param}/managedDevices/$count","keep",,"Get-MgDeviceManagementDetectedAppManagedDeviceCount","Get-MgDeviceManagementDetectedAppManagedDeviceCount" +"GET","/deviceManagement/detectedApps/$count","keep",,"Get-MgDeviceManagementDetectedAppCount","Get-MgDeviceManagementDetectedAppCount" +"GET","/deviceManagement/deviceCategories","keep",,"Get-MgDeviceManagementDeviceCategory","Get-MgDeviceManagementDeviceCategory" +"GET","/deviceManagement/deviceCategories/{param}","keep",,"Get-MgDeviceManagementDeviceCategory","Get-MgDeviceManagementDeviceCategory" +"GET","/deviceManagement/deviceCategories/$count","keep",,"Get-MgDeviceManagementDeviceCategoryCount","Get-MgDeviceManagementDeviceCategoryCount" +"GET","/deviceManagement/deviceCompliancePolicies","keep",,"Get-MgDeviceManagementDeviceCompliancePolicy","Get-MgDeviceManagementDeviceCompliancePolicy" +"GET","/deviceManagement/deviceCompliancePolicies/{param}","keep",,"Get-MgDeviceManagementDeviceCompliancePolicy","Get-MgDeviceManagementDeviceCompliancePolicy" +"GET","/deviceManagement/deviceCompliancePolicies/{param}/assignments","keep",,"Get-MgDeviceManagementDeviceCompliancePolicyAssignment","Get-MgDeviceManagementDeviceCompliancePolicyAssignment" +"GET","/deviceManagement/deviceCompliancePolicies/{param}/assignments/{param}","keep",,"Get-MgDeviceManagementDeviceCompliancePolicyAssignment","Get-MgDeviceManagementDeviceCompliancePolicyAssignment" +"GET","/deviceManagement/deviceCompliancePolicies/{param}/assignments/$count","keep",,"Get-MgDeviceManagementDeviceCompliancePolicyAssignmentCount","Get-MgDeviceManagementDeviceCompliancePolicyAssignmentCount" +"GET","/deviceManagement/deviceCompliancePolicies/{param}/deviceSettingStateSummaries","keep",,"Get-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary","Get-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary" +"GET","/deviceManagement/deviceCompliancePolicies/{param}/deviceSettingStateSummaries/{param}","keep",,"Get-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary","Get-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary" +"GET","/deviceManagement/deviceCompliancePolicies/{param}/deviceSettingStateSummaries/$count","keep",,"Get-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummaryCount","Get-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummaryCount" +"GET","/deviceManagement/deviceCompliancePolicies/{param}/deviceStatuses","keep",,"Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatus","Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatus" +"GET","/deviceManagement/deviceCompliancePolicies/{param}/deviceStatuses/{param}","keep",,"Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatus","Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatus" +"GET","/deviceManagement/deviceCompliancePolicies/{param}/deviceStatuses/$count","keep",,"Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatusCount","Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatusCount" +"GET","/deviceManagement/deviceCompliancePolicies/{param}/deviceStatusOverview","keep",,"Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview","Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview" +"GET","/deviceManagement/deviceCompliancePolicies/{param}/scheduledActionsForRule","keep",,"Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule","Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule" +"GET","/deviceManagement/deviceCompliancePolicies/{param}/scheduledActionsForRule/{param}","keep",,"Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule","Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule" +"GET","/deviceManagement/deviceCompliancePolicies/{param}/scheduledActionsForRule/{param}/scheduledActionConfigurations","keep",,"Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration","Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration" +"GET","/deviceManagement/deviceCompliancePolicies/{param}/scheduledActionsForRule/{param}/scheduledActionConfigurations/{param}","keep",,"Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration","Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration" +"GET","/deviceManagement/deviceCompliancePolicies/{param}/scheduledActionsForRule/{param}/scheduledActionConfigurations/$count","keep",,"Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfigurationCount","Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfigurationCount" +"GET","/deviceManagement/deviceCompliancePolicies/{param}/scheduledActionsForRule/$count","keep",,"Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleCount","Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleCount" +"GET","/deviceManagement/deviceCompliancePolicies/{param}/userStatuses","keep",,"Get-MgDeviceManagementDeviceCompliancePolicyUserStatus","Get-MgDeviceManagementDeviceCompliancePolicyUserStatus" +"GET","/deviceManagement/deviceCompliancePolicies/{param}/userStatuses/{param}","keep",,"Get-MgDeviceManagementDeviceCompliancePolicyUserStatus","Get-MgDeviceManagementDeviceCompliancePolicyUserStatus" +"GET","/deviceManagement/deviceCompliancePolicies/{param}/userStatuses/$count","keep",,"Get-MgDeviceManagementDeviceCompliancePolicyUserStatusCount","Get-MgDeviceManagementDeviceCompliancePolicyUserStatusCount" +"GET","/deviceManagement/deviceCompliancePolicies/{param}/userStatusOverview","keep",,"Get-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview","Get-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview" +"GET","/deviceManagement/deviceCompliancePolicies/$count","keep",,"Get-MgDeviceManagementDeviceCompliancePolicyCount","Get-MgDeviceManagementDeviceCompliancePolicyCount" +"GET","/deviceManagement/deviceCompliancePolicyDeviceStateSummary","keep",,"Get-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary","Get-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary" +"GET","/deviceManagement/deviceCompliancePolicySettingStateSummaries","keep",,"Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummary","Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummary" +"GET","/deviceManagement/deviceCompliancePolicySettingStateSummaries/{param}","keep",,"Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummary","Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummary" +"GET","/deviceManagement/deviceCompliancePolicySettingStateSummaries/{param}/deviceComplianceSettingStates","keep",,"Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState","Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState" +"GET","/deviceManagement/deviceCompliancePolicySettingStateSummaries/{param}/deviceComplianceSettingStates/{param}","keep",,"Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState","Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState" +"GET","/deviceManagement/deviceCompliancePolicySettingStateSummaries/{param}/deviceComplianceSettingStates/$count","keep",,"Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingStateCount","Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingStateCount" +"GET","/deviceManagement/deviceCompliancePolicySettingStateSummaries/$count","keep",,"Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryCount","Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryCount" +"GET","/deviceManagement/deviceConfigurationDeviceStateSummaries","keep",,"Get-MgDeviceManagementDeviceConfigurationDeviceStateSummary","Get-MgDeviceManagementDeviceConfigurationDeviceStateSummary" +"GET","/deviceManagement/deviceConfigurations","keep",,"Get-MgDeviceManagementDeviceConfiguration","Get-MgDeviceManagementDeviceConfiguration" +"GET","/deviceManagement/deviceConfigurations/{param}","keep",,"Get-MgDeviceManagementDeviceConfiguration","Get-MgDeviceManagementDeviceConfiguration" +"GET","/deviceManagement/deviceConfigurations/{param}/assignments","keep",,"Get-MgDeviceManagementDeviceConfigurationAssignment","Get-MgDeviceManagementDeviceConfigurationAssignment" +"GET","/deviceManagement/deviceConfigurations/{param}/assignments/{param}","keep",,"Get-MgDeviceManagementDeviceConfigurationAssignment","Get-MgDeviceManagementDeviceConfigurationAssignment" +"GET","/deviceManagement/deviceConfigurations/{param}/assignments/$count","keep",,"Get-MgDeviceManagementDeviceConfigurationAssignmentCount","Get-MgDeviceManagementDeviceConfigurationAssignmentCount" +"GET","/deviceManagement/deviceConfigurations/{param}/deviceSettingStateSummaries","keep",,"Get-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary","Get-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary" +"GET","/deviceManagement/deviceConfigurations/{param}/deviceSettingStateSummaries/{param}","keep",,"Get-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary","Get-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary" +"GET","/deviceManagement/deviceConfigurations/{param}/deviceSettingStateSummaries/$count","keep",,"Get-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummaryCount","Get-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummaryCount" +"GET","/deviceManagement/deviceConfigurations/{param}/deviceStatuses","keep",,"Get-MgDeviceManagementDeviceConfigurationDeviceStatus","Get-MgDeviceManagementDeviceConfigurationDeviceStatus" +"GET","/deviceManagement/deviceConfigurations/{param}/deviceStatuses/{param}","keep",,"Get-MgDeviceManagementDeviceConfigurationDeviceStatus","Get-MgDeviceManagementDeviceConfigurationDeviceStatus" +"GET","/deviceManagement/deviceConfigurations/{param}/deviceStatuses/$count","keep",,"Get-MgDeviceManagementDeviceConfigurationDeviceStatusCount","Get-MgDeviceManagementDeviceConfigurationDeviceStatusCount" +"GET","/deviceManagement/deviceConfigurations/{param}/deviceStatusOverview","keep",,"Get-MgDeviceManagementDeviceConfigurationDeviceStatusOverview","Get-MgDeviceManagementDeviceConfigurationDeviceStatusOverview" +"GET","/deviceManagement/deviceConfigurations/{param}/userStatuses","keep",,"Get-MgDeviceManagementDeviceConfigurationUserStatus","Get-MgDeviceManagementDeviceConfigurationUserStatus" +"GET","/deviceManagement/deviceConfigurations/{param}/userStatuses/{param}","keep",,"Get-MgDeviceManagementDeviceConfigurationUserStatus","Get-MgDeviceManagementDeviceConfigurationUserStatus" +"GET","/deviceManagement/deviceConfigurations/{param}/userStatuses/$count","keep",,"Get-MgDeviceManagementDeviceConfigurationUserStatusCount","Get-MgDeviceManagementDeviceConfigurationUserStatusCount" +"GET","/deviceManagement/deviceConfigurations/{param}/userStatusOverview","keep",,"Get-MgDeviceManagementDeviceConfigurationUserStatusOverview","Get-MgDeviceManagementDeviceConfigurationUserStatusOverview" +"GET","/deviceManagement/deviceConfigurations/$count","keep",,"Get-MgDeviceManagementDeviceConfigurationCount","Get-MgDeviceManagementDeviceConfigurationCount" +"GET","/deviceManagement/deviceEnrollmentConfigurations","keep",,"Get-MgDeviceManagementDeviceEnrollmentConfiguration","Get-MgDeviceManagementDeviceEnrollmentConfiguration" +"GET","/deviceManagement/deviceEnrollmentConfigurations/{param}","keep",,"Get-MgDeviceManagementDeviceEnrollmentConfiguration","Get-MgDeviceManagementDeviceEnrollmentConfiguration" +"GET","/deviceManagement/deviceEnrollmentConfigurations/{param}/assignments","keep",,"Get-MgDeviceManagementDeviceEnrollmentConfigurationAssignment","Get-MgDeviceManagementDeviceEnrollmentConfigurationAssignment" +"GET","/deviceManagement/deviceEnrollmentConfigurations/{param}/assignments/{param}","keep",,"Get-MgDeviceManagementDeviceEnrollmentConfigurationAssignment","Get-MgDeviceManagementDeviceEnrollmentConfigurationAssignment" +"GET","/deviceManagement/deviceEnrollmentConfigurations/{param}/assignments/$count","keep",,"Get-MgDeviceManagementDeviceEnrollmentConfigurationAssignmentCount","Get-MgDeviceManagementDeviceEnrollmentConfigurationAssignmentCount" +"GET","/deviceManagement/deviceEnrollmentConfigurations/$count","keep",,"Get-MgDeviceManagementDeviceEnrollmentConfigurationCount","Get-MgDeviceManagementDeviceEnrollmentConfigurationCount" +"GET","/deviceManagement/deviceManagementPartners","keep",,"Get-MgDeviceManagementPartner","Get-MgDeviceManagementPartner" +"GET","/deviceManagement/deviceManagementPartners/{param}","keep",,"Get-MgDeviceManagementPartner","Get-MgDeviceManagementPartner" +"GET","/deviceManagement/deviceManagementPartners/$count","rename","DeviceManagementPartnerCount","Get-MgDeviceManagementDeviceManagementPartnerCount","Get-MgDeviceManagementPartnerCount" +"GET","/deviceManagement/exchangeConnectors","keep",,"Get-MgDeviceManagementExchangeConnector","Get-MgDeviceManagementExchangeConnector" +"GET","/deviceManagement/exchangeConnectors/{param}","keep",,"Get-MgDeviceManagementExchangeConnector","Get-MgDeviceManagementExchangeConnector" +"GET","/deviceManagement/exchangeConnectors/$count","keep",,"Get-MgDeviceManagementExchangeConnectorCount","Get-MgDeviceManagementExchangeConnectorCount" +"GET","/deviceManagement/importedWindowsAutopilotDeviceIdentities","keep",,"Get-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity","Get-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity" +"GET","/deviceManagement/importedWindowsAutopilotDeviceIdentities/{param}","keep",,"Get-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity","Get-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity" +"GET","/deviceManagement/importedWindowsAutopilotDeviceIdentities/$count","keep",,"Get-MgDeviceManagementImportedWindowsAutopilotDeviceIdentityCount","Get-MgDeviceManagementImportedWindowsAutopilotDeviceIdentityCount" +"GET","/deviceManagement/iosUpdateStatuses","rename","DeviceManagementIoUpdateStatus","Get-MgDeviceManagementIosUpdateStatus","Get-MgDeviceManagementIoUpdateStatus" +"GET","/deviceManagement/iosUpdateStatuses/{param}","rename","DeviceManagementIoUpdateStatus","Get-MgDeviceManagementIosUpdateStatus","Get-MgDeviceManagementIoUpdateStatus" +"GET","/deviceManagement/iosUpdateStatuses/$count","rename","DeviceManagementIoUpdateStatusCount","Get-MgDeviceManagementIosUpdateStatusCount","Get-MgDeviceManagementIoUpdateStatusCount" +"GET","/deviceManagement/managedDeviceOverview","keep",,"Get-MgDeviceManagementManagedDeviceOverview","Get-MgDeviceManagementManagedDeviceOverview" +"GET","/deviceManagement/managedDevices","keep",,"Get-MgDeviceManagementManagedDevice","Get-MgDeviceManagementManagedDevice" +"GET","/deviceManagement/managedDevices/{param}","keep",,"Get-MgDeviceManagementManagedDevice","Get-MgDeviceManagementManagedDevice" +"GET","/deviceManagement/managedDevices/{param}/deviceCategory","keep",,"Get-MgDeviceManagementManagedDeviceCategory","Get-MgDeviceManagementManagedDeviceCategory" +"GET","/deviceManagement/managedDevices/{param}/deviceCategory/$ref","keep",,"Get-MgDeviceManagementManagedDeviceCategoryByRef","Get-MgDeviceManagementManagedDeviceCategoryByRef" +"GET","/deviceManagement/managedDevices/{param}/deviceCompliancePolicyStates","keep",,"Get-MgDeviceManagementManagedDeviceCompliancePolicyState","Get-MgDeviceManagementManagedDeviceCompliancePolicyState" +"GET","/deviceManagement/managedDevices/{param}/deviceCompliancePolicyStates/{param}","keep",,"Get-MgDeviceManagementManagedDeviceCompliancePolicyState","Get-MgDeviceManagementManagedDeviceCompliancePolicyState" +"GET","/deviceManagement/managedDevices/{param}/deviceCompliancePolicyStates/$count","keep",,"Get-MgDeviceManagementManagedDeviceCompliancePolicyStateCount","Get-MgDeviceManagementManagedDeviceCompliancePolicyStateCount" +"GET","/deviceManagement/managedDevices/{param}/deviceConfigurationStates","keep",,"Get-MgDeviceManagementManagedDeviceConfigurationState","Get-MgDeviceManagementManagedDeviceConfigurationState" +"GET","/deviceManagement/managedDevices/{param}/deviceConfigurationStates/{param}","keep",,"Get-MgDeviceManagementManagedDeviceConfigurationState","Get-MgDeviceManagementManagedDeviceConfigurationState" +"GET","/deviceManagement/managedDevices/{param}/deviceConfigurationStates/$count","keep",,"Get-MgDeviceManagementManagedDeviceConfigurationStateCount","Get-MgDeviceManagementManagedDeviceConfigurationStateCount" +"GET","/deviceManagement/managedDevices/{param}/logCollectionRequests","keep",,"Get-MgDeviceManagementManagedDeviceLogCollectionRequest","Get-MgDeviceManagementManagedDeviceLogCollectionRequest" +"GET","/deviceManagement/managedDevices/{param}/logCollectionRequests/{param}","keep",,"Get-MgDeviceManagementManagedDeviceLogCollectionRequest","Get-MgDeviceManagementManagedDeviceLogCollectionRequest" +"GET","/deviceManagement/managedDevices/{param}/logCollectionRequests/$count","keep",,"Get-MgDeviceManagementManagedDeviceLogCollectionRequestCount","Get-MgDeviceManagementManagedDeviceLogCollectionRequestCount" +"GET","/deviceManagement/managedDevices/{param}/users","keep",,"Get-MgDeviceManagementManagedDeviceUser","Get-MgDeviceManagementManagedDeviceUser" +"GET","/deviceManagement/managedDevices/{param}/windowsProtectionState","keep",,"Get-MgDeviceManagementManagedDeviceWindowsProtectionState","Get-MgDeviceManagementManagedDeviceWindowsProtectionState" +"GET","/deviceManagement/managedDevices/{param}/windowsProtectionState/detectedMalwareState","keep",,"Get-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState","Get-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState" +"GET","/deviceManagement/managedDevices/{param}/windowsProtectionState/detectedMalwareState/{param}","keep",,"Get-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState","Get-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState" +"GET","/deviceManagement/managedDevices/{param}/windowsProtectionState/detectedMalwareState/$count","keep",,"Get-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareStateCount","Get-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareStateCount" +"GET","/deviceManagement/managedDevices/$count","keep",,"Get-MgDeviceManagementManagedDeviceCount","Get-MgDeviceManagementManagedDeviceCount" +"GET","/deviceManagement/mobileAppTroubleshootingEvents","keep",,"Get-MgDeviceManagementMobileAppTroubleshootingEvent","Get-MgDeviceManagementMobileAppTroubleshootingEvent" +"GET","/deviceManagement/mobileAppTroubleshootingEvents/{param}","keep",,"Get-MgDeviceManagementMobileAppTroubleshootingEvent","Get-MgDeviceManagementMobileAppTroubleshootingEvent" +"GET","/deviceManagement/mobileAppTroubleshootingEvents/{param}/appLogCollectionRequests","keep",,"Get-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest","Get-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest" +"GET","/deviceManagement/mobileAppTroubleshootingEvents/{param}/appLogCollectionRequests/{param}","keep",,"Get-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest","Get-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest" +"GET","/deviceManagement/mobileAppTroubleshootingEvents/{param}/appLogCollectionRequests/$count","keep",,"Get-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestCount","Get-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestCount" +"GET","/deviceManagement/mobileAppTroubleshootingEvents/$count","keep",,"Get-MgDeviceManagementMobileAppTroubleshootingEventCount","Get-MgDeviceManagementMobileAppTroubleshootingEventCount" +"GET","/deviceManagement/mobileThreatDefenseConnectors","keep",,"Get-MgDeviceManagementMobileThreatDefenseConnector","Get-MgDeviceManagementMobileThreatDefenseConnector" +"GET","/deviceManagement/mobileThreatDefenseConnectors/{param}","keep",,"Get-MgDeviceManagementMobileThreatDefenseConnector","Get-MgDeviceManagementMobileThreatDefenseConnector" +"GET","/deviceManagement/mobileThreatDefenseConnectors/$count","keep",,"Get-MgDeviceManagementMobileThreatDefenseConnectorCount","Get-MgDeviceManagementMobileThreatDefenseConnectorCount" +"GET","/deviceManagement/notificationMessageTemplates","keep",,"Get-MgDeviceManagementNotificationMessageTemplate","Get-MgDeviceManagementNotificationMessageTemplate" +"GET","/deviceManagement/notificationMessageTemplates/{param}","keep",,"Get-MgDeviceManagementNotificationMessageTemplate","Get-MgDeviceManagementNotificationMessageTemplate" +"GET","/deviceManagement/notificationMessageTemplates/{param}/localizedNotificationMessages","keep",,"Get-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage","Get-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage" +"GET","/deviceManagement/notificationMessageTemplates/{param}/localizedNotificationMessages/{param}","keep",,"Get-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage","Get-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage" +"GET","/deviceManagement/notificationMessageTemplates/{param}/localizedNotificationMessages/$count","keep",,"Get-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessageCount","Get-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessageCount" +"GET","/deviceManagement/notificationMessageTemplates/$count","keep",,"Get-MgDeviceManagementNotificationMessageTemplateCount","Get-MgDeviceManagementNotificationMessageTemplateCount" +"GET","/deviceManagement/remoteAssistancePartners","keep",,"Get-MgDeviceManagementRemoteAssistancePartner","Get-MgDeviceManagementRemoteAssistancePartner" +"GET","/deviceManagement/remoteAssistancePartners/{param}","keep",,"Get-MgDeviceManagementRemoteAssistancePartner","Get-MgDeviceManagementRemoteAssistancePartner" +"GET","/deviceManagement/remoteAssistancePartners/$count","keep",,"Get-MgDeviceManagementRemoteAssistancePartnerCount","Get-MgDeviceManagementRemoteAssistancePartnerCount" +"GET","/deviceManagement/reports","keep",,"Get-MgDeviceManagementReport","Get-MgDeviceManagementReport" +"GET","/deviceManagement/reports/exportJobs","keep",,"Get-MgDeviceManagementReportExportJob","Get-MgDeviceManagementReportExportJob" +"GET","/deviceManagement/reports/exportJobs/{param}","keep",,"Get-MgDeviceManagementReportExportJob","Get-MgDeviceManagementReportExportJob" +"GET","/deviceManagement/reports/exportJobs/$count","keep",,"Get-MgDeviceManagementReportExportJobCount","Get-MgDeviceManagementReportExportJobCount" +"GET","/deviceManagement/resourceOperations","keep",,"Get-MgDeviceManagementResourceOperation","Get-MgDeviceManagementResourceOperation" +"GET","/deviceManagement/resourceOperations/{param}","keep",,"Get-MgDeviceManagementResourceOperation","Get-MgDeviceManagementResourceOperation" +"GET","/deviceManagement/resourceOperations/$count","keep",,"Get-MgDeviceManagementResourceOperationCount","Get-MgDeviceManagementResourceOperationCount" +"GET","/deviceManagement/roleAssignments","keep",,"Get-MgDeviceManagementRoleAssignment","Get-MgDeviceManagementRoleAssignment" +"GET","/deviceManagement/roleAssignments/{param}","keep",,"Get-MgDeviceManagementRoleAssignment","Get-MgDeviceManagementRoleAssignment" +"GET","/deviceManagement/roleAssignments/{param}/roleDefinition","keep",,"Get-MgDeviceManagementRoleAssignmentRoleDefinition","Get-MgDeviceManagementRoleAssignmentRoleDefinition" +"GET","/deviceManagement/roleAssignments/$count","keep",,"Get-MgDeviceManagementRoleAssignmentCount","Get-MgDeviceManagementRoleAssignmentCount" +"GET","/deviceManagement/roleDefinitions","keep",,"Get-MgDeviceManagementRoleDefinition","Get-MgDeviceManagementRoleDefinition" +"GET","/deviceManagement/roleDefinitions/{param}","keep",,"Get-MgDeviceManagementRoleDefinition","Get-MgDeviceManagementRoleDefinition" +"GET","/deviceManagement/roleDefinitions/{param}/roleAssignments","keep",,"Get-MgDeviceManagementRoleDefinitionRoleAssignment","Get-MgDeviceManagementRoleDefinitionRoleAssignment" +"GET","/deviceManagement/roleDefinitions/{param}/roleAssignments/{param}","keep",,"Get-MgDeviceManagementRoleDefinitionRoleAssignment","Get-MgDeviceManagementRoleDefinitionRoleAssignment" +"GET","/deviceManagement/roleDefinitions/{param}/roleAssignments/{param}/roleDefinition","keep",,"Get-MgDeviceManagementRoleDefinitionRoleAssignmentRoleDefinition","Get-MgDeviceManagementRoleDefinitionRoleAssignmentRoleDefinition" +"GET","/deviceManagement/roleDefinitions/{param}/roleAssignments/$count","keep",,"Get-MgDeviceManagementRoleDefinitionRoleAssignmentCount","Get-MgDeviceManagementRoleDefinitionRoleAssignmentCount" +"GET","/deviceManagement/roleDefinitions/$count","keep",,"Get-MgDeviceManagementRoleDefinitionCount","Get-MgDeviceManagementRoleDefinitionCount" +"GET","/deviceManagement/softwareUpdateStatusSummary","keep",,"Get-MgDeviceManagementSoftwareUpdateStatusSummary","Get-MgDeviceManagementSoftwareUpdateStatusSummary" +"GET","/deviceManagement/termsAndConditions","keep",,"Get-MgDeviceManagementTermAndCondition","Get-MgDeviceManagementTermAndCondition" +"GET","/deviceManagement/termsAndConditions/{param}","keep",,"Get-MgDeviceManagementTermAndCondition","Get-MgDeviceManagementTermAndCondition" +"GET","/deviceManagement/termsAndConditions/{param}/acceptanceStatuses","keep",,"Get-MgDeviceManagementTermAndConditionAcceptanceStatus","Get-MgDeviceManagementTermAndConditionAcceptanceStatus" +"GET","/deviceManagement/termsAndConditions/{param}/acceptanceStatuses/{param}","keep",,"Get-MgDeviceManagementTermAndConditionAcceptanceStatus","Get-MgDeviceManagementTermAndConditionAcceptanceStatus" +"GET","/deviceManagement/termsAndConditions/{param}/acceptanceStatuses/{param}/termsAndConditions","keep",,"Get-MgDeviceManagementTermAndConditionAcceptanceStatusTermAndCondition","Get-MgDeviceManagementTermAndConditionAcceptanceStatusTermAndCondition" +"GET","/deviceManagement/termsAndConditions/{param}/acceptanceStatuses/$count","keep",,"Get-MgDeviceManagementTermAndConditionAcceptanceStatusCount","Get-MgDeviceManagementTermAndConditionAcceptanceStatusCount" +"GET","/deviceManagement/termsAndConditions/{param}/assignments","keep",,"Get-MgDeviceManagementTermAndConditionAssignment","Get-MgDeviceManagementTermAndConditionAssignment" +"GET","/deviceManagement/termsAndConditions/{param}/assignments/{param}","keep",,"Get-MgDeviceManagementTermAndConditionAssignment","Get-MgDeviceManagementTermAndConditionAssignment" +"GET","/deviceManagement/termsAndConditions/{param}/assignments/$count","keep",,"Get-MgDeviceManagementTermAndConditionAssignmentCount","Get-MgDeviceManagementTermAndConditionAssignmentCount" +"GET","/deviceManagement/termsAndConditions/$count","keep",,"Get-MgDeviceManagementTermAndConditionCount","Get-MgDeviceManagementTermAndConditionCount" +"GET","/deviceManagement/troubleshootingEvents","keep",,"Get-MgDeviceManagementTroubleshootingEvent","Get-MgDeviceManagementTroubleshootingEvent" +"GET","/deviceManagement/troubleshootingEvents/{param}","keep",,"Get-MgDeviceManagementTroubleshootingEvent","Get-MgDeviceManagementTroubleshootingEvent" +"GET","/deviceManagement/troubleshootingEvents/$count","keep",,"Get-MgDeviceManagementTroubleshootingEventCount","Get-MgDeviceManagementTroubleshootingEventCount" +"GET","/deviceManagement/userExperienceAnalyticsSummarizeWorkFromAnywhereDevices","rename","ExperienceDeviceManagement","Get-MgDeviceManagementUserExperienceAnalyticsSummarizeWorkFromAnywhereDevices","Invoke-MgExperienceDeviceManagement" +"GET","/deviceManagement/virtualEndpoint","keep",,"Get-MgDeviceManagementVirtualEndpoint","Get-MgDeviceManagementVirtualEndpoint" +"GET","/deviceManagement/virtualEndpoint/auditEvents","keep",,"Get-MgDeviceManagementVirtualEndpointAuditEvent","Get-MgDeviceManagementVirtualEndpointAuditEvent" +"GET","/deviceManagement/virtualEndpoint/auditEvents/{param}","keep",,"Get-MgDeviceManagementVirtualEndpointAuditEvent","Get-MgDeviceManagementVirtualEndpointAuditEvent" +"GET","/deviceManagement/virtualEndpoint/auditEvents/$count","keep",,"Get-MgDeviceManagementVirtualEndpointAuditEventCount","Get-MgDeviceManagementVirtualEndpointAuditEventCount" +"GET","/deviceManagement/virtualEndpoint/auditEvents/getAuditActivityTypes","rename","DeviceManagementVirtualEndpointAuditEventAuditActivityType","Get-MgDeviceManagementVirtualEndpointAuditEventGetAuditActivityTypes","Get-MgDeviceManagementVirtualEndpointAuditEventAuditActivityType" +"GET","/deviceManagement/virtualEndpoint/cloudPCs","rename","DeviceManagementVirtualEndpointCloudPc","Get-MgDeviceManagementVirtualEndpointCloudPCs","Get-MgDeviceManagementVirtualEndpointCloudPc" +"GET","/deviceManagement/virtualEndpoint/cloudPCs/{param}","rename","DeviceManagementVirtualEndpointCloudPc","Get-MgDeviceManagementVirtualEndpointCloudPCs","Get-MgDeviceManagementVirtualEndpointCloudPc" +"GET","/deviceManagement/virtualEndpoint/cloudPCs/{param}/retrieveCloudPcLaunchDetail","rename","DeviceManagementVirtualEndpointCloudPcLaunchDetail","Get-MgDeviceManagementVirtualEndpointCloudPCsRetrieveCloudPcLaunchDetail","Get-MgDeviceManagementVirtualEndpointCloudPcLaunchDetail" +"GET","/deviceManagement/virtualEndpoint/cloudPCs/$count","rename","DeviceManagementVirtualEndpointCloudPcCount","Get-MgDeviceManagementVirtualEndpointCloudPCsCount","Get-MgDeviceManagementVirtualEndpointCloudPcCount" +"GET","/deviceManagement/virtualEndpoint/deviceImages","keep",,"Get-MgDeviceManagementVirtualEndpointDeviceImage","Get-MgDeviceManagementVirtualEndpointDeviceImage" +"GET","/deviceManagement/virtualEndpoint/deviceImages/{param}","keep",,"Get-MgDeviceManagementVirtualEndpointDeviceImage","Get-MgDeviceManagementVirtualEndpointDeviceImage" +"GET","/deviceManagement/virtualEndpoint/deviceImages/$count","keep",,"Get-MgDeviceManagementVirtualEndpointDeviceImageCount","Get-MgDeviceManagementVirtualEndpointDeviceImageCount" +"GET","/deviceManagement/virtualEndpoint/deviceImages/getSourceImages","rename","DeviceManagementVirtualEndpointDeviceImageSourceImage","Get-MgDeviceManagementVirtualEndpointDeviceImageGetSourceImages","Get-MgDeviceManagementVirtualEndpointDeviceImageSourceImage" +"GET","/deviceManagement/virtualEndpoint/galleryImages","keep",,"Get-MgDeviceManagementVirtualEndpointGalleryImage","Get-MgDeviceManagementVirtualEndpointGalleryImage" +"GET","/deviceManagement/virtualEndpoint/galleryImages/{param}","keep",,"Get-MgDeviceManagementVirtualEndpointGalleryImage","Get-MgDeviceManagementVirtualEndpointGalleryImage" +"GET","/deviceManagement/virtualEndpoint/galleryImages/$count","keep",,"Get-MgDeviceManagementVirtualEndpointGalleryImageCount","Get-MgDeviceManagementVirtualEndpointGalleryImageCount" +"GET","/deviceManagement/virtualEndpoint/onPremisesConnections","keep",,"Get-MgDeviceManagementVirtualEndpointOnPremiseConnection","Get-MgDeviceManagementVirtualEndpointOnPremiseConnection" +"GET","/deviceManagement/virtualEndpoint/onPremisesConnections/{param}","keep",,"Get-MgDeviceManagementVirtualEndpointOnPremiseConnection","Get-MgDeviceManagementVirtualEndpointOnPremiseConnection" +"GET","/deviceManagement/virtualEndpoint/onPremisesConnections/$count","keep",,"Get-MgDeviceManagementVirtualEndpointOnPremiseConnectionCount","Get-MgDeviceManagementVirtualEndpointOnPremiseConnectionCount" +"GET","/deviceManagement/virtualEndpoint/provisioningPolicies","keep",,"Get-MgDeviceManagementVirtualEndpointProvisioningPolicy","Get-MgDeviceManagementVirtualEndpointProvisioningPolicy" +"GET","/deviceManagement/virtualEndpoint/provisioningPolicies/{param}","keep",,"Get-MgDeviceManagementVirtualEndpointProvisioningPolicy","Get-MgDeviceManagementVirtualEndpointProvisioningPolicy" +"GET","/deviceManagement/virtualEndpoint/provisioningPolicies/{param}/assignments","keep",,"Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment","Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment" +"GET","/deviceManagement/virtualEndpoint/provisioningPolicies/{param}/assignments/{param}","keep",,"Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment","Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment" +"GET","/deviceManagement/virtualEndpoint/provisioningPolicies/{param}/assignments/{param}/assignedUsers","keep",,"Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUser","Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUser" +"GET","/deviceManagement/virtualEndpoint/provisioningPolicies/{param}/assignments/{param}/assignedUsers/{param}","keep",,"Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUser","Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUser" +"GET","/deviceManagement/virtualEndpoint/provisioningPolicies/{param}/assignments/{param}/assignedUsers/{param}/mailboxSettings","keep",,"Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserMailboxSetting","Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserMailboxSetting" +"GET","/deviceManagement/virtualEndpoint/provisioningPolicies/{param}/assignments/{param}/assignedUsers/{param}/serviceProvisioningErrors","keep",,"Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserServiceProvisioningError","Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserServiceProvisioningError" +"GET","/deviceManagement/virtualEndpoint/provisioningPolicies/{param}/assignments/{param}/assignedUsers/{param}/serviceProvisioningErrors/$count","keep",,"Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserServiceProvisioningErrorCount","Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserServiceProvisioningErrorCount" +"GET","/deviceManagement/virtualEndpoint/provisioningPolicies/{param}/assignments/{param}/assignedUsers/$count","keep",,"Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserCount","Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserCount" +"GET","/deviceManagement/virtualEndpoint/provisioningPolicies/{param}/assignments/$count","keep",,"Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentCount","Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentCount" +"GET","/deviceManagement/virtualEndpoint/provisioningPolicies/$count","keep",,"Get-MgDeviceManagementVirtualEndpointProvisioningPolicyCount","Get-MgDeviceManagementVirtualEndpointProvisioningPolicyCount" +"GET","/deviceManagement/virtualEndpoint/report","keep",,"Get-MgDeviceManagementVirtualEndpointReport","Get-MgDeviceManagementVirtualEndpointReport" +"GET","/deviceManagement/virtualEndpoint/servicePlans","keep",,"Get-MgDeviceManagementVirtualEndpointServicePlan","Get-MgDeviceManagementVirtualEndpointServicePlan" +"GET","/deviceManagement/virtualEndpoint/servicePlans/{param}","keep",,"Get-MgDeviceManagementVirtualEndpointServicePlan","Get-MgDeviceManagementVirtualEndpointServicePlan" +"GET","/deviceManagement/virtualEndpoint/servicePlans/$count","keep",,"Get-MgDeviceManagementVirtualEndpointServicePlanCount","Get-MgDeviceManagementVirtualEndpointServicePlanCount" +"GET","/deviceManagement/virtualEndpoint/userSettings","keep",,"Get-MgDeviceManagementVirtualEndpointUserSetting","Get-MgDeviceManagementVirtualEndpointUserSetting" +"GET","/deviceManagement/virtualEndpoint/userSettings/{param}","keep",,"Get-MgDeviceManagementVirtualEndpointUserSetting","Get-MgDeviceManagementVirtualEndpointUserSetting" +"GET","/deviceManagement/virtualEndpoint/userSettings/{param}/assignments","keep",,"Get-MgDeviceManagementVirtualEndpointUserSettingAssignment","Get-MgDeviceManagementVirtualEndpointUserSettingAssignment" +"GET","/deviceManagement/virtualEndpoint/userSettings/{param}/assignments/{param}","keep",,"Get-MgDeviceManagementVirtualEndpointUserSettingAssignment","Get-MgDeviceManagementVirtualEndpointUserSettingAssignment" +"GET","/deviceManagement/virtualEndpoint/userSettings/{param}/assignments/$count","keep",,"Get-MgDeviceManagementVirtualEndpointUserSettingAssignmentCount","Get-MgDeviceManagementVirtualEndpointUserSettingAssignmentCount" +"GET","/deviceManagement/virtualEndpoint/userSettings/$count","keep",,"Get-MgDeviceManagementVirtualEndpointUserSettingCount","Get-MgDeviceManagementVirtualEndpointUserSettingCount" +"GET","/deviceManagement/windowsAutopilotDeviceIdentities","keep",,"Get-MgDeviceManagementWindowsAutopilotDeviceIdentity","Get-MgDeviceManagementWindowsAutopilotDeviceIdentity" +"GET","/deviceManagement/windowsAutopilotDeviceIdentities/{param}","keep",,"Get-MgDeviceManagementWindowsAutopilotDeviceIdentity","Get-MgDeviceManagementWindowsAutopilotDeviceIdentity" +"GET","/deviceManagement/windowsAutopilotDeviceIdentities/$count","keep",,"Get-MgDeviceManagementWindowsAutopilotDeviceIdentityCount","Get-MgDeviceManagementWindowsAutopilotDeviceIdentityCount" +"GET","/deviceManagement/windowsInformationProtectionAppLearningSummaries","keep",,"Get-MgDeviceManagementWindowsInformationProtectionAppLearningSummary","Get-MgDeviceManagementWindowsInformationProtectionAppLearningSummary" +"GET","/deviceManagement/windowsInformationProtectionAppLearningSummaries/{param}","keep",,"Get-MgDeviceManagementWindowsInformationProtectionAppLearningSummary","Get-MgDeviceManagementWindowsInformationProtectionAppLearningSummary" +"GET","/deviceManagement/windowsInformationProtectionAppLearningSummaries/$count","keep",,"Get-MgDeviceManagementWindowsInformationProtectionAppLearningSummaryCount","Get-MgDeviceManagementWindowsInformationProtectionAppLearningSummaryCount" +"GET","/deviceManagement/windowsInformationProtectionNetworkLearningSummaries","keep",,"Get-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary","Get-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary" +"GET","/deviceManagement/windowsInformationProtectionNetworkLearningSummaries/{param}","keep",,"Get-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary","Get-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary" +"GET","/deviceManagement/windowsInformationProtectionNetworkLearningSummaries/$count","keep",,"Get-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummaryCount","Get-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummaryCount" +"GET","/deviceManagement/windowsMalwareInformation","keep",,"Get-MgDeviceManagementWindowsMalwareInformation","Get-MgDeviceManagementWindowsMalwareInformation" +"GET","/deviceManagement/windowsMalwareInformation/{param}","keep",,"Get-MgDeviceManagementWindowsMalwareInformation","Get-MgDeviceManagementWindowsMalwareInformation" +"GET","/deviceManagement/windowsMalwareInformation/{param}/deviceMalwareStates","keep",,"Get-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState","Get-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState" +"GET","/deviceManagement/windowsMalwareInformation/{param}/deviceMalwareStates/{param}","keep",,"Get-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState","Get-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState" +"GET","/deviceManagement/windowsMalwareInformation/{param}/deviceMalwareStates/$count","keep",,"Get-MgDeviceManagementWindowsMalwareInformationDeviceMalwareStateCount","Get-MgDeviceManagementWindowsMalwareInformationDeviceMalwareStateCount" +"GET","/deviceManagement/windowsMalwareInformation/$count","keep",,"Get-MgDeviceManagementWindowsMalwareInformationCount","Get-MgDeviceManagementWindowsMalwareInformationCount" +"GET","/devices","keep",,"Get-MgDevice","Get-MgDevice" +"GET","/devices/{param}","keep",,"Get-MgDevice","Get-MgDevice" +"GET","/devices/{param}/extensions","keep",,"Get-MgDeviceExtension","Get-MgDeviceExtension" +"GET","/devices/{param}/extensions/{param}","keep",,"Get-MgDeviceExtension","Get-MgDeviceExtension" +"GET","/devices/{param}/extensions/$count","keep",,"Get-MgDeviceExtensionCount","Get-MgDeviceExtensionCount" +"GET","/devices/{param}/memberOf","keep",,"Get-MgDeviceMemberOf","Get-MgDeviceMemberOf" +"GET","/devices/{param}/memberOf/{param}","keep",,"Get-MgDeviceMemberOf","Get-MgDeviceMemberOf" +"GET","/devices/{param}/memberOf/$count","keep",,"Get-MgDeviceMemberOfCount","Get-MgDeviceMemberOfCount" +"GET","/devices/{param}/registeredOwners","keep",,"Get-MgDeviceRegisteredOwner","Get-MgDeviceRegisteredOwner" +"GET","/devices/{param}/registeredOwners/$count","keep",,"Get-MgDeviceRegisteredOwnerCount","Get-MgDeviceRegisteredOwnerCount" +"GET","/devices/{param}/registeredOwners/$ref","keep",,"Get-MgDeviceRegisteredOwnerByRef","Get-MgDeviceRegisteredOwnerByRef" +"GET","/devices/{param}/registeredUsers","keep",,"Get-MgDeviceRegisteredUser","Get-MgDeviceRegisteredUser" +"GET","/devices/{param}/registeredUsers/$count","keep",,"Get-MgDeviceRegisteredUserCount","Get-MgDeviceRegisteredUserCount" +"GET","/devices/{param}/registeredUsers/$ref","keep",,"Get-MgDeviceRegisteredUserByRef","Get-MgDeviceRegisteredUserByRef" +"GET","/devices/{param}/transitiveMemberOf","keep",,"Get-MgDeviceTransitiveMemberOf","Get-MgDeviceTransitiveMemberOf" +"GET","/devices/{param}/transitiveMemberOf/{param}","keep",,"Get-MgDeviceTransitiveMemberOf","Get-MgDeviceTransitiveMemberOf" +"GET","/devices/{param}/transitiveMemberOf/$count","keep",,"Get-MgDeviceTransitiveMemberOfCount","Get-MgDeviceTransitiveMemberOfCount" +"GET","/devices/$count","keep",,"Get-MgDeviceCount","Get-MgDeviceCount" +"GET","/devices/delta","keep",,"Get-MgDeviceDelta","Get-MgDeviceDelta" +"GET","/directory","keep",,"Get-MgDirectory","Get-MgDirectory" +"GET","/directory/administrativeUnits","keep",,"Get-MgDirectoryAdministrativeUnit","Get-MgDirectoryAdministrativeUnit" +"GET","/directory/administrativeUnits/{param}","keep",,"Get-MgDirectoryAdministrativeUnit","Get-MgDirectoryAdministrativeUnit" +"GET","/directory/administrativeUnits/{param}/extensions","keep",,"Get-MgDirectoryAdministrativeUnitExtension","Get-MgDirectoryAdministrativeUnitExtension" +"GET","/directory/administrativeUnits/{param}/extensions/{param}","keep",,"Get-MgDirectoryAdministrativeUnitExtension","Get-MgDirectoryAdministrativeUnitExtension" +"GET","/directory/administrativeUnits/{param}/extensions/$count","keep",,"Get-MgDirectoryAdministrativeUnitExtensionCount","Get-MgDirectoryAdministrativeUnitExtensionCount" +"GET","/directory/administrativeUnits/{param}/members","keep",,"Get-MgDirectoryAdministrativeUnitMember","Get-MgDirectoryAdministrativeUnitMember" +"GET","/directory/administrativeUnits/{param}/members/$count","keep",,"Get-MgDirectoryAdministrativeUnitMemberCount","Get-MgDirectoryAdministrativeUnitMemberCount" +"GET","/directory/administrativeUnits/{param}/members/$ref","keep",,"Get-MgDirectoryAdministrativeUnitMemberByRef","Get-MgDirectoryAdministrativeUnitMemberByRef" +"GET","/directory/administrativeUnits/{param}/scopedRoleMembers","keep",,"Get-MgDirectoryAdministrativeUnitScopedRoleMember","Get-MgDirectoryAdministrativeUnitScopedRoleMember" +"GET","/directory/administrativeUnits/{param}/scopedRoleMembers/{param}","keep",,"Get-MgDirectoryAdministrativeUnitScopedRoleMember","Get-MgDirectoryAdministrativeUnitScopedRoleMember" +"GET","/directory/administrativeUnits/{param}/scopedRoleMembers/$count","keep",,"Get-MgDirectoryAdministrativeUnitScopedRoleMemberCount","Get-MgDirectoryAdministrativeUnitScopedRoleMemberCount" +"GET","/directory/administrativeUnits/$count","keep",,"Get-MgDirectoryAdministrativeUnitCount","Get-MgDirectoryAdministrativeUnitCount" +"GET","/directory/administrativeUnits/delta","keep",,"Get-MgDirectoryAdministrativeUnitDelta","Get-MgDirectoryAdministrativeUnitDelta" +"GET","/directory/attributeSets","keep",,"Get-MgDirectoryAttributeSet","Get-MgDirectoryAttributeSet" +"GET","/directory/attributeSets/{param}","keep",,"Get-MgDirectoryAttributeSet","Get-MgDirectoryAttributeSet" +"GET","/directory/attributeSets/$count","keep",,"Get-MgDirectoryAttributeSetCount","Get-MgDirectoryAttributeSetCount" +"GET","/directory/customSecurityAttributeDefinitions","keep",,"Get-MgDirectoryCustomSecurityAttributeDefinition","Get-MgDirectoryCustomSecurityAttributeDefinition" +"GET","/directory/customSecurityAttributeDefinitions/{param}","keep",,"Get-MgDirectoryCustomSecurityAttributeDefinition","Get-MgDirectoryCustomSecurityAttributeDefinition" +"GET","/directory/customSecurityAttributeDefinitions/{param}/allowedValues","keep",,"Get-MgDirectoryCustomSecurityAttributeDefinitionAllowedValue","Get-MgDirectoryCustomSecurityAttributeDefinitionAllowedValue" +"GET","/directory/customSecurityAttributeDefinitions/{param}/allowedValues/{param}","keep",,"Get-MgDirectoryCustomSecurityAttributeDefinitionAllowedValue","Get-MgDirectoryCustomSecurityAttributeDefinitionAllowedValue" +"GET","/directory/customSecurityAttributeDefinitions/{param}/allowedValues/$count","keep",,"Get-MgDirectoryCustomSecurityAttributeDefinitionAllowedValueCount","Get-MgDirectoryCustomSecurityAttributeDefinitionAllowedValueCount" +"GET","/directory/customSecurityAttributeDefinitions/$count","keep",,"Get-MgDirectoryCustomSecurityAttributeDefinitionCount","Get-MgDirectoryCustomSecurityAttributeDefinitionCount" +"GET","/directory/deletedItems","defer-crosspath",,"Get-MgDirectoryDeletedItem","Get-MgDirectoryDeletedItem ships from a different uri" +"GET","/directory/deletedItems/{param}","keep",,"Get-MgDirectoryDeletedItem","Get-MgDirectoryDeletedItem" +"GET","/directory/deletedItems/$count","suppress",,"Get-MgDirectoryDeletedItemCount","no oracle row for GET /directory/deletedItems/$count and 'Get-MgDirectoryDeletedItemCount' unshipped" +"GET","/directory/deviceLocalCredentials","keep",,"Get-MgDirectoryDeviceLocalCredential","Get-MgDirectoryDeviceLocalCredential" +"GET","/directory/deviceLocalCredentials/{param}","keep",,"Get-MgDirectoryDeviceLocalCredential","Get-MgDirectoryDeviceLocalCredential" +"GET","/directory/deviceLocalCredentials/$count","keep",,"Get-MgDirectoryDeviceLocalCredentialCount","Get-MgDirectoryDeviceLocalCredentialCount" +"GET","/directory/federationConfigurations","keep",,"Get-MgDirectoryFederationConfiguration","Get-MgDirectoryFederationConfiguration" +"GET","/directory/federationConfigurations/{param}","keep",,"Get-MgDirectoryFederationConfiguration","Get-MgDirectoryFederationConfiguration" +"GET","/directory/federationConfigurations/$count","keep",,"Get-MgDirectoryFederationConfigurationCount","Get-MgDirectoryFederationConfigurationCount" +"GET","/directory/federationConfigurations/availableProviderTypes","rename","AvailableDirectoryFederationConfigurationProviderType","Get-MgDirectoryFederationConfigurationAvailableProviderTypes","Invoke-MgAvailableDirectoryFederationConfigurationProviderType" +"GET","/directory/onPremisesSynchronization","keep",,"Get-MgDirectoryOnPremiseSynchronization","Get-MgDirectoryOnPremiseSynchronization" +"GET","/directory/onPremisesSynchronization/{param}","keep",,"Get-MgDirectoryOnPremiseSynchronization","Get-MgDirectoryOnPremiseSynchronization" +"GET","/directory/onPremisesSynchronization/$count","keep",,"Get-MgDirectoryOnPremiseSynchronizationCount","Get-MgDirectoryOnPremiseSynchronizationCount" +"GET","/directory/publicKeyInfrastructure","keep",,"Get-MgDirectoryPublicKeyInfrastructure","Get-MgDirectoryPublicKeyInfrastructure" +"GET","/directory/publicKeyInfrastructure/certificateBasedAuthConfigurations","keep",,"Get-MgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfiguration","Get-MgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfiguration" +"GET","/directory/publicKeyInfrastructure/certificateBasedAuthConfigurations/{param}","keep",,"Get-MgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfiguration","Get-MgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfiguration" +"GET","/directory/publicKeyInfrastructure/certificateBasedAuthConfigurations/{param}/certificateAuthorities","keep",,"Get-MgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfigurationCertificateAuthority","Get-MgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfigurationCertificateAuthority" +"GET","/directory/publicKeyInfrastructure/certificateBasedAuthConfigurations/{param}/certificateAuthorities/{param}","keep",,"Get-MgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfigurationCertificateAuthority","Get-MgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfigurationCertificateAuthority" +"GET","/directory/publicKeyInfrastructure/certificateBasedAuthConfigurations/{param}/certificateAuthorities/$count","keep",,"Get-MgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfigurationCertificateAuthorityCount","Get-MgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfigurationCertificateAuthorityCount" +"GET","/directory/publicKeyInfrastructure/certificateBasedAuthConfigurations/$count","keep",,"Get-MgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfigurationCount","Get-MgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfigurationCount" +"GET","/directory/recovery","keep",,"Get-MgDirectoryRecovery","Get-MgDirectoryRecovery" +"GET","/directory/recovery/jobs","keep",,"Get-MgDirectoryRecoveryJob","Get-MgDirectoryRecoveryJob" +"GET","/directory/recovery/jobs/{param}","keep",,"Get-MgDirectoryRecoveryJob","Get-MgDirectoryRecoveryJob" +"GET","/directory/recovery/jobs/$count","keep",,"Get-MgDirectoryRecoveryJobCount","Get-MgDirectoryRecoveryJobCount" +"GET","/directory/recovery/snapshots","keep",,"Get-MgDirectoryRecoverySnapshot","Get-MgDirectoryRecoverySnapshot" +"GET","/directory/recovery/snapshots/{param}","keep",,"Get-MgDirectoryRecoverySnapshot","Get-MgDirectoryRecoverySnapshot" +"GET","/directory/recovery/snapshots/{param}/recoveryJobs","keep",,"Get-MgDirectoryRecoverySnapshotRecoveryJob","Get-MgDirectoryRecoverySnapshotRecoveryJob" +"GET","/directory/recovery/snapshots/{param}/recoveryJobs/{param}","keep",,"Get-MgDirectoryRecoverySnapshotRecoveryJob","Get-MgDirectoryRecoverySnapshotRecoveryJob" +"GET","/directory/recovery/snapshots/{param}/recoveryJobs/$count","keep",,"Get-MgDirectoryRecoverySnapshotRecoveryJobCount","Get-MgDirectoryRecoverySnapshotRecoveryJobCount" +"GET","/directory/recovery/snapshots/{param}/recoveryPreviewJobs","keep",,"Get-MgDirectoryRecoverySnapshotRecoveryPreviewJob","Get-MgDirectoryRecoverySnapshotRecoveryPreviewJob" +"GET","/directory/recovery/snapshots/{param}/recoveryPreviewJobs/{param}","keep",,"Get-MgDirectoryRecoverySnapshotRecoveryPreviewJob","Get-MgDirectoryRecoverySnapshotRecoveryPreviewJob" +"GET","/directory/recovery/snapshots/{param}/recoveryPreviewJobs/$count","keep",,"Get-MgDirectoryRecoverySnapshotRecoveryPreviewJobCount","Get-MgDirectoryRecoverySnapshotRecoveryPreviewJobCount" +"GET","/directory/recovery/snapshots/$count","keep",,"Get-MgDirectoryRecoverySnapshotCount","Get-MgDirectoryRecoverySnapshotCount" +"GET","/directory/subscriptions","keep",,"Get-MgDirectorySubscription","Get-MgDirectorySubscription" +"GET","/directory/subscriptions/{param}","keep",,"Get-MgDirectorySubscription","Get-MgDirectorySubscription" +"GET","/directory/subscriptions/$count","keep",,"Get-MgDirectorySubscriptionCount","Get-MgDirectorySubscriptionCount" +"GET","/directoryObjects","keep",,"Get-MgDirectoryObject","Get-MgDirectoryObject" +"GET","/directoryObjects/{param}","keep",,"Get-MgDirectoryObject","Get-MgDirectoryObject" +"GET","/directoryObjects/$count","keep",,"Get-MgDirectoryObjectCount","Get-MgDirectoryObjectCount" +"GET","/directoryObjects/delta","keep",,"Get-MgDirectoryObjectDelta","Get-MgDirectoryObjectDelta" +"GET","/directoryRoles","keep",,"Get-MgDirectoryRole","Get-MgDirectoryRole" +"GET","/directoryRoles/{param}","keep",,"Get-MgDirectoryRole","Get-MgDirectoryRole" +"GET","/directoryRoles/{param}/members","keep",,"Get-MgDirectoryRoleMember","Get-MgDirectoryRoleMember" +"GET","/directoryRoles/{param}/members/$count","keep",,"Get-MgDirectoryRoleMemberCount","Get-MgDirectoryRoleMemberCount" +"GET","/directoryRoles/{param}/members/$ref","keep",,"Get-MgDirectoryRoleMemberByRef","Get-MgDirectoryRoleMemberByRef" +"GET","/directoryRoles/{param}/scopedMembers","keep",,"Get-MgDirectoryRoleScopedMember","Get-MgDirectoryRoleScopedMember" +"GET","/directoryRoles/{param}/scopedMembers/{param}","keep",,"Get-MgDirectoryRoleScopedMember","Get-MgDirectoryRoleScopedMember" +"GET","/directoryRoles/{param}/scopedMembers/$count","keep",,"Get-MgDirectoryRoleScopedMemberCount","Get-MgDirectoryRoleScopedMemberCount" +"GET","/directoryRoles/$count","keep",,"Get-MgDirectoryRoleCount","Get-MgDirectoryRoleCount" +"GET","/directoryRoles/delta","keep",,"Get-MgDirectoryRoleDelta","Get-MgDirectoryRoleDelta" +"GET","/directoryRoleTemplates","keep",,"Get-MgDirectoryRoleTemplate","Get-MgDirectoryRoleTemplate" +"GET","/directoryRoleTemplates/{param}","keep",,"Get-MgDirectoryRoleTemplate","Get-MgDirectoryRoleTemplate" +"GET","/directoryRoleTemplates/$count","keep",,"Get-MgDirectoryRoleTemplateCount","Get-MgDirectoryRoleTemplateCount" +"GET","/directoryRoleTemplates/delta","keep",,"Get-MgDirectoryRoleTemplateDelta","Get-MgDirectoryRoleTemplateDelta" +"GET","/domains","keep",,"Get-MgDomain","Get-MgDomain" +"GET","/domains/{param}","keep",,"Get-MgDomain","Get-MgDomain" +"GET","/domains/{param}/domainNameReferences","keep",,"Get-MgDomainNameReference","Get-MgDomainNameReference" +"GET","/domains/{param}/domainNameReferences/{param}","keep",,"Get-MgDomainNameReference","Get-MgDomainNameReference" +"GET","/domains/{param}/domainNameReferences/$count","keep",,"Get-MgDomainNameReferenceCount","Get-MgDomainNameReferenceCount" +"GET","/domains/{param}/federationConfiguration","keep",,"Get-MgDomainFederationConfiguration","Get-MgDomainFederationConfiguration" +"GET","/domains/{param}/federationConfiguration/{param}","keep",,"Get-MgDomainFederationConfiguration","Get-MgDomainFederationConfiguration" +"GET","/domains/{param}/federationConfiguration/$count","keep",,"Get-MgDomainFederationConfigurationCount","Get-MgDomainFederationConfigurationCount" +"GET","/domains/{param}/rootDomain","keep",,"Get-MgDomainRootDomain","Get-MgDomainRootDomain" +"GET","/domains/{param}/serviceConfigurationRecords","keep",,"Get-MgDomainServiceConfigurationRecord","Get-MgDomainServiceConfigurationRecord" +"GET","/domains/{param}/serviceConfigurationRecords/{param}","keep",,"Get-MgDomainServiceConfigurationRecord","Get-MgDomainServiceConfigurationRecord" +"GET","/domains/{param}/serviceConfigurationRecords/$count","keep",,"Get-MgDomainServiceConfigurationRecordCount","Get-MgDomainServiceConfigurationRecordCount" +"GET","/domains/{param}/verificationDnsRecords","keep",,"Get-MgDomainVerificationDnsRecord","Get-MgDomainVerificationDnsRecord" +"GET","/domains/{param}/verificationDnsRecords/{param}","keep",,"Get-MgDomainVerificationDnsRecord","Get-MgDomainVerificationDnsRecord" +"GET","/domains/{param}/verificationDnsRecords/$count","keep",,"Get-MgDomainVerificationDnsRecordCount","Get-MgDomainVerificationDnsRecordCount" +"GET","/domains/$count","keep",,"Get-MgDomainCount","Get-MgDomainCount" +"GET","/drives","keep",,"Get-MgDrive","Get-MgDrive" +"GET","/drives/{param}","keep",,"Get-MgDrive","Get-MgDrive" +"GET","/drives/{param}/bundles","keep",,"Get-MgDriveBundle","Get-MgDriveBundle" +"GET","/drives/{param}/bundles/{param}","keep",,"Get-MgDriveBundle","Get-MgDriveBundle" +"GET","/drives/{param}/bundles/$count","keep",,"Get-MgDriveBundleCount","Get-MgDriveBundleCount" +"GET","/drives/{param}/createdByUser","keep",,"Get-MgDriveCreatedByUser","Get-MgDriveCreatedByUser" +"GET","/drives/{param}/createdByUser/mailboxSettings","keep",,"Get-MgDriveCreatedByUserMailboxSetting","Get-MgDriveCreatedByUserMailboxSetting" +"GET","/drives/{param}/createdByUser/serviceProvisioningErrors","keep",,"Get-MgDriveCreatedByUserServiceProvisioningError","Get-MgDriveCreatedByUserServiceProvisioningError" +"GET","/drives/{param}/createdByUser/serviceProvisioningErrors/$count","keep",,"Get-MgDriveCreatedByUserServiceProvisioningErrorCount","Get-MgDriveCreatedByUserServiceProvisioningErrorCount" +"GET","/drives/{param}/following","keep",,"Get-MgDriveFollowing","Get-MgDriveFollowing" +"GET","/drives/{param}/following/{param}","keep",,"Get-MgDriveFollowing","Get-MgDriveFollowing" +"GET","/drives/{param}/following/$count","keep",,"Get-MgDriveFollowingCount","Get-MgDriveFollowingCount" +"GET","/drives/{param}/items","keep",,"Get-MgDriveItem","Get-MgDriveItem" +"GET","/drives/{param}/items/{param}","keep",,"Get-MgDriveItem","Get-MgDriveItem" +"GET","/drives/{param}/items/{param}/analytics","keep",,"Get-MgDriveItemAnalytic","Get-MgDriveItemAnalytic" +"GET","/drives/{param}/items/{param}/analytics/allTime","rename","DriveItemAnalyticTime","Get-MgDriveItemAnalyticAllTime","Get-MgDriveItemAnalyticTime" +"GET","/drives/{param}/items/{param}/analytics/itemActivityStats","keep",,"Get-MgDriveItemAnalyticItemActivityStat","Get-MgDriveItemAnalyticItemActivityStat" +"GET","/drives/{param}/items/{param}/analytics/itemActivityStats/{param}","keep",,"Get-MgDriveItemAnalyticItemActivityStat","Get-MgDriveItemAnalyticItemActivityStat" +"GET","/drives/{param}/items/{param}/analytics/itemActivityStats/{param}/activities","keep",,"Get-MgDriveItemAnalyticItemActivityStatActivity","Get-MgDriveItemAnalyticItemActivityStatActivity" +"GET","/drives/{param}/items/{param}/analytics/itemActivityStats/{param}/activities/{param}","defer-crosspath",,"Get-MgDriveItemAnalyticItemActivityStatActivity","Get-MgDriveItemAnalyticItemActivityStatActivity ships from a different uri" +"GET","/drives/{param}/items/{param}/analytics/itemActivityStats/{param}/activities/{param}/driveItem","suppress",,"Get-MgDriveItemAnalyticItemActivityStatActivityDriveItem","no oracle row for GET /drives/{param}/items/{param}/analytics/itemActivityStats/{param}/activities/{param}/driveItem and 'Get-MgDriveItemAnalyticItemActivityStatActivityDriveItem' unshipped" +"GET","/drives/{param}/items/{param}/analytics/itemActivityStats/{param}/activities/$count","suppress",,"Get-MgDriveItemAnalyticItemActivityStatActivityCount","no oracle row for GET /drives/{param}/items/{param}/analytics/itemActivityStats/{param}/activities/$count and 'Get-MgDriveItemAnalyticItemActivityStatActivityCount' unshipped" +"GET","/drives/{param}/items/{param}/analytics/itemActivityStats/$count","keep",,"Get-MgDriveItemAnalyticItemActivityStatCount","Get-MgDriveItemAnalyticItemActivityStatCount" +"GET","/drives/{param}/items/{param}/analytics/lastSevenDays","keep",,"Get-MgDriveItemAnalyticLastSevenDay","Get-MgDriveItemAnalyticLastSevenDay" +"GET","/drives/{param}/items/{param}/children","keep",,"Get-MgDriveItemChild","Get-MgDriveItemChild" +"GET","/drives/{param}/items/{param}/children/{param}","keep",,"Get-MgDriveItemChild","Get-MgDriveItemChild" +"GET","/drives/{param}/items/{param}/children/$count","keep",,"Get-MgDriveItemChildCount","Get-MgDriveItemChildCount" +"GET","/drives/{param}/items/{param}/createdByUser","keep",,"Get-MgDriveItemCreatedByUser","Get-MgDriveItemCreatedByUser" +"GET","/drives/{param}/items/{param}/createdByUser/mailboxSettings","keep",,"Get-MgDriveItemCreatedByUserMailboxSetting","Get-MgDriveItemCreatedByUserMailboxSetting" +"GET","/drives/{param}/items/{param}/createdByUser/serviceProvisioningErrors","keep",,"Get-MgDriveItemCreatedByUserServiceProvisioningError","Get-MgDriveItemCreatedByUserServiceProvisioningError" +"GET","/drives/{param}/items/{param}/createdByUser/serviceProvisioningErrors/$count","keep",,"Get-MgDriveItemCreatedByUserServiceProvisioningErrorCount","Get-MgDriveItemCreatedByUserServiceProvisioningErrorCount" +"GET","/drives/{param}/items/{param}/delta","keep",,"Get-MgDriveItemDelta","Get-MgDriveItemDelta" +"GET","/drives/{param}/items/{param}/getActivitiesByInterval","rename","DriveItemActivityByInterval","Get-MgDriveItemGetActivitiesByInterval","Get-MgDriveItemActivityByInterval" +"GET","/drives/{param}/items/{param}/lastModifiedByUser","keep",,"Get-MgDriveItemLastModifiedByUser","Get-MgDriveItemLastModifiedByUser" +"GET","/drives/{param}/items/{param}/lastModifiedByUser/mailboxSettings","keep",,"Get-MgDriveItemLastModifiedByUserMailboxSetting","Get-MgDriveItemLastModifiedByUserMailboxSetting" +"GET","/drives/{param}/items/{param}/lastModifiedByUser/serviceProvisioningErrors","keep",,"Get-MgDriveItemLastModifiedByUserServiceProvisioningError","Get-MgDriveItemLastModifiedByUserServiceProvisioningError" +"GET","/drives/{param}/items/{param}/lastModifiedByUser/serviceProvisioningErrors/$count","keep",,"Get-MgDriveItemLastModifiedByUserServiceProvisioningErrorCount","Get-MgDriveItemLastModifiedByUserServiceProvisioningErrorCount" +"GET","/drives/{param}/items/{param}/listItem","keep",,"Get-MgDriveItemListItem","Get-MgDriveItemListItem" +"GET","/drives/{param}/items/{param}/permissions","keep",,"Get-MgDriveItemPermission","Get-MgDriveItemPermission" +"GET","/drives/{param}/items/{param}/permissions/{param}","keep",,"Get-MgDriveItemPermission","Get-MgDriveItemPermission" +"GET","/drives/{param}/items/{param}/permissions/$count","keep",,"Get-MgDriveItemPermissionCount","Get-MgDriveItemPermissionCount" +"GET","/drives/{param}/items/{param}/retentionLabel","keep",,"Get-MgDriveItemRetentionLabel","Get-MgDriveItemRetentionLabel" +"GET","/drives/{param}/items/{param}/subscriptions","keep",,"Get-MgDriveItemSubscription","Get-MgDriveItemSubscription" +"GET","/drives/{param}/items/{param}/subscriptions/{param}","keep",,"Get-MgDriveItemSubscription","Get-MgDriveItemSubscription" +"GET","/drives/{param}/items/{param}/subscriptions/$count","keep",,"Get-MgDriveItemSubscriptionCount","Get-MgDriveItemSubscriptionCount" +"GET","/drives/{param}/items/{param}/thumbnails","keep",,"Get-MgDriveItemThumbnail","Get-MgDriveItemThumbnail" +"GET","/drives/{param}/items/{param}/thumbnails/{param}","keep",,"Get-MgDriveItemThumbnail","Get-MgDriveItemThumbnail" +"GET","/drives/{param}/items/{param}/thumbnails/$count","keep",,"Get-MgDriveItemThumbnailCount","Get-MgDriveItemThumbnailCount" +"GET","/drives/{param}/items/{param}/versions","keep",,"Get-MgDriveItemVersion","Get-MgDriveItemVersion" +"GET","/drives/{param}/items/{param}/versions/{param}","keep",,"Get-MgDriveItemVersion","Get-MgDriveItemVersion" +"GET","/drives/{param}/items/{param}/versions/$count","keep",,"Get-MgDriveItemVersionCount","Get-MgDriveItemVersionCount" +"GET","/drives/{param}/items/{param}/workbook","suppress",,"Get-MgDriveItemWorkbook","no oracle row for GET /drives/{param}/items/{param}/workbook and 'Get-MgDriveItemWorkbook' unshipped" +"GET","/drives/{param}/items/{param}/workbook/application","suppress",,"Get-MgDriveItemWorkbookApplication","no oracle row for GET /drives/{param}/items/{param}/workbook/application and 'Get-MgDriveItemWorkbookApplication' unshipped" +"GET","/drives/{param}/items/{param}/workbook/comments","suppress",,"Get-MgDriveItemWorkbookComment","no oracle row for GET /drives/{param}/items/{param}/workbook/comments and 'Get-MgDriveItemWorkbookComment' unshipped" +"GET","/drives/{param}/items/{param}/workbook/comments/{param}","suppress",,"Get-MgDriveItemWorkbookComment","no oracle row for GET /drives/{param}/items/{param}/workbook/comments/{param} and 'Get-MgDriveItemWorkbookComment' unshipped" +"GET","/drives/{param}/items/{param}/workbook/comments/{param}/replies","suppress",,"Get-MgDriveItemWorkbookCommentReply","no oracle row for GET /drives/{param}/items/{param}/workbook/comments/{param}/replies and 'Get-MgDriveItemWorkbookCommentReply' unshipped" +"GET","/drives/{param}/items/{param}/workbook/comments/{param}/replies/{param}","suppress",,"Get-MgDriveItemWorkbookCommentReply","no oracle row for GET /drives/{param}/items/{param}/workbook/comments/{param}/replies/{param} and 'Get-MgDriveItemWorkbookCommentReply' unshipped" +"GET","/drives/{param}/items/{param}/workbook/comments/{param}/replies/$count","suppress",,"Get-MgDriveItemWorkbookCommentReplyCount","no oracle row for GET /drives/{param}/items/{param}/workbook/comments/{param}/replies/$count and 'Get-MgDriveItemWorkbookCommentReplyCount' unshipped" +"GET","/drives/{param}/items/{param}/workbook/comments/$count","suppress",,"Get-MgDriveItemWorkbookCommentCount","no oracle row for GET /drives/{param}/items/{param}/workbook/comments/$count and 'Get-MgDriveItemWorkbookCommentCount' unshipped" +"GET","/drives/{param}/items/{param}/workbook/functions","suppress",,"Get-MgDriveItemWorkbookFunction","no oracle row for GET /drives/{param}/items/{param}/workbook/functions and 'Get-MgDriveItemWorkbookFunction' unshipped" +"GET","/drives/{param}/items/{param}/workbook/names","suppress",,"Get-MgDriveItemWorkbookName","no oracle row for GET /drives/{param}/items/{param}/workbook/names and 'Get-MgDriveItemWorkbookName' unshipped" +"GET","/drives/{param}/items/{param}/workbook/names/{param}/range","suppress",,"Get-MgDriveItemWorkbookNameRange","no oracle row for GET /drives/{param}/items/{param}/workbook/names/{param}/range and 'Get-MgDriveItemWorkbookNameRange' unshipped" +"GET","/drives/{param}/items/{param}/workbook/names/{param}/range/columnsAfter","suppress",,"Get-MgDriveItemWorkbookNameRangeColumnsAfter","no oracle row for GET /drives/{param}/items/{param}/workbook/names/{param}/range/columnsAfter and 'Get-MgDriveItemWorkbookNameRangeColumnsAfter' unshipped" +"GET","/drives/{param}/items/{param}/workbook/names/{param}/range/columnsBefore","suppress",,"Get-MgDriveItemWorkbookNameRangeColumnsBefore","no oracle row for GET /drives/{param}/items/{param}/workbook/names/{param}/range/columnsBefore and 'Get-MgDriveItemWorkbookNameRangeColumnsBefore' unshipped" +"GET","/drives/{param}/items/{param}/workbook/names/{param}/range/entireColumn","suppress",,"Get-MgDriveItemWorkbookNameRangeEntireColumn","no oracle row for GET /drives/{param}/items/{param}/workbook/names/{param}/range/entireColumn and 'Get-MgDriveItemWorkbookNameRangeEntireColumn' unshipped" +"GET","/drives/{param}/items/{param}/workbook/names/{param}/range/entireRow","suppress",,"Get-MgDriveItemWorkbookNameRangeEntireRow","no oracle row for GET /drives/{param}/items/{param}/workbook/names/{param}/range/entireRow and 'Get-MgDriveItemWorkbookNameRangeEntireRow' unshipped" +"GET","/drives/{param}/items/{param}/workbook/names/{param}/range/lastCell","suppress",,"Get-MgDriveItemWorkbookNameRangeLastCell","no oracle row for GET /drives/{param}/items/{param}/workbook/names/{param}/range/lastCell and 'Get-MgDriveItemWorkbookNameRangeLastCell' unshipped" +"GET","/drives/{param}/items/{param}/workbook/names/{param}/range/lastColumn","suppress",,"Get-MgDriveItemWorkbookNameRangeLastColumn","no oracle row for GET /drives/{param}/items/{param}/workbook/names/{param}/range/lastColumn and 'Get-MgDriveItemWorkbookNameRangeLastColumn' unshipped" +"GET","/drives/{param}/items/{param}/workbook/names/{param}/range/lastRow","suppress",,"Get-MgDriveItemWorkbookNameRangeLastRow","no oracle row for GET /drives/{param}/items/{param}/workbook/names/{param}/range/lastRow and 'Get-MgDriveItemWorkbookNameRangeLastRow' unshipped" +"GET","/drives/{param}/items/{param}/workbook/names/{param}/range/rowsAbove","suppress",,"Get-MgDriveItemWorkbookNameRangeRowsAbove","no oracle row for GET /drives/{param}/items/{param}/workbook/names/{param}/range/rowsAbove and 'Get-MgDriveItemWorkbookNameRangeRowsAbove' unshipped" +"GET","/drives/{param}/items/{param}/workbook/names/{param}/range/rowsBelow","suppress",,"Get-MgDriveItemWorkbookNameRangeRowsBelow","no oracle row for GET /drives/{param}/items/{param}/workbook/names/{param}/range/rowsBelow and 'Get-MgDriveItemWorkbookNameRangeRowsBelow' unshipped" +"GET","/drives/{param}/items/{param}/workbook/names/{param}/range/usedRange","suppress",,"Get-MgDriveItemWorkbookNameRangeUsedRange","no oracle row for GET /drives/{param}/items/{param}/workbook/names/{param}/range/usedRange and 'Get-MgDriveItemWorkbookNameRangeUsedRange' unshipped" +"GET","/drives/{param}/items/{param}/workbook/names/{param}/range/visibleView","suppress",,"Get-MgDriveItemWorkbookNameRangeVisibleView","no oracle row for GET /drives/{param}/items/{param}/workbook/names/{param}/range/visibleView and 'Get-MgDriveItemWorkbookNameRangeVisibleView' unshipped" +"GET","/drives/{param}/items/{param}/workbook/names/{param}/worksheet","suppress",,"Get-MgDriveItemWorkbookNameWorksheet","no oracle row for GET /drives/{param}/items/{param}/workbook/names/{param}/worksheet and 'Get-MgDriveItemWorkbookNameWorksheet' unshipped" +"GET","/drives/{param}/items/{param}/workbook/names/$count","suppress",,"Get-MgDriveItemWorkbookNameCount","no oracle row for GET /drives/{param}/items/{param}/workbook/names/$count and 'Get-MgDriveItemWorkbookNameCount' unshipped" +"GET","/drives/{param}/items/{param}/workbook/operations","suppress",,"Get-MgDriveItemWorkbookOperation","no oracle row for GET /drives/{param}/items/{param}/workbook/operations and 'Get-MgDriveItemWorkbookOperation' unshipped" +"GET","/drives/{param}/items/{param}/workbook/operations/{param}","suppress",,"Get-MgDriveItemWorkbookOperation","no oracle row for GET /drives/{param}/items/{param}/workbook/operations/{param} and 'Get-MgDriveItemWorkbookOperation' unshipped" +"GET","/drives/{param}/items/{param}/workbook/operations/$count","suppress",,"Get-MgDriveItemWorkbookOperationCount","no oracle row for GET /drives/{param}/items/{param}/workbook/operations/$count and 'Get-MgDriveItemWorkbookOperationCount' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables","suppress",,"Get-MgDriveItemWorkbookTable","no oracle row for GET /drives/{param}/items/{param}/workbook/tables and 'Get-MgDriveItemWorkbookTable' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}","suppress",,"Get-MgDriveItemWorkbookTable","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param} and 'Get-MgDriveItemWorkbookTable' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns","suppress",,"Get-MgDriveItemWorkbookTableColumn","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns and 'Get-MgDriveItemWorkbookTableColumn' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}","suppress",,"Get-MgDriveItemWorkbookTableColumn","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param} and 'Get-MgDriveItemWorkbookTableColumn' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange","suppress",,"Get-MgDriveItemWorkbookTableColumnDataBodyRange","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange and 'Get-MgDriveItemWorkbookTableColumnDataBodyRange' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/columnsAfter","suppress",,"Get-MgDriveItemWorkbookTableColumnDataBodyRangeColumnsAfter","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/columnsAfter and 'Get-MgDriveItemWorkbookTableColumnDataBodyRangeColumnsAfter' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/columnsBefore","suppress",,"Get-MgDriveItemWorkbookTableColumnDataBodyRangeColumnsBefore","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/columnsBefore and 'Get-MgDriveItemWorkbookTableColumnDataBodyRangeColumnsBefore' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/entireColumn","suppress",,"Get-MgDriveItemWorkbookTableColumnDataBodyRangeEntireColumn","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/entireColumn and 'Get-MgDriveItemWorkbookTableColumnDataBodyRangeEntireColumn' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/entireRow","suppress",,"Get-MgDriveItemWorkbookTableColumnDataBodyRangeEntireRow","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/entireRow and 'Get-MgDriveItemWorkbookTableColumnDataBodyRangeEntireRow' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/lastCell","suppress",,"Get-MgDriveItemWorkbookTableColumnDataBodyRangeLastCell","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/lastCell and 'Get-MgDriveItemWorkbookTableColumnDataBodyRangeLastCell' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/lastColumn","suppress",,"Get-MgDriveItemWorkbookTableColumnDataBodyRangeLastColumn","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/lastColumn and 'Get-MgDriveItemWorkbookTableColumnDataBodyRangeLastColumn' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/lastRow","suppress",,"Get-MgDriveItemWorkbookTableColumnDataBodyRangeLastRow","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/lastRow and 'Get-MgDriveItemWorkbookTableColumnDataBodyRangeLastRow' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/rowsAbove","suppress",,"Get-MgDriveItemWorkbookTableColumnDataBodyRangeRowsAbove","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/rowsAbove and 'Get-MgDriveItemWorkbookTableColumnDataBodyRangeRowsAbove' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/rowsBelow","suppress",,"Get-MgDriveItemWorkbookTableColumnDataBodyRangeRowsBelow","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/rowsBelow and 'Get-MgDriveItemWorkbookTableColumnDataBodyRangeRowsBelow' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/usedRange","suppress",,"Get-MgDriveItemWorkbookTableColumnDataBodyRangeUsedRange","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/usedRange and 'Get-MgDriveItemWorkbookTableColumnDataBodyRangeUsedRange' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/visibleView","suppress",,"Get-MgDriveItemWorkbookTableColumnDataBodyRangeVisibleView","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/visibleView and 'Get-MgDriveItemWorkbookTableColumnDataBodyRangeVisibleView' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/filter","suppress",,"Get-MgDriveItemWorkbookTableColumnFilter","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/filter and 'Get-MgDriveItemWorkbookTableColumnFilter' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange","suppress",,"Get-MgDriveItemWorkbookTableColumnHeaderRowRange","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange and 'Get-MgDriveItemWorkbookTableColumnHeaderRowRange' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/columnsAfter","suppress",,"Get-MgDriveItemWorkbookTableColumnHeaderRowRangeColumnsAfter","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/columnsAfter and 'Get-MgDriveItemWorkbookTableColumnHeaderRowRangeColumnsAfter' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/columnsBefore","suppress",,"Get-MgDriveItemWorkbookTableColumnHeaderRowRangeColumnsBefore","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/columnsBefore and 'Get-MgDriveItemWorkbookTableColumnHeaderRowRangeColumnsBefore' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/entireColumn","suppress",,"Get-MgDriveItemWorkbookTableColumnHeaderRowRangeEntireColumn","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/entireColumn and 'Get-MgDriveItemWorkbookTableColumnHeaderRowRangeEntireColumn' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/entireRow","suppress",,"Get-MgDriveItemWorkbookTableColumnHeaderRowRangeEntireRow","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/entireRow and 'Get-MgDriveItemWorkbookTableColumnHeaderRowRangeEntireRow' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/lastCell","suppress",,"Get-MgDriveItemWorkbookTableColumnHeaderRowRangeLastCell","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/lastCell and 'Get-MgDriveItemWorkbookTableColumnHeaderRowRangeLastCell' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/lastColumn","suppress",,"Get-MgDriveItemWorkbookTableColumnHeaderRowRangeLastColumn","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/lastColumn and 'Get-MgDriveItemWorkbookTableColumnHeaderRowRangeLastColumn' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/lastRow","suppress",,"Get-MgDriveItemWorkbookTableColumnHeaderRowRangeLastRow","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/lastRow and 'Get-MgDriveItemWorkbookTableColumnHeaderRowRangeLastRow' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/rowsAbove","suppress",,"Get-MgDriveItemWorkbookTableColumnHeaderRowRangeRowsAbove","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/rowsAbove and 'Get-MgDriveItemWorkbookTableColumnHeaderRowRangeRowsAbove' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/rowsBelow","suppress",,"Get-MgDriveItemWorkbookTableColumnHeaderRowRangeRowsBelow","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/rowsBelow and 'Get-MgDriveItemWorkbookTableColumnHeaderRowRangeRowsBelow' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/usedRange","suppress",,"Get-MgDriveItemWorkbookTableColumnHeaderRowRangeUsedRange","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/usedRange and 'Get-MgDriveItemWorkbookTableColumnHeaderRowRangeUsedRange' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/visibleView","suppress",,"Get-MgDriveItemWorkbookTableColumnHeaderRowRangeVisibleView","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/visibleView and 'Get-MgDriveItemWorkbookTableColumnHeaderRowRangeVisibleView' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range","suppress",,"Get-MgDriveItemWorkbookTableColumnRange","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range and 'Get-MgDriveItemWorkbookTableColumnRange' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/columnsAfter","suppress",,"Get-MgDriveItemWorkbookTableColumnRangeColumnsAfter","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/columnsAfter and 'Get-MgDriveItemWorkbookTableColumnRangeColumnsAfter' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/columnsBefore","suppress",,"Get-MgDriveItemWorkbookTableColumnRangeColumnsBefore","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/columnsBefore and 'Get-MgDriveItemWorkbookTableColumnRangeColumnsBefore' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/entireColumn","suppress",,"Get-MgDriveItemWorkbookTableColumnRangeEntireColumn","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/entireColumn and 'Get-MgDriveItemWorkbookTableColumnRangeEntireColumn' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/entireRow","suppress",,"Get-MgDriveItemWorkbookTableColumnRangeEntireRow","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/entireRow and 'Get-MgDriveItemWorkbookTableColumnRangeEntireRow' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/lastCell","suppress",,"Get-MgDriveItemWorkbookTableColumnRangeLastCell","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/lastCell and 'Get-MgDriveItemWorkbookTableColumnRangeLastCell' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/lastColumn","suppress",,"Get-MgDriveItemWorkbookTableColumnRangeLastColumn","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/lastColumn and 'Get-MgDriveItemWorkbookTableColumnRangeLastColumn' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/lastRow","suppress",,"Get-MgDriveItemWorkbookTableColumnRangeLastRow","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/lastRow and 'Get-MgDriveItemWorkbookTableColumnRangeLastRow' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/rowsAbove","suppress",,"Get-MgDriveItemWorkbookTableColumnRangeRowsAbove","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/rowsAbove and 'Get-MgDriveItemWorkbookTableColumnRangeRowsAbove' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/rowsBelow","suppress",,"Get-MgDriveItemWorkbookTableColumnRangeRowsBelow","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/rowsBelow and 'Get-MgDriveItemWorkbookTableColumnRangeRowsBelow' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/usedRange","suppress",,"Get-MgDriveItemWorkbookTableColumnRangeUsedRange","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/usedRange and 'Get-MgDriveItemWorkbookTableColumnRangeUsedRange' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/visibleView","suppress",,"Get-MgDriveItemWorkbookTableColumnRangeVisibleView","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/visibleView and 'Get-MgDriveItemWorkbookTableColumnRangeVisibleView' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange","suppress",,"Get-MgDriveItemWorkbookTableColumnTotalRowRange","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange and 'Get-MgDriveItemWorkbookTableColumnTotalRowRange' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/columnsAfter","suppress",,"Get-MgDriveItemWorkbookTableColumnTotalRowRangeColumnsAfter","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/columnsAfter and 'Get-MgDriveItemWorkbookTableColumnTotalRowRangeColumnsAfter' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/columnsBefore","suppress",,"Get-MgDriveItemWorkbookTableColumnTotalRowRangeColumnsBefore","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/columnsBefore and 'Get-MgDriveItemWorkbookTableColumnTotalRowRangeColumnsBefore' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/entireColumn","suppress",,"Get-MgDriveItemWorkbookTableColumnTotalRowRangeEntireColumn","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/entireColumn and 'Get-MgDriveItemWorkbookTableColumnTotalRowRangeEntireColumn' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/entireRow","suppress",,"Get-MgDriveItemWorkbookTableColumnTotalRowRangeEntireRow","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/entireRow and 'Get-MgDriveItemWorkbookTableColumnTotalRowRangeEntireRow' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/lastCell","suppress",,"Get-MgDriveItemWorkbookTableColumnTotalRowRangeLastCell","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/lastCell and 'Get-MgDriveItemWorkbookTableColumnTotalRowRangeLastCell' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/lastColumn","suppress",,"Get-MgDriveItemWorkbookTableColumnTotalRowRangeLastColumn","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/lastColumn and 'Get-MgDriveItemWorkbookTableColumnTotalRowRangeLastColumn' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/lastRow","suppress",,"Get-MgDriveItemWorkbookTableColumnTotalRowRangeLastRow","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/lastRow and 'Get-MgDriveItemWorkbookTableColumnTotalRowRangeLastRow' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/rowsAbove","suppress",,"Get-MgDriveItemWorkbookTableColumnTotalRowRangeRowsAbove","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/rowsAbove and 'Get-MgDriveItemWorkbookTableColumnTotalRowRangeRowsAbove' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/rowsBelow","suppress",,"Get-MgDriveItemWorkbookTableColumnTotalRowRangeRowsBelow","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/rowsBelow and 'Get-MgDriveItemWorkbookTableColumnTotalRowRangeRowsBelow' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/usedRange","suppress",,"Get-MgDriveItemWorkbookTableColumnTotalRowRangeUsedRange","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/usedRange and 'Get-MgDriveItemWorkbookTableColumnTotalRowRangeUsedRange' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/visibleView","suppress",,"Get-MgDriveItemWorkbookTableColumnTotalRowRangeVisibleView","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/visibleView and 'Get-MgDriveItemWorkbookTableColumnTotalRowRangeVisibleView' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/columns/$count","suppress",,"Get-MgDriveItemWorkbookTableColumnCount","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/$count and 'Get-MgDriveItemWorkbookTableColumnCount' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange","suppress",,"Get-MgDriveItemWorkbookTableDataBodyRange","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange and 'Get-MgDriveItemWorkbookTableDataBodyRange' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/columnsAfter","suppress",,"Get-MgDriveItemWorkbookTableDataBodyRangeColumnsAfter","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/columnsAfter and 'Get-MgDriveItemWorkbookTableDataBodyRangeColumnsAfter' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/columnsBefore","suppress",,"Get-MgDriveItemWorkbookTableDataBodyRangeColumnsBefore","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/columnsBefore and 'Get-MgDriveItemWorkbookTableDataBodyRangeColumnsBefore' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/entireColumn","suppress",,"Get-MgDriveItemWorkbookTableDataBodyRangeEntireColumn","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/entireColumn and 'Get-MgDriveItemWorkbookTableDataBodyRangeEntireColumn' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/entireRow","suppress",,"Get-MgDriveItemWorkbookTableDataBodyRangeEntireRow","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/entireRow and 'Get-MgDriveItemWorkbookTableDataBodyRangeEntireRow' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/lastCell","suppress",,"Get-MgDriveItemWorkbookTableDataBodyRangeLastCell","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/lastCell and 'Get-MgDriveItemWorkbookTableDataBodyRangeLastCell' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/lastColumn","suppress",,"Get-MgDriveItemWorkbookTableDataBodyRangeLastColumn","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/lastColumn and 'Get-MgDriveItemWorkbookTableDataBodyRangeLastColumn' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/lastRow","suppress",,"Get-MgDriveItemWorkbookTableDataBodyRangeLastRow","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/lastRow and 'Get-MgDriveItemWorkbookTableDataBodyRangeLastRow' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/rowsAbove","suppress",,"Get-MgDriveItemWorkbookTableDataBodyRangeRowsAbove","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/rowsAbove and 'Get-MgDriveItemWorkbookTableDataBodyRangeRowsAbove' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/rowsBelow","suppress",,"Get-MgDriveItemWorkbookTableDataBodyRangeRowsBelow","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/rowsBelow and 'Get-MgDriveItemWorkbookTableDataBodyRangeRowsBelow' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/usedRange","suppress",,"Get-MgDriveItemWorkbookTableDataBodyRangeUsedRange","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/usedRange and 'Get-MgDriveItemWorkbookTableDataBodyRangeUsedRange' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/visibleView","suppress",,"Get-MgDriveItemWorkbookTableDataBodyRangeVisibleView","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/visibleView and 'Get-MgDriveItemWorkbookTableDataBodyRangeVisibleView' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange","suppress",,"Get-MgDriveItemWorkbookTableHeaderRowRange","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange and 'Get-MgDriveItemWorkbookTableHeaderRowRange' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/columnsAfter","suppress",,"Get-MgDriveItemWorkbookTableHeaderRowRangeColumnsAfter","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/columnsAfter and 'Get-MgDriveItemWorkbookTableHeaderRowRangeColumnsAfter' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/columnsBefore","suppress",,"Get-MgDriveItemWorkbookTableHeaderRowRangeColumnsBefore","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/columnsBefore and 'Get-MgDriveItemWorkbookTableHeaderRowRangeColumnsBefore' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/entireColumn","suppress",,"Get-MgDriveItemWorkbookTableHeaderRowRangeEntireColumn","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/entireColumn and 'Get-MgDriveItemWorkbookTableHeaderRowRangeEntireColumn' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/entireRow","suppress",,"Get-MgDriveItemWorkbookTableHeaderRowRangeEntireRow","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/entireRow and 'Get-MgDriveItemWorkbookTableHeaderRowRangeEntireRow' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/lastCell","suppress",,"Get-MgDriveItemWorkbookTableHeaderRowRangeLastCell","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/lastCell and 'Get-MgDriveItemWorkbookTableHeaderRowRangeLastCell' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/lastColumn","suppress",,"Get-MgDriveItemWorkbookTableHeaderRowRangeLastColumn","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/lastColumn and 'Get-MgDriveItemWorkbookTableHeaderRowRangeLastColumn' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/lastRow","suppress",,"Get-MgDriveItemWorkbookTableHeaderRowRangeLastRow","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/lastRow and 'Get-MgDriveItemWorkbookTableHeaderRowRangeLastRow' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/rowsAbove","suppress",,"Get-MgDriveItemWorkbookTableHeaderRowRangeRowsAbove","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/rowsAbove and 'Get-MgDriveItemWorkbookTableHeaderRowRangeRowsAbove' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/rowsBelow","suppress",,"Get-MgDriveItemWorkbookTableHeaderRowRangeRowsBelow","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/rowsBelow and 'Get-MgDriveItemWorkbookTableHeaderRowRangeRowsBelow' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/usedRange","suppress",,"Get-MgDriveItemWorkbookTableHeaderRowRangeUsedRange","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/usedRange and 'Get-MgDriveItemWorkbookTableHeaderRowRangeUsedRange' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/visibleView","suppress",,"Get-MgDriveItemWorkbookTableHeaderRowRangeVisibleView","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/visibleView and 'Get-MgDriveItemWorkbookTableHeaderRowRangeVisibleView' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/range","suppress",,"Get-MgDriveItemWorkbookTableRange","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/range and 'Get-MgDriveItemWorkbookTableRange' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/range/columnsAfter","suppress",,"Get-MgDriveItemWorkbookTableRangeColumnsAfter","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/range/columnsAfter and 'Get-MgDriveItemWorkbookTableRangeColumnsAfter' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/range/columnsBefore","suppress",,"Get-MgDriveItemWorkbookTableRangeColumnsBefore","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/range/columnsBefore and 'Get-MgDriveItemWorkbookTableRangeColumnsBefore' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/range/entireColumn","suppress",,"Get-MgDriveItemWorkbookTableRangeEntireColumn","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/range/entireColumn and 'Get-MgDriveItemWorkbookTableRangeEntireColumn' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/range/entireRow","suppress",,"Get-MgDriveItemWorkbookTableRangeEntireRow","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/range/entireRow and 'Get-MgDriveItemWorkbookTableRangeEntireRow' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/range/lastCell","suppress",,"Get-MgDriveItemWorkbookTableRangeLastCell","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/range/lastCell and 'Get-MgDriveItemWorkbookTableRangeLastCell' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/range/lastColumn","suppress",,"Get-MgDriveItemWorkbookTableRangeLastColumn","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/range/lastColumn and 'Get-MgDriveItemWorkbookTableRangeLastColumn' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/range/lastRow","suppress",,"Get-MgDriveItemWorkbookTableRangeLastRow","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/range/lastRow and 'Get-MgDriveItemWorkbookTableRangeLastRow' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/range/rowsAbove","suppress",,"Get-MgDriveItemWorkbookTableRangeRowsAbove","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/range/rowsAbove and 'Get-MgDriveItemWorkbookTableRangeRowsAbove' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/range/rowsBelow","suppress",,"Get-MgDriveItemWorkbookTableRangeRowsBelow","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/range/rowsBelow and 'Get-MgDriveItemWorkbookTableRangeRowsBelow' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/range/usedRange","suppress",,"Get-MgDriveItemWorkbookTableRangeUsedRange","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/range/usedRange and 'Get-MgDriveItemWorkbookTableRangeUsedRange' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/range/visibleView","suppress",,"Get-MgDriveItemWorkbookTableRangeVisibleView","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/range/visibleView and 'Get-MgDriveItemWorkbookTableRangeVisibleView' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/rows","suppress",,"Get-MgDriveItemWorkbookTableRow","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/rows and 'Get-MgDriveItemWorkbookTableRow' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}","suppress",,"Get-MgDriveItemWorkbookTableRow","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/rows/{param} and 'Get-MgDriveItemWorkbookTableRow' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range","suppress",,"Get-MgDriveItemWorkbookTableRowRange","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range and 'Get-MgDriveItemWorkbookTableRowRange' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/columnsAfter","suppress",,"Get-MgDriveItemWorkbookTableRowRangeColumnsAfter","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/columnsAfter and 'Get-MgDriveItemWorkbookTableRowRangeColumnsAfter' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/columnsBefore","suppress",,"Get-MgDriveItemWorkbookTableRowRangeColumnsBefore","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/columnsBefore and 'Get-MgDriveItemWorkbookTableRowRangeColumnsBefore' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/entireColumn","suppress",,"Get-MgDriveItemWorkbookTableRowRangeEntireColumn","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/entireColumn and 'Get-MgDriveItemWorkbookTableRowRangeEntireColumn' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/entireRow","suppress",,"Get-MgDriveItemWorkbookTableRowRangeEntireRow","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/entireRow and 'Get-MgDriveItemWorkbookTableRowRangeEntireRow' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/lastCell","suppress",,"Get-MgDriveItemWorkbookTableRowRangeLastCell","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/lastCell and 'Get-MgDriveItemWorkbookTableRowRangeLastCell' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/lastColumn","suppress",,"Get-MgDriveItemWorkbookTableRowRangeLastColumn","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/lastColumn and 'Get-MgDriveItemWorkbookTableRowRangeLastColumn' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/lastRow","suppress",,"Get-MgDriveItemWorkbookTableRowRangeLastRow","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/lastRow and 'Get-MgDriveItemWorkbookTableRowRangeLastRow' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/rowsAbove","suppress",,"Get-MgDriveItemWorkbookTableRowRangeRowsAbove","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/rowsAbove and 'Get-MgDriveItemWorkbookTableRowRangeRowsAbove' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/rowsBelow","suppress",,"Get-MgDriveItemWorkbookTableRowRangeRowsBelow","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/rowsBelow and 'Get-MgDriveItemWorkbookTableRowRangeRowsBelow' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/usedRange","suppress",,"Get-MgDriveItemWorkbookTableRowRangeUsedRange","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/usedRange and 'Get-MgDriveItemWorkbookTableRowRangeUsedRange' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/visibleView","suppress",,"Get-MgDriveItemWorkbookTableRowRangeVisibleView","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/visibleView and 'Get-MgDriveItemWorkbookTableRowRangeVisibleView' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/rows/$count","suppress",,"Get-MgDriveItemWorkbookTableRowCount","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/rows/$count and 'Get-MgDriveItemWorkbookTableRowCount' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/sort","suppress",,"Get-MgDriveItemWorkbookTableSort","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/sort and 'Get-MgDriveItemWorkbookTableSort' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange","suppress",,"Get-MgDriveItemWorkbookTableTotalRowRange","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange and 'Get-MgDriveItemWorkbookTableTotalRowRange' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/columnsAfter","suppress",,"Get-MgDriveItemWorkbookTableTotalRowRangeColumnsAfter","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/columnsAfter and 'Get-MgDriveItemWorkbookTableTotalRowRangeColumnsAfter' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/columnsBefore","suppress",,"Get-MgDriveItemWorkbookTableTotalRowRangeColumnsBefore","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/columnsBefore and 'Get-MgDriveItemWorkbookTableTotalRowRangeColumnsBefore' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/entireColumn","suppress",,"Get-MgDriveItemWorkbookTableTotalRowRangeEntireColumn","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/entireColumn and 'Get-MgDriveItemWorkbookTableTotalRowRangeEntireColumn' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/entireRow","suppress",,"Get-MgDriveItemWorkbookTableTotalRowRangeEntireRow","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/entireRow and 'Get-MgDriveItemWorkbookTableTotalRowRangeEntireRow' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/lastCell","suppress",,"Get-MgDriveItemWorkbookTableTotalRowRangeLastCell","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/lastCell and 'Get-MgDriveItemWorkbookTableTotalRowRangeLastCell' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/lastColumn","suppress",,"Get-MgDriveItemWorkbookTableTotalRowRangeLastColumn","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/lastColumn and 'Get-MgDriveItemWorkbookTableTotalRowRangeLastColumn' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/lastRow","suppress",,"Get-MgDriveItemWorkbookTableTotalRowRangeLastRow","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/lastRow and 'Get-MgDriveItemWorkbookTableTotalRowRangeLastRow' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/rowsAbove","suppress",,"Get-MgDriveItemWorkbookTableTotalRowRangeRowsAbove","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/rowsAbove and 'Get-MgDriveItemWorkbookTableTotalRowRangeRowsAbove' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/rowsBelow","suppress",,"Get-MgDriveItemWorkbookTableTotalRowRangeRowsBelow","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/rowsBelow and 'Get-MgDriveItemWorkbookTableTotalRowRangeRowsBelow' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/usedRange","suppress",,"Get-MgDriveItemWorkbookTableTotalRowRangeUsedRange","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/usedRange and 'Get-MgDriveItemWorkbookTableTotalRowRangeUsedRange' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/visibleView","suppress",,"Get-MgDriveItemWorkbookTableTotalRowRangeVisibleView","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/visibleView and 'Get-MgDriveItemWorkbookTableTotalRowRangeVisibleView' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/{param}/worksheet","suppress",,"Get-MgDriveItemWorkbookTableWorksheet","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/worksheet and 'Get-MgDriveItemWorkbookTableWorksheet' unshipped" +"GET","/drives/{param}/items/{param}/workbook/tables/$count","suppress",,"Get-MgDriveItemWorkbookTableCount","no oracle row for GET /drives/{param}/items/{param}/workbook/tables/$count and 'Get-MgDriveItemWorkbookTableCount' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets","suppress",,"Get-MgDriveItemWorkbookWorksheet","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets and 'Get-MgDriveItemWorkbookWorksheet' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}","suppress",,"Get-MgDriveItemWorkbookWorksheet","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param} and 'Get-MgDriveItemWorkbookWorksheet' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts","suppress",,"Get-MgDriveItemWorkbookWorksheetChart","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts and 'Get-MgDriveItemWorkbookWorksheetChart' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}","suppress",,"Get-MgDriveItemWorkbookWorksheetChart","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param} and 'Get-MgDriveItemWorkbookWorksheetChart' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes","suppress",,"Get-MgDriveItemWorkbookWorksheetChartAx","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes and 'Get-MgDriveItemWorkbookWorksheetChartAx' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis","suppress",,"Get-MgDriveItemWorkbookWorksheetChartAxCategoryAxis","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis and 'Get-MgDriveItemWorkbookWorksheetChartAxCategoryAxis' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/format","suppress",,"Get-MgDriveItemWorkbookWorksheetChartAxCategoryAxisFormat","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/format and 'Get-MgDriveItemWorkbookWorksheetChartAxCategoryAxisFormat' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/format/font","suppress",,"Get-MgDriveItemWorkbookWorksheetChartAxCategoryAxisFormatFont","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/format/font and 'Get-MgDriveItemWorkbookWorksheetChartAxCategoryAxisFormatFont' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/format/line","suppress",,"Get-MgDriveItemWorkbookWorksheetChartAxCategoryAxisFormatLine","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/format/line and 'Get-MgDriveItemWorkbookWorksheetChartAxCategoryAxisFormatLine' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/majorGridlines","suppress",,"Get-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMajorGridline","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/majorGridlines and 'Get-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMajorGridline' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/majorGridlines/format","suppress",,"Get-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMajorGridlineFormat","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/majorGridlines/format and 'Get-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMajorGridlineFormat' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/majorGridlines/format/line","suppress",,"Get-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMajorGridlineFormatLine","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/majorGridlines/format/line and 'Get-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMajorGridlineFormatLine' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/minorGridlines","suppress",,"Get-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMinorGridline","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/minorGridlines and 'Get-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMinorGridline' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/minorGridlines/format","suppress",,"Get-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMinorGridlineFormat","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/minorGridlines/format and 'Get-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMinorGridlineFormat' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/minorGridlines/format/line","suppress",,"Get-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMinorGridlineFormatLine","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/minorGridlines/format/line and 'Get-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMinorGridlineFormatLine' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/title","suppress",,"Get-MgDriveItemWorkbookWorksheetChartAxCategoryAxisTitle","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/title and 'Get-MgDriveItemWorkbookWorksheetChartAxCategoryAxisTitle' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/title/format","suppress",,"Get-MgDriveItemWorkbookWorksheetChartAxCategoryAxisTitleFormat","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/title/format and 'Get-MgDriveItemWorkbookWorksheetChartAxCategoryAxisTitleFormat' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/title/format/font","suppress",,"Get-MgDriveItemWorkbookWorksheetChartAxCategoryAxisTitleFormatFont","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/title/format/font and 'Get-MgDriveItemWorkbookWorksheetChartAxCategoryAxisTitleFormatFont' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis","suppress",,"Get-MgDriveItemWorkbookWorksheetChartAxSeryAxis","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis and 'Get-MgDriveItemWorkbookWorksheetChartAxSeryAxis' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/format","suppress",,"Get-MgDriveItemWorkbookWorksheetChartAxSeryAxisFormat","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/format and 'Get-MgDriveItemWorkbookWorksheetChartAxSeryAxisFormat' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/format/font","suppress",,"Get-MgDriveItemWorkbookWorksheetChartAxSeryAxisFormatFont","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/format/font and 'Get-MgDriveItemWorkbookWorksheetChartAxSeryAxisFormatFont' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/format/line","suppress",,"Get-MgDriveItemWorkbookWorksheetChartAxSeryAxisFormatLine","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/format/line and 'Get-MgDriveItemWorkbookWorksheetChartAxSeryAxisFormatLine' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/majorGridlines","suppress",,"Get-MgDriveItemWorkbookWorksheetChartAxSeryAxisMajorGridline","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/majorGridlines and 'Get-MgDriveItemWorkbookWorksheetChartAxSeryAxisMajorGridline' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/majorGridlines/format","suppress",,"Get-MgDriveItemWorkbookWorksheetChartAxSeryAxisMajorGridlineFormat","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/majorGridlines/format and 'Get-MgDriveItemWorkbookWorksheetChartAxSeryAxisMajorGridlineFormat' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/majorGridlines/format/line","suppress",,"Get-MgDriveItemWorkbookWorksheetChartAxSeryAxisMajorGridlineFormatLine","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/majorGridlines/format/line and 'Get-MgDriveItemWorkbookWorksheetChartAxSeryAxisMajorGridlineFormatLine' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/minorGridlines","suppress",,"Get-MgDriveItemWorkbookWorksheetChartAxSeryAxisMinorGridline","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/minorGridlines and 'Get-MgDriveItemWorkbookWorksheetChartAxSeryAxisMinorGridline' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/minorGridlines/format","suppress",,"Get-MgDriveItemWorkbookWorksheetChartAxSeryAxisMinorGridlineFormat","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/minorGridlines/format and 'Get-MgDriveItemWorkbookWorksheetChartAxSeryAxisMinorGridlineFormat' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/minorGridlines/format/line","suppress",,"Get-MgDriveItemWorkbookWorksheetChartAxSeryAxisMinorGridlineFormatLine","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/minorGridlines/format/line and 'Get-MgDriveItemWorkbookWorksheetChartAxSeryAxisMinorGridlineFormatLine' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/title","suppress",,"Get-MgDriveItemWorkbookWorksheetChartAxSeryAxisTitle","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/title and 'Get-MgDriveItemWorkbookWorksheetChartAxSeryAxisTitle' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/title/format","suppress",,"Get-MgDriveItemWorkbookWorksheetChartAxSeryAxisTitleFormat","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/title/format and 'Get-MgDriveItemWorkbookWorksheetChartAxSeryAxisTitleFormat' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/title/format/font","suppress",,"Get-MgDriveItemWorkbookWorksheetChartAxSeryAxisTitleFormatFont","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/title/format/font and 'Get-MgDriveItemWorkbookWorksheetChartAxSeryAxisTitleFormatFont' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis","suppress",,"Get-MgDriveItemWorkbookWorksheetChartAxValueAxis","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis and 'Get-MgDriveItemWorkbookWorksheetChartAxValueAxis' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/format","suppress",,"Get-MgDriveItemWorkbookWorksheetChartAxValueAxisFormat","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/format and 'Get-MgDriveItemWorkbookWorksheetChartAxValueAxisFormat' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/format/font","suppress",,"Get-MgDriveItemWorkbookWorksheetChartAxValueAxisFormatFont","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/format/font and 'Get-MgDriveItemWorkbookWorksheetChartAxValueAxisFormatFont' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/format/line","suppress",,"Get-MgDriveItemWorkbookWorksheetChartAxValueAxisFormatLine","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/format/line and 'Get-MgDriveItemWorkbookWorksheetChartAxValueAxisFormatLine' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/majorGridlines","suppress",,"Get-MgDriveItemWorkbookWorksheetChartAxValueAxisMajorGridline","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/majorGridlines and 'Get-MgDriveItemWorkbookWorksheetChartAxValueAxisMajorGridline' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/majorGridlines/format","suppress",,"Get-MgDriveItemWorkbookWorksheetChartAxValueAxisMajorGridlineFormat","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/majorGridlines/format and 'Get-MgDriveItemWorkbookWorksheetChartAxValueAxisMajorGridlineFormat' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/majorGridlines/format/line","suppress",,"Get-MgDriveItemWorkbookWorksheetChartAxValueAxisMajorGridlineFormatLine","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/majorGridlines/format/line and 'Get-MgDriveItemWorkbookWorksheetChartAxValueAxisMajorGridlineFormatLine' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/minorGridlines","suppress",,"Get-MgDriveItemWorkbookWorksheetChartAxValueAxisMinorGridline","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/minorGridlines and 'Get-MgDriveItemWorkbookWorksheetChartAxValueAxisMinorGridline' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/minorGridlines/format","suppress",,"Get-MgDriveItemWorkbookWorksheetChartAxValueAxisMinorGridlineFormat","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/minorGridlines/format and 'Get-MgDriveItemWorkbookWorksheetChartAxValueAxisMinorGridlineFormat' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/minorGridlines/format/line","suppress",,"Get-MgDriveItemWorkbookWorksheetChartAxValueAxisMinorGridlineFormatLine","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/minorGridlines/format/line and 'Get-MgDriveItemWorkbookWorksheetChartAxValueAxisMinorGridlineFormatLine' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/title","suppress",,"Get-MgDriveItemWorkbookWorksheetChartAxValueAxisTitle","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/title and 'Get-MgDriveItemWorkbookWorksheetChartAxValueAxisTitle' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/title/format","suppress",,"Get-MgDriveItemWorkbookWorksheetChartAxValueAxisTitleFormat","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/title/format and 'Get-MgDriveItemWorkbookWorksheetChartAxValueAxisTitleFormat' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/title/format/font","suppress",,"Get-MgDriveItemWorkbookWorksheetChartAxValueAxisTitleFormatFont","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/title/format/font and 'Get-MgDriveItemWorkbookWorksheetChartAxValueAxisTitleFormatFont' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/dataLabels","suppress",,"Get-MgDriveItemWorkbookWorksheetChartDataLabel","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/dataLabels and 'Get-MgDriveItemWorkbookWorksheetChartDataLabel' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/dataLabels/format","suppress",,"Get-MgDriveItemWorkbookWorksheetChartDataLabelFormat","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/dataLabels/format and 'Get-MgDriveItemWorkbookWorksheetChartDataLabelFormat' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/dataLabels/format/fill","suppress",,"Get-MgDriveItemWorkbookWorksheetChartDataLabelFormatFill","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/dataLabels/format/fill and 'Get-MgDriveItemWorkbookWorksheetChartDataLabelFormatFill' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/dataLabels/format/font","suppress",,"Get-MgDriveItemWorkbookWorksheetChartDataLabelFormatFont","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/dataLabels/format/font and 'Get-MgDriveItemWorkbookWorksheetChartDataLabelFormatFont' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/format","suppress",,"Get-MgDriveItemWorkbookWorksheetChartFormat","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/format and 'Get-MgDriveItemWorkbookWorksheetChartFormat' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/format/fill","suppress",,"Get-MgDriveItemWorkbookWorksheetChartFormatFill","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/format/fill and 'Get-MgDriveItemWorkbookWorksheetChartFormatFill' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/format/font","suppress",,"Get-MgDriveItemWorkbookWorksheetChartFormatFont","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/format/font and 'Get-MgDriveItemWorkbookWorksheetChartFormatFont' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/image","suppress",,"Get-MgDriveItemWorkbookWorksheetChartImage","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/image and 'Get-MgDriveItemWorkbookWorksheetChartImage' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/legend","suppress",,"Get-MgDriveItemWorkbookWorksheetChartLegend","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/legend and 'Get-MgDriveItemWorkbookWorksheetChartLegend' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/legend/format","suppress",,"Get-MgDriveItemWorkbookWorksheetChartLegendFormat","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/legend/format and 'Get-MgDriveItemWorkbookWorksheetChartLegendFormat' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/legend/format/fill","suppress",,"Get-MgDriveItemWorkbookWorksheetChartLegendFormatFill","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/legend/format/fill and 'Get-MgDriveItemWorkbookWorksheetChartLegendFormatFill' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/legend/format/font","suppress",,"Get-MgDriveItemWorkbookWorksheetChartLegendFormatFont","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/legend/format/font and 'Get-MgDriveItemWorkbookWorksheetChartLegendFormatFont' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series","suppress",,"Get-MgDriveItemWorkbookWorksheetChartSery","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series and 'Get-MgDriveItemWorkbookWorksheetChartSery' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}","suppress",,"Get-MgDriveItemWorkbookWorksheetChartSery","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param} and 'Get-MgDriveItemWorkbookWorksheetChartSery' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/format","suppress",,"Get-MgDriveItemWorkbookWorksheetChartSeryFormat","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/format and 'Get-MgDriveItemWorkbookWorksheetChartSeryFormat' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/format/fill","suppress",,"Get-MgDriveItemWorkbookWorksheetChartSeryFormatFill","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/format/fill and 'Get-MgDriveItemWorkbookWorksheetChartSeryFormatFill' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/format/line","suppress",,"Get-MgDriveItemWorkbookWorksheetChartSeryFormatLine","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/format/line and 'Get-MgDriveItemWorkbookWorksheetChartSeryFormatLine' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/points","suppress",,"Get-MgDriveItemWorkbookWorksheetChartSeryPoint","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/points and 'Get-MgDriveItemWorkbookWorksheetChartSeryPoint' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/points/{param}/format","suppress",,"Get-MgDriveItemWorkbookWorksheetChartSeryPointFormat","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/points/{param}/format and 'Get-MgDriveItemWorkbookWorksheetChartSeryPointFormat' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/points/{param}/format/fill","suppress",,"Get-MgDriveItemWorkbookWorksheetChartSeryPointFormatFill","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/points/{param}/format/fill and 'Get-MgDriveItemWorkbookWorksheetChartSeryPointFormatFill' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/points/$count","suppress",,"Get-MgDriveItemWorkbookWorksheetChartSeryPointCount","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/points/$count and 'Get-MgDriveItemWorkbookWorksheetChartSeryPointCount' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/$count","suppress",,"Get-MgDriveItemWorkbookWorksheetChartSeryCount","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/$count and 'Get-MgDriveItemWorkbookWorksheetChartSeryCount' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/title","suppress",,"Get-MgDriveItemWorkbookWorksheetChartTitle","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/title and 'Get-MgDriveItemWorkbookWorksheetChartTitle' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/title/format","suppress",,"Get-MgDriveItemWorkbookWorksheetChartTitleFormat","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/title/format and 'Get-MgDriveItemWorkbookWorksheetChartTitleFormat' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/title/format/fill","suppress",,"Get-MgDriveItemWorkbookWorksheetChartTitleFormatFill","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/title/format/fill and 'Get-MgDriveItemWorkbookWorksheetChartTitleFormatFill' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/title/format/font","suppress",,"Get-MgDriveItemWorkbookWorksheetChartTitleFormatFont","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/title/format/font and 'Get-MgDriveItemWorkbookWorksheetChartTitleFormatFont' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/worksheet","suppress",,"Get-MgDriveItemWorkbookWorksheetChartWorksheet","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/worksheet and 'Get-MgDriveItemWorkbookWorksheetChartWorksheet' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/$count","suppress",,"Get-MgDriveItemWorkbookWorksheetChartCount","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/$count and 'Get-MgDriveItemWorkbookWorksheetChartCount' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/names","suppress",,"Get-MgDriveItemWorkbookWorksheetName","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/names and 'Get-MgDriveItemWorkbookWorksheetName' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range","suppress",,"Get-MgDriveItemWorkbookWorksheetNameRange","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range and 'Get-MgDriveItemWorkbookWorksheetNameRange' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/columnsAfter","suppress",,"Get-MgDriveItemWorkbookWorksheetNameRangeColumnsAfter","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/columnsAfter and 'Get-MgDriveItemWorkbookWorksheetNameRangeColumnsAfter' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/columnsBefore","suppress",,"Get-MgDriveItemWorkbookWorksheetNameRangeColumnsBefore","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/columnsBefore and 'Get-MgDriveItemWorkbookWorksheetNameRangeColumnsBefore' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/entireColumn","suppress",,"Get-MgDriveItemWorkbookWorksheetNameRangeEntireColumn","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/entireColumn and 'Get-MgDriveItemWorkbookWorksheetNameRangeEntireColumn' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/entireRow","suppress",,"Get-MgDriveItemWorkbookWorksheetNameRangeEntireRow","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/entireRow and 'Get-MgDriveItemWorkbookWorksheetNameRangeEntireRow' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/lastCell","suppress",,"Get-MgDriveItemWorkbookWorksheetNameRangeLastCell","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/lastCell and 'Get-MgDriveItemWorkbookWorksheetNameRangeLastCell' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/lastColumn","suppress",,"Get-MgDriveItemWorkbookWorksheetNameRangeLastColumn","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/lastColumn and 'Get-MgDriveItemWorkbookWorksheetNameRangeLastColumn' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/lastRow","suppress",,"Get-MgDriveItemWorkbookWorksheetNameRangeLastRow","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/lastRow and 'Get-MgDriveItemWorkbookWorksheetNameRangeLastRow' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/rowsAbove","suppress",,"Get-MgDriveItemWorkbookWorksheetNameRangeRowsAbove","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/rowsAbove and 'Get-MgDriveItemWorkbookWorksheetNameRangeRowsAbove' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/rowsBelow","suppress",,"Get-MgDriveItemWorkbookWorksheetNameRangeRowsBelow","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/rowsBelow and 'Get-MgDriveItemWorkbookWorksheetNameRangeRowsBelow' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/usedRange","suppress",,"Get-MgDriveItemWorkbookWorksheetNameRangeUsedRange","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/usedRange and 'Get-MgDriveItemWorkbookWorksheetNameRangeUsedRange' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/visibleView","suppress",,"Get-MgDriveItemWorkbookWorksheetNameRangeVisibleView","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/visibleView and 'Get-MgDriveItemWorkbookWorksheetNameRangeVisibleView' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/worksheet","suppress",,"Get-MgDriveItemWorkbookWorksheetNameWorksheet","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/worksheet and 'Get-MgDriveItemWorkbookWorksheetNameWorksheet' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/names/$count","suppress",,"Get-MgDriveItemWorkbookWorksheetNameCount","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/names/$count and 'Get-MgDriveItemWorkbookWorksheetNameCount' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/pivotTables","suppress",,"Get-MgDriveItemWorkbookWorksheetPivotTable","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/pivotTables and 'Get-MgDriveItemWorkbookWorksheetPivotTable' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/pivotTables/{param}","suppress",,"Get-MgDriveItemWorkbookWorksheetPivotTable","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/pivotTables/{param} and 'Get-MgDriveItemWorkbookWorksheetPivotTable' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/pivotTables/{param}/worksheet","suppress",,"Get-MgDriveItemWorkbookWorksheetPivotTableWorksheet","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/pivotTables/{param}/worksheet and 'Get-MgDriveItemWorkbookWorksheetPivotTableWorksheet' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/pivotTables/$count","suppress",,"Get-MgDriveItemWorkbookWorksheetPivotTableCount","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/pivotTables/$count and 'Get-MgDriveItemWorkbookWorksheetPivotTableCount' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/protection","suppress",,"Get-MgDriveItemWorkbookWorksheetProtection","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/protection and 'Get-MgDriveItemWorkbookWorksheetProtection' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/range","suppress",,"Get-MgDriveItemWorkbookWorksheetRange","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/range and 'Get-MgDriveItemWorkbookWorksheetRange' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/range/columnsAfter","suppress",,"Get-MgDriveItemWorkbookWorksheetRangeColumnsAfter","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/range/columnsAfter and 'Get-MgDriveItemWorkbookWorksheetRangeColumnsAfter' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/range/columnsBefore","suppress",,"Get-MgDriveItemWorkbookWorksheetRangeColumnsBefore","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/range/columnsBefore and 'Get-MgDriveItemWorkbookWorksheetRangeColumnsBefore' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/range/entireColumn","suppress",,"Get-MgDriveItemWorkbookWorksheetRangeEntireColumn","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/range/entireColumn and 'Get-MgDriveItemWorkbookWorksheetRangeEntireColumn' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/range/entireRow","suppress",,"Get-MgDriveItemWorkbookWorksheetRangeEntireRow","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/range/entireRow and 'Get-MgDriveItemWorkbookWorksheetRangeEntireRow' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/range/lastCell","suppress",,"Get-MgDriveItemWorkbookWorksheetRangeLastCell","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/range/lastCell and 'Get-MgDriveItemWorkbookWorksheetRangeLastCell' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/range/lastColumn","suppress",,"Get-MgDriveItemWorkbookWorksheetRangeLastColumn","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/range/lastColumn and 'Get-MgDriveItemWorkbookWorksheetRangeLastColumn' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/range/lastRow","suppress",,"Get-MgDriveItemWorkbookWorksheetRangeLastRow","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/range/lastRow and 'Get-MgDriveItemWorkbookWorksheetRangeLastRow' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/range/rowsAbove","suppress",,"Get-MgDriveItemWorkbookWorksheetRangeRowsAbove","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/range/rowsAbove and 'Get-MgDriveItemWorkbookWorksheetRangeRowsAbove' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/range/rowsBelow","suppress",,"Get-MgDriveItemWorkbookWorksheetRangeRowsBelow","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/range/rowsBelow and 'Get-MgDriveItemWorkbookWorksheetRangeRowsBelow' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/range/usedRange","suppress",,"Get-MgDriveItemWorkbookWorksheetRangeUsedRange","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/range/usedRange and 'Get-MgDriveItemWorkbookWorksheetRangeUsedRange' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/range/visibleView","suppress",,"Get-MgDriveItemWorkbookWorksheetRangeVisibleView","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/range/visibleView and 'Get-MgDriveItemWorkbookWorksheetRangeVisibleView' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables","suppress",,"Get-MgDriveItemWorkbookWorksheetTable","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables and 'Get-MgDriveItemWorkbookWorksheetTable' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}","suppress",,"Get-MgDriveItemWorkbookWorksheetTable","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param} and 'Get-MgDriveItemWorkbookWorksheetTable' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns","suppress",,"Get-MgDriveItemWorkbookWorksheetTableColumn","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns and 'Get-MgDriveItemWorkbookWorksheetTableColumn' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}","suppress",,"Get-MgDriveItemWorkbookWorksheetTableColumn","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param} and 'Get-MgDriveItemWorkbookWorksheetTableColumn' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange","suppress",,"Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRange","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange and 'Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRange' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/columnsAfter","suppress",,"Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeColumnsAfter","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/columnsAfter and 'Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeColumnsAfter' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/columnsBefore","suppress",,"Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeColumnsBefore","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/columnsBefore and 'Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeColumnsBefore' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/entireColumn","suppress",,"Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeEntireColumn","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/entireColumn and 'Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeEntireColumn' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/entireRow","suppress",,"Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeEntireRow","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/entireRow and 'Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeEntireRow' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/lastCell","suppress",,"Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeLastCell","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/lastCell and 'Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeLastCell' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/lastColumn","suppress",,"Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeLastColumn","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/lastColumn and 'Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeLastColumn' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/lastRow","suppress",,"Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeLastRow","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/lastRow and 'Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeLastRow' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/rowsAbove","suppress",,"Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeRowsAbove","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/rowsAbove and 'Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeRowsAbove' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/rowsBelow","suppress",,"Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeRowsBelow","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/rowsBelow and 'Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeRowsBelow' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/usedRange","suppress",,"Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeUsedRange","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/usedRange and 'Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeUsedRange' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/visibleView","suppress",,"Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeVisibleView","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/visibleView and 'Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeVisibleView' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/filter","suppress",,"Get-MgDriveItemWorkbookWorksheetTableColumnFilter","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/filter and 'Get-MgDriveItemWorkbookWorksheetTableColumnFilter' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange","suppress",,"Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRange","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange and 'Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRange' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/columnsAfter","suppress",,"Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeColumnsAfter","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/columnsAfter and 'Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeColumnsAfter' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/columnsBefore","suppress",,"Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeColumnsBefore","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/columnsBefore and 'Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeColumnsBefore' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/entireColumn","suppress",,"Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeEntireColumn","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/entireColumn and 'Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeEntireColumn' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/entireRow","suppress",,"Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeEntireRow","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/entireRow and 'Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeEntireRow' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/lastCell","suppress",,"Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeLastCell","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/lastCell and 'Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeLastCell' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/lastColumn","suppress",,"Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeLastColumn","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/lastColumn and 'Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeLastColumn' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/lastRow","suppress",,"Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeLastRow","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/lastRow and 'Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeLastRow' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/rowsAbove","suppress",,"Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeRowsAbove","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/rowsAbove and 'Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeRowsAbove' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/rowsBelow","suppress",,"Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeRowsBelow","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/rowsBelow and 'Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeRowsBelow' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/usedRange","suppress",,"Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeUsedRange","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/usedRange and 'Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeUsedRange' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/visibleView","suppress",,"Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeVisibleView","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/visibleView and 'Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeVisibleView' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range","suppress",,"Get-MgDriveItemWorkbookWorksheetTableColumnRange","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range and 'Get-MgDriveItemWorkbookWorksheetTableColumnRange' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/columnsAfter","suppress",,"Get-MgDriveItemWorkbookWorksheetTableColumnRangeColumnsAfter","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/columnsAfter and 'Get-MgDriveItemWorkbookWorksheetTableColumnRangeColumnsAfter' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/columnsBefore","suppress",,"Get-MgDriveItemWorkbookWorksheetTableColumnRangeColumnsBefore","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/columnsBefore and 'Get-MgDriveItemWorkbookWorksheetTableColumnRangeColumnsBefore' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/entireColumn","suppress",,"Get-MgDriveItemWorkbookWorksheetTableColumnRangeEntireColumn","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/entireColumn and 'Get-MgDriveItemWorkbookWorksheetTableColumnRangeEntireColumn' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/entireRow","suppress",,"Get-MgDriveItemWorkbookWorksheetTableColumnRangeEntireRow","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/entireRow and 'Get-MgDriveItemWorkbookWorksheetTableColumnRangeEntireRow' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/lastCell","suppress",,"Get-MgDriveItemWorkbookWorksheetTableColumnRangeLastCell","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/lastCell and 'Get-MgDriveItemWorkbookWorksheetTableColumnRangeLastCell' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/lastColumn","suppress",,"Get-MgDriveItemWorkbookWorksheetTableColumnRangeLastColumn","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/lastColumn and 'Get-MgDriveItemWorkbookWorksheetTableColumnRangeLastColumn' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/lastRow","suppress",,"Get-MgDriveItemWorkbookWorksheetTableColumnRangeLastRow","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/lastRow and 'Get-MgDriveItemWorkbookWorksheetTableColumnRangeLastRow' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/rowsAbove","suppress",,"Get-MgDriveItemWorkbookWorksheetTableColumnRangeRowsAbove","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/rowsAbove and 'Get-MgDriveItemWorkbookWorksheetTableColumnRangeRowsAbove' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/rowsBelow","suppress",,"Get-MgDriveItemWorkbookWorksheetTableColumnRangeRowsBelow","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/rowsBelow and 'Get-MgDriveItemWorkbookWorksheetTableColumnRangeRowsBelow' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/usedRange","suppress",,"Get-MgDriveItemWorkbookWorksheetTableColumnRangeUsedRange","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/usedRange and 'Get-MgDriveItemWorkbookWorksheetTableColumnRangeUsedRange' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/visibleView","suppress",,"Get-MgDriveItemWorkbookWorksheetTableColumnRangeVisibleView","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/visibleView and 'Get-MgDriveItemWorkbookWorksheetTableColumnRangeVisibleView' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange","suppress",,"Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRange","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange and 'Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRange' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/columnsAfter","suppress",,"Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeColumnsAfter","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/columnsAfter and 'Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeColumnsAfter' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/columnsBefore","suppress",,"Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeColumnsBefore","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/columnsBefore and 'Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeColumnsBefore' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/entireColumn","suppress",,"Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeEntireColumn","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/entireColumn and 'Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeEntireColumn' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/entireRow","suppress",,"Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeEntireRow","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/entireRow and 'Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeEntireRow' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/lastCell","suppress",,"Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeLastCell","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/lastCell and 'Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeLastCell' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/lastColumn","suppress",,"Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeLastColumn","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/lastColumn and 'Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeLastColumn' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/lastRow","suppress",,"Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeLastRow","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/lastRow and 'Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeLastRow' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/rowsAbove","suppress",,"Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeRowsAbove","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/rowsAbove and 'Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeRowsAbove' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/rowsBelow","suppress",,"Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeRowsBelow","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/rowsBelow and 'Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeRowsBelow' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/usedRange","suppress",,"Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeUsedRange","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/usedRange and 'Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeUsedRange' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/visibleView","suppress",,"Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeVisibleView","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/visibleView and 'Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeVisibleView' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/$count","suppress",,"Get-MgDriveItemWorkbookWorksheetTableColumnCount","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/$count and 'Get-MgDriveItemWorkbookWorksheetTableColumnCount' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange","suppress",,"Get-MgDriveItemWorkbookWorksheetTableDataBodyRange","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange and 'Get-MgDriveItemWorkbookWorksheetTableDataBodyRange' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/columnsAfter","suppress",,"Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeColumnsAfter","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/columnsAfter and 'Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeColumnsAfter' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/columnsBefore","suppress",,"Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeColumnsBefore","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/columnsBefore and 'Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeColumnsBefore' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/entireColumn","suppress",,"Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeEntireColumn","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/entireColumn and 'Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeEntireColumn' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/entireRow","suppress",,"Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeEntireRow","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/entireRow and 'Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeEntireRow' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/lastCell","suppress",,"Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeLastCell","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/lastCell and 'Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeLastCell' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/lastColumn","suppress",,"Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeLastColumn","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/lastColumn and 'Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeLastColumn' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/lastRow","suppress",,"Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeLastRow","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/lastRow and 'Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeLastRow' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/rowsAbove","suppress",,"Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeRowsAbove","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/rowsAbove and 'Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeRowsAbove' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/rowsBelow","suppress",,"Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeRowsBelow","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/rowsBelow and 'Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeRowsBelow' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/usedRange","suppress",,"Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeUsedRange","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/usedRange and 'Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeUsedRange' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/visibleView","suppress",,"Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeVisibleView","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/visibleView and 'Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeVisibleView' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange","suppress",,"Get-MgDriveItemWorkbookWorksheetTableHeaderRowRange","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange and 'Get-MgDriveItemWorkbookWorksheetTableHeaderRowRange' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/columnsAfter","suppress",,"Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeColumnsAfter","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/columnsAfter and 'Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeColumnsAfter' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/columnsBefore","suppress",,"Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeColumnsBefore","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/columnsBefore and 'Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeColumnsBefore' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/entireColumn","suppress",,"Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeEntireColumn","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/entireColumn and 'Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeEntireColumn' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/entireRow","suppress",,"Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeEntireRow","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/entireRow and 'Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeEntireRow' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/lastCell","suppress",,"Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeLastCell","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/lastCell and 'Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeLastCell' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/lastColumn","suppress",,"Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeLastColumn","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/lastColumn and 'Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeLastColumn' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/lastRow","suppress",,"Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeLastRow","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/lastRow and 'Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeLastRow' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/rowsAbove","suppress",,"Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeRowsAbove","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/rowsAbove and 'Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeRowsAbove' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/rowsBelow","suppress",,"Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeRowsBelow","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/rowsBelow and 'Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeRowsBelow' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/usedRange","suppress",,"Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeUsedRange","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/usedRange and 'Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeUsedRange' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/visibleView","suppress",,"Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeVisibleView","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/visibleView and 'Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeVisibleView' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range","suppress",,"Get-MgDriveItemWorkbookWorksheetTableRange","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range and 'Get-MgDriveItemWorkbookWorksheetTableRange' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/columnsAfter","suppress",,"Get-MgDriveItemWorkbookWorksheetTableRangeColumnsAfter","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/columnsAfter and 'Get-MgDriveItemWorkbookWorksheetTableRangeColumnsAfter' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/columnsBefore","suppress",,"Get-MgDriveItemWorkbookWorksheetTableRangeColumnsBefore","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/columnsBefore and 'Get-MgDriveItemWorkbookWorksheetTableRangeColumnsBefore' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/entireColumn","suppress",,"Get-MgDriveItemWorkbookWorksheetTableRangeEntireColumn","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/entireColumn and 'Get-MgDriveItemWorkbookWorksheetTableRangeEntireColumn' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/entireRow","suppress",,"Get-MgDriveItemWorkbookWorksheetTableRangeEntireRow","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/entireRow and 'Get-MgDriveItemWorkbookWorksheetTableRangeEntireRow' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/lastCell","suppress",,"Get-MgDriveItemWorkbookWorksheetTableRangeLastCell","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/lastCell and 'Get-MgDriveItemWorkbookWorksheetTableRangeLastCell' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/lastColumn","suppress",,"Get-MgDriveItemWorkbookWorksheetTableRangeLastColumn","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/lastColumn and 'Get-MgDriveItemWorkbookWorksheetTableRangeLastColumn' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/lastRow","suppress",,"Get-MgDriveItemWorkbookWorksheetTableRangeLastRow","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/lastRow and 'Get-MgDriveItemWorkbookWorksheetTableRangeLastRow' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/rowsAbove","suppress",,"Get-MgDriveItemWorkbookWorksheetTableRangeRowsAbove","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/rowsAbove and 'Get-MgDriveItemWorkbookWorksheetTableRangeRowsAbove' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/rowsBelow","suppress",,"Get-MgDriveItemWorkbookWorksheetTableRangeRowsBelow","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/rowsBelow and 'Get-MgDriveItemWorkbookWorksheetTableRangeRowsBelow' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/usedRange","suppress",,"Get-MgDriveItemWorkbookWorksheetTableRangeUsedRange","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/usedRange and 'Get-MgDriveItemWorkbookWorksheetTableRangeUsedRange' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/visibleView","suppress",,"Get-MgDriveItemWorkbookWorksheetTableRangeVisibleView","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/visibleView and 'Get-MgDriveItemWorkbookWorksheetTableRangeVisibleView' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows","suppress",,"Get-MgDriveItemWorkbookWorksheetTableRow","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows and 'Get-MgDriveItemWorkbookWorksheetTableRow' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}","suppress",,"Get-MgDriveItemWorkbookWorksheetTableRow","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param} and 'Get-MgDriveItemWorkbookWorksheetTableRow' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range","suppress",,"Get-MgDriveItemWorkbookWorksheetTableRowRange","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range and 'Get-MgDriveItemWorkbookWorksheetTableRowRange' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/columnsAfter","suppress",,"Get-MgDriveItemWorkbookWorksheetTableRowRangeColumnsAfter","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/columnsAfter and 'Get-MgDriveItemWorkbookWorksheetTableRowRangeColumnsAfter' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/columnsBefore","suppress",,"Get-MgDriveItemWorkbookWorksheetTableRowRangeColumnsBefore","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/columnsBefore and 'Get-MgDriveItemWorkbookWorksheetTableRowRangeColumnsBefore' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/entireColumn","suppress",,"Get-MgDriveItemWorkbookWorksheetTableRowRangeEntireColumn","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/entireColumn and 'Get-MgDriveItemWorkbookWorksheetTableRowRangeEntireColumn' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/entireRow","suppress",,"Get-MgDriveItemWorkbookWorksheetTableRowRangeEntireRow","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/entireRow and 'Get-MgDriveItemWorkbookWorksheetTableRowRangeEntireRow' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/lastCell","suppress",,"Get-MgDriveItemWorkbookWorksheetTableRowRangeLastCell","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/lastCell and 'Get-MgDriveItemWorkbookWorksheetTableRowRangeLastCell' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/lastColumn","suppress",,"Get-MgDriveItemWorkbookWorksheetTableRowRangeLastColumn","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/lastColumn and 'Get-MgDriveItemWorkbookWorksheetTableRowRangeLastColumn' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/lastRow","suppress",,"Get-MgDriveItemWorkbookWorksheetTableRowRangeLastRow","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/lastRow and 'Get-MgDriveItemWorkbookWorksheetTableRowRangeLastRow' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/rowsAbove","suppress",,"Get-MgDriveItemWorkbookWorksheetTableRowRangeRowsAbove","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/rowsAbove and 'Get-MgDriveItemWorkbookWorksheetTableRowRangeRowsAbove' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/rowsBelow","suppress",,"Get-MgDriveItemWorkbookWorksheetTableRowRangeRowsBelow","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/rowsBelow and 'Get-MgDriveItemWorkbookWorksheetTableRowRangeRowsBelow' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/usedRange","suppress",,"Get-MgDriveItemWorkbookWorksheetTableRowRangeUsedRange","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/usedRange and 'Get-MgDriveItemWorkbookWorksheetTableRowRangeUsedRange' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/visibleView","suppress",,"Get-MgDriveItemWorkbookWorksheetTableRowRangeVisibleView","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/visibleView and 'Get-MgDriveItemWorkbookWorksheetTableRowRangeVisibleView' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/$count","suppress",,"Get-MgDriveItemWorkbookWorksheetTableRowCount","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/$count and 'Get-MgDriveItemWorkbookWorksheetTableRowCount' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/sort","suppress",,"Get-MgDriveItemWorkbookWorksheetTableSort","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/sort and 'Get-MgDriveItemWorkbookWorksheetTableSort' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange","suppress",,"Get-MgDriveItemWorkbookWorksheetTableTotalRowRange","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange and 'Get-MgDriveItemWorkbookWorksheetTableTotalRowRange' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/columnsAfter","suppress",,"Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeColumnsAfter","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/columnsAfter and 'Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeColumnsAfter' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/columnsBefore","suppress",,"Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeColumnsBefore","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/columnsBefore and 'Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeColumnsBefore' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/entireColumn","suppress",,"Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeEntireColumn","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/entireColumn and 'Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeEntireColumn' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/entireRow","suppress",,"Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeEntireRow","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/entireRow and 'Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeEntireRow' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/lastCell","suppress",,"Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeLastCell","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/lastCell and 'Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeLastCell' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/lastColumn","suppress",,"Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeLastColumn","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/lastColumn and 'Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeLastColumn' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/lastRow","suppress",,"Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeLastRow","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/lastRow and 'Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeLastRow' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/rowsAbove","suppress",,"Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeRowsAbove","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/rowsAbove and 'Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeRowsAbove' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/rowsBelow","suppress",,"Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeRowsBelow","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/rowsBelow and 'Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeRowsBelow' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/usedRange","suppress",,"Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeUsedRange","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/usedRange and 'Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeUsedRange' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/visibleView","suppress",,"Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeVisibleView","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/visibleView and 'Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeVisibleView' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/worksheet","suppress",,"Get-MgDriveItemWorkbookWorksheetTableWorksheet","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/worksheet and 'Get-MgDriveItemWorkbookWorksheetTableWorksheet' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/$count","suppress",,"Get-MgDriveItemWorkbookWorksheetTableCount","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/$count and 'Get-MgDriveItemWorkbookWorksheetTableCount' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange","suppress",,"Get-MgDriveItemWorkbookWorksheetUsedRange","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange and 'Get-MgDriveItemWorkbookWorksheetUsedRange' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange/columnsAfter","suppress",,"Get-MgDriveItemWorkbookWorksheetUsedRangeColumnsAfter","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange/columnsAfter and 'Get-MgDriveItemWorkbookWorksheetUsedRangeColumnsAfter' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange/columnsBefore","suppress",,"Get-MgDriveItemWorkbookWorksheetUsedRangeColumnsBefore","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange/columnsBefore and 'Get-MgDriveItemWorkbookWorksheetUsedRangeColumnsBefore' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange/entireColumn","suppress",,"Get-MgDriveItemWorkbookWorksheetUsedRangeEntireColumn","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange/entireColumn and 'Get-MgDriveItemWorkbookWorksheetUsedRangeEntireColumn' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange/entireRow","suppress",,"Get-MgDriveItemWorkbookWorksheetUsedRangeEntireRow","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange/entireRow and 'Get-MgDriveItemWorkbookWorksheetUsedRangeEntireRow' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange/lastCell","suppress",,"Get-MgDriveItemWorkbookWorksheetUsedRangeLastCell","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange/lastCell and 'Get-MgDriveItemWorkbookWorksheetUsedRangeLastCell' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange/lastColumn","suppress",,"Get-MgDriveItemWorkbookWorksheetUsedRangeLastColumn","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange/lastColumn and 'Get-MgDriveItemWorkbookWorksheetUsedRangeLastColumn' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange/lastRow","suppress",,"Get-MgDriveItemWorkbookWorksheetUsedRangeLastRow","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange/lastRow and 'Get-MgDriveItemWorkbookWorksheetUsedRangeLastRow' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange/rowsAbove","suppress",,"Get-MgDriveItemWorkbookWorksheetUsedRangeRowsAbove","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange/rowsAbove and 'Get-MgDriveItemWorkbookWorksheetUsedRangeRowsAbove' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange/rowsBelow","suppress",,"Get-MgDriveItemWorkbookWorksheetUsedRangeRowsBelow","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange/rowsBelow and 'Get-MgDriveItemWorkbookWorksheetUsedRangeRowsBelow' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange/visibleView","suppress",,"Get-MgDriveItemWorkbookWorksheetUsedRangeVisibleView","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange/visibleView and 'Get-MgDriveItemWorkbookWorksheetUsedRangeVisibleView' unshipped" +"GET","/drives/{param}/items/{param}/workbook/worksheets/$count","suppress",,"Get-MgDriveItemWorkbookWorksheetCount","no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/$count and 'Get-MgDriveItemWorkbookWorksheetCount' unshipped" +"GET","/drives/{param}/items/$count","keep",,"Get-MgDriveItemCount","Get-MgDriveItemCount" +"GET","/drives/{param}/lastModifiedByUser","keep",,"Get-MgDriveLastModifiedByUser","Get-MgDriveLastModifiedByUser" +"GET","/drives/{param}/lastModifiedByUser/mailboxSettings","keep",,"Get-MgDriveLastModifiedByUserMailboxSetting","Get-MgDriveLastModifiedByUserMailboxSetting" +"GET","/drives/{param}/lastModifiedByUser/serviceProvisioningErrors","keep",,"Get-MgDriveLastModifiedByUserServiceProvisioningError","Get-MgDriveLastModifiedByUserServiceProvisioningError" +"GET","/drives/{param}/lastModifiedByUser/serviceProvisioningErrors/$count","keep",,"Get-MgDriveLastModifiedByUserServiceProvisioningErrorCount","Get-MgDriveLastModifiedByUserServiceProvisioningErrorCount" +"GET","/drives/{param}/list","keep",,"Get-MgDriveList","Get-MgDriveList" +"GET","/drives/{param}/list/columns","keep",,"Get-MgDriveListColumn","Get-MgDriveListColumn" +"GET","/drives/{param}/list/columns/{param}","keep",,"Get-MgDriveListColumn","Get-MgDriveListColumn" +"GET","/drives/{param}/list/columns/{param}/sourceColumn","keep",,"Get-MgDriveListColumnSourceColumn","Get-MgDriveListColumnSourceColumn" +"GET","/drives/{param}/list/columns/$count","keep",,"Get-MgDriveListColumnCount","Get-MgDriveListColumnCount" +"GET","/drives/{param}/list/contentTypes","keep",,"Get-MgDriveListContentType","Get-MgDriveListContentType" +"GET","/drives/{param}/list/contentTypes/{param}","keep",,"Get-MgDriveListContentType","Get-MgDriveListContentType" +"GET","/drives/{param}/list/contentTypes/{param}/base","rename","DriveContentTypeBase","Get-MgDriveListContentTypeBase","Get-MgDriveContentTypeBase" +"GET","/drives/{param}/list/contentTypes/{param}/baseTypes","rename","DriveContentTypeBaseType","Get-MgDriveListContentTypeBaseType","Get-MgDriveContentTypeBaseType" +"GET","/drives/{param}/list/contentTypes/{param}/baseTypes/{param}","rename","DriveContentTypeBaseType","Get-MgDriveListContentTypeBaseType","Get-MgDriveContentTypeBaseType" +"GET","/drives/{param}/list/contentTypes/{param}/baseTypes/$count","rename","DriveContentTypeBaseTypeCount","Get-MgDriveListContentTypeBaseTypeCount","Get-MgDriveContentTypeBaseTypeCount" +"GET","/drives/{param}/list/contentTypes/{param}/columnLinks","keep",,"Get-MgDriveListContentTypeColumnLink","Get-MgDriveListContentTypeColumnLink" +"GET","/drives/{param}/list/contentTypes/{param}/columnLinks/{param}","keep",,"Get-MgDriveListContentTypeColumnLink","Get-MgDriveListContentTypeColumnLink" +"GET","/drives/{param}/list/contentTypes/{param}/columnLinks/$count","keep",,"Get-MgDriveListContentTypeColumnLinkCount","Get-MgDriveListContentTypeColumnLinkCount" +"GET","/drives/{param}/list/contentTypes/{param}/columnPositions","keep",,"Get-MgDriveListContentTypeColumnPosition","Get-MgDriveListContentTypeColumnPosition" +"GET","/drives/{param}/list/contentTypes/{param}/columnPositions/{param}","keep",,"Get-MgDriveListContentTypeColumnPosition","Get-MgDriveListContentTypeColumnPosition" +"GET","/drives/{param}/list/contentTypes/{param}/columnPositions/$count","keep",,"Get-MgDriveListContentTypeColumnPositionCount","Get-MgDriveListContentTypeColumnPositionCount" +"GET","/drives/{param}/list/contentTypes/{param}/columns","keep",,"Get-MgDriveListContentTypeColumn","Get-MgDriveListContentTypeColumn" +"GET","/drives/{param}/list/contentTypes/{param}/columns/{param}","keep",,"Get-MgDriveListContentTypeColumn","Get-MgDriveListContentTypeColumn" +"GET","/drives/{param}/list/contentTypes/{param}/columns/{param}/sourceColumn","keep",,"Get-MgDriveListContentTypeColumnSourceColumn","Get-MgDriveListContentTypeColumnSourceColumn" +"GET","/drives/{param}/list/contentTypes/{param}/columns/$count","keep",,"Get-MgDriveListContentTypeColumnCount","Get-MgDriveListContentTypeColumnCount" +"GET","/drives/{param}/list/contentTypes/{param}/isPublished","rename","DriveListContentTypePublished","Get-MgDriveListContentTypeIsPublished","Test-MgDriveListContentTypePublished" +"GET","/drives/{param}/list/contentTypes/$count","keep",,"Get-MgDriveListContentTypeCount","Get-MgDriveListContentTypeCount" +"GET","/drives/{param}/list/contentTypes/getCompatibleHubContentTypes","rename","DriveListContentTypeCompatibleHubContentType","Get-MgDriveListContentTypeGetCompatibleHubContentTypes","Get-MgDriveListContentTypeCompatibleHubContentType" +"GET","/drives/{param}/list/createdByUser","keep",,"Get-MgDriveListCreatedByUser","Get-MgDriveListCreatedByUser" +"GET","/drives/{param}/list/createdByUser/mailboxSettings","keep",,"Get-MgDriveListCreatedByUserMailboxSetting","Get-MgDriveListCreatedByUserMailboxSetting" +"GET","/drives/{param}/list/createdByUser/serviceProvisioningErrors","keep",,"Get-MgDriveListCreatedByUserServiceProvisioningError","Get-MgDriveListCreatedByUserServiceProvisioningError" +"GET","/drives/{param}/list/createdByUser/serviceProvisioningErrors/$count","keep",,"Get-MgDriveListCreatedByUserServiceProvisioningErrorCount","Get-MgDriveListCreatedByUserServiceProvisioningErrorCount" +"GET","/drives/{param}/list/drive","keep",,"Get-MgDriveListDrive","Get-MgDriveListDrive" +"GET","/drives/{param}/list/items","keep",,"Get-MgDriveListItem","Get-MgDriveListItem" +"GET","/drives/{param}/list/items/{param}","keep",,"Get-MgDriveListItem","Get-MgDriveListItem" +"GET","/drives/{param}/list/items/{param}/analytics","keep",,"Get-MgDriveListItemAnalytic","Get-MgDriveListItemAnalytic" +"GET","/drives/{param}/list/items/{param}/createdByUser","keep",,"Get-MgDriveListItemCreatedByUser","Get-MgDriveListItemCreatedByUser" +"GET","/drives/{param}/list/items/{param}/createdByUser/mailboxSettings","keep",,"Get-MgDriveListItemCreatedByUserMailboxSetting","Get-MgDriveListItemCreatedByUserMailboxSetting" +"GET","/drives/{param}/list/items/{param}/createdByUser/serviceProvisioningErrors","keep",,"Get-MgDriveListItemCreatedByUserServiceProvisioningError","Get-MgDriveListItemCreatedByUserServiceProvisioningError" +"GET","/drives/{param}/list/items/{param}/createdByUser/serviceProvisioningErrors/$count","keep",,"Get-MgDriveListItemCreatedByUserServiceProvisioningErrorCount","Get-MgDriveListItemCreatedByUserServiceProvisioningErrorCount" +"GET","/drives/{param}/list/items/{param}/documentSetVersions","keep",,"Get-MgDriveListItemDocumentSetVersion","Get-MgDriveListItemDocumentSetVersion" +"GET","/drives/{param}/list/items/{param}/documentSetVersions/{param}","keep",,"Get-MgDriveListItemDocumentSetVersion","Get-MgDriveListItemDocumentSetVersion" +"GET","/drives/{param}/list/items/{param}/documentSetVersions/{param}/fields","keep",,"Get-MgDriveListItemDocumentSetVersionField","Get-MgDriveListItemDocumentSetVersionField" +"GET","/drives/{param}/list/items/{param}/documentSetVersions/$count","keep",,"Get-MgDriveListItemDocumentSetVersionCount","Get-MgDriveListItemDocumentSetVersionCount" +"GET","/drives/{param}/list/items/{param}/driveItem","keep",,"Get-MgDriveListItemDriveItem","Get-MgDriveListItemDriveItem" +"GET","/drives/{param}/list/items/{param}/fields","keep",,"Get-MgDriveListItemField","Get-MgDriveListItemField" +"GET","/drives/{param}/list/items/{param}/getActivitiesByInterval","rename","DriveListItemActivityByInterval","Get-MgDriveListItemGetActivitiesByInterval","Get-MgDriveListItemActivityByInterval" +"GET","/drives/{param}/list/items/{param}/lastModifiedByUser","suppress",,"Get-MgDriveListItemLastModifiedByUser","no oracle row for GET /drives/{param}/list/items/{param}/lastModifiedByUser and 'Get-MgDriveListItemLastModifiedByUser' unshipped" +"GET","/drives/{param}/list/items/{param}/lastModifiedByUser/mailboxSettings","suppress",,"Get-MgDriveListItemLastModifiedByUserMailboxSetting","no oracle row for GET /drives/{param}/list/items/{param}/lastModifiedByUser/mailboxSettings and 'Get-MgDriveListItemLastModifiedByUserMailboxSetting' unshipped" +"GET","/drives/{param}/list/items/{param}/lastModifiedByUser/serviceProvisioningErrors","suppress",,"Get-MgDriveListItemLastModifiedByUserServiceProvisioningError","no oracle row for GET /drives/{param}/list/items/{param}/lastModifiedByUser/serviceProvisioningErrors and 'Get-MgDriveListItemLastModifiedByUserServiceProvisioningError' unshipped" +"GET","/drives/{param}/list/items/{param}/lastModifiedByUser/serviceProvisioningErrors/$count","suppress",,"Get-MgDriveListItemLastModifiedByUserServiceProvisioningErrorCount","no oracle row for GET /drives/{param}/list/items/{param}/lastModifiedByUser/serviceProvisioningErrors/$count and 'Get-MgDriveListItemLastModifiedByUserServiceProvisioningErrorCount' unshipped" +"GET","/drives/{param}/list/items/{param}/permissions","suppress",,"Get-MgDriveListItemPermission","no oracle row for GET /drives/{param}/list/items/{param}/permissions and 'Get-MgDriveListItemPermission' unshipped" +"GET","/drives/{param}/list/items/{param}/permissions/{param}","suppress",,"Get-MgDriveListItemPermission","no oracle row for GET /drives/{param}/list/items/{param}/permissions/{param} and 'Get-MgDriveListItemPermission' unshipped" +"GET","/drives/{param}/list/items/{param}/permissions/$count","suppress",,"Get-MgDriveListItemPermissionCount","no oracle row for GET /drives/{param}/list/items/{param}/permissions/$count and 'Get-MgDriveListItemPermissionCount' unshipped" +"GET","/drives/{param}/list/items/{param}/versions","keep",,"Get-MgDriveListItemVersion","Get-MgDriveListItemVersion" +"GET","/drives/{param}/list/items/{param}/versions/{param}","keep",,"Get-MgDriveListItemVersion","Get-MgDriveListItemVersion" +"GET","/drives/{param}/list/items/{param}/versions/{param}/fields","keep",,"Get-MgDriveListItemVersionField","Get-MgDriveListItemVersionField" +"GET","/drives/{param}/list/items/{param}/versions/$count","keep",,"Get-MgDriveListItemVersionCount","Get-MgDriveListItemVersionCount" +"GET","/drives/{param}/list/items/$count","keep",,"Get-MgDriveListItemCount","Get-MgDriveListItemCount" +"GET","/drives/{param}/list/items/delta","keep",,"Get-MgDriveListItemDelta","Get-MgDriveListItemDelta" +"GET","/drives/{param}/list/lastModifiedByUser","suppress",,"Get-MgDriveListLastModifiedByUser","no oracle row for GET /drives/{param}/list/lastModifiedByUser and 'Get-MgDriveListLastModifiedByUser' unshipped" +"GET","/drives/{param}/list/lastModifiedByUser/mailboxSettings","suppress",,"Get-MgDriveListLastModifiedByUserMailboxSetting","no oracle row for GET /drives/{param}/list/lastModifiedByUser/mailboxSettings and 'Get-MgDriveListLastModifiedByUserMailboxSetting' unshipped" +"GET","/drives/{param}/list/lastModifiedByUser/serviceProvisioningErrors","suppress",,"Get-MgDriveListLastModifiedByUserServiceProvisioningError","no oracle row for GET /drives/{param}/list/lastModifiedByUser/serviceProvisioningErrors and 'Get-MgDriveListLastModifiedByUserServiceProvisioningError' unshipped" +"GET","/drives/{param}/list/lastModifiedByUser/serviceProvisioningErrors/$count","suppress",,"Get-MgDriveListLastModifiedByUserServiceProvisioningErrorCount","no oracle row for GET /drives/{param}/list/lastModifiedByUser/serviceProvisioningErrors/$count and 'Get-MgDriveListLastModifiedByUserServiceProvisioningErrorCount' unshipped" +"GET","/drives/{param}/list/operations","keep",,"Get-MgDriveListOperation","Get-MgDriveListOperation" +"GET","/drives/{param}/list/operations/{param}","keep",,"Get-MgDriveListOperation","Get-MgDriveListOperation" +"GET","/drives/{param}/list/operations/$count","keep",,"Get-MgDriveListOperationCount","Get-MgDriveListOperationCount" +"GET","/drives/{param}/list/permissions","suppress",,"Get-MgDriveListPermission","no oracle row for GET /drives/{param}/list/permissions and 'Get-MgDriveListPermission' unshipped" +"GET","/drives/{param}/list/permissions/{param}","suppress",,"Get-MgDriveListPermission","no oracle row for GET /drives/{param}/list/permissions/{param} and 'Get-MgDriveListPermission' unshipped" +"GET","/drives/{param}/list/permissions/$count","suppress",,"Get-MgDriveListPermissionCount","no oracle row for GET /drives/{param}/list/permissions/$count and 'Get-MgDriveListPermissionCount' unshipped" +"GET","/drives/{param}/list/subscriptions","keep",,"Get-MgDriveListSubscription","Get-MgDriveListSubscription" +"GET","/drives/{param}/list/subscriptions/{param}","keep",,"Get-MgDriveListSubscription","Get-MgDriveListSubscription" +"GET","/drives/{param}/list/subscriptions/$count","keep",,"Get-MgDriveListSubscriptionCount","Get-MgDriveListSubscriptionCount" +"GET","/drives/{param}/recent","rename","RecentDrive","Get-MgDriveRecent","Invoke-MgRecentDrive" +"GET","/drives/{param}/root","keep",,"Get-MgDriveRoot","Get-MgDriveRoot" +"GET","/drives/{param}/sharedWithMe","rename","GraphDrive","Get-MgDriveSharedWithMe","Invoke-MgGraphDrive" +"GET","/drives/{param}/special","keep",,"Get-MgDriveSpecial","Get-MgDriveSpecial" +"GET","/drives/{param}/special/{param}","keep",,"Get-MgDriveSpecial","Get-MgDriveSpecial" +"GET","/drives/{param}/special/$count","keep",,"Get-MgDriveSpecialCount","Get-MgDriveSpecialCount" +"GET","/education","keep",,"Get-MgEducation","Get-MgEducationRoot" +"GET","/education/classes","keep",,"Get-MgEducationClass","Get-MgEducationClass" +"GET","/education/classes/{param}","keep",,"Get-MgEducationClass","Get-MgEducationClass" +"GET","/education/classes/{param}/assignmentCategories","keep",,"Get-MgEducationClassAssignmentCategory","Get-MgEducationClassAssignmentCategory" +"GET","/education/classes/{param}/assignmentCategories/{param}","keep",,"Get-MgEducationClassAssignmentCategory","Get-MgEducationClassAssignmentCategory" +"GET","/education/classes/{param}/assignmentCategories/$count","keep",,"Get-MgEducationClassAssignmentCategoryCount","Get-MgEducationClassAssignmentCategoryCount" +"GET","/education/classes/{param}/assignmentCategories/delta","keep",,"Get-MgEducationClassAssignmentCategoryDelta","Get-MgEducationClassAssignmentCategoryDelta" +"GET","/education/classes/{param}/assignmentDefaults","keep",,"Get-MgEducationClassAssignmentDefault","Get-MgEducationClassAssignmentDefault" +"GET","/education/classes/{param}/assignments","keep",,"Get-MgEducationClassAssignment","Get-MgEducationClassAssignment" +"GET","/education/classes/{param}/assignments/{param}","keep",,"Get-MgEducationClassAssignment","Get-MgEducationClassAssignment" +"GET","/education/classes/{param}/assignments/{param}/categories/$ref","keep",,"Get-MgEducationClassAssignmentCategoryByRef","Get-MgEducationClassAssignmentCategoryByRef" +"GET","/education/classes/{param}/assignments/{param}/gradingCategory","keep",,"Get-MgEducationClassAssignmentGradingCategory","Get-MgEducationClassAssignmentGradingCategory" +"GET","/education/classes/{param}/assignments/{param}/gradingScheme","keep",,"Get-MgEducationClassAssignmentGradingScheme","Get-MgEducationClassAssignmentGradingScheme" +"GET","/education/classes/{param}/assignments/{param}/resources","keep",,"Get-MgEducationClassAssignmentResource","Get-MgEducationClassAssignmentResource" +"GET","/education/classes/{param}/assignments/{param}/resources/{param}","keep",,"Get-MgEducationClassAssignmentResource","Get-MgEducationClassAssignmentResource" +"GET","/education/classes/{param}/assignments/{param}/resources/{param}/dependentResources","keep",,"Get-MgEducationClassAssignmentResourceDependentResource","Get-MgEducationClassAssignmentResourceDependentResource" +"GET","/education/classes/{param}/assignments/{param}/resources/{param}/dependentResources/{param}","keep",,"Get-MgEducationClassAssignmentResourceDependentResource","Get-MgEducationClassAssignmentResourceDependentResource" +"GET","/education/classes/{param}/assignments/{param}/resources/{param}/dependentResources/$count","keep",,"Get-MgEducationClassAssignmentResourceDependentResourceCount","Get-MgEducationClassAssignmentResourceDependentResourceCount" +"GET","/education/classes/{param}/assignments/{param}/resources/$count","keep",,"Get-MgEducationClassAssignmentResourceCount","Get-MgEducationClassAssignmentResourceCount" +"GET","/education/classes/{param}/assignments/{param}/rubric","keep",,"Get-MgEducationClassAssignmentRubric","Get-MgEducationClassAssignmentRubric" +"GET","/education/classes/{param}/assignments/{param}/rubric/$ref","keep",,"Get-MgEducationClassAssignmentRubricByRef","Get-MgEducationClassAssignmentRubricByRef" +"GET","/education/classes/{param}/assignments/{param}/submissions","keep",,"Get-MgEducationClassAssignmentSubmission","Get-MgEducationClassAssignmentSubmission" +"GET","/education/classes/{param}/assignments/{param}/submissions/{param}","keep",,"Get-MgEducationClassAssignmentSubmission","Get-MgEducationClassAssignmentSubmission" +"GET","/education/classes/{param}/assignments/{param}/submissions/{param}/outcomes","keep",,"Get-MgEducationClassAssignmentSubmissionOutcome","Get-MgEducationClassAssignmentSubmissionOutcome" +"GET","/education/classes/{param}/assignments/{param}/submissions/{param}/outcomes/{param}","keep",,"Get-MgEducationClassAssignmentSubmissionOutcome","Get-MgEducationClassAssignmentSubmissionOutcome" +"GET","/education/classes/{param}/assignments/{param}/submissions/{param}/outcomes/$count","keep",,"Get-MgEducationClassAssignmentSubmissionOutcomeCount","Get-MgEducationClassAssignmentSubmissionOutcomeCount" +"GET","/education/classes/{param}/assignments/{param}/submissions/{param}/resources","keep",,"Get-MgEducationClassAssignmentSubmissionResource","Get-MgEducationClassAssignmentSubmissionResource" +"GET","/education/classes/{param}/assignments/{param}/submissions/{param}/resources/{param}","keep",,"Get-MgEducationClassAssignmentSubmissionResource","Get-MgEducationClassAssignmentSubmissionResource" +"GET","/education/classes/{param}/assignments/{param}/submissions/{param}/resources/{param}/dependentResources","keep",,"Get-MgEducationClassAssignmentSubmissionResourceDependentResource","Get-MgEducationClassAssignmentSubmissionResourceDependentResource" +"GET","/education/classes/{param}/assignments/{param}/submissions/{param}/resources/{param}/dependentResources/{param}","keep",,"Get-MgEducationClassAssignmentSubmissionResourceDependentResource","Get-MgEducationClassAssignmentSubmissionResourceDependentResource" +"GET","/education/classes/{param}/assignments/{param}/submissions/{param}/resources/{param}/dependentResources/$count","keep",,"Get-MgEducationClassAssignmentSubmissionResourceDependentResourceCount","Get-MgEducationClassAssignmentSubmissionResourceDependentResourceCount" +"GET","/education/classes/{param}/assignments/{param}/submissions/{param}/resources/$count","keep",,"Get-MgEducationClassAssignmentSubmissionResourceCount","Get-MgEducationClassAssignmentSubmissionResourceCount" +"GET","/education/classes/{param}/assignments/{param}/submissions/{param}/submittedResources","keep",,"Get-MgEducationClassAssignmentSubmissionSubmittedResource","Get-MgEducationClassAssignmentSubmissionSubmittedResource" +"GET","/education/classes/{param}/assignments/{param}/submissions/{param}/submittedResources/{param}","keep",,"Get-MgEducationClassAssignmentSubmissionSubmittedResource","Get-MgEducationClassAssignmentSubmissionSubmittedResource" +"GET","/education/classes/{param}/assignments/{param}/submissions/{param}/submittedResources/{param}/dependentResources","keep",,"Get-MgEducationClassAssignmentSubmissionSubmittedResourceDependentResource","Get-MgEducationClassAssignmentSubmissionSubmittedResourceDependentResource" +"GET","/education/classes/{param}/assignments/{param}/submissions/{param}/submittedResources/{param}/dependentResources/{param}","keep",,"Get-MgEducationClassAssignmentSubmissionSubmittedResourceDependentResource","Get-MgEducationClassAssignmentSubmissionSubmittedResourceDependentResource" +"GET","/education/classes/{param}/assignments/{param}/submissions/{param}/submittedResources/{param}/dependentResources/$count","keep",,"Get-MgEducationClassAssignmentSubmissionSubmittedResourceDependentResourceCount","Get-MgEducationClassAssignmentSubmissionSubmittedResourceDependentResourceCount" +"GET","/education/classes/{param}/assignments/{param}/submissions/{param}/submittedResources/$count","keep",,"Get-MgEducationClassAssignmentSubmissionSubmittedResourceCount","Get-MgEducationClassAssignmentSubmissionSubmittedResourceCount" +"GET","/education/classes/{param}/assignments/{param}/submissions/$count","keep",,"Get-MgEducationClassAssignmentSubmissionCount","Get-MgEducationClassAssignmentSubmissionCount" +"GET","/education/classes/{param}/assignments/$count","keep",,"Get-MgEducationClassAssignmentCount","Get-MgEducationClassAssignmentCount" +"GET","/education/classes/{param}/assignments/delta","keep",,"Get-MgEducationClassAssignmentDelta","Get-MgEducationClassAssignmentDelta" +"GET","/education/classes/{param}/assignmentSettings","keep",,"Get-MgEducationClassAssignmentSetting","Get-MgEducationClassAssignmentSetting" +"GET","/education/classes/{param}/assignmentSettings/defaultGradingScheme","keep",,"Get-MgEducationClassAssignmentSettingDefaultGradingScheme","Get-MgEducationClassAssignmentSettingDefaultGradingScheme" +"GET","/education/classes/{param}/assignmentSettings/gradingCategories","keep",,"Get-MgEducationClassAssignmentSettingGradingCategory","Get-MgEducationClassAssignmentSettingGradingCategory" +"GET","/education/classes/{param}/assignmentSettings/gradingCategories/{param}","keep",,"Get-MgEducationClassAssignmentSettingGradingCategory","Get-MgEducationClassAssignmentSettingGradingCategory" +"GET","/education/classes/{param}/assignmentSettings/gradingCategories/$count","keep",,"Get-MgEducationClassAssignmentSettingGradingCategoryCount","Get-MgEducationClassAssignmentSettingGradingCategoryCount" +"GET","/education/classes/{param}/assignmentSettings/gradingSchemes","keep",,"Get-MgEducationClassAssignmentSettingGradingScheme","Get-MgEducationClassAssignmentSettingGradingScheme" +"GET","/education/classes/{param}/assignmentSettings/gradingSchemes/{param}","keep",,"Get-MgEducationClassAssignmentSettingGradingScheme","Get-MgEducationClassAssignmentSettingGradingScheme" +"GET","/education/classes/{param}/assignmentSettings/gradingSchemes/$count","keep",,"Get-MgEducationClassAssignmentSettingGradingSchemeCount","Get-MgEducationClassAssignmentSettingGradingSchemeCount" +"GET","/education/classes/{param}/getRecentlyModifiedSubmissions","rename","EducationClassRecentlyModifiedSubmission","Get-MgEducationClassGetRecentlyModifiedSubmissions","Get-MgEducationClassRecentlyModifiedSubmission" +"GET","/education/classes/{param}/group","keep",,"Get-MgEducationClassGroup","Get-MgEducationClassGroup" +"GET","/education/classes/{param}/group/serviceProvisioningErrors","keep",,"Get-MgEducationClassGroupServiceProvisioningError","Get-MgEducationClassGroupServiceProvisioningError" +"GET","/education/classes/{param}/group/serviceProvisioningErrors/$count","keep",,"Get-MgEducationClassGroupServiceProvisioningErrorCount","Get-MgEducationClassGroupServiceProvisioningErrorCount" +"GET","/education/classes/{param}/members","keep",,"Get-MgEducationClassMember","Get-MgEducationClassMember" +"GET","/education/classes/{param}/members/$count","keep",,"Get-MgEducationClassMemberCount","Get-MgEducationClassMemberCount" +"GET","/education/classes/{param}/members/$ref","keep",,"Get-MgEducationClassMemberByRef","Get-MgEducationClassMemberByRef" +"GET","/education/classes/{param}/modules","keep",,"Get-MgEducationClassModule","Get-MgEducationClassModule" +"GET","/education/classes/{param}/modules/{param}","keep",,"Get-MgEducationClassModule","Get-MgEducationClassModule" +"GET","/education/classes/{param}/modules/{param}/resources","keep",,"Get-MgEducationClassModuleResource","Get-MgEducationClassModuleResource" +"GET","/education/classes/{param}/modules/{param}/resources/{param}","keep",,"Get-MgEducationClassModuleResource","Get-MgEducationClassModuleResource" +"GET","/education/classes/{param}/modules/{param}/resources/$count","keep",,"Get-MgEducationClassModuleResourceCount","Get-MgEducationClassModuleResourceCount" +"GET","/education/classes/{param}/modules/$count","keep",,"Get-MgEducationClassModuleCount","Get-MgEducationClassModuleCount" +"GET","/education/classes/{param}/schools","keep",,"Get-MgEducationClassSchool","Get-MgEducationClassSchool" +"GET","/education/classes/{param}/schools/{param}","keep",,"Get-MgEducationClassSchool","Get-MgEducationClassSchool" +"GET","/education/classes/{param}/schools/$count","keep",,"Get-MgEducationClassSchoolCount","Get-MgEducationClassSchoolCount" +"GET","/education/classes/{param}/teachers","keep",,"Get-MgEducationClassTeacher","Get-MgEducationClassTeacher" +"GET","/education/classes/{param}/teachers/$count","keep",,"Get-MgEducationClassTeacherCount","Get-MgEducationClassTeacherCount" +"GET","/education/classes/{param}/teachers/$ref","keep",,"Get-MgEducationClassTeacherByRef","Get-MgEducationClassTeacherByRef" +"GET","/education/classes/$count","keep",,"Get-MgEducationClassCount","Get-MgEducationClassCount" +"GET","/education/classes/delta","keep",,"Get-MgEducationClassDelta","Get-MgEducationClassDelta" +"GET","/education/me","keep",,"Get-MgEducationMe","Get-MgEducationMe" +"GET","/education/me/assignments","keep",,"Get-MgEducationMeAssignment","Get-MgEducationMeAssignment" +"GET","/education/me/assignments/{param}","keep",,"Get-MgEducationMeAssignment","Get-MgEducationMeAssignment" +"GET","/education/me/assignments/{param}/categories","keep",,"Get-MgEducationMeAssignmentCategory","Get-MgEducationMeAssignmentCategory" +"GET","/education/me/assignments/{param}/categories/$count","keep",,"Get-MgEducationMeAssignmentCategoryCount","Get-MgEducationMeAssignmentCategoryCount" +"GET","/education/me/assignments/{param}/categories/$ref","keep",,"Get-MgEducationMeAssignmentCategoryByRef","Get-MgEducationMeAssignmentCategoryByRef" +"GET","/education/me/assignments/{param}/categories/delta","keep",,"Get-MgEducationMeAssignmentCategoryDelta","Get-MgEducationMeAssignmentCategoryDelta" +"GET","/education/me/assignments/{param}/gradingCategory","keep",,"Get-MgEducationMeAssignmentGradingCategory","Get-MgEducationMeAssignmentGradingCategory" +"GET","/education/me/assignments/{param}/gradingScheme","keep",,"Get-MgEducationMeAssignmentGradingScheme","Get-MgEducationMeAssignmentGradingScheme" +"GET","/education/me/assignments/{param}/resources","keep",,"Get-MgEducationMeAssignmentResource","Get-MgEducationMeAssignmentResource" +"GET","/education/me/assignments/{param}/resources/{param}","keep",,"Get-MgEducationMeAssignmentResource","Get-MgEducationMeAssignmentResource" +"GET","/education/me/assignments/{param}/resources/{param}/dependentResources","keep",,"Get-MgEducationMeAssignmentResourceDependentResource","Get-MgEducationMeAssignmentResourceDependentResource" +"GET","/education/me/assignments/{param}/resources/{param}/dependentResources/{param}","keep",,"Get-MgEducationMeAssignmentResourceDependentResource","Get-MgEducationMeAssignmentResourceDependentResource" +"GET","/education/me/assignments/{param}/resources/{param}/dependentResources/$count","keep",,"Get-MgEducationMeAssignmentResourceDependentResourceCount","Get-MgEducationMeAssignmentResourceDependentResourceCount" +"GET","/education/me/assignments/{param}/resources/$count","keep",,"Get-MgEducationMeAssignmentResourceCount","Get-MgEducationMeAssignmentResourceCount" +"GET","/education/me/assignments/{param}/rubric","keep",,"Get-MgEducationMeAssignmentRubric","Get-MgEducationMeAssignmentRubric" +"GET","/education/me/assignments/{param}/rubric/$ref","keep",,"Get-MgEducationMeAssignmentRubricByRef","Get-MgEducationMeAssignmentRubricByRef" +"GET","/education/me/assignments/{param}/submissions","keep",,"Get-MgEducationMeAssignmentSubmission","Get-MgEducationMeAssignmentSubmission" +"GET","/education/me/assignments/{param}/submissions/{param}","keep",,"Get-MgEducationMeAssignmentSubmission","Get-MgEducationMeAssignmentSubmission" +"GET","/education/me/assignments/{param}/submissions/{param}/outcomes","keep",,"Get-MgEducationMeAssignmentSubmissionOutcome","Get-MgEducationMeAssignmentSubmissionOutcome" +"GET","/education/me/assignments/{param}/submissions/{param}/outcomes/{param}","keep",,"Get-MgEducationMeAssignmentSubmissionOutcome","Get-MgEducationMeAssignmentSubmissionOutcome" +"GET","/education/me/assignments/{param}/submissions/{param}/outcomes/$count","keep",,"Get-MgEducationMeAssignmentSubmissionOutcomeCount","Get-MgEducationMeAssignmentSubmissionOutcomeCount" +"GET","/education/me/assignments/{param}/submissions/{param}/resources","keep",,"Get-MgEducationMeAssignmentSubmissionResource","Get-MgEducationMeAssignmentSubmissionResource" +"GET","/education/me/assignments/{param}/submissions/{param}/resources/{param}","keep",,"Get-MgEducationMeAssignmentSubmissionResource","Get-MgEducationMeAssignmentSubmissionResource" +"GET","/education/me/assignments/{param}/submissions/{param}/resources/{param}/dependentResources","keep",,"Get-MgEducationMeAssignmentSubmissionResourceDependentResource","Get-MgEducationMeAssignmentSubmissionResourceDependentResource" +"GET","/education/me/assignments/{param}/submissions/{param}/resources/{param}/dependentResources/{param}","keep",,"Get-MgEducationMeAssignmentSubmissionResourceDependentResource","Get-MgEducationMeAssignmentSubmissionResourceDependentResource" +"GET","/education/me/assignments/{param}/submissions/{param}/resources/{param}/dependentResources/$count","keep",,"Get-MgEducationMeAssignmentSubmissionResourceDependentResourceCount","Get-MgEducationMeAssignmentSubmissionResourceDependentResourceCount" +"GET","/education/me/assignments/{param}/submissions/{param}/resources/$count","keep",,"Get-MgEducationMeAssignmentSubmissionResourceCount","Get-MgEducationMeAssignmentSubmissionResourceCount" +"GET","/education/me/assignments/{param}/submissions/{param}/submittedResources","keep",,"Get-MgEducationMeAssignmentSubmissionSubmittedResource","Get-MgEducationMeAssignmentSubmissionSubmittedResource" +"GET","/education/me/assignments/{param}/submissions/{param}/submittedResources/{param}","keep",,"Get-MgEducationMeAssignmentSubmissionSubmittedResource","Get-MgEducationMeAssignmentSubmissionSubmittedResource" +"GET","/education/me/assignments/{param}/submissions/{param}/submittedResources/{param}/dependentResources","keep",,"Get-MgEducationMeAssignmentSubmissionSubmittedResourceDependentResource","Get-MgEducationMeAssignmentSubmissionSubmittedResourceDependentResource" +"GET","/education/me/assignments/{param}/submissions/{param}/submittedResources/{param}/dependentResources/{param}","keep",,"Get-MgEducationMeAssignmentSubmissionSubmittedResourceDependentResource","Get-MgEducationMeAssignmentSubmissionSubmittedResourceDependentResource" +"GET","/education/me/assignments/{param}/submissions/{param}/submittedResources/{param}/dependentResources/$count","keep",,"Get-MgEducationMeAssignmentSubmissionSubmittedResourceDependentResourceCount","Get-MgEducationMeAssignmentSubmissionSubmittedResourceDependentResourceCount" +"GET","/education/me/assignments/{param}/submissions/{param}/submittedResources/$count","keep",,"Get-MgEducationMeAssignmentSubmissionSubmittedResourceCount","Get-MgEducationMeAssignmentSubmissionSubmittedResourceCount" +"GET","/education/me/assignments/{param}/submissions/$count","keep",,"Get-MgEducationMeAssignmentSubmissionCount","Get-MgEducationMeAssignmentSubmissionCount" +"GET","/education/me/assignments/$count","keep",,"Get-MgEducationMeAssignmentCount","Get-MgEducationMeAssignmentCount" +"GET","/education/me/assignments/delta","keep",,"Get-MgEducationMeAssignmentDelta","Get-MgEducationMeAssignmentDelta" +"GET","/education/me/classes","keep",,"Get-MgEducationMeClass","Get-MgEducationMeClass" +"GET","/education/me/classes/{param}","keep",,"Get-MgEducationMeClass","Get-MgEducationMeClass" +"GET","/education/me/classes/$count","keep",,"Get-MgEducationMeClassCount","Get-MgEducationMeClassCount" +"GET","/education/me/rubrics","keep",,"Get-MgEducationMeRubric","Get-MgEducationMeRubric" +"GET","/education/me/rubrics/{param}","keep",,"Get-MgEducationMeRubric","Get-MgEducationMeRubric" +"GET","/education/me/rubrics/$count","keep",,"Get-MgEducationMeRubricCount","Get-MgEducationMeRubricCount" +"GET","/education/me/schools","keep",,"Get-MgEducationMeSchool","Get-MgEducationMeSchool" +"GET","/education/me/schools/{param}","keep",,"Get-MgEducationMeSchool","Get-MgEducationMeSchool" +"GET","/education/me/schools/$count","keep",,"Get-MgEducationMeSchoolCount","Get-MgEducationMeSchoolCount" +"GET","/education/me/taughtClasses","keep",,"Get-MgEducationMeTaughtClass","Get-MgEducationMeTaughtClass" +"GET","/education/me/taughtClasses/{param}","keep",,"Get-MgEducationMeTaughtClass","Get-MgEducationMeTaughtClass" +"GET","/education/me/taughtClasses/$count","keep",,"Get-MgEducationMeTaughtClassCount","Get-MgEducationMeTaughtClassCount" +"GET","/education/me/user","keep",,"Get-MgEducationMeUser","Get-MgEducationMeUser" +"GET","/education/me/user/mailboxSettings","keep",,"Get-MgEducationMeUserMailboxSetting","Get-MgEducationMeUserMailboxSetting" +"GET","/education/me/user/serviceProvisioningErrors","keep",,"Get-MgEducationMeUserServiceProvisioningError","Get-MgEducationMeUserServiceProvisioningError" +"GET","/education/me/user/serviceProvisioningErrors/$count","keep",,"Get-MgEducationMeUserServiceProvisioningErrorCount","Get-MgEducationMeUserServiceProvisioningErrorCount" +"GET","/education/reports","keep",,"Get-MgEducationReport","Get-MgEducationReport" +"GET","/education/reports/readingAssignmentSubmissions","keep",,"Get-MgEducationReportReadingAssignmentSubmission","Get-MgEducationReportReadingAssignmentSubmission" +"GET","/education/reports/readingAssignmentSubmissions/{param}","keep",,"Get-MgEducationReportReadingAssignmentSubmission","Get-MgEducationReportReadingAssignmentSubmission" +"GET","/education/reports/readingAssignmentSubmissions/$count","keep",,"Get-MgEducationReportReadingAssignmentSubmissionCount","Get-MgEducationReportReadingAssignmentSubmissionCount" +"GET","/education/reports/readingCoachPassages","keep",,"Get-MgEducationReportReadingCoachPassage","Get-MgEducationReportReadingCoachPassage" +"GET","/education/reports/readingCoachPassages/{param}","keep",,"Get-MgEducationReportReadingCoachPassage","Get-MgEducationReportReadingCoachPassage" +"GET","/education/reports/readingCoachPassages/$count","keep",,"Get-MgEducationReportReadingCoachPassageCount","Get-MgEducationReportReadingCoachPassageCount" +"GET","/education/reports/reflectCheckInResponses","rename","EducationReportReflectCheck","Get-MgEducationReportReflectCheckInResponse","Get-MgEducationReportReflectCheck" +"GET","/education/reports/reflectCheckInResponses/{param}","rename","EducationReportReflectCheck","Get-MgEducationReportReflectCheckInResponse","Get-MgEducationReportReflectCheck" +"GET","/education/reports/reflectCheckInResponses/$count","keep",,"Get-MgEducationReportReflectCheckInResponseCount","Get-MgEducationReportReflectCheckInResponseCount" +"GET","/education/reports/speakerAssignmentSubmissions","keep",,"Get-MgEducationReportSpeakerAssignmentSubmission","Get-MgEducationReportSpeakerAssignmentSubmission" +"GET","/education/reports/speakerAssignmentSubmissions/{param}","keep",,"Get-MgEducationReportSpeakerAssignmentSubmission","Get-MgEducationReportSpeakerAssignmentSubmission" +"GET","/education/reports/speakerAssignmentSubmissions/$count","keep",,"Get-MgEducationReportSpeakerAssignmentSubmissionCount","Get-MgEducationReportSpeakerAssignmentSubmissionCount" +"GET","/education/schools","keep",,"Get-MgEducationSchool","Get-MgEducationSchool" +"GET","/education/schools/{param}","keep",,"Get-MgEducationSchool","Get-MgEducationSchool" +"GET","/education/schools/{param}/administrativeUnit","keep",,"Get-MgEducationSchoolAdministrativeUnit","Get-MgEducationSchoolAdministrativeUnit" +"GET","/education/schools/{param}/classes","keep",,"Get-MgEducationSchoolClass","Get-MgEducationSchoolClass" +"GET","/education/schools/{param}/classes/$count","keep",,"Get-MgEducationSchoolClassCount","Get-MgEducationSchoolClassCount" +"GET","/education/schools/{param}/classes/$ref","keep",,"Get-MgEducationSchoolClassByRef","Get-MgEducationSchoolClassByRef" +"GET","/education/schools/{param}/users","keep",,"Get-MgEducationSchoolUser","Get-MgEducationSchoolUser" +"GET","/education/schools/{param}/users/$count","keep",,"Get-MgEducationSchoolUserCount","Get-MgEducationSchoolUserCount" +"GET","/education/schools/{param}/users/$ref","keep",,"Get-MgEducationSchoolUserByRef","Get-MgEducationSchoolUserByRef" +"GET","/education/schools/$count","keep",,"Get-MgEducationSchoolCount","Get-MgEducationSchoolCount" +"GET","/education/schools/delta","keep",,"Get-MgEducationSchoolDelta","Get-MgEducationSchoolDelta" +"GET","/education/users","keep",,"Get-MgEducationUser","Get-MgEducationUser" +"GET","/education/users/{param}","keep",,"Get-MgEducationUser","Get-MgEducationUser" +"GET","/education/users/{param}/assignments","keep",,"Get-MgEducationUserAssignment","Get-MgEducationUserAssignment" +"GET","/education/users/{param}/assignments/{param}","keep",,"Get-MgEducationUserAssignment","Get-MgEducationUserAssignment" +"GET","/education/users/{param}/assignments/{param}/categories","keep",,"Get-MgEducationUserAssignmentCategory","Get-MgEducationUserAssignmentCategory" +"GET","/education/users/{param}/assignments/{param}/categories/$count","keep",,"Get-MgEducationUserAssignmentCategoryCount","Get-MgEducationUserAssignmentCategoryCount" +"GET","/education/users/{param}/assignments/{param}/categories/$ref","keep",,"Get-MgEducationUserAssignmentCategoryByRef","Get-MgEducationUserAssignmentCategoryByRef" +"GET","/education/users/{param}/assignments/{param}/categories/delta","keep",,"Get-MgEducationUserAssignmentCategoryDelta","Get-MgEducationUserAssignmentCategoryDelta" +"GET","/education/users/{param}/assignments/{param}/gradingCategory","keep",,"Get-MgEducationUserAssignmentGradingCategory","Get-MgEducationUserAssignmentGradingCategory" +"GET","/education/users/{param}/assignments/{param}/gradingScheme","keep",,"Get-MgEducationUserAssignmentGradingScheme","Get-MgEducationUserAssignmentGradingScheme" +"GET","/education/users/{param}/assignments/{param}/resources","keep",,"Get-MgEducationUserAssignmentResource","Get-MgEducationUserAssignmentResource" +"GET","/education/users/{param}/assignments/{param}/resources/{param}","keep",,"Get-MgEducationUserAssignmentResource","Get-MgEducationUserAssignmentResource" +"GET","/education/users/{param}/assignments/{param}/resources/{param}/dependentResources","keep",,"Get-MgEducationUserAssignmentResourceDependentResource","Get-MgEducationUserAssignmentResourceDependentResource" +"GET","/education/users/{param}/assignments/{param}/resources/{param}/dependentResources/{param}","keep",,"Get-MgEducationUserAssignmentResourceDependentResource","Get-MgEducationUserAssignmentResourceDependentResource" +"GET","/education/users/{param}/assignments/{param}/resources/{param}/dependentResources/$count","keep",,"Get-MgEducationUserAssignmentResourceDependentResourceCount","Get-MgEducationUserAssignmentResourceDependentResourceCount" +"GET","/education/users/{param}/assignments/{param}/resources/$count","keep",,"Get-MgEducationUserAssignmentResourceCount","Get-MgEducationUserAssignmentResourceCount" +"GET","/education/users/{param}/assignments/{param}/rubric","keep",,"Get-MgEducationUserAssignmentRubric","Get-MgEducationUserAssignmentRubric" +"GET","/education/users/{param}/assignments/{param}/rubric/$ref","keep",,"Get-MgEducationUserAssignmentRubricByRef","Get-MgEducationUserAssignmentRubricByRef" +"GET","/education/users/{param}/assignments/{param}/submissions","keep",,"Get-MgEducationUserAssignmentSubmission","Get-MgEducationUserAssignmentSubmission" +"GET","/education/users/{param}/assignments/{param}/submissions/{param}","keep",,"Get-MgEducationUserAssignmentSubmission","Get-MgEducationUserAssignmentSubmission" +"GET","/education/users/{param}/assignments/{param}/submissions/{param}/outcomes","keep",,"Get-MgEducationUserAssignmentSubmissionOutcome","Get-MgEducationUserAssignmentSubmissionOutcome" +"GET","/education/users/{param}/assignments/{param}/submissions/{param}/outcomes/{param}","keep",,"Get-MgEducationUserAssignmentSubmissionOutcome","Get-MgEducationUserAssignmentSubmissionOutcome" +"GET","/education/users/{param}/assignments/{param}/submissions/{param}/outcomes/$count","keep",,"Get-MgEducationUserAssignmentSubmissionOutcomeCount","Get-MgEducationUserAssignmentSubmissionOutcomeCount" +"GET","/education/users/{param}/assignments/{param}/submissions/{param}/resources","keep",,"Get-MgEducationUserAssignmentSubmissionResource","Get-MgEducationUserAssignmentSubmissionResource" +"GET","/education/users/{param}/assignments/{param}/submissions/{param}/resources/{param}","keep",,"Get-MgEducationUserAssignmentSubmissionResource","Get-MgEducationUserAssignmentSubmissionResource" +"GET","/education/users/{param}/assignments/{param}/submissions/{param}/resources/{param}/dependentResources","keep",,"Get-MgEducationUserAssignmentSubmissionResourceDependentResource","Get-MgEducationUserAssignmentSubmissionResourceDependentResource" +"GET","/education/users/{param}/assignments/{param}/submissions/{param}/resources/{param}/dependentResources/{param}","keep",,"Get-MgEducationUserAssignmentSubmissionResourceDependentResource","Get-MgEducationUserAssignmentSubmissionResourceDependentResource" +"GET","/education/users/{param}/assignments/{param}/submissions/{param}/resources/{param}/dependentResources/$count","keep",,"Get-MgEducationUserAssignmentSubmissionResourceDependentResourceCount","Get-MgEducationUserAssignmentSubmissionResourceDependentResourceCount" +"GET","/education/users/{param}/assignments/{param}/submissions/{param}/resources/$count","keep",,"Get-MgEducationUserAssignmentSubmissionResourceCount","Get-MgEducationUserAssignmentSubmissionResourceCount" +"GET","/education/users/{param}/assignments/{param}/submissions/{param}/submittedResources","keep",,"Get-MgEducationUserAssignmentSubmissionSubmittedResource","Get-MgEducationUserAssignmentSubmissionSubmittedResource" +"GET","/education/users/{param}/assignments/{param}/submissions/{param}/submittedResources/{param}","keep",,"Get-MgEducationUserAssignmentSubmissionSubmittedResource","Get-MgEducationUserAssignmentSubmissionSubmittedResource" +"GET","/education/users/{param}/assignments/{param}/submissions/{param}/submittedResources/{param}/dependentResources","keep",,"Get-MgEducationUserAssignmentSubmissionSubmittedResourceDependentResource","Get-MgEducationUserAssignmentSubmissionSubmittedResourceDependentResource" +"GET","/education/users/{param}/assignments/{param}/submissions/{param}/submittedResources/{param}/dependentResources/{param}","keep",,"Get-MgEducationUserAssignmentSubmissionSubmittedResourceDependentResource","Get-MgEducationUserAssignmentSubmissionSubmittedResourceDependentResource" +"GET","/education/users/{param}/assignments/{param}/submissions/{param}/submittedResources/{param}/dependentResources/$count","keep",,"Get-MgEducationUserAssignmentSubmissionSubmittedResourceDependentResourceCount","Get-MgEducationUserAssignmentSubmissionSubmittedResourceDependentResourceCount" +"GET","/education/users/{param}/assignments/{param}/submissions/{param}/submittedResources/$count","keep",,"Get-MgEducationUserAssignmentSubmissionSubmittedResourceCount","Get-MgEducationUserAssignmentSubmissionSubmittedResourceCount" +"GET","/education/users/{param}/assignments/{param}/submissions/$count","keep",,"Get-MgEducationUserAssignmentSubmissionCount","Get-MgEducationUserAssignmentSubmissionCount" +"GET","/education/users/{param}/assignments/$count","keep",,"Get-MgEducationUserAssignmentCount","Get-MgEducationUserAssignmentCount" +"GET","/education/users/{param}/assignments/delta","keep",,"Get-MgEducationUserAssignmentDelta","Get-MgEducationUserAssignmentDelta" +"GET","/education/users/{param}/classes","keep",,"Get-MgEducationUserClass","Get-MgEducationUserClass" +"GET","/education/users/{param}/classes/{param}","keep",,"Get-MgEducationUserClass","Get-MgEducationUserClass" +"GET","/education/users/{param}/classes/$count","keep",,"Get-MgEducationUserClassCount","Get-MgEducationUserClassCount" +"GET","/education/users/{param}/rubrics","keep",,"Get-MgEducationUserRubric","Get-MgEducationUserRubric" +"GET","/education/users/{param}/rubrics/{param}","keep",,"Get-MgEducationUserRubric","Get-MgEducationUserRubric" +"GET","/education/users/{param}/rubrics/$count","keep",,"Get-MgEducationUserRubricCount","Get-MgEducationUserRubricCount" +"GET","/education/users/{param}/schools","keep",,"Get-MgEducationUserSchool","Get-MgEducationUserSchool" +"GET","/education/users/{param}/schools/{param}","keep",,"Get-MgEducationUserSchool","Get-MgEducationUserSchool" +"GET","/education/users/{param}/schools/$count","keep",,"Get-MgEducationUserSchoolCount","Get-MgEducationUserSchoolCount" +"GET","/education/users/{param}/taughtClasses","keep",,"Get-MgEducationUserTaughtClass","Get-MgEducationUserTaughtClass" +"GET","/education/users/{param}/taughtClasses/{param}","keep",,"Get-MgEducationUserTaughtClass","Get-MgEducationUserTaughtClass" +"GET","/education/users/{param}/taughtClasses/$count","keep",,"Get-MgEducationUserTaughtClassCount","Get-MgEducationUserTaughtClassCount" +"GET","/education/users/{param}/user/mailboxSettings","keep",,"Get-MgEducationUserMailboxSetting","Get-MgEducationUserMailboxSetting" +"GET","/education/users/{param}/user/serviceProvisioningErrors","keep",,"Get-MgEducationUserServiceProvisioningError","Get-MgEducationUserServiceProvisioningError" +"GET","/education/users/{param}/user/serviceProvisioningErrors/$count","keep",,"Get-MgEducationUserServiceProvisioningErrorCount","Get-MgEducationUserServiceProvisioningErrorCount" +"GET","/education/users/$count","keep",,"Get-MgEducationUserCount","Get-MgEducationUserCount" +"GET","/education/users/delta","keep",,"Get-MgEducationUserDelta","Get-MgEducationUserDelta" +"GET","/external","keep",,"Get-MgExternal","Get-MgExternal" +"GET","/external/connections","keep",,"Get-MgExternalConnection","Get-MgExternalConnection" +"GET","/external/connections/{param}","keep",,"Get-MgExternalConnection","Get-MgExternalConnection" +"GET","/external/connections/{param}/groups","keep",,"Get-MgExternalConnectionGroup","Get-MgExternalConnectionGroup" +"GET","/external/connections/{param}/groups/{param}","keep",,"Get-MgExternalConnectionGroup","Get-MgExternalConnectionGroup" +"GET","/external/connections/{param}/groups/{param}/members","keep",,"Get-MgExternalConnectionGroupMember","Get-MgExternalConnectionGroupMember" +"GET","/external/connections/{param}/groups/{param}/members/{param}","keep",,"Get-MgExternalConnectionGroupMember","Get-MgExternalConnectionGroupMember" +"GET","/external/connections/{param}/groups/{param}/members/$count","keep",,"Get-MgExternalConnectionGroupMemberCount","Get-MgExternalConnectionGroupMemberCount" +"GET","/external/connections/{param}/groups/$count","keep",,"Get-MgExternalConnectionGroupCount","Get-MgExternalConnectionGroupCount" +"GET","/external/connections/{param}/items","keep",,"Get-MgExternalConnectionItem","Get-MgExternalConnectionItem" +"GET","/external/connections/{param}/items/{param}","keep",,"Get-MgExternalConnectionItem","Get-MgExternalConnectionItem" +"GET","/external/connections/{param}/items/{param}/activities","keep",,"Get-MgExternalConnectionItemActivity","Get-MgExternalConnectionItemActivity" +"GET","/external/connections/{param}/items/{param}/activities/{param}","keep",,"Get-MgExternalConnectionItemActivity","Get-MgExternalConnectionItemActivity" +"GET","/external/connections/{param}/items/{param}/activities/{param}/performedBy","keep",,"Get-MgExternalConnectionItemActivityPerformedBy","Get-MgExternalConnectionItemActivityPerformedBy" +"GET","/external/connections/{param}/items/{param}/activities/$count","keep",,"Get-MgExternalConnectionItemActivityCount","Get-MgExternalConnectionItemActivityCount" +"GET","/external/connections/{param}/items/$count","keep",,"Get-MgExternalConnectionItemCount","Get-MgExternalConnectionItemCount" +"GET","/external/connections/{param}/operations","keep",,"Get-MgExternalConnectionOperation","Get-MgExternalConnectionOperation" +"GET","/external/connections/{param}/operations/{param}","keep",,"Get-MgExternalConnectionOperation","Get-MgExternalConnectionOperation" +"GET","/external/connections/{param}/operations/$count","keep",,"Get-MgExternalConnectionOperationCount","Get-MgExternalConnectionOperationCount" +"GET","/external/connections/{param}/schema","keep",,"Get-MgExternalConnectionSchema","Get-MgExternalConnectionSchema" +"GET","/external/connections/$count","keep",,"Get-MgExternalConnectionCount","Get-MgExternalConnectionCount" +"GET","/groupLifecyclePolicies","keep",,"Get-MgGroupLifecyclePolicy","Get-MgGroupLifecyclePolicy" +"GET","/groupLifecyclePolicies/{param}","keep",,"Get-MgGroupLifecyclePolicy","Get-MgGroupLifecyclePolicy" +"GET","/groupLifecyclePolicies/$count","keep",,"Get-MgGroupLifecyclePolicyCount","Get-MgGroupLifecyclePolicyCount" +"GET","/groups","keep",,"Get-MgGroup","Get-MgGroup" +"GET","/groups/{param}","keep",,"Get-MgGroup","Get-MgGroup" +"GET","/groups/{param}/acceptedSenders","keep",,"Get-MgGroupAcceptedSender","Get-MgGroupAcceptedSender" +"GET","/groups/{param}/acceptedSenders/$count","keep",,"Get-MgGroupAcceptedSenderCount","Get-MgGroupAcceptedSenderCount" +"GET","/groups/{param}/acceptedSenders/$ref","keep",,"Get-MgGroupAcceptedSenderByRef","Get-MgGroupAcceptedSenderByRef" +"GET","/groups/{param}/appRoleAssignments","keep",,"Get-MgGroupAppRoleAssignment","Get-MgGroupAppRoleAssignment" +"GET","/groups/{param}/appRoleAssignments/{param}","keep",,"Get-MgGroupAppRoleAssignment","Get-MgGroupAppRoleAssignment" +"GET","/groups/{param}/appRoleAssignments/$count","keep",,"Get-MgGroupAppRoleAssignmentCount","Get-MgGroupAppRoleAssignmentCount" +"GET","/groups/{param}/calendar","keep",,"Get-MgGroupCalendar","Get-MgGroupCalendar" +"GET","/groups/{param}/calendar/calendarPermissions","keep",,"Get-MgGroupCalendarPermission","Get-MgGroupCalendarPermission" +"GET","/groups/{param}/calendar/calendarPermissions/{param}","keep",,"Get-MgGroupCalendarPermission","Get-MgGroupCalendarPermission" +"GET","/groups/{param}/calendar/calendarPermissions/$count","keep",,"Get-MgGroupCalendarPermissionCount","Get-MgGroupCalendarPermissionCount" +"GET","/groups/{param}/calendar/calendarView","keep",,"Get-MgGroupCalendarView","Get-MgGroupCalendarView" +"GET","/groups/{param}/calendar/calendarView/delta","suppress",,"Get-MgGroupCalendarViewDelta","no oracle row for GET /groups/{param}/calendar/calendarView/delta and 'Get-MgGroupCalendarViewDelta' unshipped" +"GET","/groups/{param}/calendar/events","keep",,"Get-MgGroupCalendarEvent","Get-MgGroupCalendarEvent" +"GET","/groups/{param}/calendar/events/{param}","keep",,"Get-MgGroupCalendarEvent","Get-MgGroupCalendarEvent" +"GET","/groups/{param}/calendar/events/{param}/attachments","suppress",,"Get-MgGroupCalendarEventAttachment","no oracle row for GET /groups/{param}/calendar/events/{param}/attachments and 'Get-MgGroupCalendarEventAttachment' unshipped" +"GET","/groups/{param}/calendar/events/{param}/attachments/{param}","suppress",,"Get-MgGroupCalendarEventAttachment","no oracle row for GET /groups/{param}/calendar/events/{param}/attachments/{param} and 'Get-MgGroupCalendarEventAttachment' unshipped" +"GET","/groups/{param}/calendar/events/{param}/attachments/$count","suppress",,"Get-MgGroupCalendarEventAttachmentCount","no oracle row for GET /groups/{param}/calendar/events/{param}/attachments/$count and 'Get-MgGroupCalendarEventAttachmentCount' unshipped" +"GET","/groups/{param}/calendar/events/{param}/calendar","suppress",,"Get-MgGroupCalendarEventCalendar","no oracle row for GET /groups/{param}/calendar/events/{param}/calendar and 'Get-MgGroupCalendarEventCalendar' unshipped" +"GET","/groups/{param}/calendar/events/{param}/extensions","suppress",,"Get-MgGroupCalendarEventExtension","no oracle row for GET /groups/{param}/calendar/events/{param}/extensions and 'Get-MgGroupCalendarEventExtension' unshipped" +"GET","/groups/{param}/calendar/events/{param}/extensions/{param}","suppress",,"Get-MgGroupCalendarEventExtension","no oracle row for GET /groups/{param}/calendar/events/{param}/extensions/{param} and 'Get-MgGroupCalendarEventExtension' unshipped" +"GET","/groups/{param}/calendar/events/{param}/extensions/$count","suppress",,"Get-MgGroupCalendarEventExtensionCount","no oracle row for GET /groups/{param}/calendar/events/{param}/extensions/$count and 'Get-MgGroupCalendarEventExtensionCount' unshipped" +"GET","/groups/{param}/calendar/events/{param}/instances","suppress",,"Get-MgGroupCalendarEventInstance","no oracle row for GET /groups/{param}/calendar/events/{param}/instances and 'Get-MgGroupCalendarEventInstance' unshipped" +"GET","/groups/{param}/calendar/events/{param}/instances/delta","suppress",,"Get-MgGroupCalendarEventInstanceDelta","no oracle row for GET /groups/{param}/calendar/events/{param}/instances/delta and 'Get-MgGroupCalendarEventInstanceDelta' unshipped" +"GET","/groups/{param}/calendar/events/$count","suppress",,"Get-MgGroupCalendarEventCount","no oracle row for GET /groups/{param}/calendar/events/$count and 'Get-MgGroupCalendarEventCount' unshipped" +"GET","/groups/{param}/calendar/events/delta","suppress",,"Get-MgGroupCalendarEventDelta","no oracle row for GET /groups/{param}/calendar/events/delta and 'Get-MgGroupCalendarEventDelta' unshipped" +"GET","/groups/{param}/conversations","keep",,"Get-MgGroupConversation","Get-MgGroupConversation" +"GET","/groups/{param}/conversations/{param}","keep",,"Get-MgGroupConversation","Get-MgGroupConversation" +"GET","/groups/{param}/conversations/{param}/threads","keep",,"Get-MgGroupConversationThread","Get-MgGroupConversationThread" +"GET","/groups/{param}/conversations/{param}/threads/{param}","keep",,"Get-MgGroupConversationThread","Get-MgGroupConversationThread" +"GET","/groups/{param}/conversations/{param}/threads/{param}/posts","keep",,"Get-MgGroupConversationThreadPost","Get-MgGroupConversationThreadPost" +"GET","/groups/{param}/conversations/{param}/threads/{param}/posts/{param}","keep",,"Get-MgGroupConversationThreadPost","Get-MgGroupConversationThreadPost" +"GET","/groups/{param}/conversations/{param}/threads/{param}/posts/{param}/attachments","keep",,"Get-MgGroupConversationThreadPostAttachment","Get-MgGroupConversationThreadPostAttachment" +"GET","/groups/{param}/conversations/{param}/threads/{param}/posts/{param}/attachments/{param}","keep",,"Get-MgGroupConversationThreadPostAttachment","Get-MgGroupConversationThreadPostAttachment" +"GET","/groups/{param}/conversations/{param}/threads/{param}/posts/{param}/attachments/$count","keep",,"Get-MgGroupConversationThreadPostAttachmentCount","Get-MgGroupConversationThreadPostAttachmentCount" +"GET","/groups/{param}/conversations/{param}/threads/{param}/posts/{param}/extensions","keep",,"Get-MgGroupConversationThreadPostExtension","Get-MgGroupConversationThreadPostExtension" +"GET","/groups/{param}/conversations/{param}/threads/{param}/posts/{param}/extensions/{param}","keep",,"Get-MgGroupConversationThreadPostExtension","Get-MgGroupConversationThreadPostExtension" +"GET","/groups/{param}/conversations/{param}/threads/{param}/posts/{param}/extensions/$count","keep",,"Get-MgGroupConversationThreadPostExtensionCount","Get-MgGroupConversationThreadPostExtensionCount" +"GET","/groups/{param}/conversations/{param}/threads/{param}/posts/{param}/inReplyTo","suppress",,"Get-MgGroupConversationThreadPostInReplyTo","no oracle row for GET /groups/{param}/conversations/{param}/threads/{param}/posts/{param}/inReplyTo and 'Get-MgGroupConversationThreadPostInReplyTo' unshipped" +"GET","/groups/{param}/conversations/{param}/threads/{param}/posts/{param}/inReplyTo/attachments","keep",,"Get-MgGroupConversationThreadPostInReplyToAttachment","Get-MgGroupConversationThreadPostInReplyToAttachment" +"GET","/groups/{param}/conversations/{param}/threads/{param}/posts/{param}/inReplyTo/attachments/{param}","keep",,"Get-MgGroupConversationThreadPostInReplyToAttachment","Get-MgGroupConversationThreadPostInReplyToAttachment" +"GET","/groups/{param}/conversations/{param}/threads/{param}/posts/{param}/inReplyTo/attachments/$count","keep",,"Get-MgGroupConversationThreadPostInReplyToAttachmentCount","Get-MgGroupConversationThreadPostInReplyToAttachmentCount" +"GET","/groups/{param}/conversations/{param}/threads/{param}/posts/{param}/inReplyTo/extensions","keep",,"Get-MgGroupConversationThreadPostInReplyToExtension","Get-MgGroupConversationThreadPostInReplyToExtension" +"GET","/groups/{param}/conversations/{param}/threads/{param}/posts/{param}/inReplyTo/extensions/{param}","keep",,"Get-MgGroupConversationThreadPostInReplyToExtension","Get-MgGroupConversationThreadPostInReplyToExtension" +"GET","/groups/{param}/conversations/{param}/threads/{param}/posts/{param}/inReplyTo/extensions/$count","keep",,"Get-MgGroupConversationThreadPostInReplyToExtensionCount","Get-MgGroupConversationThreadPostInReplyToExtensionCount" +"GET","/groups/{param}/conversations/{param}/threads/{param}/posts/$count","keep",,"Get-MgGroupConversationThreadPostCount","Get-MgGroupConversationThreadPostCount" +"GET","/groups/{param}/conversations/{param}/threads/$count","keep",,"Get-MgGroupConversationThreadCount","Get-MgGroupConversationThreadCount" +"GET","/groups/{param}/conversations/$count","keep",,"Get-MgGroupConversationCount","Get-MgGroupConversationCount" +"GET","/groups/{param}/createdOnBehalfOf","keep",,"Get-MgGroupCreatedOnBehalfOf","Get-MgGroupCreatedOnBehalfOf" +"GET","/groups/{param}/drive","keep",,"Get-MgGroupDefaultDrive","Get-MgGroupDefaultDrive" +"GET","/groups/{param}/drives","keep",,"Get-MgGroupDrive","Get-MgGroupDrive" +"GET","/groups/{param}/drives/{param}","keep",,"Get-MgGroupDrive","Get-MgGroupDrive" +"GET","/groups/{param}/drives/$count","keep",,"Get-MgGroupDriveCount","Get-MgGroupDriveCount" +"GET","/groups/{param}/events","keep",,"Get-MgGroupEvent","Get-MgGroupEvent" +"GET","/groups/{param}/events/{param}","keep",,"Get-MgGroupEvent","Get-MgGroupEvent" +"GET","/groups/{param}/events/{param}/attachments","keep",,"Get-MgGroupEventAttachment","Get-MgGroupEventAttachment" +"GET","/groups/{param}/events/{param}/attachments/{param}","keep",,"Get-MgGroupEventAttachment","Get-MgGroupEventAttachment" +"GET","/groups/{param}/events/{param}/attachments/$count","keep",,"Get-MgGroupEventAttachmentCount","Get-MgGroupEventAttachmentCount" +"GET","/groups/{param}/events/{param}/calendar","keep",,"Get-MgGroupEventCalendar","Get-MgGroupEventCalendar" +"GET","/groups/{param}/events/{param}/extensions","keep",,"Get-MgGroupEventExtension","Get-MgGroupEventExtension" +"GET","/groups/{param}/events/{param}/extensions/{param}","keep",,"Get-MgGroupEventExtension","Get-MgGroupEventExtension" +"GET","/groups/{param}/events/{param}/extensions/$count","keep",,"Get-MgGroupEventExtensionCount","Get-MgGroupEventExtensionCount" +"GET","/groups/{param}/events/{param}/instances","keep",,"Get-MgGroupEventInstance","Get-MgGroupEventInstance" +"GET","/groups/{param}/events/{param}/instances/delta","keep",,"Get-MgGroupEventInstanceDelta","Get-MgGroupEventInstanceDelta" +"GET","/groups/{param}/events/$count","keep",,"Get-MgGroupEventCount","Get-MgGroupEventCount" +"GET","/groups/{param}/events/delta","keep",,"Get-MgGroupEventDelta","Get-MgGroupEventDelta" +"GET","/groups/{param}/extensions","keep",,"Get-MgGroupExtension","Get-MgGroupExtension" +"GET","/groups/{param}/extensions/{param}","keep",,"Get-MgGroupExtension","Get-MgGroupExtension" +"GET","/groups/{param}/extensions/$count","keep",,"Get-MgGroupExtensionCount","Get-MgGroupExtensionCount" +"GET","/groups/{param}/groupLifecyclePolicies","keep",,"Get-MgGroupLifecyclePolicyByGroup","Get-MgGroupLifecyclePolicyByGroup" +"GET","/groups/{param}/memberOf","keep",,"Get-MgGroupMemberOf","Get-MgGroupMemberOf" +"GET","/groups/{param}/memberOf/{param}","keep",,"Get-MgGroupMemberOf","Get-MgGroupMemberOf" +"GET","/groups/{param}/memberOf/$count","keep",,"Get-MgGroupMemberOfCount","Get-MgGroupMemberOfCount" +"GET","/groups/{param}/members","keep",,"Get-MgGroupMember","Get-MgGroupMember" +"GET","/groups/{param}/members/$count","keep",,"Get-MgGroupMemberCount","Get-MgGroupMemberCount" +"GET","/groups/{param}/members/$ref","keep",,"Get-MgGroupMemberByRef","Get-MgGroupMemberByRef" +"GET","/groups/{param}/membersWithLicenseErrors","keep",,"Get-MgGroupMemberWithLicenseError","Get-MgGroupMemberWithLicenseError" +"GET","/groups/{param}/membersWithLicenseErrors/{param}","keep",,"Get-MgGroupMemberWithLicenseError","Get-MgGroupMemberWithLicenseError" +"GET","/groups/{param}/membersWithLicenseErrors/$count","keep",,"Get-MgGroupMemberWithLicenseErrorCount","Get-MgGroupMemberWithLicenseErrorCount" +"GET","/groups/{param}/onenote","keep",,"Get-MgGroupOnenote","Get-MgGroupOnenote" +"GET","/groups/{param}/onenote/notebooks","keep",,"Get-MgGroupOnenoteNotebook","Get-MgGroupOnenoteNotebook" +"GET","/groups/{param}/onenote/notebooks/{param}","keep",,"Get-MgGroupOnenoteNotebook","Get-MgGroupOnenoteNotebook" +"GET","/groups/{param}/onenote/notebooks/{param}/sectionGroups","keep",,"Get-MgGroupOnenoteNotebookSectionGroup","Get-MgGroupOnenoteNotebookSectionGroup" +"GET","/groups/{param}/onenote/notebooks/{param}/sectionGroups/{param}/parentNotebook","keep",,"Get-MgGroupOnenoteNotebookSectionGroupParentNotebook","Get-MgGroupOnenoteNotebookSectionGroupParentNotebook" +"GET","/groups/{param}/onenote/notebooks/{param}/sectionGroups/{param}/parentSectionGroup","keep",,"Get-MgGroupOnenoteNotebookSectionGroupParentSectionGroup","Get-MgGroupOnenoteNotebookSectionGroupParentSectionGroup" +"GET","/groups/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sectionGroups/$count","keep",,"Get-MgGroupOnenoteNotebookSectionGroupCount","Get-MgGroupOnenoteNotebookSectionGroupCount" +"GET","/groups/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections","keep",,"Get-MgGroupOnenoteNotebookSectionGroupSection","Get-MgGroupOnenoteNotebookSectionGroupSection" +"GET","/groups/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}","keep",,"Get-MgGroupOnenoteNotebookSectionGroupSection","Get-MgGroupOnenoteNotebookSectionGroupSection" +"GET","/groups/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages","keep",,"Get-MgGroupOnenoteNotebookSectionGroupSectionPage","Get-MgGroupOnenoteNotebookSectionGroupSectionPage" +"GET","/groups/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}","keep",,"Get-MgGroupOnenoteNotebookSectionGroupSectionPage","Get-MgGroupOnenoteNotebookSectionGroupSectionPage" +"GET","/groups/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}/parentNotebook","keep",,"Get-MgGroupOnenoteNotebookSectionGroupSectionPageParentNotebook","Get-MgGroupOnenoteNotebookSectionGroupSectionPageParentNotebook" +"GET","/groups/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}/parentSection","keep",,"Get-MgGroupOnenoteNotebookSectionGroupSectionPageParentSection","Get-MgGroupOnenoteNotebookSectionGroupSectionPageParentSection" +"GET","/groups/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}/preview","rename","PreviewGroupOnenoteNotebookSectionGroupSectionPage","Get-MgGroupOnenoteNotebookSectionGroupSectionPagePreview","Invoke-MgPreviewGroupOnenoteNotebookSectionGroupSectionPage" +"GET","/groups/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/$count","keep",,"Get-MgGroupOnenoteNotebookSectionGroupSectionPageCount","Get-MgGroupOnenoteNotebookSectionGroupSectionPageCount" +"GET","/groups/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/parentNotebook","keep",,"Get-MgGroupOnenoteNotebookSectionGroupSectionParentNotebook","Get-MgGroupOnenoteNotebookSectionGroupSectionParentNotebook" +"GET","/groups/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/parentSectionGroup","keep",,"Get-MgGroupOnenoteNotebookSectionGroupSectionParentSectionGroup","Get-MgGroupOnenoteNotebookSectionGroupSectionParentSectionGroup" +"GET","/groups/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/$count","keep",,"Get-MgGroupOnenoteNotebookSectionGroupSectionCount","Get-MgGroupOnenoteNotebookSectionGroupSectionCount" +"GET","/groups/{param}/onenote/notebooks/{param}/sections","keep",,"Get-MgGroupOnenoteNotebookSection","Get-MgGroupOnenoteNotebookSection" +"GET","/groups/{param}/onenote/notebooks/{param}/sections/{param}","keep",,"Get-MgGroupOnenoteNotebookSection","Get-MgGroupOnenoteNotebookSection" +"GET","/groups/{param}/onenote/notebooks/{param}/sections/{param}/pages","keep",,"Get-MgGroupOnenoteNotebookSectionPage","Get-MgGroupOnenoteNotebookSectionPage" +"GET","/groups/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}","keep",,"Get-MgGroupOnenoteNotebookSectionPage","Get-MgGroupOnenoteNotebookSectionPage" +"GET","/groups/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}/parentNotebook","keep",,"Get-MgGroupOnenoteNotebookSectionPageParentNotebook","Get-MgGroupOnenoteNotebookSectionPageParentNotebook" +"GET","/groups/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}/parentSection","keep",,"Get-MgGroupOnenoteNotebookSectionPageParentSection","Get-MgGroupOnenoteNotebookSectionPageParentSection" +"GET","/groups/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}/preview","rename","PreviewGroupOnenoteNotebookSectionPage","Get-MgGroupOnenoteNotebookSectionPagePreview","Invoke-MgPreviewGroupOnenoteNotebookSectionPage" +"GET","/groups/{param}/onenote/notebooks/{param}/sections/{param}/pages/$count","keep",,"Get-MgGroupOnenoteNotebookSectionPageCount","Get-MgGroupOnenoteNotebookSectionPageCount" +"GET","/groups/{param}/onenote/notebooks/{param}/sections/{param}/parentNotebook","keep",,"Get-MgGroupOnenoteNotebookSectionParentNotebook","Get-MgGroupOnenoteNotebookSectionParentNotebook" +"GET","/groups/{param}/onenote/notebooks/{param}/sections/{param}/parentSectionGroup","keep",,"Get-MgGroupOnenoteNotebookSectionParentSectionGroup","Get-MgGroupOnenoteNotebookSectionParentSectionGroup" +"GET","/groups/{param}/onenote/notebooks/{param}/sections/$count","keep",,"Get-MgGroupOnenoteNotebookSectionCount","Get-MgGroupOnenoteNotebookSectionCount" +"GET","/groups/{param}/onenote/notebooks/$count","keep",,"Get-MgGroupOnenoteNotebookCount","Get-MgGroupOnenoteNotebookCount" +"GET","/groups/{param}/onenote/operations","keep",,"Get-MgGroupOnenoteOperation","Get-MgGroupOnenoteOperation" +"GET","/groups/{param}/onenote/operations/{param}","keep",,"Get-MgGroupOnenoteOperation","Get-MgGroupOnenoteOperation" +"GET","/groups/{param}/onenote/operations/$count","keep",,"Get-MgGroupOnenoteOperationCount","Get-MgGroupOnenoteOperationCount" +"GET","/groups/{param}/onenote/pages","keep",,"Get-MgGroupOnenotePage","Get-MgGroupOnenotePage" +"GET","/groups/{param}/onenote/pages/{param}","keep",,"Get-MgGroupOnenotePage","Get-MgGroupOnenotePage" +"GET","/groups/{param}/onenote/pages/{param}/parentNotebook","keep",,"Get-MgGroupOnenotePageParentNotebook","Get-MgGroupOnenotePageParentNotebook" +"GET","/groups/{param}/onenote/pages/{param}/parentSection","keep",,"Get-MgGroupOnenotePageParentSection","Get-MgGroupOnenotePageParentSection" +"GET","/groups/{param}/onenote/pages/{param}/preview","rename","PreviewGroupOnenotePage","Get-MgGroupOnenotePagePreview","Invoke-MgPreviewGroupOnenotePage" +"GET","/groups/{param}/onenote/pages/$count","keep",,"Get-MgGroupOnenotePageCount","Get-MgGroupOnenotePageCount" +"GET","/groups/{param}/onenote/resources","keep",,"Get-MgGroupOnenoteResource","Get-MgGroupOnenoteResource" +"GET","/groups/{param}/onenote/resources/{param}","keep",,"Get-MgGroupOnenoteResource","Get-MgGroupOnenoteResource" +"GET","/groups/{param}/onenote/resources/$count","keep",,"Get-MgGroupOnenoteResourceCount","Get-MgGroupOnenoteResourceCount" +"GET","/groups/{param}/onenote/sectionGroups","keep",,"Get-MgGroupOnenoteSectionGroup","Get-MgGroupOnenoteSectionGroup" +"GET","/groups/{param}/onenote/sectionGroups/{param}/parentNotebook","keep",,"Get-MgGroupOnenoteSectionGroupParentNotebook","Get-MgGroupOnenoteSectionGroupParentNotebook" +"GET","/groups/{param}/onenote/sectionGroups/{param}/parentSectionGroup","keep",,"Get-MgGroupOnenoteSectionGroupParentSectionGroup","Get-MgGroupOnenoteSectionGroupParentSectionGroup" +"GET","/groups/{param}/onenote/sectionGroups/{param}/sectionGroups/$count","keep",,"Get-MgGroupOnenoteSectionGroupCount","Get-MgGroupOnenoteSectionGroupCount" +"GET","/groups/{param}/onenote/sectionGroups/{param}/sections","keep",,"Get-MgGroupOnenoteSectionGroupSection","Get-MgGroupOnenoteSectionGroupSection" +"GET","/groups/{param}/onenote/sectionGroups/{param}/sections/{param}","keep",,"Get-MgGroupOnenoteSectionGroupSection","Get-MgGroupOnenoteSectionGroupSection" +"GET","/groups/{param}/onenote/sectionGroups/{param}/sections/{param}/pages","keep",,"Get-MgGroupOnenoteSectionGroupSectionPage","Get-MgGroupOnenoteSectionGroupSectionPage" +"GET","/groups/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}","keep",,"Get-MgGroupOnenoteSectionGroupSectionPage","Get-MgGroupOnenoteSectionGroupSectionPage" +"GET","/groups/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}/parentNotebook","keep",,"Get-MgGroupOnenoteSectionGroupSectionPageParentNotebook","Get-MgGroupOnenoteSectionGroupSectionPageParentNotebook" +"GET","/groups/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}/parentSection","keep",,"Get-MgGroupOnenoteSectionGroupSectionPageParentSection","Get-MgGroupOnenoteSectionGroupSectionPageParentSection" +"GET","/groups/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}/preview","rename","PreviewGroupOnenoteSectionGroupSectionPage","Get-MgGroupOnenoteSectionGroupSectionPagePreview","Invoke-MgPreviewGroupOnenoteSectionGroupSectionPage" +"GET","/groups/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/$count","keep",,"Get-MgGroupOnenoteSectionGroupSectionPageCount","Get-MgGroupOnenoteSectionGroupSectionPageCount" +"GET","/groups/{param}/onenote/sectionGroups/{param}/sections/{param}/parentNotebook","keep",,"Get-MgGroupOnenoteSectionGroupSectionParentNotebook","Get-MgGroupOnenoteSectionGroupSectionParentNotebook" +"GET","/groups/{param}/onenote/sectionGroups/{param}/sections/{param}/parentSectionGroup","keep",,"Get-MgGroupOnenoteSectionGroupSectionParentSectionGroup","Get-MgGroupOnenoteSectionGroupSectionParentSectionGroup" +"GET","/groups/{param}/onenote/sectionGroups/{param}/sections/$count","keep",,"Get-MgGroupOnenoteSectionGroupSectionCount","Get-MgGroupOnenoteSectionGroupSectionCount" +"GET","/groups/{param}/onenote/sections","keep",,"Get-MgGroupOnenoteSection","Get-MgGroupOnenoteSection" +"GET","/groups/{param}/onenote/sections/{param}","keep",,"Get-MgGroupOnenoteSection","Get-MgGroupOnenoteSection" +"GET","/groups/{param}/onenote/sections/{param}/pages","keep",,"Get-MgGroupOnenoteSectionPage","Get-MgGroupOnenoteSectionPage" +"GET","/groups/{param}/onenote/sections/{param}/pages/{param}","keep",,"Get-MgGroupOnenoteSectionPage","Get-MgGroupOnenoteSectionPage" +"GET","/groups/{param}/onenote/sections/{param}/pages/{param}/parentNotebook","keep",,"Get-MgGroupOnenoteSectionPageParentNotebook","Get-MgGroupOnenoteSectionPageParentNotebook" +"GET","/groups/{param}/onenote/sections/{param}/pages/{param}/parentSection","keep",,"Get-MgGroupOnenoteSectionPageParentSection","Get-MgGroupOnenoteSectionPageParentSection" +"GET","/groups/{param}/onenote/sections/{param}/pages/{param}/preview","rename","PreviewGroupOnenoteSectionPage","Get-MgGroupOnenoteSectionPagePreview","Invoke-MgPreviewGroupOnenoteSectionPage" +"GET","/groups/{param}/onenote/sections/{param}/pages/$count","keep",,"Get-MgGroupOnenoteSectionPageCount","Get-MgGroupOnenoteSectionPageCount" +"GET","/groups/{param}/onenote/sections/{param}/parentNotebook","keep",,"Get-MgGroupOnenoteSectionParentNotebook","Get-MgGroupOnenoteSectionParentNotebook" +"GET","/groups/{param}/onenote/sections/{param}/parentSectionGroup","keep",,"Get-MgGroupOnenoteSectionParentSectionGroup","Get-MgGroupOnenoteSectionParentSectionGroup" +"GET","/groups/{param}/onenote/sections/$count","keep",,"Get-MgGroupOnenoteSectionCount","Get-MgGroupOnenoteSectionCount" +"GET","/groups/{param}/onPremisesSyncBehavior","keep",,"Get-MgGroupOnPremiseSyncBehavior","Get-MgGroupOnPremiseSyncBehavior" +"GET","/groups/{param}/owners","keep",,"Get-MgGroupOwner","Get-MgGroupOwner" +"GET","/groups/{param}/owners/$count","keep",,"Get-MgGroupOwnerCount","Get-MgGroupOwnerCount" +"GET","/groups/{param}/owners/$ref","keep",,"Get-MgGroupOwnerByRef","Get-MgGroupOwnerByRef" +"GET","/groups/{param}/permissionGrants","keep",,"Get-MgGroupPermissionGrant","Get-MgGroupPermissionGrant" +"GET","/groups/{param}/permissionGrants/{param}","keep",,"Get-MgGroupPermissionGrant","Get-MgGroupPermissionGrant" +"GET","/groups/{param}/permissionGrants/$count","keep",,"Get-MgGroupPermissionGrantCount","Get-MgGroupPermissionGrantCount" +"GET","/groups/{param}/photo","keep",,"Get-MgGroupPhoto","Get-MgGroupPhoto" +"GET","/groups/{param}/photo/$value","keep",,"Get-MgGroupPhotoContent","Get-MgGroupPhotoContent" +"GET","/groups/{param}/planner","keep",,"Get-MgGroupPlanner","Get-MgGroupPlanner" +"GET","/groups/{param}/planner/plans","keep",,"Get-MgGroupPlannerPlan","Get-MgGroupPlannerPlan" +"GET","/groups/{param}/planner/plans/{param}","keep",,"Get-MgGroupPlannerPlan","Get-MgGroupPlannerPlan" +"GET","/groups/{param}/planner/plans/{param}/buckets","keep",,"Get-MgGroupPlannerPlanBucket","Get-MgGroupPlannerPlanBucket" +"GET","/groups/{param}/planner/plans/{param}/buckets/{param}","defer-crosspath",,"Get-MgGroupPlannerPlanBucket","Get-MgGroupPlannerPlanBucket ships from a different uri" +"GET","/groups/{param}/planner/plans/{param}/buckets/{param}/tasks","suppress",,"Get-MgGroupPlannerPlanBucketTask","no oracle row for GET /groups/{param}/planner/plans/{param}/buckets/{param}/tasks and 'Get-MgGroupPlannerPlanBucketTask' unshipped" +"GET","/groups/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}","suppress",,"Get-MgGroupPlannerPlanBucketTask","no oracle row for GET /groups/{param}/planner/plans/{param}/buckets/{param}/tasks/{param} and 'Get-MgGroupPlannerPlanBucketTask' unshipped" +"GET","/groups/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/assignedToTaskBoardFormat","suppress",,"Get-MgGroupPlannerPlanBucketTaskAssignedToTaskBoardFormat","no oracle row for GET /groups/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/assignedToTaskBoardFormat and 'Get-MgGroupPlannerPlanBucketTaskAssignedToTaskBoardFormat' unshipped" +"GET","/groups/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/bucketTaskBoardFormat","suppress",,"Get-MgGroupPlannerPlanBucketTaskBucketTaskBoardFormat","no oracle row for GET /groups/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/bucketTaskBoardFormat and 'Get-MgGroupPlannerPlanBucketTaskBucketTaskBoardFormat' unshipped" +"GET","/groups/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/details","suppress",,"Get-MgGroupPlannerPlanBucketTaskDetail","no oracle row for GET /groups/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/details and 'Get-MgGroupPlannerPlanBucketTaskDetail' unshipped" +"GET","/groups/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/progressTaskBoardFormat","suppress",,"Get-MgGroupPlannerPlanBucketTaskProgressTaskBoardFormat","no oracle row for GET /groups/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/progressTaskBoardFormat and 'Get-MgGroupPlannerPlanBucketTaskProgressTaskBoardFormat' unshipped" +"GET","/groups/{param}/planner/plans/{param}/buckets/{param}/tasks/$count","suppress",,"Get-MgGroupPlannerPlanBucketTaskCount","no oracle row for GET /groups/{param}/planner/plans/{param}/buckets/{param}/tasks/$count and 'Get-MgGroupPlannerPlanBucketTaskCount' unshipped" +"GET","/groups/{param}/planner/plans/{param}/buckets/$count","suppress",,"Get-MgGroupPlannerPlanBucketCount","no oracle row for GET /groups/{param}/planner/plans/{param}/buckets/$count and 'Get-MgGroupPlannerPlanBucketCount' unshipped" +"GET","/groups/{param}/planner/plans/{param}/details","keep",,"Get-MgGroupPlannerPlanDetail","Get-MgGroupPlannerPlanDetail" +"GET","/groups/{param}/planner/plans/{param}/tasks","keep",,"Get-MgGroupPlannerPlanTask","Get-MgGroupPlannerPlanTask" +"GET","/groups/{param}/planner/plans/{param}/tasks/{param}","defer-crosspath",,"Get-MgGroupPlannerPlanTask","Get-MgGroupPlannerPlanTask ships from a different uri" +"GET","/groups/{param}/planner/plans/{param}/tasks/{param}/assignedToTaskBoardFormat","suppress",,"Get-MgGroupPlannerPlanTaskAssignedToTaskBoardFormat","no oracle row for GET /groups/{param}/planner/plans/{param}/tasks/{param}/assignedToTaskBoardFormat and 'Get-MgGroupPlannerPlanTaskAssignedToTaskBoardFormat' unshipped" +"GET","/groups/{param}/planner/plans/{param}/tasks/{param}/bucketTaskBoardFormat","suppress",,"Get-MgGroupPlannerPlanTaskBucketTaskBoardFormat","no oracle row for GET /groups/{param}/planner/plans/{param}/tasks/{param}/bucketTaskBoardFormat and 'Get-MgGroupPlannerPlanTaskBucketTaskBoardFormat' unshipped" +"GET","/groups/{param}/planner/plans/{param}/tasks/{param}/details","suppress",,"Get-MgGroupPlannerPlanTaskDetail","no oracle row for GET /groups/{param}/planner/plans/{param}/tasks/{param}/details and 'Get-MgGroupPlannerPlanTaskDetail' unshipped" +"GET","/groups/{param}/planner/plans/{param}/tasks/{param}/progressTaskBoardFormat","suppress",,"Get-MgGroupPlannerPlanTaskProgressTaskBoardFormat","no oracle row for GET /groups/{param}/planner/plans/{param}/tasks/{param}/progressTaskBoardFormat and 'Get-MgGroupPlannerPlanTaskProgressTaskBoardFormat' unshipped" +"GET","/groups/{param}/planner/plans/{param}/tasks/$count","suppress",,"Get-MgGroupPlannerPlanTaskCount","no oracle row for GET /groups/{param}/planner/plans/{param}/tasks/$count and 'Get-MgGroupPlannerPlanTaskCount' unshipped" +"GET","/groups/{param}/planner/plans/$count","keep",,"Get-MgGroupPlannerPlanCount","Get-MgGroupPlannerPlanCount" +"GET","/groups/{param}/rejectedSenders","keep",,"Get-MgGroupRejectedSender","Get-MgGroupRejectedSender" +"GET","/groups/{param}/rejectedSenders/$count","keep",,"Get-MgGroupRejectedSenderCount","Get-MgGroupRejectedSenderCount" +"GET","/groups/{param}/rejectedSenders/$ref","keep",,"Get-MgGroupRejectedSenderByRef","Get-MgGroupRejectedSenderByRef" +"GET","/groups/{param}/settings","keep",,"Get-MgGroupSetting","Get-MgGroupSetting" +"GET","/groups/{param}/settings/$count","keep",,"Get-MgGroupSettingCount","Get-MgGroupSettingCount" +"GET","/groups/{param}/sites","keep",,"Get-MgGroupSite","Get-MgGroupSite" +"GET","/groups/{param}/sites/{param}","keep",,"Get-MgGroupSite","Get-MgGroupSite" +"GET","/groups/{param}/sites/{param}/analytics","keep",,"Get-MgGroupSiteAnalytic","Get-MgGroupSiteAnalytic" +"GET","/groups/{param}/sites/{param}/analytics/allTime","rename","GroupSiteAnalyticTime","Get-MgGroupSiteAnalyticAllTime","Get-MgGroupSiteAnalyticTime" +"GET","/groups/{param}/sites/{param}/analytics/itemActivityStats","keep",,"Get-MgGroupSiteAnalyticItemActivityStat","Get-MgGroupSiteAnalyticItemActivityStat" +"GET","/groups/{param}/sites/{param}/analytics/itemActivityStats/{param}","keep",,"Get-MgGroupSiteAnalyticItemActivityStat","Get-MgGroupSiteAnalyticItemActivityStat" +"GET","/groups/{param}/sites/{param}/analytics/itemActivityStats/{param}/activities","keep",,"Get-MgGroupSiteAnalyticItemActivityStatActivity","Get-MgGroupSiteAnalyticItemActivityStatActivity" +"GET","/groups/{param}/sites/{param}/analytics/itemActivityStats/{param}/activities/{param}","keep",,"Get-MgGroupSiteAnalyticItemActivityStatActivity","Get-MgGroupSiteAnalyticItemActivityStatActivity" +"GET","/groups/{param}/sites/{param}/analytics/itemActivityStats/{param}/activities/{param}/driveItem","keep",,"Get-MgGroupSiteAnalyticItemActivityStatActivityDriveItem","Get-MgGroupSiteAnalyticItemActivityStatActivityDriveItem" +"GET","/groups/{param}/sites/{param}/analytics/itemActivityStats/{param}/activities/$count","keep",,"Get-MgGroupSiteAnalyticItemActivityStatActivityCount","Get-MgGroupSiteAnalyticItemActivityStatActivityCount" +"GET","/groups/{param}/sites/{param}/analytics/itemActivityStats/$count","keep",,"Get-MgGroupSiteAnalyticItemActivityStatCount","Get-MgGroupSiteAnalyticItemActivityStatCount" +"GET","/groups/{param}/sites/{param}/analytics/lastSevenDays","keep",,"Get-MgGroupSiteAnalyticLastSevenDay","Get-MgGroupSiteAnalyticLastSevenDay" +"GET","/groups/{param}/sites/{param}/columns","keep",,"Get-MgGroupSiteColumn","Get-MgGroupSiteColumn" +"GET","/groups/{param}/sites/{param}/columns/{param}","keep",,"Get-MgGroupSiteColumn","Get-MgGroupSiteColumn" +"GET","/groups/{param}/sites/{param}/columns/{param}/sourceColumn","keep",,"Get-MgGroupSiteColumnSourceColumn","Get-MgGroupSiteColumnSourceColumn" +"GET","/groups/{param}/sites/{param}/columns/$count","keep",,"Get-MgGroupSiteColumnCount","Get-MgGroupSiteColumnCount" +"GET","/groups/{param}/sites/{param}/contentTypes","keep",,"Get-MgGroupSiteContentType","Get-MgGroupSiteContentType" +"GET","/groups/{param}/sites/{param}/contentTypes/{param}","keep",,"Get-MgGroupSiteContentType","Get-MgGroupSiteContentType" +"GET","/groups/{param}/sites/{param}/contentTypes/{param}/base","keep",,"Get-MgGroupSiteContentTypeBase","Get-MgGroupSiteContentTypeBase" +"GET","/groups/{param}/sites/{param}/contentTypes/{param}/baseTypes","keep",,"Get-MgGroupSiteContentTypeBaseType","Get-MgGroupSiteContentTypeBaseType" +"GET","/groups/{param}/sites/{param}/contentTypes/{param}/baseTypes/{param}","keep",,"Get-MgGroupSiteContentTypeBaseType","Get-MgGroupSiteContentTypeBaseType" +"GET","/groups/{param}/sites/{param}/contentTypes/{param}/baseTypes/$count","keep",,"Get-MgGroupSiteContentTypeBaseTypeCount","Get-MgGroupSiteContentTypeBaseTypeCount" +"GET","/groups/{param}/sites/{param}/contentTypes/{param}/columnLinks","keep",,"Get-MgGroupSiteContentTypeColumnLink","Get-MgGroupSiteContentTypeColumnLink" +"GET","/groups/{param}/sites/{param}/contentTypes/{param}/columnLinks/{param}","keep",,"Get-MgGroupSiteContentTypeColumnLink","Get-MgGroupSiteContentTypeColumnLink" +"GET","/groups/{param}/sites/{param}/contentTypes/{param}/columnLinks/$count","keep",,"Get-MgGroupSiteContentTypeColumnLinkCount","Get-MgGroupSiteContentTypeColumnLinkCount" +"GET","/groups/{param}/sites/{param}/contentTypes/{param}/columnPositions","keep",,"Get-MgGroupSiteContentTypeColumnPosition","Get-MgGroupSiteContentTypeColumnPosition" +"GET","/groups/{param}/sites/{param}/contentTypes/{param}/columnPositions/{param}","keep",,"Get-MgGroupSiteContentTypeColumnPosition","Get-MgGroupSiteContentTypeColumnPosition" +"GET","/groups/{param}/sites/{param}/contentTypes/{param}/columnPositions/$count","keep",,"Get-MgGroupSiteContentTypeColumnPositionCount","Get-MgGroupSiteContentTypeColumnPositionCount" +"GET","/groups/{param}/sites/{param}/contentTypes/{param}/columns","keep",,"Get-MgGroupSiteContentTypeColumn","Get-MgGroupSiteContentTypeColumn" +"GET","/groups/{param}/sites/{param}/contentTypes/{param}/columns/{param}","keep",,"Get-MgGroupSiteContentTypeColumn","Get-MgGroupSiteContentTypeColumn" +"GET","/groups/{param}/sites/{param}/contentTypes/{param}/columns/{param}/sourceColumn","keep",,"Get-MgGroupSiteContentTypeColumnSourceColumn","Get-MgGroupSiteContentTypeColumnSourceColumn" +"GET","/groups/{param}/sites/{param}/contentTypes/{param}/columns/$count","keep",,"Get-MgGroupSiteContentTypeColumnCount","Get-MgGroupSiteContentTypeColumnCount" +"GET","/groups/{param}/sites/{param}/contentTypes/{param}/isPublished","rename","GroupSiteContentTypePublished","Get-MgGroupSiteContentTypeIsPublished","Test-MgGroupSiteContentTypePublished" +"GET","/groups/{param}/sites/{param}/contentTypes/$count","keep",,"Get-MgGroupSiteContentTypeCount","Get-MgGroupSiteContentTypeCount" +"GET","/groups/{param}/sites/{param}/contentTypes/getCompatibleHubContentTypes","rename","GroupSiteContentTypeCompatibleHubContentType","Get-MgGroupSiteContentTypeGetCompatibleHubContentTypes","Get-MgGroupSiteContentTypeCompatibleHubContentType" +"GET","/groups/{param}/sites/{param}/createdByUser","keep",,"Get-MgGroupSiteCreatedByUser","Get-MgGroupSiteCreatedByUser" +"GET","/groups/{param}/sites/{param}/createdByUser/mailboxSettings","keep",,"Get-MgGroupSiteCreatedByUserMailboxSetting","Get-MgGroupSiteCreatedByUserMailboxSetting" +"GET","/groups/{param}/sites/{param}/createdByUser/serviceProvisioningErrors","keep",,"Get-MgGroupSiteCreatedByUserServiceProvisioningError","Get-MgGroupSiteCreatedByUserServiceProvisioningError" +"GET","/groups/{param}/sites/{param}/createdByUser/serviceProvisioningErrors/$count","keep",,"Get-MgGroupSiteCreatedByUserServiceProvisioningErrorCount","Get-MgGroupSiteCreatedByUserServiceProvisioningErrorCount" +"GET","/groups/{param}/sites/{param}/drive","keep",,"Get-MgGroupSiteDefaultDrive","Get-MgGroupSiteDefaultDrive" +"GET","/groups/{param}/sites/{param}/drives","keep",,"Get-MgGroupSiteDrive","Get-MgGroupSiteDrive" +"GET","/groups/{param}/sites/{param}/drives/{param}","keep",,"Get-MgGroupSiteDrive","Get-MgGroupSiteDrive" +"GET","/groups/{param}/sites/{param}/drives/$count","keep",,"Get-MgGroupSiteDriveCount","Get-MgGroupSiteDriveCount" +"GET","/groups/{param}/sites/{param}/externalColumns","keep",,"Get-MgGroupSiteExternalColumn","Get-MgGroupSiteExternalColumn" +"GET","/groups/{param}/sites/{param}/externalColumns/{param}","keep",,"Get-MgGroupSiteExternalColumn","Get-MgGroupSiteExternalColumn" +"GET","/groups/{param}/sites/{param}/externalColumns/$count","keep",,"Get-MgGroupSiteExternalColumnCount","Get-MgGroupSiteExternalColumnCount" +"GET","/groups/{param}/sites/{param}/getActivitiesByInterval","rename","GroupSiteActivityByInterval","Get-MgGroupSiteGetActivitiesByInterval","Get-MgGroupSiteActivityByInterval" +"GET","/groups/{param}/sites/{param}/items","keep",,"Get-MgGroupSiteItem","Get-MgGroupSiteItem" +"GET","/groups/{param}/sites/{param}/items/{param}","keep",,"Get-MgGroupSiteItem","Get-MgGroupSiteItem" +"GET","/groups/{param}/sites/{param}/items/$count","keep",,"Get-MgGroupSiteItemCount","Get-MgGroupSiteItemCount" +"GET","/groups/{param}/sites/{param}/lastModifiedByUser","keep",,"Get-MgGroupSiteLastModifiedByUser","Get-MgGroupSiteLastModifiedByUser" +"GET","/groups/{param}/sites/{param}/lastModifiedByUser/mailboxSettings","keep",,"Get-MgGroupSiteLastModifiedByUserMailboxSetting","Get-MgGroupSiteLastModifiedByUserMailboxSetting" +"GET","/groups/{param}/sites/{param}/lastModifiedByUser/serviceProvisioningErrors","keep",,"Get-MgGroupSiteLastModifiedByUserServiceProvisioningError","Get-MgGroupSiteLastModifiedByUserServiceProvisioningError" +"GET","/groups/{param}/sites/{param}/lastModifiedByUser/serviceProvisioningErrors/$count","keep",,"Get-MgGroupSiteLastModifiedByUserServiceProvisioningErrorCount","Get-MgGroupSiteLastModifiedByUserServiceProvisioningErrorCount" +"GET","/groups/{param}/sites/{param}/lists","keep",,"Get-MgGroupSiteList","Get-MgGroupSiteList" +"GET","/groups/{param}/sites/{param}/lists/{param}","keep",,"Get-MgGroupSiteList","Get-MgGroupSiteList" +"GET","/groups/{param}/sites/{param}/lists/{param}/columns","keep",,"Get-MgGroupSiteListColumn","Get-MgGroupSiteListColumn" +"GET","/groups/{param}/sites/{param}/lists/{param}/columns/{param}","keep",,"Get-MgGroupSiteListColumn","Get-MgGroupSiteListColumn" +"GET","/groups/{param}/sites/{param}/lists/{param}/columns/{param}/sourceColumn","keep",,"Get-MgGroupSiteListColumnSourceColumn","Get-MgGroupSiteListColumnSourceColumn" +"GET","/groups/{param}/sites/{param}/lists/{param}/columns/$count","keep",,"Get-MgGroupSiteListColumnCount","Get-MgGroupSiteListColumnCount" +"GET","/groups/{param}/sites/{param}/lists/{param}/contentTypes","keep",,"Get-MgGroupSiteListContentType","Get-MgGroupSiteListContentType" +"GET","/groups/{param}/sites/{param}/lists/{param}/contentTypes/{param}","keep",,"Get-MgGroupSiteListContentType","Get-MgGroupSiteListContentType" +"GET","/groups/{param}/sites/{param}/lists/{param}/contentTypes/{param}/base","suppress",,"Get-MgGroupSiteListContentTypeBase","no oracle row for GET /groups/{param}/sites/{param}/lists/{param}/contentTypes/{param}/base and 'Get-MgGroupSiteListContentTypeBase' unshipped" +"GET","/groups/{param}/sites/{param}/lists/{param}/contentTypes/{param}/baseTypes","suppress",,"Get-MgGroupSiteListContentTypeBaseType","no oracle row for GET /groups/{param}/sites/{param}/lists/{param}/contentTypes/{param}/baseTypes and 'Get-MgGroupSiteListContentTypeBaseType' unshipped" +"GET","/groups/{param}/sites/{param}/lists/{param}/contentTypes/{param}/baseTypes/{param}","suppress",,"Get-MgGroupSiteListContentTypeBaseType","no oracle row for GET /groups/{param}/sites/{param}/lists/{param}/contentTypes/{param}/baseTypes/{param} and 'Get-MgGroupSiteListContentTypeBaseType' unshipped" +"GET","/groups/{param}/sites/{param}/lists/{param}/contentTypes/{param}/baseTypes/$count","suppress",,"Get-MgGroupSiteListContentTypeBaseTypeCount","no oracle row for GET /groups/{param}/sites/{param}/lists/{param}/contentTypes/{param}/baseTypes/$count and 'Get-MgGroupSiteListContentTypeBaseTypeCount' unshipped" +"GET","/groups/{param}/sites/{param}/lists/{param}/contentTypes/{param}/columnLinks","keep",,"Get-MgGroupSiteListContentTypeColumnLink","Get-MgGroupSiteListContentTypeColumnLink" +"GET","/groups/{param}/sites/{param}/lists/{param}/contentTypes/{param}/columnLinks/{param}","keep",,"Get-MgGroupSiteListContentTypeColumnLink","Get-MgGroupSiteListContentTypeColumnLink" +"GET","/groups/{param}/sites/{param}/lists/{param}/contentTypes/{param}/columnLinks/$count","keep",,"Get-MgGroupSiteListContentTypeColumnLinkCount","Get-MgGroupSiteListContentTypeColumnLinkCount" +"GET","/groups/{param}/sites/{param}/lists/{param}/contentTypes/{param}/columnPositions","keep",,"Get-MgGroupSiteListContentTypeColumnPosition","Get-MgGroupSiteListContentTypeColumnPosition" +"GET","/groups/{param}/sites/{param}/lists/{param}/contentTypes/{param}/columnPositions/{param}","keep",,"Get-MgGroupSiteListContentTypeColumnPosition","Get-MgGroupSiteListContentTypeColumnPosition" +"GET","/groups/{param}/sites/{param}/lists/{param}/contentTypes/{param}/columnPositions/$count","keep",,"Get-MgGroupSiteListContentTypeColumnPositionCount","Get-MgGroupSiteListContentTypeColumnPositionCount" +"GET","/groups/{param}/sites/{param}/lists/{param}/contentTypes/{param}/columns","keep",,"Get-MgGroupSiteListContentTypeColumn","Get-MgGroupSiteListContentTypeColumn" +"GET","/groups/{param}/sites/{param}/lists/{param}/contentTypes/{param}/columns/{param}","keep",,"Get-MgGroupSiteListContentTypeColumn","Get-MgGroupSiteListContentTypeColumn" +"GET","/groups/{param}/sites/{param}/lists/{param}/contentTypes/{param}/columns/{param}/sourceColumn","keep",,"Get-MgGroupSiteListContentTypeColumnSourceColumn","Get-MgGroupSiteListContentTypeColumnSourceColumn" +"GET","/groups/{param}/sites/{param}/lists/{param}/contentTypes/{param}/columns/$count","keep",,"Get-MgGroupSiteListContentTypeColumnCount","Get-MgGroupSiteListContentTypeColumnCount" +"GET","/groups/{param}/sites/{param}/lists/{param}/contentTypes/{param}/isPublished","rename","GroupSiteListContentTypePublished","Get-MgGroupSiteListContentTypeIsPublished","Test-MgGroupSiteListContentTypePublished" +"GET","/groups/{param}/sites/{param}/lists/{param}/contentTypes/$count","keep",,"Get-MgGroupSiteListContentTypeCount","Get-MgGroupSiteListContentTypeCount" +"GET","/groups/{param}/sites/{param}/lists/{param}/contentTypes/getCompatibleHubContentTypes","rename","GroupSiteListContentTypeCompatibleHubContentType","Get-MgGroupSiteListContentTypeGetCompatibleHubContentTypes","Get-MgGroupSiteListContentTypeCompatibleHubContentType" +"GET","/groups/{param}/sites/{param}/lists/{param}/createdByUser","keep",,"Get-MgGroupSiteListCreatedByUser","Get-MgGroupSiteListCreatedByUser" +"GET","/groups/{param}/sites/{param}/lists/{param}/createdByUser/mailboxSettings","keep",,"Get-MgGroupSiteListCreatedByUserMailboxSetting","Get-MgGroupSiteListCreatedByUserMailboxSetting" +"GET","/groups/{param}/sites/{param}/lists/{param}/createdByUser/serviceProvisioningErrors","keep",,"Get-MgGroupSiteListCreatedByUserServiceProvisioningError","Get-MgGroupSiteListCreatedByUserServiceProvisioningError" +"GET","/groups/{param}/sites/{param}/lists/{param}/createdByUser/serviceProvisioningErrors/$count","keep",,"Get-MgGroupSiteListCreatedByUserServiceProvisioningErrorCount","Get-MgGroupSiteListCreatedByUserServiceProvisioningErrorCount" +"GET","/groups/{param}/sites/{param}/lists/{param}/drive","keep",,"Get-MgGroupSiteListDrive","Get-MgGroupSiteListDrive" +"GET","/groups/{param}/sites/{param}/lists/{param}/items","keep",,"Get-MgGroupSiteListItem","Get-MgGroupSiteListItem" +"GET","/groups/{param}/sites/{param}/lists/{param}/items/{param}","keep",,"Get-MgGroupSiteListItem","Get-MgGroupSiteListItem" +"GET","/groups/{param}/sites/{param}/lists/{param}/items/{param}/analytics","keep",,"Get-MgGroupSiteListItemAnalytic","Get-MgGroupSiteListItemAnalytic" +"GET","/groups/{param}/sites/{param}/lists/{param}/items/{param}/createdByUser","keep",,"Get-MgGroupSiteListItemCreatedByUser","Get-MgGroupSiteListItemCreatedByUser" +"GET","/groups/{param}/sites/{param}/lists/{param}/items/{param}/createdByUser/mailboxSettings","keep",,"Get-MgGroupSiteListItemCreatedByUserMailboxSetting","Get-MgGroupSiteListItemCreatedByUserMailboxSetting" +"GET","/groups/{param}/sites/{param}/lists/{param}/items/{param}/createdByUser/serviceProvisioningErrors","keep",,"Get-MgGroupSiteListItemCreatedByUserServiceProvisioningError","Get-MgGroupSiteListItemCreatedByUserServiceProvisioningError" +"GET","/groups/{param}/sites/{param}/lists/{param}/items/{param}/createdByUser/serviceProvisioningErrors/$count","keep",,"Get-MgGroupSiteListItemCreatedByUserServiceProvisioningErrorCount","Get-MgGroupSiteListItemCreatedByUserServiceProvisioningErrorCount" +"GET","/groups/{param}/sites/{param}/lists/{param}/items/{param}/documentSetVersions","keep",,"Get-MgGroupSiteListItemDocumentSetVersion","Get-MgGroupSiteListItemDocumentSetVersion" +"GET","/groups/{param}/sites/{param}/lists/{param}/items/{param}/documentSetVersions/{param}","keep",,"Get-MgGroupSiteListItemDocumentSetVersion","Get-MgGroupSiteListItemDocumentSetVersion" +"GET","/groups/{param}/sites/{param}/lists/{param}/items/{param}/documentSetVersions/{param}/fields","keep",,"Get-MgGroupSiteListItemDocumentSetVersionField","Get-MgGroupSiteListItemDocumentSetVersionField" +"GET","/groups/{param}/sites/{param}/lists/{param}/items/{param}/documentSetVersions/$count","keep",,"Get-MgGroupSiteListItemDocumentSetVersionCount","Get-MgGroupSiteListItemDocumentSetVersionCount" +"GET","/groups/{param}/sites/{param}/lists/{param}/items/{param}/driveItem","keep",,"Get-MgGroupSiteListItemDriveItem","Get-MgGroupSiteListItemDriveItem" +"GET","/groups/{param}/sites/{param}/lists/{param}/items/{param}/fields","keep",,"Get-MgGroupSiteListItemField","Get-MgGroupSiteListItemField" +"GET","/groups/{param}/sites/{param}/lists/{param}/items/{param}/getActivitiesByInterval","rename","GroupSiteListItemActivityByInterval","Get-MgGroupSiteListItemGetActivitiesByInterval","Get-MgGroupSiteListItemActivityByInterval" +"GET","/groups/{param}/sites/{param}/lists/{param}/items/{param}/lastModifiedByUser","rename","GroupSiteItemLastModifiedByUser","Get-MgGroupSiteListItemLastModifiedByUser","Get-MgGroupSiteItemLastModifiedByUser" +"GET","/groups/{param}/sites/{param}/lists/{param}/items/{param}/lastModifiedByUser/mailboxSettings","rename","GroupSiteItemLastModifiedByUserMailboxSetting","Get-MgGroupSiteListItemLastModifiedByUserMailboxSetting","Get-MgGroupSiteItemLastModifiedByUserMailboxSetting" +"GET","/groups/{param}/sites/{param}/lists/{param}/items/{param}/lastModifiedByUser/serviceProvisioningErrors","rename","GroupSiteItemLastModifiedByUserServiceProvisioningError","Get-MgGroupSiteListItemLastModifiedByUserServiceProvisioningError","Get-MgGroupSiteItemLastModifiedByUserServiceProvisioningError" +"GET","/groups/{param}/sites/{param}/lists/{param}/items/{param}/lastModifiedByUser/serviceProvisioningErrors/$count","rename","GroupSiteItemLastModifiedByUserServiceProvisioningErrorCount","Get-MgGroupSiteListItemLastModifiedByUserServiceProvisioningErrorCount","Get-MgGroupSiteItemLastModifiedByUserServiceProvisioningErrorCount" +"GET","/groups/{param}/sites/{param}/lists/{param}/items/{param}/permissions","keep",,"Get-MgGroupSiteListItemPermission","Get-MgGroupSiteListItemPermission" +"GET","/groups/{param}/sites/{param}/lists/{param}/items/{param}/permissions/{param}","keep",,"Get-MgGroupSiteListItemPermission","Get-MgGroupSiteListItemPermission" +"GET","/groups/{param}/sites/{param}/lists/{param}/items/{param}/permissions/$count","keep",,"Get-MgGroupSiteListItemPermissionCount","Get-MgGroupSiteListItemPermissionCount" +"GET","/groups/{param}/sites/{param}/lists/{param}/items/{param}/versions","keep",,"Get-MgGroupSiteListItemVersion","Get-MgGroupSiteListItemVersion" +"GET","/groups/{param}/sites/{param}/lists/{param}/items/{param}/versions/{param}","keep",,"Get-MgGroupSiteListItemVersion","Get-MgGroupSiteListItemVersion" +"GET","/groups/{param}/sites/{param}/lists/{param}/items/{param}/versions/{param}/fields","keep",,"Get-MgGroupSiteListItemVersionField","Get-MgGroupSiteListItemVersionField" +"GET","/groups/{param}/sites/{param}/lists/{param}/items/{param}/versions/$count","keep",,"Get-MgGroupSiteListItemVersionCount","Get-MgGroupSiteListItemVersionCount" +"GET","/groups/{param}/sites/{param}/lists/{param}/items/delta","keep",,"Get-MgGroupSiteListItemDelta","Get-MgGroupSiteListItemDelta" +"GET","/groups/{param}/sites/{param}/lists/{param}/lastModifiedByUser","suppress",,"Get-MgGroupSiteListLastModifiedByUser","no oracle row for GET /groups/{param}/sites/{param}/lists/{param}/lastModifiedByUser and 'Get-MgGroupSiteListLastModifiedByUser' unshipped" +"GET","/groups/{param}/sites/{param}/lists/{param}/lastModifiedByUser/mailboxSettings","suppress",,"Get-MgGroupSiteListLastModifiedByUserMailboxSetting","no oracle row for GET /groups/{param}/sites/{param}/lists/{param}/lastModifiedByUser/mailboxSettings and 'Get-MgGroupSiteListLastModifiedByUserMailboxSetting' unshipped" +"GET","/groups/{param}/sites/{param}/lists/{param}/lastModifiedByUser/serviceProvisioningErrors","suppress",,"Get-MgGroupSiteListLastModifiedByUserServiceProvisioningError","no oracle row for GET /groups/{param}/sites/{param}/lists/{param}/lastModifiedByUser/serviceProvisioningErrors and 'Get-MgGroupSiteListLastModifiedByUserServiceProvisioningError' unshipped" +"GET","/groups/{param}/sites/{param}/lists/{param}/lastModifiedByUser/serviceProvisioningErrors/$count","suppress",,"Get-MgGroupSiteListLastModifiedByUserServiceProvisioningErrorCount","no oracle row for GET /groups/{param}/sites/{param}/lists/{param}/lastModifiedByUser/serviceProvisioningErrors/$count and 'Get-MgGroupSiteListLastModifiedByUserServiceProvisioningErrorCount' unshipped" +"GET","/groups/{param}/sites/{param}/lists/{param}/operations","keep",,"Get-MgGroupSiteListOperation","Get-MgGroupSiteListOperation" +"GET","/groups/{param}/sites/{param}/lists/{param}/operations/{param}","keep",,"Get-MgGroupSiteListOperation","Get-MgGroupSiteListOperation" +"GET","/groups/{param}/sites/{param}/lists/{param}/operations/$count","keep",,"Get-MgGroupSiteListOperationCount","Get-MgGroupSiteListOperationCount" +"GET","/groups/{param}/sites/{param}/lists/{param}/permissions","keep",,"Get-MgGroupSiteListPermission","Get-MgGroupSiteListPermission" +"GET","/groups/{param}/sites/{param}/lists/{param}/permissions/{param}","keep",,"Get-MgGroupSiteListPermission","Get-MgGroupSiteListPermission" +"GET","/groups/{param}/sites/{param}/lists/{param}/permissions/$count","keep",,"Get-MgGroupSiteListPermissionCount","Get-MgGroupSiteListPermissionCount" +"GET","/groups/{param}/sites/{param}/lists/{param}/subscriptions","keep",,"Get-MgGroupSiteListSubscription","Get-MgGroupSiteListSubscription" +"GET","/groups/{param}/sites/{param}/lists/{param}/subscriptions/{param}","keep",,"Get-MgGroupSiteListSubscription","Get-MgGroupSiteListSubscription" +"GET","/groups/{param}/sites/{param}/lists/{param}/subscriptions/$count","keep",,"Get-MgGroupSiteListSubscriptionCount","Get-MgGroupSiteListSubscriptionCount" +"GET","/groups/{param}/sites/{param}/lists/$count","keep",,"Get-MgGroupSiteListCount","Get-MgGroupSiteListCount" +"GET","/groups/{param}/sites/{param}/onenote","keep",,"Get-MgGroupSiteOnenote","Get-MgGroupSiteOnenote" +"GET","/groups/{param}/sites/{param}/onenote/notebooks","keep",,"Get-MgGroupSiteOnenoteNotebook","Get-MgGroupSiteOnenoteNotebook" +"GET","/groups/{param}/sites/{param}/onenote/notebooks/{param}","keep",,"Get-MgGroupSiteOnenoteNotebook","Get-MgGroupSiteOnenoteNotebook" +"GET","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sectionGroups","keep",,"Get-MgGroupSiteOnenoteNotebookSectionGroup","Get-MgGroupSiteOnenoteNotebookSectionGroup" +"GET","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/parentNotebook","keep",,"Get-MgGroupSiteOnenoteNotebookSectionGroupParentNotebook","Get-MgGroupSiteOnenoteNotebookSectionGroupParentNotebook" +"GET","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/parentSectionGroup","keep",,"Get-MgGroupSiteOnenoteNotebookSectionGroupParentSectionGroup","Get-MgGroupSiteOnenoteNotebookSectionGroupParentSectionGroup" +"GET","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sectionGroups/$count","keep",,"Get-MgGroupSiteOnenoteNotebookSectionGroupCount","Get-MgGroupSiteOnenoteNotebookSectionGroupCount" +"GET","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections","keep",,"Get-MgGroupSiteOnenoteNotebookSectionGroupSection","Get-MgGroupSiteOnenoteNotebookSectionGroupSection" +"GET","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}","keep",,"Get-MgGroupSiteOnenoteNotebookSectionGroupSection","Get-MgGroupSiteOnenoteNotebookSectionGroupSection" +"GET","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages","keep",,"Get-MgGroupSiteOnenoteNotebookSectionGroupSectionPage","Get-MgGroupSiteOnenoteNotebookSectionGroupSectionPage" +"GET","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}","keep",,"Get-MgGroupSiteOnenoteNotebookSectionGroupSectionPage","Get-MgGroupSiteOnenoteNotebookSectionGroupSectionPage" +"GET","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}/parentNotebook","keep",,"Get-MgGroupSiteOnenoteNotebookSectionGroupSectionPageParentNotebook","Get-MgGroupSiteOnenoteNotebookSectionGroupSectionPageParentNotebook" +"GET","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}/parentSection","keep",,"Get-MgGroupSiteOnenoteNotebookSectionGroupSectionPageParentSection","Get-MgGroupSiteOnenoteNotebookSectionGroupSectionPageParentSection" +"GET","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}/preview","rename","PreviewGroupSiteOnenoteNotebookSectionGroupSectionPage","Get-MgGroupSiteOnenoteNotebookSectionGroupSectionPagePreview","Invoke-MgPreviewGroupSiteOnenoteNotebookSectionGroupSectionPage" +"GET","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/$count","keep",,"Get-MgGroupSiteOnenoteNotebookSectionGroupSectionPageCount","Get-MgGroupSiteOnenoteNotebookSectionGroupSectionPageCount" +"GET","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/parentNotebook","keep",,"Get-MgGroupSiteOnenoteNotebookSectionGroupSectionParentNotebook","Get-MgGroupSiteOnenoteNotebookSectionGroupSectionParentNotebook" +"GET","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/parentSectionGroup","keep",,"Get-MgGroupSiteOnenoteNotebookSectionGroupSectionParentSectionGroup","Get-MgGroupSiteOnenoteNotebookSectionGroupSectionParentSectionGroup" +"GET","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/$count","keep",,"Get-MgGroupSiteOnenoteNotebookSectionGroupSectionCount","Get-MgGroupSiteOnenoteNotebookSectionGroupSectionCount" +"GET","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sections","keep",,"Get-MgGroupSiteOnenoteNotebookSection","Get-MgGroupSiteOnenoteNotebookSection" +"GET","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sections/{param}","keep",,"Get-MgGroupSiteOnenoteNotebookSection","Get-MgGroupSiteOnenoteNotebookSection" +"GET","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sections/{param}/pages","keep",,"Get-MgGroupSiteOnenoteNotebookSectionPage","Get-MgGroupSiteOnenoteNotebookSectionPage" +"GET","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}","keep",,"Get-MgGroupSiteOnenoteNotebookSectionPage","Get-MgGroupSiteOnenoteNotebookSectionPage" +"GET","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}/parentNotebook","keep",,"Get-MgGroupSiteOnenoteNotebookSectionPageParentNotebook","Get-MgGroupSiteOnenoteNotebookSectionPageParentNotebook" +"GET","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}/parentSection","keep",,"Get-MgGroupSiteOnenoteNotebookSectionPageParentSection","Get-MgGroupSiteOnenoteNotebookSectionPageParentSection" +"GET","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}/preview","rename","PreviewGroupSiteOnenoteNotebookSectionPage","Get-MgGroupSiteOnenoteNotebookSectionPagePreview","Invoke-MgPreviewGroupSiteOnenoteNotebookSectionPage" +"GET","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sections/{param}/pages/$count","keep",,"Get-MgGroupSiteOnenoteNotebookSectionPageCount","Get-MgGroupSiteOnenoteNotebookSectionPageCount" +"GET","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sections/{param}/parentNotebook","keep",,"Get-MgGroupSiteOnenoteNotebookSectionParentNotebook","Get-MgGroupSiteOnenoteNotebookSectionParentNotebook" +"GET","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sections/{param}/parentSectionGroup","keep",,"Get-MgGroupSiteOnenoteNotebookSectionParentSectionGroup","Get-MgGroupSiteOnenoteNotebookSectionParentSectionGroup" +"GET","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sections/$count","keep",,"Get-MgGroupSiteOnenoteNotebookSectionCount","Get-MgGroupSiteOnenoteNotebookSectionCount" +"GET","/groups/{param}/sites/{param}/onenote/notebooks/$count","keep",,"Get-MgGroupSiteOnenoteNotebookCount","Get-MgGroupSiteOnenoteNotebookCount" +"GET","/groups/{param}/sites/{param}/onenote/operations","keep",,"Get-MgGroupSiteOnenoteOperation","Get-MgGroupSiteOnenoteOperation" +"GET","/groups/{param}/sites/{param}/onenote/operations/{param}","keep",,"Get-MgGroupSiteOnenoteOperation","Get-MgGroupSiteOnenoteOperation" +"GET","/groups/{param}/sites/{param}/onenote/operations/$count","keep",,"Get-MgGroupSiteOnenoteOperationCount","Get-MgGroupSiteOnenoteOperationCount" +"GET","/groups/{param}/sites/{param}/onenote/pages","keep",,"Get-MgGroupSiteOnenotePage","Get-MgGroupSiteOnenotePage" +"GET","/groups/{param}/sites/{param}/onenote/pages/{param}","keep",,"Get-MgGroupSiteOnenotePage","Get-MgGroupSiteOnenotePage" +"GET","/groups/{param}/sites/{param}/onenote/pages/{param}/parentNotebook","keep",,"Get-MgGroupSiteOnenotePageParentNotebook","Get-MgGroupSiteOnenotePageParentNotebook" +"GET","/groups/{param}/sites/{param}/onenote/pages/{param}/parentSection","keep",,"Get-MgGroupSiteOnenotePageParentSection","Get-MgGroupSiteOnenotePageParentSection" +"GET","/groups/{param}/sites/{param}/onenote/pages/{param}/preview","rename","PreviewGroupSiteOnenotePage","Get-MgGroupSiteOnenotePagePreview","Invoke-MgPreviewGroupSiteOnenotePage" +"GET","/groups/{param}/sites/{param}/onenote/pages/$count","keep",,"Get-MgGroupSiteOnenotePageCount","Get-MgGroupSiteOnenotePageCount" +"GET","/groups/{param}/sites/{param}/onenote/resources","keep",,"Get-MgGroupSiteOnenoteResource","Get-MgGroupSiteOnenoteResource" +"GET","/groups/{param}/sites/{param}/onenote/resources/{param}","keep",,"Get-MgGroupSiteOnenoteResource","Get-MgGroupSiteOnenoteResource" +"GET","/groups/{param}/sites/{param}/onenote/resources/$count","keep",,"Get-MgGroupSiteOnenoteResourceCount","Get-MgGroupSiteOnenoteResourceCount" +"GET","/groups/{param}/sites/{param}/onenote/sectionGroups","keep",,"Get-MgGroupSiteOnenoteSectionGroup","Get-MgGroupSiteOnenoteSectionGroup" +"GET","/groups/{param}/sites/{param}/onenote/sectionGroups/{param}/parentNotebook","keep",,"Get-MgGroupSiteOnenoteSectionGroupParentNotebook","Get-MgGroupSiteOnenoteSectionGroupParentNotebook" +"GET","/groups/{param}/sites/{param}/onenote/sectionGroups/{param}/parentSectionGroup","keep",,"Get-MgGroupSiteOnenoteSectionGroupParentSectionGroup","Get-MgGroupSiteOnenoteSectionGroupParentSectionGroup" +"GET","/groups/{param}/sites/{param}/onenote/sectionGroups/{param}/sectionGroups/$count","keep",,"Get-MgGroupSiteOnenoteSectionGroupCount","Get-MgGroupSiteOnenoteSectionGroupCount" +"GET","/groups/{param}/sites/{param}/onenote/sectionGroups/{param}/sections","keep",,"Get-MgGroupSiteOnenoteSectionGroupSection","Get-MgGroupSiteOnenoteSectionGroupSection" +"GET","/groups/{param}/sites/{param}/onenote/sectionGroups/{param}/sections/{param}","keep",,"Get-MgGroupSiteOnenoteSectionGroupSection","Get-MgGroupSiteOnenoteSectionGroupSection" +"GET","/groups/{param}/sites/{param}/onenote/sectionGroups/{param}/sections/{param}/pages","keep",,"Get-MgGroupSiteOnenoteSectionGroupSectionPage","Get-MgGroupSiteOnenoteSectionGroupSectionPage" +"GET","/groups/{param}/sites/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}","keep",,"Get-MgGroupSiteOnenoteSectionGroupSectionPage","Get-MgGroupSiteOnenoteSectionGroupSectionPage" +"GET","/groups/{param}/sites/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}/parentNotebook","keep",,"Get-MgGroupSiteOnenoteSectionGroupSectionPageParentNotebook","Get-MgGroupSiteOnenoteSectionGroupSectionPageParentNotebook" +"GET","/groups/{param}/sites/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}/parentSection","keep",,"Get-MgGroupSiteOnenoteSectionGroupSectionPageParentSection","Get-MgGroupSiteOnenoteSectionGroupSectionPageParentSection" +"GET","/groups/{param}/sites/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}/preview","rename","PreviewGroupSiteOnenoteSectionGroupSectionPage","Get-MgGroupSiteOnenoteSectionGroupSectionPagePreview","Invoke-MgPreviewGroupSiteOnenoteSectionGroupSectionPage" +"GET","/groups/{param}/sites/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/$count","keep",,"Get-MgGroupSiteOnenoteSectionGroupSectionPageCount","Get-MgGroupSiteOnenoteSectionGroupSectionPageCount" +"GET","/groups/{param}/sites/{param}/onenote/sectionGroups/{param}/sections/{param}/parentNotebook","keep",,"Get-MgGroupSiteOnenoteSectionGroupSectionParentNotebook","Get-MgGroupSiteOnenoteSectionGroupSectionParentNotebook" +"GET","/groups/{param}/sites/{param}/onenote/sectionGroups/{param}/sections/{param}/parentSectionGroup","keep",,"Get-MgGroupSiteOnenoteSectionGroupSectionParentSectionGroup","Get-MgGroupSiteOnenoteSectionGroupSectionParentSectionGroup" +"GET","/groups/{param}/sites/{param}/onenote/sectionGroups/{param}/sections/$count","keep",,"Get-MgGroupSiteOnenoteSectionGroupSectionCount","Get-MgGroupSiteOnenoteSectionGroupSectionCount" +"GET","/groups/{param}/sites/{param}/onenote/sections","keep",,"Get-MgGroupSiteOnenoteSection","Get-MgGroupSiteOnenoteSection" +"GET","/groups/{param}/sites/{param}/onenote/sections/{param}","keep",,"Get-MgGroupSiteOnenoteSection","Get-MgGroupSiteOnenoteSection" +"GET","/groups/{param}/sites/{param}/onenote/sections/{param}/pages","keep",,"Get-MgGroupSiteOnenoteSectionPage","Get-MgGroupSiteOnenoteSectionPage" +"GET","/groups/{param}/sites/{param}/onenote/sections/{param}/pages/{param}","keep",,"Get-MgGroupSiteOnenoteSectionPage","Get-MgGroupSiteOnenoteSectionPage" +"GET","/groups/{param}/sites/{param}/onenote/sections/{param}/pages/{param}/parentNotebook","keep",,"Get-MgGroupSiteOnenoteSectionPageParentNotebook","Get-MgGroupSiteOnenoteSectionPageParentNotebook" +"GET","/groups/{param}/sites/{param}/onenote/sections/{param}/pages/{param}/parentSection","keep",,"Get-MgGroupSiteOnenoteSectionPageParentSection","Get-MgGroupSiteOnenoteSectionPageParentSection" +"GET","/groups/{param}/sites/{param}/onenote/sections/{param}/pages/{param}/preview","rename","PreviewGroupSiteOnenoteSectionPage","Get-MgGroupSiteOnenoteSectionPagePreview","Invoke-MgPreviewGroupSiteOnenoteSectionPage" +"GET","/groups/{param}/sites/{param}/onenote/sections/{param}/pages/$count","keep",,"Get-MgGroupSiteOnenoteSectionPageCount","Get-MgGroupSiteOnenoteSectionPageCount" +"GET","/groups/{param}/sites/{param}/onenote/sections/{param}/parentNotebook","keep",,"Get-MgGroupSiteOnenoteSectionParentNotebook","Get-MgGroupSiteOnenoteSectionParentNotebook" +"GET","/groups/{param}/sites/{param}/onenote/sections/{param}/parentSectionGroup","keep",,"Get-MgGroupSiteOnenoteSectionParentSectionGroup","Get-MgGroupSiteOnenoteSectionParentSectionGroup" +"GET","/groups/{param}/sites/{param}/onenote/sections/$count","keep",,"Get-MgGroupSiteOnenoteSectionCount","Get-MgGroupSiteOnenoteSectionCount" +"GET","/groups/{param}/sites/{param}/operations","keep",,"Get-MgGroupSiteOperation","Get-MgGroupSiteOperation" +"GET","/groups/{param}/sites/{param}/operations/{param}","keep",,"Get-MgGroupSiteOperation","Get-MgGroupSiteOperation" +"GET","/groups/{param}/sites/{param}/operations/$count","keep",,"Get-MgGroupSiteOperationCount","Get-MgGroupSiteOperationCount" +"GET","/groups/{param}/sites/{param}/pages","keep",,"Get-MgGroupSitePage","Get-MgGroupSitePage" +"GET","/groups/{param}/sites/{param}/pages/{param}","keep",,"Get-MgGroupSitePage","Get-MgGroupSitePage" +"GET","/groups/{param}/sites/{param}/pages/{param}/createdByUser","keep",,"Get-MgGroupSitePageCreatedByUser","Get-MgGroupSitePageCreatedByUser" +"GET","/groups/{param}/sites/{param}/pages/{param}/createdByUser/mailboxSettings","keep",,"Get-MgGroupSitePageCreatedByUserMailboxSetting","Get-MgGroupSitePageCreatedByUserMailboxSetting" +"GET","/groups/{param}/sites/{param}/pages/{param}/createdByUser/serviceProvisioningErrors","keep",,"Get-MgGroupSitePageCreatedByUserServiceProvisioningError","Get-MgGroupSitePageCreatedByUserServiceProvisioningError" +"GET","/groups/{param}/sites/{param}/pages/{param}/createdByUser/serviceProvisioningErrors/$count","keep",,"Get-MgGroupSitePageCreatedByUserServiceProvisioningErrorCount","Get-MgGroupSitePageCreatedByUserServiceProvisioningErrorCount" +"GET","/groups/{param}/sites/{param}/pages/{param}/lastModifiedByUser","keep",,"Get-MgGroupSitePageLastModifiedByUser","Get-MgGroupSitePageLastModifiedByUser" +"GET","/groups/{param}/sites/{param}/pages/{param}/lastModifiedByUser/mailboxSettings","keep",,"Get-MgGroupSitePageLastModifiedByUserMailboxSetting","Get-MgGroupSitePageLastModifiedByUserMailboxSetting" +"GET","/groups/{param}/sites/{param}/pages/{param}/lastModifiedByUser/serviceProvisioningErrors","keep",,"Get-MgGroupSitePageLastModifiedByUserServiceProvisioningError","Get-MgGroupSitePageLastModifiedByUserServiceProvisioningError" +"GET","/groups/{param}/sites/{param}/pages/{param}/lastModifiedByUser/serviceProvisioningErrors/$count","keep",,"Get-MgGroupSitePageLastModifiedByUserServiceProvisioningErrorCount","Get-MgGroupSitePageLastModifiedByUserServiceProvisioningErrorCount" +"GET","/groups/{param}/sites/{param}/pages/$count","keep",,"Get-MgGroupSitePageCount","Get-MgGroupSitePageCount" +"GET","/groups/{param}/sites/{param}/permissions","keep",,"Get-MgGroupSitePermission","Get-MgGroupSitePermission" +"GET","/groups/{param}/sites/{param}/permissions/{param}","keep",,"Get-MgGroupSitePermission","Get-MgGroupSitePermission" +"GET","/groups/{param}/sites/{param}/permissions/$count","keep",,"Get-MgGroupSitePermissionCount","Get-MgGroupSitePermissionCount" +"GET","/groups/{param}/sites/{param}/sites","keep",,"Get-MgGroupSubSite","Get-MgGroupSubSite" +"GET","/groups/{param}/sites/{param}/sites/{param}","keep",,"Get-MgGroupSubSite","Get-MgGroupSubSite" +"GET","/groups/{param}/sites/{param}/sites/$count","rename","GroupSubSiteCount","Get-MgGroupSiteCount","Get-MgGroupSubSiteCount" +"GET","/groups/{param}/sites/{param}/termStore/groups","keep",,"Get-MgGroupSiteTermStoreGroup","Get-MgGroupSiteTermStoreGroup" +"GET","/groups/{param}/sites/{param}/termStore/groups/{param}","keep",,"Get-MgGroupSiteTermStoreGroup","Get-MgGroupSiteTermStoreGroup" +"GET","/groups/{param}/sites/{param}/termStore/groups/{param}/sets","keep",,"Get-MgGroupSiteTermStoreGroupSet","Get-MgGroupSiteTermStoreGroupSet" +"GET","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}","keep",,"Get-MgGroupSiteTermStoreGroupSet","Get-MgGroupSiteTermStoreGroupSet" +"GET","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/children","keep",,"Get-MgGroupSiteTermStoreGroupSetChild","Get-MgGroupSiteTermStoreGroupSetChild" +"GET","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/children/{param}/children/{param}/relations","keep",,"Get-MgGroupSiteTermStoreGroupSetChildRelation","Get-MgGroupSiteTermStoreGroupSetChildRelation" +"GET","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/children/{param}/children/{param}/relations/{param}/fromTerm","keep",,"Get-MgGroupSiteTermStoreGroupSetChildRelationFromTerm","Get-MgGroupSiteTermStoreGroupSetChildRelationFromTerm" +"GET","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/children/{param}/children/{param}/relations/{param}/set","keep",,"Get-MgGroupSiteTermStoreGroupSetChildRelationSet","Get-MgGroupSiteTermStoreGroupSetChildRelationSet" +"GET","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/children/{param}/children/{param}/relations/{param}/toTerm","keep",,"Get-MgGroupSiteTermStoreGroupSetChildRelationToTerm","Get-MgGroupSiteTermStoreGroupSetChildRelationToTerm" +"GET","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/children/{param}/children/{param}/relations/$count","keep",,"Get-MgGroupSiteTermStoreGroupSetChildRelationCount","Get-MgGroupSiteTermStoreGroupSetChildRelationCount" +"GET","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/children/{param}/children/{param}/set","keep",,"Get-MgGroupSiteTermStoreGroupSetChildSet","Get-MgGroupSiteTermStoreGroupSetChildSet" +"GET","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/children/{param}/children/$count","keep",,"Get-MgGroupSiteTermStoreGroupSetChildCount","Get-MgGroupSiteTermStoreGroupSetChildCount" +"GET","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/parentGroup","keep",,"Get-MgGroupSiteTermStoreGroupSetParentGroup","Get-MgGroupSiteTermStoreGroupSetParentGroup" +"GET","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/relations","keep",,"Get-MgGroupSiteTermStoreGroupSetRelation","Get-MgGroupSiteTermStoreGroupSetRelation" +"GET","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/relations/{param}","keep",,"Get-MgGroupSiteTermStoreGroupSetRelation","Get-MgGroupSiteTermStoreGroupSetRelation" +"GET","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/relations/{param}/fromTerm","keep",,"Get-MgGroupSiteTermStoreGroupSetRelationFromTerm","Get-MgGroupSiteTermStoreGroupSetRelationFromTerm" +"GET","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/relations/{param}/set","keep",,"Get-MgGroupSiteTermStoreGroupSetRelationSet","Get-MgGroupSiteTermStoreGroupSetRelationSet" +"GET","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/relations/{param}/toTerm","keep",,"Get-MgGroupSiteTermStoreGroupSetRelationToTerm","Get-MgGroupSiteTermStoreGroupSetRelationToTerm" +"GET","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/relations/$count","keep",,"Get-MgGroupSiteTermStoreGroupSetRelationCount","Get-MgGroupSiteTermStoreGroupSetRelationCount" +"GET","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/terms","keep",,"Get-MgGroupSiteTermStoreGroupSetTerm","Get-MgGroupSiteTermStoreGroupSetTerm" +"GET","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}","keep",,"Get-MgGroupSiteTermStoreGroupSetTerm","Get-MgGroupSiteTermStoreGroupSetTerm" +"GET","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/children","keep",,"Get-MgGroupSiteTermStoreGroupSetTermChild","Get-MgGroupSiteTermStoreGroupSetTermChild" +"GET","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/children/{param}","keep",,"Get-MgGroupSiteTermStoreGroupSetTermChild","Get-MgGroupSiteTermStoreGroupSetTermChild" +"GET","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/children/{param}/relations","keep",,"Get-MgGroupSiteTermStoreGroupSetTermChildRelation","Get-MgGroupSiteTermStoreGroupSetTermChildRelation" +"GET","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/children/{param}/relations/{param}","keep",,"Get-MgGroupSiteTermStoreGroupSetTermChildRelation","Get-MgGroupSiteTermStoreGroupSetTermChildRelation" +"GET","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/children/{param}/relations/{param}/fromTerm","keep",,"Get-MgGroupSiteTermStoreGroupSetTermChildRelationFromTerm","Get-MgGroupSiteTermStoreGroupSetTermChildRelationFromTerm" +"GET","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/children/{param}/relations/{param}/set","keep",,"Get-MgGroupSiteTermStoreGroupSetTermChildRelationSet","Get-MgGroupSiteTermStoreGroupSetTermChildRelationSet" +"GET","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/children/{param}/relations/{param}/toTerm","keep",,"Get-MgGroupSiteTermStoreGroupSetTermChildRelationToTerm","Get-MgGroupSiteTermStoreGroupSetTermChildRelationToTerm" +"GET","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/children/{param}/relations/$count","keep",,"Get-MgGroupSiteTermStoreGroupSetTermChildRelationCount","Get-MgGroupSiteTermStoreGroupSetTermChildRelationCount" +"GET","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/children/{param}/set","keep",,"Get-MgGroupSiteTermStoreGroupSetTermChildSet","Get-MgGroupSiteTermStoreGroupSetTermChildSet" +"GET","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/children/$count","keep",,"Get-MgGroupSiteTermStoreGroupSetTermChildCount","Get-MgGroupSiteTermStoreGroupSetTermChildCount" +"GET","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/relations","keep",,"Get-MgGroupSiteTermStoreGroupSetTermRelation","Get-MgGroupSiteTermStoreGroupSetTermRelation" +"GET","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/relations/{param}","keep",,"Get-MgGroupSiteTermStoreGroupSetTermRelation","Get-MgGroupSiteTermStoreGroupSetTermRelation" +"GET","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/relations/{param}/fromTerm","keep",,"Get-MgGroupSiteTermStoreGroupSetTermRelationFromTerm","Get-MgGroupSiteTermStoreGroupSetTermRelationFromTerm" +"GET","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/relations/{param}/set","keep",,"Get-MgGroupSiteTermStoreGroupSetTermRelationSet","Get-MgGroupSiteTermStoreGroupSetTermRelationSet" +"GET","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/relations/{param}/toTerm","keep",,"Get-MgGroupSiteTermStoreGroupSetTermRelationToTerm","Get-MgGroupSiteTermStoreGroupSetTermRelationToTerm" +"GET","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/relations/$count","keep",,"Get-MgGroupSiteTermStoreGroupSetTermRelationCount","Get-MgGroupSiteTermStoreGroupSetTermRelationCount" +"GET","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/set","keep",,"Get-MgGroupSiteTermStoreGroupSetTermSet","Get-MgGroupSiteTermStoreGroupSetTermSet" +"GET","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/terms/$count","keep",,"Get-MgGroupSiteTermStoreGroupSetTermCount","Get-MgGroupSiteTermStoreGroupSetTermCount" +"GET","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/$count","keep",,"Get-MgGroupSiteTermStoreGroupSetCount","Get-MgGroupSiteTermStoreGroupSetCount" +"GET","/groups/{param}/sites/{param}/termStore/groups/$count","keep",,"Get-MgGroupSiteTermStoreGroupCount","Get-MgGroupSiteTermStoreGroupCount" +"GET","/groups/{param}/sites/{param}/termStore/sets","keep",,"Get-MgGroupSiteTermStoreSet","Get-MgGroupSiteTermStoreSet" +"GET","/groups/{param}/sites/{param}/termStore/sets/{param}","keep",,"Get-MgGroupSiteTermStoreSet","Get-MgGroupSiteTermStoreSet" +"GET","/groups/{param}/sites/{param}/termStore/sets/{param}/children","keep",,"Get-MgGroupSiteTermStoreSetChild","Get-MgGroupSiteTermStoreSetChild" +"GET","/groups/{param}/sites/{param}/termStore/sets/{param}/children/{param}/children/{param}/relations","keep",,"Get-MgGroupSiteTermStoreSetChildRelation","Get-MgGroupSiteTermStoreSetChildRelation" +"GET","/groups/{param}/sites/{param}/termStore/sets/{param}/children/{param}/children/{param}/relations/{param}/fromTerm","keep",,"Get-MgGroupSiteTermStoreSetChildRelationFromTerm","Get-MgGroupSiteTermStoreSetChildRelationFromTerm" +"GET","/groups/{param}/sites/{param}/termStore/sets/{param}/children/{param}/children/{param}/relations/{param}/set","keep",,"Get-MgGroupSiteTermStoreSetChildRelationSet","Get-MgGroupSiteTermStoreSetChildRelationSet" +"GET","/groups/{param}/sites/{param}/termStore/sets/{param}/children/{param}/children/{param}/relations/{param}/toTerm","keep",,"Get-MgGroupSiteTermStoreSetChildRelationToTerm","Get-MgGroupSiteTermStoreSetChildRelationToTerm" +"GET","/groups/{param}/sites/{param}/termStore/sets/{param}/children/{param}/children/{param}/relations/$count","keep",,"Get-MgGroupSiteTermStoreSetChildRelationCount","Get-MgGroupSiteTermStoreSetChildRelationCount" +"GET","/groups/{param}/sites/{param}/termStore/sets/{param}/children/{param}/children/{param}/set","keep",,"Get-MgGroupSiteTermStoreSetChildSet","Get-MgGroupSiteTermStoreSetChildSet" +"GET","/groups/{param}/sites/{param}/termStore/sets/{param}/children/{param}/children/$count","keep",,"Get-MgGroupSiteTermStoreSetChildCount","Get-MgGroupSiteTermStoreSetChildCount" +"GET","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup","keep",,"Get-MgGroupSiteTermStoreSetParentGroup","Get-MgGroupSiteTermStoreSetParentGroup" +"GET","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets","keep",,"Get-MgGroupSiteTermStoreSetParentGroupSet","Get-MgGroupSiteTermStoreSetParentGroupSet" +"GET","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}","keep",,"Get-MgGroupSiteTermStoreSetParentGroupSet","Get-MgGroupSiteTermStoreSetParentGroupSet" +"GET","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/children","keep",,"Get-MgGroupSiteTermStoreSetParentGroupSetChild","Get-MgGroupSiteTermStoreSetParentGroupSetChild" +"GET","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/children/{param}/children/{param}/relations","keep",,"Get-MgGroupSiteTermStoreSetParentGroupSetChildRelation","Get-MgGroupSiteTermStoreSetParentGroupSetChildRelation" +"GET","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/children/{param}/children/{param}/relations/{param}/fromTerm","keep",,"Get-MgGroupSiteTermStoreSetParentGroupSetChildRelationFromTerm","Get-MgGroupSiteTermStoreSetParentGroupSetChildRelationFromTerm" +"GET","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/children/{param}/children/{param}/relations/{param}/set","keep",,"Get-MgGroupSiteTermStoreSetParentGroupSetChildRelationSet","Get-MgGroupSiteTermStoreSetParentGroupSetChildRelationSet" +"GET","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/children/{param}/children/{param}/relations/{param}/toTerm","keep",,"Get-MgGroupSiteTermStoreSetParentGroupSetChildRelationToTerm","Get-MgGroupSiteTermStoreSetParentGroupSetChildRelationToTerm" +"GET","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/children/{param}/children/{param}/relations/$count","keep",,"Get-MgGroupSiteTermStoreSetParentGroupSetChildRelationCount","Get-MgGroupSiteTermStoreSetParentGroupSetChildRelationCount" +"GET","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/children/{param}/children/{param}/set","keep",,"Get-MgGroupSiteTermStoreSetParentGroupSetChildSet","Get-MgGroupSiteTermStoreSetParentGroupSetChildSet" +"GET","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/children/{param}/children/$count","keep",,"Get-MgGroupSiteTermStoreSetParentGroupSetChildCount","Get-MgGroupSiteTermStoreSetParentGroupSetChildCount" +"GET","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/relations","keep",,"Get-MgGroupSiteTermStoreSetParentGroupSetRelation","Get-MgGroupSiteTermStoreSetParentGroupSetRelation" +"GET","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/relations/{param}","keep",,"Get-MgGroupSiteTermStoreSetParentGroupSetRelation","Get-MgGroupSiteTermStoreSetParentGroupSetRelation" +"GET","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/relations/{param}/fromTerm","keep",,"Get-MgGroupSiteTermStoreSetParentGroupSetRelationFromTerm","Get-MgGroupSiteTermStoreSetParentGroupSetRelationFromTerm" +"GET","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/relations/{param}/set","keep",,"Get-MgGroupSiteTermStoreSetParentGroupSetRelationSet","Get-MgGroupSiteTermStoreSetParentGroupSetRelationSet" +"GET","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/relations/{param}/toTerm","keep",,"Get-MgGroupSiteTermStoreSetParentGroupSetRelationToTerm","Get-MgGroupSiteTermStoreSetParentGroupSetRelationToTerm" +"GET","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/relations/$count","keep",,"Get-MgGroupSiteTermStoreSetParentGroupSetRelationCount","Get-MgGroupSiteTermStoreSetParentGroupSetRelationCount" +"GET","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms","keep",,"Get-MgGroupSiteTermStoreSetParentGroupSetTerm","Get-MgGroupSiteTermStoreSetParentGroupSetTerm" +"GET","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}","keep",,"Get-MgGroupSiteTermStoreSetParentGroupSetTerm","Get-MgGroupSiteTermStoreSetParentGroupSetTerm" +"GET","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/children","keep",,"Get-MgGroupSiteTermStoreSetParentGroupSetTermChild","Get-MgGroupSiteTermStoreSetParentGroupSetTermChild" +"GET","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/children/{param}","keep",,"Get-MgGroupSiteTermStoreSetParentGroupSetTermChild","Get-MgGroupSiteTermStoreSetParentGroupSetTermChild" +"GET","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/children/{param}/relations","keep",,"Get-MgGroupSiteTermStoreSetParentGroupSetTermChildRelation","Get-MgGroupSiteTermStoreSetParentGroupSetTermChildRelation" +"GET","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/children/{param}/relations/{param}","keep",,"Get-MgGroupSiteTermStoreSetParentGroupSetTermChildRelation","Get-MgGroupSiteTermStoreSetParentGroupSetTermChildRelation" +"GET","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/children/{param}/relations/{param}/fromTerm","keep",,"Get-MgGroupSiteTermStoreSetParentGroupSetTermChildRelationFromTerm","Get-MgGroupSiteTermStoreSetParentGroupSetTermChildRelationFromTerm" +"GET","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/children/{param}/relations/{param}/set","keep",,"Get-MgGroupSiteTermStoreSetParentGroupSetTermChildRelationSet","Get-MgGroupSiteTermStoreSetParentGroupSetTermChildRelationSet" +"GET","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/children/{param}/relations/{param}/toTerm","keep",,"Get-MgGroupSiteTermStoreSetParentGroupSetTermChildRelationToTerm","Get-MgGroupSiteTermStoreSetParentGroupSetTermChildRelationToTerm" +"GET","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/children/{param}/relations/$count","keep",,"Get-MgGroupSiteTermStoreSetParentGroupSetTermChildRelationCount","Get-MgGroupSiteTermStoreSetParentGroupSetTermChildRelationCount" +"GET","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/children/{param}/set","keep",,"Get-MgGroupSiteTermStoreSetParentGroupSetTermChildSet","Get-MgGroupSiteTermStoreSetParentGroupSetTermChildSet" +"GET","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/children/$count","keep",,"Get-MgGroupSiteTermStoreSetParentGroupSetTermChildCount","Get-MgGroupSiteTermStoreSetParentGroupSetTermChildCount" +"GET","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/relations","keep",,"Get-MgGroupSiteTermStoreSetParentGroupSetTermRelation","Get-MgGroupSiteTermStoreSetParentGroupSetTermRelation" +"GET","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/relations/{param}","keep",,"Get-MgGroupSiteTermStoreSetParentGroupSetTermRelation","Get-MgGroupSiteTermStoreSetParentGroupSetTermRelation" +"GET","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/relations/{param}/fromTerm","keep",,"Get-MgGroupSiteTermStoreSetParentGroupSetTermRelationFromTerm","Get-MgGroupSiteTermStoreSetParentGroupSetTermRelationFromTerm" +"GET","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/relations/{param}/set","keep",,"Get-MgGroupSiteTermStoreSetParentGroupSetTermRelationSet","Get-MgGroupSiteTermStoreSetParentGroupSetTermRelationSet" +"GET","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/relations/{param}/toTerm","keep",,"Get-MgGroupSiteTermStoreSetParentGroupSetTermRelationToTerm","Get-MgGroupSiteTermStoreSetParentGroupSetTermRelationToTerm" +"GET","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/relations/$count","keep",,"Get-MgGroupSiteTermStoreSetParentGroupSetTermRelationCount","Get-MgGroupSiteTermStoreSetParentGroupSetTermRelationCount" +"GET","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/set","keep",,"Get-MgGroupSiteTermStoreSetParentGroupSetTermSet","Get-MgGroupSiteTermStoreSetParentGroupSetTermSet" +"GET","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/$count","keep",,"Get-MgGroupSiteTermStoreSetParentGroupSetTermCount","Get-MgGroupSiteTermStoreSetParentGroupSetTermCount" +"GET","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/$count","keep",,"Get-MgGroupSiteTermStoreSetParentGroupSetCount","Get-MgGroupSiteTermStoreSetParentGroupSetCount" +"GET","/groups/{param}/sites/{param}/termStore/sets/{param}/relations","keep",,"Get-MgGroupSiteTermStoreSetRelation","Get-MgGroupSiteTermStoreSetRelation" +"GET","/groups/{param}/sites/{param}/termStore/sets/{param}/relations/{param}","keep",,"Get-MgGroupSiteTermStoreSetRelation","Get-MgGroupSiteTermStoreSetRelation" +"GET","/groups/{param}/sites/{param}/termStore/sets/{param}/relations/{param}/fromTerm","keep",,"Get-MgGroupSiteTermStoreSetRelationFromTerm","Get-MgGroupSiteTermStoreSetRelationFromTerm" +"GET","/groups/{param}/sites/{param}/termStore/sets/{param}/relations/{param}/set","keep",,"Get-MgGroupSiteTermStoreSetRelationSet","Get-MgGroupSiteTermStoreSetRelationSet" +"GET","/groups/{param}/sites/{param}/termStore/sets/{param}/relations/{param}/toTerm","keep",,"Get-MgGroupSiteTermStoreSetRelationToTerm","Get-MgGroupSiteTermStoreSetRelationToTerm" +"GET","/groups/{param}/sites/{param}/termStore/sets/{param}/relations/$count","keep",,"Get-MgGroupSiteTermStoreSetRelationCount","Get-MgGroupSiteTermStoreSetRelationCount" +"GET","/groups/{param}/sites/{param}/termStore/sets/{param}/terms","keep",,"Get-MgGroupSiteTermStoreSetTerm","Get-MgGroupSiteTermStoreSetTerm" +"GET","/groups/{param}/sites/{param}/termStore/sets/{param}/terms/{param}","keep",,"Get-MgGroupSiteTermStoreSetTerm","Get-MgGroupSiteTermStoreSetTerm" +"GET","/groups/{param}/sites/{param}/termStore/sets/{param}/terms/{param}/children","keep",,"Get-MgGroupSiteTermStoreSetTermChild","Get-MgGroupSiteTermStoreSetTermChild" +"GET","/groups/{param}/sites/{param}/termStore/sets/{param}/terms/{param}/children/{param}","keep",,"Get-MgGroupSiteTermStoreSetTermChild","Get-MgGroupSiteTermStoreSetTermChild" +"GET","/groups/{param}/sites/{param}/termStore/sets/{param}/terms/{param}/children/{param}/relations","keep",,"Get-MgGroupSiteTermStoreSetTermChildRelation","Get-MgGroupSiteTermStoreSetTermChildRelation" +"GET","/groups/{param}/sites/{param}/termStore/sets/{param}/terms/{param}/children/{param}/relations/{param}","keep",,"Get-MgGroupSiteTermStoreSetTermChildRelation","Get-MgGroupSiteTermStoreSetTermChildRelation" +"GET","/groups/{param}/sites/{param}/termStore/sets/{param}/terms/{param}/children/{param}/relations/{param}/fromTerm","keep",,"Get-MgGroupSiteTermStoreSetTermChildRelationFromTerm","Get-MgGroupSiteTermStoreSetTermChildRelationFromTerm" +"GET","/groups/{param}/sites/{param}/termStore/sets/{param}/terms/{param}/children/{param}/relations/{param}/set","keep",,"Get-MgGroupSiteTermStoreSetTermChildRelationSet","Get-MgGroupSiteTermStoreSetTermChildRelationSet" +"GET","/groups/{param}/sites/{param}/termStore/sets/{param}/terms/{param}/children/{param}/relations/{param}/toTerm","keep",,"Get-MgGroupSiteTermStoreSetTermChildRelationToTerm","Get-MgGroupSiteTermStoreSetTermChildRelationToTerm" +"GET","/groups/{param}/sites/{param}/termStore/sets/{param}/terms/{param}/children/{param}/relations/$count","keep",,"Get-MgGroupSiteTermStoreSetTermChildRelationCount","Get-MgGroupSiteTermStoreSetTermChildRelationCount" +"GET","/groups/{param}/sites/{param}/termStore/sets/{param}/terms/{param}/children/{param}/set","keep",,"Get-MgGroupSiteTermStoreSetTermChildSet","Get-MgGroupSiteTermStoreSetTermChildSet" +"GET","/groups/{param}/sites/{param}/termStore/sets/{param}/terms/{param}/children/$count","keep",,"Get-MgGroupSiteTermStoreSetTermChildCount","Get-MgGroupSiteTermStoreSetTermChildCount" +"GET","/groups/{param}/sites/{param}/termStore/sets/{param}/terms/{param}/relations","keep",,"Get-MgGroupSiteTermStoreSetTermRelation","Get-MgGroupSiteTermStoreSetTermRelation" +"GET","/groups/{param}/sites/{param}/termStore/sets/{param}/terms/{param}/relations/{param}","keep",,"Get-MgGroupSiteTermStoreSetTermRelation","Get-MgGroupSiteTermStoreSetTermRelation" +"GET","/groups/{param}/sites/{param}/termStore/sets/{param}/terms/{param}/relations/{param}/fromTerm","keep",,"Get-MgGroupSiteTermStoreSetTermRelationFromTerm","Get-MgGroupSiteTermStoreSetTermRelationFromTerm" +"GET","/groups/{param}/sites/{param}/termStore/sets/{param}/terms/{param}/relations/{param}/set","keep",,"Get-MgGroupSiteTermStoreSetTermRelationSet","Get-MgGroupSiteTermStoreSetTermRelationSet" +"GET","/groups/{param}/sites/{param}/termStore/sets/{param}/terms/{param}/relations/{param}/toTerm","keep",,"Get-MgGroupSiteTermStoreSetTermRelationToTerm","Get-MgGroupSiteTermStoreSetTermRelationToTerm" +"GET","/groups/{param}/sites/{param}/termStore/sets/{param}/terms/{param}/relations/$count","keep",,"Get-MgGroupSiteTermStoreSetTermRelationCount","Get-MgGroupSiteTermStoreSetTermRelationCount" +"GET","/groups/{param}/sites/{param}/termStore/sets/{param}/terms/{param}/set","keep",,"Get-MgGroupSiteTermStoreSetTermSet","Get-MgGroupSiteTermStoreSetTermSet" +"GET","/groups/{param}/sites/{param}/termStore/sets/{param}/terms/$count","keep",,"Get-MgGroupSiteTermStoreSetTermCount","Get-MgGroupSiteTermStoreSetTermCount" +"GET","/groups/{param}/sites/{param}/termStore/sets/$count","keep",,"Get-MgGroupSiteTermStoreSetCount","Get-MgGroupSiteTermStoreSetCount" +"GET","/groups/{param}/sites/{param}/termStores","keep",,"Get-MgGroupSiteTermStore","Get-MgGroupSiteTermStore" +"GET","/groups/{param}/sites/{param}/termStores/$count","keep",,"Get-MgGroupSiteTermStoreCount","Get-MgGroupSiteTermStoreCount" +"GET","/groups/{param}/sites/delta","keep",,"Get-MgGroupSiteDelta","Get-MgGroupSiteDelta" +"GET","/groups/{param}/sites/getAllSites","suppress",,"Get-MgGroupSiteGetAllSites","no oracle row for GET /groups/{param}/sites/getAllSites and 'Get-MgGroupSiteGetAllSites' unshipped" +"GET","/groups/{param}/team","keep",,"Get-MgGroupTeam","Get-MgGroupTeam" +"GET","/groups/{param}/team/allChannels","rename","AllGroupTeamChannel","Get-MgGroupTeamAllChannel","Get-MgAllGroupTeamChannel" +"GET","/groups/{param}/team/allChannels/{param}","rename","AllGroupTeamChannel","Get-MgGroupTeamAllChannel","Get-MgAllGroupTeamChannel" +"GET","/groups/{param}/team/allChannels/$count","rename","AllGroupTeamChannelCount","Get-MgGroupTeamAllChannelCount","Get-MgAllGroupTeamChannelCount" +"GET","/groups/{param}/team/channels","keep",,"Get-MgGroupTeamChannel","Get-MgGroupTeamChannel" +"GET","/groups/{param}/team/channels/{param}","keep",,"Get-MgGroupTeamChannel","Get-MgGroupTeamChannel" +"GET","/groups/{param}/team/channels/{param}/allMembers","rename","GroupTeamChannelMember","Get-MgGroupTeamChannelAllMember","Get-MgGroupTeamChannelMember" +"GET","/groups/{param}/team/channels/{param}/allMembers/{param}","rename","GroupTeamChannelMember","Get-MgGroupTeamChannelAllMember","Get-MgGroupTeamChannelMember" +"GET","/groups/{param}/team/channels/{param}/allMembers/$count","keep",,"Get-MgGroupTeamChannelAllMemberCount","Get-MgGroupTeamChannelAllMemberCount" +"GET","/groups/{param}/team/channels/{param}/enabledApps","keep",,"Get-MgGroupTeamChannelEnabledApp","Get-MgGroupTeamChannelEnabledApp" +"GET","/groups/{param}/team/channels/{param}/enabledApps/{param}","keep",,"Get-MgGroupTeamChannelEnabledApp","Get-MgGroupTeamChannelEnabledApp" +"GET","/groups/{param}/team/channels/{param}/enabledApps/$count","keep",,"Get-MgGroupTeamChannelEnabledAppCount","Get-MgGroupTeamChannelEnabledAppCount" +"GET","/groups/{param}/team/channels/{param}/filesFolder","keep",,"Get-MgGroupTeamChannelFileFolder","Get-MgGroupTeamChannelFileFolder" +"GET","/groups/{param}/team/channels/{param}/members","suppress",,"Get-MgGroupTeamChannelMember","no oracle row; 'Get-MgGroupTeamChannelMember' ships from sibling family (see rename entries for this noun)" +"GET","/groups/{param}/team/channels/{param}/members/{param}","suppress",,"Get-MgGroupTeamChannelMember","no oracle row; 'Get-MgGroupTeamChannelMember' ships from sibling family (see rename entries for this noun)" +"GET","/groups/{param}/team/channels/{param}/members/$count","keep",,"Get-MgGroupTeamChannelMemberCount","Get-MgGroupTeamChannelMemberCount" +"GET","/groups/{param}/team/channels/{param}/messages","keep",,"Get-MgGroupTeamChannelMessage","Get-MgGroupTeamChannelMessage" +"GET","/groups/{param}/team/channels/{param}/messages/{param}","keep",,"Get-MgGroupTeamChannelMessage","Get-MgGroupTeamChannelMessage" +"GET","/groups/{param}/team/channels/{param}/messages/{param}/hostedContents","keep",,"Get-MgGroupTeamChannelMessageHostedContent","Get-MgGroupTeamChannelMessageHostedContent" +"GET","/groups/{param}/team/channels/{param}/messages/{param}/hostedContents/{param}","keep",,"Get-MgGroupTeamChannelMessageHostedContent","Get-MgGroupTeamChannelMessageHostedContent" +"GET","/groups/{param}/team/channels/{param}/messages/{param}/hostedContents/{param}/$value","suppress",,"Get-MgGroupTeamChannelMessageHostedContentContent","no oracle row for GET /groups/{param}/team/channels/{param}/messages/{param}/hostedContents/{param}/$value and 'Get-MgGroupTeamChannelMessageHostedContentContent' unshipped" +"GET","/groups/{param}/team/channels/{param}/messages/{param}/hostedContents/$count","keep",,"Get-MgGroupTeamChannelMessageHostedContentCount","Get-MgGroupTeamChannelMessageHostedContentCount" +"GET","/groups/{param}/team/channels/{param}/messages/{param}/replies","keep",,"Get-MgGroupTeamChannelMessageReply","Get-MgGroupTeamChannelMessageReply" +"GET","/groups/{param}/team/channels/{param}/messages/{param}/replies/{param}","keep",,"Get-MgGroupTeamChannelMessageReply","Get-MgGroupTeamChannelMessageReply" +"GET","/groups/{param}/team/channels/{param}/messages/{param}/replies/{param}/hostedContents","keep",,"Get-MgGroupTeamChannelMessageReplyHostedContent","Get-MgGroupTeamChannelMessageReplyHostedContent" +"GET","/groups/{param}/team/channels/{param}/messages/{param}/replies/{param}/hostedContents/{param}","keep",,"Get-MgGroupTeamChannelMessageReplyHostedContent","Get-MgGroupTeamChannelMessageReplyHostedContent" +"GET","/groups/{param}/team/channels/{param}/messages/{param}/replies/{param}/hostedContents/{param}/$value","suppress",,"Get-MgGroupTeamChannelMessageReplyHostedContentContent","no oracle row for GET /groups/{param}/team/channels/{param}/messages/{param}/replies/{param}/hostedContents/{param}/$value and 'Get-MgGroupTeamChannelMessageReplyHostedContentContent' unshipped" +"GET","/groups/{param}/team/channels/{param}/messages/{param}/replies/{param}/hostedContents/$count","keep",,"Get-MgGroupTeamChannelMessageReplyHostedContentCount","Get-MgGroupTeamChannelMessageReplyHostedContentCount" +"GET","/groups/{param}/team/channels/{param}/messages/{param}/replies/$count","keep",,"Get-MgGroupTeamChannelMessageReplyCount","Get-MgGroupTeamChannelMessageReplyCount" +"GET","/groups/{param}/team/channels/{param}/messages/{param}/replies/delta","keep",,"Get-MgGroupTeamChannelMessageReplyDelta","Get-MgGroupTeamChannelMessageReplyDelta" +"GET","/groups/{param}/team/channels/{param}/messages/$count","keep",,"Get-MgGroupTeamChannelMessageCount","Get-MgGroupTeamChannelMessageCount" +"GET","/groups/{param}/team/channels/{param}/messages/delta","keep",,"Get-MgGroupTeamChannelMessageDelta","Get-MgGroupTeamChannelMessageDelta" +"GET","/groups/{param}/team/channels/{param}/sharedWithTeams","keep",,"Get-MgGroupTeamChannelSharedWithTeam","Get-MgGroupTeamChannelSharedWithTeam" +"GET","/groups/{param}/team/channels/{param}/sharedWithTeams/{param}","keep",,"Get-MgGroupTeamChannelSharedWithTeam","Get-MgGroupTeamChannelSharedWithTeam" +"GET","/groups/{param}/team/channels/{param}/sharedWithTeams/{param}/allowedMembers","keep",,"Get-MgGroupTeamChannelSharedWithTeamAllowedMember","Get-MgGroupTeamChannelSharedWithTeamAllowedMember" +"GET","/groups/{param}/team/channels/{param}/sharedWithTeams/{param}/allowedMembers/{param}","keep",,"Get-MgGroupTeamChannelSharedWithTeamAllowedMember","Get-MgGroupTeamChannelSharedWithTeamAllowedMember" +"GET","/groups/{param}/team/channels/{param}/sharedWithTeams/{param}/allowedMembers/$count","keep",,"Get-MgGroupTeamChannelSharedWithTeamAllowedMemberCount","Get-MgGroupTeamChannelSharedWithTeamAllowedMemberCount" +"GET","/groups/{param}/team/channels/{param}/sharedWithTeams/$count","keep",,"Get-MgGroupTeamChannelSharedWithTeamCount","Get-MgGroupTeamChannelSharedWithTeamCount" +"GET","/groups/{param}/team/channels/{param}/tabs","keep",,"Get-MgGroupTeamChannelTab","Get-MgGroupTeamChannelTab" +"GET","/groups/{param}/team/channels/{param}/tabs/{param}","keep",,"Get-MgGroupTeamChannelTab","Get-MgGroupTeamChannelTab" +"GET","/groups/{param}/team/channels/{param}/tabs/{param}/teamsApp","keep",,"Get-MgGroupTeamChannelTabTeamApp","Get-MgGroupTeamChannelTabTeamApp" +"GET","/groups/{param}/team/channels/{param}/tabs/$count","keep",,"Get-MgGroupTeamChannelTabCount","Get-MgGroupTeamChannelTabCount" +"GET","/groups/{param}/team/channels/$count","keep",,"Get-MgGroupTeamChannelCount","Get-MgGroupTeamChannelCount" +"GET","/groups/{param}/team/channels/getAllMessages","suppress",,"Get-MgGroupTeamChannelGetAllMessages","no oracle row for GET /groups/{param}/team/channels/getAllMessages and 'Get-MgGroupTeamChannelGetAllMessages' unshipped" +"GET","/groups/{param}/team/channels/getAllRetainedMessages","rename","GroupTeamChannelRetainedMessage","Get-MgGroupTeamChannelGetAllRetainedMessages","Get-MgGroupTeamChannelRetainedMessage" +"GET","/groups/{param}/team/group","keep",,"Get-MgGroupTeamGroup","Get-MgGroupTeamGroup" +"GET","/groups/{param}/team/group/serviceProvisioningErrors","keep",,"Get-MgGroupTeamGroupServiceProvisioningError","Get-MgGroupTeamGroupServiceProvisioningError" +"GET","/groups/{param}/team/group/serviceProvisioningErrors/$count","keep",,"Get-MgGroupTeamGroupServiceProvisioningErrorCount","Get-MgGroupTeamGroupServiceProvisioningErrorCount" +"GET","/groups/{param}/team/incomingChannels","keep",,"Get-MgGroupTeamIncomingChannel","Get-MgGroupTeamIncomingChannel" +"GET","/groups/{param}/team/incomingChannels/{param}","keep",,"Get-MgGroupTeamIncomingChannel","Get-MgGroupTeamIncomingChannel" +"GET","/groups/{param}/team/incomingChannels/$count","keep",,"Get-MgGroupTeamIncomingChannelCount","Get-MgGroupTeamIncomingChannelCount" +"GET","/groups/{param}/team/installedApps","keep",,"Get-MgGroupTeamInstalledApp","Get-MgGroupTeamInstalledApp" +"GET","/groups/{param}/team/installedApps/{param}","keep",,"Get-MgGroupTeamInstalledApp","Get-MgGroupTeamInstalledApp" +"GET","/groups/{param}/team/installedApps/{param}/teamsApp","keep",,"Get-MgGroupTeamInstalledAppTeamApp","Get-MgGroupTeamInstalledAppTeamApp" +"GET","/groups/{param}/team/installedApps/{param}/teamsAppDefinition","keep",,"Get-MgGroupTeamInstalledAppTeamAppDefinition","Get-MgGroupTeamInstalledAppTeamAppDefinition" +"GET","/groups/{param}/team/installedApps/$count","keep",,"Get-MgGroupTeamInstalledAppCount","Get-MgGroupTeamInstalledAppCount" +"GET","/groups/{param}/team/members","keep",,"Get-MgGroupTeamMember","Get-MgGroupTeamMember" +"GET","/groups/{param}/team/members/{param}","keep",,"Get-MgGroupTeamMember","Get-MgGroupTeamMember" +"GET","/groups/{param}/team/members/$count","keep",,"Get-MgGroupTeamMemberCount","Get-MgGroupTeamMemberCount" +"GET","/groups/{param}/team/operations","keep",,"Get-MgGroupTeamOperation","Get-MgGroupTeamOperation" +"GET","/groups/{param}/team/operations/{param}","keep",,"Get-MgGroupTeamOperation","Get-MgGroupTeamOperation" +"GET","/groups/{param}/team/operations/$count","keep",,"Get-MgGroupTeamOperationCount","Get-MgGroupTeamOperationCount" +"GET","/groups/{param}/team/permissionGrants","keep",,"Get-MgGroupTeamPermissionGrant","Get-MgGroupTeamPermissionGrant" +"GET","/groups/{param}/team/permissionGrants/{param}","keep",,"Get-MgGroupTeamPermissionGrant","Get-MgGroupTeamPermissionGrant" +"GET","/groups/{param}/team/permissionGrants/$count","keep",,"Get-MgGroupTeamPermissionGrantCount","Get-MgGroupTeamPermissionGrantCount" +"GET","/groups/{param}/team/photo","keep",,"Get-MgGroupTeamPhoto","Get-MgGroupTeamPhoto" +"GET","/groups/{param}/team/photo/$value","keep",,"Get-MgGroupTeamPhotoContent","Get-MgGroupTeamPhotoContent" +"GET","/groups/{param}/team/primaryChannel","keep",,"Get-MgGroupTeamPrimaryChannel","Get-MgGroupTeamPrimaryChannel" +"GET","/groups/{param}/team/primaryChannel/allMembers","rename","GroupTeamPrimaryChannelMember","Get-MgGroupTeamPrimaryChannelAllMember","Get-MgGroupTeamPrimaryChannelMember" +"GET","/groups/{param}/team/primaryChannel/allMembers/{param}","rename","GroupTeamPrimaryChannelMember","Get-MgGroupTeamPrimaryChannelAllMember","Get-MgGroupTeamPrimaryChannelMember" +"GET","/groups/{param}/team/primaryChannel/allMembers/$count","keep",,"Get-MgGroupTeamPrimaryChannelAllMemberCount","Get-MgGroupTeamPrimaryChannelAllMemberCount" +"GET","/groups/{param}/team/primaryChannel/enabledApps","keep",,"Get-MgGroupTeamPrimaryChannelEnabledApp","Get-MgGroupTeamPrimaryChannelEnabledApp" +"GET","/groups/{param}/team/primaryChannel/enabledApps/{param}","keep",,"Get-MgGroupTeamPrimaryChannelEnabledApp","Get-MgGroupTeamPrimaryChannelEnabledApp" +"GET","/groups/{param}/team/primaryChannel/enabledApps/$count","keep",,"Get-MgGroupTeamPrimaryChannelEnabledAppCount","Get-MgGroupTeamPrimaryChannelEnabledAppCount" +"GET","/groups/{param}/team/primaryChannel/filesFolder","keep",,"Get-MgGroupTeamPrimaryChannelFileFolder","Get-MgGroupTeamPrimaryChannelFileFolder" +"GET","/groups/{param}/team/primaryChannel/members","suppress",,"Get-MgGroupTeamPrimaryChannelMember","no oracle row; 'Get-MgGroupTeamPrimaryChannelMember' ships from sibling family (see rename entries for this noun)" +"GET","/groups/{param}/team/primaryChannel/members/{param}","suppress",,"Get-MgGroupTeamPrimaryChannelMember","no oracle row; 'Get-MgGroupTeamPrimaryChannelMember' ships from sibling family (see rename entries for this noun)" +"GET","/groups/{param}/team/primaryChannel/members/$count","keep",,"Get-MgGroupTeamPrimaryChannelMemberCount","Get-MgGroupTeamPrimaryChannelMemberCount" +"GET","/groups/{param}/team/primaryChannel/messages","keep",,"Get-MgGroupTeamPrimaryChannelMessage","Get-MgGroupTeamPrimaryChannelMessage" +"GET","/groups/{param}/team/primaryChannel/messages/{param}","keep",,"Get-MgGroupTeamPrimaryChannelMessage","Get-MgGroupTeamPrimaryChannelMessage" +"GET","/groups/{param}/team/primaryChannel/messages/{param}/hostedContents","keep",,"Get-MgGroupTeamPrimaryChannelMessageHostedContent","Get-MgGroupTeamPrimaryChannelMessageHostedContent" +"GET","/groups/{param}/team/primaryChannel/messages/{param}/hostedContents/{param}","keep",,"Get-MgGroupTeamPrimaryChannelMessageHostedContent","Get-MgGroupTeamPrimaryChannelMessageHostedContent" +"GET","/groups/{param}/team/primaryChannel/messages/{param}/hostedContents/{param}/$value","suppress",,"Get-MgGroupTeamPrimaryChannelMessageHostedContentContent","no oracle row for GET /groups/{param}/team/primaryChannel/messages/{param}/hostedContents/{param}/$value and 'Get-MgGroupTeamPrimaryChannelMessageHostedContentContent' unshipped" +"GET","/groups/{param}/team/primaryChannel/messages/{param}/hostedContents/$count","keep",,"Get-MgGroupTeamPrimaryChannelMessageHostedContentCount","Get-MgGroupTeamPrimaryChannelMessageHostedContentCount" +"GET","/groups/{param}/team/primaryChannel/messages/{param}/replies","keep",,"Get-MgGroupTeamPrimaryChannelMessageReply","Get-MgGroupTeamPrimaryChannelMessageReply" +"GET","/groups/{param}/team/primaryChannel/messages/{param}/replies/{param}","keep",,"Get-MgGroupTeamPrimaryChannelMessageReply","Get-MgGroupTeamPrimaryChannelMessageReply" +"GET","/groups/{param}/team/primaryChannel/messages/{param}/replies/{param}/hostedContents","keep",,"Get-MgGroupTeamPrimaryChannelMessageReplyHostedContent","Get-MgGroupTeamPrimaryChannelMessageReplyHostedContent" +"GET","/groups/{param}/team/primaryChannel/messages/{param}/replies/{param}/hostedContents/{param}","keep",,"Get-MgGroupTeamPrimaryChannelMessageReplyHostedContent","Get-MgGroupTeamPrimaryChannelMessageReplyHostedContent" +"GET","/groups/{param}/team/primaryChannel/messages/{param}/replies/{param}/hostedContents/{param}/$value","suppress",,"Get-MgGroupTeamPrimaryChannelMessageReplyHostedContentContent","no oracle row for GET /groups/{param}/team/primaryChannel/messages/{param}/replies/{param}/hostedContents/{param}/$value and 'Get-MgGroupTeamPrimaryChannelMessageReplyHostedContentContent' unshipped" +"GET","/groups/{param}/team/primaryChannel/messages/{param}/replies/{param}/hostedContents/$count","keep",,"Get-MgGroupTeamPrimaryChannelMessageReplyHostedContentCount","Get-MgGroupTeamPrimaryChannelMessageReplyHostedContentCount" +"GET","/groups/{param}/team/primaryChannel/messages/{param}/replies/$count","keep",,"Get-MgGroupTeamPrimaryChannelMessageReplyCount","Get-MgGroupTeamPrimaryChannelMessageReplyCount" +"GET","/groups/{param}/team/primaryChannel/messages/{param}/replies/delta","keep",,"Get-MgGroupTeamPrimaryChannelMessageReplyDelta","Get-MgGroupTeamPrimaryChannelMessageReplyDelta" +"GET","/groups/{param}/team/primaryChannel/messages/$count","keep",,"Get-MgGroupTeamPrimaryChannelMessageCount","Get-MgGroupTeamPrimaryChannelMessageCount" +"GET","/groups/{param}/team/primaryChannel/messages/delta","keep",,"Get-MgGroupTeamPrimaryChannelMessageDelta","Get-MgGroupTeamPrimaryChannelMessageDelta" +"GET","/groups/{param}/team/primaryChannel/sharedWithTeams","keep",,"Get-MgGroupTeamPrimaryChannelSharedWithTeam","Get-MgGroupTeamPrimaryChannelSharedWithTeam" +"GET","/groups/{param}/team/primaryChannel/sharedWithTeams/{param}","keep",,"Get-MgGroupTeamPrimaryChannelSharedWithTeam","Get-MgGroupTeamPrimaryChannelSharedWithTeam" +"GET","/groups/{param}/team/primaryChannel/sharedWithTeams/{param}/allowedMembers","keep",,"Get-MgGroupTeamPrimaryChannelSharedWithTeamAllowedMember","Get-MgGroupTeamPrimaryChannelSharedWithTeamAllowedMember" +"GET","/groups/{param}/team/primaryChannel/sharedWithTeams/{param}/allowedMembers/{param}","keep",,"Get-MgGroupTeamPrimaryChannelSharedWithTeamAllowedMember","Get-MgGroupTeamPrimaryChannelSharedWithTeamAllowedMember" +"GET","/groups/{param}/team/primaryChannel/sharedWithTeams/{param}/allowedMembers/$count","keep",,"Get-MgGroupTeamPrimaryChannelSharedWithTeamAllowedMemberCount","Get-MgGroupTeamPrimaryChannelSharedWithTeamAllowedMemberCount" +"GET","/groups/{param}/team/primaryChannel/sharedWithTeams/$count","keep",,"Get-MgGroupTeamPrimaryChannelSharedWithTeamCount","Get-MgGroupTeamPrimaryChannelSharedWithTeamCount" +"GET","/groups/{param}/team/primaryChannel/tabs","keep",,"Get-MgGroupTeamPrimaryChannelTab","Get-MgGroupTeamPrimaryChannelTab" +"GET","/groups/{param}/team/primaryChannel/tabs/{param}","keep",,"Get-MgGroupTeamPrimaryChannelTab","Get-MgGroupTeamPrimaryChannelTab" +"GET","/groups/{param}/team/primaryChannel/tabs/{param}/teamsApp","keep",,"Get-MgGroupTeamPrimaryChannelTabTeamApp","Get-MgGroupTeamPrimaryChannelTabTeamApp" +"GET","/groups/{param}/team/primaryChannel/tabs/$count","keep",,"Get-MgGroupTeamPrimaryChannelTabCount","Get-MgGroupTeamPrimaryChannelTabCount" +"GET","/groups/{param}/team/schedule","keep",,"Get-MgGroupTeamSchedule","Get-MgGroupTeamSchedule" +"GET","/groups/{param}/team/schedule/dayNotes","keep",,"Get-MgGroupTeamScheduleDayNote","Get-MgGroupTeamScheduleDayNote" +"GET","/groups/{param}/team/schedule/dayNotes/{param}","keep",,"Get-MgGroupTeamScheduleDayNote","Get-MgGroupTeamScheduleDayNote" +"GET","/groups/{param}/team/schedule/dayNotes/$count","keep",,"Get-MgGroupTeamScheduleDayNoteCount","Get-MgGroupTeamScheduleDayNoteCount" +"GET","/groups/{param}/team/schedule/offerShiftRequests","keep",,"Get-MgGroupTeamScheduleOfferShiftRequest","Get-MgGroupTeamScheduleOfferShiftRequest" +"GET","/groups/{param}/team/schedule/offerShiftRequests/{param}","keep",,"Get-MgGroupTeamScheduleOfferShiftRequest","Get-MgGroupTeamScheduleOfferShiftRequest" +"GET","/groups/{param}/team/schedule/offerShiftRequests/$count","keep",,"Get-MgGroupTeamScheduleOfferShiftRequestCount","Get-MgGroupTeamScheduleOfferShiftRequestCount" +"GET","/groups/{param}/team/schedule/openShiftChangeRequests","keep",,"Get-MgGroupTeamScheduleOpenShiftChangeRequest","Get-MgGroupTeamScheduleOpenShiftChangeRequest" +"GET","/groups/{param}/team/schedule/openShiftChangeRequests/{param}","keep",,"Get-MgGroupTeamScheduleOpenShiftChangeRequest","Get-MgGroupTeamScheduleOpenShiftChangeRequest" +"GET","/groups/{param}/team/schedule/openShiftChangeRequests/$count","keep",,"Get-MgGroupTeamScheduleOpenShiftChangeRequestCount","Get-MgGroupTeamScheduleOpenShiftChangeRequestCount" +"GET","/groups/{param}/team/schedule/openShifts","keep",,"Get-MgGroupTeamScheduleOpenShift","Get-MgGroupTeamScheduleOpenShift" +"GET","/groups/{param}/team/schedule/openShifts/{param}","keep",,"Get-MgGroupTeamScheduleOpenShift","Get-MgGroupTeamScheduleOpenShift" +"GET","/groups/{param}/team/schedule/openShifts/$count","keep",,"Get-MgGroupTeamScheduleOpenShiftCount","Get-MgGroupTeamScheduleOpenShiftCount" +"GET","/groups/{param}/team/schedule/schedulingGroups","keep",,"Get-MgGroupTeamScheduleSchedulingGroup","Get-MgGroupTeamScheduleSchedulingGroup" +"GET","/groups/{param}/team/schedule/schedulingGroups/{param}","keep",,"Get-MgGroupTeamScheduleSchedulingGroup","Get-MgGroupTeamScheduleSchedulingGroup" +"GET","/groups/{param}/team/schedule/schedulingGroups/$count","keep",,"Get-MgGroupTeamScheduleSchedulingGroupCount","Get-MgGroupTeamScheduleSchedulingGroupCount" +"GET","/groups/{param}/team/schedule/shifts","keep",,"Get-MgGroupTeamScheduleShift","Get-MgGroupTeamScheduleShift" +"GET","/groups/{param}/team/schedule/shifts/{param}","keep",,"Get-MgGroupTeamScheduleShift","Get-MgGroupTeamScheduleShift" +"GET","/groups/{param}/team/schedule/shifts/$count","keep",,"Get-MgGroupTeamScheduleShiftCount","Get-MgGroupTeamScheduleShiftCount" +"GET","/groups/{param}/team/schedule/swapShiftsChangeRequests","keep",,"Get-MgGroupTeamScheduleSwapShiftChangeRequest","Get-MgGroupTeamScheduleSwapShiftChangeRequest" +"GET","/groups/{param}/team/schedule/swapShiftsChangeRequests/{param}","keep",,"Get-MgGroupTeamScheduleSwapShiftChangeRequest","Get-MgGroupTeamScheduleSwapShiftChangeRequest" +"GET","/groups/{param}/team/schedule/swapShiftsChangeRequests/$count","keep",,"Get-MgGroupTeamScheduleSwapShiftChangeRequestCount","Get-MgGroupTeamScheduleSwapShiftChangeRequestCount" +"GET","/groups/{param}/team/schedule/timeCards","keep",,"Get-MgGroupTeamScheduleTimeCard","Get-MgGroupTeamScheduleTimeCard" +"GET","/groups/{param}/team/schedule/timeCards/{param}","keep",,"Get-MgGroupTeamScheduleTimeCard","Get-MgGroupTeamScheduleTimeCard" +"GET","/groups/{param}/team/schedule/timeCards/$count","keep",,"Get-MgGroupTeamScheduleTimeCardCount","Get-MgGroupTeamScheduleTimeCardCount" +"GET","/groups/{param}/team/schedule/timeOffReasons","keep",,"Get-MgGroupTeamScheduleTimeOffReason","Get-MgGroupTeamScheduleTimeOffReason" +"GET","/groups/{param}/team/schedule/timeOffReasons/{param}","keep",,"Get-MgGroupTeamScheduleTimeOffReason","Get-MgGroupTeamScheduleTimeOffReason" +"GET","/groups/{param}/team/schedule/timeOffReasons/$count","keep",,"Get-MgGroupTeamScheduleTimeOffReasonCount","Get-MgGroupTeamScheduleTimeOffReasonCount" +"GET","/groups/{param}/team/schedule/timeOffRequests","keep",,"Get-MgGroupTeamScheduleTimeOffRequest","Get-MgGroupTeamScheduleTimeOffRequest" +"GET","/groups/{param}/team/schedule/timeOffRequests/{param}","keep",,"Get-MgGroupTeamScheduleTimeOffRequest","Get-MgGroupTeamScheduleTimeOffRequest" +"GET","/groups/{param}/team/schedule/timeOffRequests/$count","keep",,"Get-MgGroupTeamScheduleTimeOffRequestCount","Get-MgGroupTeamScheduleTimeOffRequestCount" +"GET","/groups/{param}/team/schedule/timesOff","keep",,"Get-MgGroupTeamScheduleTimeOff","Get-MgGroupTeamScheduleTimeOff" +"GET","/groups/{param}/team/schedule/timesOff/{param}","keep",,"Get-MgGroupTeamScheduleTimeOff","Get-MgGroupTeamScheduleTimeOff" +"GET","/groups/{param}/team/schedule/timesOff/$count","keep",,"Get-MgGroupTeamScheduleTimeOffCount","Get-MgGroupTeamScheduleTimeOffCount" +"GET","/groups/{param}/team/tags","keep",,"Get-MgGroupTeamTag","Get-MgGroupTeamTag" +"GET","/groups/{param}/team/tags/{param}","keep",,"Get-MgGroupTeamTag","Get-MgGroupTeamTag" +"GET","/groups/{param}/team/tags/{param}/members","keep",,"Get-MgGroupTeamTagMember","Get-MgGroupTeamTagMember" +"GET","/groups/{param}/team/tags/{param}/members/{param}","keep",,"Get-MgGroupTeamTagMember","Get-MgGroupTeamTagMember" +"GET","/groups/{param}/team/tags/{param}/members/$count","keep",,"Get-MgGroupTeamTagMemberCount","Get-MgGroupTeamTagMemberCount" +"GET","/groups/{param}/team/tags/$count","keep",,"Get-MgGroupTeamTagCount","Get-MgGroupTeamTagCount" +"GET","/groups/{param}/team/template","keep",,"Get-MgGroupTeamTemplate","Get-MgGroupTeamTemplate" +"GET","/groups/{param}/threads","keep",,"Get-MgGroupThread","Get-MgGroupThread" +"GET","/groups/{param}/threads/{param}","keep",,"Get-MgGroupThread","Get-MgGroupThread" +"GET","/groups/{param}/threads/{param}/posts","keep",,"Get-MgGroupThreadPost","Get-MgGroupThreadPost" +"GET","/groups/{param}/threads/{param}/posts/{param}","keep",,"Get-MgGroupThreadPost","Get-MgGroupThreadPost" +"GET","/groups/{param}/threads/{param}/posts/{param}/attachments","keep",,"Get-MgGroupThreadPostAttachment","Get-MgGroupThreadPostAttachment" +"GET","/groups/{param}/threads/{param}/posts/{param}/attachments/{param}","keep",,"Get-MgGroupThreadPostAttachment","Get-MgGroupThreadPostAttachment" +"GET","/groups/{param}/threads/{param}/posts/{param}/attachments/$count","keep",,"Get-MgGroupThreadPostAttachmentCount","Get-MgGroupThreadPostAttachmentCount" +"GET","/groups/{param}/threads/{param}/posts/{param}/extensions","keep",,"Get-MgGroupThreadPostExtension","Get-MgGroupThreadPostExtension" +"GET","/groups/{param}/threads/{param}/posts/{param}/extensions/{param}","keep",,"Get-MgGroupThreadPostExtension","Get-MgGroupThreadPostExtension" +"GET","/groups/{param}/threads/{param}/posts/{param}/extensions/$count","keep",,"Get-MgGroupThreadPostExtensionCount","Get-MgGroupThreadPostExtensionCount" +"GET","/groups/{param}/threads/{param}/posts/{param}/inReplyTo","suppress",,"Get-MgGroupThreadPostInReplyTo","no oracle row for GET /groups/{param}/threads/{param}/posts/{param}/inReplyTo and 'Get-MgGroupThreadPostInReplyTo' unshipped" +"GET","/groups/{param}/threads/{param}/posts/{param}/inReplyTo/attachments","keep",,"Get-MgGroupThreadPostInReplyToAttachment","Get-MgGroupThreadPostInReplyToAttachment" +"GET","/groups/{param}/threads/{param}/posts/{param}/inReplyTo/attachments/{param}","keep",,"Get-MgGroupThreadPostInReplyToAttachment","Get-MgGroupThreadPostInReplyToAttachment" +"GET","/groups/{param}/threads/{param}/posts/{param}/inReplyTo/attachments/$count","keep",,"Get-MgGroupThreadPostInReplyToAttachmentCount","Get-MgGroupThreadPostInReplyToAttachmentCount" +"GET","/groups/{param}/threads/{param}/posts/{param}/inReplyTo/extensions","keep",,"Get-MgGroupThreadPostInReplyToExtension","Get-MgGroupThreadPostInReplyToExtension" +"GET","/groups/{param}/threads/{param}/posts/{param}/inReplyTo/extensions/{param}","keep",,"Get-MgGroupThreadPostInReplyToExtension","Get-MgGroupThreadPostInReplyToExtension" +"GET","/groups/{param}/threads/{param}/posts/{param}/inReplyTo/extensions/$count","keep",,"Get-MgGroupThreadPostInReplyToExtensionCount","Get-MgGroupThreadPostInReplyToExtensionCount" +"GET","/groups/{param}/threads/{param}/posts/$count","keep",,"Get-MgGroupThreadPostCount","Get-MgGroupThreadPostCount" +"GET","/groups/{param}/threads/$count","keep",,"Get-MgGroupThreadCount","Get-MgGroupThreadCount" +"GET","/groups/{param}/transitiveMemberOf","keep",,"Get-MgGroupTransitiveMemberOf","Get-MgGroupTransitiveMemberOf" +"GET","/groups/{param}/transitiveMemberOf/{param}","keep",,"Get-MgGroupTransitiveMemberOf","Get-MgGroupTransitiveMemberOf" +"GET","/groups/{param}/transitiveMemberOf/$count","keep",,"Get-MgGroupTransitiveMemberOfCount","Get-MgGroupTransitiveMemberOfCount" +"GET","/groups/{param}/transitiveMembers","keep",,"Get-MgGroupTransitiveMember","Get-MgGroupTransitiveMember" +"GET","/groups/{param}/transitiveMembers/{param}","keep",,"Get-MgGroupTransitiveMember","Get-MgGroupTransitiveMember" +"GET","/groups/{param}/transitiveMembers/$count","keep",,"Get-MgGroupTransitiveMemberCount","Get-MgGroupTransitiveMemberCount" +"GET","/groups/$count","keep",,"Get-MgGroupCount","Get-MgGroupCount" +"GET","/groups/delta","keep",,"Get-MgGroupDelta","Get-MgGroupDelta" +"GET","/groupSettingTemplates","keep",,"Get-MgGroupSettingTemplate","Get-MgGroupSettingTemplateGroupSettingTemplate" +"GET","/groupSettingTemplates/{param}","keep",,"Get-MgGroupSettingTemplate","Get-MgGroupSettingTemplateGroupSettingTemplate" +"GET","/groupSettingTemplates/$count","keep",,"Get-MgGroupSettingTemplateCount","Get-MgGroupSettingTemplateCount" +"GET","/groupSettingTemplates/delta","keep",,"Get-MgGroupSettingTemplateDelta","Get-MgGroupSettingTemplateDelta" +"GET","/identity","suppress",,"Get-MgIdentity","no oracle row for GET /identity and 'Get-MgIdentity' unshipped" +"GET","/identity/apiConnectors","keep",,"Get-MgIdentityApiConnector","Get-MgIdentityApiConnector" +"GET","/identity/apiConnectors/{param}","keep",,"Get-MgIdentityApiConnector","Get-MgIdentityApiConnector" +"GET","/identity/apiConnectors/$count","keep",,"Get-MgIdentityApiConnectorCount","Get-MgIdentityApiConnectorCount" +"GET","/identity/authenticationEventListeners","keep",,"Get-MgIdentityAuthenticationEventListener","Get-MgIdentityAuthenticationEventListener" +"GET","/identity/authenticationEventListeners/{param}","keep",,"Get-MgIdentityAuthenticationEventListener","Get-MgIdentityAuthenticationEventListener" +"GET","/identity/authenticationEventListeners/$count","keep",,"Get-MgIdentityAuthenticationEventListenerCount","Get-MgIdentityAuthenticationEventListenerCount" +"GET","/identity/authenticationEventsFlows","keep",,"Get-MgIdentityAuthenticationEventFlow","Get-MgIdentityAuthenticationEventFlow" +"GET","/identity/authenticationEventsFlows/{param}","keep",,"Get-MgIdentityAuthenticationEventFlow","Get-MgIdentityAuthenticationEventFlow" +"GET","/identity/authenticationEventsFlows/{param}/conditions","keep",,"Get-MgIdentityAuthenticationEventFlowCondition","Get-MgIdentityAuthenticationEventFlowCondition" +"GET","/identity/authenticationEventsFlows/{param}/conditions/applications/includeApplications","rename","IdentityAuthenticationEventFlowIncludeApplication","Get-MgIdentityAuthenticationEventFlowConditionApplicationIncludeApplication","Get-MgIdentityAuthenticationEventFlowIncludeApplication" +"GET","/identity/authenticationEventsFlows/{param}/conditions/applications/includeApplications/{param}","rename","IdentityAuthenticationEventFlowIncludeApplication","Get-MgIdentityAuthenticationEventFlowConditionApplicationIncludeApplication","Get-MgIdentityAuthenticationEventFlowIncludeApplication" +"GET","/identity/authenticationEventsFlows/{param}/conditions/applications/includeApplications/$count","rename","IdentityAuthenticationEventFlowIncludeApplicationCount","Get-MgIdentityAuthenticationEventFlowConditionApplicationIncludeApplicationCount","Get-MgIdentityAuthenticationEventFlowIncludeApplicationCount" +"GET","/identity/authenticationEventsFlows/$count","keep",,"Get-MgIdentityAuthenticationEventFlowCount","Get-MgIdentityAuthenticationEventFlowCount" +"GET","/identity/b2xUserFlows","rename","IdentityB2XUserFlow","Get-MgIdentityB2xUserFlow","Get-MgIdentityB2XUserFlow" +"GET","/identity/b2xUserFlows/{param}","rename","IdentityB2XUserFlow","Get-MgIdentityB2xUserFlow","Get-MgIdentityB2XUserFlow" +"GET","/identity/b2xUserFlows/{param}/apiConnectorConfiguration","rename","IdentityB2XUserFlowApiConnectorConfiguration","Get-MgIdentityB2xUserFlowApiConnectorConfiguration","Get-MgIdentityB2XUserFlowApiConnectorConfiguration" +"GET","/identity/b2xUserFlows/{param}/apiConnectorConfiguration/postAttributeCollection","rename","IdentityB2XUserFlowPostAttributeCollection","Get-MgIdentityB2xUserFlowApiConnectorConfigurationPostAttributeCollection","Get-MgIdentityB2XUserFlowPostAttributeCollection" +"GET","/identity/b2xUserFlows/{param}/apiConnectorConfiguration/postAttributeCollection/$ref","rename","IdentityB2XUserFlowPostAttributeCollectionByRef","Get-MgIdentityB2xUserFlowApiConnectorConfigurationPostAttributeCollectionByRef","Get-MgIdentityB2XUserFlowPostAttributeCollectionByRef" +"GET","/identity/b2xUserFlows/{param}/apiConnectorConfiguration/postFederationSignup","rename","IdentityB2XUserFlowPostFederationSignup","Get-MgIdentityB2xUserFlowApiConnectorConfigurationPostFederationSignup","Get-MgIdentityB2XUserFlowPostFederationSignup" +"GET","/identity/b2xUserFlows/{param}/apiConnectorConfiguration/postFederationSignup/$ref","rename","IdentityB2XUserFlowPostFederationSignupByRef","Get-MgIdentityB2xUserFlowApiConnectorConfigurationPostFederationSignupByRef","Get-MgIdentityB2XUserFlowPostFederationSignupByRef" +"GET","/identity/b2xUserFlows/{param}/identityProviders","rename","IdentityB2XUserFlowIdentityProvider","Get-MgIdentityB2xUserFlowIdentityProvider","Get-MgIdentityB2XUserFlowIdentityProvider" +"GET","/identity/b2xUserFlows/{param}/identityProviders/{param}","rename","IdentityB2XUserFlowIdentityProvider","Get-MgIdentityB2xUserFlowIdentityProvider","Get-MgIdentityB2XUserFlowIdentityProvider" +"GET","/identity/b2xUserFlows/{param}/identityProviders/$count","rename","IdentityB2XUserFlowIdentityProviderCount","Get-MgIdentityB2xUserFlowIdentityProviderCount","Get-MgIdentityB2XUserFlowIdentityProviderCount" +"GET","/identity/b2xUserFlows/{param}/languages","rename","IdentityB2XUserFlowLanguage","Get-MgIdentityB2xUserFlowLanguage","Get-MgIdentityB2XUserFlowLanguage" +"GET","/identity/b2xUserFlows/{param}/languages/{param}","rename","IdentityB2XUserFlowLanguage","Get-MgIdentityB2xUserFlowLanguage","Get-MgIdentityB2XUserFlowLanguage" +"GET","/identity/b2xUserFlows/{param}/languages/{param}/defaultPages","rename","IdentityB2XUserFlowLanguageDefaultPage","Get-MgIdentityB2xUserFlowLanguageDefaultPage","Get-MgIdentityB2XUserFlowLanguageDefaultPage" +"GET","/identity/b2xUserFlows/{param}/languages/{param}/defaultPages/{param}","rename","IdentityB2XUserFlowLanguageDefaultPage","Get-MgIdentityB2xUserFlowLanguageDefaultPage","Get-MgIdentityB2XUserFlowLanguageDefaultPage" +"GET","/identity/b2xUserFlows/{param}/languages/{param}/defaultPages/{param}/$value","rename","IdentityB2XUserFlowLanguageDefaultPageContent","Get-MgIdentityB2xUserFlowLanguageDefaultPageContent","Get-MgIdentityB2XUserFlowLanguageDefaultPageContent" +"GET","/identity/b2xUserFlows/{param}/languages/{param}/defaultPages/$count","rename","IdentityB2XUserFlowLanguageDefaultPageCount","Get-MgIdentityB2xUserFlowLanguageDefaultPageCount","Get-MgIdentityB2XUserFlowLanguageDefaultPageCount" +"GET","/identity/b2xUserFlows/{param}/languages/{param}/overridesPages","rename","IdentityB2XUserFlowLanguageOverridePage","Get-MgIdentityB2xUserFlowLanguageOverridePage","Get-MgIdentityB2XUserFlowLanguageOverridePage" +"GET","/identity/b2xUserFlows/{param}/languages/{param}/overridesPages/{param}","rename","IdentityB2XUserFlowLanguageOverridePage","Get-MgIdentityB2xUserFlowLanguageOverridePage","Get-MgIdentityB2XUserFlowLanguageOverridePage" +"GET","/identity/b2xUserFlows/{param}/languages/{param}/overridesPages/{param}/$value","rename","IdentityB2XUserFlowLanguageOverridePageContent","Get-MgIdentityB2xUserFlowLanguageOverridePageContent","Get-MgIdentityB2XUserFlowLanguageOverridePageContent" +"GET","/identity/b2xUserFlows/{param}/languages/{param}/overridesPages/$count","rename","IdentityB2XUserFlowLanguageOverridePageCount","Get-MgIdentityB2xUserFlowLanguageOverridePageCount","Get-MgIdentityB2XUserFlowLanguageOverridePageCount" +"GET","/identity/b2xUserFlows/{param}/languages/$count","rename","IdentityB2XUserFlowLanguageCount","Get-MgIdentityB2xUserFlowLanguageCount","Get-MgIdentityB2XUserFlowLanguageCount" +"GET","/identity/b2xUserFlows/{param}/userAttributeAssignments","rename","IdentityB2XUserFlowUserAttributeAssignment","Get-MgIdentityB2xUserFlowUserAttributeAssignment","Get-MgIdentityB2XUserFlowUserAttributeAssignment" +"GET","/identity/b2xUserFlows/{param}/userAttributeAssignments/{param}","rename","IdentityB2XUserFlowUserAttributeAssignment","Get-MgIdentityB2xUserFlowUserAttributeAssignment","Get-MgIdentityB2XUserFlowUserAttributeAssignment" +"GET","/identity/b2xUserFlows/{param}/userAttributeAssignments/{param}/userAttribute","rename","IdentityB2XUserFlowUserAttributeAssignmentUserAttribute","Get-MgIdentityB2xUserFlowUserAttributeAssignmentUserAttribute","Get-MgIdentityB2XUserFlowUserAttributeAssignmentUserAttribute" +"GET","/identity/b2xUserFlows/{param}/userAttributeAssignments/$count","rename","IdentityB2XUserFlowUserAttributeAssignmentCount","Get-MgIdentityB2xUserFlowUserAttributeAssignmentCount","Get-MgIdentityB2XUserFlowUserAttributeAssignmentCount" +"GET","/identity/b2xUserFlows/{param}/userAttributeAssignments/getOrder","rename","IdentityB2XUserFlowUserAttributeAssignmentOrder","Get-MgIdentityB2xUserFlowUserAttributeAssignmentGetOrder","Get-MgIdentityB2XUserFlowUserAttributeAssignmentOrder" +"GET","/identity/b2xUserFlows/{param}/userFlowIdentityProviders","suppress",,"Get-MgIdentityB2xUserFlowUserFlowIdentityProvider","no oracle row for GET /identity/b2xUserFlows/{param}/userFlowIdentityProviders and 'Get-MgIdentityB2xUserFlowUserFlowIdentityProvider' unshipped" +"GET","/identity/b2xUserFlows/{param}/userFlowIdentityProviders/$count","suppress",,"Get-MgIdentityB2xUserFlowUserFlowIdentityProviderCount","no oracle row for GET /identity/b2xUserFlows/{param}/userFlowIdentityProviders/$count and 'Get-MgIdentityB2xUserFlowUserFlowIdentityProviderCount' unshipped" +"GET","/identity/b2xUserFlows/{param}/userFlowIdentityProviders/$ref","rename","IdentityB2XUserFlowIdentityProviderByRef","Get-MgIdentityB2xUserFlowUserFlowIdentityProviderByRef","Get-MgIdentityB2XUserFlowIdentityProviderByRef" +"GET","/identity/b2xUserFlows/$count","rename","IdentityB2XUserFlowCount","Get-MgIdentityB2xUserFlowCount","Get-MgIdentityB2XUserFlowCount" +"GET","/identity/conditionalAccess/authenticationContextClassReferences","keep",,"Get-MgIdentityConditionalAccessAuthenticationContextClassReference","Get-MgIdentityConditionalAccessAuthenticationContextClassReference" +"GET","/identity/conditionalAccess/authenticationContextClassReferences/{param}","keep",,"Get-MgIdentityConditionalAccessAuthenticationContextClassReference","Get-MgIdentityConditionalAccessAuthenticationContextClassReference" +"GET","/identity/conditionalAccess/authenticationContextClassReferences/$count","keep",,"Get-MgIdentityConditionalAccessAuthenticationContextClassReferenceCount","Get-MgIdentityConditionalAccessAuthenticationContextClassReferenceCount" +"GET","/identity/conditionalAccess/authenticationStrength","suppress",,"Get-MgIdentityConditionalAccessAuthenticationStrength","no oracle row for GET /identity/conditionalAccess/authenticationStrength and 'Get-MgIdentityConditionalAccessAuthenticationStrength' unshipped" +"GET","/identity/conditionalAccess/authenticationStrength/authenticationMethodModes","suppress",,"Get-MgIdentityConditionalAccessAuthenticationStrengthAuthenticationMethodMode","no oracle row for GET /identity/conditionalAccess/authenticationStrength/authenticationMethodModes and 'Get-MgIdentityConditionalAccessAuthenticationStrengthAuthenticationMethodMode' unshipped" +"GET","/identity/conditionalAccess/authenticationStrength/authenticationMethodModes/{param}","suppress",,"Get-MgIdentityConditionalAccessAuthenticationStrengthAuthenticationMethodMode","no oracle row for GET /identity/conditionalAccess/authenticationStrength/authenticationMethodModes/{param} and 'Get-MgIdentityConditionalAccessAuthenticationStrengthAuthenticationMethodMode' unshipped" +"GET","/identity/conditionalAccess/authenticationStrength/authenticationMethodModes/$count","suppress",,"Get-MgIdentityConditionalAccessAuthenticationStrengthAuthenticationMethodModeCount","no oracle row for GET /identity/conditionalAccess/authenticationStrength/authenticationMethodModes/$count and 'Get-MgIdentityConditionalAccessAuthenticationStrengthAuthenticationMethodModeCount' unshipped" +"GET","/identity/conditionalAccess/authenticationStrength/policies","suppress",,"Get-MgIdentityConditionalAccessAuthenticationStrengthPolicy","no oracle row for GET /identity/conditionalAccess/authenticationStrength/policies and 'Get-MgIdentityConditionalAccessAuthenticationStrengthPolicy' unshipped" +"GET","/identity/conditionalAccess/authenticationStrength/policies/{param}","suppress",,"Get-MgIdentityConditionalAccessAuthenticationStrengthPolicy","no oracle row for GET /identity/conditionalAccess/authenticationStrength/policies/{param} and 'Get-MgIdentityConditionalAccessAuthenticationStrengthPolicy' unshipped" +"GET","/identity/conditionalAccess/authenticationStrength/policies/{param}/combinationConfigurations","suppress",,"Get-MgIdentityConditionalAccessAuthenticationStrengthPolicyCombinationConfiguration","no oracle row for GET /identity/conditionalAccess/authenticationStrength/policies/{param}/combinationConfigurations and 'Get-MgIdentityConditionalAccessAuthenticationStrengthPolicyCombinationConfiguration' unshipped" +"GET","/identity/conditionalAccess/authenticationStrength/policies/{param}/combinationConfigurations/{param}","suppress",,"Get-MgIdentityConditionalAccessAuthenticationStrengthPolicyCombinationConfiguration","no oracle row for GET /identity/conditionalAccess/authenticationStrength/policies/{param}/combinationConfigurations/{param} and 'Get-MgIdentityConditionalAccessAuthenticationStrengthPolicyCombinationConfiguration' unshipped" +"GET","/identity/conditionalAccess/authenticationStrength/policies/{param}/combinationConfigurations/$count","suppress",,"Get-MgIdentityConditionalAccessAuthenticationStrengthPolicyCombinationConfigurationCount","no oracle row for GET /identity/conditionalAccess/authenticationStrength/policies/{param}/combinationConfigurations/$count and 'Get-MgIdentityConditionalAccessAuthenticationStrengthPolicyCombinationConfigurationCount' unshipped" +"GET","/identity/conditionalAccess/authenticationStrength/policies/{param}/usage","rename","UsageIdentityConditionalAccessAuthenticationStrengthPolicy","Get-MgIdentityConditionalAccessAuthenticationStrengthPolicyUsage","Invoke-MgUsageIdentityConditionalAccessAuthenticationStrengthPolicy" +"GET","/identity/conditionalAccess/authenticationStrength/policies/$count","suppress",,"Get-MgIdentityConditionalAccessAuthenticationStrengthPolicyCount","no oracle row for GET /identity/conditionalAccess/authenticationStrength/policies/$count and 'Get-MgIdentityConditionalAccessAuthenticationStrengthPolicyCount' unshipped" +"GET","/identity/conditionalAccess/deletedItems","keep",,"Get-MgIdentityConditionalAccessDeletedItem","Get-MgIdentityConditionalAccessDeletedItem" +"GET","/identity/conditionalAccess/deletedItems/namedLocations","keep",,"Get-MgIdentityConditionalAccessDeletedItemNamedLocation","Get-MgIdentityConditionalAccessDeletedItemNamedLocation" +"GET","/identity/conditionalAccess/deletedItems/namedLocations/{param}","keep",,"Get-MgIdentityConditionalAccessDeletedItemNamedLocation","Get-MgIdentityConditionalAccessDeletedItemNamedLocation" +"GET","/identity/conditionalAccess/deletedItems/namedLocations/$count","keep",,"Get-MgIdentityConditionalAccessDeletedItemNamedLocationCount","Get-MgIdentityConditionalAccessDeletedItemNamedLocationCount" +"GET","/identity/conditionalAccess/deletedItems/policies","keep",,"Get-MgIdentityConditionalAccessDeletedItemPolicy","Get-MgIdentityConditionalAccessDeletedItemPolicy" +"GET","/identity/conditionalAccess/deletedItems/policies/{param}","keep",,"Get-MgIdentityConditionalAccessDeletedItemPolicy","Get-MgIdentityConditionalAccessDeletedItemPolicy" +"GET","/identity/conditionalAccess/deletedItems/policies/$count","keep",,"Get-MgIdentityConditionalAccessDeletedItemPolicyCount","Get-MgIdentityConditionalAccessDeletedItemPolicyCount" +"GET","/identity/conditionalAccess/namedLocations","keep",,"Get-MgIdentityConditionalAccessNamedLocation","Get-MgIdentityConditionalAccessNamedLocation" +"GET","/identity/conditionalAccess/namedLocations/{param}","keep",,"Get-MgIdentityConditionalAccessNamedLocation","Get-MgIdentityConditionalAccessNamedLocation" +"GET","/identity/conditionalAccess/namedLocations/$count","keep",,"Get-MgIdentityConditionalAccessNamedLocationCount","Get-MgIdentityConditionalAccessNamedLocationCount" +"GET","/identity/conditionalAccess/policies","keep",,"Get-MgIdentityConditionalAccessPolicy","Get-MgIdentityConditionalAccessPolicy" +"GET","/identity/conditionalAccess/policies/{param}","keep",,"Get-MgIdentityConditionalAccessPolicy","Get-MgIdentityConditionalAccessPolicy" +"GET","/identity/conditionalAccess/policies/$count","keep",,"Get-MgIdentityConditionalAccessPolicyCount","Get-MgIdentityConditionalAccessPolicyCount" +"GET","/identity/conditionalAccess/templates","keep",,"Get-MgIdentityConditionalAccessTemplate","Get-MgIdentityConditionalAccessTemplate" +"GET","/identity/conditionalAccess/templates/{param}","keep",,"Get-MgIdentityConditionalAccessTemplate","Get-MgIdentityConditionalAccessTemplate" +"GET","/identity/conditionalAccess/templates/$count","keep",,"Get-MgIdentityConditionalAccessTemplateCount","Get-MgIdentityConditionalAccessTemplateCount" +"GET","/identity/customAuthenticationExtensions","keep",,"Get-MgIdentityCustomAuthenticationExtension","Get-MgIdentityCustomAuthenticationExtension" +"GET","/identity/customAuthenticationExtensions/{param}","keep",,"Get-MgIdentityCustomAuthenticationExtension","Get-MgIdentityCustomAuthenticationExtension" +"GET","/identity/customAuthenticationExtensions/$count","keep",,"Get-MgIdentityCustomAuthenticationExtensionCount","Get-MgIdentityCustomAuthenticationExtensionCount" +"GET","/identity/identityProviders","keep",,"Get-MgIdentityProvider","Get-MgIdentityProvider" +"GET","/identity/identityProviders/{param}","keep",,"Get-MgIdentityProvider","Get-MgIdentityProvider" +"GET","/identity/identityProviders/$count","keep",,"Get-MgIdentityProviderCount","Get-MgIdentityProviderCount" +"GET","/identity/identityProviders/availableProviderTypes","rename","AvailableIdentityProviderType","Get-MgIdentityProviderAvailableProviderTypes","Invoke-MgAvailableIdentityProviderType" +"GET","/identity/riskPrevention","keep",,"Get-MgIdentityRiskPrevention","Get-MgIdentityRiskPrevention" +"GET","/identity/riskPrevention/fraudProtectionProviders","keep",,"Get-MgIdentityRiskPreventionFraudProtectionProvider","Get-MgIdentityRiskPreventionFraudProtectionProvider" +"GET","/identity/riskPrevention/fraudProtectionProviders/{param}","keep",,"Get-MgIdentityRiskPreventionFraudProtectionProvider","Get-MgIdentityRiskPreventionFraudProtectionProvider" +"GET","/identity/riskPrevention/fraudProtectionProviders/$count","keep",,"Get-MgIdentityRiskPreventionFraudProtectionProviderCount","Get-MgIdentityRiskPreventionFraudProtectionProviderCount" +"GET","/identity/riskPrevention/webApplicationFirewallProviders","keep",,"Get-MgIdentityRiskPreventionWebApplicationFirewallProvider","Get-MgIdentityRiskPreventionWebApplicationFirewallProvider" +"GET","/identity/riskPrevention/webApplicationFirewallProviders/{param}","keep",,"Get-MgIdentityRiskPreventionWebApplicationFirewallProvider","Get-MgIdentityRiskPreventionWebApplicationFirewallProvider" +"GET","/identity/riskPrevention/webApplicationFirewallProviders/$count","keep",,"Get-MgIdentityRiskPreventionWebApplicationFirewallProviderCount","Get-MgIdentityRiskPreventionWebApplicationFirewallProviderCount" +"GET","/identity/riskPrevention/webApplicationFirewallVerifications","keep",,"Get-MgIdentityRiskPreventionWebApplicationFirewallVerification","Get-MgIdentityRiskPreventionWebApplicationFirewallVerification" +"GET","/identity/riskPrevention/webApplicationFirewallVerifications/{param}","keep",,"Get-MgIdentityRiskPreventionWebApplicationFirewallVerification","Get-MgIdentityRiskPreventionWebApplicationFirewallVerification" +"GET","/identity/riskPrevention/webApplicationFirewallVerifications/{param}/provider","keep",,"Get-MgIdentityRiskPreventionWebApplicationFirewallVerificationProvider","Get-MgIdentityRiskPreventionWebApplicationFirewallVerificationProvider" +"GET","/identity/riskPrevention/webApplicationFirewallVerifications/$count","keep",,"Get-MgIdentityRiskPreventionWebApplicationFirewallVerificationCount","Get-MgIdentityRiskPreventionWebApplicationFirewallVerificationCount" +"GET","/identity/userFlowAttributes","keep",,"Get-MgIdentityUserFlowAttribute","Get-MgIdentityUserFlowAttribute" +"GET","/identity/userFlowAttributes/{param}","keep",,"Get-MgIdentityUserFlowAttribute","Get-MgIdentityUserFlowAttribute" +"GET","/identity/userFlowAttributes/$count","keep",,"Get-MgIdentityUserFlowAttributeCount","Get-MgIdentityUserFlowAttributeCount" +"GET","/identity/verifiedId","keep",,"Get-MgIdentityVerifiedId","Get-MgIdentityVerifiedId" +"GET","/identity/verifiedId/profiles","keep",,"Get-MgIdentityVerifiedIdProfile","Get-MgIdentityVerifiedIdProfile" +"GET","/identity/verifiedId/profiles/{param}","keep",,"Get-MgIdentityVerifiedIdProfile","Get-MgIdentityVerifiedIdProfile" +"GET","/identity/verifiedId/profiles/$count","keep",,"Get-MgIdentityVerifiedIdProfileCount","Get-MgIdentityVerifiedIdProfileCount" +"GET","/identityGovernance","suppress",,"Get-MgIdentityGovernance","no oracle row for GET /identityGovernance and 'Get-MgIdentityGovernance' unshipped" +"GET","/identityGovernance/accessReviews","suppress",,"Get-MgIdentityGovernanceAccessReview","no oracle row for GET /identityGovernance/accessReviews and 'Get-MgIdentityGovernanceAccessReview' unshipped" +"GET","/identityGovernance/accessReviews/definitions","keep",,"Get-MgIdentityGovernanceAccessReviewDefinition","Get-MgIdentityGovernanceAccessReviewDefinition" +"GET","/identityGovernance/accessReviews/definitions/{param}","keep",,"Get-MgIdentityGovernanceAccessReviewDefinition","Get-MgIdentityGovernanceAccessReviewDefinition" +"GET","/identityGovernance/accessReviews/definitions/{param}/instances","keep",,"Get-MgIdentityGovernanceAccessReviewDefinitionInstance","Get-MgIdentityGovernanceAccessReviewDefinitionInstance" +"GET","/identityGovernance/accessReviews/definitions/{param}/instances/{param}","keep",,"Get-MgIdentityGovernanceAccessReviewDefinitionInstance","Get-MgIdentityGovernanceAccessReviewDefinitionInstance" +"GET","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/contactedReviewers","keep",,"Get-MgIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewer","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewer" +"GET","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/contactedReviewers/{param}","keep",,"Get-MgIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewer","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewer" +"GET","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/contactedReviewers/$count","keep",,"Get-MgIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewerCount","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewerCount" +"GET","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/decisions","keep",,"Get-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision" +"GET","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/decisions/{param}","keep",,"Get-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision" +"GET","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/decisions/{param}/insights","keep",,"Get-MgIdentityGovernanceAccessReviewDefinitionInstanceDecisionInsight","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceDecisionInsight" +"GET","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/decisions/{param}/insights/{param}","keep",,"Get-MgIdentityGovernanceAccessReviewDefinitionInstanceDecisionInsight","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceDecisionInsight" +"GET","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/decisions/{param}/insights/$count","keep",,"Get-MgIdentityGovernanceAccessReviewDefinitionInstanceDecisionInsightCount","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceDecisionInsightCount" +"GET","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/decisions/$count","keep",,"Get-MgIdentityGovernanceAccessReviewDefinitionInstanceDecisionCount","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceDecisionCount" +"GET","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/stages","keep",,"Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStage","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStage" +"GET","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/stages/{param}","keep",,"Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStage","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStage" +"GET","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/stages/{param}/decisions","keep",,"Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision" +"GET","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/stages/{param}/decisions/{param}","keep",,"Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision" +"GET","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/stages/{param}/decisions/{param}/insights","keep",,"Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionInsight","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionInsight" +"GET","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/stages/{param}/decisions/{param}/insights/{param}","keep",,"Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionInsight","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionInsight" +"GET","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/stages/{param}/decisions/{param}/insights/$count","suppress",,"Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionInsightCount","no oracle row for GET /identityGovernance/accessReviews/definitions/{param}/instances/{param}/stages/{param}/decisions/{param}/insights/$count and 'Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionInsightCount' unshipped" +"GET","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/stages/{param}/decisions/$count","keep",,"Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionCount","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionCount" +"GET","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/stages/$count","keep",,"Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageCount","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageCount" +"GET","/identityGovernance/accessReviews/definitions/{param}/instances/$count","keep",,"Get-MgIdentityGovernanceAccessReviewDefinitionInstanceCount","Get-MgIdentityGovernanceAccessReviewDefinitionInstanceCount" +"GET","/identityGovernance/accessReviews/definitions/$count","keep",,"Get-MgIdentityGovernanceAccessReviewDefinitionCount","Get-MgIdentityGovernanceAccessReviewDefinitionCount" +"GET","/identityGovernance/accessReviews/historyDefinitions","keep",,"Get-MgIdentityGovernanceAccessReviewHistoryDefinition","Get-MgIdentityGovernanceAccessReviewHistoryDefinition" +"GET","/identityGovernance/accessReviews/historyDefinitions/{param}","keep",,"Get-MgIdentityGovernanceAccessReviewHistoryDefinition","Get-MgIdentityGovernanceAccessReviewHistoryDefinition" +"GET","/identityGovernance/accessReviews/historyDefinitions/{param}/instances","keep",,"Get-MgIdentityGovernanceAccessReviewHistoryDefinitionInstance","Get-MgIdentityGovernanceAccessReviewHistoryDefinitionInstance" +"GET","/identityGovernance/accessReviews/historyDefinitions/{param}/instances/{param}","keep",,"Get-MgIdentityGovernanceAccessReviewHistoryDefinitionInstance","Get-MgIdentityGovernanceAccessReviewHistoryDefinitionInstance" +"GET","/identityGovernance/accessReviews/historyDefinitions/{param}/instances/$count","keep",,"Get-MgIdentityGovernanceAccessReviewHistoryDefinitionInstanceCount","Get-MgIdentityGovernanceAccessReviewHistoryDefinitionInstanceCount" +"GET","/identityGovernance/accessReviews/historyDefinitions/$count","keep",,"Get-MgIdentityGovernanceAccessReviewHistoryDefinitionCount","Get-MgIdentityGovernanceAccessReviewHistoryDefinitionCount" +"GET","/identityGovernance/appConsent","suppress",,"Get-MgIdentityGovernanceAppConsent","no oracle row for GET /identityGovernance/appConsent and 'Get-MgIdentityGovernanceAppConsent' unshipped" +"GET","/identityGovernance/appConsent/appConsentRequests","rename","IdentityGovernanceAppConsentRequest","Get-MgIdentityGovernanceAppConsentAppConsentRequest","Get-MgIdentityGovernanceAppConsentRequest" +"GET","/identityGovernance/appConsent/appConsentRequests/{param}","rename","IdentityGovernanceAppConsentRequest","Get-MgIdentityGovernanceAppConsentAppConsentRequest","Get-MgIdentityGovernanceAppConsentRequest" +"GET","/identityGovernance/appConsent/appConsentRequests/{param}/userConsentRequests","rename","IdentityGovernanceAppConsentRequestUserConsentRequest","Get-MgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequest","Get-MgIdentityGovernanceAppConsentRequestUserConsentRequest" +"GET","/identityGovernance/appConsent/appConsentRequests/{param}/userConsentRequests/{param}","rename","IdentityGovernanceAppConsentRequestUserConsentRequest","Get-MgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequest","Get-MgIdentityGovernanceAppConsentRequestUserConsentRequest" +"GET","/identityGovernance/appConsent/appConsentRequests/{param}/userConsentRequests/{param}/approval","rename","IdentityGovernanceAppConsentRequestUserConsentRequestApproval","Get-MgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequestApproval","Get-MgIdentityGovernanceAppConsentRequestUserConsentRequestApproval" +"GET","/identityGovernance/appConsent/appConsentRequests/{param}/userConsentRequests/{param}/approval/stages","rename","IdentityGovernanceAppConsentRequestUserConsentRequestApprovalStage","Get-MgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequestApprovalStage","Get-MgIdentityGovernanceAppConsentRequestUserConsentRequestApprovalStage" +"GET","/identityGovernance/appConsent/appConsentRequests/{param}/userConsentRequests/{param}/approval/stages/{param}","rename","IdentityGovernanceAppConsentRequestUserConsentRequestApprovalStage","Get-MgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequestApprovalStage","Get-MgIdentityGovernanceAppConsentRequestUserConsentRequestApprovalStage" +"GET","/identityGovernance/appConsent/appConsentRequests/{param}/userConsentRequests/{param}/approval/stages/$count","rename","IdentityGovernanceAppConsentRequestUserConsentRequestApprovalStageCount","Get-MgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequestApprovalStageCount","Get-MgIdentityGovernanceAppConsentRequestUserConsentRequestApprovalStageCount" +"GET","/identityGovernance/appConsent/appConsentRequests/{param}/userConsentRequests/$count","rename","IdentityGovernanceAppConsentRequestUserConsentRequestCount","Get-MgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequestCount","Get-MgIdentityGovernanceAppConsentRequestUserConsentRequestCount" +"GET","/identityGovernance/appConsent/appConsentRequests/$count","rename","IdentityGovernanceAppConsentRequestCount","Get-MgIdentityGovernanceAppConsentAppConsentRequestCount","Get-MgIdentityGovernanceAppConsentRequestCount" +"GET","/identityGovernance/entitlementManagement","suppress",,"Get-MgIdentityGovernanceEntitlementManagement","no oracle row for GET /identityGovernance/entitlementManagement and 'Get-MgIdentityGovernanceEntitlementManagement' unshipped" +"GET","/identityGovernance/entitlementManagement/accessPackageAssignmentApprovals","suppress",,"Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentApproval","no oracle row for GET /identityGovernance/entitlementManagement/accessPackageAssignmentApprovals and 'Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentApproval' unshipped" +"GET","/identityGovernance/entitlementManagement/accessPackageAssignmentApprovals/{param}","suppress",,"Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentApproval","no oracle row for GET /identityGovernance/entitlementManagement/accessPackageAssignmentApprovals/{param} and 'Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentApproval' unshipped" +"GET","/identityGovernance/entitlementManagement/accessPackageAssignmentApprovals/{param}/stages","rename","EntitlementManagementAccessPackageAssignmentApprovalStage","Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentApprovalStage","Get-MgEntitlementManagementAccessPackageAssignmentApprovalStage" +"GET","/identityGovernance/entitlementManagement/accessPackageAssignmentApprovals/{param}/stages/{param}","rename","EntitlementManagementAccessPackageAssignmentApprovalStage","Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentApprovalStage","Get-MgEntitlementManagementAccessPackageAssignmentApprovalStage" +"GET","/identityGovernance/entitlementManagement/accessPackageAssignmentApprovals/{param}/stages/$count","rename","EntitlementManagementAccessPackageAssignmentApprovalStageCount","Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentApprovalStageCount","Get-MgEntitlementManagementAccessPackageAssignmentApprovalStageCount" +"GET","/identityGovernance/entitlementManagement/accessPackageAssignmentApprovals/$count","rename","EntitlementManagementAccessPackageAssignmentApprovalCount","Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentApprovalCount","Get-MgEntitlementManagementAccessPackageAssignmentApprovalCount" +"GET","/identityGovernance/entitlementManagement/accessPackages","rename","EntitlementManagementAccessPackage","Get-MgIdentityGovernanceEntitlementManagementAccessPackage","Get-MgEntitlementManagementAccessPackage" +"GET","/identityGovernance/entitlementManagement/accessPackages/{param}","rename","EntitlementManagementAccessPackage","Get-MgIdentityGovernanceEntitlementManagementAccessPackage","Get-MgEntitlementManagementAccessPackage" +"GET","/identityGovernance/entitlementManagement/accessPackages/{param}/accessPackagesIncompatibleWith","rename","EntitlementManagementAccessPackageIncompatibleWith","Get-MgIdentityGovernanceEntitlementManagementAccessPackageAccessPackageIncompatibleWith","Get-MgEntitlementManagementAccessPackageIncompatibleWith" +"GET","/identityGovernance/entitlementManagement/accessPackages/{param}/accessPackagesIncompatibleWith/{param}","rename","EntitlementManagementAccessPackageIncompatibleWith","Get-MgIdentityGovernanceEntitlementManagementAccessPackageAccessPackageIncompatibleWith","Get-MgEntitlementManagementAccessPackageIncompatibleWith" +"GET","/identityGovernance/entitlementManagement/accessPackages/{param}/accessPackagesIncompatibleWith/$count","suppress",,"Get-MgIdentityGovernanceEntitlementManagementAccessPackageAccessPackageIncompatibleWithCount","no oracle row for GET /identityGovernance/entitlementManagement/accessPackages/{param}/accessPackagesIncompatibleWith/$count and 'Get-MgIdentityGovernanceEntitlementManagementAccessPackageAccessPackageIncompatibleWithCount' unshipped" +"GET","/identityGovernance/entitlementManagement/accessPackages/{param}/assignmentPolicies","rename","EntitlementManagementAccessPackageAssignmentPolicy","Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicy","Get-MgEntitlementManagementAccessPackageAssignmentPolicy" +"GET","/identityGovernance/entitlementManagement/accessPackages/{param}/assignmentPolicies/{param}","rename","EntitlementManagementAccessPackageAssignmentPolicy","Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicy","Get-MgEntitlementManagementAccessPackageAssignmentPolicy" +"GET","/identityGovernance/entitlementManagement/accessPackages/{param}/assignmentPolicies/{param}/accessPackage","suppress",,"Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyAccessPackage","no oracle row for GET /identityGovernance/entitlementManagement/accessPackages/{param}/assignmentPolicies/{param}/accessPackage and 'Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyAccessPackage' unshipped" +"GET","/identityGovernance/entitlementManagement/accessPackages/{param}/assignmentPolicies/{param}/catalog","suppress",,"Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyCatalog","no oracle row for GET /identityGovernance/entitlementManagement/accessPackages/{param}/assignmentPolicies/{param}/catalog and 'Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyCatalog' unshipped" +"GET","/identityGovernance/entitlementManagement/accessPackages/{param}/assignmentPolicies/{param}/customExtensionStageSettings","suppress",,"Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyCustomExtensionStageSetting","no oracle row for GET /identityGovernance/entitlementManagement/accessPackages/{param}/assignmentPolicies/{param}/customExtensionStageSettings and 'Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyCustomExtensionStageSetting' unshipped" +"GET","/identityGovernance/entitlementManagement/accessPackages/{param}/assignmentPolicies/{param}/customExtensionStageSettings/{param}","suppress",,"Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyCustomExtensionStageSetting","no oracle row for GET /identityGovernance/entitlementManagement/accessPackages/{param}/assignmentPolicies/{param}/customExtensionStageSettings/{param} and 'Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyCustomExtensionStageSetting' unshipped" +"GET","/identityGovernance/entitlementManagement/accessPackages/{param}/assignmentPolicies/{param}/customExtensionStageSettings/{param}/customExtension","suppress",,"Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyCustomExtensionStageSettingCustomExtension","no oracle row for GET /identityGovernance/entitlementManagement/accessPackages/{param}/assignmentPolicies/{param}/customExtensionStageSettings/{param}/customExtension and 'Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyCustomExtensionStageSettingCustomExtension' unshipped" +"GET","/identityGovernance/entitlementManagement/accessPackages/{param}/assignmentPolicies/{param}/customExtensionStageSettings/$count","suppress",,"Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyCustomExtensionStageSettingCount","no oracle row for GET /identityGovernance/entitlementManagement/accessPackages/{param}/assignmentPolicies/{param}/customExtensionStageSettings/$count and 'Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyCustomExtensionStageSettingCount' unshipped" +"GET","/identityGovernance/entitlementManagement/accessPackages/{param}/assignmentPolicies/{param}/questions","suppress",,"Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyQuestion","no oracle row for GET /identityGovernance/entitlementManagement/accessPackages/{param}/assignmentPolicies/{param}/questions and 'Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyQuestion' unshipped" +"GET","/identityGovernance/entitlementManagement/accessPackages/{param}/assignmentPolicies/{param}/questions/{param}","suppress",,"Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyQuestion","no oracle row for GET /identityGovernance/entitlementManagement/accessPackages/{param}/assignmentPolicies/{param}/questions/{param} and 'Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyQuestion' unshipped" +"GET","/identityGovernance/entitlementManagement/accessPackages/{param}/assignmentPolicies/{param}/questions/$count","suppress",,"Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyQuestionCount","no oracle row for GET /identityGovernance/entitlementManagement/accessPackages/{param}/assignmentPolicies/{param}/questions/$count and 'Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyQuestionCount' unshipped" +"GET","/identityGovernance/entitlementManagement/accessPackages/{param}/assignmentPolicies/$count","suppress",,"Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyCount","no oracle row for GET /identityGovernance/entitlementManagement/accessPackages/{param}/assignmentPolicies/$count and 'Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyCount' unshipped" +"GET","/identityGovernance/entitlementManagement/accessPackages/{param}/catalog","rename","EntitlementManagementAccessPackageCatalog","Get-MgIdentityGovernanceEntitlementManagementAccessPackageCatalog","Get-MgEntitlementManagementAccessPackageCatalog" +"GET","/identityGovernance/entitlementManagement/accessPackages/{param}/incompatibleAccessPackages","rename","EntitlementManagementAccessPackageIncompatibleAccessPackage","Get-MgIdentityGovernanceEntitlementManagementAccessPackageIncompatibleAccessPackage","Get-MgEntitlementManagementAccessPackageIncompatibleAccessPackage" +"GET","/identityGovernance/entitlementManagement/accessPackages/{param}/incompatibleAccessPackages/$count","suppress",,"Get-MgIdentityGovernanceEntitlementManagementAccessPackageIncompatibleAccessPackageCount","no oracle row for GET /identityGovernance/entitlementManagement/accessPackages/{param}/incompatibleAccessPackages/$count and 'Get-MgIdentityGovernanceEntitlementManagementAccessPackageIncompatibleAccessPackageCount' unshipped" +"GET","/identityGovernance/entitlementManagement/accessPackages/{param}/incompatibleAccessPackages/$ref","rename","EntitlementManagementAccessPackageIncompatibleAccessPackageByRef","Get-MgIdentityGovernanceEntitlementManagementAccessPackageIncompatibleAccessPackageByRef","Get-MgEntitlementManagementAccessPackageIncompatibleAccessPackageByRef" +"GET","/identityGovernance/entitlementManagement/accessPackages/{param}/incompatibleGroups","rename","EntitlementManagementAccessPackageIncompatibleGroup","Get-MgIdentityGovernanceEntitlementManagementAccessPackageIncompatibleGroup","Get-MgEntitlementManagementAccessPackageIncompatibleGroup" +"GET","/identityGovernance/entitlementManagement/accessPackages/{param}/incompatibleGroups/{param}/serviceProvisioningErrors","suppress",,"Get-MgIdentityGovernanceEntitlementManagementAccessPackageIncompatibleGroupServiceProvisioningError","no oracle row for GET /identityGovernance/entitlementManagement/accessPackages/{param}/incompatibleGroups/{param}/serviceProvisioningErrors and 'Get-MgIdentityGovernanceEntitlementManagementAccessPackageIncompatibleGroupServiceProvisioningError' unshipped" +"GET","/identityGovernance/entitlementManagement/accessPackages/{param}/incompatibleGroups/{param}/serviceProvisioningErrors/$count","suppress",,"Get-MgIdentityGovernanceEntitlementManagementAccessPackageIncompatibleGroupServiceProvisioningErrorCount","no oracle row for GET /identityGovernance/entitlementManagement/accessPackages/{param}/incompatibleGroups/{param}/serviceProvisioningErrors/$count and 'Get-MgIdentityGovernanceEntitlementManagementAccessPackageIncompatibleGroupServiceProvisioningErrorCount' unshipped" +"GET","/identityGovernance/entitlementManagement/accessPackages/{param}/incompatibleGroups/$count","suppress",,"Get-MgIdentityGovernanceEntitlementManagementAccessPackageIncompatibleGroupCount","no oracle row for GET /identityGovernance/entitlementManagement/accessPackages/{param}/incompatibleGroups/$count and 'Get-MgIdentityGovernanceEntitlementManagementAccessPackageIncompatibleGroupCount' unshipped" +"GET","/identityGovernance/entitlementManagement/accessPackages/{param}/incompatibleGroups/$ref","rename","EntitlementManagementAccessPackageIncompatibleGroupByRef","Get-MgIdentityGovernanceEntitlementManagementAccessPackageIncompatibleGroupByRef","Get-MgEntitlementManagementAccessPackageIncompatibleGroupByRef" +"GET","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes","suppress",,"Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScope","no oracle row for GET /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes and 'Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScope' unshipped" +"GET","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}","suppress",,"Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScope","no oracle row for GET /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param} and 'Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScope' unshipped" +"GET","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role","suppress",,"Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRole","no oracle row for GET /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role and 'Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRole' unshipped" +"GET","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource","suppress",,"Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResource","no oracle row for GET /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource and 'Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResource' unshipped" +"GET","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/environment","suppress",,"Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceEnvironment","no oracle row for GET /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/environment and 'Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceEnvironment' unshipped" +"GET","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/roles","suppress",,"Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceRole","no oracle row for GET /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/roles and 'Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceRole' unshipped" +"GET","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/roles/{param}","suppress",,"Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceRole","no oracle row for GET /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/roles/{param} and 'Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceRole' unshipped" +"GET","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/roles/$count","suppress",,"Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceRoleCount","no oracle row for GET /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/roles/$count and 'Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceRoleCount' unshipped" +"GET","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/scopes","suppress",,"Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScope","no oracle row for GET /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/scopes and 'Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScope' unshipped" +"GET","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/scopes/{param}","suppress",,"Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScope","no oracle row for GET /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/scopes/{param} and 'Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScope' unshipped" +"GET","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/scopes/{param}/resource","suppress",,"Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScopeResource","no oracle row for GET /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/scopes/{param}/resource and 'Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScopeResource' unshipped" +"GET","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/scopes/{param}/resource/environment","suppress",,"Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScopeResourceEnvironment","no oracle row for GET /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/scopes/{param}/resource/environment and 'Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScopeResourceEnvironment' unshipped" +"GET","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/scopes/{param}/resource/roles","suppress",,"Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScopeResourceRole","no oracle row for GET /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/scopes/{param}/resource/roles and 'Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScopeResourceRole' unshipped" +"GET","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/scopes/{param}/resource/roles/{param}","suppress",,"Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScopeResourceRole","no oracle row for GET /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/scopes/{param}/resource/roles/{param} and 'Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScopeResourceRole' unshipped" +"GET","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/scopes/{param}/resource/roles/$count","suppress",,"Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScopeResourceRoleCount","no oracle row for GET /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/scopes/{param}/resource/roles/$count and 'Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScopeResourceRoleCount' unshipped" +"GET","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/scopes/$count","suppress",,"Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScopeCount","no oracle row for GET /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/scopes/$count and 'Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScopeCount' unshipped" +"GET","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource","suppress",,"Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResource","no oracle row for GET /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource and 'Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResource' unshipped" +"GET","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/environment","suppress",,"Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceEnvironment","no oracle row for GET /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/environment and 'Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceEnvironment' unshipped" +"GET","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/roles","suppress",,"Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRole","no oracle row for GET /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/roles and 'Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRole' unshipped" +"GET","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/roles/{param}","suppress",,"Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRole","no oracle row for GET /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/roles/{param} and 'Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRole' unshipped" +"GET","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/roles/{param}/resource","suppress",,"Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRoleResource","no oracle row for GET /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/roles/{param}/resource and 'Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRoleResource' unshipped" +"GET","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/roles/{param}/resource/environment","suppress",,"Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRoleResourceEnvironment","no oracle row for GET /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/roles/{param}/resource/environment and 'Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRoleResourceEnvironment' unshipped" +"GET","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/roles/{param}/resource/scopes","suppress",,"Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRoleResourceScope","no oracle row for GET /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/roles/{param}/resource/scopes and 'Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRoleResourceScope' unshipped" +"GET","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/roles/{param}/resource/scopes/{param}","suppress",,"Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRoleResourceScope","no oracle row for GET /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/roles/{param}/resource/scopes/{param} and 'Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRoleResourceScope' unshipped" +"GET","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/roles/{param}/resource/scopes/$count","suppress",,"Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRoleResourceScopeCount","no oracle row for GET /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/roles/{param}/resource/scopes/$count and 'Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRoleResourceScopeCount' unshipped" +"GET","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/roles/$count","suppress",,"Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRoleCount","no oracle row for GET /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/roles/$count and 'Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRoleCount' unshipped" +"GET","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/scopes","suppress",,"Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceScope","no oracle row for GET /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/scopes and 'Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceScope' unshipped" +"GET","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/scopes/{param}","suppress",,"Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceScope","no oracle row for GET /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/scopes/{param} and 'Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceScope' unshipped" +"GET","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/scopes/$count","suppress",,"Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceScopeCount","no oracle row for GET /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/scopes/$count and 'Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceScopeCount' unshipped" +"GET","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/$count","suppress",,"Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeCount","no oracle row for GET /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/$count and 'Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeCount' unshipped" +"GET","/identityGovernance/entitlementManagement/accessPackages/$count","rename","EntitlementManagementAccessPackageCount","Get-MgIdentityGovernanceEntitlementManagementAccessPackageCount","Get-MgEntitlementManagementAccessPackageCount" +"GET","/identityGovernance/entitlementManagement/accessPackageSuggestions","rename","EntitlementManagementAccessPackageSuggestion","Get-MgIdentityGovernanceEntitlementManagementAccessPackageSuggestion","Get-MgEntitlementManagementAccessPackageSuggestion" +"GET","/identityGovernance/entitlementManagement/accessPackageSuggestions/{param}","rename","EntitlementManagementAccessPackageSuggestion","Get-MgIdentityGovernanceEntitlementManagementAccessPackageSuggestion","Get-MgEntitlementManagementAccessPackageSuggestion" +"GET","/identityGovernance/entitlementManagement/accessPackageSuggestions/{param}/accessPackage","rename","EntitlementManagementAccessPackageSuggestionAccessPackage","Get-MgIdentityGovernanceEntitlementManagementAccessPackageSuggestionAccessPackage","Get-MgEntitlementManagementAccessPackageSuggestionAccessPackage" +"GET","/identityGovernance/entitlementManagement/accessPackageSuggestions/$count","rename","EntitlementManagementAccessPackageSuggestionCount","Get-MgIdentityGovernanceEntitlementManagementAccessPackageSuggestionCount","Get-MgEntitlementManagementAccessPackageSuggestionCount" +"GET","/identityGovernance/entitlementManagement/assignmentPolicies","rename","EntitlementManagementAssignmentPolicy","Get-MgIdentityGovernanceEntitlementManagementAssignmentPolicy","Get-MgEntitlementManagementAssignmentPolicy" +"GET","/identityGovernance/entitlementManagement/assignmentPolicies/{param}","rename","EntitlementManagementAssignmentPolicy","Get-MgIdentityGovernanceEntitlementManagementAssignmentPolicy","Get-MgEntitlementManagementAssignmentPolicy" +"GET","/identityGovernance/entitlementManagement/assignmentPolicies/{param}/accessPackage","rename","EntitlementManagementAssignmentPolicyAccessPackage","Get-MgIdentityGovernanceEntitlementManagementAssignmentPolicyAccessPackage","Get-MgEntitlementManagementAssignmentPolicyAccessPackage" +"GET","/identityGovernance/entitlementManagement/assignmentPolicies/{param}/catalog","rename","EntitlementManagementAssignmentPolicyCatalog","Get-MgIdentityGovernanceEntitlementManagementAssignmentPolicyCatalog","Get-MgEntitlementManagementAssignmentPolicyCatalog" +"GET","/identityGovernance/entitlementManagement/assignmentPolicies/{param}/customExtensionStageSettings","rename","EntitlementManagementAssignmentPolicyCustomExtensionStageSetting","Get-MgIdentityGovernanceEntitlementManagementAssignmentPolicyCustomExtensionStageSetting","Get-MgEntitlementManagementAssignmentPolicyCustomExtensionStageSetting" +"GET","/identityGovernance/entitlementManagement/assignmentPolicies/{param}/customExtensionStageSettings/{param}","rename","EntitlementManagementAssignmentPolicyCustomExtensionStageSetting","Get-MgIdentityGovernanceEntitlementManagementAssignmentPolicyCustomExtensionStageSetting","Get-MgEntitlementManagementAssignmentPolicyCustomExtensionStageSetting" +"GET","/identityGovernance/entitlementManagement/assignmentPolicies/{param}/customExtensionStageSettings/{param}/customExtension","rename","EntitlementManagementAssignmentPolicyCustomExtensionStageSettingCustomExtension","Get-MgIdentityGovernanceEntitlementManagementAssignmentPolicyCustomExtensionStageSettingCustomExtension","Get-MgEntitlementManagementAssignmentPolicyCustomExtensionStageSettingCustomExtension" +"GET","/identityGovernance/entitlementManagement/assignmentPolicies/{param}/customExtensionStageSettings/$count","rename","EntitlementManagementAssignmentPolicyCustomExtensionStageSettingCount","Get-MgIdentityGovernanceEntitlementManagementAssignmentPolicyCustomExtensionStageSettingCount","Get-MgEntitlementManagementAssignmentPolicyCustomExtensionStageSettingCount" +"GET","/identityGovernance/entitlementManagement/assignmentPolicies/{param}/questions","rename","EntitlementManagementAssignmentPolicyQuestion","Get-MgIdentityGovernanceEntitlementManagementAssignmentPolicyQuestion","Get-MgEntitlementManagementAssignmentPolicyQuestion" +"GET","/identityGovernance/entitlementManagement/assignmentPolicies/{param}/questions/{param}","rename","EntitlementManagementAssignmentPolicyQuestion","Get-MgIdentityGovernanceEntitlementManagementAssignmentPolicyQuestion","Get-MgEntitlementManagementAssignmentPolicyQuestion" +"GET","/identityGovernance/entitlementManagement/assignmentPolicies/{param}/questions/$count","rename","EntitlementManagementAssignmentPolicyQuestionCount","Get-MgIdentityGovernanceEntitlementManagementAssignmentPolicyQuestionCount","Get-MgEntitlementManagementAssignmentPolicyQuestionCount" +"GET","/identityGovernance/entitlementManagement/assignmentPolicies/$count","rename","EntitlementManagementAssignmentPolicyCount","Get-MgIdentityGovernanceEntitlementManagementAssignmentPolicyCount","Get-MgEntitlementManagementAssignmentPolicyCount" +"GET","/identityGovernance/entitlementManagement/assignmentRequests","rename","EntitlementManagementAssignmentRequest","Get-MgIdentityGovernanceEntitlementManagementAssignmentRequest","Get-MgEntitlementManagementAssignmentRequest" +"GET","/identityGovernance/entitlementManagement/assignmentRequests/{param}","rename","EntitlementManagementAssignmentRequest","Get-MgIdentityGovernanceEntitlementManagementAssignmentRequest","Get-MgEntitlementManagementAssignmentRequest" +"GET","/identityGovernance/entitlementManagement/assignmentRequests/{param}/accessPackage","suppress",,"Get-MgIdentityGovernanceEntitlementManagementAssignmentRequestAccessPackage","no oracle row for GET /identityGovernance/entitlementManagement/assignmentRequests/{param}/accessPackage and 'Get-MgIdentityGovernanceEntitlementManagementAssignmentRequestAccessPackage' unshipped" +"GET","/identityGovernance/entitlementManagement/assignmentRequests/{param}/assignment","suppress",,"Get-MgIdentityGovernanceEntitlementManagementAssignmentRequestAssignment","no oracle row for GET /identityGovernance/entitlementManagement/assignmentRequests/{param}/assignment and 'Get-MgIdentityGovernanceEntitlementManagementAssignmentRequestAssignment' unshipped" +"GET","/identityGovernance/entitlementManagement/assignmentRequests/{param}/requestor","suppress",,"Get-MgIdentityGovernanceEntitlementManagementAssignmentRequestor","no oracle row for GET /identityGovernance/entitlementManagement/assignmentRequests/{param}/requestor and 'Get-MgIdentityGovernanceEntitlementManagementAssignmentRequestor' unshipped" +"GET","/identityGovernance/entitlementManagement/assignmentRequests/$count","rename","EntitlementManagementAssignmentRequestCount","Get-MgIdentityGovernanceEntitlementManagementAssignmentRequestCount","Get-MgEntitlementManagementAssignmentRequestCount" +"GET","/identityGovernance/entitlementManagement/assignments","rename","EntitlementManagementAssignment","Get-MgIdentityGovernanceEntitlementManagementAssignment","Get-MgEntitlementManagementAssignment" +"GET","/identityGovernance/entitlementManagement/assignments/{param}","rename","EntitlementManagementAssignment","Get-MgIdentityGovernanceEntitlementManagementAssignment","Get-MgEntitlementManagementAssignment" +"GET","/identityGovernance/entitlementManagement/assignments/{param}/accessPackage","suppress",,"Get-MgIdentityGovernanceEntitlementManagementAssignmentAccessPackage","no oracle row for GET /identityGovernance/entitlementManagement/assignments/{param}/accessPackage and 'Get-MgIdentityGovernanceEntitlementManagementAssignmentAccessPackage' unshipped" +"GET","/identityGovernance/entitlementManagement/assignments/{param}/target","suppress",,"Get-MgIdentityGovernanceEntitlementManagementAssignmentTarget","no oracle row for GET /identityGovernance/entitlementManagement/assignments/{param}/target and 'Get-MgIdentityGovernanceEntitlementManagementAssignmentTarget' unshipped" +"GET","/identityGovernance/entitlementManagement/assignments/$count","rename","EntitlementManagementAssignmentCount","Get-MgIdentityGovernanceEntitlementManagementAssignmentCount","Get-MgEntitlementManagementAssignmentCount" +"GET","/identityGovernance/entitlementManagement/assignments/additionalAccess","rename","EntitlementManagementAssignmentAdditional","Get-MgIdentityGovernanceEntitlementManagementAssignmentAdditionalAccess","Get-MgEntitlementManagementAssignmentAdditional" +"GET","/identityGovernance/entitlementManagement/availableAccessPackages","rename","EntitlementManagementAvailableAccessPackage","Get-MgIdentityGovernanceEntitlementManagementAvailableAccessPackage","Get-MgEntitlementManagementAvailableAccessPackage" +"GET","/identityGovernance/entitlementManagement/availableAccessPackages/{param}","rename","EntitlementManagementAvailableAccessPackage","Get-MgIdentityGovernanceEntitlementManagementAvailableAccessPackage","Get-MgEntitlementManagementAvailableAccessPackage" +"GET","/identityGovernance/entitlementManagement/availableAccessPackages/{param}/resourceRoleScopes","rename","EntitlementManagementAvailableAccessPackageResourceRoleScope","Get-MgIdentityGovernanceEntitlementManagementAvailableAccessPackageResourceRoleScope","Get-MgEntitlementManagementAvailableAccessPackageResourceRoleScope" +"GET","/identityGovernance/entitlementManagement/availableAccessPackages/{param}/resourceRoleScopes/{param}","rename","EntitlementManagementAvailableAccessPackageResourceRoleScope","Get-MgIdentityGovernanceEntitlementManagementAvailableAccessPackageResourceRoleScope","Get-MgEntitlementManagementAvailableAccessPackageResourceRoleScope" +"GET","/identityGovernance/entitlementManagement/availableAccessPackages/{param}/resourceRoleScopes/$count","rename","EntitlementManagementAvailableAccessPackageResourceRoleScopeCount","Get-MgIdentityGovernanceEntitlementManagementAvailableAccessPackageResourceRoleScopeCount","Get-MgEntitlementManagementAvailableAccessPackageResourceRoleScopeCount" +"GET","/identityGovernance/entitlementManagement/availableAccessPackages/$count","rename","EntitlementManagementAvailableAccessPackageCount","Get-MgIdentityGovernanceEntitlementManagementAvailableAccessPackageCount","Get-MgEntitlementManagementAvailableAccessPackageCount" +"GET","/identityGovernance/entitlementManagement/catalogs","rename","EntitlementManagementCatalog","Get-MgIdentityGovernanceEntitlementManagementCatalog","Get-MgEntitlementManagementCatalog" +"GET","/identityGovernance/entitlementManagement/catalogs/{param}","rename","EntitlementManagementCatalog","Get-MgIdentityGovernanceEntitlementManagementCatalog","Get-MgEntitlementManagementCatalog" +"GET","/identityGovernance/entitlementManagement/catalogs/{param}/accessPackages","suppress",,"Get-MgIdentityGovernanceEntitlementManagementCatalogAccessPackage","no oracle row for GET /identityGovernance/entitlementManagement/catalogs/{param}/accessPackages and 'Get-MgIdentityGovernanceEntitlementManagementCatalogAccessPackage' unshipped" +"GET","/identityGovernance/entitlementManagement/catalogs/{param}/accessPackages/{param}","suppress",,"Get-MgIdentityGovernanceEntitlementManagementCatalogAccessPackage","no oracle row for GET /identityGovernance/entitlementManagement/catalogs/{param}/accessPackages/{param} and 'Get-MgIdentityGovernanceEntitlementManagementCatalogAccessPackage' unshipped" +"GET","/identityGovernance/entitlementManagement/catalogs/{param}/accessPackages/$count","rename","EntitlementManagementCatalogAccessPackageCount","Get-MgIdentityGovernanceEntitlementManagementCatalogAccessPackageCount","Get-MgEntitlementManagementCatalogAccessPackageCount" +"GET","/identityGovernance/entitlementManagement/catalogs/{param}/customWorkflowExtensions","rename","EntitlementManagementCatalogCustomWorkflowExtension","Get-MgIdentityGovernanceEntitlementManagementCatalogCustomWorkflowExtension","Get-MgEntitlementManagementCatalogCustomWorkflowExtension" +"GET","/identityGovernance/entitlementManagement/catalogs/{param}/customWorkflowExtensions/{param}","rename","EntitlementManagementCatalogCustomWorkflowExtension","Get-MgIdentityGovernanceEntitlementManagementCatalogCustomWorkflowExtension","Get-MgEntitlementManagementCatalogCustomWorkflowExtension" +"GET","/identityGovernance/entitlementManagement/catalogs/{param}/customWorkflowExtensions/$count","rename","EntitlementManagementCatalogCustomWorkflowExtensionCount","Get-MgIdentityGovernanceEntitlementManagementCatalogCustomWorkflowExtensionCount","Get-MgEntitlementManagementCatalogCustomWorkflowExtensionCount" +"GET","/identityGovernance/entitlementManagement/catalogs/{param}/resourceRoles","rename","EntitlementManagementCatalogResourceRole","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRole","Get-MgEntitlementManagementCatalogResourceRole" +"GET","/identityGovernance/entitlementManagement/catalogs/{param}/resourceRoles/{param}/resource","rename","EntitlementManagementCatalogResourceRoleResource","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResource","Get-MgEntitlementManagementCatalogResourceRoleResource" +"GET","/identityGovernance/entitlementManagement/catalogs/{param}/resourceRoles/{param}/resource/environment","rename","EntitlementManagementCatalogResourceRoleResourceEnvironment","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceEnvironment","Get-MgEntitlementManagementCatalogResourceRoleResourceEnvironment" +"GET","/identityGovernance/entitlementManagement/catalogs/{param}/resourceRoles/{param}/resource/roles","suppress",,"Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceRole","no oracle row for GET /identityGovernance/entitlementManagement/catalogs/{param}/resourceRoles/{param}/resource/roles and 'Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceRole' unshipped" +"GET","/identityGovernance/entitlementManagement/catalogs/{param}/resourceRoles/{param}/resource/roles/{param}","suppress",,"Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceRole","no oracle row for GET /identityGovernance/entitlementManagement/catalogs/{param}/resourceRoles/{param}/resource/roles/{param} and 'Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceRole' unshipped" +"GET","/identityGovernance/entitlementManagement/catalogs/{param}/resourceRoles/{param}/resource/roles/$count","suppress",,"Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceRoleCount","no oracle row for GET /identityGovernance/entitlementManagement/catalogs/{param}/resourceRoles/{param}/resource/roles/$count and 'Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceRoleCount' unshipped" +"GET","/identityGovernance/entitlementManagement/catalogs/{param}/resourceRoles/{param}/resource/scopes","rename","EntitlementManagementCatalogResourceRoleResourceScope","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScope","Get-MgEntitlementManagementCatalogResourceRoleResourceScope" +"GET","/identityGovernance/entitlementManagement/catalogs/{param}/resourceRoles/{param}/resource/scopes/{param}/resource","rename","EntitlementManagementCatalogResourceRoleResourceScopeResource","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResource","Get-MgEntitlementManagementCatalogResourceRoleResourceScopeResource" +"GET","/identityGovernance/entitlementManagement/catalogs/{param}/resourceRoles/{param}/resource/scopes/{param}/resource/environment","rename","EntitlementManagementCatalogResourceRoleResourceScopeResourceEnvironment","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResourceEnvironment","Get-MgEntitlementManagementCatalogResourceRoleResourceScopeResourceEnvironment" +"GET","/identityGovernance/entitlementManagement/catalogs/{param}/resourceRoles/{param}/resource/scopes/{param}/resource/roles","rename","EntitlementManagementCatalogResourceRoleResourceScopeResourceRole","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResourceRole","Get-MgEntitlementManagementCatalogResourceRoleResourceScopeResourceRole" +"GET","/identityGovernance/entitlementManagement/catalogs/{param}/resourceRoles/{param}/resource/scopes/{param}/resource/roles/{param}","rename","EntitlementManagementCatalogResourceRoleResourceScopeResourceRole","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResourceRole","Get-MgEntitlementManagementCatalogResourceRoleResourceScopeResourceRole" +"GET","/identityGovernance/entitlementManagement/catalogs/{param}/resourceRoles/{param}/resource/scopes/{param}/resource/roles/$count","rename","EntitlementManagementCatalogResourceRoleResourceScopeResourceRoleCount","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResourceRoleCount","Get-MgEntitlementManagementCatalogResourceRoleResourceScopeResourceRoleCount" +"GET","/identityGovernance/entitlementManagement/catalogs/{param}/resourceRoles/{param}/resource/scopes/$count","rename","EntitlementManagementCatalogResourceRoleResourceScopeCount","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeCount","Get-MgEntitlementManagementCatalogResourceRoleResourceScopeCount" +"GET","/identityGovernance/entitlementManagement/catalogs/{param}/resourceRoles/$count","rename","EntitlementManagementCatalogResourceRoleCount","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleCount","Get-MgEntitlementManagementCatalogResourceRoleCount" +"GET","/identityGovernance/entitlementManagement/catalogs/{param}/resources","rename","EntitlementManagementCatalogResource","Get-MgIdentityGovernanceEntitlementManagementCatalogResource","Get-MgEntitlementManagementCatalogResource" +"GET","/identityGovernance/entitlementManagement/catalogs/{param}/resources/{param}","rename","EntitlementManagementCatalogResource","Get-MgIdentityGovernanceEntitlementManagementCatalogResource","Get-MgEntitlementManagementCatalogResource" +"GET","/identityGovernance/entitlementManagement/catalogs/{param}/resources/{param}/environment","rename","EntitlementManagementCatalogResourceEnvironment","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceEnvironment","Get-MgEntitlementManagementCatalogResourceEnvironment" +"GET","/identityGovernance/entitlementManagement/catalogs/{param}/resources/{param}/scopes","suppress",,"Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScope","no oracle row for GET /identityGovernance/entitlementManagement/catalogs/{param}/resources/{param}/scopes and 'Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScope' unshipped" +"GET","/identityGovernance/entitlementManagement/catalogs/{param}/resources/{param}/scopes/{param}/resource","rename","EntitlementManagementCatalogResourceScopeResource","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResource","Get-MgEntitlementManagementCatalogResourceScopeResource" +"GET","/identityGovernance/entitlementManagement/catalogs/{param}/resources/{param}/scopes/{param}/resource/environment","rename","EntitlementManagementCatalogResourceScopeResourceEnvironment","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceEnvironment","Get-MgEntitlementManagementCatalogResourceScopeResourceEnvironment" +"GET","/identityGovernance/entitlementManagement/catalogs/{param}/resources/{param}/scopes/{param}/resource/roles","rename","EntitlementManagementCatalogResourceScopeResourceRole","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRole","Get-MgEntitlementManagementCatalogResourceScopeResourceRole" +"GET","/identityGovernance/entitlementManagement/catalogs/{param}/resources/{param}/scopes/{param}/resource/roles/{param}/resource","rename","EntitlementManagementCatalogResourceScopeResourceRoleResource","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResource","Get-MgEntitlementManagementCatalogResourceScopeResourceRoleResource" +"GET","/identityGovernance/entitlementManagement/catalogs/{param}/resources/{param}/scopes/{param}/resource/roles/{param}/resource/environment","rename","EntitlementManagementCatalogResourceScopeResourceRoleResourceEnvironment","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResourceEnvironment","Get-MgEntitlementManagementCatalogResourceScopeResourceRoleResourceEnvironment" +"GET","/identityGovernance/entitlementManagement/catalogs/{param}/resources/{param}/scopes/{param}/resource/roles/$count","rename","EntitlementManagementCatalogResourceScopeResourceRoleCount","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleCount","Get-MgEntitlementManagementCatalogResourceScopeResourceRoleCount" +"GET","/identityGovernance/entitlementManagement/catalogs/{param}/resources/{param}/scopes/$count","rename","EntitlementManagementCatalogResourceScopeCount","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeCount","Get-MgEntitlementManagementCatalogResourceScopeCount" +"GET","/identityGovernance/entitlementManagement/catalogs/{param}/resources/$count","rename","EntitlementManagementCatalogResourceCount","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceCount","Get-MgEntitlementManagementCatalogResourceCount" +"GET","/identityGovernance/entitlementManagement/catalogs/{param}/resourceScopes/{param}/resource/roles/{param}/resource/scopes","rename","EntitlementManagementCatalogResourceScopeResourceRoleResourceScope","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResourceScope","Get-MgEntitlementManagementCatalogResourceScopeResourceRoleResourceScope" +"GET","/identityGovernance/entitlementManagement/catalogs/{param}/resourceScopes/{param}/resource/roles/{param}/resource/scopes/{param}","rename","EntitlementManagementCatalogResourceScopeResourceRoleResourceScope","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResourceScope","Get-MgEntitlementManagementCatalogResourceScopeResourceRoleResourceScope" +"GET","/identityGovernance/entitlementManagement/catalogs/{param}/resourceScopes/{param}/resource/roles/{param}/resource/scopes/$count","rename","EntitlementManagementCatalogResourceScopeResourceRoleResourceScopeCount","Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResourceScopeCount","Get-MgEntitlementManagementCatalogResourceScopeResourceRoleResourceScopeCount" +"GET","/identityGovernance/entitlementManagement/catalogs/{param}/resourceScopes/{param}/resource/scopes","suppress",,"Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceScope","no oracle row for GET /identityGovernance/entitlementManagement/catalogs/{param}/resourceScopes/{param}/resource/scopes and 'Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceScope' unshipped" +"GET","/identityGovernance/entitlementManagement/catalogs/{param}/resourceScopes/{param}/resource/scopes/{param}","suppress",,"Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceScope","no oracle row for GET /identityGovernance/entitlementManagement/catalogs/{param}/resourceScopes/{param}/resource/scopes/{param} and 'Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceScope' unshipped" +"GET","/identityGovernance/entitlementManagement/catalogs/{param}/resourceScopes/{param}/resource/scopes/$count","suppress",,"Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceScopeCount","no oracle row for GET /identityGovernance/entitlementManagement/catalogs/{param}/resourceScopes/{param}/resource/scopes/$count and 'Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceScopeCount' unshipped" +"GET","/identityGovernance/entitlementManagement/catalogs/$count","rename","EntitlementManagementCatalogCount","Get-MgIdentityGovernanceEntitlementManagementCatalogCount","Get-MgEntitlementManagementCatalogCount" +"GET","/identityGovernance/entitlementManagement/connectedOrganizations","rename","EntitlementManagementConnectedOrganization","Get-MgIdentityGovernanceEntitlementManagementConnectedOrganization","Get-MgEntitlementManagementConnectedOrganization" +"GET","/identityGovernance/entitlementManagement/connectedOrganizations/{param}","rename","EntitlementManagementConnectedOrganization","Get-MgIdentityGovernanceEntitlementManagementConnectedOrganization","Get-MgEntitlementManagementConnectedOrganization" +"GET","/identityGovernance/entitlementManagement/connectedOrganizations/{param}/externalSponsors","rename","EntitlementManagementConnectedOrganizationExternalSponsor","Get-MgIdentityGovernanceEntitlementManagementConnectedOrganizationExternalSponsor","Get-MgEntitlementManagementConnectedOrganizationExternalSponsor" +"GET","/identityGovernance/entitlementManagement/connectedOrganizations/{param}/externalSponsors/$count","rename","EntitlementManagementConnectedOrganizationExternalSponsorCount","Get-MgIdentityGovernanceEntitlementManagementConnectedOrganizationExternalSponsorCount","Get-MgEntitlementManagementConnectedOrganizationExternalSponsorCount" +"GET","/identityGovernance/entitlementManagement/connectedOrganizations/{param}/externalSponsors/$ref","rename","EntitlementManagementConnectedOrganizationExternalSponsorByRef","Get-MgIdentityGovernanceEntitlementManagementConnectedOrganizationExternalSponsorByRef","Get-MgEntitlementManagementConnectedOrganizationExternalSponsorByRef" +"GET","/identityGovernance/entitlementManagement/connectedOrganizations/{param}/internalSponsors","rename","EntitlementManagementConnectedOrganizationInternalSponsor","Get-MgIdentityGovernanceEntitlementManagementConnectedOrganizationInternalSponsor","Get-MgEntitlementManagementConnectedOrganizationInternalSponsor" +"GET","/identityGovernance/entitlementManagement/connectedOrganizations/{param}/internalSponsors/$count","rename","EntitlementManagementConnectedOrganizationInternalSponsorCount","Get-MgIdentityGovernanceEntitlementManagementConnectedOrganizationInternalSponsorCount","Get-MgEntitlementManagementConnectedOrganizationInternalSponsorCount" +"GET","/identityGovernance/entitlementManagement/connectedOrganizations/{param}/internalSponsors/$ref","rename","EntitlementManagementConnectedOrganizationInternalSponsorByRef","Get-MgIdentityGovernanceEntitlementManagementConnectedOrganizationInternalSponsorByRef","Get-MgEntitlementManagementConnectedOrganizationInternalSponsorByRef" +"GET","/identityGovernance/entitlementManagement/connectedOrganizations/$count","rename","EntitlementManagementConnectedOrganizationCount","Get-MgIdentityGovernanceEntitlementManagementConnectedOrganizationCount","Get-MgEntitlementManagementConnectedOrganizationCount" +"GET","/identityGovernance/entitlementManagement/controlConfigurations","rename","EntitlementManagementControlConfiguration","Get-MgIdentityGovernanceEntitlementManagementControlConfiguration","Get-MgEntitlementManagementControlConfiguration" +"GET","/identityGovernance/entitlementManagement/controlConfigurations/{param}","rename","EntitlementManagementControlConfiguration","Get-MgIdentityGovernanceEntitlementManagementControlConfiguration","Get-MgEntitlementManagementControlConfiguration" +"GET","/identityGovernance/entitlementManagement/controlConfigurations/$count","rename","EntitlementManagementControlConfigurationCount","Get-MgIdentityGovernanceEntitlementManagementControlConfigurationCount","Get-MgEntitlementManagementControlConfigurationCount" +"GET","/identityGovernance/entitlementManagement/resourceEnvironments","rename","EntitlementManagementResourceEnvironment","Get-MgIdentityGovernanceEntitlementManagementResourceEnvironment","Get-MgEntitlementManagementResourceEnvironment" +"GET","/identityGovernance/entitlementManagement/resourceEnvironments/{param}","rename","EntitlementManagementResourceEnvironment","Get-MgIdentityGovernanceEntitlementManagementResourceEnvironment","Get-MgEntitlementManagementResourceEnvironment" +"GET","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources","rename","EntitlementManagementResourceEnvironmentResource","Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResource","Get-MgEntitlementManagementResourceEnvironmentResource" +"GET","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}","rename","EntitlementManagementResourceEnvironmentResource","Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResource","Get-MgEntitlementManagementResourceEnvironmentResource" +"GET","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/environment","suppress",,"Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceEnvironment","no oracle row for GET /identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/environment and 'Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceEnvironment' unshipped" +"GET","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/roles","rename","EntitlementManagementResourceEnvironmentResourceRole","Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRole","Get-MgEntitlementManagementResourceEnvironmentResourceRole" +"GET","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/roles/{param}","rename","EntitlementManagementResourceEnvironmentResourceRole","Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRole","Get-MgEntitlementManagementResourceEnvironmentResourceRole" +"GET","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/roles/{param}/resource","rename","EntitlementManagementResourceEnvironmentResourceRoleResource","Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResource","Get-MgEntitlementManagementResourceEnvironmentResourceRoleResource" +"GET","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/roles/{param}/resource/environment","rename","EntitlementManagementResourceEnvironmentResourceRoleResourceEnvironment","Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResourceEnvironment","Get-MgEntitlementManagementResourceEnvironmentResourceRoleResourceEnvironment" +"GET","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/roles/{param}/resource/scopes","rename","EntitlementManagementResourceEnvironmentResourceRoleResourceScope","Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResourceScope","Get-MgEntitlementManagementResourceEnvironmentResourceRoleResourceScope" +"GET","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/roles/{param}/resource/scopes/{param}","rename","EntitlementManagementResourceEnvironmentResourceRoleResourceScope","Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResourceScope","Get-MgEntitlementManagementResourceEnvironmentResourceRoleResourceScope" +"GET","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/roles/{param}/resource/scopes/{param}/resource","rename","EntitlementManagementResourceEnvironmentResourceRoleResourceScopeResource","Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResourceScopeResource","Get-MgEntitlementManagementResourceEnvironmentResourceRoleResourceScopeResource" +"GET","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/roles/{param}/resource/scopes/{param}/resource/environment","rename","EntitlementManagementResourceEnvironmentResourceRoleResourceScopeResourceEnvironment","Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResourceScopeResourceEnvironment","Get-MgEntitlementManagementResourceEnvironmentResourceRoleResourceScopeResourceEnvironment" +"GET","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/roles/{param}/resource/scopes/$count","rename","EntitlementManagementResourceEnvironmentResourceRoleResourceScopeCount","Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResourceScopeCount","Get-MgEntitlementManagementResourceEnvironmentResourceRoleResourceScopeCount" +"GET","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/roles/$count","rename","EntitlementManagementResourceEnvironmentResourceRoleCount","Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleCount","Get-MgEntitlementManagementResourceEnvironmentResourceRoleCount" +"GET","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/scopes","rename","EntitlementManagementResourceEnvironmentResourceScope","Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScope","Get-MgEntitlementManagementResourceEnvironmentResourceScope" +"GET","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/scopes/{param}","rename","EntitlementManagementResourceEnvironmentResourceScope","Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScope","Get-MgEntitlementManagementResourceEnvironmentResourceScope" +"GET","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/scopes/{param}/resource","rename","EntitlementManagementResourceEnvironmentResourceScopeResource","Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResource","Get-MgEntitlementManagementResourceEnvironmentResourceScopeResource" +"GET","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/scopes/{param}/resource/environment","rename","EntitlementManagementResourceEnvironmentResourceScopeResourceEnvironment","Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResourceEnvironment","Get-MgEntitlementManagementResourceEnvironmentResourceScopeResourceEnvironment" +"GET","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/scopes/{param}/resource/roles","rename","EntitlementManagementResourceEnvironmentResourceScopeResourceRole","Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResourceRole","Get-MgEntitlementManagementResourceEnvironmentResourceScopeResourceRole" +"GET","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/scopes/{param}/resource/roles/{param}","rename","EntitlementManagementResourceEnvironmentResourceScopeResourceRole","Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResourceRole","Get-MgEntitlementManagementResourceEnvironmentResourceScopeResourceRole" +"GET","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/scopes/{param}/resource/roles/{param}/resource","rename","EntitlementManagementResourceEnvironmentResourceScopeResourceRoleResource","Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResourceRoleResource","Get-MgEntitlementManagementResourceEnvironmentResourceScopeResourceRoleResource" +"GET","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/scopes/{param}/resource/roles/{param}/resource/environment","rename","EntitlementManagementResourceEnvironmentResourceScopeResourceRoleResourceEnvironment","Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResourceRoleResourceEnvironment","Get-MgEntitlementManagementResourceEnvironmentResourceScopeResourceRoleResourceEnvironment" +"GET","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/scopes/{param}/resource/roles/$count","rename","EntitlementManagementResourceEnvironmentResourceScopeResourceRoleCount","Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResourceRoleCount","Get-MgEntitlementManagementResourceEnvironmentResourceScopeResourceRoleCount" +"GET","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/scopes/$count","rename","EntitlementManagementResourceEnvironmentResourceScopeCount","Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeCount","Get-MgEntitlementManagementResourceEnvironmentResourceScopeCount" +"GET","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/$count","rename","EntitlementManagementResourceEnvironmentResourceCount","Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceCount","Get-MgEntitlementManagementResourceEnvironmentResourceCount" +"GET","/identityGovernance/entitlementManagement/resourceEnvironments/$count","rename","EntitlementManagementResourceEnvironmentCount","Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentCount","Get-MgEntitlementManagementResourceEnvironmentCount" +"GET","/identityGovernance/entitlementManagement/resourceRequests","rename","EntitlementManagementResourceRequest","Get-MgIdentityGovernanceEntitlementManagementResourceRequest","Get-MgEntitlementManagementResourceRequest" +"GET","/identityGovernance/entitlementManagement/resourceRequests/{param}","rename","EntitlementManagementResourceRequest","Get-MgIdentityGovernanceEntitlementManagementResourceRequest","Get-MgEntitlementManagementResourceRequest" +"GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog","rename","EntitlementManagementResourceRequestCatalog","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalog","Get-MgEntitlementManagementResourceRequestCatalog" +"GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/accessPackages","rename","EntitlementManagementResourceRequestCatalogAccessPackage","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogAccessPackage","Get-MgEntitlementManagementResourceRequestCatalogAccessPackage" +"GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/accessPackages/{param}","rename","EntitlementManagementResourceRequestCatalogAccessPackage","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogAccessPackage","Get-MgEntitlementManagementResourceRequestCatalogAccessPackage" +"GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/accessPackages/$count","rename","EntitlementManagementResourceRequestCatalogAccessPackageCount","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogAccessPackageCount","Get-MgEntitlementManagementResourceRequestCatalogAccessPackageCount" +"GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/customWorkflowExtensions","rename","EntitlementManagementResourceRequestCatalogCustomWorkflowExtension","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogCustomWorkflowExtension","Get-MgEntitlementManagementResourceRequestCatalogCustomWorkflowExtension" +"GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/customWorkflowExtensions/{param}","rename","EntitlementManagementResourceRequestCatalogCustomWorkflowExtension","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogCustomWorkflowExtension","Get-MgEntitlementManagementResourceRequestCatalogCustomWorkflowExtension" +"GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/customWorkflowExtensions/$count","rename","EntitlementManagementResourceRequestCatalogCustomWorkflowExtensionCount","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogCustomWorkflowExtensionCount","Get-MgEntitlementManagementResourceRequestCatalogCustomWorkflowExtensionCount" +"GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceRoles","rename","EntitlementManagementResourceRequestCatalogResourceRole","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRole","Get-MgEntitlementManagementResourceRequestCatalogResourceRole" +"GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceRoles/{param}/resource","rename","EntitlementManagementResourceRequestCatalogResourceRoleResource","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResource","Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResource" +"GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceRoles/{param}/resource/environment","rename","EntitlementManagementResourceRequestCatalogResourceRoleResourceEnvironment","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceEnvironment","Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceEnvironment" +"GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceRoles/{param}/resource/roles","suppress",,"Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceRole","no oracle row for GET /identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceRoles/{param}/resource/roles and 'Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceRole' unshipped" +"GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceRoles/{param}/resource/roles/{param}","suppress",,"Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceRole","no oracle row for GET /identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceRoles/{param}/resource/roles/{param} and 'Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceRole' unshipped" +"GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceRoles/{param}/resource/roles/$count","suppress",,"Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceRoleCount","no oracle row for GET /identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceRoles/{param}/resource/roles/$count and 'Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceRoleCount' unshipped" +"GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceRoles/{param}/resource/scopes","rename","EntitlementManagementResourceRequestCatalogResourceRoleResourceScope","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScope","Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScope" +"GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceRoles/{param}/resource/scopes/{param}/resource","rename","EntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResource","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResource","Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResource" +"GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceRoles/{param}/resource/scopes/{param}/resource/environment","rename","EntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceEnvironment","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceEnvironment","Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceEnvironment" +"GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceRoles/{param}/resource/scopes/{param}/resource/roles","rename","EntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRole","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRole","Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRole" +"GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceRoles/{param}/resource/scopes/{param}/resource/roles/{param}","rename","EntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRole","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRole","Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRole" +"GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceRoles/{param}/resource/scopes/{param}/resource/roles/$count","rename","EntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRoleCount","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRoleCount","Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRoleCount" +"GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceRoles/{param}/resource/scopes/$count","rename","EntitlementManagementResourceRequestCatalogResourceRoleResourceScopeCount","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeCount","Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeCount" +"GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceRoles/$count","rename","EntitlementManagementResourceRequestCatalogResourceRoleCount","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleCount","Get-MgEntitlementManagementResourceRequestCatalogResourceRoleCount" +"GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resources","rename","EntitlementManagementResourceRequestCatalogResource","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResource","Get-MgEntitlementManagementResourceRequestCatalogResource" +"GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resources/{param}","rename","EntitlementManagementResourceRequestCatalogResource","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResource","Get-MgEntitlementManagementResourceRequestCatalogResource" +"GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resources/{param}/environment","rename","EntitlementManagementResourceRequestCatalogResourceEnvironment","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceEnvironment","Get-MgEntitlementManagementResourceRequestCatalogResourceEnvironment" +"GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resources/{param}/scopes","suppress",,"Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScope","no oracle row for GET /identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resources/{param}/scopes and 'Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScope' unshipped" +"GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resources/{param}/scopes/{param}/resource","rename","EntitlementManagementResourceRequestCatalogResourceScopeResource","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResource","Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResource" +"GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resources/{param}/scopes/{param}/resource/environment","rename","EntitlementManagementResourceRequestCatalogResourceScopeResourceEnvironment","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceEnvironment","Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceEnvironment" +"GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resources/{param}/scopes/{param}/resource/roles","rename","EntitlementManagementResourceRequestCatalogResourceScopeResourceRole","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRole","Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRole" +"GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resources/{param}/scopes/{param}/resource/roles/{param}/resource","rename","EntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResource","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResource","Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResource" +"GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resources/{param}/scopes/{param}/resource/roles/{param}/resource/environment","rename","EntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceEnvironment","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceEnvironment","Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceEnvironment" +"GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resources/{param}/scopes/{param}/resource/roles/$count","rename","EntitlementManagementResourceRequestCatalogResourceScopeResourceRoleCount","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleCount","Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleCount" +"GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resources/{param}/scopes/$count","rename","EntitlementManagementResourceRequestCatalogResourceScopeCount","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeCount","Get-MgEntitlementManagementResourceRequestCatalogResourceScopeCount" +"GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resources/$count","rename","EntitlementManagementResourceRequestCatalogResourceCount","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceCount","Get-MgEntitlementManagementResourceRequestCatalogResourceCount" +"GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceScopes/{param}/resource/roles/{param}/resource/scopes","rename","EntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceScope","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceScope","Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceScope" +"GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceScopes/{param}/resource/roles/{param}/resource/scopes/{param}","rename","EntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceScope","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceScope","Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceScope" +"GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceScopes/{param}/resource/roles/{param}/resource/scopes/$count","rename","EntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceScopeCount","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceScopeCount","Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceScopeCount" +"GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceScopes/{param}/resource/scopes","suppress",,"Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceScope","no oracle row for GET /identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceScopes/{param}/resource/scopes and 'Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceScope' unshipped" +"GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceScopes/{param}/resource/scopes/{param}","suppress",,"Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceScope","no oracle row for GET /identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceScopes/{param}/resource/scopes/{param} and 'Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceScope' unshipped" +"GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceScopes/{param}/resource/scopes/$count","suppress",,"Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceScopeCount","no oracle row for GET /identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceScopes/{param}/resource/scopes/$count and 'Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceScopeCount' unshipped" +"GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource","rename","EntitlementManagementResourceRequestResource","Get-MgIdentityGovernanceEntitlementManagementResourceRequestResource","Get-MgEntitlementManagementResourceRequestResource" +"GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/environment","rename","EntitlementManagementResourceRequestResourceEnvironment","Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceEnvironment","Get-MgEntitlementManagementResourceRequestResourceEnvironment" +"GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/roles","rename","EntitlementManagementResourceRequestResourceRole","Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRole","Get-MgEntitlementManagementResourceRequestResourceRole" +"GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/roles/{param}","rename","EntitlementManagementResourceRequestResourceRole","Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRole","Get-MgEntitlementManagementResourceRequestResourceRole" +"GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/roles/{param}/resource","rename","EntitlementManagementResourceRequestResourceRoleResource","Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResource","Get-MgEntitlementManagementResourceRequestResourceRoleResource" +"GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/roles/{param}/resource/environment","rename","EntitlementManagementResourceRequestResourceRoleResourceEnvironment","Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResourceEnvironment","Get-MgEntitlementManagementResourceRequestResourceRoleResourceEnvironment" +"GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/roles/{param}/resource/scopes","rename","EntitlementManagementResourceRequestResourceRoleResourceScope","Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResourceScope","Get-MgEntitlementManagementResourceRequestResourceRoleResourceScope" +"GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/roles/{param}/resource/scopes/{param}","rename","EntitlementManagementResourceRequestResourceRoleResourceScope","Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResourceScope","Get-MgEntitlementManagementResourceRequestResourceRoleResourceScope" +"GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/roles/{param}/resource/scopes/{param}/resource","rename","EntitlementManagementResourceRequestResourceRoleResourceScopeResource","Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResourceScopeResource","Get-MgEntitlementManagementResourceRequestResourceRoleResourceScopeResource" +"GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/roles/{param}/resource/scopes/{param}/resource/environment","rename","EntitlementManagementResourceRequestResourceRoleResourceScopeResourceEnvironment","Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResourceScopeResourceEnvironment","Get-MgEntitlementManagementResourceRequestResourceRoleResourceScopeResourceEnvironment" +"GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/roles/{param}/resource/scopes/$count","rename","EntitlementManagementResourceRequestResourceRoleResourceScopeCount","Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResourceScopeCount","Get-MgEntitlementManagementResourceRequestResourceRoleResourceScopeCount" +"GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/roles/$count","rename","EntitlementManagementResourceRequestResourceRoleCount","Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleCount","Get-MgEntitlementManagementResourceRequestResourceRoleCount" +"GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/scopes","rename","EntitlementManagementResourceRequestResourceScope","Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScope","Get-MgEntitlementManagementResourceRequestResourceScope" +"GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/scopes/{param}","rename","EntitlementManagementResourceRequestResourceScope","Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScope","Get-MgEntitlementManagementResourceRequestResourceScope" +"GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/scopes/{param}/resource","rename","EntitlementManagementResourceRequestResourceScopeResource","Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResource","Get-MgEntitlementManagementResourceRequestResourceScopeResource" +"GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/scopes/{param}/resource/environment","rename","EntitlementManagementResourceRequestResourceScopeResourceEnvironment","Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResourceEnvironment","Get-MgEntitlementManagementResourceRequestResourceScopeResourceEnvironment" +"GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/scopes/{param}/resource/roles","rename","EntitlementManagementResourceRequestResourceScopeResourceRole","Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResourceRole","Get-MgEntitlementManagementResourceRequestResourceScopeResourceRole" +"GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/scopes/{param}/resource/roles/{param}","rename","EntitlementManagementResourceRequestResourceScopeResourceRole","Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResourceRole","Get-MgEntitlementManagementResourceRequestResourceScopeResourceRole" +"GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/scopes/{param}/resource/roles/{param}/resource","rename","EntitlementManagementResourceRequestResourceScopeResourceRoleResource","Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResourceRoleResource","Get-MgEntitlementManagementResourceRequestResourceScopeResourceRoleResource" +"GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/scopes/{param}/resource/roles/{param}/resource/environment","rename","EntitlementManagementResourceRequestResourceScopeResourceRoleResourceEnvironment","Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResourceRoleResourceEnvironment","Get-MgEntitlementManagementResourceRequestResourceScopeResourceRoleResourceEnvironment" +"GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/scopes/{param}/resource/roles/$count","rename","EntitlementManagementResourceRequestResourceScopeResourceRoleCount","Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResourceRoleCount","Get-MgEntitlementManagementResourceRequestResourceScopeResourceRoleCount" +"GET","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/scopes/$count","rename","EntitlementManagementResourceRequestResourceScopeCount","Get-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeCount","Get-MgEntitlementManagementResourceRequestResourceScopeCount" +"GET","/identityGovernance/entitlementManagement/resourceRequests/$count","rename","EntitlementManagementResourceRequestCount","Get-MgIdentityGovernanceEntitlementManagementResourceRequestCount","Get-MgEntitlementManagementResourceRequestCount" +"GET","/identityGovernance/entitlementManagement/resourceRoleScopes","rename","EntitlementManagementResourceRoleScope","Get-MgIdentityGovernanceEntitlementManagementResourceRoleScope","Get-MgEntitlementManagementResourceRoleScope" +"GET","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}","rename","EntitlementManagementResourceRoleScope","Get-MgIdentityGovernanceEntitlementManagementResourceRoleScope","Get-MgEntitlementManagementResourceRoleScope" +"GET","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/role","rename","EntitlementManagementResourceRoleScopeRole","Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRole","Get-MgEntitlementManagementResourceRoleScopeRole" +"GET","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/role/resource","rename","EntitlementManagementResourceRoleScopeRoleResource","Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResource","Get-MgEntitlementManagementResourceRoleScopeRoleResource" +"GET","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/role/resource/environment","rename","EntitlementManagementResourceRoleScopeRoleResourceEnvironment","Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceEnvironment","Get-MgEntitlementManagementResourceRoleScopeRoleResourceEnvironment" +"GET","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/role/resource/roles","rename","EntitlementManagementResourceRoleScopeRoleResourceRole","Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceRole","Get-MgEntitlementManagementResourceRoleScopeRoleResourceRole" +"GET","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/role/resource/roles/{param}","rename","EntitlementManagementResourceRoleScopeRoleResourceRole","Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceRole","Get-MgEntitlementManagementResourceRoleScopeRoleResourceRole" +"GET","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/role/resource/roles/$count","rename","EntitlementManagementResourceRoleScopeRoleResourceRoleCount","Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceRoleCount","Get-MgEntitlementManagementResourceRoleScopeRoleResourceRoleCount" +"GET","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/role/resource/scopes","rename","EntitlementManagementResourceRoleScopeRoleResourceScope","Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScope","Get-MgEntitlementManagementResourceRoleScopeRoleResourceScope" +"GET","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/role/resource/scopes/{param}","rename","EntitlementManagementResourceRoleScopeRoleResourceScope","Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScope","Get-MgEntitlementManagementResourceRoleScopeRoleResourceScope" +"GET","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/role/resource/scopes/{param}/resource","rename","EntitlementManagementResourceRoleScopeRoleResourceScopeResource","Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScopeResource","Get-MgEntitlementManagementResourceRoleScopeRoleResourceScopeResource" +"GET","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/role/resource/scopes/{param}/resource/environment","rename","EntitlementManagementResourceRoleScopeRoleResourceScopeResourceEnvironment","Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScopeResourceEnvironment","Get-MgEntitlementManagementResourceRoleScopeRoleResourceScopeResourceEnvironment" +"GET","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/role/resource/scopes/{param}/resource/roles","rename","EntitlementManagementResourceRoleScopeRoleResourceScopeResourceRole","Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScopeResourceRole","Get-MgEntitlementManagementResourceRoleScopeRoleResourceScopeResourceRole" +"GET","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/role/resource/scopes/{param}/resource/roles/{param}","rename","EntitlementManagementResourceRoleScopeRoleResourceScopeResourceRole","Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScopeResourceRole","Get-MgEntitlementManagementResourceRoleScopeRoleResourceScopeResourceRole" +"GET","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/role/resource/scopes/{param}/resource/roles/$count","rename","EntitlementManagementResourceRoleScopeRoleResourceScopeResourceRoleCount","Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScopeResourceRoleCount","Get-MgEntitlementManagementResourceRoleScopeRoleResourceScopeResourceRoleCount" +"GET","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/role/resource/scopes/$count","rename","EntitlementManagementResourceRoleScopeRoleResourceScopeCount","Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScopeCount","Get-MgEntitlementManagementResourceRoleScopeRoleResourceScopeCount" +"GET","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/scope/resource","rename","EntitlementManagementResourceRoleScopeResource","Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResource","Get-MgEntitlementManagementResourceRoleScopeResource" +"GET","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/scope/resource/environment","rename","EntitlementManagementResourceRoleScopeResourceEnvironment","Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceEnvironment","Get-MgEntitlementManagementResourceRoleScopeResourceEnvironment" +"GET","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/scope/resource/roles","rename","EntitlementManagementResourceRoleScopeResourceRole","Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRole","Get-MgEntitlementManagementResourceRoleScopeResourceRole" +"GET","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/scope/resource/roles/{param}","rename","EntitlementManagementResourceRoleScopeResourceRole","Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRole","Get-MgEntitlementManagementResourceRoleScopeResourceRole" +"GET","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/scope/resource/roles/{param}/resource","rename","EntitlementManagementResourceRoleScopeResourceRoleResource","Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRoleResource","Get-MgEntitlementManagementResourceRoleScopeResourceRoleResource" +"GET","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/scope/resource/roles/{param}/resource/environment","rename","EntitlementManagementResourceRoleScopeResourceRoleResourceEnvironment","Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRoleResourceEnvironment","Get-MgEntitlementManagementResourceRoleScopeResourceRoleResourceEnvironment" +"GET","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/scope/resource/roles/{param}/resource/scopes","rename","EntitlementManagementResourceRoleScopeResourceRoleResourceScope","Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRoleResourceScope","Get-MgEntitlementManagementResourceRoleScopeResourceRoleResourceScope" +"GET","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/scope/resource/roles/{param}/resource/scopes/{param}","rename","EntitlementManagementResourceRoleScopeResourceRoleResourceScope","Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRoleResourceScope","Get-MgEntitlementManagementResourceRoleScopeResourceRoleResourceScope" +"GET","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/scope/resource/roles/{param}/resource/scopes/$count","rename","EntitlementManagementResourceRoleScopeResourceRoleResourceScopeCount","Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRoleResourceScopeCount","Get-MgEntitlementManagementResourceRoleScopeResourceRoleResourceScopeCount" +"GET","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/scope/resource/roles/$count","rename","EntitlementManagementResourceRoleScopeResourceRoleCount","Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRoleCount","Get-MgEntitlementManagementResourceRoleScopeResourceRoleCount" +"GET","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/scope/resource/scopes","rename","EntitlementManagementResourceRoleScopeResourceScope","Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceScope","Get-MgEntitlementManagementResourceRoleScopeResourceScope" +"GET","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/scope/resource/scopes/{param}","rename","EntitlementManagementResourceRoleScopeResourceScope","Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceScope","Get-MgEntitlementManagementResourceRoleScopeResourceScope" +"GET","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/scope/resource/scopes/$count","rename","EntitlementManagementResourceRoleScopeResourceScopeCount","Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceScopeCount","Get-MgEntitlementManagementResourceRoleScopeResourceScopeCount" +"GET","/identityGovernance/entitlementManagement/resourceRoleScopes/$count","rename","EntitlementManagementResourceRoleScopeCount","Get-MgIdentityGovernanceEntitlementManagementResourceRoleScopeCount","Get-MgEntitlementManagementResourceRoleScopeCount" +"GET","/identityGovernance/entitlementManagement/resources","rename","EntitlementManagementResource","Get-MgIdentityGovernanceEntitlementManagementResource","Get-MgEntitlementManagementResource" +"GET","/identityGovernance/entitlementManagement/resources/{param}","rename","EntitlementManagementResource","Get-MgIdentityGovernanceEntitlementManagementResource","Get-MgEntitlementManagementResource" +"GET","/identityGovernance/entitlementManagement/resources/{param}/roles","rename","EntitlementManagementResourceRole","Get-MgIdentityGovernanceEntitlementManagementResourceRole","Get-MgEntitlementManagementResourceRole" +"GET","/identityGovernance/entitlementManagement/resources/{param}/roles/{param}","rename","EntitlementManagementResourceRole","Get-MgIdentityGovernanceEntitlementManagementResourceRole","Get-MgEntitlementManagementResourceRole" +"GET","/identityGovernance/entitlementManagement/resources/{param}/roles/{param}/resource","rename","EntitlementManagementResourceRoleResource","Get-MgIdentityGovernanceEntitlementManagementResourceRoleResource","Get-MgEntitlementManagementResourceRoleResource" +"GET","/identityGovernance/entitlementManagement/resources/{param}/roles/{param}/resource/environment","rename","EntitlementManagementResourceRoleResourceEnvironment","Get-MgIdentityGovernanceEntitlementManagementResourceRoleResourceEnvironment","Get-MgEntitlementManagementResourceRoleResourceEnvironment" +"GET","/identityGovernance/entitlementManagement/resources/{param}/roles/{param}/resource/scopes","rename","EntitlementManagementResourceRoleResourceScope","Get-MgIdentityGovernanceEntitlementManagementResourceRoleResourceScope","Get-MgEntitlementManagementResourceRoleResourceScope" +"GET","/identityGovernance/entitlementManagement/resources/{param}/roles/{param}/resource/scopes/{param}","rename","EntitlementManagementResourceRoleResourceScope","Get-MgIdentityGovernanceEntitlementManagementResourceRoleResourceScope","Get-MgEntitlementManagementResourceRoleResourceScope" +"GET","/identityGovernance/entitlementManagement/resources/{param}/roles/{param}/resource/scopes/{param}/resource","rename","EntitlementManagementResourceRoleResourceScopeResource","Get-MgIdentityGovernanceEntitlementManagementResourceRoleResourceScopeResource","Get-MgEntitlementManagementResourceRoleResourceScopeResource" +"GET","/identityGovernance/entitlementManagement/resources/{param}/roles/{param}/resource/scopes/{param}/resource/environment","rename","EntitlementManagementResourceRoleResourceScopeResourceEnvironment","Get-MgIdentityGovernanceEntitlementManagementResourceRoleResourceScopeResourceEnvironment","Get-MgEntitlementManagementResourceRoleResourceScopeResourceEnvironment" +"GET","/identityGovernance/entitlementManagement/resources/{param}/roles/{param}/resource/scopes/$count","rename","EntitlementManagementResourceRoleResourceScopeCount","Get-MgIdentityGovernanceEntitlementManagementResourceRoleResourceScopeCount","Get-MgEntitlementManagementResourceRoleResourceScopeCount" +"GET","/identityGovernance/entitlementManagement/resources/{param}/roles/$count","rename","EntitlementManagementResourceRoleCount","Get-MgIdentityGovernanceEntitlementManagementResourceRoleCount","Get-MgEntitlementManagementResourceRoleCount" +"GET","/identityGovernance/entitlementManagement/resources/{param}/scopes","rename","EntitlementManagementResourceScope","Get-MgIdentityGovernanceEntitlementManagementResourceScope","Get-MgEntitlementManagementResourceScope" +"GET","/identityGovernance/entitlementManagement/resources/{param}/scopes/{param}","rename","EntitlementManagementResourceScope","Get-MgIdentityGovernanceEntitlementManagementResourceScope","Get-MgEntitlementManagementResourceScope" +"GET","/identityGovernance/entitlementManagement/resources/{param}/scopes/{param}/resource","rename","EntitlementManagementResourceScopeResource","Get-MgIdentityGovernanceEntitlementManagementResourceScopeResource","Get-MgEntitlementManagementResourceScopeResource" +"GET","/identityGovernance/entitlementManagement/resources/{param}/scopes/{param}/resource/environment","rename","EntitlementManagementResourceScopeResourceEnvironment","Get-MgIdentityGovernanceEntitlementManagementResourceScopeResourceEnvironment","Get-MgEntitlementManagementResourceScopeResourceEnvironment" +"GET","/identityGovernance/entitlementManagement/resources/{param}/scopes/{param}/resource/roles","rename","EntitlementManagementResourceScopeResourceRole","Get-MgIdentityGovernanceEntitlementManagementResourceScopeResourceRole","Get-MgEntitlementManagementResourceScopeResourceRole" +"GET","/identityGovernance/entitlementManagement/resources/{param}/scopes/{param}/resource/roles/{param}","rename","EntitlementManagementResourceScopeResourceRole","Get-MgIdentityGovernanceEntitlementManagementResourceScopeResourceRole","Get-MgEntitlementManagementResourceScopeResourceRole" +"GET","/identityGovernance/entitlementManagement/resources/{param}/scopes/{param}/resource/roles/{param}/resource","rename","EntitlementManagementResourceScopeResourceRoleResource","Get-MgIdentityGovernanceEntitlementManagementResourceScopeResourceRoleResource","Get-MgEntitlementManagementResourceScopeResourceRoleResource" +"GET","/identityGovernance/entitlementManagement/resources/{param}/scopes/{param}/resource/roles/{param}/resource/environment","rename","EntitlementManagementResourceScopeResourceRoleResourceEnvironment","Get-MgIdentityGovernanceEntitlementManagementResourceScopeResourceRoleResourceEnvironment","Get-MgEntitlementManagementResourceScopeResourceRoleResourceEnvironment" +"GET","/identityGovernance/entitlementManagement/resources/{param}/scopes/{param}/resource/roles/$count","rename","EntitlementManagementResourceScopeResourceRoleCount","Get-MgIdentityGovernanceEntitlementManagementResourceScopeResourceRoleCount","Get-MgEntitlementManagementResourceScopeResourceRoleCount" +"GET","/identityGovernance/entitlementManagement/resources/{param}/scopes/$count","rename","EntitlementManagementResourceScopeCount","Get-MgIdentityGovernanceEntitlementManagementResourceScopeCount","Get-MgEntitlementManagementResourceScopeCount" +"GET","/identityGovernance/entitlementManagement/resources/$count","rename","EntitlementManagementResourceCount","Get-MgIdentityGovernanceEntitlementManagementResourceCount","Get-MgEntitlementManagementResourceCount" +"GET","/identityGovernance/entitlementManagement/settings","rename","EntitlementManagementSetting","Get-MgIdentityGovernanceEntitlementManagementSetting","Get-MgEntitlementManagementSetting" +"GET","/identityGovernance/entitlementManagement/subjects","rename","EntitlementManagementSubject","Get-MgIdentityGovernanceEntitlementManagementSubject","Get-MgEntitlementManagementSubject" +"GET","/identityGovernance/entitlementManagement/subjects/{param}","rename","EntitlementManagementSubject","Get-MgIdentityGovernanceEntitlementManagementSubject","Get-MgEntitlementManagementSubject" +"GET","/identityGovernance/entitlementManagement/subjects/{param}/connectedOrganization","rename","EntitlementManagementSubjectConnectedOrganization","Get-MgIdentityGovernanceEntitlementManagementSubjectConnectedOrganization","Get-MgEntitlementManagementSubjectConnectedOrganization" +"GET","/identityGovernance/entitlementManagement/subjects/$count","rename","EntitlementManagementSubjectCount","Get-MgIdentityGovernanceEntitlementManagementSubjectCount","Get-MgEntitlementManagementSubjectCount" +"GET","/identityGovernance/lifecycleWorkflows/customTaskExtensions","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtension","Get-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtension" +"GET","/identityGovernance/lifecycleWorkflows/customTaskExtensions/{param}","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtension","Get-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtension" +"GET","/identityGovernance/lifecycleWorkflows/customTaskExtensions/{param}/createdBy","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtensionCreatedBy","Get-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtensionCreatedBy" +"GET","/identityGovernance/lifecycleWorkflows/customTaskExtensions/{param}/createdBy/mailboxSettings","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtensionCreatedByMailboxSetting","Get-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtensionCreatedByMailboxSetting" +"GET","/identityGovernance/lifecycleWorkflows/customTaskExtensions/{param}/createdBy/serviceProvisioningErrors","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtensionCreatedByServiceProvisioningError","Get-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtensionCreatedByServiceProvisioningError" +"GET","/identityGovernance/lifecycleWorkflows/customTaskExtensions/{param}/createdBy/serviceProvisioningErrors/$count","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtensionCreatedByServiceProvisioningErrorCount","Get-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtensionCreatedByServiceProvisioningErrorCount" +"GET","/identityGovernance/lifecycleWorkflows/customTaskExtensions/{param}/lastModifiedBy","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtensionLastModifiedBy","Get-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtensionLastModifiedBy" +"GET","/identityGovernance/lifecycleWorkflows/customTaskExtensions/{param}/lastModifiedBy/mailboxSettings","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtensionLastModifiedByMailboxSetting","Get-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtensionLastModifiedByMailboxSetting" +"GET","/identityGovernance/lifecycleWorkflows/customTaskExtensions/{param}/lastModifiedBy/serviceProvisioningErrors","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtensionLastModifiedByServiceProvisioningError","Get-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtensionLastModifiedByServiceProvisioningError" +"GET","/identityGovernance/lifecycleWorkflows/customTaskExtensions/{param}/lastModifiedBy/serviceProvisioningErrors/$count","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtensionLastModifiedByServiceProvisioningErrorCount","Get-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtensionLastModifiedByServiceProvisioningErrorCount" +"GET","/identityGovernance/lifecycleWorkflows/customTaskExtensions/$count","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtensionCount","Get-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtensionCount" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItem","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItem" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflow","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflow" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflow","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflow" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/administrationScopeTargets","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowAdministrationScopeTarget","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowAdministrationScopeTarget" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/administrationScopeTargets/{param}","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowAdministrationScopeTarget","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowAdministrationScopeTarget" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/administrationScopeTargets/$count","suppress",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowAdministrationScopeTargetCount","no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/administrationScopeTargets/$count and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowAdministrationScopeTargetCount' unshipped" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/createdBy","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowCreatedBy","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowCreatedBy" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/createdBy/mailboxSettings","suppress",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowCreatedByMailboxSetting","no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/createdBy/mailboxSettings and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowCreatedByMailboxSetting' unshipped" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/createdBy/serviceProvisioningErrors","suppress",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowCreatedByServiceProvisioningError","no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/createdBy/serviceProvisioningErrors and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowCreatedByServiceProvisioningError' unshipped" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/createdBy/serviceProvisioningErrors/$count","suppress",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowCreatedByServiceProvisioningErrorCount","no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/createdBy/serviceProvisioningErrors/$count and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowCreatedByServiceProvisioningErrorCount' unshipped" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/executionScope","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowExecutionScope","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowExecutionScope" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/executionScope/{param}","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowExecutionScope","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowExecutionScope" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/executionScope/$count","suppress",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowExecutionScopeCount","no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/executionScope/$count and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowExecutionScopeCount' unshipped" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/lastModifiedBy","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowLastModifiedBy","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowLastModifiedBy" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/lastModifiedBy/mailboxSettings","suppress",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowLastModifiedByMailboxSetting","no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/lastModifiedBy/mailboxSettings and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowLastModifiedByMailboxSetting' unshipped" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/lastModifiedBy/serviceProvisioningErrors","suppress",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowLastModifiedByServiceProvisioningError","no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/lastModifiedBy/serviceProvisioningErrors and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowLastModifiedByServiceProvisioningError' unshipped" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/lastModifiedBy/serviceProvisioningErrors/$count","suppress",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowLastModifiedByServiceProvisioningErrorCount","no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/lastModifiedBy/serviceProvisioningErrors/$count and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowLastModifiedByServiceProvisioningErrorCount' unshipped" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/previewScope","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowPreviewScope","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowPreviewScope" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/previewScope/{param}","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowPreviewScope","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowPreviewScope" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/previewScope/$count","suppress",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowPreviewScopeCount","no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/previewScope/$count and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowPreviewScopeCount' unshipped" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRun","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRun" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRun","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRun" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/reprocessedRuns","suppress",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunReprocessedRun","no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/reprocessedRuns and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunReprocessedRun' unshipped" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/reprocessedRuns/{param}","suppress",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunReprocessedRun","no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/reprocessedRuns/{param} and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunReprocessedRun' unshipped" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/reprocessedRuns/$count","suppress",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunReprocessedRunCount","no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/reprocessedRuns/$count and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunReprocessedRunCount' unshipped" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/taskProcessingResults","suppress",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunTaskProcessingResult","no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/taskProcessingResults and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunTaskProcessingResult' unshipped" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/taskProcessingResults/{param}","suppress",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunTaskProcessingResult","no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/taskProcessingResults/{param} and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunTaskProcessingResult' unshipped" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/taskProcessingResults/{param}/subject","suppress",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunTaskProcessingResultSubject","no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/taskProcessingResults/{param}/subject and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunTaskProcessingResultSubject' unshipped" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/taskProcessingResults/{param}/subject/mailboxSettings","suppress",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunTaskProcessingResultSubjectMailboxSetting","no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/taskProcessingResults/{param}/subject/mailboxSettings and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunTaskProcessingResultSubjectMailboxSetting' unshipped" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/taskProcessingResults/{param}/subject/serviceProvisioningErrors","suppress",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunTaskProcessingResultSubjectServiceProvisioningError","no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/taskProcessingResults/{param}/subject/serviceProvisioningErrors and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunTaskProcessingResultSubjectServiceProvisioningError' unshipped" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/taskProcessingResults/{param}/subject/serviceProvisioningErrors/$count","suppress",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunTaskProcessingResultSubjectServiceProvisioningErrorCount","no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/taskProcessingResults/{param}/subject/serviceProvisioningErrors/$count and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunTaskProcessingResultSubjectServiceProvisioningErrorCount' unshipped" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/taskProcessingResults/{param}/task","suppress",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunTaskProcessingResultTask","no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/taskProcessingResults/{param}/task and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunTaskProcessingResultTask' unshipped" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/taskProcessingResults/$count","suppress",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunTaskProcessingResultCount","no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/taskProcessingResults/$count and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunTaskProcessingResultCount' unshipped" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/userProcessingResults","suppress",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResult","no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/userProcessingResults and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResult' unshipped" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/userProcessingResults/{param}","suppress",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResult","no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/userProcessingResults/{param} and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResult' unshipped" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/userProcessingResults/{param}/reprocessedRuns","suppress",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultReprocessedRun","no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/userProcessingResults/{param}/reprocessedRuns and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultReprocessedRun' unshipped" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/userProcessingResults/{param}/reprocessedRuns/{param}","suppress",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultReprocessedRun","no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/userProcessingResults/{param}/reprocessedRuns/{param} and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultReprocessedRun' unshipped" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/userProcessingResults/{param}/reprocessedRuns/$count","suppress",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultReprocessedRunCount","no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/userProcessingResults/{param}/reprocessedRuns/$count and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultReprocessedRunCount' unshipped" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/userProcessingResults/{param}/subject","suppress",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultSubject","no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/userProcessingResults/{param}/subject and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultSubject' unshipped" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/userProcessingResults/{param}/subject/mailboxSettings","suppress",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultSubjectMailboxSetting","no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/userProcessingResults/{param}/subject/mailboxSettings and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultSubjectMailboxSetting' unshipped" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/userProcessingResults/{param}/subject/serviceProvisioningErrors","suppress",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultSubjectServiceProvisioningError","no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/userProcessingResults/{param}/subject/serviceProvisioningErrors and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultSubjectServiceProvisioningError' unshipped" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/userProcessingResults/{param}/subject/serviceProvisioningErrors/$count","suppress",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultSubjectServiceProvisioningErrorCount","no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/userProcessingResults/{param}/subject/serviceProvisioningErrors/$count and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultSubjectServiceProvisioningErrorCount' unshipped" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/userProcessingResults/{param}/taskProcessingResults","suppress",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultTaskProcessingResult","no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/userProcessingResults/{param}/taskProcessingResults and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultTaskProcessingResult' unshipped" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/userProcessingResults/{param}/taskProcessingResults/{param}","suppress",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultTaskProcessingResult","no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/userProcessingResults/{param}/taskProcessingResults/{param} and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultTaskProcessingResult' unshipped" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/subject","suppress",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultTaskProcessingResultSubject","no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/subject and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultTaskProcessingResultSubject' unshipped" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/subject/mailboxSettings","suppress",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultTaskProcessingResultSubjectMailboxSetting","no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/subject/mailboxSettings and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultTaskProcessingResultSubjectMailboxSetting' unshipped" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/subject/serviceProvisioningErrors","suppress",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultTaskProcessingResultSubjectServiceProvisioningError","no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/subject/serviceProvisioningErrors and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultTaskProcessingResultSubjectServiceProvisioningError' unshipped" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/subject/serviceProvisioningErrors/$count","suppress",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultTaskProcessingResultSubjectServiceProvisioningErrorCount","no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/subject/serviceProvisioningErrors/$count and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultTaskProcessingResultSubjectServiceProvisioningErrorCount' unshipped" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/task","suppress",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultTaskProcessingResultTask","no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/task and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultTaskProcessingResultTask' unshipped" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/userProcessingResults/{param}/taskProcessingResults/$count","suppress",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultTaskProcessingResultCount","no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/userProcessingResults/{param}/taskProcessingResults/$count and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultTaskProcessingResultCount' unshipped" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/userProcessingResults/$count","suppress",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultCount","no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/userProcessingResults/$count and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultCount' unshipped" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/$count","suppress",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunCount","no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/$count and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunCount' unshipped" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/taskReports","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReport","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReport" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/taskReports/{param}","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReport","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReport" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/taskReports/{param}/task","suppress",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportTask","no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/taskReports/{param}/task and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportTask' unshipped" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/taskReports/{param}/taskDefinition","suppress",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportTaskDefinition","no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/taskReports/{param}/taskDefinition and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportTaskDefinition' unshipped" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/taskReports/{param}/taskProcessingResults","suppress",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportTaskProcessingResult","no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/taskReports/{param}/taskProcessingResults and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportTaskProcessingResult' unshipped" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/taskReports/{param}/taskProcessingResults/{param}","suppress",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportTaskProcessingResult","no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/taskReports/{param}/taskProcessingResults/{param} and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportTaskProcessingResult' unshipped" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/taskReports/{param}/taskProcessingResults/{param}/subject","suppress",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportTaskProcessingResultSubject","no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/taskReports/{param}/taskProcessingResults/{param}/subject and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportTaskProcessingResultSubject' unshipped" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/taskReports/{param}/taskProcessingResults/{param}/subject/mailboxSettings","suppress",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportTaskProcessingResultSubjectMailboxSetting","no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/taskReports/{param}/taskProcessingResults/{param}/subject/mailboxSettings and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportTaskProcessingResultSubjectMailboxSetting' unshipped" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/taskReports/{param}/taskProcessingResults/{param}/subject/serviceProvisioningErrors","suppress",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportTaskProcessingResultSubjectServiceProvisioningError","no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/taskReports/{param}/taskProcessingResults/{param}/subject/serviceProvisioningErrors and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportTaskProcessingResultSubjectServiceProvisioningError' unshipped" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/taskReports/{param}/taskProcessingResults/{param}/subject/serviceProvisioningErrors/$count","suppress",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportTaskProcessingResultSubjectServiceProvisioningErrorCount","no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/taskReports/{param}/taskProcessingResults/{param}/subject/serviceProvisioningErrors/$count and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportTaskProcessingResultSubjectServiceProvisioningErrorCount' unshipped" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/taskReports/{param}/taskProcessingResults/{param}/task","suppress",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportTaskProcessingResultTask","no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/taskReports/{param}/taskProcessingResults/{param}/task and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportTaskProcessingResultTask' unshipped" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/taskReports/{param}/taskProcessingResults/$count","suppress",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportTaskProcessingResultCount","no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/taskReports/{param}/taskProcessingResults/$count and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportTaskProcessingResultCount' unshipped" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/taskReports/$count","suppress",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportCount","no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/taskReports/$count and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportCount' unshipped" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/tasks","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTask","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTask" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/tasks/{param}","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTask","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTask" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/tasks/{param}/taskProcessingResults","suppress",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskProcessingResult","no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/tasks/{param}/taskProcessingResults and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskProcessingResult' unshipped" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/tasks/{param}/taskProcessingResults/{param}","suppress",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskProcessingResult","no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/tasks/{param}/taskProcessingResults/{param} and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskProcessingResult' unshipped" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/tasks/{param}/taskProcessingResults/{param}/subject","suppress",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskProcessingResultSubject","no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/tasks/{param}/taskProcessingResults/{param}/subject and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskProcessingResultSubject' unshipped" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/tasks/{param}/taskProcessingResults/{param}/subject/mailboxSettings","suppress",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskProcessingResultSubjectMailboxSetting","no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/tasks/{param}/taskProcessingResults/{param}/subject/mailboxSettings and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskProcessingResultSubjectMailboxSetting' unshipped" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/tasks/{param}/taskProcessingResults/{param}/subject/serviceProvisioningErrors","suppress",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskProcessingResultSubjectServiceProvisioningError","no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/tasks/{param}/taskProcessingResults/{param}/subject/serviceProvisioningErrors and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskProcessingResultSubjectServiceProvisioningError' unshipped" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/tasks/{param}/taskProcessingResults/{param}/subject/serviceProvisioningErrors/$count","suppress",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskProcessingResultSubjectServiceProvisioningErrorCount","no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/tasks/{param}/taskProcessingResults/{param}/subject/serviceProvisioningErrors/$count and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskProcessingResultSubjectServiceProvisioningErrorCount' unshipped" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/tasks/{param}/taskProcessingResults/{param}/task","suppress",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskProcessingResultTask","no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/tasks/{param}/taskProcessingResults/{param}/task and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskProcessingResultTask' unshipped" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/tasks/{param}/taskProcessingResults/$count","suppress",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskProcessingResultCount","no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/tasks/{param}/taskProcessingResults/$count and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskProcessingResultCount' unshipped" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/tasks/$count","suppress",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskCount","no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/tasks/$count and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskCount' unshipped" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/userProcessingResults","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResult","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResult" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/userProcessingResults/{param}","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResult","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResult" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/userProcessingResults/{param}/reprocessedRuns","suppress",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultReprocessedRun","no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/userProcessingResults/{param}/reprocessedRuns and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultReprocessedRun' unshipped" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/userProcessingResults/{param}/reprocessedRuns/{param}","suppress",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultReprocessedRun","no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/userProcessingResults/{param}/reprocessedRuns/{param} and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultReprocessedRun' unshipped" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/userProcessingResults/{param}/reprocessedRuns/$count","suppress",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultReprocessedRunCount","no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/userProcessingResults/{param}/reprocessedRuns/$count and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultReprocessedRunCount' unshipped" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/userProcessingResults/{param}/subject","suppress",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultSubject","no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/userProcessingResults/{param}/subject and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultSubject' unshipped" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/userProcessingResults/{param}/subject/mailboxSettings","suppress",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultSubjectMailboxSetting","no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/userProcessingResults/{param}/subject/mailboxSettings and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultSubjectMailboxSetting' unshipped" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/userProcessingResults/{param}/subject/serviceProvisioningErrors","suppress",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultSubjectServiceProvisioningError","no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/userProcessingResults/{param}/subject/serviceProvisioningErrors and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultSubjectServiceProvisioningError' unshipped" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/userProcessingResults/{param}/subject/serviceProvisioningErrors/$count","suppress",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultSubjectServiceProvisioningErrorCount","no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/userProcessingResults/{param}/subject/serviceProvisioningErrors/$count and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultSubjectServiceProvisioningErrorCount' unshipped" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/userProcessingResults/{param}/taskProcessingResults","suppress",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultTaskProcessingResult","no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/userProcessingResults/{param}/taskProcessingResults and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultTaskProcessingResult' unshipped" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/userProcessingResults/{param}/taskProcessingResults/{param}","suppress",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultTaskProcessingResult","no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/userProcessingResults/{param}/taskProcessingResults/{param} and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultTaskProcessingResult' unshipped" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/subject","suppress",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultTaskProcessingResultSubject","no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/subject and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultTaskProcessingResultSubject' unshipped" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/subject/mailboxSettings","suppress",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultTaskProcessingResultSubjectMailboxSetting","no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/subject/mailboxSettings and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultTaskProcessingResultSubjectMailboxSetting' unshipped" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/subject/serviceProvisioningErrors","suppress",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultTaskProcessingResultSubjectServiceProvisioningError","no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/subject/serviceProvisioningErrors and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultTaskProcessingResultSubjectServiceProvisioningError' unshipped" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/subject/serviceProvisioningErrors/$count","suppress",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultTaskProcessingResultSubjectServiceProvisioningErrorCount","no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/subject/serviceProvisioningErrors/$count and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultTaskProcessingResultSubjectServiceProvisioningErrorCount' unshipped" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/task","suppress",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultTaskProcessingResultTask","no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/task and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultTaskProcessingResultTask' unshipped" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/userProcessingResults/{param}/taskProcessingResults/$count","suppress",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultTaskProcessingResultCount","no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/userProcessingResults/{param}/taskProcessingResults/$count and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultTaskProcessingResultCount' unshipped" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/userProcessingResults/$count","suppress",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultCount","no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/userProcessingResults/$count and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultCount' unshipped" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersion","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersion" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersion","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersion" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/administrationScopeTargets","suppress",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionAdministrationScopeTarget","no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/administrationScopeTargets and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionAdministrationScopeTarget' unshipped" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/administrationScopeTargets/{param}","suppress",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionAdministrationScopeTarget","no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/administrationScopeTargets/{param} and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionAdministrationScopeTarget' unshipped" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/administrationScopeTargets/$count","suppress",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionAdministrationScopeTargetCount","no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/administrationScopeTargets/$count and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionAdministrationScopeTargetCount' unshipped" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/createdBy","suppress",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionCreatedBy","no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/createdBy and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionCreatedBy' unshipped" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/createdBy/mailboxSettings","suppress",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionCreatedByMailboxSetting","no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/createdBy/mailboxSettings and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionCreatedByMailboxSetting' unshipped" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/createdBy/serviceProvisioningErrors","suppress",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionCreatedByServiceProvisioningError","no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/createdBy/serviceProvisioningErrors and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionCreatedByServiceProvisioningError' unshipped" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/createdBy/serviceProvisioningErrors/$count","suppress",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionCreatedByServiceProvisioningErrorCount","no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/createdBy/serviceProvisioningErrors/$count and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionCreatedByServiceProvisioningErrorCount' unshipped" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/lastModifiedBy","suppress",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionLastModifiedBy","no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/lastModifiedBy and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionLastModifiedBy' unshipped" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/lastModifiedBy/mailboxSettings","suppress",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionLastModifiedByMailboxSetting","no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/lastModifiedBy/mailboxSettings and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionLastModifiedByMailboxSetting' unshipped" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/lastModifiedBy/serviceProvisioningErrors","suppress",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionLastModifiedByServiceProvisioningError","no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/lastModifiedBy/serviceProvisioningErrors and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionLastModifiedByServiceProvisioningError' unshipped" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/lastModifiedBy/serviceProvisioningErrors/$count","suppress",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionLastModifiedByServiceProvisioningErrorCount","no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/lastModifiedBy/serviceProvisioningErrors/$count and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionLastModifiedByServiceProvisioningErrorCount' unshipped" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/tasks","suppress",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTask","no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/tasks and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTask' unshipped" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/tasks/{param}","suppress",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTask","no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/tasks/{param} and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTask' unshipped" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/tasks/{param}/taskProcessingResults","suppress",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTaskProcessingResult","no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/tasks/{param}/taskProcessingResults and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTaskProcessingResult' unshipped" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/tasks/{param}/taskProcessingResults/{param}","suppress",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTaskProcessingResult","no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/tasks/{param}/taskProcessingResults/{param} and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTaskProcessingResult' unshipped" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/tasks/{param}/taskProcessingResults/{param}/subject","suppress",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTaskProcessingResultSubject","no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/tasks/{param}/taskProcessingResults/{param}/subject and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTaskProcessingResultSubject' unshipped" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/tasks/{param}/taskProcessingResults/{param}/subject/mailboxSettings","suppress",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTaskProcessingResultSubjectMailboxSetting","no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/tasks/{param}/taskProcessingResults/{param}/subject/mailboxSettings and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTaskProcessingResultSubjectMailboxSetting' unshipped" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/tasks/{param}/taskProcessingResults/{param}/subject/serviceProvisioningErrors","suppress",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTaskProcessingResultSubjectServiceProvisioningError","no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/tasks/{param}/taskProcessingResults/{param}/subject/serviceProvisioningErrors and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTaskProcessingResultSubjectServiceProvisioningError' unshipped" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/tasks/{param}/taskProcessingResults/{param}/subject/serviceProvisioningErrors/$count","suppress",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTaskProcessingResultSubjectServiceProvisioningErrorCount","no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/tasks/{param}/taskProcessingResults/{param}/subject/serviceProvisioningErrors/$count and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTaskProcessingResultSubjectServiceProvisioningErrorCount' unshipped" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/tasks/{param}/taskProcessingResults/{param}/task","suppress",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTaskProcessingResultTask","no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/tasks/{param}/taskProcessingResults/{param}/task and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTaskProcessingResultTask' unshipped" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/tasks/{param}/taskProcessingResults/$count","suppress",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTaskProcessingResultCount","no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/tasks/{param}/taskProcessingResults/$count and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTaskProcessingResultCount' unshipped" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/tasks/$count","suppress",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTaskCount","no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/tasks/$count and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTaskCount' unshipped" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/$count","suppress",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionCount","no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/$count and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionCount' unshipped" +"GET","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/$count","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowCount","Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowCount" +"GET","/identityGovernance/lifecycleWorkflows/insights","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowInsight","Get-MgIdentityGovernanceLifecycleWorkflowInsight" +"GET","/identityGovernance/lifecycleWorkflows/settings","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowSetting","Get-MgIdentityGovernanceLifecycleWorkflowSetting" +"GET","/identityGovernance/lifecycleWorkflows/taskDefinitions","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowTaskDefinition","Get-MgIdentityGovernanceLifecycleWorkflowTaskDefinition" +"GET","/identityGovernance/lifecycleWorkflows/taskDefinitions/{param}","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowTaskDefinition","Get-MgIdentityGovernanceLifecycleWorkflowTaskDefinition" +"GET","/identityGovernance/lifecycleWorkflows/taskDefinitions/$count","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowTaskDefinitionCount","Get-MgIdentityGovernanceLifecycleWorkflowTaskDefinitionCount" +"GET","/identityGovernance/lifecycleWorkflows/workflows","keep",,"Get-MgIdentityGovernanceLifecycleWorkflow","Get-MgIdentityGovernanceLifecycleWorkflow" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}","keep",,"Get-MgIdentityGovernanceLifecycleWorkflow","Get-MgIdentityGovernanceLifecycleWorkflow" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/administrationScopeTargets","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowAdministrationScopeTarget","Get-MgIdentityGovernanceLifecycleWorkflowAdministrationScopeTarget" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/administrationScopeTargets/{param}","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowAdministrationScopeTarget","Get-MgIdentityGovernanceLifecycleWorkflowAdministrationScopeTarget" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/administrationScopeTargets/$count","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowAdministrationScopeTargetCount","Get-MgIdentityGovernanceLifecycleWorkflowAdministrationScopeTargetCount" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/createdBy","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowCreatedBy","Get-MgIdentityGovernanceLifecycleWorkflowCreatedBy" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/createdBy/mailboxSettings","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowCreatedByMailboxSetting","Get-MgIdentityGovernanceLifecycleWorkflowCreatedByMailboxSetting" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/createdBy/serviceProvisioningErrors","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowCreatedByServiceProvisioningError","Get-MgIdentityGovernanceLifecycleWorkflowCreatedByServiceProvisioningError" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/createdBy/serviceProvisioningErrors/$count","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowCreatedByServiceProvisioningErrorCount","Get-MgIdentityGovernanceLifecycleWorkflowCreatedByServiceProvisioningErrorCount" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/executionScope","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowExecutionScope","Get-MgIdentityGovernanceLifecycleWorkflowExecutionScope" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/executionScope/{param}","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowExecutionScope","Get-MgIdentityGovernanceLifecycleWorkflowExecutionScope" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/executionScope/$count","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowExecutionScopeCount","Get-MgIdentityGovernanceLifecycleWorkflowExecutionScopeCount" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/lastModifiedBy","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowLastModifiedBy","Get-MgIdentityGovernanceLifecycleWorkflowLastModifiedBy" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/lastModifiedBy/mailboxSettings","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowLastModifiedByMailboxSetting","Get-MgIdentityGovernanceLifecycleWorkflowLastModifiedByMailboxSetting" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/lastModifiedBy/serviceProvisioningErrors","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowLastModifiedByServiceProvisioningError","Get-MgIdentityGovernanceLifecycleWorkflowLastModifiedByServiceProvisioningError" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/lastModifiedBy/serviceProvisioningErrors/$count","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowLastModifiedByServiceProvisioningErrorCount","Get-MgIdentityGovernanceLifecycleWorkflowLastModifiedByServiceProvisioningErrorCount" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/previewScope","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowPreviewScope","Get-MgIdentityGovernanceLifecycleWorkflowPreviewScope" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/previewScope/{param}","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowPreviewScope","Get-MgIdentityGovernanceLifecycleWorkflowPreviewScope" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/previewScope/$count","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowPreviewScopeCount","Get-MgIdentityGovernanceLifecycleWorkflowPreviewScopeCount" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/runs","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowRun","Get-MgIdentityGovernanceLifecycleWorkflowRun" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowRun","Get-MgIdentityGovernanceLifecycleWorkflowRun" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/reprocessedRuns","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowRunReprocessedRun","Get-MgIdentityGovernanceLifecycleWorkflowRunReprocessedRun" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/reprocessedRuns/{param}","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowRunReprocessedRun","Get-MgIdentityGovernanceLifecycleWorkflowRunReprocessedRun" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/reprocessedRuns/$count","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowRunReprocessedRunCount","Get-MgIdentityGovernanceLifecycleWorkflowRunReprocessedRunCount" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/taskProcessingResults","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowRunTaskProcessingResult","Get-MgIdentityGovernanceLifecycleWorkflowRunTaskProcessingResult" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/taskProcessingResults/{param}","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowRunTaskProcessingResult","Get-MgIdentityGovernanceLifecycleWorkflowRunTaskProcessingResult" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/taskProcessingResults/{param}/subject","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowRunTaskProcessingResultSubject","Get-MgIdentityGovernanceLifecycleWorkflowRunTaskProcessingResultSubject" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/taskProcessingResults/{param}/subject/mailboxSettings","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowRunTaskProcessingResultSubjectMailboxSetting","Get-MgIdentityGovernanceLifecycleWorkflowRunTaskProcessingResultSubjectMailboxSetting" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/taskProcessingResults/{param}/subject/serviceProvisioningErrors","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowRunTaskProcessingResultSubjectServiceProvisioningError","Get-MgIdentityGovernanceLifecycleWorkflowRunTaskProcessingResultSubjectServiceProvisioningError" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/taskProcessingResults/{param}/subject/serviceProvisioningErrors/$count","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowRunTaskProcessingResultSubjectServiceProvisioningErrorCount","Get-MgIdentityGovernanceLifecycleWorkflowRunTaskProcessingResultSubjectServiceProvisioningErrorCount" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/taskProcessingResults/{param}/task","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowRunTaskProcessingResultTask","Get-MgIdentityGovernanceLifecycleWorkflowRunTaskProcessingResultTask" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/taskProcessingResults/$count","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowRunTaskProcessingResultCount","Get-MgIdentityGovernanceLifecycleWorkflowRunTaskProcessingResultCount" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/userProcessingResults","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResult","Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResult" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/userProcessingResults/{param}","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResult","Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResult" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/userProcessingResults/{param}/reprocessedRuns","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultReprocessedRun","Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultReprocessedRun" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/userProcessingResults/{param}/reprocessedRuns/{param}","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultReprocessedRun","Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultReprocessedRun" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/userProcessingResults/{param}/reprocessedRuns/$count","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultReprocessedRunCount","Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultReprocessedRunCount" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/userProcessingResults/{param}/subject","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultSubject","Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultSubject" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/userProcessingResults/{param}/subject/mailboxSettings","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultSubjectMailboxSetting","Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultSubjectMailboxSetting" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/userProcessingResults/{param}/subject/serviceProvisioningErrors","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultSubjectServiceProvisioningError","Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultSubjectServiceProvisioningError" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/userProcessingResults/{param}/subject/serviceProvisioningErrors/$count","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultSubjectServiceProvisioningErrorCount","Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultSubjectServiceProvisioningErrorCount" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/userProcessingResults/{param}/taskProcessingResults","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultTaskProcessingResult","Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultTaskProcessingResult" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/userProcessingResults/{param}/taskProcessingResults/{param}","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultTaskProcessingResult","Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultTaskProcessingResult" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/subject","suppress",,"Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultTaskProcessingResultSubject","no oracle row for GET /identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/subject and 'Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultTaskProcessingResultSubject' unshipped" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/subject/mailboxSettings","suppress",,"Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultTaskProcessingResultSubjectMailboxSetting","no oracle row for GET /identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/subject/mailboxSettings and 'Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultTaskProcessingResultSubjectMailboxSetting' unshipped" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/subject/serviceProvisioningErrors","suppress",,"Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultTaskProcessingResultSubjectServiceProvisioningError","no oracle row for GET /identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/subject/serviceProvisioningErrors and 'Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultTaskProcessingResultSubjectServiceProvisioningError' unshipped" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/subject/serviceProvisioningErrors/$count","suppress",,"Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultTaskProcessingResultSubjectServiceProvisioningErrorCount","no oracle row for GET /identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/subject/serviceProvisioningErrors/$count and 'Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultTaskProcessingResultSubjectServiceProvisioningErrorCount' unshipped" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/task","suppress",,"Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultTaskProcessingResultTask","no oracle row for GET /identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/task and 'Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultTaskProcessingResultTask' unshipped" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/userProcessingResults/{param}/taskProcessingResults/$count","suppress",,"Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultTaskProcessingResultCount","no oracle row for GET /identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/userProcessingResults/{param}/taskProcessingResults/$count and 'Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultTaskProcessingResultCount' unshipped" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/userProcessingResults/$count","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultCount","Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultCount" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/runs/$count","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowRunCount","Get-MgIdentityGovernanceLifecycleWorkflowRunCount" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/taskReports","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowTaskReport","Get-MgIdentityGovernanceLifecycleWorkflowTaskReport" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/taskReports/{param}","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowTaskReport","Get-MgIdentityGovernanceLifecycleWorkflowTaskReport" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/taskReports/{param}/task","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowTaskReportTask","Get-MgIdentityGovernanceLifecycleWorkflowTaskReportTask" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/taskReports/{param}/taskDefinition","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowTaskReportTaskDefinition","Get-MgIdentityGovernanceLifecycleWorkflowTaskReportTaskDefinition" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/taskReports/{param}/taskProcessingResults","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResult","Get-MgIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResult" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/taskReports/{param}/taskProcessingResults/{param}","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResult","Get-MgIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResult" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/taskReports/{param}/taskProcessingResults/{param}/subject","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResultSubject","Get-MgIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResultSubject" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/taskReports/{param}/taskProcessingResults/{param}/subject/mailboxSettings","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResultSubjectMailboxSetting","Get-MgIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResultSubjectMailboxSetting" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/taskReports/{param}/taskProcessingResults/{param}/subject/serviceProvisioningErrors","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResultSubjectServiceProvisioningError","Get-MgIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResultSubjectServiceProvisioningError" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/taskReports/{param}/taskProcessingResults/{param}/subject/serviceProvisioningErrors/$count","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResultSubjectServiceProvisioningErrorCount","Get-MgIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResultSubjectServiceProvisioningErrorCount" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/taskReports/{param}/taskProcessingResults/{param}/task","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResultTask","Get-MgIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResultTask" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/taskReports/{param}/taskProcessingResults/$count","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResultCount","Get-MgIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResultCount" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/taskReports/$count","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowTaskReportCount","Get-MgIdentityGovernanceLifecycleWorkflowTaskReportCount" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/tasks","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowTask","Get-MgIdentityGovernanceLifecycleWorkflowTask" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/tasks/{param}","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowTask","Get-MgIdentityGovernanceLifecycleWorkflowTask" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/tasks/{param}/taskProcessingResults","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowTaskProcessingResult","Get-MgIdentityGovernanceLifecycleWorkflowTaskProcessingResult" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/tasks/{param}/taskProcessingResults/{param}","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowTaskProcessingResult","Get-MgIdentityGovernanceLifecycleWorkflowTaskProcessingResult" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/tasks/{param}/taskProcessingResults/{param}/subject","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowTaskProcessingResultSubject","Get-MgIdentityGovernanceLifecycleWorkflowTaskProcessingResultSubject" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/tasks/{param}/taskProcessingResults/{param}/subject/mailboxSettings","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowTaskProcessingResultSubjectMailboxSetting","Get-MgIdentityGovernanceLifecycleWorkflowTaskProcessingResultSubjectMailboxSetting" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/tasks/{param}/taskProcessingResults/{param}/subject/serviceProvisioningErrors","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowTaskProcessingResultSubjectServiceProvisioningError","Get-MgIdentityGovernanceLifecycleWorkflowTaskProcessingResultSubjectServiceProvisioningError" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/tasks/{param}/taskProcessingResults/{param}/subject/serviceProvisioningErrors/$count","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowTaskProcessingResultSubjectServiceProvisioningErrorCount","Get-MgIdentityGovernanceLifecycleWorkflowTaskProcessingResultSubjectServiceProvisioningErrorCount" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/tasks/{param}/taskProcessingResults/{param}/task","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowTaskProcessingResultTask","Get-MgIdentityGovernanceLifecycleWorkflowTaskProcessingResultTask" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/tasks/{param}/taskProcessingResults/$count","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowTaskProcessingResultCount","Get-MgIdentityGovernanceLifecycleWorkflowTaskProcessingResultCount" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/tasks/$count","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowTaskCount","Get-MgIdentityGovernanceLifecycleWorkflowTaskCount" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/userProcessingResults","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResult","Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResult" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/userProcessingResults/{param}","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResult","Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResult" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/userProcessingResults/{param}/reprocessedRuns","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultReprocessedRun","Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultReprocessedRun" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/userProcessingResults/{param}/reprocessedRuns/{param}","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultReprocessedRun","Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultReprocessedRun" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/userProcessingResults/{param}/reprocessedRuns/$count","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultReprocessedRunCount","Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultReprocessedRunCount" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/userProcessingResults/{param}/subject","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultSubject","Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultSubject" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/userProcessingResults/{param}/subject/mailboxSettings","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultSubjectMailboxSetting","Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultSubjectMailboxSetting" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/userProcessingResults/{param}/subject/serviceProvisioningErrors","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultSubjectServiceProvisioningError","Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultSubjectServiceProvisioningError" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/userProcessingResults/{param}/subject/serviceProvisioningErrors/$count","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultSubjectServiceProvisioningErrorCount","Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultSubjectServiceProvisioningErrorCount" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/userProcessingResults/{param}/taskProcessingResults","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultTaskProcessingResult","Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultTaskProcessingResult" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/userProcessingResults/{param}/taskProcessingResults/{param}","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultTaskProcessingResult","Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultTaskProcessingResult" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/subject","suppress",,"Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultTaskProcessingResultSubject","no oracle row for GET /identityGovernance/lifecycleWorkflows/workflows/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/subject and 'Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultTaskProcessingResultSubject' unshipped" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/subject/mailboxSettings","suppress",,"Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultTaskProcessingResultSubjectMailboxSetting","no oracle row for GET /identityGovernance/lifecycleWorkflows/workflows/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/subject/mailboxSettings and 'Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultTaskProcessingResultSubjectMailboxSetting' unshipped" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/subject/serviceProvisioningErrors","suppress",,"Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultTaskProcessingResultSubjectServiceProvisioningError","no oracle row for GET /identityGovernance/lifecycleWorkflows/workflows/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/subject/serviceProvisioningErrors and 'Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultTaskProcessingResultSubjectServiceProvisioningError' unshipped" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/subject/serviceProvisioningErrors/$count","suppress",,"Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultTaskProcessingResultSubjectServiceProvisioningErrorCount","no oracle row for GET /identityGovernance/lifecycleWorkflows/workflows/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/subject/serviceProvisioningErrors/$count and 'Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultTaskProcessingResultSubjectServiceProvisioningErrorCount' unshipped" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/task","suppress",,"Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultTaskProcessingResultTask","no oracle row for GET /identityGovernance/lifecycleWorkflows/workflows/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/task and 'Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultTaskProcessingResultTask' unshipped" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/userProcessingResults/{param}/taskProcessingResults/$count","suppress",,"Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultTaskProcessingResultCount","no oracle row for GET /identityGovernance/lifecycleWorkflows/workflows/{param}/userProcessingResults/{param}/taskProcessingResults/$count and 'Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultTaskProcessingResultCount' unshipped" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/userProcessingResults/$count","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultCount","Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultCount" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/versions","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowVersion","Get-MgIdentityGovernanceLifecycleWorkflowVersion" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/versions/{param}","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowVersion","Get-MgIdentityGovernanceLifecycleWorkflowVersion" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/versions/{param}/administrationScopeTargets","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowVersionAdministrationScopeTarget","Get-MgIdentityGovernanceLifecycleWorkflowVersionAdministrationScopeTarget" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/versions/{param}/administrationScopeTargets/{param}","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowVersionAdministrationScopeTarget","Get-MgIdentityGovernanceLifecycleWorkflowVersionAdministrationScopeTarget" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/versions/{param}/administrationScopeTargets/$count","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowVersionAdministrationScopeTargetCount","Get-MgIdentityGovernanceLifecycleWorkflowVersionAdministrationScopeTargetCount" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/versions/{param}/createdBy","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowVersionCreatedBy","Get-MgIdentityGovernanceLifecycleWorkflowVersionCreatedBy" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/versions/{param}/createdBy/mailboxSettings","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowVersionCreatedByMailboxSetting","Get-MgIdentityGovernanceLifecycleWorkflowVersionCreatedByMailboxSetting" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/versions/{param}/createdBy/serviceProvisioningErrors","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowVersionCreatedByServiceProvisioningError","Get-MgIdentityGovernanceLifecycleWorkflowVersionCreatedByServiceProvisioningError" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/versions/{param}/createdBy/serviceProvisioningErrors/$count","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowVersionCreatedByServiceProvisioningErrorCount","Get-MgIdentityGovernanceLifecycleWorkflowVersionCreatedByServiceProvisioningErrorCount" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/versions/{param}/lastModifiedBy","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowVersionLastModifiedBy","Get-MgIdentityGovernanceLifecycleWorkflowVersionLastModifiedBy" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/versions/{param}/lastModifiedBy/mailboxSettings","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowVersionLastModifiedByMailboxSetting","Get-MgIdentityGovernanceLifecycleWorkflowVersionLastModifiedByMailboxSetting" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/versions/{param}/lastModifiedBy/serviceProvisioningErrors","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowVersionLastModifiedByServiceProvisioningError","Get-MgIdentityGovernanceLifecycleWorkflowVersionLastModifiedByServiceProvisioningError" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/versions/{param}/lastModifiedBy/serviceProvisioningErrors/$count","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowVersionLastModifiedByServiceProvisioningErrorCount","Get-MgIdentityGovernanceLifecycleWorkflowVersionLastModifiedByServiceProvisioningErrorCount" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/versions/{param}/tasks","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowVersionTask","Get-MgIdentityGovernanceLifecycleWorkflowVersionTask" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/versions/{param}/tasks/{param}","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowVersionTask","Get-MgIdentityGovernanceLifecycleWorkflowVersionTask" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/versions/{param}/tasks/{param}/taskProcessingResults","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResult","Get-MgIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResult" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/versions/{param}/tasks/{param}/taskProcessingResults/{param}","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResult","Get-MgIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResult" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/versions/{param}/tasks/{param}/taskProcessingResults/{param}/subject","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResultSubject","Get-MgIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResultSubject" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/versions/{param}/tasks/{param}/taskProcessingResults/{param}/subject/mailboxSettings","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResultSubjectMailboxSetting","Get-MgIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResultSubjectMailboxSetting" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/versions/{param}/tasks/{param}/taskProcessingResults/{param}/subject/serviceProvisioningErrors","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResultSubjectServiceProvisioningError","Get-MgIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResultSubjectServiceProvisioningError" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/versions/{param}/tasks/{param}/taskProcessingResults/{param}/subject/serviceProvisioningErrors/$count","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResultSubjectServiceProvisioningErrorCount","Get-MgIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResultSubjectServiceProvisioningErrorCount" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/versions/{param}/tasks/{param}/taskProcessingResults/{param}/task","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResultTask","Get-MgIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResultTask" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/versions/{param}/tasks/{param}/taskProcessingResults/$count","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResultCount","Get-MgIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResultCount" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/versions/{param}/tasks/$count","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowVersionTaskCount","Get-MgIdentityGovernanceLifecycleWorkflowVersionTaskCount" +"GET","/identityGovernance/lifecycleWorkflows/workflows/{param}/versions/$count","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowVersionCount","Get-MgIdentityGovernanceLifecycleWorkflowVersionCount" +"GET","/identityGovernance/lifecycleWorkflows/workflows/$count","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowCount","Get-MgIdentityGovernanceLifecycleWorkflowCount" +"GET","/identityGovernance/lifecycleWorkflows/workflowTemplates","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowTemplate","Get-MgIdentityGovernanceLifecycleWorkflowTemplate" +"GET","/identityGovernance/lifecycleWorkflows/workflowTemplates/{param}","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowTemplate","Get-MgIdentityGovernanceLifecycleWorkflowTemplate" +"GET","/identityGovernance/lifecycleWorkflows/workflowTemplates/{param}/tasks","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowTemplateTask","Get-MgIdentityGovernanceLifecycleWorkflowTemplateTask" +"GET","/identityGovernance/lifecycleWorkflows/workflowTemplates/{param}/tasks/{param}","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowTemplateTask","Get-MgIdentityGovernanceLifecycleWorkflowTemplateTask" +"GET","/identityGovernance/lifecycleWorkflows/workflowTemplates/{param}/tasks/{param}/taskProcessingResults","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResult","Get-MgIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResult" +"GET","/identityGovernance/lifecycleWorkflows/workflowTemplates/{param}/tasks/{param}/taskProcessingResults/{param}","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResult","Get-MgIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResult" +"GET","/identityGovernance/lifecycleWorkflows/workflowTemplates/{param}/tasks/{param}/taskProcessingResults/{param}/subject","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResultSubject","Get-MgIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResultSubject" +"GET","/identityGovernance/lifecycleWorkflows/workflowTemplates/{param}/tasks/{param}/taskProcessingResults/{param}/subject/mailboxSettings","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResultSubjectMailboxSetting","Get-MgIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResultSubjectMailboxSetting" +"GET","/identityGovernance/lifecycleWorkflows/workflowTemplates/{param}/tasks/{param}/taskProcessingResults/{param}/subject/serviceProvisioningErrors","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResultSubjectServiceProvisioningError","Get-MgIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResultSubjectServiceProvisioningError" +"GET","/identityGovernance/lifecycleWorkflows/workflowTemplates/{param}/tasks/{param}/taskProcessingResults/{param}/subject/serviceProvisioningErrors/$count","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResultSubjectServiceProvisioningErrorCount","Get-MgIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResultSubjectServiceProvisioningErrorCount" +"GET","/identityGovernance/lifecycleWorkflows/workflowTemplates/{param}/tasks/{param}/taskProcessingResults/{param}/task","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResultTask","Get-MgIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResultTask" +"GET","/identityGovernance/lifecycleWorkflows/workflowTemplates/{param}/tasks/{param}/taskProcessingResults/$count","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResultCount","Get-MgIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResultCount" +"GET","/identityGovernance/lifecycleWorkflows/workflowTemplates/{param}/tasks/$count","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowTemplateTaskCount","Get-MgIdentityGovernanceLifecycleWorkflowTemplateTaskCount" +"GET","/identityGovernance/lifecycleWorkflows/workflowTemplates/$count","keep",,"Get-MgIdentityGovernanceLifecycleWorkflowTemplateCount","Get-MgIdentityGovernanceLifecycleWorkflowTemplateCount" +"GET","/identityGovernance/privilegedAccess","keep",,"Get-MgIdentityGovernancePrivilegedAccess","Get-MgIdentityGovernancePrivilegedAccess" +"GET","/identityGovernance/privilegedAccess/group","keep",,"Get-MgIdentityGovernancePrivilegedAccessGroup","Get-MgIdentityGovernancePrivilegedAccessGroup" +"GET","/identityGovernance/privilegedAccess/group/assignmentApprovals","keep",,"Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentApproval","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentApproval" +"GET","/identityGovernance/privilegedAccess/group/assignmentApprovals/{param}","keep",,"Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentApproval","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentApproval" +"GET","/identityGovernance/privilegedAccess/group/assignmentApprovals/{param}/stages","keep",,"Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentApprovalStage","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentApprovalStage" +"GET","/identityGovernance/privilegedAccess/group/assignmentApprovals/{param}/stages/{param}","keep",,"Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentApprovalStage","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentApprovalStage" +"GET","/identityGovernance/privilegedAccess/group/assignmentApprovals/{param}/stages/$count","keep",,"Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentApprovalStageCount","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentApprovalStageCount" +"GET","/identityGovernance/privilegedAccess/group/assignmentApprovals/$count","keep",,"Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentApprovalCount","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentApprovalCount" +"GET","/identityGovernance/privilegedAccess/group/assignmentScheduleInstances","keep",,"Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstance","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstance" +"GET","/identityGovernance/privilegedAccess/group/assignmentScheduleInstances/{param}","keep",,"Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstance","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstance" +"GET","/identityGovernance/privilegedAccess/group/assignmentScheduleInstances/{param}/activatedUsing","keep",,"Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstanceActivatedUsing","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstanceActivatedUsing" +"GET","/identityGovernance/privilegedAccess/group/assignmentScheduleInstances/{param}/group","keep",,"Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstanceGroup","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstanceGroup" +"GET","/identityGovernance/privilegedAccess/group/assignmentScheduleInstances/{param}/group/serviceProvisioningErrors","keep",,"Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstanceGroupServiceProvisioningError","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstanceGroupServiceProvisioningError" +"GET","/identityGovernance/privilegedAccess/group/assignmentScheduleInstances/{param}/group/serviceProvisioningErrors/$count","keep",,"Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstanceGroupServiceProvisioningErrorCount","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstanceGroupServiceProvisioningErrorCount" +"GET","/identityGovernance/privilegedAccess/group/assignmentScheduleInstances/{param}/principal","keep",,"Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstancePrincipal","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstancePrincipal" +"GET","/identityGovernance/privilegedAccess/group/assignmentScheduleInstances/$count","keep",,"Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstanceCount","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstanceCount" +"GET","/identityGovernance/privilegedAccess/group/assignmentScheduleRequests","keep",,"Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequest","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequest" +"GET","/identityGovernance/privilegedAccess/group/assignmentScheduleRequests/{param}","keep",,"Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequest","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequest" +"GET","/identityGovernance/privilegedAccess/group/assignmentScheduleRequests/{param}/activatedUsing","keep",,"Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestActivatedUsing","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestActivatedUsing" +"GET","/identityGovernance/privilegedAccess/group/assignmentScheduleRequests/{param}/group","keep",,"Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestGroup","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestGroup" +"GET","/identityGovernance/privilegedAccess/group/assignmentScheduleRequests/{param}/group/serviceProvisioningErrors","keep",,"Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestGroupServiceProvisioningError","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestGroupServiceProvisioningError" +"GET","/identityGovernance/privilegedAccess/group/assignmentScheduleRequests/{param}/group/serviceProvisioningErrors/$count","keep",,"Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestGroupServiceProvisioningErrorCount","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestGroupServiceProvisioningErrorCount" +"GET","/identityGovernance/privilegedAccess/group/assignmentScheduleRequests/{param}/principal","keep",,"Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestPrincipal","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestPrincipal" +"GET","/identityGovernance/privilegedAccess/group/assignmentScheduleRequests/{param}/targetSchedule","keep",,"Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestTargetSchedule","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestTargetSchedule" +"GET","/identityGovernance/privilegedAccess/group/assignmentScheduleRequests/$count","keep",,"Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestCount","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestCount" +"GET","/identityGovernance/privilegedAccess/group/assignmentSchedules","keep",,"Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentSchedule","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentSchedule" +"GET","/identityGovernance/privilegedAccess/group/assignmentSchedules/{param}","keep",,"Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentSchedule","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentSchedule" +"GET","/identityGovernance/privilegedAccess/group/assignmentSchedules/{param}/activatedUsing","keep",,"Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleActivatedUsing","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleActivatedUsing" +"GET","/identityGovernance/privilegedAccess/group/assignmentSchedules/{param}/group","keep",,"Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleGroup","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleGroup" +"GET","/identityGovernance/privilegedAccess/group/assignmentSchedules/{param}/group/serviceProvisioningErrors","keep",,"Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleGroupServiceProvisioningError","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleGroupServiceProvisioningError" +"GET","/identityGovernance/privilegedAccess/group/assignmentSchedules/{param}/group/serviceProvisioningErrors/$count","keep",,"Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleGroupServiceProvisioningErrorCount","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleGroupServiceProvisioningErrorCount" +"GET","/identityGovernance/privilegedAccess/group/assignmentSchedules/{param}/principal","keep",,"Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentSchedulePrincipal","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentSchedulePrincipal" +"GET","/identityGovernance/privilegedAccess/group/assignmentSchedules/$count","keep",,"Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleCount","Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleCount" +"GET","/identityGovernance/privilegedAccess/group/eligibilityScheduleInstances","keep",,"Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstance","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstance" +"GET","/identityGovernance/privilegedAccess/group/eligibilityScheduleInstances/{param}","keep",,"Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstance","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstance" +"GET","/identityGovernance/privilegedAccess/group/eligibilityScheduleInstances/{param}/group","keep",,"Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstanceGroup","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstanceGroup" +"GET","/identityGovernance/privilegedAccess/group/eligibilityScheduleInstances/{param}/group/serviceProvisioningErrors","keep",,"Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstanceGroupServiceProvisioningError","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstanceGroupServiceProvisioningError" +"GET","/identityGovernance/privilegedAccess/group/eligibilityScheduleInstances/{param}/group/serviceProvisioningErrors/$count","keep",,"Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstanceGroupServiceProvisioningErrorCount","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstanceGroupServiceProvisioningErrorCount" +"GET","/identityGovernance/privilegedAccess/group/eligibilityScheduleInstances/{param}/principal","keep",,"Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstancePrincipal","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstancePrincipal" +"GET","/identityGovernance/privilegedAccess/group/eligibilityScheduleInstances/$count","keep",,"Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstanceCount","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstanceCount" +"GET","/identityGovernance/privilegedAccess/group/eligibilityScheduleRequests","keep",,"Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequest","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequest" +"GET","/identityGovernance/privilegedAccess/group/eligibilityScheduleRequests/{param}","keep",,"Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequest","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequest" +"GET","/identityGovernance/privilegedAccess/group/eligibilityScheduleRequests/{param}/group","keep",,"Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequestGroup","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequestGroup" +"GET","/identityGovernance/privilegedAccess/group/eligibilityScheduleRequests/{param}/group/serviceProvisioningErrors","keep",,"Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequestGroupServiceProvisioningError","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequestGroupServiceProvisioningError" +"GET","/identityGovernance/privilegedAccess/group/eligibilityScheduleRequests/{param}/group/serviceProvisioningErrors/$count","keep",,"Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequestGroupServiceProvisioningErrorCount","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequestGroupServiceProvisioningErrorCount" +"GET","/identityGovernance/privilegedAccess/group/eligibilityScheduleRequests/{param}/principal","keep",,"Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequestPrincipal","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequestPrincipal" +"GET","/identityGovernance/privilegedAccess/group/eligibilityScheduleRequests/{param}/targetSchedule","keep",,"Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequestTargetSchedule","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequestTargetSchedule" +"GET","/identityGovernance/privilegedAccess/group/eligibilityScheduleRequests/$count","keep",,"Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequestCount","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequestCount" +"GET","/identityGovernance/privilegedAccess/group/eligibilitySchedules","keep",,"Get-MgIdentityGovernancePrivilegedAccessGroupEligibilitySchedule","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilitySchedule" +"GET","/identityGovernance/privilegedAccess/group/eligibilitySchedules/{param}","keep",,"Get-MgIdentityGovernancePrivilegedAccessGroupEligibilitySchedule","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilitySchedule" +"GET","/identityGovernance/privilegedAccess/group/eligibilitySchedules/{param}/group","keep",,"Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleGroup","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleGroup" +"GET","/identityGovernance/privilegedAccess/group/eligibilitySchedules/{param}/group/serviceProvisioningErrors","keep",,"Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleGroupServiceProvisioningError","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleGroupServiceProvisioningError" +"GET","/identityGovernance/privilegedAccess/group/eligibilitySchedules/{param}/group/serviceProvisioningErrors/$count","keep",,"Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleGroupServiceProvisioningErrorCount","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleGroupServiceProvisioningErrorCount" +"GET","/identityGovernance/privilegedAccess/group/eligibilitySchedules/{param}/principal","keep",,"Get-MgIdentityGovernancePrivilegedAccessGroupEligibilitySchedulePrincipal","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilitySchedulePrincipal" +"GET","/identityGovernance/privilegedAccess/group/eligibilitySchedules/$count","keep",,"Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleCount","Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleCount" +"GET","/identityGovernance/termsOfUse","suppress",,"Get-MgIdentityGovernanceTermOfUse","no oracle row for GET /identityGovernance/termsOfUse and 'Get-MgIdentityGovernanceTermOfUse' unshipped" +"GET","/identityGovernance/termsOfUse/agreementAcceptances","rename","IdentityGovernanceTermsOfUseAgreementAcceptance","Get-MgIdentityGovernanceTermOfUseAgreementAcceptance","Get-MgIdentityGovernanceTermsOfUseAgreementAcceptance" +"GET","/identityGovernance/termsOfUse/agreementAcceptances/{param}","rename","IdentityGovernanceTermsOfUseAgreementAcceptance","Get-MgIdentityGovernanceTermOfUseAgreementAcceptance","Get-MgIdentityGovernanceTermsOfUseAgreementAcceptance" +"GET","/identityGovernance/termsOfUse/agreementAcceptances/$count","rename","IdentityGovernanceTermsOfUseAgreementAcceptanceCount","Get-MgIdentityGovernanceTermOfUseAgreementAcceptanceCount","Get-MgIdentityGovernanceTermsOfUseAgreementAcceptanceCount" +"GET","/identityGovernance/termsOfUse/agreements","rename","IdentityGovernanceTermsOfUseAgreement","Get-MgIdentityGovernanceTermOfUseAgreement","Get-MgIdentityGovernanceTermsOfUseAgreement" +"GET","/identityGovernance/termsOfUse/agreements/{param}","rename","IdentityGovernanceTermsOfUseAgreement","Get-MgIdentityGovernanceTermOfUseAgreement","Get-MgIdentityGovernanceTermsOfUseAgreement" +"GET","/identityGovernance/termsOfUse/agreements/{param}/file/localizations","rename","IdentityGovernanceTermsOfUseAgreementFileLocalization","Get-MgIdentityGovernanceTermOfUseAgreementFileLocalization","Get-MgIdentityGovernanceTermsOfUseAgreementFileLocalization" +"GET","/identityGovernance/termsOfUse/agreements/{param}/file/localizations/{param}","rename","IdentityGovernanceTermsOfUseAgreementFileLocalization","Get-MgIdentityGovernanceTermOfUseAgreementFileLocalization","Get-MgIdentityGovernanceTermsOfUseAgreementFileLocalization" +"GET","/identityGovernance/termsOfUse/agreements/{param}/file/localizations/{param}/versions","rename","IdentityGovernanceTermsOfUseAgreementFileLocalizationVersion","Get-MgIdentityGovernanceTermOfUseAgreementFileLocalizationVersion","Get-MgIdentityGovernanceTermsOfUseAgreementFileLocalizationVersion" +"GET","/identityGovernance/termsOfUse/agreements/{param}/file/localizations/{param}/versions/{param}","rename","IdentityGovernanceTermsOfUseAgreementFileLocalizationVersion","Get-MgIdentityGovernanceTermOfUseAgreementFileLocalizationVersion","Get-MgIdentityGovernanceTermsOfUseAgreementFileLocalizationVersion" +"GET","/identityGovernance/termsOfUse/agreements/{param}/file/localizations/{param}/versions/$count","rename","IdentityGovernanceTermsOfUseAgreementFileLocalizationVersionCount","Get-MgIdentityGovernanceTermOfUseAgreementFileLocalizationVersionCount","Get-MgIdentityGovernanceTermsOfUseAgreementFileLocalizationVersionCount" +"GET","/identityGovernance/termsOfUse/agreements/{param}/file/localizations/$count","rename","IdentityGovernanceTermsOfUseAgreementFileLocalizationCount","Get-MgIdentityGovernanceTermOfUseAgreementFileLocalizationCount","Get-MgIdentityGovernanceTermsOfUseAgreementFileLocalizationCount" +"GET","/identityGovernance/termsOfUse/agreements/{param}/files","rename","IdentityGovernanceTermsOfUseAgreementFile","Get-MgIdentityGovernanceTermOfUseAgreementFile","Get-MgIdentityGovernanceTermsOfUseAgreementFile" +"GET","/identityGovernance/termsOfUse/agreements/{param}/files/{param}/versions","rename","IdentityGovernanceTermsOfUseAgreementFileVersion","Get-MgIdentityGovernanceTermOfUseAgreementFileVersion","Get-MgIdentityGovernanceTermsOfUseAgreementFileVersion" +"GET","/identityGovernance/termsOfUse/agreements/{param}/files/{param}/versions/{param}","rename","IdentityGovernanceTermsOfUseAgreementFileVersion","Get-MgIdentityGovernanceTermOfUseAgreementFileVersion","Get-MgIdentityGovernanceTermsOfUseAgreementFileVersion" +"GET","/identityGovernance/termsOfUse/agreements/{param}/files/{param}/versions/$count","rename","IdentityGovernanceTermsOfUseAgreementFileVersionCount","Get-MgIdentityGovernanceTermOfUseAgreementFileVersionCount","Get-MgIdentityGovernanceTermsOfUseAgreementFileVersionCount" +"GET","/identityGovernance/termsOfUse/agreements/{param}/files/$count","rename","IdentityGovernanceTermsOfUseAgreementFileCount","Get-MgIdentityGovernanceTermOfUseAgreementFileCount","Get-MgIdentityGovernanceTermsOfUseAgreementFileCount" +"GET","/identityGovernance/termsOfUse/agreements/$count","rename","IdentityGovernanceTermsOfUseAgreementCount","Get-MgIdentityGovernanceTermOfUseAgreementCount","Get-MgIdentityGovernanceTermsOfUseAgreementCount" +"GET","/identityProtection","suppress",,"Get-MgIdentityProtection","no oracle row for GET /identityProtection and 'Get-MgIdentityProtection' unshipped" +"GET","/identityProtection/riskDetections","rename","RiskDetection","Get-MgIdentityProtectionRiskDetection","Get-MgRiskDetection" +"GET","/identityProtection/riskDetections/{param}","rename","RiskDetection","Get-MgIdentityProtectionRiskDetection","Get-MgRiskDetection" +"GET","/identityProtection/riskDetections/$count","rename","RiskDetectionCount","Get-MgIdentityProtectionRiskDetectionCount","Get-MgRiskDetectionCount" +"GET","/identityProtection/riskyServicePrincipals","rename","RiskyServicePrincipal","Get-MgIdentityProtectionRiskyServicePrincipal","Get-MgRiskyServicePrincipal" +"GET","/identityProtection/riskyServicePrincipals/{param}","rename","RiskyServicePrincipal","Get-MgIdentityProtectionRiskyServicePrincipal","Get-MgRiskyServicePrincipal" +"GET","/identityProtection/riskyServicePrincipals/{param}/history","rename","RiskyServicePrincipalHistory","Get-MgIdentityProtectionRiskyServicePrincipalHistory","Get-MgRiskyServicePrincipalHistory" +"GET","/identityProtection/riskyServicePrincipals/{param}/history/{param}","rename","RiskyServicePrincipalHistory","Get-MgIdentityProtectionRiskyServicePrincipalHistory","Get-MgRiskyServicePrincipalHistory" +"GET","/identityProtection/riskyServicePrincipals/{param}/history/$count","rename","RiskyServicePrincipalHistoryCount","Get-MgIdentityProtectionRiskyServicePrincipalHistoryCount","Get-MgRiskyServicePrincipalHistoryCount" +"GET","/identityProtection/riskyServicePrincipals/$count","rename","RiskyServicePrincipalCount","Get-MgIdentityProtectionRiskyServicePrincipalCount","Get-MgRiskyServicePrincipalCount" +"GET","/identityProtection/riskyUsers","rename","RiskyUser","Get-MgIdentityProtectionRiskyUser","Get-MgRiskyUser" +"GET","/identityProtection/riskyUsers/{param}","rename","RiskyUser","Get-MgIdentityProtectionRiskyUser","Get-MgRiskyUser" +"GET","/identityProtection/riskyUsers/{param}/history","rename","RiskyUserHistory","Get-MgIdentityProtectionRiskyUserHistory","Get-MgRiskyUserHistory" +"GET","/identityProtection/riskyUsers/{param}/history/{param}","rename","RiskyUserHistory","Get-MgIdentityProtectionRiskyUserHistory","Get-MgRiskyUserHistory" +"GET","/identityProtection/riskyUsers/{param}/history/$count","rename","RiskyUserHistoryCount","Get-MgIdentityProtectionRiskyUserHistoryCount","Get-MgRiskyUserHistoryCount" +"GET","/identityProtection/riskyUsers/$count","rename","RiskyUserCount","Get-MgIdentityProtectionRiskyUserCount","Get-MgRiskyUserCount" +"GET","/identityProtection/servicePrincipalRiskDetections","rename","ServicePrincipalRiskDetection","Get-MgIdentityProtectionServicePrincipalRiskDetection","Get-MgServicePrincipalRiskDetection" +"GET","/identityProtection/servicePrincipalRiskDetections/{param}","rename","ServicePrincipalRiskDetection","Get-MgIdentityProtectionServicePrincipalRiskDetection","Get-MgServicePrincipalRiskDetection" +"GET","/identityProtection/servicePrincipalRiskDetections/$count","rename","ServicePrincipalRiskDetectionCount","Get-MgIdentityProtectionServicePrincipalRiskDetectionCount","Get-MgServicePrincipalRiskDetectionCount" +"GET","/informationProtection","keep",,"Get-MgInformationProtection","Get-MgInformationProtection" +"GET","/informationProtection/bitlocker","keep",,"Get-MgInformationProtectionBitlocker","Get-MgInformationProtectionBitlocker" +"GET","/informationProtection/bitlocker/recoveryKeys","keep",,"Get-MgInformationProtectionBitlockerRecoveryKey","Get-MgInformationProtectionBitlockerRecoveryKey" +"GET","/informationProtection/bitlocker/recoveryKeys/{param}","keep",,"Get-MgInformationProtectionBitlockerRecoveryKey","Get-MgInformationProtectionBitlockerRecoveryKey" +"GET","/informationProtection/bitlocker/recoveryKeys/$count","keep",,"Get-MgInformationProtectionBitlockerRecoveryKeyCount","Get-MgInformationProtectionBitlockerRecoveryKeyCount" +"GET","/informationProtection/threatAssessmentRequests","keep",,"Get-MgInformationProtectionThreatAssessmentRequest","Get-MgInformationProtectionThreatAssessmentRequest" +"GET","/informationProtection/threatAssessmentRequests/{param}","keep",,"Get-MgInformationProtectionThreatAssessmentRequest","Get-MgInformationProtectionThreatAssessmentRequest" +"GET","/informationProtection/threatAssessmentRequests/{param}/results","keep",,"Get-MgInformationProtectionThreatAssessmentRequestResult","Get-MgInformationProtectionThreatAssessmentRequestResult" +"GET","/informationProtection/threatAssessmentRequests/{param}/results/{param}","keep",,"Get-MgInformationProtectionThreatAssessmentRequestResult","Get-MgInformationProtectionThreatAssessmentRequestResult" +"GET","/informationProtection/threatAssessmentRequests/{param}/results/$count","keep",,"Get-MgInformationProtectionThreatAssessmentRequestResultCount","Get-MgInformationProtectionThreatAssessmentRequestResultCount" +"GET","/informationProtection/threatAssessmentRequests/$count","keep",,"Get-MgInformationProtectionThreatAssessmentRequestCount","Get-MgInformationProtectionThreatAssessmentRequestCount" +"GET","/invitations","keep",,"Get-MgInvitation","Get-MgInvitation" +"GET","/invitations/$count","keep",,"Get-MgInvitationCount","Get-MgInvitationCount" +"GET","/invitations/invitedUser","suppress",,"Get-MgInvitationInvitedUser","no oracle row for GET /invitations/invitedUser and 'Get-MgInvitationInvitedUser' unshipped" +"GET","/invitations/invitedUser/mailboxSettings","keep",,"Get-MgInvitationInvitedUserMailboxSetting","Get-MgInvitationInvitedUserMailboxSetting" +"GET","/invitations/invitedUser/serviceProvisioningErrors","keep",,"Get-MgInvitationInvitedUserServiceProvisioningError","Get-MgInvitationInvitedUserServiceProvisioningError" +"GET","/invitations/invitedUser/serviceProvisioningErrors/$count","keep",,"Get-MgInvitationInvitedUserServiceProvisioningErrorCount","Get-MgInvitationInvitedUserServiceProvisioningErrorCount" +"GET","/invitations/invitedUserSponsors","keep",,"Get-MgInvitationInvitedUserSponsor","Get-MgInvitationInvitedUserSponsor" +"GET","/invitations/invitedUserSponsors/{param}","keep",,"Get-MgInvitationInvitedUserSponsor","Get-MgInvitationInvitedUserSponsor" +"GET","/invitations/invitedUserSponsors/$count","keep",,"Get-MgInvitationInvitedUserSponsorCount","Get-MgInvitationInvitedUserSponsorCount" +"GET","/oauth2PermissionGrants","keep",,"Get-MgOauth2PermissionGrant","Get-MgOauth2PermissionGrant" +"GET","/oauth2PermissionGrants/{param}","keep",,"Get-MgOauth2PermissionGrant","Get-MgOauth2PermissionGrant" +"GET","/oauth2PermissionGrants/$count","keep",,"Get-MgOauth2PermissionGrantCount","Get-MgOauth2PermissionGrantCount" +"GET","/oauth2PermissionGrants/delta","keep",,"Get-MgOauth2PermissionGrantDelta","Get-MgOauth2PermissionGrantDelta" +"GET","/organization","keep",,"Get-MgOrganization","Get-MgOrganization" +"GET","/organization/{param}","keep",,"Get-MgOrganization","Get-MgOrganization" +"GET","/organization/{param}/branding","keep",,"Get-MgOrganizationBranding","Get-MgOrganizationBranding" +"GET","/organization/{param}/branding/localizations","keep",,"Get-MgOrganizationBrandingLocalization","Get-MgOrganizationBrandingLocalization" +"GET","/organization/{param}/branding/localizations/{param}","keep",,"Get-MgOrganizationBrandingLocalization","Get-MgOrganizationBrandingLocalization" +"GET","/organization/{param}/branding/localizations/$count","keep",,"Get-MgOrganizationBrandingLocalizationCount","Get-MgOrganizationBrandingLocalizationCount" +"GET","/organization/{param}/certificateBasedAuthConfiguration","keep",,"Get-MgOrganizationCertificateBasedAuthConfiguration","Get-MgOrganizationCertificateBasedAuthConfiguration" +"GET","/organization/{param}/certificateBasedAuthConfiguration/{param}","keep",,"Get-MgOrganizationCertificateBasedAuthConfiguration","Get-MgOrganizationCertificateBasedAuthConfiguration" +"GET","/organization/{param}/certificateBasedAuthConfiguration/$count","keep",,"Get-MgOrganizationCertificateBasedAuthConfigurationCount","Get-MgOrganizationCertificateBasedAuthConfigurationCount" +"GET","/organization/{param}/extensions","keep",,"Get-MgOrganizationExtension","Get-MgOrganizationExtension" +"GET","/organization/{param}/extensions/{param}","keep",,"Get-MgOrganizationExtension","Get-MgOrganizationExtension" +"GET","/organization/{param}/extensions/$count","keep",,"Get-MgOrganizationExtensionCount","Get-MgOrganizationExtensionCount" +"GET","/organization/$count","keep",,"Get-MgOrganizationCount","Get-MgOrganizationCount" +"GET","/places/{param}/checkIns","keep",,"Get-MgPlaceCheckIn","deliberate correction; oracle ships Get-MgPlaceCheck" +"GET","/places/{param}/checkIns/{param}","keep",,"Get-MgPlaceCheckIn","deliberate correction; oracle ships Get-MgPlaceCheck" +"GET","/places/{param}/checkIns/$count","keep",,"Get-MgPlaceCheckInCount","Get-MgPlaceCheckInCount" +"GET","/places/{param}/descendants","rename","DescendantPlace","Get-MgPlaceDescendants","Invoke-MgDescendantPlace" +"GET","/places/$count","keep",,"Get-MgPlaceCount","Get-MgPlaceCount" +"GET","/planner","keep",,"Get-MgPlanner","Get-MgPlanner" +"GET","/planner/buckets","keep",,"Get-MgPlannerBucket","Get-MgPlannerBucket" +"GET","/planner/buckets/{param}","keep",,"Get-MgPlannerBucket","Get-MgPlannerBucket" +"GET","/planner/buckets/{param}/tasks","keep",,"Get-MgPlannerBucketTask","Get-MgPlannerBucketTask" +"GET","/planner/buckets/{param}/tasks/{param}","defer-crosspath",,"Get-MgPlannerBucketTask","Get-MgPlannerBucketTask ships from a different uri" +"GET","/planner/buckets/{param}/tasks/{param}/assignedToTaskBoardFormat","suppress",,"Get-MgPlannerBucketTaskAssignedToTaskBoardFormat","no oracle row for GET /planner/buckets/{param}/tasks/{param}/assignedToTaskBoardFormat and 'Get-MgPlannerBucketTaskAssignedToTaskBoardFormat' unshipped" +"GET","/planner/buckets/{param}/tasks/{param}/bucketTaskBoardFormat","suppress",,"Get-MgPlannerBucketTaskBucketTaskBoardFormat","no oracle row for GET /planner/buckets/{param}/tasks/{param}/bucketTaskBoardFormat and 'Get-MgPlannerBucketTaskBucketTaskBoardFormat' unshipped" +"GET","/planner/buckets/{param}/tasks/{param}/details","suppress",,"Get-MgPlannerBucketTaskDetail","no oracle row for GET /planner/buckets/{param}/tasks/{param}/details and 'Get-MgPlannerBucketTaskDetail' unshipped" +"GET","/planner/buckets/{param}/tasks/{param}/progressTaskBoardFormat","suppress",,"Get-MgPlannerBucketTaskProgressTaskBoardFormat","no oracle row for GET /planner/buckets/{param}/tasks/{param}/progressTaskBoardFormat and 'Get-MgPlannerBucketTaskProgressTaskBoardFormat' unshipped" +"GET","/planner/buckets/{param}/tasks/$count","suppress",,"Get-MgPlannerBucketTaskCount","no oracle row for GET /planner/buckets/{param}/tasks/$count and 'Get-MgPlannerBucketTaskCount' unshipped" +"GET","/planner/buckets/$count","keep",,"Get-MgPlannerBucketCount","Get-MgPlannerBucketCount" +"GET","/planner/plans","keep",,"Get-MgPlannerPlan","Get-MgPlannerPlan" +"GET","/planner/plans/{param}","keep",,"Get-MgPlannerPlan","Get-MgPlannerPlan" +"GET","/planner/plans/{param}/buckets","keep",,"Get-MgPlannerPlanBucket","Get-MgPlannerPlanBucket" +"GET","/planner/plans/{param}/buckets/{param}","defer-crosspath",,"Get-MgPlannerPlanBucket","Get-MgPlannerPlanBucket ships from a different uri" +"GET","/planner/plans/{param}/buckets/{param}/tasks","suppress",,"Get-MgPlannerPlanBucketTask","no oracle row for GET /planner/plans/{param}/buckets/{param}/tasks and 'Get-MgPlannerPlanBucketTask' unshipped" +"GET","/planner/plans/{param}/buckets/{param}/tasks/{param}","suppress",,"Get-MgPlannerPlanBucketTask","no oracle row for GET /planner/plans/{param}/buckets/{param}/tasks/{param} and 'Get-MgPlannerPlanBucketTask' unshipped" +"GET","/planner/plans/{param}/buckets/{param}/tasks/{param}/assignedToTaskBoardFormat","suppress",,"Get-MgPlannerPlanBucketTaskAssignedToTaskBoardFormat","no oracle row for GET /planner/plans/{param}/buckets/{param}/tasks/{param}/assignedToTaskBoardFormat and 'Get-MgPlannerPlanBucketTaskAssignedToTaskBoardFormat' unshipped" +"GET","/planner/plans/{param}/buckets/{param}/tasks/{param}/bucketTaskBoardFormat","suppress",,"Get-MgPlannerPlanBucketTaskBucketTaskBoardFormat","no oracle row for GET /planner/plans/{param}/buckets/{param}/tasks/{param}/bucketTaskBoardFormat and 'Get-MgPlannerPlanBucketTaskBucketTaskBoardFormat' unshipped" +"GET","/planner/plans/{param}/buckets/{param}/tasks/{param}/details","suppress",,"Get-MgPlannerPlanBucketTaskDetail","no oracle row for GET /planner/plans/{param}/buckets/{param}/tasks/{param}/details and 'Get-MgPlannerPlanBucketTaskDetail' unshipped" +"GET","/planner/plans/{param}/buckets/{param}/tasks/{param}/progressTaskBoardFormat","suppress",,"Get-MgPlannerPlanBucketTaskProgressTaskBoardFormat","no oracle row for GET /planner/plans/{param}/buckets/{param}/tasks/{param}/progressTaskBoardFormat and 'Get-MgPlannerPlanBucketTaskProgressTaskBoardFormat' unshipped" +"GET","/planner/plans/{param}/buckets/{param}/tasks/$count","suppress",,"Get-MgPlannerPlanBucketTaskCount","no oracle row for GET /planner/plans/{param}/buckets/{param}/tasks/$count and 'Get-MgPlannerPlanBucketTaskCount' unshipped" +"GET","/planner/plans/{param}/buckets/$count","suppress",,"Get-MgPlannerPlanBucketCount","no oracle row for GET /planner/plans/{param}/buckets/$count and 'Get-MgPlannerPlanBucketCount' unshipped" +"GET","/planner/plans/{param}/details","keep",,"Get-MgPlannerPlanDetail","Get-MgPlannerPlanDetail" +"GET","/planner/plans/{param}/tasks","keep",,"Get-MgPlannerPlanTask","Get-MgPlannerPlanTask" +"GET","/planner/plans/{param}/tasks/{param}","defer-crosspath",,"Get-MgPlannerPlanTask","Get-MgPlannerPlanTask ships from a different uri" +"GET","/planner/plans/{param}/tasks/{param}/assignedToTaskBoardFormat","suppress",,"Get-MgPlannerPlanTaskAssignedToTaskBoardFormat","no oracle row for GET /planner/plans/{param}/tasks/{param}/assignedToTaskBoardFormat and 'Get-MgPlannerPlanTaskAssignedToTaskBoardFormat' unshipped" +"GET","/planner/plans/{param}/tasks/{param}/bucketTaskBoardFormat","suppress",,"Get-MgPlannerPlanTaskBucketTaskBoardFormat","no oracle row for GET /planner/plans/{param}/tasks/{param}/bucketTaskBoardFormat and 'Get-MgPlannerPlanTaskBucketTaskBoardFormat' unshipped" +"GET","/planner/plans/{param}/tasks/{param}/details","suppress",,"Get-MgPlannerPlanTaskDetail","no oracle row for GET /planner/plans/{param}/tasks/{param}/details and 'Get-MgPlannerPlanTaskDetail' unshipped" +"GET","/planner/plans/{param}/tasks/{param}/progressTaskBoardFormat","suppress",,"Get-MgPlannerPlanTaskProgressTaskBoardFormat","no oracle row for GET /planner/plans/{param}/tasks/{param}/progressTaskBoardFormat and 'Get-MgPlannerPlanTaskProgressTaskBoardFormat' unshipped" +"GET","/planner/plans/{param}/tasks/$count","suppress",,"Get-MgPlannerPlanTaskCount","no oracle row for GET /planner/plans/{param}/tasks/$count and 'Get-MgPlannerPlanTaskCount' unshipped" +"GET","/planner/plans/$count","keep",,"Get-MgPlannerPlanCount","Get-MgPlannerPlanCount" +"GET","/planner/tasks","keep",,"Get-MgPlannerTask","Get-MgPlannerTask" +"GET","/planner/tasks/{param}","keep",,"Get-MgPlannerTask","Get-MgPlannerTask" +"GET","/planner/tasks/{param}/assignedToTaskBoardFormat","keep",,"Get-MgPlannerTaskAssignedToTaskBoardFormat","Get-MgPlannerTaskAssignedToTaskBoardFormat" +"GET","/planner/tasks/{param}/bucketTaskBoardFormat","keep",,"Get-MgPlannerTaskBucketTaskBoardFormat","Get-MgPlannerTaskBucketTaskBoardFormat" +"GET","/planner/tasks/{param}/details","keep",,"Get-MgPlannerTaskDetail","Get-MgPlannerTaskDetail" +"GET","/planner/tasks/{param}/progressTaskBoardFormat","keep",,"Get-MgPlannerTaskProgressTaskBoardFormat","Get-MgPlannerTaskProgressTaskBoardFormat" +"GET","/planner/tasks/$count","keep",,"Get-MgPlannerTaskCount","Get-MgPlannerTaskCount" +"GET","/policies","suppress",,"Get-MgPolicy","no oracle row for GET /policies and 'Get-MgPolicy' unshipped" +"GET","/policies/activityBasedTimeoutPolicies","keep",,"Get-MgPolicyActivityBasedTimeoutPolicy","Get-MgPolicyActivityBasedTimeoutPolicy" +"GET","/policies/activityBasedTimeoutPolicies/{param}","keep",,"Get-MgPolicyActivityBasedTimeoutPolicy","Get-MgPolicyActivityBasedTimeoutPolicy" +"GET","/policies/activityBasedTimeoutPolicies/{param}/appliesTo","keep",,"Get-MgPolicyActivityBasedTimeoutPolicyApplyTo","Get-MgPolicyActivityBasedTimeoutPolicyApplyTo" +"GET","/policies/activityBasedTimeoutPolicies/{param}/appliesTo/{param}","keep",,"Get-MgPolicyActivityBasedTimeoutPolicyApplyTo","Get-MgPolicyActivityBasedTimeoutPolicyApplyTo" +"GET","/policies/activityBasedTimeoutPolicies/{param}/appliesTo/$count","keep",,"Get-MgPolicyActivityBasedTimeoutPolicyApplyToCount","Get-MgPolicyActivityBasedTimeoutPolicyApplyToCount" +"GET","/policies/activityBasedTimeoutPolicies/$count","keep",,"Get-MgPolicyActivityBasedTimeoutPolicyCount","Get-MgPolicyActivityBasedTimeoutPolicyCount" +"GET","/policies/adminConsentRequestPolicy","keep",,"Get-MgPolicyAdminConsentRequestPolicy","Get-MgPolicyAdminConsentRequestPolicy" +"GET","/policies/appManagementPolicies","keep",,"Get-MgPolicyAppManagementPolicy","Get-MgPolicyAppManagementPolicy" +"GET","/policies/appManagementPolicies/{param}","keep",,"Get-MgPolicyAppManagementPolicy","Get-MgPolicyAppManagementPolicy" +"GET","/policies/appManagementPolicies/{param}/appliesTo","keep",,"Get-MgPolicyAppManagementPolicyApplyTo","Get-MgPolicyAppManagementPolicyApplyTo" +"GET","/policies/appManagementPolicies/{param}/appliesTo/{param}","keep",,"Get-MgPolicyAppManagementPolicyApplyTo","Get-MgPolicyAppManagementPolicyApplyTo" +"GET","/policies/appManagementPolicies/{param}/appliesTo/$count","keep",,"Get-MgPolicyAppManagementPolicyApplyToCount","Get-MgPolicyAppManagementPolicyApplyToCount" +"GET","/policies/appManagementPolicies/$count","keep",,"Get-MgPolicyAppManagementPolicyCount","Get-MgPolicyAppManagementPolicyCount" +"GET","/policies/authenticationFlowsPolicy","keep",,"Get-MgPolicyAuthenticationFlowPolicy","Get-MgPolicyAuthenticationFlowPolicy" +"GET","/policies/authenticationMethodsPolicy","keep",,"Get-MgPolicyAuthenticationMethodPolicy","Get-MgPolicyAuthenticationMethodPolicy" +"GET","/policies/authenticationMethodsPolicy/authenticationMethodConfigurations","keep",,"Get-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration","Get-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration" +"GET","/policies/authenticationMethodsPolicy/authenticationMethodConfigurations/{param}","keep",,"Get-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration","Get-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration" +"GET","/policies/authenticationMethodsPolicy/authenticationMethodConfigurations/$count","keep",,"Get-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfigurationCount","Get-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfigurationCount" +"GET","/policies/authenticationStrengthPolicies","keep",,"Get-MgPolicyAuthenticationStrengthPolicy","Get-MgPolicyAuthenticationStrengthPolicy" +"GET","/policies/authenticationStrengthPolicies/{param}","keep",,"Get-MgPolicyAuthenticationStrengthPolicy","Get-MgPolicyAuthenticationStrengthPolicy" +"GET","/policies/authenticationStrengthPolicies/{param}/combinationConfigurations","keep",,"Get-MgPolicyAuthenticationStrengthPolicyCombinationConfiguration","Get-MgPolicyAuthenticationStrengthPolicyCombinationConfiguration" +"GET","/policies/authenticationStrengthPolicies/{param}/combinationConfigurations/{param}","keep",,"Get-MgPolicyAuthenticationStrengthPolicyCombinationConfiguration","Get-MgPolicyAuthenticationStrengthPolicyCombinationConfiguration" +"GET","/policies/authenticationStrengthPolicies/{param}/combinationConfigurations/$count","keep",,"Get-MgPolicyAuthenticationStrengthPolicyCombinationConfigurationCount","Get-MgPolicyAuthenticationStrengthPolicyCombinationConfigurationCount" +"GET","/policies/authenticationStrengthPolicies/{param}/usage","rename","UsagePolicyAuthenticationStrengthPolicy","Get-MgPolicyAuthenticationStrengthPolicyUsage","Invoke-MgUsagePolicyAuthenticationStrengthPolicy" +"GET","/policies/authenticationStrengthPolicies/$count","keep",,"Get-MgPolicyAuthenticationStrengthPolicyCount","Get-MgPolicyAuthenticationStrengthPolicyCount" +"GET","/policies/authorizationPolicy","keep",,"Get-MgPolicyAuthorizationPolicy","Get-MgPolicyAuthorizationPolicy" +"GET","/policies/claimsMappingPolicies","keep",,"Get-MgPolicyClaimMappingPolicy","Get-MgPolicyClaimMappingPolicy" +"GET","/policies/claimsMappingPolicies/{param}","keep",,"Get-MgPolicyClaimMappingPolicy","Get-MgPolicyClaimMappingPolicy" +"GET","/policies/claimsMappingPolicies/{param}/appliesTo","keep",,"Get-MgPolicyClaimMappingPolicyApplyTo","Get-MgPolicyClaimMappingPolicyApplyTo" +"GET","/policies/claimsMappingPolicies/{param}/appliesTo/{param}","keep",,"Get-MgPolicyClaimMappingPolicyApplyTo","Get-MgPolicyClaimMappingPolicyApplyTo" +"GET","/policies/claimsMappingPolicies/{param}/appliesTo/$count","keep",,"Get-MgPolicyClaimMappingPolicyApplyToCount","Get-MgPolicyClaimMappingPolicyApplyToCount" +"GET","/policies/claimsMappingPolicies/$count","keep",,"Get-MgPolicyClaimMappingPolicyCount","Get-MgPolicyClaimMappingPolicyCount" +"GET","/policies/conditionalAccessPolicies","suppress",,"Get-MgPolicyConditionalAccessPolicy","no oracle row for GET /policies/conditionalAccessPolicies and 'Get-MgPolicyConditionalAccessPolicy' unshipped" +"GET","/policies/conditionalAccessPolicies/{param}","suppress",,"Get-MgPolicyConditionalAccessPolicy","no oracle row for GET /policies/conditionalAccessPolicies/{param} and 'Get-MgPolicyConditionalAccessPolicy' unshipped" +"GET","/policies/conditionalAccessPolicies/$count","keep",,"Get-MgPolicyConditionalAccessPolicyCount","Get-MgPolicyConditionalAccessPolicyCount" +"GET","/policies/crossTenantAccessPolicy","keep",,"Get-MgPolicyCrossTenantAccessPolicy","Get-MgPolicyCrossTenantAccessPolicy" +"GET","/policies/crossTenantAccessPolicy/default","keep",,"Get-MgPolicyCrossTenantAccessPolicyDefault","Get-MgPolicyCrossTenantAccessPolicyDefault" +"GET","/policies/crossTenantAccessPolicy/partners","keep",,"Get-MgPolicyCrossTenantAccessPolicyPartner","Get-MgPolicyCrossTenantAccessPolicyPartner" +"GET","/policies/crossTenantAccessPolicy/partners/{param}","keep",,"Get-MgPolicyCrossTenantAccessPolicyPartner","Get-MgPolicyCrossTenantAccessPolicyPartner" +"GET","/policies/crossTenantAccessPolicy/partners/{param}/identitySynchronization","keep",,"Get-MgPolicyCrossTenantAccessPolicyPartnerIdentitySynchronization","Get-MgPolicyCrossTenantAccessPolicyPartnerIdentitySynchronization" +"GET","/policies/crossTenantAccessPolicy/partners/$count","keep",,"Get-MgPolicyCrossTenantAccessPolicyPartnerCount","Get-MgPolicyCrossTenantAccessPolicyPartnerCount" +"GET","/policies/crossTenantAccessPolicy/templates","keep",,"Get-MgPolicyCrossTenantAccessPolicyTemplate","Get-MgPolicyCrossTenantAccessPolicyTemplate" +"GET","/policies/crossTenantAccessPolicy/templates/multiTenantOrganizationIdentitySynchronization","keep",,"Get-MgPolicyCrossTenantAccessPolicyTemplateMultiTenantOrganizationIdentitySynchronization","Get-MgPolicyCrossTenantAccessPolicyTemplateMultiTenantOrganizationIdentitySynchronization" +"GET","/policies/crossTenantAccessPolicy/templates/multiTenantOrganizationPartnerConfiguration","keep",,"Get-MgPolicyCrossTenantAccessPolicyTemplateMultiTenantOrganizationPartnerConfiguration","Get-MgPolicyCrossTenantAccessPolicyTemplateMultiTenantOrganizationPartnerConfiguration" +"GET","/policies/defaultAppManagementPolicy","keep",,"Get-MgPolicyDefaultAppManagementPolicy","Get-MgPolicyDefaultAppManagementPolicy" +"GET","/policies/deviceRegistrationPolicy","keep",,"Get-MgPolicyDeviceRegistrationPolicy","Get-MgPolicyDeviceRegistrationPolicy" +"GET","/policies/featureRolloutPolicies","keep",,"Get-MgPolicyFeatureRolloutPolicy","Get-MgPolicyFeatureRolloutPolicy" +"GET","/policies/featureRolloutPolicies/{param}","keep",,"Get-MgPolicyFeatureRolloutPolicy","Get-MgPolicyFeatureRolloutPolicy" +"GET","/policies/featureRolloutPolicies/{param}/appliesTo","keep",,"Get-MgPolicyFeatureRolloutPolicyApplyTo","Get-MgPolicyFeatureRolloutPolicyApplyTo" +"GET","/policies/featureRolloutPolicies/{param}/appliesTo/$count","keep",,"Get-MgPolicyFeatureRolloutPolicyApplyToCount","Get-MgPolicyFeatureRolloutPolicyApplyToCount" +"GET","/policies/featureRolloutPolicies/{param}/appliesTo/$ref","keep",,"Get-MgPolicyFeatureRolloutPolicyApplyToByRef","Get-MgPolicyFeatureRolloutPolicyApplyToByRef" +"GET","/policies/featureRolloutPolicies/$count","keep",,"Get-MgPolicyFeatureRolloutPolicyCount","Get-MgPolicyFeatureRolloutPolicyCount" +"GET","/policies/federatedTokenValidationPolicy","keep",,"Get-MgPolicyFederatedTokenValidationPolicy","Get-MgPolicyFederatedTokenValidationPolicy" +"GET","/policies/homeRealmDiscoveryPolicies","keep",,"Get-MgPolicyHomeRealmDiscoveryPolicy","Get-MgPolicyHomeRealmDiscoveryPolicy" +"GET","/policies/homeRealmDiscoveryPolicies/{param}","keep",,"Get-MgPolicyHomeRealmDiscoveryPolicy","Get-MgPolicyHomeRealmDiscoveryPolicy" +"GET","/policies/homeRealmDiscoveryPolicies/{param}/appliesTo","keep",,"Get-MgPolicyHomeRealmDiscoveryPolicyApplyTo","Get-MgPolicyHomeRealmDiscoveryPolicyApplyTo" +"GET","/policies/homeRealmDiscoveryPolicies/{param}/appliesTo/{param}","keep",,"Get-MgPolicyHomeRealmDiscoveryPolicyApplyTo","Get-MgPolicyHomeRealmDiscoveryPolicyApplyTo" +"GET","/policies/homeRealmDiscoveryPolicies/{param}/appliesTo/$count","keep",,"Get-MgPolicyHomeRealmDiscoveryPolicyApplyToCount","Get-MgPolicyHomeRealmDiscoveryPolicyApplyToCount" +"GET","/policies/homeRealmDiscoveryPolicies/$count","keep",,"Get-MgPolicyHomeRealmDiscoveryPolicyCount","Get-MgPolicyHomeRealmDiscoveryPolicyCount" +"GET","/policies/identitySecurityDefaultsEnforcementPolicy","keep",,"Get-MgPolicyIdentitySecurityDefaultEnforcementPolicy","Get-MgPolicyIdentitySecurityDefaultEnforcementPolicy" +"GET","/policies/ownerlessGroupPolicy","keep",,"Get-MgPolicyOwnerlessGroupPolicy","Get-MgPolicyOwnerlessGroupPolicy" +"GET","/policies/permissionGrantPolicies","keep",,"Get-MgPolicyPermissionGrantPolicy","Get-MgPolicyPermissionGrantPolicy" +"GET","/policies/permissionGrantPolicies/{param}","keep",,"Get-MgPolicyPermissionGrantPolicy","Get-MgPolicyPermissionGrantPolicy" +"GET","/policies/permissionGrantPolicies/{param}/excludes","keep",,"Get-MgPolicyPermissionGrantPolicyExclude","Get-MgPolicyPermissionGrantPolicyExclude" +"GET","/policies/permissionGrantPolicies/{param}/excludes/{param}","keep",,"Get-MgPolicyPermissionGrantPolicyExclude","Get-MgPolicyPermissionGrantPolicyExclude" +"GET","/policies/permissionGrantPolicies/{param}/excludes/$count","keep",,"Get-MgPolicyPermissionGrantPolicyExcludeCount","Get-MgPolicyPermissionGrantPolicyExcludeCount" +"GET","/policies/permissionGrantPolicies/{param}/includes","keep",,"Get-MgPolicyPermissionGrantPolicyInclude","Get-MgPolicyPermissionGrantPolicyInclude" +"GET","/policies/permissionGrantPolicies/{param}/includes/{param}","keep",,"Get-MgPolicyPermissionGrantPolicyInclude","Get-MgPolicyPermissionGrantPolicyInclude" +"GET","/policies/permissionGrantPolicies/{param}/includes/$count","keep",,"Get-MgPolicyPermissionGrantPolicyIncludeCount","Get-MgPolicyPermissionGrantPolicyIncludeCount" +"GET","/policies/permissionGrantPolicies/$count","keep",,"Get-MgPolicyPermissionGrantPolicyCount","Get-MgPolicyPermissionGrantPolicyCount" +"GET","/policies/roleManagementPolicies","keep",,"Get-MgPolicyRoleManagementPolicy","Get-MgPolicyRoleManagementPolicy" +"GET","/policies/roleManagementPolicies/{param}","keep",,"Get-MgPolicyRoleManagementPolicy","Get-MgPolicyRoleManagementPolicy" +"GET","/policies/roleManagementPolicies/{param}/effectiveRules","keep",,"Get-MgPolicyRoleManagementPolicyEffectiveRule","Get-MgPolicyRoleManagementPolicyEffectiveRule" +"GET","/policies/roleManagementPolicies/{param}/effectiveRules/{param}","keep",,"Get-MgPolicyRoleManagementPolicyEffectiveRule","Get-MgPolicyRoleManagementPolicyEffectiveRule" +"GET","/policies/roleManagementPolicies/{param}/effectiveRules/$count","keep",,"Get-MgPolicyRoleManagementPolicyEffectiveRuleCount","Get-MgPolicyRoleManagementPolicyEffectiveRuleCount" +"GET","/policies/roleManagementPolicies/{param}/rules","keep",,"Get-MgPolicyRoleManagementPolicyRule","Get-MgPolicyRoleManagementPolicyRule" +"GET","/policies/roleManagementPolicies/{param}/rules/{param}","keep",,"Get-MgPolicyRoleManagementPolicyRule","Get-MgPolicyRoleManagementPolicyRule" +"GET","/policies/roleManagementPolicies/{param}/rules/$count","keep",,"Get-MgPolicyRoleManagementPolicyRuleCount","Get-MgPolicyRoleManagementPolicyRuleCount" +"GET","/policies/roleManagementPolicies/$count","keep",,"Get-MgPolicyRoleManagementPolicyCount","Get-MgPolicyRoleManagementPolicyCount" +"GET","/policies/roleManagementPolicyAssignments","keep",,"Get-MgPolicyRoleManagementPolicyAssignment","Get-MgPolicyRoleManagementPolicyAssignment" +"GET","/policies/roleManagementPolicyAssignments/{param}","keep",,"Get-MgPolicyRoleManagementPolicyAssignment","Get-MgPolicyRoleManagementPolicyAssignment" +"GET","/policies/roleManagementPolicyAssignments/{param}/policy","keep",,"Get-MgPolicyRoleManagementPolicyAssignmentPolicy","Get-MgPolicyRoleManagementPolicyAssignmentPolicy" +"GET","/policies/roleManagementPolicyAssignments/$count","keep",,"Get-MgPolicyRoleManagementPolicyAssignmentCount","Get-MgPolicyRoleManagementPolicyAssignmentCount" +"GET","/policies/tokenIssuancePolicies","keep",,"Get-MgPolicyTokenIssuancePolicy","Get-MgPolicyTokenIssuancePolicy" +"GET","/policies/tokenIssuancePolicies/{param}","keep",,"Get-MgPolicyTokenIssuancePolicy","Get-MgPolicyTokenIssuancePolicy" +"GET","/policies/tokenIssuancePolicies/{param}/appliesTo","keep",,"Get-MgPolicyTokenIssuancePolicyApplyTo","Get-MgPolicyTokenIssuancePolicyApplyTo" +"GET","/policies/tokenIssuancePolicies/{param}/appliesTo/{param}","keep",,"Get-MgPolicyTokenIssuancePolicyApplyTo","Get-MgPolicyTokenIssuancePolicyApplyTo" +"GET","/policies/tokenIssuancePolicies/{param}/appliesTo/$count","keep",,"Get-MgPolicyTokenIssuancePolicyApplyToCount","Get-MgPolicyTokenIssuancePolicyApplyToCount" +"GET","/policies/tokenIssuancePolicies/$count","keep",,"Get-MgPolicyTokenIssuancePolicyCount","Get-MgPolicyTokenIssuancePolicyCount" +"GET","/policies/tokenLifetimePolicies","keep",,"Get-MgPolicyTokenLifetimePolicy","Get-MgPolicyTokenLifetimePolicy" +"GET","/policies/tokenLifetimePolicies/{param}","keep",,"Get-MgPolicyTokenLifetimePolicy","Get-MgPolicyTokenLifetimePolicy" +"GET","/policies/tokenLifetimePolicies/{param}/appliesTo","keep",,"Get-MgPolicyTokenLifetimePolicyApplyTo","Get-MgPolicyTokenLifetimePolicyApplyTo" +"GET","/policies/tokenLifetimePolicies/{param}/appliesTo/{param}","keep",,"Get-MgPolicyTokenLifetimePolicyApplyTo","Get-MgPolicyTokenLifetimePolicyApplyTo" +"GET","/policies/tokenLifetimePolicies/{param}/appliesTo/$count","keep",,"Get-MgPolicyTokenLifetimePolicyApplyToCount","Get-MgPolicyTokenLifetimePolicyApplyToCount" +"GET","/policies/tokenLifetimePolicies/$count","keep",,"Get-MgPolicyTokenLifetimePolicyCount","Get-MgPolicyTokenLifetimePolicyCount" +"GET","/print","keep",,"Get-MgPrint","Get-MgPrint" +"GET","/print/connectors","keep",,"Get-MgPrintConnector","Get-MgPrintConnector" +"GET","/print/connectors/{param}","keep",,"Get-MgPrintConnector","Get-MgPrintConnector" +"GET","/print/connectors/$count","keep",,"Get-MgPrintConnectorCount","Get-MgPrintConnectorCount" +"GET","/print/operations","keep",,"Get-MgPrintOperation","Get-MgPrintOperation" +"GET","/print/operations/{param}","keep",,"Get-MgPrintOperation","Get-MgPrintOperation" +"GET","/print/operations/$count","keep",,"Get-MgPrintOperationCount","Get-MgPrintOperationCount" +"GET","/print/printers","rename","PrintPrinter","Get-MgPrinter","Get-MgPrintPrinter" +"GET","/print/printers/{param}","rename","PrintPrinter","Get-MgPrinter","Get-MgPrintPrinter" +"GET","/print/printers/{param}/connectors","rename","PrintPrinterConnector","Get-MgPrinterConnector","Get-MgPrintPrinterConnector" +"GET","/print/printers/{param}/connectors/{param}","rename","PrintPrinterConnector","Get-MgPrinterConnector","Get-MgPrintPrinterConnector" +"GET","/print/printers/{param}/connectors/$count","rename","PrintPrinterConnectorCount","Get-MgPrinterConnectorCount","Get-MgPrintPrinterConnectorCount" +"GET","/print/printers/{param}/jobs","rename","PrintPrinterJob","Get-MgPrinterJob","Get-MgPrintPrinterJob" +"GET","/print/printers/{param}/jobs/{param}","rename","PrintPrinterJob","Get-MgPrinterJob","Get-MgPrintPrinterJob" +"GET","/print/printers/{param}/jobs/{param}/documents","rename","PrintPrinterJobDocument","Get-MgPrinterJobDocument","Get-MgPrintPrinterJobDocument" +"GET","/print/printers/{param}/jobs/{param}/documents/{param}","rename","PrintPrinterJobDocument","Get-MgPrinterJobDocument","Get-MgPrintPrinterJobDocument" +"GET","/print/printers/{param}/jobs/{param}/documents/{param}/$value","rename","PrintPrinterJobDocumentContent","Get-MgPrinterJobDocumentContent","Get-MgPrintPrinterJobDocumentContent" +"GET","/print/printers/{param}/jobs/{param}/documents/$count","rename","PrintPrinterJobDocumentCount","Get-MgPrinterJobDocumentCount","Get-MgPrintPrinterJobDocumentCount" +"GET","/print/printers/{param}/jobs/{param}/tasks","rename","PrintPrinterJobTask","Get-MgPrinterJobTask","Get-MgPrintPrinterJobTask" +"GET","/print/printers/{param}/jobs/{param}/tasks/{param}","rename","PrintPrinterJobTask","Get-MgPrinterJobTask","Get-MgPrintPrinterJobTask" +"GET","/print/printers/{param}/jobs/{param}/tasks/{param}/definition","rename","PrintPrinterJobTaskDefinition","Get-MgPrinterJobTaskDefinition","Get-MgPrintPrinterJobTaskDefinition" +"GET","/print/printers/{param}/jobs/{param}/tasks/{param}/trigger","rename","PrintPrinterJobTaskTrigger","Get-MgPrinterJobTaskTrigger","Get-MgPrintPrinterJobTaskTrigger" +"GET","/print/printers/{param}/jobs/{param}/tasks/$count","rename","PrintPrinterJobTaskCount","Get-MgPrinterJobTaskCount","Get-MgPrintPrinterJobTaskCount" +"GET","/print/printers/{param}/jobs/$count","rename","PrintPrinterJobCount","Get-MgPrinterJobCount","Get-MgPrintPrinterJobCount" +"GET","/print/printers/{param}/shares","rename","PrintPrinterShare","Get-MgPrinterShare","Get-MgPrintPrinterShare" +"GET","/print/printers/{param}/shares/{param}","rename","PrintPrinterShare","Get-MgPrinterShare","Get-MgPrintPrinterShare" +"GET","/print/printers/{param}/shares/$count","rename","PrintPrinterShareCount","Get-MgPrinterShareCount","Get-MgPrintPrinterShareCount" +"GET","/print/printers/{param}/taskTriggers","rename","PrintPrinterTaskTrigger","Get-MgPrinterTaskTrigger","Get-MgPrintPrinterTaskTrigger" +"GET","/print/printers/{param}/taskTriggers/{param}","rename","PrintPrinterTaskTrigger","Get-MgPrinterTaskTrigger","Get-MgPrintPrinterTaskTrigger" +"GET","/print/printers/{param}/taskTriggers/{param}/definition","rename","PrintPrinterTaskTriggerDefinition","Get-MgPrinterTaskTriggerDefinition","Get-MgPrintPrinterTaskTriggerDefinition" +"GET","/print/printers/{param}/taskTriggers/$count","rename","PrintPrinterTaskTriggerCount","Get-MgPrinterTaskTriggerCount","Get-MgPrintPrinterTaskTriggerCount" +"GET","/print/printers/$count","rename","PrintPrinterCount","Get-MgPrinterCount","Get-MgPrintPrinterCount" +"GET","/print/services","keep",,"Get-MgPrintService","Get-MgPrintService" +"GET","/print/services/{param}","keep",,"Get-MgPrintService","Get-MgPrintService" +"GET","/print/services/{param}/endpoints","keep",,"Get-MgPrintServiceEndpoint","Get-MgPrintServiceEndpoint" +"GET","/print/services/{param}/endpoints/{param}","keep",,"Get-MgPrintServiceEndpoint","Get-MgPrintServiceEndpoint" +"GET","/print/services/{param}/endpoints/$count","keep",,"Get-MgPrintServiceEndpointCount","Get-MgPrintServiceEndpointCount" +"GET","/print/services/$count","keep",,"Get-MgPrintServiceCount","Get-MgPrintServiceCount" +"GET","/print/shares","keep",,"Get-MgPrintShare","Get-MgPrintShare" +"GET","/print/shares/{param}","keep",,"Get-MgPrintShare","Get-MgPrintShare" +"GET","/print/shares/{param}/allowedGroups","keep",,"Get-MgPrintShareAllowedGroup","Get-MgPrintShareAllowedGroup" +"GET","/print/shares/{param}/allowedGroups/{param}/serviceProvisioningErrors","keep",,"Get-MgPrintShareAllowedGroupServiceProvisioningError","Get-MgPrintShareAllowedGroupServiceProvisioningError" +"GET","/print/shares/{param}/allowedGroups/{param}/serviceProvisioningErrors/$count","keep",,"Get-MgPrintShareAllowedGroupServiceProvisioningErrorCount","Get-MgPrintShareAllowedGroupServiceProvisioningErrorCount" +"GET","/print/shares/{param}/allowedGroups/$count","keep",,"Get-MgPrintShareAllowedGroupCount","Get-MgPrintShareAllowedGroupCount" +"GET","/print/shares/{param}/allowedGroups/$ref","keep",,"Get-MgPrintShareAllowedGroupByRef","Get-MgPrintShareAllowedGroupByRef" +"GET","/print/shares/{param}/allowedUsers","keep",,"Get-MgPrintShareAllowedUser","Get-MgPrintShareAllowedUser" +"GET","/print/shares/{param}/allowedUsers/{param}/mailboxSettings","keep",,"Get-MgPrintShareAllowedUserMailboxSetting","Get-MgPrintShareAllowedUserMailboxSetting" +"GET","/print/shares/{param}/allowedUsers/{param}/serviceProvisioningErrors","keep",,"Get-MgPrintShareAllowedUserServiceProvisioningError","Get-MgPrintShareAllowedUserServiceProvisioningError" +"GET","/print/shares/{param}/allowedUsers/{param}/serviceProvisioningErrors/$count","keep",,"Get-MgPrintShareAllowedUserServiceProvisioningErrorCount","Get-MgPrintShareAllowedUserServiceProvisioningErrorCount" +"GET","/print/shares/{param}/allowedUsers/$count","keep",,"Get-MgPrintShareAllowedUserCount","Get-MgPrintShareAllowedUserCount" +"GET","/print/shares/{param}/allowedUsers/$ref","keep",,"Get-MgPrintShareAllowedUserByRef","Get-MgPrintShareAllowedUserByRef" +"GET","/print/shares/{param}/jobs","keep",,"Get-MgPrintShareJob","Get-MgPrintShareJob" +"GET","/print/shares/{param}/jobs/{param}","keep",,"Get-MgPrintShareJob","Get-MgPrintShareJob" +"GET","/print/shares/{param}/jobs/{param}/documents","keep",,"Get-MgPrintShareJobDocument","Get-MgPrintShareJobDocument" +"GET","/print/shares/{param}/jobs/{param}/documents/{param}","keep",,"Get-MgPrintShareJobDocument","Get-MgPrintShareJobDocument" +"GET","/print/shares/{param}/jobs/{param}/documents/{param}/$value","keep",,"Get-MgPrintShareJobDocumentContent","Get-MgPrintShareJobDocumentContent" +"GET","/print/shares/{param}/jobs/{param}/documents/$count","keep",,"Get-MgPrintShareJobDocumentCount","Get-MgPrintShareJobDocumentCount" +"GET","/print/shares/{param}/jobs/{param}/tasks","keep",,"Get-MgPrintShareJobTask","Get-MgPrintShareJobTask" +"GET","/print/shares/{param}/jobs/{param}/tasks/{param}","keep",,"Get-MgPrintShareJobTask","Get-MgPrintShareJobTask" +"GET","/print/shares/{param}/jobs/{param}/tasks/{param}/definition","keep",,"Get-MgPrintShareJobTaskDefinition","Get-MgPrintShareJobTaskDefinition" +"GET","/print/shares/{param}/jobs/{param}/tasks/{param}/trigger","keep",,"Get-MgPrintShareJobTaskTrigger","Get-MgPrintShareJobTaskTrigger" +"GET","/print/shares/{param}/jobs/{param}/tasks/$count","keep",,"Get-MgPrintShareJobTaskCount","Get-MgPrintShareJobTaskCount" +"GET","/print/shares/{param}/jobs/$count","keep",,"Get-MgPrintShareJobCount","Get-MgPrintShareJobCount" +"GET","/print/shares/{param}/printer","keep",,"Get-MgPrintSharePrinter","Get-MgPrintSharePrinter" +"GET","/print/shares/$count","keep",,"Get-MgPrintShareCount","Get-MgPrintShareCount" +"GET","/print/taskDefinitions","keep",,"Get-MgPrintTaskDefinition","Get-MgPrintTaskDefinition" +"GET","/print/taskDefinitions/{param}","keep",,"Get-MgPrintTaskDefinition","Get-MgPrintTaskDefinition" +"GET","/print/taskDefinitions/{param}/tasks","keep",,"Get-MgPrintTaskDefinitionTask","Get-MgPrintTaskDefinitionTask" +"GET","/print/taskDefinitions/{param}/tasks/{param}","keep",,"Get-MgPrintTaskDefinitionTask","Get-MgPrintTaskDefinitionTask" +"GET","/print/taskDefinitions/{param}/tasks/{param}/definition","suppress",,"Get-MgPrintTaskDefinitionTaskDefinition","no oracle row for GET /print/taskDefinitions/{param}/tasks/{param}/definition and 'Get-MgPrintTaskDefinitionTaskDefinition' unshipped" +"GET","/print/taskDefinitions/{param}/tasks/{param}/trigger","keep",,"Get-MgPrintTaskDefinitionTaskTrigger","Get-MgPrintTaskDefinitionTaskTrigger" +"GET","/print/taskDefinitions/{param}/tasks/$count","keep",,"Get-MgPrintTaskDefinitionTaskCount","Get-MgPrintTaskDefinitionTaskCount" +"GET","/print/taskDefinitions/$count","keep",,"Get-MgPrintTaskDefinitionCount","Get-MgPrintTaskDefinitionCount" +"GET","/privacy/subjectRightsRequests","keep",,"Get-MgPrivacySubjectRightsRequest","Get-MgPrivacySubjectRightsRequest" +"GET","/privacy/subjectRightsRequests/{param}","keep",,"Get-MgPrivacySubjectRightsRequest","Get-MgPrivacySubjectRightsRequest" +"GET","/privacy/subjectRightsRequests/{param}/approvers","keep",,"Get-MgPrivacySubjectRightsRequestApprover","Get-MgPrivacySubjectRightsRequestApprover" +"GET","/privacy/subjectRightsRequests/{param}/approvers/{param}","keep",,"Get-MgPrivacySubjectRightsRequestApprover","Get-MgPrivacySubjectRightsRequestApprover" +"GET","/privacy/subjectRightsRequests/{param}/approvers/{param}/mailboxSettings","keep",,"Get-MgPrivacySubjectRightsRequestApproverMailboxSetting","Get-MgPrivacySubjectRightsRequestApproverMailboxSetting" +"GET","/privacy/subjectRightsRequests/{param}/approvers/{param}/serviceProvisioningErrors","keep",,"Get-MgPrivacySubjectRightsRequestApproverServiceProvisioningError","Get-MgPrivacySubjectRightsRequestApproverServiceProvisioningError" +"GET","/privacy/subjectRightsRequests/{param}/approvers/{param}/serviceProvisioningErrors/$count","keep",,"Get-MgPrivacySubjectRightsRequestApproverServiceProvisioningErrorCount","Get-MgPrivacySubjectRightsRequestApproverServiceProvisioningErrorCount" +"GET","/privacy/subjectRightsRequests/{param}/approvers/$count","keep",,"Get-MgPrivacySubjectRightsRequestApproverCount","Get-MgPrivacySubjectRightsRequestApproverCount" +"GET","/privacy/subjectRightsRequests/{param}/collaborators","keep",,"Get-MgPrivacySubjectRightsRequestCollaborator","Get-MgPrivacySubjectRightsRequestCollaborator" +"GET","/privacy/subjectRightsRequests/{param}/collaborators/{param}","keep",,"Get-MgPrivacySubjectRightsRequestCollaborator","Get-MgPrivacySubjectRightsRequestCollaborator" +"GET","/privacy/subjectRightsRequests/{param}/collaborators/{param}/mailboxSettings","keep",,"Get-MgPrivacySubjectRightsRequestCollaboratorMailboxSetting","Get-MgPrivacySubjectRightsRequestCollaboratorMailboxSetting" +"GET","/privacy/subjectRightsRequests/{param}/collaborators/{param}/serviceProvisioningErrors","keep",,"Get-MgPrivacySubjectRightsRequestCollaboratorServiceProvisioningError","Get-MgPrivacySubjectRightsRequestCollaboratorServiceProvisioningError" +"GET","/privacy/subjectRightsRequests/{param}/collaborators/{param}/serviceProvisioningErrors/$count","keep",,"Get-MgPrivacySubjectRightsRequestCollaboratorServiceProvisioningErrorCount","Get-MgPrivacySubjectRightsRequestCollaboratorServiceProvisioningErrorCount" +"GET","/privacy/subjectRightsRequests/{param}/collaborators/$count","keep",,"Get-MgPrivacySubjectRightsRequestCollaboratorCount","Get-MgPrivacySubjectRightsRequestCollaboratorCount" +"GET","/privacy/subjectRightsRequests/{param}/getFinalAttachment","rename","PrivacySubjectRightsRequestFinalAttachment","Get-MgPrivacySubjectRightsRequestGetFinalAttachment","Get-MgPrivacySubjectRightsRequestFinalAttachment" +"GET","/privacy/subjectRightsRequests/{param}/getFinalReport","rename","PrivacySubjectRightsRequestFinalReport","Get-MgPrivacySubjectRightsRequestGetFinalReport","Get-MgPrivacySubjectRightsRequestFinalReport" +"GET","/privacy/subjectRightsRequests/{param}/notes","keep",,"Get-MgPrivacySubjectRightsRequestNote","Get-MgPrivacySubjectRightsRequestNote" +"GET","/privacy/subjectRightsRequests/{param}/notes/{param}","keep",,"Get-MgPrivacySubjectRightsRequestNote","Get-MgPrivacySubjectRightsRequestNote" +"GET","/privacy/subjectRightsRequests/{param}/notes/$count","keep",,"Get-MgPrivacySubjectRightsRequestNoteCount","Get-MgPrivacySubjectRightsRequestNoteCount" +"GET","/privacy/subjectRightsRequests/{param}/team","keep",,"Get-MgPrivacySubjectRightsRequestTeam","Get-MgPrivacySubjectRightsRequestTeam" +"GET","/privacy/subjectRightsRequests/$count","keep",,"Get-MgPrivacySubjectRightsRequestCount","Get-MgPrivacySubjectRightsRequestCount" +"GET","/reports","suppress",,"Get-MgReport","no oracle row for GET /reports and 'Get-MgReport' unshipped" +"GET","/reports/authenticationMethods","keep",,"Get-MgReportAuthenticationMethod","Get-MgReportAuthenticationMethod" +"GET","/reports/authenticationMethods/userRegistrationDetails","keep",,"Get-MgReportAuthenticationMethodUserRegistrationDetail","Get-MgReportAuthenticationMethodUserRegistrationDetail" +"GET","/reports/authenticationMethods/userRegistrationDetails/{param}","keep",,"Get-MgReportAuthenticationMethodUserRegistrationDetail","Get-MgReportAuthenticationMethodUserRegistrationDetail" +"GET","/reports/authenticationMethods/userRegistrationDetails/$count","keep",,"Get-MgReportAuthenticationMethodUserRegistrationDetailCount","Get-MgReportAuthenticationMethodUserRegistrationDetailCount" +"GET","/reports/authenticationMethods/usersRegisteredByFeature","rename","GraphReportAuthenticationMethod","Get-MgReportAuthenticationMethodUsersRegisteredByFeature","Invoke-MgGraphReportAuthenticationMethod" +"GET","/reports/authenticationMethods/usersRegisteredByMethod","suppress",,"Get-MgReportAuthenticationMethodUsersRegisteredByMethod","no oracle row for GET /reports/authenticationMethods/usersRegisteredByMethod and 'Get-MgReportAuthenticationMethodUsersRegisteredByMethod' unshipped" +"GET","/reports/dailyPrintUsageByPrinter","keep",,"Get-MgReportDailyPrintUsageByPrinter","Get-MgReportDailyPrintUsageByPrinter" +"GET","/reports/dailyPrintUsageByPrinter/{param}","keep",,"Get-MgReportDailyPrintUsageByPrinter","Get-MgReportDailyPrintUsageByPrinter" +"GET","/reports/dailyPrintUsageByPrinter/$count","keep",,"Get-MgReportDailyPrintUsageByPrinterCount","Get-MgReportDailyPrintUsageByPrinterCount" +"GET","/reports/dailyPrintUsageByUser","keep",,"Get-MgReportDailyPrintUsageByUser","Get-MgReportDailyPrintUsageByUser" +"GET","/reports/dailyPrintUsageByUser/{param}","keep",,"Get-MgReportDailyPrintUsageByUser","Get-MgReportDailyPrintUsageByUser" +"GET","/reports/dailyPrintUsageByUser/$count","keep",,"Get-MgReportDailyPrintUsageByUserCount","Get-MgReportDailyPrintUsageByUserCount" +"GET","/reports/deviceConfigurationDeviceActivity","keep",,"Get-MgReportDeviceConfigurationDeviceActivity","Get-MgReportDeviceConfigurationDeviceActivity" +"GET","/reports/deviceConfigurationUserActivity","keep",,"Get-MgReportDeviceConfigurationUserActivity","Get-MgReportDeviceConfigurationUserActivity" +"GET","/reports/getOffice365ActivationCounts","rename","ReportOffice365ActivationCount","Get-MgReportGetOffice365ActivationCounts","Get-MgReportOffice365ActivationCount" +"GET","/reports/getOffice365ActivationsUserCounts","rename","ReportOffice365ActivationUserCount","Get-MgReportGetOffice365ActivationsUserCounts","Get-MgReportOffice365ActivationUserCount" +"GET","/reports/getOffice365ActivationsUserDetail","rename","ReportOffice365ActivationUserDetail","Get-MgReportGetOffice365ActivationsUserDetail","Get-MgReportOffice365ActivationUserDetail" +"GET","/reports/managedDeviceEnrollmentFailureDetails","rename","ReportManagedDeviceEnrollmentFailureDetail","Get-MgReportManagedDeviceEnrollmentFailureDetails","Get-MgReportManagedDeviceEnrollmentFailureDetail" +"GET","/reports/managedDeviceEnrollmentTopFailures","rename","ReportManagedDeviceEnrollmentTopFailure","Get-MgReportManagedDeviceEnrollmentTopFailures","Get-MgReportManagedDeviceEnrollmentTopFailure" +"GET","/reports/monthlyPrintUsageByPrinter","keep",,"Get-MgReportMonthlyPrintUsageByPrinter","Get-MgReportMonthlyPrintUsageByPrinter" +"GET","/reports/monthlyPrintUsageByPrinter/{param}","keep",,"Get-MgReportMonthlyPrintUsageByPrinter","Get-MgReportMonthlyPrintUsageByPrinter" +"GET","/reports/monthlyPrintUsageByPrinter/$count","keep",,"Get-MgReportMonthlyPrintUsageByPrinterCount","Get-MgReportMonthlyPrintUsageByPrinterCount" +"GET","/reports/monthlyPrintUsageByUser","keep",,"Get-MgReportMonthlyPrintUsageByUser","Get-MgReportMonthlyPrintUsageByUser" +"GET","/reports/monthlyPrintUsageByUser/{param}","keep",,"Get-MgReportMonthlyPrintUsageByUser","Get-MgReportMonthlyPrintUsageByUser" +"GET","/reports/monthlyPrintUsageByUser/$count","keep",,"Get-MgReportMonthlyPrintUsageByUserCount","Get-MgReportMonthlyPrintUsageByUserCount" +"GET","/reports/partners","keep",,"Get-MgReportPartner","Get-MgReportPartner" +"GET","/reports/partners/billing","keep",,"Get-MgReportPartnerBilling","Get-MgReportPartnerBilling" +"GET","/reports/partners/billing/manifests","keep",,"Get-MgReportPartnerBillingManifest","Get-MgReportPartnerBillingManifest" +"GET","/reports/partners/billing/manifests/{param}","keep",,"Get-MgReportPartnerBillingManifest","Get-MgReportPartnerBillingManifest" +"GET","/reports/partners/billing/manifests/$count","keep",,"Get-MgReportPartnerBillingManifestCount","Get-MgReportPartnerBillingManifestCount" +"GET","/reports/partners/billing/operations","keep",,"Get-MgReportPartnerBillingOperation","Get-MgReportPartnerBillingOperation" +"GET","/reports/partners/billing/operations/{param}","keep",,"Get-MgReportPartnerBillingOperation","Get-MgReportPartnerBillingOperation" +"GET","/reports/partners/billing/operations/$count","keep",,"Get-MgReportPartnerBillingOperationCount","Get-MgReportPartnerBillingOperationCount" +"GET","/reports/partners/billing/reconciliation","keep",,"Get-MgReportPartnerBillingReconciliation","Get-MgReportPartnerBillingReconciliation" +"GET","/reports/partners/billing/reconciliation/billed","keep",,"Get-MgReportPartnerBillingReconciliationBilled","Get-MgReportPartnerBillingReconciliationBilled" +"GET","/reports/partners/billing/reconciliation/unbilled","keep",,"Get-MgReportPartnerBillingReconciliationUnbilled","Get-MgReportPartnerBillingReconciliationUnbilled" +"GET","/reports/partners/billing/usage","keep",,"Get-MgReportPartnerBillingUsage","Get-MgReportPartnerBillingUsage" +"GET","/reports/partners/billing/usage/billed","keep",,"Get-MgReportPartnerBillingUsageBilled","Get-MgReportPartnerBillingUsageBilled" +"GET","/reports/partners/billing/usage/unbilled","keep",,"Get-MgReportPartnerBillingUsageUnbilled","Get-MgReportPartnerBillingUsageUnbilled" +"GET","/reports/security","keep",,"Get-MgReportSecurity","Get-MgReportSecurity" +"GET","/reports/security/getAttackSimulationRepeatOffenders","rename","ReportSecurityAttackSimulationRepeatOffender","Get-MgReportSecurityGetAttackSimulationRepeatOffenders","Get-MgReportSecurityAttackSimulationRepeatOffender" +"GET","/reports/security/getAttackSimulationSimulationUserCoverage","rename","ReportSecurityAttackSimulationUserCoverage","Get-MgReportSecurityGetAttackSimulationSimulationUserCoverage","Get-MgReportSecurityAttackSimulationUserCoverage" +"GET","/reports/security/getAttackSimulationTrainingUserCoverage","rename","ReportSecurityAttackSimulationTrainingUserCoverage","Get-MgReportSecurityGetAttackSimulationTrainingUserCoverage","Get-MgReportSecurityAttackSimulationTrainingUserCoverage" +"GET","/roleManagement","keep",,"Get-MgRoleManagement","Get-MgRoleManagement" +"GET","/roleManagement/directory","keep",,"Get-MgRoleManagementDirectory","Get-MgRoleManagementDirectory" +"GET","/roleManagement/directory/resourceNamespaces","keep",,"Get-MgRoleManagementDirectoryResourceNamespace","Get-MgRoleManagementDirectoryResourceNamespace" +"GET","/roleManagement/directory/resourceNamespaces/{param}","keep",,"Get-MgRoleManagementDirectoryResourceNamespace","Get-MgRoleManagementDirectoryResourceNamespace" +"GET","/roleManagement/directory/resourceNamespaces/{param}/resourceActions","keep",,"Get-MgRoleManagementDirectoryResourceNamespaceResourceAction","Get-MgRoleManagementDirectoryResourceNamespaceResourceAction" +"GET","/roleManagement/directory/resourceNamespaces/{param}/resourceActions/{param}","keep",,"Get-MgRoleManagementDirectoryResourceNamespaceResourceAction","Get-MgRoleManagementDirectoryResourceNamespaceResourceAction" +"GET","/roleManagement/directory/resourceNamespaces/{param}/resourceActions/$count","keep",,"Get-MgRoleManagementDirectoryResourceNamespaceResourceActionCount","Get-MgRoleManagementDirectoryResourceNamespaceResourceActionCount" +"GET","/roleManagement/directory/resourceNamespaces/$count","keep",,"Get-MgRoleManagementDirectoryResourceNamespaceCount","Get-MgRoleManagementDirectoryResourceNamespaceCount" +"GET","/roleManagement/directory/roleAssignments","keep",,"Get-MgRoleManagementDirectoryRoleAssignment","Get-MgRoleManagementDirectoryRoleAssignment" +"GET","/roleManagement/directory/roleAssignments/{param}","keep",,"Get-MgRoleManagementDirectoryRoleAssignment","Get-MgRoleManagementDirectoryRoleAssignment" +"GET","/roleManagement/directory/roleAssignments/{param}/appScope","keep",,"Get-MgRoleManagementDirectoryRoleAssignmentAppScope","Get-MgRoleManagementDirectoryRoleAssignmentAppScope" +"GET","/roleManagement/directory/roleAssignments/{param}/directoryScope","keep",,"Get-MgRoleManagementDirectoryRoleAssignmentDirectoryScope","Get-MgRoleManagementDirectoryRoleAssignmentDirectoryScope" +"GET","/roleManagement/directory/roleAssignments/{param}/principal","keep",,"Get-MgRoleManagementDirectoryRoleAssignmentPrincipal","Get-MgRoleManagementDirectoryRoleAssignmentPrincipal" +"GET","/roleManagement/directory/roleAssignments/{param}/roleDefinition","keep",,"Get-MgRoleManagementDirectoryRoleAssignmentRoleDefinition","Get-MgRoleManagementDirectoryRoleAssignmentRoleDefinition" +"GET","/roleManagement/directory/roleAssignments/$count","keep",,"Get-MgRoleManagementDirectoryRoleAssignmentCount","Get-MgRoleManagementDirectoryRoleAssignmentCount" +"GET","/roleManagement/directory/roleAssignmentScheduleInstances","keep",,"Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstance","Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstance" +"GET","/roleManagement/directory/roleAssignmentScheduleInstances/{param}","keep",,"Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstance","Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstance" +"GET","/roleManagement/directory/roleAssignmentScheduleInstances/{param}/activatedUsing","keep",,"Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstanceActivatedUsing","Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstanceActivatedUsing" +"GET","/roleManagement/directory/roleAssignmentScheduleInstances/{param}/appScope","keep",,"Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstanceAppScope","Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstanceAppScope" +"GET","/roleManagement/directory/roleAssignmentScheduleInstances/{param}/directoryScope","keep",,"Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstanceDirectoryScope","Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstanceDirectoryScope" +"GET","/roleManagement/directory/roleAssignmentScheduleInstances/{param}/principal","keep",,"Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstancePrincipal","Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstancePrincipal" +"GET","/roleManagement/directory/roleAssignmentScheduleInstances/{param}/roleDefinition","keep",,"Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstanceRoleDefinition","Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstanceRoleDefinition" +"GET","/roleManagement/directory/roleAssignmentScheduleInstances/$count","keep",,"Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstanceCount","Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstanceCount" +"GET","/roleManagement/directory/roleAssignmentScheduleRequests","keep",,"Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequest","Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequest" +"GET","/roleManagement/directory/roleAssignmentScheduleRequests/{param}","keep",,"Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequest","Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequest" +"GET","/roleManagement/directory/roleAssignmentScheduleRequests/{param}/activatedUsing","keep",,"Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequestActivatedUsing","Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequestActivatedUsing" +"GET","/roleManagement/directory/roleAssignmentScheduleRequests/{param}/appScope","keep",,"Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequestAppScope","Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequestAppScope" +"GET","/roleManagement/directory/roleAssignmentScheduleRequests/{param}/directoryScope","keep",,"Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequestDirectoryScope","Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequestDirectoryScope" +"GET","/roleManagement/directory/roleAssignmentScheduleRequests/{param}/principal","keep",,"Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequestPrincipal","Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequestPrincipal" +"GET","/roleManagement/directory/roleAssignmentScheduleRequests/{param}/roleDefinition","keep",,"Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequestRoleDefinition","Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequestRoleDefinition" +"GET","/roleManagement/directory/roleAssignmentScheduleRequests/{param}/targetSchedule","keep",,"Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequestTargetSchedule","Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequestTargetSchedule" +"GET","/roleManagement/directory/roleAssignmentScheduleRequests/$count","keep",,"Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequestCount","Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequestCount" +"GET","/roleManagement/directory/roleAssignmentSchedules","keep",,"Get-MgRoleManagementDirectoryRoleAssignmentSchedule","Get-MgRoleManagementDirectoryRoleAssignmentSchedule" +"GET","/roleManagement/directory/roleAssignmentSchedules/{param}","keep",,"Get-MgRoleManagementDirectoryRoleAssignmentSchedule","Get-MgRoleManagementDirectoryRoleAssignmentSchedule" +"GET","/roleManagement/directory/roleAssignmentSchedules/{param}/activatedUsing","keep",,"Get-MgRoleManagementDirectoryRoleAssignmentScheduleActivatedUsing","Get-MgRoleManagementDirectoryRoleAssignmentScheduleActivatedUsing" +"GET","/roleManagement/directory/roleAssignmentSchedules/{param}/appScope","keep",,"Get-MgRoleManagementDirectoryRoleAssignmentScheduleAppScope","Get-MgRoleManagementDirectoryRoleAssignmentScheduleAppScope" +"GET","/roleManagement/directory/roleAssignmentSchedules/{param}/directoryScope","keep",,"Get-MgRoleManagementDirectoryRoleAssignmentScheduleDirectoryScope","Get-MgRoleManagementDirectoryRoleAssignmentScheduleDirectoryScope" +"GET","/roleManagement/directory/roleAssignmentSchedules/{param}/principal","keep",,"Get-MgRoleManagementDirectoryRoleAssignmentSchedulePrincipal","Get-MgRoleManagementDirectoryRoleAssignmentSchedulePrincipal" +"GET","/roleManagement/directory/roleAssignmentSchedules/{param}/roleDefinition","keep",,"Get-MgRoleManagementDirectoryRoleAssignmentScheduleRoleDefinition","Get-MgRoleManagementDirectoryRoleAssignmentScheduleRoleDefinition" +"GET","/roleManagement/directory/roleAssignmentSchedules/$count","keep",,"Get-MgRoleManagementDirectoryRoleAssignmentScheduleCount","Get-MgRoleManagementDirectoryRoleAssignmentScheduleCount" +"GET","/roleManagement/directory/roleDefinitions","keep",,"Get-MgRoleManagementDirectoryRoleDefinition","Get-MgRoleManagementDirectoryRoleDefinition" +"GET","/roleManagement/directory/roleDefinitions/{param}","keep",,"Get-MgRoleManagementDirectoryRoleDefinition","Get-MgRoleManagementDirectoryRoleDefinition" +"GET","/roleManagement/directory/roleDefinitions/{param}/inheritsPermissionsFrom","keep",,"Get-MgRoleManagementDirectoryRoleDefinitionInheritPermissionFrom","Get-MgRoleManagementDirectoryRoleDefinitionInheritPermissionFrom" +"GET","/roleManagement/directory/roleDefinitions/{param}/inheritsPermissionsFrom/{param}","keep",,"Get-MgRoleManagementDirectoryRoleDefinitionInheritPermissionFrom","Get-MgRoleManagementDirectoryRoleDefinitionInheritPermissionFrom" +"GET","/roleManagement/directory/roleDefinitions/{param}/inheritsPermissionsFrom/$count","keep",,"Get-MgRoleManagementDirectoryRoleDefinitionInheritPermissionFromCount","Get-MgRoleManagementDirectoryRoleDefinitionInheritPermissionFromCount" +"GET","/roleManagement/directory/roleDefinitions/$count","keep",,"Get-MgRoleManagementDirectoryRoleDefinitionCount","Get-MgRoleManagementDirectoryRoleDefinitionCount" +"GET","/roleManagement/directory/roleEligibilityScheduleInstances","keep",,"Get-MgRoleManagementDirectoryRoleEligibilityScheduleInstance","Get-MgRoleManagementDirectoryRoleEligibilityScheduleInstance" +"GET","/roleManagement/directory/roleEligibilityScheduleInstances/{param}","keep",,"Get-MgRoleManagementDirectoryRoleEligibilityScheduleInstance","Get-MgRoleManagementDirectoryRoleEligibilityScheduleInstance" +"GET","/roleManagement/directory/roleEligibilityScheduleInstances/{param}/appScope","keep",,"Get-MgRoleManagementDirectoryRoleEligibilityScheduleInstanceAppScope","Get-MgRoleManagementDirectoryRoleEligibilityScheduleInstanceAppScope" +"GET","/roleManagement/directory/roleEligibilityScheduleInstances/{param}/directoryScope","keep",,"Get-MgRoleManagementDirectoryRoleEligibilityScheduleInstanceDirectoryScope","Get-MgRoleManagementDirectoryRoleEligibilityScheduleInstanceDirectoryScope" +"GET","/roleManagement/directory/roleEligibilityScheduleInstances/{param}/principal","keep",,"Get-MgRoleManagementDirectoryRoleEligibilityScheduleInstancePrincipal","Get-MgRoleManagementDirectoryRoleEligibilityScheduleInstancePrincipal" +"GET","/roleManagement/directory/roleEligibilityScheduleInstances/{param}/roleDefinition","keep",,"Get-MgRoleManagementDirectoryRoleEligibilityScheduleInstanceRoleDefinition","Get-MgRoleManagementDirectoryRoleEligibilityScheduleInstanceRoleDefinition" +"GET","/roleManagement/directory/roleEligibilityScheduleInstances/$count","keep",,"Get-MgRoleManagementDirectoryRoleEligibilityScheduleInstanceCount","Get-MgRoleManagementDirectoryRoleEligibilityScheduleInstanceCount" +"GET","/roleManagement/directory/roleEligibilityScheduleRequests","keep",,"Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequest","Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequest" +"GET","/roleManagement/directory/roleEligibilityScheduleRequests/{param}","keep",,"Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequest","Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequest" +"GET","/roleManagement/directory/roleEligibilityScheduleRequests/{param}/appScope","keep",,"Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequestAppScope","Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequestAppScope" +"GET","/roleManagement/directory/roleEligibilityScheduleRequests/{param}/directoryScope","keep",,"Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequestDirectoryScope","Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequestDirectoryScope" +"GET","/roleManagement/directory/roleEligibilityScheduleRequests/{param}/principal","keep",,"Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequestPrincipal","Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequestPrincipal" +"GET","/roleManagement/directory/roleEligibilityScheduleRequests/{param}/roleDefinition","keep",,"Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequestRoleDefinition","Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequestRoleDefinition" +"GET","/roleManagement/directory/roleEligibilityScheduleRequests/{param}/targetSchedule","keep",,"Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequestTargetSchedule","Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequestTargetSchedule" +"GET","/roleManagement/directory/roleEligibilityScheduleRequests/$count","keep",,"Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequestCount","Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequestCount" +"GET","/roleManagement/directory/roleEligibilitySchedules","keep",,"Get-MgRoleManagementDirectoryRoleEligibilitySchedule","Get-MgRoleManagementDirectoryRoleEligibilitySchedule" +"GET","/roleManagement/directory/roleEligibilitySchedules/{param}","keep",,"Get-MgRoleManagementDirectoryRoleEligibilitySchedule","Get-MgRoleManagementDirectoryRoleEligibilitySchedule" +"GET","/roleManagement/directory/roleEligibilitySchedules/{param}/appScope","keep",,"Get-MgRoleManagementDirectoryRoleEligibilityScheduleAppScope","Get-MgRoleManagementDirectoryRoleEligibilityScheduleAppScope" +"GET","/roleManagement/directory/roleEligibilitySchedules/{param}/directoryScope","keep",,"Get-MgRoleManagementDirectoryRoleEligibilityScheduleDirectoryScope","Get-MgRoleManagementDirectoryRoleEligibilityScheduleDirectoryScope" +"GET","/roleManagement/directory/roleEligibilitySchedules/{param}/principal","keep",,"Get-MgRoleManagementDirectoryRoleEligibilitySchedulePrincipal","Get-MgRoleManagementDirectoryRoleEligibilitySchedulePrincipal" +"GET","/roleManagement/directory/roleEligibilitySchedules/{param}/roleDefinition","keep",,"Get-MgRoleManagementDirectoryRoleEligibilityScheduleRoleDefinition","Get-MgRoleManagementDirectoryRoleEligibilityScheduleRoleDefinition" +"GET","/roleManagement/directory/roleEligibilitySchedules/$count","keep",,"Get-MgRoleManagementDirectoryRoleEligibilityScheduleCount","Get-MgRoleManagementDirectoryRoleEligibilityScheduleCount" +"GET","/roleManagement/entitlementManagement","keep",,"Get-MgRoleManagementEntitlementManagement","Get-MgRoleManagementEntitlementManagement" +"GET","/roleManagement/entitlementManagement/resourceNamespaces","keep",,"Get-MgRoleManagementEntitlementManagementResourceNamespace","Get-MgRoleManagementEntitlementManagementResourceNamespace" +"GET","/roleManagement/entitlementManagement/resourceNamespaces/{param}","keep",,"Get-MgRoleManagementEntitlementManagementResourceNamespace","Get-MgRoleManagementEntitlementManagementResourceNamespace" +"GET","/roleManagement/entitlementManagement/resourceNamespaces/{param}/resourceActions","keep",,"Get-MgRoleManagementEntitlementManagementResourceNamespaceResourceAction","Get-MgRoleManagementEntitlementManagementResourceNamespaceResourceAction" +"GET","/roleManagement/entitlementManagement/resourceNamespaces/{param}/resourceActions/{param}","keep",,"Get-MgRoleManagementEntitlementManagementResourceNamespaceResourceAction","Get-MgRoleManagementEntitlementManagementResourceNamespaceResourceAction" +"GET","/roleManagement/entitlementManagement/resourceNamespaces/{param}/resourceActions/$count","keep",,"Get-MgRoleManagementEntitlementManagementResourceNamespaceResourceActionCount","Get-MgRoleManagementEntitlementManagementResourceNamespaceResourceActionCount" +"GET","/roleManagement/entitlementManagement/resourceNamespaces/$count","keep",,"Get-MgRoleManagementEntitlementManagementResourceNamespaceCount","Get-MgRoleManagementEntitlementManagementResourceNamespaceCount" +"GET","/roleManagement/entitlementManagement/roleAssignments","keep",,"Get-MgRoleManagementEntitlementManagementRoleAssignment","Get-MgRoleManagementEntitlementManagementRoleAssignment" +"GET","/roleManagement/entitlementManagement/roleAssignments/{param}","keep",,"Get-MgRoleManagementEntitlementManagementRoleAssignment","Get-MgRoleManagementEntitlementManagementRoleAssignment" +"GET","/roleManagement/entitlementManagement/roleAssignments/{param}/appScope","keep",,"Get-MgRoleManagementEntitlementManagementRoleAssignmentAppScope","Get-MgRoleManagementEntitlementManagementRoleAssignmentAppScope" +"GET","/roleManagement/entitlementManagement/roleAssignments/{param}/directoryScope","keep",,"Get-MgRoleManagementEntitlementManagementRoleAssignmentDirectoryScope","Get-MgRoleManagementEntitlementManagementRoleAssignmentDirectoryScope" +"GET","/roleManagement/entitlementManagement/roleAssignments/{param}/principal","keep",,"Get-MgRoleManagementEntitlementManagementRoleAssignmentPrincipal","Get-MgRoleManagementEntitlementManagementRoleAssignmentPrincipal" +"GET","/roleManagement/entitlementManagement/roleAssignments/{param}/roleDefinition","keep",,"Get-MgRoleManagementEntitlementManagementRoleAssignmentRoleDefinition","Get-MgRoleManagementEntitlementManagementRoleAssignmentRoleDefinition" +"GET","/roleManagement/entitlementManagement/roleAssignments/$count","keep",,"Get-MgRoleManagementEntitlementManagementRoleAssignmentCount","Get-MgRoleManagementEntitlementManagementRoleAssignmentCount" +"GET","/roleManagement/entitlementManagement/roleAssignmentScheduleInstances","keep",,"Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleInstance","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleInstance" +"GET","/roleManagement/entitlementManagement/roleAssignmentScheduleInstances/{param}","keep",,"Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleInstance","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleInstance" +"GET","/roleManagement/entitlementManagement/roleAssignmentScheduleInstances/{param}/activatedUsing","keep",,"Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleInstanceActivatedUsing","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleInstanceActivatedUsing" +"GET","/roleManagement/entitlementManagement/roleAssignmentScheduleInstances/{param}/appScope","keep",,"Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleInstanceAppScope","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleInstanceAppScope" +"GET","/roleManagement/entitlementManagement/roleAssignmentScheduleInstances/{param}/directoryScope","keep",,"Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleInstanceDirectoryScope","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleInstanceDirectoryScope" +"GET","/roleManagement/entitlementManagement/roleAssignmentScheduleInstances/{param}/principal","keep",,"Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleInstancePrincipal","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleInstancePrincipal" +"GET","/roleManagement/entitlementManagement/roleAssignmentScheduleInstances/{param}/roleDefinition","keep",,"Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleInstanceRoleDefinition","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleInstanceRoleDefinition" +"GET","/roleManagement/entitlementManagement/roleAssignmentScheduleInstances/$count","keep",,"Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleInstanceCount","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleInstanceCount" +"GET","/roleManagement/entitlementManagement/roleAssignmentScheduleRequests","keep",,"Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequest","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequest" +"GET","/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{param}","keep",,"Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequest","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequest" +"GET","/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{param}/activatedUsing","keep",,"Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestActivatedUsing","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestActivatedUsing" +"GET","/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{param}/appScope","keep",,"Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestAppScope","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestAppScope" +"GET","/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{param}/directoryScope","keep",,"Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestDirectoryScope","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestDirectoryScope" +"GET","/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{param}/principal","keep",,"Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestPrincipal","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestPrincipal" +"GET","/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{param}/roleDefinition","keep",,"Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestRoleDefinition","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestRoleDefinition" +"GET","/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{param}/targetSchedule","keep",,"Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestTargetSchedule","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestTargetSchedule" +"GET","/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/$count","keep",,"Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestCount","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestCount" +"GET","/roleManagement/entitlementManagement/roleAssignmentSchedules","keep",,"Get-MgRoleManagementEntitlementManagementRoleAssignmentSchedule","Get-MgRoleManagementEntitlementManagementRoleAssignmentSchedule" +"GET","/roleManagement/entitlementManagement/roleAssignmentSchedules/{param}","keep",,"Get-MgRoleManagementEntitlementManagementRoleAssignmentSchedule","Get-MgRoleManagementEntitlementManagementRoleAssignmentSchedule" +"GET","/roleManagement/entitlementManagement/roleAssignmentSchedules/{param}/activatedUsing","keep",,"Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleActivatedUsing","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleActivatedUsing" +"GET","/roleManagement/entitlementManagement/roleAssignmentSchedules/{param}/appScope","keep",,"Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleAppScope","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleAppScope" +"GET","/roleManagement/entitlementManagement/roleAssignmentSchedules/{param}/directoryScope","keep",,"Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleDirectoryScope","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleDirectoryScope" +"GET","/roleManagement/entitlementManagement/roleAssignmentSchedules/{param}/principal","keep",,"Get-MgRoleManagementEntitlementManagementRoleAssignmentSchedulePrincipal","Get-MgRoleManagementEntitlementManagementRoleAssignmentSchedulePrincipal" +"GET","/roleManagement/entitlementManagement/roleAssignmentSchedules/{param}/roleDefinition","keep",,"Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRoleDefinition","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRoleDefinition" +"GET","/roleManagement/entitlementManagement/roleAssignmentSchedules/$count","keep",,"Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleCount","Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleCount" +"GET","/roleManagement/entitlementManagement/roleDefinitions","keep",,"Get-MgRoleManagementEntitlementManagementRoleDefinition","Get-MgRoleManagementEntitlementManagementRoleDefinition" +"GET","/roleManagement/entitlementManagement/roleDefinitions/{param}","keep",,"Get-MgRoleManagementEntitlementManagementRoleDefinition","Get-MgRoleManagementEntitlementManagementRoleDefinition" +"GET","/roleManagement/entitlementManagement/roleDefinitions/{param}/inheritsPermissionsFrom","keep",,"Get-MgRoleManagementEntitlementManagementRoleDefinitionInheritPermissionFrom","Get-MgRoleManagementEntitlementManagementRoleDefinitionInheritPermissionFrom" +"GET","/roleManagement/entitlementManagement/roleDefinitions/{param}/inheritsPermissionsFrom/{param}","keep",,"Get-MgRoleManagementEntitlementManagementRoleDefinitionInheritPermissionFrom","Get-MgRoleManagementEntitlementManagementRoleDefinitionInheritPermissionFrom" +"GET","/roleManagement/entitlementManagement/roleDefinitions/{param}/inheritsPermissionsFrom/$count","keep",,"Get-MgRoleManagementEntitlementManagementRoleDefinitionInheritPermissionFromCount","Get-MgRoleManagementEntitlementManagementRoleDefinitionInheritPermissionFromCount" +"GET","/roleManagement/entitlementManagement/roleDefinitions/$count","keep",,"Get-MgRoleManagementEntitlementManagementRoleDefinitionCount","Get-MgRoleManagementEntitlementManagementRoleDefinitionCount" +"GET","/roleManagement/entitlementManagement/roleEligibilityScheduleInstances","keep",,"Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleInstance","Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleInstance" +"GET","/roleManagement/entitlementManagement/roleEligibilityScheduleInstances/{param}","keep",,"Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleInstance","Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleInstance" +"GET","/roleManagement/entitlementManagement/roleEligibilityScheduleInstances/{param}/appScope","keep",,"Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleInstanceAppScope","Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleInstanceAppScope" +"GET","/roleManagement/entitlementManagement/roleEligibilityScheduleInstances/{param}/directoryScope","keep",,"Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleInstanceDirectoryScope","Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleInstanceDirectoryScope" +"GET","/roleManagement/entitlementManagement/roleEligibilityScheduleInstances/{param}/principal","keep",,"Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleInstancePrincipal","Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleInstancePrincipal" +"GET","/roleManagement/entitlementManagement/roleEligibilityScheduleInstances/{param}/roleDefinition","keep",,"Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleInstanceRoleDefinition","Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleInstanceRoleDefinition" +"GET","/roleManagement/entitlementManagement/roleEligibilityScheduleInstances/$count","keep",,"Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleInstanceCount","Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleInstanceCount" +"GET","/roleManagement/entitlementManagement/roleEligibilityScheduleRequests","keep",,"Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequest","Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequest" +"GET","/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{param}","keep",,"Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequest","Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequest" +"GET","/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{param}/appScope","keep",,"Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequestAppScope","Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequestAppScope" +"GET","/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{param}/directoryScope","keep",,"Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequestDirectoryScope","Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequestDirectoryScope" +"GET","/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{param}/principal","keep",,"Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequestPrincipal","Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequestPrincipal" +"GET","/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{param}/roleDefinition","keep",,"Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequestRoleDefinition","Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequestRoleDefinition" +"GET","/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{param}/targetSchedule","keep",,"Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequestTargetSchedule","Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequestTargetSchedule" +"GET","/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/$count","keep",,"Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequestCount","Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequestCount" +"GET","/roleManagement/entitlementManagement/roleEligibilitySchedules","keep",,"Get-MgRoleManagementEntitlementManagementRoleEligibilitySchedule","Get-MgRoleManagementEntitlementManagementRoleEligibilitySchedule" +"GET","/roleManagement/entitlementManagement/roleEligibilitySchedules/{param}","keep",,"Get-MgRoleManagementEntitlementManagementRoleEligibilitySchedule","Get-MgRoleManagementEntitlementManagementRoleEligibilitySchedule" +"GET","/roleManagement/entitlementManagement/roleEligibilitySchedules/{param}/appScope","keep",,"Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleAppScope","Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleAppScope" +"GET","/roleManagement/entitlementManagement/roleEligibilitySchedules/{param}/directoryScope","keep",,"Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleDirectoryScope","Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleDirectoryScope" +"GET","/roleManagement/entitlementManagement/roleEligibilitySchedules/{param}/principal","keep",,"Get-MgRoleManagementEntitlementManagementRoleEligibilitySchedulePrincipal","Get-MgRoleManagementEntitlementManagementRoleEligibilitySchedulePrincipal" +"GET","/roleManagement/entitlementManagement/roleEligibilitySchedules/{param}/roleDefinition","keep",,"Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRoleDefinition","Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRoleDefinition" +"GET","/roleManagement/entitlementManagement/roleEligibilitySchedules/$count","keep",,"Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleCount","Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleCount" +"GET","/schemaExtensions","keep",,"Get-MgSchemaExtension","Get-MgSchemaExtension" +"GET","/schemaExtensions/{param}","keep",,"Get-MgSchemaExtension","Get-MgSchemaExtension" +"GET","/schemaExtensions/$count","keep",,"Get-MgSchemaExtensionCount","Get-MgSchemaExtensionCount" +"GET","/search","keep",,"Get-MgSearch","Get-MgSearchEntity" +"GET","/search/acronyms","keep",,"Get-MgSearchAcronym","Get-MgSearchAcronym" +"GET","/search/acronyms/{param}","keep",,"Get-MgSearchAcronym","Get-MgSearchAcronym" +"GET","/search/acronyms/$count","keep",,"Get-MgSearchAcronymCount","Get-MgSearchAcronymCount" +"GET","/search/bookmarks","keep",,"Get-MgSearchBookmark","Get-MgSearchBookmark" +"GET","/search/bookmarks/{param}","keep",,"Get-MgSearchBookmark","Get-MgSearchBookmark" +"GET","/search/bookmarks/$count","keep",,"Get-MgSearchBookmarkCount","Get-MgSearchBookmarkCount" +"GET","/search/qnas","keep",,"Get-MgSearchQna","Get-MgSearchQna" +"GET","/search/qnas/{param}","keep",,"Get-MgSearchQna","Get-MgSearchQna" +"GET","/search/qnas/$count","keep",,"Get-MgSearchQnaCount","Get-MgSearchQnaCount" +"GET","/security","suppress",,"Get-MgSecurity","no oracle row for GET /security and 'Get-MgSecurity' unshipped" +"GET","/security/alerts","keep",,"Get-MgSecurityAlert","Get-MgSecurityAlert" +"GET","/security/alerts/{param}","keep",,"Get-MgSecurityAlert","Get-MgSecurityAlert" +"GET","/security/alerts/$count","keep",,"Get-MgSecurityAlertCount","Get-MgSecurityAlertCount" +"GET","/security/attackSimulation/endUserNotifications","keep",,"Get-MgSecurityAttackSimulationEndUserNotification","Get-MgSecurityAttackSimulationEndUserNotification" +"GET","/security/attackSimulation/endUserNotifications/{param}","keep",,"Get-MgSecurityAttackSimulationEndUserNotification","Get-MgSecurityAttackSimulationEndUserNotification" +"GET","/security/attackSimulation/endUserNotifications/{param}/details","keep",,"Get-MgSecurityAttackSimulationEndUserNotificationDetail","Get-MgSecurityAttackSimulationEndUserNotificationDetail" +"GET","/security/attackSimulation/endUserNotifications/{param}/details/{param}","keep",,"Get-MgSecurityAttackSimulationEndUserNotificationDetail","Get-MgSecurityAttackSimulationEndUserNotificationDetail" +"GET","/security/attackSimulation/endUserNotifications/{param}/details/$count","keep",,"Get-MgSecurityAttackSimulationEndUserNotificationDetailCount","Get-MgSecurityAttackSimulationEndUserNotificationDetailCount" +"GET","/security/attackSimulation/endUserNotifications/$count","keep",,"Get-MgSecurityAttackSimulationEndUserNotificationCount","Get-MgSecurityAttackSimulationEndUserNotificationCount" +"GET","/security/attackSimulation/landingPages","keep",,"Get-MgSecurityAttackSimulationLandingPage","Get-MgSecurityAttackSimulationLandingPage" +"GET","/security/attackSimulation/landingPages/{param}","keep",,"Get-MgSecurityAttackSimulationLandingPage","Get-MgSecurityAttackSimulationLandingPage" +"GET","/security/attackSimulation/landingPages/{param}/details","keep",,"Get-MgSecurityAttackSimulationLandingPageDetail","Get-MgSecurityAttackSimulationLandingPageDetail" +"GET","/security/attackSimulation/landingPages/{param}/details/{param}","keep",,"Get-MgSecurityAttackSimulationLandingPageDetail","Get-MgSecurityAttackSimulationLandingPageDetail" +"GET","/security/attackSimulation/landingPages/{param}/details/$count","keep",,"Get-MgSecurityAttackSimulationLandingPageDetailCount","Get-MgSecurityAttackSimulationLandingPageDetailCount" +"GET","/security/attackSimulation/landingPages/$count","keep",,"Get-MgSecurityAttackSimulationLandingPageCount","Get-MgSecurityAttackSimulationLandingPageCount" +"GET","/security/attackSimulation/loginPages","keep",,"Get-MgSecurityAttackSimulationLoginPage","Get-MgSecurityAttackSimulationLoginPage" +"GET","/security/attackSimulation/loginPages/{param}","keep",,"Get-MgSecurityAttackSimulationLoginPage","Get-MgSecurityAttackSimulationLoginPage" +"GET","/security/attackSimulation/loginPages/$count","keep",,"Get-MgSecurityAttackSimulationLoginPageCount","Get-MgSecurityAttackSimulationLoginPageCount" +"GET","/security/attackSimulation/operations","keep",,"Get-MgSecurityAttackSimulationOperation","Get-MgSecurityAttackSimulationOperation" +"GET","/security/attackSimulation/operations/{param}","keep",,"Get-MgSecurityAttackSimulationOperation","Get-MgSecurityAttackSimulationOperation" +"GET","/security/attackSimulation/operations/$count","keep",,"Get-MgSecurityAttackSimulationOperationCount","Get-MgSecurityAttackSimulationOperationCount" +"GET","/security/attackSimulation/payloads","keep",,"Get-MgSecurityAttackSimulationPayload","Get-MgSecurityAttackSimulationPayload" +"GET","/security/attackSimulation/payloads/{param}","keep",,"Get-MgSecurityAttackSimulationPayload","Get-MgSecurityAttackSimulationPayload" +"GET","/security/attackSimulation/payloads/$count","keep",,"Get-MgSecurityAttackSimulationPayloadCount","Get-MgSecurityAttackSimulationPayloadCount" +"GET","/security/attackSimulation/simulationAutomations","keep",,"Get-MgSecurityAttackSimulationAutomation","Get-MgSecurityAttackSimulationAutomation" +"GET","/security/attackSimulation/simulationAutomations/{param}","keep",,"Get-MgSecurityAttackSimulationAutomation","Get-MgSecurityAttackSimulationAutomation" +"GET","/security/attackSimulation/simulationAutomations/{param}/runs","keep",,"Get-MgSecurityAttackSimulationAutomationRun","Get-MgSecurityAttackSimulationAutomationRun" +"GET","/security/attackSimulation/simulationAutomations/{param}/runs/{param}","keep",,"Get-MgSecurityAttackSimulationAutomationRun","Get-MgSecurityAttackSimulationAutomationRun" +"GET","/security/attackSimulation/simulationAutomations/{param}/runs/$count","keep",,"Get-MgSecurityAttackSimulationAutomationRunCount","Get-MgSecurityAttackSimulationAutomationRunCount" +"GET","/security/attackSimulation/simulationAutomations/$count","keep",,"Get-MgSecurityAttackSimulationAutomationCount","Get-MgSecurityAttackSimulationAutomationCount" +"GET","/security/attackSimulation/simulations","keep",,"Get-MgSecurityAttackSimulation","Get-MgSecurityAttackSimulation" +"GET","/security/attackSimulation/simulations/{param}","keep",,"Get-MgSecurityAttackSimulation","Get-MgSecurityAttackSimulation" +"GET","/security/attackSimulation/simulations/$count","keep",,"Get-MgSecurityAttackSimulationCount","Get-MgSecurityAttackSimulationCount" +"GET","/security/attackSimulation/trainings","keep",,"Get-MgSecurityAttackSimulationTraining","Get-MgSecurityAttackSimulationTraining" +"GET","/security/attackSimulation/trainings/{param}","keep",,"Get-MgSecurityAttackSimulationTraining","Get-MgSecurityAttackSimulationTraining" +"GET","/security/attackSimulation/trainings/{param}/languageDetails","keep",,"Get-MgSecurityAttackSimulationTrainingLanguageDetail","Get-MgSecurityAttackSimulationTrainingLanguageDetail" +"GET","/security/attackSimulation/trainings/{param}/languageDetails/{param}","keep",,"Get-MgSecurityAttackSimulationTrainingLanguageDetail","Get-MgSecurityAttackSimulationTrainingLanguageDetail" +"GET","/security/attackSimulation/trainings/{param}/languageDetails/$count","keep",,"Get-MgSecurityAttackSimulationTrainingLanguageDetailCount","Get-MgSecurityAttackSimulationTrainingLanguageDetailCount" +"GET","/security/attackSimulation/trainings/$count","keep",,"Get-MgSecurityAttackSimulationTrainingCount","Get-MgSecurityAttackSimulationTrainingCount" +"GET","/security/auditLog","keep",,"Get-MgSecurityAuditLog","Get-MgSecurityAuditLog" +"GET","/security/auditLog/queries","keep",,"Get-MgSecurityAuditLogQuery","Get-MgSecurityAuditLogQuery" +"GET","/security/auditLog/queries/{param}","keep",,"Get-MgSecurityAuditLogQuery","Get-MgSecurityAuditLogQuery" +"GET","/security/auditLog/queries/{param}/records","keep",,"Get-MgSecurityAuditLogQueryRecord","Get-MgSecurityAuditLogQueryRecord" +"GET","/security/auditLog/queries/{param}/records/{param}","keep",,"Get-MgSecurityAuditLogQueryRecord","Get-MgSecurityAuditLogQueryRecord" +"GET","/security/auditLog/queries/{param}/records/$count","keep",,"Get-MgSecurityAuditLogQueryRecordCount","Get-MgSecurityAuditLogQueryRecordCount" +"GET","/security/auditLog/queries/$count","keep",,"Get-MgSecurityAuditLogQueryCount","Get-MgSecurityAuditLogQueryCount" +"GET","/security/cases","keep",,"Get-MgSecurityCase","Get-MgSecurityCase" +"GET","/security/cases/ediscoveryCases","keep",,"Get-MgSecurityCaseEdiscoveryCase","Get-MgSecurityCaseEdiscoveryCase" +"GET","/security/cases/ediscoveryCases/{param}","keep",,"Get-MgSecurityCaseEdiscoveryCase","Get-MgSecurityCaseEdiscoveryCase" +"GET","/security/cases/ediscoveryCases/{param}/caseMembers","keep",,"Get-MgSecurityCaseEdiscoveryCaseMember","Get-MgSecurityCaseEdiscoveryCaseMember" +"GET","/security/cases/ediscoveryCases/{param}/caseMembers/{param}","keep",,"Get-MgSecurityCaseEdiscoveryCaseMember","Get-MgSecurityCaseEdiscoveryCaseMember" +"GET","/security/cases/ediscoveryCases/{param}/caseMembers/$count","keep",,"Get-MgSecurityCaseEdiscoveryCaseMemberCount","Get-MgSecurityCaseEdiscoveryCaseMemberCount" +"GET","/security/cases/ediscoveryCases/{param}/custodians","keep",,"Get-MgSecurityCaseEdiscoveryCaseCustodian","Get-MgSecurityCaseEdiscoveryCaseCustodian" +"GET","/security/cases/ediscoveryCases/{param}/custodians/{param}","keep",,"Get-MgSecurityCaseEdiscoveryCaseCustodian","Get-MgSecurityCaseEdiscoveryCaseCustodian" +"GET","/security/cases/ediscoveryCases/{param}/custodians/{param}/lastIndexOperation","keep",,"Get-MgSecurityCaseEdiscoveryCaseCustodianLastIndexOperation","Get-MgSecurityCaseEdiscoveryCaseCustodianLastIndexOperation" +"GET","/security/cases/ediscoveryCases/{param}/custodians/{param}/siteSources","keep",,"Get-MgSecurityCaseEdiscoveryCaseCustodianSiteSource","Get-MgSecurityCaseEdiscoveryCaseCustodianSiteSource" +"GET","/security/cases/ediscoveryCases/{param}/custodians/{param}/siteSources/{param}","keep",,"Get-MgSecurityCaseEdiscoveryCaseCustodianSiteSource","Get-MgSecurityCaseEdiscoveryCaseCustodianSiteSource" +"GET","/security/cases/ediscoveryCases/{param}/custodians/{param}/siteSources/{param}/site","keep",,"Get-MgSecurityCaseEdiscoveryCaseCustodianSiteSourceSite","Get-MgSecurityCaseEdiscoveryCaseCustodianSiteSourceSite" +"GET","/security/cases/ediscoveryCases/{param}/custodians/{param}/siteSources/$count","keep",,"Get-MgSecurityCaseEdiscoveryCaseCustodianSiteSourceCount","Get-MgSecurityCaseEdiscoveryCaseCustodianSiteSourceCount" +"GET","/security/cases/ediscoveryCases/{param}/custodians/{param}/unifiedGroupSources","keep",,"Get-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource","Get-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource" +"GET","/security/cases/ediscoveryCases/{param}/custodians/{param}/unifiedGroupSources/{param}","keep",,"Get-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource","Get-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource" +"GET","/security/cases/ediscoveryCases/{param}/custodians/{param}/unifiedGroupSources/{param}/group","keep",,"Get-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSourceGroup","Get-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSourceGroup" +"GET","/security/cases/ediscoveryCases/{param}/custodians/{param}/unifiedGroupSources/{param}/group/serviceProvisioningErrors","keep",,"Get-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSourceGroupServiceProvisioningError","Get-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSourceGroupServiceProvisioningError" +"GET","/security/cases/ediscoveryCases/{param}/custodians/{param}/unifiedGroupSources/{param}/group/serviceProvisioningErrors/$count","keep",,"Get-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSourceGroupServiceProvisioningErrorCount","Get-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSourceGroupServiceProvisioningErrorCount" +"GET","/security/cases/ediscoveryCases/{param}/custodians/{param}/unifiedGroupSources/$count","keep",,"Get-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSourceCount","Get-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSourceCount" +"GET","/security/cases/ediscoveryCases/{param}/custodians/{param}/userSources","keep",,"Get-MgSecurityCaseEdiscoveryCaseCustodianUserSource","Get-MgSecurityCaseEdiscoveryCaseCustodianUserSource" +"GET","/security/cases/ediscoveryCases/{param}/custodians/{param}/userSources/{param}","keep",,"Get-MgSecurityCaseEdiscoveryCaseCustodianUserSource","Get-MgSecurityCaseEdiscoveryCaseCustodianUserSource" +"GET","/security/cases/ediscoveryCases/{param}/custodians/{param}/userSources/$count","keep",,"Get-MgSecurityCaseEdiscoveryCaseCustodianUserSourceCount","Get-MgSecurityCaseEdiscoveryCaseCustodianUserSourceCount" +"GET","/security/cases/ediscoveryCases/{param}/custodians/$count","keep",,"Get-MgSecurityCaseEdiscoveryCaseCustodianCount","Get-MgSecurityCaseEdiscoveryCaseCustodianCount" +"GET","/security/cases/ediscoveryCases/{param}/noncustodialDataSources","keep",,"Get-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource","Get-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource" +"GET","/security/cases/ediscoveryCases/{param}/noncustodialDataSources/{param}","keep",,"Get-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource","Get-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource" +"GET","/security/cases/ediscoveryCases/{param}/noncustodialDataSources/{param}/dataSource","suppress",,"Get-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceDataSource","no oracle row for GET /security/cases/ediscoveryCases/{param}/noncustodialDataSources/{param}/dataSource and 'Get-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceDataSource' unshipped" +"GET","/security/cases/ediscoveryCases/{param}/noncustodialDataSources/{param}/lastIndexOperation","keep",,"Get-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceLastIndexOperation","Get-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceLastIndexOperation" +"GET","/security/cases/ediscoveryCases/{param}/noncustodialDataSources/$count","keep",,"Get-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceCount","Get-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceCount" +"GET","/security/cases/ediscoveryCases/{param}/operations","keep",,"Get-MgSecurityCaseEdiscoveryCaseOperation","Get-MgSecurityCaseEdiscoveryCaseOperation" +"GET","/security/cases/ediscoveryCases/{param}/operations/{param}","keep",,"Get-MgSecurityCaseEdiscoveryCaseOperation","Get-MgSecurityCaseEdiscoveryCaseOperation" +"GET","/security/cases/ediscoveryCases/{param}/operations/$count","keep",,"Get-MgSecurityCaseEdiscoveryCaseOperationCount","Get-MgSecurityCaseEdiscoveryCaseOperationCount" +"GET","/security/cases/ediscoveryCases/{param}/reviewSets","keep",,"Get-MgSecurityCaseEdiscoveryCaseReviewSet","Get-MgSecurityCaseEdiscoveryCaseReviewSet" +"GET","/security/cases/ediscoveryCases/{param}/reviewSets/{param}","keep",,"Get-MgSecurityCaseEdiscoveryCaseReviewSet","Get-MgSecurityCaseEdiscoveryCaseReviewSet" +"GET","/security/cases/ediscoveryCases/{param}/reviewSets/{param}/queries","keep",,"Get-MgSecurityCaseEdiscoveryCaseReviewSetQuery","Get-MgSecurityCaseEdiscoveryCaseReviewSetQuery" +"GET","/security/cases/ediscoveryCases/{param}/reviewSets/{param}/queries/{param}","keep",,"Get-MgSecurityCaseEdiscoveryCaseReviewSetQuery","Get-MgSecurityCaseEdiscoveryCaseReviewSetQuery" +"GET","/security/cases/ediscoveryCases/{param}/reviewSets/{param}/queries/$count","keep",,"Get-MgSecurityCaseEdiscoveryCaseReviewSetQueryCount","Get-MgSecurityCaseEdiscoveryCaseReviewSetQueryCount" +"GET","/security/cases/ediscoveryCases/{param}/reviewSets/$count","keep",,"Get-MgSecurityCaseEdiscoveryCaseReviewSetCount","Get-MgSecurityCaseEdiscoveryCaseReviewSetCount" +"GET","/security/cases/ediscoveryCases/{param}/searches","keep",,"Get-MgSecurityCaseEdiscoveryCaseSearch","Get-MgSecurityCaseEdiscoveryCaseSearch" +"GET","/security/cases/ediscoveryCases/{param}/searches/{param}","keep",,"Get-MgSecurityCaseEdiscoveryCaseSearch","Get-MgSecurityCaseEdiscoveryCaseSearch" +"GET","/security/cases/ediscoveryCases/{param}/searches/{param}/additionalSources","keep",,"Get-MgSecurityCaseEdiscoveryCaseSearchAdditionalSource","Get-MgSecurityCaseEdiscoveryCaseSearchAdditionalSource" +"GET","/security/cases/ediscoveryCases/{param}/searches/{param}/additionalSources/{param}","keep",,"Get-MgSecurityCaseEdiscoveryCaseSearchAdditionalSource","Get-MgSecurityCaseEdiscoveryCaseSearchAdditionalSource" +"GET","/security/cases/ediscoveryCases/{param}/searches/{param}/additionalSources/$count","keep",,"Get-MgSecurityCaseEdiscoveryCaseSearchAdditionalSourceCount","Get-MgSecurityCaseEdiscoveryCaseSearchAdditionalSourceCount" +"GET","/security/cases/ediscoveryCases/{param}/searches/{param}/addToReviewSetOperation","keep",,"Get-MgSecurityCaseEdiscoveryCaseSearchAddToReviewSetOperation","Get-MgSecurityCaseEdiscoveryCaseSearchAddToReviewSetOperation" +"GET","/security/cases/ediscoveryCases/{param}/searches/{param}/custodianSources","keep",,"Get-MgSecurityCaseEdiscoveryCaseSearchCustodianSource","Get-MgSecurityCaseEdiscoveryCaseSearchCustodianSource" +"GET","/security/cases/ediscoveryCases/{param}/searches/{param}/custodianSources/{param}","keep",,"Get-MgSecurityCaseEdiscoveryCaseSearchCustodianSource","Get-MgSecurityCaseEdiscoveryCaseSearchCustodianSource" +"GET","/security/cases/ediscoveryCases/{param}/searches/{param}/custodianSources/$count","keep",,"Get-MgSecurityCaseEdiscoveryCaseSearchCustodianSourceCount","Get-MgSecurityCaseEdiscoveryCaseSearchCustodianSourceCount" +"GET","/security/cases/ediscoveryCases/{param}/searches/{param}/lastEstimateStatisticsOperation","keep",,"Get-MgSecurityCaseEdiscoveryCaseSearchLastEstimateStatisticsOperation","Get-MgSecurityCaseEdiscoveryCaseSearchLastEstimateStatisticsOperation" +"GET","/security/cases/ediscoveryCases/{param}/searches/{param}/noncustodialSources","keep",,"Get-MgSecurityCaseEdiscoveryCaseSearchNoncustodialSource","Get-MgSecurityCaseEdiscoveryCaseSearchNoncustodialSource" +"GET","/security/cases/ediscoveryCases/{param}/searches/{param}/noncustodialSources/{param}","keep",,"Get-MgSecurityCaseEdiscoveryCaseSearchNoncustodialSource","Get-MgSecurityCaseEdiscoveryCaseSearchNoncustodialSource" +"GET","/security/cases/ediscoveryCases/{param}/searches/{param}/noncustodialSources/$count","keep",,"Get-MgSecurityCaseEdiscoveryCaseSearchNoncustodialSourceCount","Get-MgSecurityCaseEdiscoveryCaseSearchNoncustodialSourceCount" +"GET","/security/cases/ediscoveryCases/{param}/searches/$count","keep",,"Get-MgSecurityCaseEdiscoveryCaseSearchCount","Get-MgSecurityCaseEdiscoveryCaseSearchCount" +"GET","/security/cases/ediscoveryCases/{param}/settings","keep",,"Get-MgSecurityCaseEdiscoveryCaseSetting","Get-MgSecurityCaseEdiscoveryCaseSetting" +"GET","/security/cases/ediscoveryCases/{param}/tags","keep",,"Get-MgSecurityCaseEdiscoveryCaseTag","Get-MgSecurityCaseEdiscoveryCaseTag" +"GET","/security/cases/ediscoveryCases/{param}/tags/{param}","keep",,"Get-MgSecurityCaseEdiscoveryCaseTag","Get-MgSecurityCaseEdiscoveryCaseTag" +"GET","/security/cases/ediscoveryCases/{param}/tags/{param}/childTags","keep",,"Get-MgSecurityCaseEdiscoveryCaseTagChildTag","Get-MgSecurityCaseEdiscoveryCaseTagChildTag" +"GET","/security/cases/ediscoveryCases/{param}/tags/{param}/childTags/{param}","keep",,"Get-MgSecurityCaseEdiscoveryCaseTagChildTag","Get-MgSecurityCaseEdiscoveryCaseTagChildTag" +"GET","/security/cases/ediscoveryCases/{param}/tags/{param}/childTags/$count","keep",,"Get-MgSecurityCaseEdiscoveryCaseTagChildTagCount","Get-MgSecurityCaseEdiscoveryCaseTagChildTagCount" +"GET","/security/cases/ediscoveryCases/{param}/tags/{param}/parent","keep",,"Get-MgSecurityCaseEdiscoveryCaseTagParent","Get-MgSecurityCaseEdiscoveryCaseTagParent" +"GET","/security/cases/ediscoveryCases/{param}/tags/$count","keep",,"Get-MgSecurityCaseEdiscoveryCaseTagCount","Get-MgSecurityCaseEdiscoveryCaseTagCount" +"GET","/security/cases/ediscoveryCases/$count","keep",,"Get-MgSecurityCaseEdiscoveryCaseCount","Get-MgSecurityCaseEdiscoveryCaseCount" +"GET","/security/collaboration","keep",,"Get-MgSecurityCollaboration","Get-MgSecurityCollaboration" +"GET","/security/collaboration/analyzedEmails","keep",,"Get-MgSecurityCollaborationAnalyzedEmail","Get-MgSecurityCollaborationAnalyzedEmail" +"GET","/security/collaboration/analyzedEmails/{param}","keep",,"Get-MgSecurityCollaborationAnalyzedEmail","Get-MgSecurityCollaborationAnalyzedEmail" +"GET","/security/collaboration/analyzedEmails/$count","keep",,"Get-MgSecurityCollaborationAnalyzedEmailCount","Get-MgSecurityCollaborationAnalyzedEmailCount" +"GET","/security/dataSecurityAndGovernance","keep",,"Get-MgSecurityDataSecurityAndGovernance","Get-MgSecurityDataSecurityAndGovernance" +"GET","/security/dataSecurityAndGovernance/protectionScopes","keep",,"Get-MgSecurityDataSecurityAndGovernanceProtectionScope","Get-MgSecurityDataSecurityAndGovernanceProtectionScope" +"GET","/security/dataSecurityAndGovernance/sensitivityLabels","keep",,"Get-MgSecurityDataSecurityAndGovernanceSensitivityLabel","Get-MgSecurityDataSecurityAndGovernanceSensitivityLabel" +"GET","/security/dataSecurityAndGovernance/sensitivityLabels/{param}","keep",,"Get-MgSecurityDataSecurityAndGovernanceSensitivityLabel","Get-MgSecurityDataSecurityAndGovernanceSensitivityLabel" +"GET","/security/dataSecurityAndGovernance/sensitivityLabels/{param}/sublabels","keep",,"Get-MgSecurityDataSecurityAndGovernanceSensitivityLabelSublabel","Get-MgSecurityDataSecurityAndGovernanceSensitivityLabelSublabel" +"GET","/security/dataSecurityAndGovernance/sensitivityLabels/{param}/sublabels/{param}","keep",,"Get-MgSecurityDataSecurityAndGovernanceSensitivityLabelSublabel","Get-MgSecurityDataSecurityAndGovernanceSensitivityLabelSublabel" +"GET","/security/dataSecurityAndGovernance/sensitivityLabels/{param}/sublabels/$count","keep",,"Get-MgSecurityDataSecurityAndGovernanceSensitivityLabelSublabelCount","Get-MgSecurityDataSecurityAndGovernanceSensitivityLabelSublabelCount" +"GET","/security/dataSecurityAndGovernance/sensitivityLabels/$count","keep",,"Get-MgSecurityDataSecurityAndGovernanceSensitivityLabelCount","Get-MgSecurityDataSecurityAndGovernanceSensitivityLabelCount" +"GET","/security/identities","keep",,"Get-MgSecurityIdentity","Get-MgSecurityIdentity" +"GET","/security/identities/healthIssues","keep",,"Get-MgSecurityIdentityHealthIssue","Get-MgSecurityIdentityHealthIssue" +"GET","/security/identities/healthIssues/{param}","keep",,"Get-MgSecurityIdentityHealthIssue","Get-MgSecurityIdentityHealthIssue" +"GET","/security/identities/healthIssues/$count","keep",,"Get-MgSecurityIdentityHealthIssueCount","Get-MgSecurityIdentityHealthIssueCount" +"GET","/security/identities/identityAccounts","keep",,"Get-MgSecurityIdentityAccount","Get-MgSecurityIdentityAccount" +"GET","/security/identities/identityAccounts/{param}","keep",,"Get-MgSecurityIdentityAccount","Get-MgSecurityIdentityAccount" +"GET","/security/identities/identityAccounts/$count","keep",,"Get-MgSecurityIdentityAccountCount","Get-MgSecurityIdentityAccountCount" +"GET","/security/identities/sensorCandidateActivationConfiguration","keep",,"Get-MgSecurityIdentitySensorCandidateActivationConfiguration","Get-MgSecurityIdentitySensorCandidateActivationConfiguration" +"GET","/security/identities/sensorCandidates","keep",,"Get-MgSecurityIdentitySensorCandidate","Get-MgSecurityIdentitySensorCandidate" +"GET","/security/identities/sensorCandidates/{param}","keep",,"Get-MgSecurityIdentitySensorCandidate","Get-MgSecurityIdentitySensorCandidate" +"GET","/security/identities/sensorCandidates/$count","keep",,"Get-MgSecurityIdentitySensorCandidateCount","Get-MgSecurityIdentitySensorCandidateCount" +"GET","/security/identities/sensors","keep",,"Get-MgSecurityIdentitySensor","Get-MgSecurityIdentitySensor" +"GET","/security/identities/sensors/{param}","keep",,"Get-MgSecurityIdentitySensor","Get-MgSecurityIdentitySensor" +"GET","/security/identities/sensors/{param}/healthIssues","keep",,"Get-MgSecurityIdentitySensorHealthIssue","Get-MgSecurityIdentitySensorHealthIssue" +"GET","/security/identities/sensors/{param}/healthIssues/{param}","keep",,"Get-MgSecurityIdentitySensorHealthIssue","Get-MgSecurityIdentitySensorHealthIssue" +"GET","/security/identities/sensors/{param}/healthIssues/$count","keep",,"Get-MgSecurityIdentitySensorHealthIssueCount","Get-MgSecurityIdentitySensorHealthIssueCount" +"GET","/security/identities/sensors/$count","keep",,"Get-MgSecurityIdentitySensorCount","Get-MgSecurityIdentitySensorCount" +"GET","/security/identities/settings","keep",,"Get-MgSecurityIdentitySetting","Get-MgSecurityIdentitySetting" +"GET","/security/identities/settings/autoAuditingConfiguration","keep",,"Get-MgSecurityIdentitySettingAutoAuditingConfiguration","Get-MgSecurityIdentitySettingAutoAuditingConfiguration" +"GET","/security/incidents","keep",,"Get-MgSecurityIncident","Get-MgSecurityIncident" +"GET","/security/incidents/{param}","keep",,"Get-MgSecurityIncident","Get-MgSecurityIncident" +"GET","/security/incidents/{param}/alerts","keep",,"Get-MgSecurityIncidentAlert","Get-MgSecurityIncidentAlert" +"GET","/security/incidents/{param}/alerts/{param}","keep",,"Get-MgSecurityIncidentAlert","Get-MgSecurityIncidentAlert" +"GET","/security/incidents/{param}/alerts/{param}/comments/$count","keep",,"Get-MgSecurityIncidentAlertCommentCount","Get-MgSecurityIncidentAlertCommentCount" +"GET","/security/incidents/{param}/alerts/$count","keep",,"Get-MgSecurityIncidentAlertCount","Get-MgSecurityIncidentAlertCount" +"GET","/security/incidents/$count","keep",,"Get-MgSecurityIncidentCount","Get-MgSecurityIncidentCount" +"GET","/security/labels","keep",,"Get-MgSecurityLabel","Get-MgSecurityLabel" +"GET","/security/labels/authorities","keep",,"Get-MgSecurityLabelAuthority","Get-MgSecurityLabelAuthority" +"GET","/security/labels/authorities/{param}","keep",,"Get-MgSecurityLabelAuthority","Get-MgSecurityLabelAuthority" +"GET","/security/labels/authorities/$count","keep",,"Get-MgSecurityLabelAuthorityCount","Get-MgSecurityLabelAuthorityCount" +"GET","/security/labels/categories","keep",,"Get-MgSecurityLabelCategory","Get-MgSecurityLabelCategory" +"GET","/security/labels/categories/{param}","keep",,"Get-MgSecurityLabelCategory","Get-MgSecurityLabelCategory" +"GET","/security/labels/categories/{param}/subcategories","keep",,"Get-MgSecurityLabelCategorySubcategory","Get-MgSecurityLabelCategorySubcategory" +"GET","/security/labels/categories/{param}/subcategories/{param}","keep",,"Get-MgSecurityLabelCategorySubcategory","Get-MgSecurityLabelCategorySubcategory" +"GET","/security/labels/categories/{param}/subcategories/$count","keep",,"Get-MgSecurityLabelCategorySubcategoryCount","Get-MgSecurityLabelCategorySubcategoryCount" +"GET","/security/labels/categories/$count","keep",,"Get-MgSecurityLabelCategoryCount","Get-MgSecurityLabelCategoryCount" +"GET","/security/labels/citations","keep",,"Get-MgSecurityLabelCitation","Get-MgSecurityLabelCitation" +"GET","/security/labels/citations/{param}","keep",,"Get-MgSecurityLabelCitation","Get-MgSecurityLabelCitation" +"GET","/security/labels/citations/$count","keep",,"Get-MgSecurityLabelCitationCount","Get-MgSecurityLabelCitationCount" +"GET","/security/labels/departments","keep",,"Get-MgSecurityLabelDepartment","Get-MgSecurityLabelDepartment" +"GET","/security/labels/departments/{param}","keep",,"Get-MgSecurityLabelDepartment","Get-MgSecurityLabelDepartment" +"GET","/security/labels/departments/$count","keep",,"Get-MgSecurityLabelDepartmentCount","Get-MgSecurityLabelDepartmentCount" +"GET","/security/labels/filePlanReferences","keep",,"Get-MgSecurityLabelFilePlanReference","Get-MgSecurityLabelFilePlanReference" +"GET","/security/labels/filePlanReferences/{param}","keep",,"Get-MgSecurityLabelFilePlanReference","Get-MgSecurityLabelFilePlanReference" +"GET","/security/labels/filePlanReferences/$count","keep",,"Get-MgSecurityLabelFilePlanReferenceCount","Get-MgSecurityLabelFilePlanReferenceCount" +"GET","/security/labels/retentionLabels","keep",,"Get-MgSecurityLabelRetentionLabel","Get-MgSecurityLabelRetentionLabel" +"GET","/security/labels/retentionLabels/{param}","keep",,"Get-MgSecurityLabelRetentionLabel","Get-MgSecurityLabelRetentionLabel" +"GET","/security/labels/retentionLabels/{param}/descriptors","keep",,"Get-MgSecurityLabelRetentionLabelDescriptor","Get-MgSecurityLabelRetentionLabelDescriptor" +"GET","/security/labels/retentionLabels/{param}/descriptors/authorityTemplate","keep",,"Get-MgSecurityLabelRetentionLabelDescriptorAuthorityTemplate","Get-MgSecurityLabelRetentionLabelDescriptorAuthorityTemplate" +"GET","/security/labels/retentionLabels/{param}/descriptors/categoryTemplate","keep",,"Get-MgSecurityLabelRetentionLabelDescriptorCategoryTemplate","Get-MgSecurityLabelRetentionLabelDescriptorCategoryTemplate" +"GET","/security/labels/retentionLabels/{param}/descriptors/citationTemplate","keep",,"Get-MgSecurityLabelRetentionLabelDescriptorCitationTemplate","Get-MgSecurityLabelRetentionLabelDescriptorCitationTemplate" +"GET","/security/labels/retentionLabels/{param}/descriptors/departmentTemplate","keep",,"Get-MgSecurityLabelRetentionLabelDescriptorDepartmentTemplate","Get-MgSecurityLabelRetentionLabelDescriptorDepartmentTemplate" +"GET","/security/labels/retentionLabels/{param}/descriptors/filePlanReferenceTemplate","keep",,"Get-MgSecurityLabelRetentionLabelDescriptorFilePlanReferenceTemplate","Get-MgSecurityLabelRetentionLabelDescriptorFilePlanReferenceTemplate" +"GET","/security/labels/retentionLabels/{param}/dispositionReviewStages","keep",,"Get-MgSecurityLabelRetentionLabelDispositionReviewStage","Get-MgSecurityLabelRetentionLabelDispositionReviewStage" +"GET","/security/labels/retentionLabels/{param}/dispositionReviewStages/{param}","keep",,"Get-MgSecurityLabelRetentionLabelDispositionReviewStage","Get-MgSecurityLabelRetentionLabelDispositionReviewStage" +"GET","/security/labels/retentionLabels/{param}/dispositionReviewStages/$count","keep",,"Get-MgSecurityLabelRetentionLabelDispositionReviewStageCount","Get-MgSecurityLabelRetentionLabelDispositionReviewStageCount" +"GET","/security/labels/retentionLabels/{param}/retentionEventType","rename","SecurityLabelRetentionEventType","Get-MgSecurityLabelRetentionLabelRetentionEventType","Get-MgSecurityLabelRetentionEventType" +"GET","/security/labels/retentionLabels/$count","keep",,"Get-MgSecurityLabelRetentionLabelCount","Get-MgSecurityLabelRetentionLabelCount" +"GET","/security/secureScoreControlProfiles","keep",,"Get-MgSecuritySecureScoreControlProfile","Get-MgSecuritySecureScoreControlProfile" +"GET","/security/secureScoreControlProfiles/{param}","keep",,"Get-MgSecuritySecureScoreControlProfile","Get-MgSecuritySecureScoreControlProfile" +"GET","/security/secureScoreControlProfiles/$count","keep",,"Get-MgSecuritySecureScoreControlProfileCount","Get-MgSecuritySecureScoreControlProfileCount" +"GET","/security/secureScores","keep",,"Get-MgSecuritySecureScore","Get-MgSecuritySecureScore" +"GET","/security/secureScores/{param}","keep",,"Get-MgSecuritySecureScore","Get-MgSecuritySecureScore" +"GET","/security/secureScores/$count","keep",,"Get-MgSecuritySecureScoreCount","Get-MgSecuritySecureScoreCount" +"GET","/security/subjectRightsRequests","keep",,"Get-MgSecuritySubjectRightsRequest","Get-MgSecuritySubjectRightsRequest" +"GET","/security/subjectRightsRequests/{param}","keep",,"Get-MgSecuritySubjectRightsRequest","Get-MgSecuritySubjectRightsRequest" +"GET","/security/subjectRightsRequests/{param}/approvers","keep",,"Get-MgSecuritySubjectRightsRequestApprover","Get-MgSecuritySubjectRightsRequestApprover" +"GET","/security/subjectRightsRequests/{param}/approvers/{param}","keep",,"Get-MgSecuritySubjectRightsRequestApprover","Get-MgSecuritySubjectRightsRequestApprover" +"GET","/security/subjectRightsRequests/{param}/approvers/{param}/mailboxSettings","keep",,"Get-MgSecuritySubjectRightsRequestApproverMailboxSetting","Get-MgSecuritySubjectRightsRequestApproverMailboxSetting" +"GET","/security/subjectRightsRequests/{param}/approvers/{param}/serviceProvisioningErrors","keep",,"Get-MgSecuritySubjectRightsRequestApproverServiceProvisioningError","Get-MgSecuritySubjectRightsRequestApproverServiceProvisioningError" +"GET","/security/subjectRightsRequests/{param}/approvers/{param}/serviceProvisioningErrors/$count","keep",,"Get-MgSecuritySubjectRightsRequestApproverServiceProvisioningErrorCount","Get-MgSecuritySubjectRightsRequestApproverServiceProvisioningErrorCount" +"GET","/security/subjectRightsRequests/{param}/approvers/$count","keep",,"Get-MgSecuritySubjectRightsRequestApproverCount","Get-MgSecuritySubjectRightsRequestApproverCount" +"GET","/security/subjectRightsRequests/{param}/collaborators","keep",,"Get-MgSecuritySubjectRightsRequestCollaborator","Get-MgSecuritySubjectRightsRequestCollaborator" +"GET","/security/subjectRightsRequests/{param}/collaborators/{param}","keep",,"Get-MgSecuritySubjectRightsRequestCollaborator","Get-MgSecuritySubjectRightsRequestCollaborator" +"GET","/security/subjectRightsRequests/{param}/collaborators/{param}/mailboxSettings","keep",,"Get-MgSecuritySubjectRightsRequestCollaboratorMailboxSetting","Get-MgSecuritySubjectRightsRequestCollaboratorMailboxSetting" +"GET","/security/subjectRightsRequests/{param}/collaborators/{param}/serviceProvisioningErrors","keep",,"Get-MgSecuritySubjectRightsRequestCollaboratorServiceProvisioningError","Get-MgSecuritySubjectRightsRequestCollaboratorServiceProvisioningError" +"GET","/security/subjectRightsRequests/{param}/collaborators/{param}/serviceProvisioningErrors/$count","keep",,"Get-MgSecuritySubjectRightsRequestCollaboratorServiceProvisioningErrorCount","Get-MgSecuritySubjectRightsRequestCollaboratorServiceProvisioningErrorCount" +"GET","/security/subjectRightsRequests/{param}/collaborators/$count","keep",,"Get-MgSecuritySubjectRightsRequestCollaboratorCount","Get-MgSecuritySubjectRightsRequestCollaboratorCount" +"GET","/security/subjectRightsRequests/{param}/getFinalAttachment","rename","SecuritySubjectRightsRequestFinalAttachment","Get-MgSecuritySubjectRightsRequestGetFinalAttachment","Get-MgSecuritySubjectRightsRequestFinalAttachment" +"GET","/security/subjectRightsRequests/{param}/getFinalReport","rename","SecuritySubjectRightsRequestFinalReport","Get-MgSecuritySubjectRightsRequestGetFinalReport","Get-MgSecuritySubjectRightsRequestFinalReport" +"GET","/security/subjectRightsRequests/{param}/notes","keep",,"Get-MgSecuritySubjectRightsRequestNote","Get-MgSecuritySubjectRightsRequestNote" +"GET","/security/subjectRightsRequests/{param}/notes/{param}","keep",,"Get-MgSecuritySubjectRightsRequestNote","Get-MgSecuritySubjectRightsRequestNote" +"GET","/security/subjectRightsRequests/{param}/notes/$count","keep",,"Get-MgSecuritySubjectRightsRequestNoteCount","Get-MgSecuritySubjectRightsRequestNoteCount" +"GET","/security/subjectRightsRequests/{param}/team","keep",,"Get-MgSecuritySubjectRightsRequestTeam","Get-MgSecuritySubjectRightsRequestTeam" +"GET","/security/subjectRightsRequests/$count","keep",,"Get-MgSecuritySubjectRightsRequestCount","Get-MgSecuritySubjectRightsRequestCount" +"GET","/security/threatIntelligence","keep",,"Get-MgSecurityThreatIntelligence","Get-MgSecurityThreatIntelligence" +"GET","/security/threatIntelligence/articleIndicators","keep",,"Get-MgSecurityThreatIntelligenceArticleIndicator","Get-MgSecurityThreatIntelligenceArticleIndicator" +"GET","/security/threatIntelligence/articleIndicators/{param}","keep",,"Get-MgSecurityThreatIntelligenceArticleIndicator","Get-MgSecurityThreatIntelligenceArticleIndicator" +"GET","/security/threatIntelligence/articleIndicators/{param}/artifact","keep",,"Get-MgSecurityThreatIntelligenceArticleIndicatorArtifact","Get-MgSecurityThreatIntelligenceArticleIndicatorArtifact" +"GET","/security/threatIntelligence/articleIndicators/$count","keep",,"Get-MgSecurityThreatIntelligenceArticleIndicatorCount","Get-MgSecurityThreatIntelligenceArticleIndicatorCount" +"GET","/security/threatIntelligence/articles","keep",,"Get-MgSecurityThreatIntelligenceArticle","Get-MgSecurityThreatIntelligenceArticle" +"GET","/security/threatIntelligence/articles/{param}","keep",,"Get-MgSecurityThreatIntelligenceArticle","Get-MgSecurityThreatIntelligenceArticle" +"GET","/security/threatIntelligence/articles/$count","keep",,"Get-MgSecurityThreatIntelligenceArticleCount","Get-MgSecurityThreatIntelligenceArticleCount" +"GET","/security/threatIntelligence/hostComponents","keep",,"Get-MgSecurityThreatIntelligenceHostComponent","Get-MgSecurityThreatIntelligenceHostComponent" +"GET","/security/threatIntelligence/hostComponents/{param}","keep",,"Get-MgSecurityThreatIntelligenceHostComponent","Get-MgSecurityThreatIntelligenceHostComponent" +"GET","/security/threatIntelligence/hostComponents/{param}/host","keep",,"Get-MgSecurityThreatIntelligenceHostComponentHost","Get-MgSecurityThreatIntelligenceHostComponentHost" +"GET","/security/threatIntelligence/hostComponents/$count","keep",,"Get-MgSecurityThreatIntelligenceHostComponentCount","Get-MgSecurityThreatIntelligenceHostComponentCount" +"GET","/security/threatIntelligence/hostCookies","keep",,"Get-MgSecurityThreatIntelligenceHostCookie","Get-MgSecurityThreatIntelligenceHostCookie" +"GET","/security/threatIntelligence/hostCookies/{param}","keep",,"Get-MgSecurityThreatIntelligenceHostCookie","Get-MgSecurityThreatIntelligenceHostCookie" +"GET","/security/threatIntelligence/hostCookies/{param}/host","keep",,"Get-MgSecurityThreatIntelligenceHostCookieHost","Get-MgSecurityThreatIntelligenceHostCookieHost" +"GET","/security/threatIntelligence/hostCookies/$count","keep",,"Get-MgSecurityThreatIntelligenceHostCookieCount","Get-MgSecurityThreatIntelligenceHostCookieCount" +"GET","/security/threatIntelligence/hostPairs","keep",,"Get-MgSecurityThreatIntelligenceHostPair","Get-MgSecurityThreatIntelligenceHostPair" +"GET","/security/threatIntelligence/hostPairs/{param}","keep",,"Get-MgSecurityThreatIntelligenceHostPair","Get-MgSecurityThreatIntelligenceHostPair" +"GET","/security/threatIntelligence/hostPairs/{param}/childHost","keep",,"Get-MgSecurityThreatIntelligenceHostPairChildHost","Get-MgSecurityThreatIntelligenceHostPairChildHost" +"GET","/security/threatIntelligence/hostPairs/{param}/parentHost","keep",,"Get-MgSecurityThreatIntelligenceHostPairParentHost","Get-MgSecurityThreatIntelligenceHostPairParentHost" +"GET","/security/threatIntelligence/hostPairs/$count","keep",,"Get-MgSecurityThreatIntelligenceHostPairCount","Get-MgSecurityThreatIntelligenceHostPairCount" +"GET","/security/threatIntelligence/hostPorts","keep",,"Get-MgSecurityThreatIntelligenceHostPort","Get-MgSecurityThreatIntelligenceHostPort" +"GET","/security/threatIntelligence/hostPorts/{param}","keep",,"Get-MgSecurityThreatIntelligenceHostPort","Get-MgSecurityThreatIntelligenceHostPort" +"GET","/security/threatIntelligence/hostPorts/{param}/host","keep",,"Get-MgSecurityThreatIntelligenceHostPortHost","Get-MgSecurityThreatIntelligenceHostPortHost" +"GET","/security/threatIntelligence/hostPorts/{param}/mostRecentSslCertificate","keep",,"Get-MgSecurityThreatIntelligenceHostPortMostRecentSslCertificate","Get-MgSecurityThreatIntelligenceHostPortMostRecentSslCertificate" +"GET","/security/threatIntelligence/hostPorts/$count","keep",,"Get-MgSecurityThreatIntelligenceHostPortCount","Get-MgSecurityThreatIntelligenceHostPortCount" +"GET","/security/threatIntelligence/hosts","keep",,"Get-MgSecurityThreatIntelligenceHost","Get-MgSecurityThreatIntelligenceHost" +"GET","/security/threatIntelligence/hosts/{param}","keep",,"Get-MgSecurityThreatIntelligenceHost","Get-MgSecurityThreatIntelligenceHost" +"GET","/security/threatIntelligence/hosts/{param}/childHostPairs","keep",,"Get-MgSecurityThreatIntelligenceHostChildHostPair","Get-MgSecurityThreatIntelligenceHostChildHostPair" +"GET","/security/threatIntelligence/hosts/{param}/childHostPairs/{param}","keep",,"Get-MgSecurityThreatIntelligenceHostChildHostPair","Get-MgSecurityThreatIntelligenceHostChildHostPair" +"GET","/security/threatIntelligence/hosts/{param}/childHostPairs/$count","keep",,"Get-MgSecurityThreatIntelligenceHostChildHostPairCount","Get-MgSecurityThreatIntelligenceHostChildHostPairCount" +"GET","/security/threatIntelligence/hosts/{param}/parentHostPairs","keep",,"Get-MgSecurityThreatIntelligenceHostParentHostPair","Get-MgSecurityThreatIntelligenceHostParentHostPair" +"GET","/security/threatIntelligence/hosts/{param}/parentHostPairs/{param}","keep",,"Get-MgSecurityThreatIntelligenceHostParentHostPair","Get-MgSecurityThreatIntelligenceHostParentHostPair" +"GET","/security/threatIntelligence/hosts/{param}/parentHostPairs/$count","keep",,"Get-MgSecurityThreatIntelligenceHostParentHostPairCount","Get-MgSecurityThreatIntelligenceHostParentHostPairCount" +"GET","/security/threatIntelligence/hosts/{param}/passiveDns","keep",,"Get-MgSecurityThreatIntelligenceHostPassiveDns","Get-MgSecurityThreatIntelligenceHostPassiveDns" +"GET","/security/threatIntelligence/hosts/{param}/passiveDns/{param}","keep",,"Get-MgSecurityThreatIntelligenceHostPassiveDns","Get-MgSecurityThreatIntelligenceHostPassiveDns" +"GET","/security/threatIntelligence/hosts/{param}/passiveDns/$count","keep",,"Get-MgSecurityThreatIntelligenceHostPassiveDnsCount","Get-MgSecurityThreatIntelligenceHostPassiveDnsCount" +"GET","/security/threatIntelligence/hosts/{param}/passiveDnsReverse","keep",,"Get-MgSecurityThreatIntelligenceHostPassiveDnsReverse","Get-MgSecurityThreatIntelligenceHostPassiveDnsReverse" +"GET","/security/threatIntelligence/hosts/{param}/passiveDnsReverse/{param}","keep",,"Get-MgSecurityThreatIntelligenceHostPassiveDnsReverse","Get-MgSecurityThreatIntelligenceHostPassiveDnsReverse" +"GET","/security/threatIntelligence/hosts/{param}/passiveDnsReverse/$count","keep",,"Get-MgSecurityThreatIntelligenceHostPassiveDnsReverseCount","Get-MgSecurityThreatIntelligenceHostPassiveDnsReverseCount" +"GET","/security/threatIntelligence/hosts/{param}/reputation","keep",,"Get-MgSecurityThreatIntelligenceHostReputation","Get-MgSecurityThreatIntelligenceHostReputation" +"GET","/security/threatIntelligence/hosts/{param}/sslCertificates/$count","keep",,"Get-MgSecurityThreatIntelligenceHostSslCertificateCount","Get-MgSecurityThreatIntelligenceHostSslCertificateCount" +"GET","/security/threatIntelligence/hosts/{param}/subdomains","keep",,"Get-MgSecurityThreatIntelligenceHostSubdomain","Get-MgSecurityThreatIntelligenceHostSubdomain" +"GET","/security/threatIntelligence/hosts/{param}/subdomains/{param}","keep",,"Get-MgSecurityThreatIntelligenceHostSubdomain","Get-MgSecurityThreatIntelligenceHostSubdomain" +"GET","/security/threatIntelligence/hosts/{param}/subdomains/$count","keep",,"Get-MgSecurityThreatIntelligenceHostSubdomainCount","Get-MgSecurityThreatIntelligenceHostSubdomainCount" +"GET","/security/threatIntelligence/hosts/{param}/trackers/$count","keep",,"Get-MgSecurityThreatIntelligenceHostTrackerCount","Get-MgSecurityThreatIntelligenceHostTrackerCount" +"GET","/security/threatIntelligence/hosts/{param}/whois","keep",,"Get-MgSecurityThreatIntelligenceHostWhois","deliberate correction; oracle ships Get-MgSecurityThreatIntelligenceHostWhoi" +"GET","/security/threatIntelligence/hosts/$count","keep",,"Get-MgSecurityThreatIntelligenceHostCount","Get-MgSecurityThreatIntelligenceHostCount" +"GET","/security/threatIntelligence/hostSslCertificates","keep",,"Get-MgSecurityThreatIntelligenceHostSslCertificate","Get-MgSecurityThreatIntelligenceHostSslCertificate" +"GET","/security/threatIntelligence/hostSslCertificates/{param}","keep",,"Get-MgSecurityThreatIntelligenceHostSslCertificate","Get-MgSecurityThreatIntelligenceHostSslCertificate" +"GET","/security/threatIntelligence/hostSslCertificates/{param}/host","keep",,"Get-MgSecurityThreatIntelligenceHostSslCertificateHost","Get-MgSecurityThreatIntelligenceHostSslCertificateHost" +"GET","/security/threatIntelligence/hostSslCertificates/{param}/sslCertificate","suppress",,"Get-MgSecurityThreatIntelligenceHostSslCertificateSslCertificate","no oracle row for GET /security/threatIntelligence/hostSslCertificates/{param}/sslCertificate and 'Get-MgSecurityThreatIntelligenceHostSslCertificateSslCertificate' unshipped" +"GET","/security/threatIntelligence/hostTrackers","keep",,"Get-MgSecurityThreatIntelligenceHostTracker","Get-MgSecurityThreatIntelligenceHostTracker" +"GET","/security/threatIntelligence/hostTrackers/{param}/host","keep",,"Get-MgSecurityThreatIntelligenceHostTrackerHost","Get-MgSecurityThreatIntelligenceHostTrackerHost" +"GET","/security/threatIntelligence/intelligenceProfileIndicators","keep",,"Get-MgSecurityThreatIntelligenceProfileIndicator","Get-MgSecurityThreatIntelligenceProfileIndicator" +"GET","/security/threatIntelligence/intelligenceProfileIndicators/{param}","keep",,"Get-MgSecurityThreatIntelligenceProfileIndicator","Get-MgSecurityThreatIntelligenceProfileIndicator" +"GET","/security/threatIntelligence/intelligenceProfileIndicators/{param}/artifact","keep",,"Get-MgSecurityThreatIntelligenceProfileIndicatorArtifact","Get-MgSecurityThreatIntelligenceProfileIndicatorArtifact" +"GET","/security/threatIntelligence/intelligenceProfileIndicators/$count","keep",,"Get-MgSecurityThreatIntelligenceProfileIndicatorCount","Get-MgSecurityThreatIntelligenceProfileIndicatorCount" +"GET","/security/threatIntelligence/intelProfiles","keep",,"Get-MgSecurityThreatIntelligenceIntelProfile","Get-MgSecurityThreatIntelligenceIntelProfile" +"GET","/security/threatIntelligence/intelProfiles/{param}","keep",,"Get-MgSecurityThreatIntelligenceIntelProfile","Get-MgSecurityThreatIntelligenceIntelProfile" +"GET","/security/threatIntelligence/intelProfiles/{param}/indicators","keep",,"Get-MgSecurityThreatIntelligenceIntelProfileIndicator","Get-MgSecurityThreatIntelligenceIntelProfileIndicator" +"GET","/security/threatIntelligence/intelProfiles/{param}/indicators/{param}","keep",,"Get-MgSecurityThreatIntelligenceIntelProfileIndicator","Get-MgSecurityThreatIntelligenceIntelProfileIndicator" +"GET","/security/threatIntelligence/intelProfiles/{param}/indicators/$count","keep",,"Get-MgSecurityThreatIntelligenceIntelProfileIndicatorCount","Get-MgSecurityThreatIntelligenceIntelProfileIndicatorCount" +"GET","/security/threatIntelligence/intelProfiles/$count","keep",,"Get-MgSecurityThreatIntelligenceIntelProfileCount","Get-MgSecurityThreatIntelligenceIntelProfileCount" +"GET","/security/threatIntelligence/passiveDnsRecords","keep",,"Get-MgSecurityThreatIntelligencePassiveDnsRecord","Get-MgSecurityThreatIntelligencePassiveDnsRecord" +"GET","/security/threatIntelligence/passiveDnsRecords/{param}","keep",,"Get-MgSecurityThreatIntelligencePassiveDnsRecord","Get-MgSecurityThreatIntelligencePassiveDnsRecord" +"GET","/security/threatIntelligence/passiveDnsRecords/{param}/artifact","keep",,"Get-MgSecurityThreatIntelligencePassiveDnsRecordArtifact","Get-MgSecurityThreatIntelligencePassiveDnsRecordArtifact" +"GET","/security/threatIntelligence/passiveDnsRecords/{param}/parentHost","keep",,"Get-MgSecurityThreatIntelligencePassiveDnsRecordParentHost","Get-MgSecurityThreatIntelligencePassiveDnsRecordParentHost" +"GET","/security/threatIntelligence/passiveDnsRecords/$count","keep",,"Get-MgSecurityThreatIntelligencePassiveDnsRecordCount","Get-MgSecurityThreatIntelligencePassiveDnsRecordCount" +"GET","/security/threatIntelligence/sslCertificates","keep",,"Get-MgSecurityThreatIntelligenceSslCertificate","Get-MgSecurityThreatIntelligenceSslCertificate" +"GET","/security/threatIntelligence/sslCertificates/{param}","keep",,"Get-MgSecurityThreatIntelligenceSslCertificate","Get-MgSecurityThreatIntelligenceSslCertificate" +"GET","/security/threatIntelligence/sslCertificates/{param}/relatedHosts","keep",,"Get-MgSecurityThreatIntelligenceSslCertificateRelatedHost","Get-MgSecurityThreatIntelligenceSslCertificateRelatedHost" +"GET","/security/threatIntelligence/sslCertificates/{param}/relatedHosts/{param}","keep",,"Get-MgSecurityThreatIntelligenceSslCertificateRelatedHost","Get-MgSecurityThreatIntelligenceSslCertificateRelatedHost" +"GET","/security/threatIntelligence/sslCertificates/{param}/relatedHosts/$count","keep",,"Get-MgSecurityThreatIntelligenceSslCertificateRelatedHostCount","Get-MgSecurityThreatIntelligenceSslCertificateRelatedHostCount" +"GET","/security/threatIntelligence/sslCertificates/$count","keep",,"Get-MgSecurityThreatIntelligenceSslCertificateCount","Get-MgSecurityThreatIntelligenceSslCertificateCount" +"GET","/security/threatIntelligence/subdomains","keep",,"Get-MgSecurityThreatIntelligenceSubdomain","Get-MgSecurityThreatIntelligenceSubdomain" +"GET","/security/threatIntelligence/subdomains/{param}","keep",,"Get-MgSecurityThreatIntelligenceSubdomain","Get-MgSecurityThreatIntelligenceSubdomain" +"GET","/security/threatIntelligence/subdomains/{param}/host","keep",,"Get-MgSecurityThreatIntelligenceSubdomainHost","Get-MgSecurityThreatIntelligenceSubdomainHost" +"GET","/security/threatIntelligence/subdomains/$count","keep",,"Get-MgSecurityThreatIntelligenceSubdomainCount","Get-MgSecurityThreatIntelligenceSubdomainCount" +"GET","/security/threatIntelligence/vulnerabilities","keep",,"Get-MgSecurityThreatIntelligenceVulnerability","Get-MgSecurityThreatIntelligenceVulnerability" +"GET","/security/threatIntelligence/vulnerabilities/{param}","keep",,"Get-MgSecurityThreatIntelligenceVulnerability","Get-MgSecurityThreatIntelligenceVulnerability" +"GET","/security/threatIntelligence/vulnerabilities/{param}/articles","keep",,"Get-MgSecurityThreatIntelligenceVulnerabilityArticle","Get-MgSecurityThreatIntelligenceVulnerabilityArticle" +"GET","/security/threatIntelligence/vulnerabilities/{param}/articles/{param}","keep",,"Get-MgSecurityThreatIntelligenceVulnerabilityArticle","Get-MgSecurityThreatIntelligenceVulnerabilityArticle" +"GET","/security/threatIntelligence/vulnerabilities/{param}/articles/$count","keep",,"Get-MgSecurityThreatIntelligenceVulnerabilityArticleCount","Get-MgSecurityThreatIntelligenceVulnerabilityArticleCount" +"GET","/security/threatIntelligence/vulnerabilities/{param}/components","keep",,"Get-MgSecurityThreatIntelligenceVulnerabilityComponent","Get-MgSecurityThreatIntelligenceVulnerabilityComponent" +"GET","/security/threatIntelligence/vulnerabilities/{param}/components/{param}","keep",,"Get-MgSecurityThreatIntelligenceVulnerabilityComponent","Get-MgSecurityThreatIntelligenceVulnerabilityComponent" +"GET","/security/threatIntelligence/vulnerabilities/{param}/components/$count","keep",,"Get-MgSecurityThreatIntelligenceVulnerabilityComponentCount","Get-MgSecurityThreatIntelligenceVulnerabilityComponentCount" +"GET","/security/threatIntelligence/vulnerabilities/$count","keep",,"Get-MgSecurityThreatIntelligenceVulnerabilityCount","Get-MgSecurityThreatIntelligenceVulnerabilityCount" +"GET","/security/threatIntelligence/whoisHistoryRecords","keep",,"Get-MgSecurityThreatIntelligenceWhoisHistoryRecord","Get-MgSecurityThreatIntelligenceWhoisHistoryRecord" +"GET","/security/threatIntelligence/whoisHistoryRecords/{param}","keep",,"Get-MgSecurityThreatIntelligenceWhoisHistoryRecord","Get-MgSecurityThreatIntelligenceWhoisHistoryRecord" +"GET","/security/threatIntelligence/whoisHistoryRecords/{param}/host","keep",,"Get-MgSecurityThreatIntelligenceWhoisHistoryRecordHost","Get-MgSecurityThreatIntelligenceWhoisHistoryRecordHost" +"GET","/security/threatIntelligence/whoisHistoryRecords/$count","keep",,"Get-MgSecurityThreatIntelligenceWhoisHistoryRecordCount","Get-MgSecurityThreatIntelligenceWhoisHistoryRecordCount" +"GET","/security/threatIntelligence/whoisRecords","keep",,"Get-MgSecurityThreatIntelligenceWhoisRecord","Get-MgSecurityThreatIntelligenceWhoisRecord" +"GET","/security/threatIntelligence/whoisRecords/{param}","keep",,"Get-MgSecurityThreatIntelligenceWhoisRecord","Get-MgSecurityThreatIntelligenceWhoisRecord" +"GET","/security/threatIntelligence/whoisRecords/{param}/history","keep",,"Get-MgSecurityThreatIntelligenceWhoisRecordHistory","Get-MgSecurityThreatIntelligenceWhoisRecordHistory" +"GET","/security/threatIntelligence/whoisRecords/{param}/history/{param}","keep",,"Get-MgSecurityThreatIntelligenceWhoisRecordHistory","Get-MgSecurityThreatIntelligenceWhoisRecordHistory" +"GET","/security/threatIntelligence/whoisRecords/{param}/history/$count","keep",,"Get-MgSecurityThreatIntelligenceWhoisRecordHistoryCount","Get-MgSecurityThreatIntelligenceWhoisRecordHistoryCount" +"GET","/security/threatIntelligence/whoisRecords/{param}/host","keep",,"Get-MgSecurityThreatIntelligenceWhoisRecordHost","Get-MgSecurityThreatIntelligenceWhoisRecordHost" +"GET","/security/threatIntelligence/whoisRecords/$count","keep",,"Get-MgSecurityThreatIntelligenceWhoisRecordCount","Get-MgSecurityThreatIntelligenceWhoisRecordCount" +"GET","/security/triggers","keep",,"Get-MgSecurityTrigger","Get-MgSecurityTrigger" +"GET","/security/triggers/retentionEvents","keep",,"Get-MgSecurityTriggerRetentionEvent","Get-MgSecurityTriggerRetentionEvent" +"GET","/security/triggers/retentionEvents/{param}","keep",,"Get-MgSecurityTriggerRetentionEvent","Get-MgSecurityTriggerRetentionEvent" +"GET","/security/triggers/retentionEvents/{param}/retentionEventType","rename","SecurityTriggerRetentionEventType","Get-MgSecurityTriggerRetentionEventRetentionEventType","Get-MgSecurityTriggerRetentionEventType" +"GET","/security/triggers/retentionEvents/$count","keep",,"Get-MgSecurityTriggerRetentionEventCount","Get-MgSecurityTriggerRetentionEventCount" +"GET","/security/triggerTypes","keep",,"Get-MgSecurityTriggerType","Get-MgSecurityTriggerType" +"GET","/security/triggerTypes/retentionEventTypes","keep",,"Get-MgSecurityTriggerTypeRetentionEventType","Get-MgSecurityTriggerTypeRetentionEventType" +"GET","/security/triggerTypes/retentionEventTypes/{param}","keep",,"Get-MgSecurityTriggerTypeRetentionEventType","Get-MgSecurityTriggerTypeRetentionEventType" +"GET","/security/triggerTypes/retentionEventTypes/$count","keep",,"Get-MgSecurityTriggerTypeRetentionEventTypeCount","Get-MgSecurityTriggerTypeRetentionEventTypeCount" +"GET","/servicePrincipals","keep",,"Get-MgServicePrincipal","Get-MgServicePrincipal" +"GET","/servicePrincipals/{param}","keep",,"Get-MgServicePrincipal","Get-MgServicePrincipal" +"GET","/servicePrincipals/{param}/appManagementPolicies","keep",,"Get-MgServicePrincipalAppManagementPolicy","Get-MgServicePrincipalAppManagementPolicy" +"GET","/servicePrincipals/{param}/appManagementPolicies/{param}","keep",,"Get-MgServicePrincipalAppManagementPolicy","Get-MgServicePrincipalAppManagementPolicy" +"GET","/servicePrincipals/{param}/appManagementPolicies/$count","keep",,"Get-MgServicePrincipalAppManagementPolicyCount","Get-MgServicePrincipalAppManagementPolicyCount" +"GET","/servicePrincipals/{param}/appRoleAssignedTo","keep",,"Get-MgServicePrincipalAppRoleAssignedTo","Get-MgServicePrincipalAppRoleAssignedTo" +"GET","/servicePrincipals/{param}/appRoleAssignedTo/{param}","keep",,"Get-MgServicePrincipalAppRoleAssignedTo","Get-MgServicePrincipalAppRoleAssignedTo" +"GET","/servicePrincipals/{param}/appRoleAssignedTo/$count","keep",,"Get-MgServicePrincipalAppRoleAssignedToCount","Get-MgServicePrincipalAppRoleAssignedToCount" +"GET","/servicePrincipals/{param}/appRoleAssignments","keep",,"Get-MgServicePrincipalAppRoleAssignment","Get-MgServicePrincipalAppRoleAssignment" +"GET","/servicePrincipals/{param}/appRoleAssignments/{param}","keep",,"Get-MgServicePrincipalAppRoleAssignment","Get-MgServicePrincipalAppRoleAssignment" +"GET","/servicePrincipals/{param}/appRoleAssignments/$count","keep",,"Get-MgServicePrincipalAppRoleAssignmentCount","Get-MgServicePrincipalAppRoleAssignmentCount" +"GET","/servicePrincipals/{param}/claimsMappingPolicies","keep",,"Get-MgServicePrincipalClaimMappingPolicy","Get-MgServicePrincipalClaimMappingPolicy" +"GET","/servicePrincipals/{param}/claimsMappingPolicies/$count","keep",,"Get-MgServicePrincipalClaimMappingPolicyCount","Get-MgServicePrincipalClaimMappingPolicyCount" +"GET","/servicePrincipals/{param}/claimsMappingPolicies/$ref","keep",,"Get-MgServicePrincipalClaimMappingPolicyByRef","Get-MgServicePrincipalClaimMappingPolicyByRef" +"GET","/servicePrincipals/{param}/createdObjects","keep",,"Get-MgServicePrincipalCreatedObject","Get-MgServicePrincipalCreatedObject" +"GET","/servicePrincipals/{param}/createdObjects/{param}","keep",,"Get-MgServicePrincipalCreatedObject","Get-MgServicePrincipalCreatedObject" +"GET","/servicePrincipals/{param}/createdObjects/$count","keep",,"Get-MgServicePrincipalCreatedObjectCount","Get-MgServicePrincipalCreatedObjectCount" +"GET","/servicePrincipals/{param}/delegatedPermissionClassifications","keep",,"Get-MgServicePrincipalDelegatedPermissionClassification","Get-MgServicePrincipalDelegatedPermissionClassification" +"GET","/servicePrincipals/{param}/delegatedPermissionClassifications/{param}","keep",,"Get-MgServicePrincipalDelegatedPermissionClassification","Get-MgServicePrincipalDelegatedPermissionClassification" +"GET","/servicePrincipals/{param}/delegatedPermissionClassifications/$count","keep",,"Get-MgServicePrincipalDelegatedPermissionClassificationCount","Get-MgServicePrincipalDelegatedPermissionClassificationCount" +"GET","/servicePrincipals/{param}/endpoints","keep",,"Get-MgServicePrincipalEndpoint","Get-MgServicePrincipalEndpoint" +"GET","/servicePrincipals/{param}/endpoints/{param}","keep",,"Get-MgServicePrincipalEndpoint","Get-MgServicePrincipalEndpoint" +"GET","/servicePrincipals/{param}/endpoints/$count","keep",,"Get-MgServicePrincipalEndpointCount","Get-MgServicePrincipalEndpointCount" +"GET","/servicePrincipals/{param}/federatedIdentityCredentials","suppress",,"Get-MgServicePrincipalFederatedIdentityCredential","no oracle row for GET /servicePrincipals/{param}/federatedIdentityCredentials and 'Get-MgServicePrincipalFederatedIdentityCredential' unshipped" +"GET","/servicePrincipals/{param}/federatedIdentityCredentials/{param}","suppress",,"Get-MgServicePrincipalFederatedIdentityCredential","no oracle row for GET /servicePrincipals/{param}/federatedIdentityCredentials/{param} and 'Get-MgServicePrincipalFederatedIdentityCredential' unshipped" +"GET","/servicePrincipals/{param}/federatedIdentityCredentials/$count","suppress",,"Get-MgServicePrincipalFederatedIdentityCredentialCount","no oracle row for GET /servicePrincipals/{param}/federatedIdentityCredentials/$count and 'Get-MgServicePrincipalFederatedIdentityCredentialCount' unshipped" +"GET","/servicePrincipals/{param}/homeRealmDiscoveryPolicies","keep",,"Get-MgServicePrincipalHomeRealmDiscoveryPolicy","Get-MgServicePrincipalHomeRealmDiscoveryPolicy" +"GET","/servicePrincipals/{param}/homeRealmDiscoveryPolicies/$count","keep",,"Get-MgServicePrincipalHomeRealmDiscoveryPolicyCount","Get-MgServicePrincipalHomeRealmDiscoveryPolicyCount" +"GET","/servicePrincipals/{param}/homeRealmDiscoveryPolicies/$ref","keep",,"Get-MgServicePrincipalHomeRealmDiscoveryPolicyByRef","Get-MgServicePrincipalHomeRealmDiscoveryPolicyByRef" +"GET","/servicePrincipals/{param}/memberOf","keep",,"Get-MgServicePrincipalMemberOf","Get-MgServicePrincipalMemberOf" +"GET","/servicePrincipals/{param}/memberOf/{param}","keep",,"Get-MgServicePrincipalMemberOf","Get-MgServicePrincipalMemberOf" +"GET","/servicePrincipals/{param}/memberOf/$count","keep",,"Get-MgServicePrincipalMemberOfCount","Get-MgServicePrincipalMemberOfCount" +"GET","/servicePrincipals/{param}/oauth2PermissionGrants","keep",,"Get-MgServicePrincipalOauth2PermissionGrant","Get-MgServicePrincipalOauth2PermissionGrant" +"GET","/servicePrincipals/{param}/oauth2PermissionGrants/{param}","keep",,"Get-MgServicePrincipalOauth2PermissionGrant","Get-MgServicePrincipalOauth2PermissionGrant" +"GET","/servicePrincipals/{param}/oauth2PermissionGrants/$count","keep",,"Get-MgServicePrincipalOauth2PermissionGrantCount","Get-MgServicePrincipalOauth2PermissionGrantCount" +"GET","/servicePrincipals/{param}/ownedObjects","keep",,"Get-MgServicePrincipalOwnedObject","Get-MgServicePrincipalOwnedObject" +"GET","/servicePrincipals/{param}/ownedObjects/{param}","keep",,"Get-MgServicePrincipalOwnedObject","Get-MgServicePrincipalOwnedObject" +"GET","/servicePrincipals/{param}/ownedObjects/$count","keep",,"Get-MgServicePrincipalOwnedObjectCount","Get-MgServicePrincipalOwnedObjectCount" +"GET","/servicePrincipals/{param}/owners","keep",,"Get-MgServicePrincipalOwner","Get-MgServicePrincipalOwner" +"GET","/servicePrincipals/{param}/owners/$count","keep",,"Get-MgServicePrincipalOwnerCount","Get-MgServicePrincipalOwnerCount" +"GET","/servicePrincipals/{param}/owners/$ref","keep",,"Get-MgServicePrincipalOwnerByRef","Get-MgServicePrincipalOwnerByRef" +"GET","/servicePrincipals/{param}/remoteDesktopSecurityConfiguration","keep",,"Get-MgServicePrincipalRemoteDesktopSecurityConfiguration","Get-MgServicePrincipalRemoteDesktopSecurityConfiguration" +"GET","/servicePrincipals/{param}/remoteDesktopSecurityConfiguration/approvedClientApps","keep",,"Get-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp","Get-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp" +"GET","/servicePrincipals/{param}/remoteDesktopSecurityConfiguration/approvedClientApps/{param}","keep",,"Get-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp","Get-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp" +"GET","/servicePrincipals/{param}/remoteDesktopSecurityConfiguration/approvedClientApps/$count","keep",,"Get-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientAppCount","Get-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientAppCount" +"GET","/servicePrincipals/{param}/remoteDesktopSecurityConfiguration/targetDeviceGroups","keep",,"Get-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup","Get-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup" +"GET","/servicePrincipals/{param}/remoteDesktopSecurityConfiguration/targetDeviceGroups/{param}","keep",,"Get-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup","Get-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup" +"GET","/servicePrincipals/{param}/remoteDesktopSecurityConfiguration/targetDeviceGroups/$count","keep",,"Get-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroupCount","Get-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroupCount" +"GET","/servicePrincipals/{param}/synchronization","keep",,"Get-MgServicePrincipalSynchronization","Get-MgServicePrincipalSynchronization" +"GET","/servicePrincipals/{param}/synchronization/jobs","keep",,"Get-MgServicePrincipalSynchronizationJob","Get-MgServicePrincipalSynchronizationJob" +"GET","/servicePrincipals/{param}/synchronization/jobs/{param}","keep",,"Get-MgServicePrincipalSynchronizationJob","Get-MgServicePrincipalSynchronizationJob" +"GET","/servicePrincipals/{param}/synchronization/jobs/{param}/bulkUpload","keep",,"Get-MgServicePrincipalSynchronizationJobBulkUpload","Get-MgServicePrincipalSynchronizationJobBulkUpload" +"GET","/servicePrincipals/{param}/synchronization/jobs/{param}/bulkUpload/$value","keep",,"Get-MgServicePrincipalSynchronizationJobBulkUploadContent","Get-MgServicePrincipalSynchronizationJobBulkUploadContent" +"GET","/servicePrincipals/{param}/synchronization/jobs/{param}/schema","keep",,"Get-MgServicePrincipalSynchronizationJobSchema","Get-MgServicePrincipalSynchronizationJobSchema" +"GET","/servicePrincipals/{param}/synchronization/jobs/{param}/schema/directories","keep",,"Get-MgServicePrincipalSynchronizationJobSchemaDirectory","Get-MgServicePrincipalSynchronizationJobSchemaDirectory" +"GET","/servicePrincipals/{param}/synchronization/jobs/{param}/schema/directories/{param}","keep",,"Get-MgServicePrincipalSynchronizationJobSchemaDirectory","Get-MgServicePrincipalSynchronizationJobSchemaDirectory" +"GET","/servicePrincipals/{param}/synchronization/jobs/{param}/schema/directories/$count","keep",,"Get-MgServicePrincipalSynchronizationJobSchemaDirectoryCount","Get-MgServicePrincipalSynchronizationJobSchemaDirectoryCount" +"GET","/servicePrincipals/{param}/synchronization/jobs/{param}/schema/filterOperators","rename","FilterServicePrincipalSynchronizationJobSchemaOperator","Get-MgServicePrincipalSynchronizationJobSchemaFilterOperators","Invoke-MgFilterServicePrincipalSynchronizationJobSchemaOperator" +"GET","/servicePrincipals/{param}/synchronization/jobs/{param}/schema/functions","rename","FunctionServicePrincipalSynchronizationJobSchema","Get-MgServicePrincipalSynchronizationJobSchemaFunctions","Invoke-MgFunctionServicePrincipalSynchronizationJobSchema" +"GET","/servicePrincipals/{param}/synchronization/jobs/$count","keep",,"Get-MgServicePrincipalSynchronizationJobCount","Get-MgServicePrincipalSynchronizationJobCount" +"GET","/servicePrincipals/{param}/synchronization/secrets/$count","keep",,"Get-MgServicePrincipalSynchronizationSecretCount","Get-MgServicePrincipalSynchronizationSecretCount" +"GET","/servicePrincipals/{param}/synchronization/templates","keep",,"Get-MgServicePrincipalSynchronizationTemplate","Get-MgServicePrincipalSynchronizationTemplate" +"GET","/servicePrincipals/{param}/synchronization/templates/{param}","keep",,"Get-MgServicePrincipalSynchronizationTemplate","Get-MgServicePrincipalSynchronizationTemplate" +"GET","/servicePrincipals/{param}/synchronization/templates/{param}/schema","keep",,"Get-MgServicePrincipalSynchronizationTemplateSchema","Get-MgServicePrincipalSynchronizationTemplateSchema" +"GET","/servicePrincipals/{param}/synchronization/templates/{param}/schema/directories","keep",,"Get-MgServicePrincipalSynchronizationTemplateSchemaDirectory","Get-MgServicePrincipalSynchronizationTemplateSchemaDirectory" +"GET","/servicePrincipals/{param}/synchronization/templates/{param}/schema/directories/{param}","keep",,"Get-MgServicePrincipalSynchronizationTemplateSchemaDirectory","Get-MgServicePrincipalSynchronizationTemplateSchemaDirectory" +"GET","/servicePrincipals/{param}/synchronization/templates/{param}/schema/directories/$count","keep",,"Get-MgServicePrincipalSynchronizationTemplateSchemaDirectoryCount","Get-MgServicePrincipalSynchronizationTemplateSchemaDirectoryCount" +"GET","/servicePrincipals/{param}/synchronization/templates/{param}/schema/filterOperators","rename","FilterServicePrincipalSynchronizationTemplateSchemaOperator","Get-MgServicePrincipalSynchronizationTemplateSchemaFilterOperators","Invoke-MgFilterServicePrincipalSynchronizationTemplateSchemaOperator" +"GET","/servicePrincipals/{param}/synchronization/templates/{param}/schema/functions","rename","FunctionServicePrincipalSynchronizationTemplateSchema","Get-MgServicePrincipalSynchronizationTemplateSchemaFunctions","Invoke-MgFunctionServicePrincipalSynchronizationTemplateSchema" +"GET","/servicePrincipals/{param}/synchronization/templates/$count","keep",,"Get-MgServicePrincipalSynchronizationTemplateCount","Get-MgServicePrincipalSynchronizationTemplateCount" +"GET","/servicePrincipals/{param}/tokenIssuancePolicies","keep",,"Get-MgServicePrincipalTokenIssuancePolicy","Get-MgServicePrincipalTokenIssuancePolicy" +"GET","/servicePrincipals/{param}/tokenIssuancePolicies/$count","keep",,"Get-MgServicePrincipalTokenIssuancePolicyCount","Get-MgServicePrincipalTokenIssuancePolicyCount" +"GET","/servicePrincipals/{param}/tokenIssuancePolicies/$ref","keep",,"Get-MgServicePrincipalTokenIssuancePolicyByRef","Get-MgServicePrincipalTokenIssuancePolicyByRef" +"GET","/servicePrincipals/{param}/tokenLifetimePolicies","keep",,"Get-MgServicePrincipalTokenLifetimePolicy","Get-MgServicePrincipalTokenLifetimePolicy" +"GET","/servicePrincipals/{param}/tokenLifetimePolicies/$count","keep",,"Get-MgServicePrincipalTokenLifetimePolicyCount","Get-MgServicePrincipalTokenLifetimePolicyCount" +"GET","/servicePrincipals/{param}/tokenLifetimePolicies/$ref","keep",,"Get-MgServicePrincipalTokenLifetimePolicyByRef","Get-MgServicePrincipalTokenLifetimePolicyByRef" +"GET","/servicePrincipals/{param}/transitiveMemberOf","keep",,"Get-MgServicePrincipalTransitiveMemberOf","Get-MgServicePrincipalTransitiveMemberOf" +"GET","/servicePrincipals/{param}/transitiveMemberOf/{param}","keep",,"Get-MgServicePrincipalTransitiveMemberOf","Get-MgServicePrincipalTransitiveMemberOf" +"GET","/servicePrincipals/{param}/transitiveMemberOf/$count","keep",,"Get-MgServicePrincipalTransitiveMemberOfCount","Get-MgServicePrincipalTransitiveMemberOfCount" +"GET","/servicePrincipals/$count","keep",,"Get-MgServicePrincipalCount","Get-MgServicePrincipalCount" +"GET","/servicePrincipals/delta","keep",,"Get-MgServicePrincipalDelta","Get-MgServicePrincipalDelta" +"GET","/shares","keep",,"Get-MgShare","Get-MgShareSharedDriveItemSharedDriveItem" +"GET","/shares/{param}","keep",,"Get-MgShare","Get-MgShareSharedDriveItemSharedDriveItem" +"GET","/shares/{param}/createdByUser","keep",,"Get-MgShareCreatedByUser","Get-MgShareCreatedByUser" +"GET","/shares/{param}/createdByUser/mailboxSettings","keep",,"Get-MgShareCreatedByUserMailboxSetting","Get-MgShareCreatedByUserMailboxSetting" +"GET","/shares/{param}/createdByUser/serviceProvisioningErrors","keep",,"Get-MgShareCreatedByUserServiceProvisioningError","Get-MgShareCreatedByUserServiceProvisioningError" +"GET","/shares/{param}/createdByUser/serviceProvisioningErrors/$count","keep",,"Get-MgShareCreatedByUserServiceProvisioningErrorCount","Get-MgShareCreatedByUserServiceProvisioningErrorCount" +"GET","/shares/{param}/driveItem","keep",,"Get-MgShareDriveItem","Get-MgShareDriveItem" +"GET","/shares/{param}/items","keep",,"Get-MgShareItem","Get-MgShareItem" +"GET","/shares/{param}/items/{param}","keep",,"Get-MgShareItem","Get-MgShareItem" +"GET","/shares/{param}/items/$count","keep",,"Get-MgShareItemCount","Get-MgShareItemCount" +"GET","/shares/{param}/lastModifiedByUser","keep",,"Get-MgShareLastModifiedByUser","Get-MgShareLastModifiedByUser" +"GET","/shares/{param}/lastModifiedByUser/mailboxSettings","keep",,"Get-MgShareLastModifiedByUserMailboxSetting","Get-MgShareLastModifiedByUserMailboxSetting" +"GET","/shares/{param}/lastModifiedByUser/serviceProvisioningErrors","keep",,"Get-MgShareLastModifiedByUserServiceProvisioningError","Get-MgShareLastModifiedByUserServiceProvisioningError" +"GET","/shares/{param}/lastModifiedByUser/serviceProvisioningErrors/$count","keep",,"Get-MgShareLastModifiedByUserServiceProvisioningErrorCount","Get-MgShareLastModifiedByUserServiceProvisioningErrorCount" +"GET","/shares/{param}/list","keep",,"Get-MgShareList","Get-MgShareList" +"GET","/shares/{param}/list/columns","keep",,"Get-MgShareListColumn","Get-MgShareListColumn" +"GET","/shares/{param}/list/columns/{param}","keep",,"Get-MgShareListColumn","Get-MgShareListColumn" +"GET","/shares/{param}/list/columns/{param}/sourceColumn","keep",,"Get-MgShareListColumnSourceColumn","Get-MgShareListColumnSourceColumn" +"GET","/shares/{param}/list/columns/$count","keep",,"Get-MgShareListColumnCount","Get-MgShareListColumnCount" +"GET","/shares/{param}/list/contentTypes","keep",,"Get-MgShareListContentType","Get-MgShareListContentType" +"GET","/shares/{param}/list/contentTypes/{param}","keep",,"Get-MgShareListContentType","Get-MgShareListContentType" +"GET","/shares/{param}/list/contentTypes/{param}/base","rename","ShareContentTypeBase","Get-MgShareListContentTypeBase","Get-MgShareContentTypeBase" +"GET","/shares/{param}/list/contentTypes/{param}/baseTypes","rename","ShareContentTypeBaseType","Get-MgShareListContentTypeBaseType","Get-MgShareContentTypeBaseType" +"GET","/shares/{param}/list/contentTypes/{param}/baseTypes/{param}","rename","ShareContentTypeBaseType","Get-MgShareListContentTypeBaseType","Get-MgShareContentTypeBaseType" +"GET","/shares/{param}/list/contentTypes/{param}/baseTypes/$count","rename","ShareContentTypeBaseTypeCount","Get-MgShareListContentTypeBaseTypeCount","Get-MgShareContentTypeBaseTypeCount" +"GET","/shares/{param}/list/contentTypes/{param}/columnLinks","keep",,"Get-MgShareListContentTypeColumnLink","Get-MgShareListContentTypeColumnLink" +"GET","/shares/{param}/list/contentTypes/{param}/columnLinks/{param}","keep",,"Get-MgShareListContentTypeColumnLink","Get-MgShareListContentTypeColumnLink" +"GET","/shares/{param}/list/contentTypes/{param}/columnLinks/$count","keep",,"Get-MgShareListContentTypeColumnLinkCount","Get-MgShareListContentTypeColumnLinkCount" +"GET","/shares/{param}/list/contentTypes/{param}/columnPositions","keep",,"Get-MgShareListContentTypeColumnPosition","Get-MgShareListContentTypeColumnPosition" +"GET","/shares/{param}/list/contentTypes/{param}/columnPositions/{param}","keep",,"Get-MgShareListContentTypeColumnPosition","Get-MgShareListContentTypeColumnPosition" +"GET","/shares/{param}/list/contentTypes/{param}/columnPositions/$count","keep",,"Get-MgShareListContentTypeColumnPositionCount","Get-MgShareListContentTypeColumnPositionCount" +"GET","/shares/{param}/list/contentTypes/{param}/columns","keep",,"Get-MgShareListContentTypeColumn","Get-MgShareListContentTypeColumn" +"GET","/shares/{param}/list/contentTypes/{param}/columns/{param}","keep",,"Get-MgShareListContentTypeColumn","Get-MgShareListContentTypeColumn" +"GET","/shares/{param}/list/contentTypes/{param}/columns/{param}/sourceColumn","keep",,"Get-MgShareListContentTypeColumnSourceColumn","Get-MgShareListContentTypeColumnSourceColumn" +"GET","/shares/{param}/list/contentTypes/{param}/columns/$count","keep",,"Get-MgShareListContentTypeColumnCount","Get-MgShareListContentTypeColumnCount" +"GET","/shares/{param}/list/contentTypes/{param}/isPublished","rename","ShareListContentTypePublished","Get-MgShareListContentTypeIsPublished","Test-MgShareListContentTypePublished" +"GET","/shares/{param}/list/contentTypes/$count","keep",,"Get-MgShareListContentTypeCount","Get-MgShareListContentTypeCount" +"GET","/shares/{param}/list/contentTypes/getCompatibleHubContentTypes","rename","ShareListContentTypeCompatibleHubContentType","Get-MgShareListContentTypeGetCompatibleHubContentTypes","Get-MgShareListContentTypeCompatibleHubContentType" +"GET","/shares/{param}/list/createdByUser","keep",,"Get-MgShareListCreatedByUser","Get-MgShareListCreatedByUser" +"GET","/shares/{param}/list/createdByUser/mailboxSettings","keep",,"Get-MgShareListCreatedByUserMailboxSetting","Get-MgShareListCreatedByUserMailboxSetting" +"GET","/shares/{param}/list/createdByUser/serviceProvisioningErrors","keep",,"Get-MgShareListCreatedByUserServiceProvisioningError","Get-MgShareListCreatedByUserServiceProvisioningError" +"GET","/shares/{param}/list/createdByUser/serviceProvisioningErrors/$count","keep",,"Get-MgShareListCreatedByUserServiceProvisioningErrorCount","Get-MgShareListCreatedByUserServiceProvisioningErrorCount" +"GET","/shares/{param}/list/drive","keep",,"Get-MgShareListDrive","Get-MgShareListDrive" +"GET","/shares/{param}/list/items","keep",,"Get-MgShareListItem","Get-MgShareListItem" +"GET","/shares/{param}/list/items/{param}/analytics","keep",,"Get-MgShareListItemAnalytic","Get-MgShareListItemAnalytic" +"GET","/shares/{param}/list/items/{param}/createdByUser","keep",,"Get-MgShareListItemCreatedByUser","Get-MgShareListItemCreatedByUser" +"GET","/shares/{param}/list/items/{param}/createdByUser/mailboxSettings","keep",,"Get-MgShareListItemCreatedByUserMailboxSetting","Get-MgShareListItemCreatedByUserMailboxSetting" +"GET","/shares/{param}/list/items/{param}/createdByUser/serviceProvisioningErrors","keep",,"Get-MgShareListItemCreatedByUserServiceProvisioningError","Get-MgShareListItemCreatedByUserServiceProvisioningError" +"GET","/shares/{param}/list/items/{param}/createdByUser/serviceProvisioningErrors/$count","keep",,"Get-MgShareListItemCreatedByUserServiceProvisioningErrorCount","Get-MgShareListItemCreatedByUserServiceProvisioningErrorCount" +"GET","/shares/{param}/list/items/{param}/documentSetVersions","keep",,"Get-MgShareListItemDocumentSetVersion","Get-MgShareListItemDocumentSetVersion" +"GET","/shares/{param}/list/items/{param}/documentSetVersions/{param}","keep",,"Get-MgShareListItemDocumentSetVersion","Get-MgShareListItemDocumentSetVersion" +"GET","/shares/{param}/list/items/{param}/documentSetVersions/{param}/fields","keep",,"Get-MgShareListItemDocumentSetVersionField","Get-MgShareListItemDocumentSetVersionField" +"GET","/shares/{param}/list/items/{param}/documentSetVersions/$count","keep",,"Get-MgShareListItemDocumentSetVersionCount","Get-MgShareListItemDocumentSetVersionCount" +"GET","/shares/{param}/list/items/{param}/driveItem","keep",,"Get-MgShareListItemDriveItem","Get-MgShareListItemDriveItem" +"GET","/shares/{param}/list/items/{param}/fields","keep",,"Get-MgShareListItemField","Get-MgShareListItemField" +"GET","/shares/{param}/list/items/{param}/getActivitiesByInterval","rename","ShareListItemActivityByInterval","Get-MgShareListItemGetActivitiesByInterval","Get-MgShareListItemActivityByInterval" +"GET","/shares/{param}/list/items/{param}/lastModifiedByUser","rename","ShareItemLastModifiedByUser","Get-MgShareListItemLastModifiedByUser","Get-MgShareItemLastModifiedByUser" +"GET","/shares/{param}/list/items/{param}/lastModifiedByUser/mailboxSettings","rename","ShareItemLastModifiedByUserMailboxSetting","Get-MgShareListItemLastModifiedByUserMailboxSetting","Get-MgShareItemLastModifiedByUserMailboxSetting" +"GET","/shares/{param}/list/items/{param}/lastModifiedByUser/serviceProvisioningErrors","rename","ShareItemLastModifiedByUserServiceProvisioningError","Get-MgShareListItemLastModifiedByUserServiceProvisioningError","Get-MgShareItemLastModifiedByUserServiceProvisioningError" +"GET","/shares/{param}/list/items/{param}/lastModifiedByUser/serviceProvisioningErrors/$count","rename","ShareItemLastModifiedByUserServiceProvisioningErrorCount","Get-MgShareListItemLastModifiedByUserServiceProvisioningErrorCount","Get-MgShareItemLastModifiedByUserServiceProvisioningErrorCount" +"GET","/shares/{param}/list/items/{param}/permissions","suppress",,"Get-MgShareListItemPermission","no oracle row for GET /shares/{param}/list/items/{param}/permissions and 'Get-MgShareListItemPermission' unshipped" +"GET","/shares/{param}/list/items/{param}/permissions/{param}","suppress",,"Get-MgShareListItemPermission","no oracle row for GET /shares/{param}/list/items/{param}/permissions/{param} and 'Get-MgShareListItemPermission' unshipped" +"GET","/shares/{param}/list/items/{param}/permissions/$count","suppress",,"Get-MgShareListItemPermissionCount","no oracle row for GET /shares/{param}/list/items/{param}/permissions/$count and 'Get-MgShareListItemPermissionCount' unshipped" +"GET","/shares/{param}/list/items/{param}/versions","keep",,"Get-MgShareListItemVersion","Get-MgShareListItemVersion" +"GET","/shares/{param}/list/items/{param}/versions/{param}","keep",,"Get-MgShareListItemVersion","Get-MgShareListItemVersion" +"GET","/shares/{param}/list/items/{param}/versions/{param}/fields","keep",,"Get-MgShareListItemVersionField","Get-MgShareListItemVersionField" +"GET","/shares/{param}/list/items/{param}/versions/$count","keep",,"Get-MgShareListItemVersionCount","Get-MgShareListItemVersionCount" +"GET","/shares/{param}/list/items/delta","keep",,"Get-MgShareListItemDelta","Get-MgShareListItemDelta" +"GET","/shares/{param}/list/lastModifiedByUser","suppress",,"Get-MgShareListLastModifiedByUser","no oracle row for GET /shares/{param}/list/lastModifiedByUser and 'Get-MgShareListLastModifiedByUser' unshipped" +"GET","/shares/{param}/list/lastModifiedByUser/mailboxSettings","suppress",,"Get-MgShareListLastModifiedByUserMailboxSetting","no oracle row for GET /shares/{param}/list/lastModifiedByUser/mailboxSettings and 'Get-MgShareListLastModifiedByUserMailboxSetting' unshipped" +"GET","/shares/{param}/list/lastModifiedByUser/serviceProvisioningErrors","suppress",,"Get-MgShareListLastModifiedByUserServiceProvisioningError","no oracle row for GET /shares/{param}/list/lastModifiedByUser/serviceProvisioningErrors and 'Get-MgShareListLastModifiedByUserServiceProvisioningError' unshipped" +"GET","/shares/{param}/list/lastModifiedByUser/serviceProvisioningErrors/$count","suppress",,"Get-MgShareListLastModifiedByUserServiceProvisioningErrorCount","no oracle row for GET /shares/{param}/list/lastModifiedByUser/serviceProvisioningErrors/$count and 'Get-MgShareListLastModifiedByUserServiceProvisioningErrorCount' unshipped" +"GET","/shares/{param}/list/operations","keep",,"Get-MgShareListOperation","Get-MgShareListOperation" +"GET","/shares/{param}/list/operations/{param}","keep",,"Get-MgShareListOperation","Get-MgShareListOperation" +"GET","/shares/{param}/list/operations/$count","keep",,"Get-MgShareListOperationCount","Get-MgShareListOperationCount" +"GET","/shares/{param}/list/permissions","suppress",,"Get-MgShareListPermission","no oracle row for GET /shares/{param}/list/permissions and 'Get-MgShareListPermission' unshipped" +"GET","/shares/{param}/list/permissions/{param}","suppress",,"Get-MgShareListPermission","no oracle row for GET /shares/{param}/list/permissions/{param} and 'Get-MgShareListPermission' unshipped" +"GET","/shares/{param}/list/permissions/$count","suppress",,"Get-MgShareListPermissionCount","no oracle row for GET /shares/{param}/list/permissions/$count and 'Get-MgShareListPermissionCount' unshipped" +"GET","/shares/{param}/list/subscriptions","keep",,"Get-MgShareListSubscription","Get-MgShareListSubscription" +"GET","/shares/{param}/list/subscriptions/{param}","keep",,"Get-MgShareListSubscription","Get-MgShareListSubscription" +"GET","/shares/{param}/list/subscriptions/$count","keep",,"Get-MgShareListSubscriptionCount","Get-MgShareListSubscriptionCount" +"GET","/shares/{param}/permission","keep",,"Get-MgSharePermission","Get-MgSharePermission" +"GET","/shares/{param}/root","keep",,"Get-MgShareRoot","Get-MgShareRoot" +"GET","/shares/{param}/site","keep",,"Get-MgShareSite","Get-MgShareSite" +"GET","/shares/$count","keep",,"Get-MgShareCount","Get-MgShareCount" +"GET","/sites","keep",,"Get-MgSite","Get-MgSite" +"GET","/sites/{param}","keep",,"Get-MgSite","Get-MgSite" +"GET","/sites/{param}/analytics","keep",,"Get-MgSiteAnalytic","Get-MgSiteAnalytic" +"GET","/sites/{param}/analytics/allTime","rename","SiteAnalyticTime","Get-MgSiteAnalyticAllTime","Get-MgSiteAnalyticTime" +"GET","/sites/{param}/analytics/itemActivityStats","keep",,"Get-MgSiteAnalyticItemActivityStat","Get-MgSiteAnalyticItemActivityStat" +"GET","/sites/{param}/analytics/itemActivityStats/{param}","keep",,"Get-MgSiteAnalyticItemActivityStat","Get-MgSiteAnalyticItemActivityStat" +"GET","/sites/{param}/analytics/itemActivityStats/{param}/activities","keep",,"Get-MgSiteAnalyticItemActivityStatActivity","Get-MgSiteAnalyticItemActivityStatActivity" +"GET","/sites/{param}/analytics/itemActivityStats/{param}/activities/{param}","keep",,"Get-MgSiteAnalyticItemActivityStatActivity","Get-MgSiteAnalyticItemActivityStatActivity" +"GET","/sites/{param}/analytics/itemActivityStats/{param}/activities/{param}/driveItem","keep",,"Get-MgSiteAnalyticItemActivityStatActivityDriveItem","Get-MgSiteAnalyticItemActivityStatActivityDriveItem" +"GET","/sites/{param}/analytics/itemActivityStats/{param}/activities/$count","keep",,"Get-MgSiteAnalyticItemActivityStatActivityCount","Get-MgSiteAnalyticItemActivityStatActivityCount" +"GET","/sites/{param}/analytics/itemActivityStats/$count","keep",,"Get-MgSiteAnalyticItemActivityStatCount","Get-MgSiteAnalyticItemActivityStatCount" +"GET","/sites/{param}/analytics/lastSevenDays","keep",,"Get-MgSiteAnalyticLastSevenDay","Get-MgSiteAnalyticLastSevenDay" +"GET","/sites/{param}/columns","keep",,"Get-MgSiteColumn","Get-MgSiteColumn" +"GET","/sites/{param}/columns/{param}","keep",,"Get-MgSiteColumn","Get-MgSiteColumn" +"GET","/sites/{param}/columns/{param}/sourceColumn","keep",,"Get-MgSiteColumnSourceColumn","Get-MgSiteColumnSourceColumn" +"GET","/sites/{param}/columns/$count","keep",,"Get-MgSiteColumnCount","Get-MgSiteColumnCount" +"GET","/sites/{param}/contentTypes","keep",,"Get-MgSiteContentType","Get-MgSiteContentType" +"GET","/sites/{param}/contentTypes/{param}","keep",,"Get-MgSiteContentType","Get-MgSiteContentType" +"GET","/sites/{param}/contentTypes/{param}/base","keep",,"Get-MgSiteContentTypeBase","Get-MgSiteContentTypeBase" +"GET","/sites/{param}/contentTypes/{param}/baseTypes","keep",,"Get-MgSiteContentTypeBaseType","Get-MgSiteContentTypeBaseType" +"GET","/sites/{param}/contentTypes/{param}/baseTypes/{param}","keep",,"Get-MgSiteContentTypeBaseType","Get-MgSiteContentTypeBaseType" +"GET","/sites/{param}/contentTypes/{param}/baseTypes/$count","keep",,"Get-MgSiteContentTypeBaseTypeCount","Get-MgSiteContentTypeBaseTypeCount" +"GET","/sites/{param}/contentTypes/{param}/columnLinks","keep",,"Get-MgSiteContentTypeColumnLink","Get-MgSiteContentTypeColumnLink" +"GET","/sites/{param}/contentTypes/{param}/columnLinks/{param}","keep",,"Get-MgSiteContentTypeColumnLink","Get-MgSiteContentTypeColumnLink" +"GET","/sites/{param}/contentTypes/{param}/columnLinks/$count","keep",,"Get-MgSiteContentTypeColumnLinkCount","Get-MgSiteContentTypeColumnLinkCount" +"GET","/sites/{param}/contentTypes/{param}/columnPositions","keep",,"Get-MgSiteContentTypeColumnPosition","Get-MgSiteContentTypeColumnPosition" +"GET","/sites/{param}/contentTypes/{param}/columnPositions/{param}","keep",,"Get-MgSiteContentTypeColumnPosition","Get-MgSiteContentTypeColumnPosition" +"GET","/sites/{param}/contentTypes/{param}/columnPositions/$count","keep",,"Get-MgSiteContentTypeColumnPositionCount","Get-MgSiteContentTypeColumnPositionCount" +"GET","/sites/{param}/contentTypes/{param}/columns","keep",,"Get-MgSiteContentTypeColumn","Get-MgSiteContentTypeColumn" +"GET","/sites/{param}/contentTypes/{param}/columns/{param}","keep",,"Get-MgSiteContentTypeColumn","Get-MgSiteContentTypeColumn" +"GET","/sites/{param}/contentTypes/{param}/columns/{param}/sourceColumn","keep",,"Get-MgSiteContentTypeColumnSourceColumn","Get-MgSiteContentTypeColumnSourceColumn" +"GET","/sites/{param}/contentTypes/{param}/columns/$count","keep",,"Get-MgSiteContentTypeColumnCount","Get-MgSiteContentTypeColumnCount" +"GET","/sites/{param}/contentTypes/{param}/isPublished","rename","SiteContentTypePublished","Get-MgSiteContentTypeIsPublished","Test-MgSiteContentTypePublished" +"GET","/sites/{param}/contentTypes/$count","keep",,"Get-MgSiteContentTypeCount","Get-MgSiteContentTypeCount" +"GET","/sites/{param}/contentTypes/getCompatibleHubContentTypes","rename","SiteContentTypeCompatibleHubContentType","Get-MgSiteContentTypeGetCompatibleHubContentTypes","Get-MgSiteContentTypeCompatibleHubContentType" +"GET","/sites/{param}/drive","keep",,"Get-MgSiteDefaultDrive","Get-MgSiteDefaultDrive" +"GET","/sites/{param}/drives","keep",,"Get-MgSiteDrive","Get-MgSiteDrive" +"GET","/sites/{param}/drives/{param}","keep",,"Get-MgSiteDrive","Get-MgSiteDrive" +"GET","/sites/{param}/drives/$count","keep",,"Get-MgSiteDriveCount","Get-MgSiteDriveCount" +"GET","/sites/{param}/externalColumns","keep",,"Get-MgSiteExternalColumn","Get-MgSiteExternalColumn" +"GET","/sites/{param}/externalColumns/{param}","keep",,"Get-MgSiteExternalColumn","Get-MgSiteExternalColumn" +"GET","/sites/{param}/externalColumns/$count","keep",,"Get-MgSiteExternalColumnCount","Get-MgSiteExternalColumnCount" +"GET","/sites/{param}/getActivitiesByInterval","rename","SiteActivityByInterval","Get-MgSiteGetActivitiesByInterval","Get-MgSiteActivityByInterval" +"GET","/sites/{param}/lists","keep",,"Get-MgSiteList","Get-MgSiteList" +"GET","/sites/{param}/lists/{param}","keep",,"Get-MgSiteList","Get-MgSiteList" +"GET","/sites/{param}/lists/{param}/columns","keep",,"Get-MgSiteListColumn","Get-MgSiteListColumn" +"GET","/sites/{param}/lists/{param}/columns/{param}","keep",,"Get-MgSiteListColumn","Get-MgSiteListColumn" +"GET","/sites/{param}/lists/{param}/columns/{param}/sourceColumn","keep",,"Get-MgSiteListColumnSourceColumn","Get-MgSiteListColumnSourceColumn" +"GET","/sites/{param}/lists/{param}/columns/$count","keep",,"Get-MgSiteListColumnCount","Get-MgSiteListColumnCount" +"GET","/sites/{param}/lists/{param}/contentTypes","keep",,"Get-MgSiteListContentType","Get-MgSiteListContentType" +"GET","/sites/{param}/lists/{param}/contentTypes/{param}","keep",,"Get-MgSiteListContentType","Get-MgSiteListContentType" +"GET","/sites/{param}/lists/{param}/contentTypes/{param}/base","suppress",,"Get-MgSiteListContentTypeBase","no oracle row for GET /sites/{param}/lists/{param}/contentTypes/{param}/base and 'Get-MgSiteListContentTypeBase' unshipped" +"GET","/sites/{param}/lists/{param}/contentTypes/{param}/baseTypes","suppress",,"Get-MgSiteListContentTypeBaseType","no oracle row for GET /sites/{param}/lists/{param}/contentTypes/{param}/baseTypes and 'Get-MgSiteListContentTypeBaseType' unshipped" +"GET","/sites/{param}/lists/{param}/contentTypes/{param}/baseTypes/{param}","suppress",,"Get-MgSiteListContentTypeBaseType","no oracle row for GET /sites/{param}/lists/{param}/contentTypes/{param}/baseTypes/{param} and 'Get-MgSiteListContentTypeBaseType' unshipped" +"GET","/sites/{param}/lists/{param}/contentTypes/{param}/baseTypes/$count","suppress",,"Get-MgSiteListContentTypeBaseTypeCount","no oracle row for GET /sites/{param}/lists/{param}/contentTypes/{param}/baseTypes/$count and 'Get-MgSiteListContentTypeBaseTypeCount' unshipped" +"GET","/sites/{param}/lists/{param}/contentTypes/{param}/columnLinks","keep",,"Get-MgSiteListContentTypeColumnLink","Get-MgSiteListContentTypeColumnLink" +"GET","/sites/{param}/lists/{param}/contentTypes/{param}/columnLinks/{param}","keep",,"Get-MgSiteListContentTypeColumnLink","Get-MgSiteListContentTypeColumnLink" +"GET","/sites/{param}/lists/{param}/contentTypes/{param}/columnLinks/$count","keep",,"Get-MgSiteListContentTypeColumnLinkCount","Get-MgSiteListContentTypeColumnLinkCount" +"GET","/sites/{param}/lists/{param}/contentTypes/{param}/columnPositions","keep",,"Get-MgSiteListContentTypeColumnPosition","Get-MgSiteListContentTypeColumnPosition" +"GET","/sites/{param}/lists/{param}/contentTypes/{param}/columnPositions/{param}","keep",,"Get-MgSiteListContentTypeColumnPosition","Get-MgSiteListContentTypeColumnPosition" +"GET","/sites/{param}/lists/{param}/contentTypes/{param}/columnPositions/$count","keep",,"Get-MgSiteListContentTypeColumnPositionCount","Get-MgSiteListContentTypeColumnPositionCount" +"GET","/sites/{param}/lists/{param}/contentTypes/{param}/columns","keep",,"Get-MgSiteListContentTypeColumn","Get-MgSiteListContentTypeColumn" +"GET","/sites/{param}/lists/{param}/contentTypes/{param}/columns/{param}","keep",,"Get-MgSiteListContentTypeColumn","Get-MgSiteListContentTypeColumn" +"GET","/sites/{param}/lists/{param}/contentTypes/{param}/columns/{param}/sourceColumn","keep",,"Get-MgSiteListContentTypeColumnSourceColumn","Get-MgSiteListContentTypeColumnSourceColumn" +"GET","/sites/{param}/lists/{param}/contentTypes/{param}/columns/$count","keep",,"Get-MgSiteListContentTypeColumnCount","Get-MgSiteListContentTypeColumnCount" +"GET","/sites/{param}/lists/{param}/contentTypes/{param}/isPublished","rename","SiteListContentTypePublished","Get-MgSiteListContentTypeIsPublished","Test-MgSiteListContentTypePublished" +"GET","/sites/{param}/lists/{param}/contentTypes/$count","keep",,"Get-MgSiteListContentTypeCount","Get-MgSiteListContentTypeCount" +"GET","/sites/{param}/lists/{param}/contentTypes/getCompatibleHubContentTypes","rename","SiteListContentTypeCompatibleHubContentType","Get-MgSiteListContentTypeGetCompatibleHubContentTypes","Get-MgSiteListContentTypeCompatibleHubContentType" +"GET","/sites/{param}/lists/{param}/createdByUser","keep",,"Get-MgSiteListCreatedByUser","Get-MgSiteListCreatedByUser" +"GET","/sites/{param}/lists/{param}/createdByUser/mailboxSettings","keep",,"Get-MgSiteListCreatedByUserMailboxSetting","Get-MgSiteListCreatedByUserMailboxSetting" +"GET","/sites/{param}/lists/{param}/createdByUser/serviceProvisioningErrors","keep",,"Get-MgSiteListCreatedByUserServiceProvisioningError","Get-MgSiteListCreatedByUserServiceProvisioningError" +"GET","/sites/{param}/lists/{param}/createdByUser/serviceProvisioningErrors/$count","keep",,"Get-MgSiteListCreatedByUserServiceProvisioningErrorCount","Get-MgSiteListCreatedByUserServiceProvisioningErrorCount" +"GET","/sites/{param}/lists/{param}/drive","keep",,"Get-MgSiteListDrive","Get-MgSiteListDrive" +"GET","/sites/{param}/lists/{param}/items","keep",,"Get-MgSiteListItem","Get-MgSiteListItem" +"GET","/sites/{param}/lists/{param}/items/{param}","keep",,"Get-MgSiteListItem","Get-MgSiteListItem" +"GET","/sites/{param}/lists/{param}/items/{param}/analytics","keep",,"Get-MgSiteListItemAnalytic","Get-MgSiteListItemAnalytic" +"GET","/sites/{param}/lists/{param}/items/{param}/createdByUser","keep",,"Get-MgSiteListItemCreatedByUser","Get-MgSiteListItemCreatedByUser" +"GET","/sites/{param}/lists/{param}/items/{param}/createdByUser/mailboxSettings","keep",,"Get-MgSiteListItemCreatedByUserMailboxSetting","Get-MgSiteListItemCreatedByUserMailboxSetting" +"GET","/sites/{param}/lists/{param}/items/{param}/createdByUser/serviceProvisioningErrors","keep",,"Get-MgSiteListItemCreatedByUserServiceProvisioningError","Get-MgSiteListItemCreatedByUserServiceProvisioningError" +"GET","/sites/{param}/lists/{param}/items/{param}/createdByUser/serviceProvisioningErrors/$count","keep",,"Get-MgSiteListItemCreatedByUserServiceProvisioningErrorCount","Get-MgSiteListItemCreatedByUserServiceProvisioningErrorCount" +"GET","/sites/{param}/lists/{param}/items/{param}/documentSetVersions","keep",,"Get-MgSiteListItemDocumentSetVersion","Get-MgSiteListItemDocumentSetVersion" +"GET","/sites/{param}/lists/{param}/items/{param}/documentSetVersions/{param}","keep",,"Get-MgSiteListItemDocumentSetVersion","Get-MgSiteListItemDocumentSetVersion" +"GET","/sites/{param}/lists/{param}/items/{param}/documentSetVersions/{param}/fields","keep",,"Get-MgSiteListItemDocumentSetVersionField","Get-MgSiteListItemDocumentSetVersionField" +"GET","/sites/{param}/lists/{param}/items/{param}/documentSetVersions/$count","keep",,"Get-MgSiteListItemDocumentSetVersionCount","Get-MgSiteListItemDocumentSetVersionCount" +"GET","/sites/{param}/lists/{param}/items/{param}/driveItem","keep",,"Get-MgSiteListItemDriveItem","Get-MgSiteListItemDriveItem" +"GET","/sites/{param}/lists/{param}/items/{param}/fields","keep",,"Get-MgSiteListItemField","Get-MgSiteListItemField" +"GET","/sites/{param}/lists/{param}/items/{param}/getActivitiesByInterval","rename","SiteListItemActivityByInterval","Get-MgSiteListItemGetActivitiesByInterval","Get-MgSiteListItemActivityByInterval" +"GET","/sites/{param}/lists/{param}/items/{param}/lastModifiedByUser","rename","SiteItemLastModifiedByUser","Get-MgSiteListItemLastModifiedByUser","Get-MgSiteItemLastModifiedByUser" +"GET","/sites/{param}/lists/{param}/items/{param}/lastModifiedByUser/mailboxSettings","rename","SiteItemLastModifiedByUserMailboxSetting","Get-MgSiteListItemLastModifiedByUserMailboxSetting","Get-MgSiteItemLastModifiedByUserMailboxSetting" +"GET","/sites/{param}/lists/{param}/items/{param}/lastModifiedByUser/serviceProvisioningErrors","rename","SiteItemLastModifiedByUserServiceProvisioningError","Get-MgSiteListItemLastModifiedByUserServiceProvisioningError","Get-MgSiteItemLastModifiedByUserServiceProvisioningError" +"GET","/sites/{param}/lists/{param}/items/{param}/lastModifiedByUser/serviceProvisioningErrors/$count","rename","SiteItemLastModifiedByUserServiceProvisioningErrorCount","Get-MgSiteListItemLastModifiedByUserServiceProvisioningErrorCount","Get-MgSiteItemLastModifiedByUserServiceProvisioningErrorCount" +"GET","/sites/{param}/lists/{param}/items/{param}/permissions","keep",,"Get-MgSiteListItemPermission","Get-MgSiteListItemPermission" +"GET","/sites/{param}/lists/{param}/items/{param}/permissions/{param}","keep",,"Get-MgSiteListItemPermission","Get-MgSiteListItemPermission" +"GET","/sites/{param}/lists/{param}/items/{param}/permissions/$count","keep",,"Get-MgSiteListItemPermissionCount","Get-MgSiteListItemPermissionCount" +"GET","/sites/{param}/lists/{param}/items/{param}/versions","keep",,"Get-MgSiteListItemVersion","Get-MgSiteListItemVersion" +"GET","/sites/{param}/lists/{param}/items/{param}/versions/{param}","keep",,"Get-MgSiteListItemVersion","Get-MgSiteListItemVersion" +"GET","/sites/{param}/lists/{param}/items/{param}/versions/{param}/fields","keep",,"Get-MgSiteListItemVersionField","Get-MgSiteListItemVersionField" +"GET","/sites/{param}/lists/{param}/items/{param}/versions/$count","keep",,"Get-MgSiteListItemVersionCount","Get-MgSiteListItemVersionCount" +"GET","/sites/{param}/lists/{param}/items/delta","keep",,"Get-MgSiteListItemDelta","Get-MgSiteListItemDelta" +"GET","/sites/{param}/lists/{param}/lastModifiedByUser","rename","SiteLastModifiedByUser","Get-MgSiteListLastModifiedByUser","Get-MgSiteLastModifiedByUser" +"GET","/sites/{param}/lists/{param}/lastModifiedByUser/mailboxSettings","rename","SiteLastModifiedByUserMailboxSetting","Get-MgSiteListLastModifiedByUserMailboxSetting","Get-MgSiteLastModifiedByUserMailboxSetting" +"GET","/sites/{param}/lists/{param}/lastModifiedByUser/serviceProvisioningErrors","rename","SiteLastModifiedByUserServiceProvisioningError","Get-MgSiteListLastModifiedByUserServiceProvisioningError","Get-MgSiteLastModifiedByUserServiceProvisioningError" +"GET","/sites/{param}/lists/{param}/lastModifiedByUser/serviceProvisioningErrors/$count","rename","SiteLastModifiedByUserServiceProvisioningErrorCount","Get-MgSiteListLastModifiedByUserServiceProvisioningErrorCount","Get-MgSiteLastModifiedByUserServiceProvisioningErrorCount" +"GET","/sites/{param}/lists/{param}/operations","keep",,"Get-MgSiteListOperation","Get-MgSiteListOperation" +"GET","/sites/{param}/lists/{param}/operations/{param}","keep",,"Get-MgSiteListOperation","Get-MgSiteListOperation" +"GET","/sites/{param}/lists/{param}/operations/$count","keep",,"Get-MgSiteListOperationCount","Get-MgSiteListOperationCount" +"GET","/sites/{param}/lists/{param}/permissions","keep",,"Get-MgSiteListPermission","Get-MgSiteListPermission" +"GET","/sites/{param}/lists/{param}/permissions/{param}","keep",,"Get-MgSiteListPermission","Get-MgSiteListPermission" +"GET","/sites/{param}/lists/{param}/permissions/$count","keep",,"Get-MgSiteListPermissionCount","Get-MgSiteListPermissionCount" +"GET","/sites/{param}/lists/{param}/subscriptions","keep",,"Get-MgSiteListSubscription","Get-MgSiteListSubscription" +"GET","/sites/{param}/lists/{param}/subscriptions/{param}","keep",,"Get-MgSiteListSubscription","Get-MgSiteListSubscription" +"GET","/sites/{param}/lists/{param}/subscriptions/$count","keep",,"Get-MgSiteListSubscriptionCount","Get-MgSiteListSubscriptionCount" +"GET","/sites/{param}/lists/$count","keep",,"Get-MgSiteListCount","Get-MgSiteListCount" +"GET","/sites/{param}/onenote","keep",,"Get-MgSiteOnenote","Get-MgSiteOnenote" +"GET","/sites/{param}/onenote/notebooks","keep",,"Get-MgSiteOnenoteNotebook","Get-MgSiteOnenoteNotebook" +"GET","/sites/{param}/onenote/notebooks/{param}","keep",,"Get-MgSiteOnenoteNotebook","Get-MgSiteOnenoteNotebook" +"GET","/sites/{param}/onenote/notebooks/{param}/sectionGroups","keep",,"Get-MgSiteOnenoteNotebookSectionGroup","Get-MgSiteOnenoteNotebookSectionGroup" +"GET","/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/parentNotebook","keep",,"Get-MgSiteOnenoteNotebookSectionGroupParentNotebook","Get-MgSiteOnenoteNotebookSectionGroupParentNotebook" +"GET","/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/parentSectionGroup","keep",,"Get-MgSiteOnenoteNotebookSectionGroupParentSectionGroup","Get-MgSiteOnenoteNotebookSectionGroupParentSectionGroup" +"GET","/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sectionGroups/$count","keep",,"Get-MgSiteOnenoteNotebookSectionGroupCount","Get-MgSiteOnenoteNotebookSectionGroupCount" +"GET","/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections","keep",,"Get-MgSiteOnenoteNotebookSectionGroupSection","Get-MgSiteOnenoteNotebookSectionGroupSection" +"GET","/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}","keep",,"Get-MgSiteOnenoteNotebookSectionGroupSection","Get-MgSiteOnenoteNotebookSectionGroupSection" +"GET","/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages","keep",,"Get-MgSiteOnenoteNotebookSectionGroupSectionPage","Get-MgSiteOnenoteNotebookSectionGroupSectionPage" +"GET","/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}","keep",,"Get-MgSiteOnenoteNotebookSectionGroupSectionPage","Get-MgSiteOnenoteNotebookSectionGroupSectionPage" +"GET","/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}/parentNotebook","keep",,"Get-MgSiteOnenoteNotebookSectionGroupSectionPageParentNotebook","Get-MgSiteOnenoteNotebookSectionGroupSectionPageParentNotebook" +"GET","/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}/parentSection","keep",,"Get-MgSiteOnenoteNotebookSectionGroupSectionPageParentSection","Get-MgSiteOnenoteNotebookSectionGroupSectionPageParentSection" +"GET","/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}/preview","rename","PreviewSiteOnenoteNotebookSectionGroupSectionPage","Get-MgSiteOnenoteNotebookSectionGroupSectionPagePreview","Invoke-MgPreviewSiteOnenoteNotebookSectionGroupSectionPage" +"GET","/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/$count","keep",,"Get-MgSiteOnenoteNotebookSectionGroupSectionPageCount","Get-MgSiteOnenoteNotebookSectionGroupSectionPageCount" +"GET","/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/parentNotebook","keep",,"Get-MgSiteOnenoteNotebookSectionGroupSectionParentNotebook","Get-MgSiteOnenoteNotebookSectionGroupSectionParentNotebook" +"GET","/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/parentSectionGroup","keep",,"Get-MgSiteOnenoteNotebookSectionGroupSectionParentSectionGroup","Get-MgSiteOnenoteNotebookSectionGroupSectionParentSectionGroup" +"GET","/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/$count","keep",,"Get-MgSiteOnenoteNotebookSectionGroupSectionCount","Get-MgSiteOnenoteNotebookSectionGroupSectionCount" +"GET","/sites/{param}/onenote/notebooks/{param}/sections","keep",,"Get-MgSiteOnenoteNotebookSection","Get-MgSiteOnenoteNotebookSection" +"GET","/sites/{param}/onenote/notebooks/{param}/sections/{param}","keep",,"Get-MgSiteOnenoteNotebookSection","Get-MgSiteOnenoteNotebookSection" +"GET","/sites/{param}/onenote/notebooks/{param}/sections/{param}/pages","keep",,"Get-MgSiteOnenoteNotebookSectionPage","Get-MgSiteOnenoteNotebookSectionPage" +"GET","/sites/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}","keep",,"Get-MgSiteOnenoteNotebookSectionPage","Get-MgSiteOnenoteNotebookSectionPage" +"GET","/sites/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}/parentNotebook","keep",,"Get-MgSiteOnenoteNotebookSectionPageParentNotebook","Get-MgSiteOnenoteNotebookSectionPageParentNotebook" +"GET","/sites/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}/parentSection","keep",,"Get-MgSiteOnenoteNotebookSectionPageParentSection","Get-MgSiteOnenoteNotebookSectionPageParentSection" +"GET","/sites/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}/preview","rename","PreviewSiteOnenoteNotebookSectionPage","Get-MgSiteOnenoteNotebookSectionPagePreview","Invoke-MgPreviewSiteOnenoteNotebookSectionPage" +"GET","/sites/{param}/onenote/notebooks/{param}/sections/{param}/pages/$count","keep",,"Get-MgSiteOnenoteNotebookSectionPageCount","Get-MgSiteOnenoteNotebookSectionPageCount" +"GET","/sites/{param}/onenote/notebooks/{param}/sections/{param}/parentNotebook","keep",,"Get-MgSiteOnenoteNotebookSectionParentNotebook","Get-MgSiteOnenoteNotebookSectionParentNotebook" +"GET","/sites/{param}/onenote/notebooks/{param}/sections/{param}/parentSectionGroup","keep",,"Get-MgSiteOnenoteNotebookSectionParentSectionGroup","Get-MgSiteOnenoteNotebookSectionParentSectionGroup" +"GET","/sites/{param}/onenote/notebooks/{param}/sections/$count","keep",,"Get-MgSiteOnenoteNotebookSectionCount","Get-MgSiteOnenoteNotebookSectionCount" +"GET","/sites/{param}/onenote/notebooks/$count","keep",,"Get-MgSiteOnenoteNotebookCount","Get-MgSiteOnenoteNotebookCount" +"GET","/sites/{param}/onenote/operations","keep",,"Get-MgSiteOnenoteOperation","Get-MgSiteOnenoteOperation" +"GET","/sites/{param}/onenote/operations/{param}","keep",,"Get-MgSiteOnenoteOperation","Get-MgSiteOnenoteOperation" +"GET","/sites/{param}/onenote/operations/$count","keep",,"Get-MgSiteOnenoteOperationCount","Get-MgSiteOnenoteOperationCount" +"GET","/sites/{param}/onenote/pages","keep",,"Get-MgSiteOnenotePage","Get-MgSiteOnenotePage" +"GET","/sites/{param}/onenote/pages/{param}","keep",,"Get-MgSiteOnenotePage","Get-MgSiteOnenotePage" +"GET","/sites/{param}/onenote/pages/{param}/parentNotebook","keep",,"Get-MgSiteOnenotePageParentNotebook","Get-MgSiteOnenotePageParentNotebook" +"GET","/sites/{param}/onenote/pages/{param}/parentSection","keep",,"Get-MgSiteOnenotePageParentSection","Get-MgSiteOnenotePageParentSection" +"GET","/sites/{param}/onenote/pages/{param}/preview","rename","PreviewSiteOnenotePage","Get-MgSiteOnenotePagePreview","Invoke-MgPreviewSiteOnenotePage" +"GET","/sites/{param}/onenote/pages/$count","keep",,"Get-MgSiteOnenotePageCount","Get-MgSiteOnenotePageCount" +"GET","/sites/{param}/onenote/resources","keep",,"Get-MgSiteOnenoteResource","Get-MgSiteOnenoteResource" +"GET","/sites/{param}/onenote/resources/{param}","keep",,"Get-MgSiteOnenoteResource","Get-MgSiteOnenoteResource" +"GET","/sites/{param}/onenote/resources/$count","keep",,"Get-MgSiteOnenoteResourceCount","Get-MgSiteOnenoteResourceCount" +"GET","/sites/{param}/onenote/sectionGroups","keep",,"Get-MgSiteOnenoteSectionGroup","Get-MgSiteOnenoteSectionGroup" +"GET","/sites/{param}/onenote/sectionGroups/{param}/parentNotebook","keep",,"Get-MgSiteOnenoteSectionGroupParentNotebook","Get-MgSiteOnenoteSectionGroupParentNotebook" +"GET","/sites/{param}/onenote/sectionGroups/{param}/parentSectionGroup","keep",,"Get-MgSiteOnenoteSectionGroupParentSectionGroup","Get-MgSiteOnenoteSectionGroupParentSectionGroup" +"GET","/sites/{param}/onenote/sectionGroups/{param}/sectionGroups/$count","keep",,"Get-MgSiteOnenoteSectionGroupCount","Get-MgSiteOnenoteSectionGroupCount" +"GET","/sites/{param}/onenote/sectionGroups/{param}/sections","keep",,"Get-MgSiteOnenoteSectionGroupSection","Get-MgSiteOnenoteSectionGroupSection" +"GET","/sites/{param}/onenote/sectionGroups/{param}/sections/{param}","keep",,"Get-MgSiteOnenoteSectionGroupSection","Get-MgSiteOnenoteSectionGroupSection" +"GET","/sites/{param}/onenote/sectionGroups/{param}/sections/{param}/pages","keep",,"Get-MgSiteOnenoteSectionGroupSectionPage","Get-MgSiteOnenoteSectionGroupSectionPage" +"GET","/sites/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}","keep",,"Get-MgSiteOnenoteSectionGroupSectionPage","Get-MgSiteOnenoteSectionGroupSectionPage" +"GET","/sites/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}/parentNotebook","keep",,"Get-MgSiteOnenoteSectionGroupSectionPageParentNotebook","Get-MgSiteOnenoteSectionGroupSectionPageParentNotebook" +"GET","/sites/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}/parentSection","keep",,"Get-MgSiteOnenoteSectionGroupSectionPageParentSection","Get-MgSiteOnenoteSectionGroupSectionPageParentSection" +"GET","/sites/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}/preview","rename","PreviewSiteOnenoteSectionGroupSectionPage","Get-MgSiteOnenoteSectionGroupSectionPagePreview","Invoke-MgPreviewSiteOnenoteSectionGroupSectionPage" +"GET","/sites/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/$count","keep",,"Get-MgSiteOnenoteSectionGroupSectionPageCount","Get-MgSiteOnenoteSectionGroupSectionPageCount" +"GET","/sites/{param}/onenote/sectionGroups/{param}/sections/{param}/parentNotebook","keep",,"Get-MgSiteOnenoteSectionGroupSectionParentNotebook","Get-MgSiteOnenoteSectionGroupSectionParentNotebook" +"GET","/sites/{param}/onenote/sectionGroups/{param}/sections/{param}/parentSectionGroup","keep",,"Get-MgSiteOnenoteSectionGroupSectionParentSectionGroup","Get-MgSiteOnenoteSectionGroupSectionParentSectionGroup" +"GET","/sites/{param}/onenote/sectionGroups/{param}/sections/$count","keep",,"Get-MgSiteOnenoteSectionGroupSectionCount","Get-MgSiteOnenoteSectionGroupSectionCount" +"GET","/sites/{param}/onenote/sections","keep",,"Get-MgSiteOnenoteSection","Get-MgSiteOnenoteSection" +"GET","/sites/{param}/onenote/sections/{param}","keep",,"Get-MgSiteOnenoteSection","Get-MgSiteOnenoteSection" +"GET","/sites/{param}/onenote/sections/{param}/pages","keep",,"Get-MgSiteOnenoteSectionPage","Get-MgSiteOnenoteSectionPage" +"GET","/sites/{param}/onenote/sections/{param}/pages/{param}","keep",,"Get-MgSiteOnenoteSectionPage","Get-MgSiteOnenoteSectionPage" +"GET","/sites/{param}/onenote/sections/{param}/pages/{param}/parentNotebook","keep",,"Get-MgSiteOnenoteSectionPageParentNotebook","Get-MgSiteOnenoteSectionPageParentNotebook" +"GET","/sites/{param}/onenote/sections/{param}/pages/{param}/parentSection","keep",,"Get-MgSiteOnenoteSectionPageParentSection","Get-MgSiteOnenoteSectionPageParentSection" +"GET","/sites/{param}/onenote/sections/{param}/pages/{param}/preview","rename","PreviewSiteOnenoteSectionPage","Get-MgSiteOnenoteSectionPagePreview","Invoke-MgPreviewSiteOnenoteSectionPage" +"GET","/sites/{param}/onenote/sections/{param}/pages/$count","keep",,"Get-MgSiteOnenoteSectionPageCount","Get-MgSiteOnenoteSectionPageCount" +"GET","/sites/{param}/onenote/sections/{param}/parentNotebook","keep",,"Get-MgSiteOnenoteSectionParentNotebook","Get-MgSiteOnenoteSectionParentNotebook" +"GET","/sites/{param}/onenote/sections/{param}/parentSectionGroup","keep",,"Get-MgSiteOnenoteSectionParentSectionGroup","Get-MgSiteOnenoteSectionParentSectionGroup" +"GET","/sites/{param}/onenote/sections/$count","keep",,"Get-MgSiteOnenoteSectionCount","Get-MgSiteOnenoteSectionCount" +"GET","/sites/{param}/operations","keep",,"Get-MgSiteOperation","Get-MgSiteOperation" +"GET","/sites/{param}/operations/{param}","keep",,"Get-MgSiteOperation","Get-MgSiteOperation" +"GET","/sites/{param}/operations/$count","keep",,"Get-MgSiteOperationCount","Get-MgSiteOperationCount" +"GET","/sites/{param}/pages","keep",,"Get-MgSitePage","Get-MgSitePage" +"GET","/sites/{param}/pages/{param}","keep",,"Get-MgSitePage","Get-MgSitePage" +"GET","/sites/{param}/pages/{param}/createdByUser","keep",,"Get-MgSitePageCreatedByUser","Get-MgSitePageCreatedByUser" +"GET","/sites/{param}/pages/{param}/createdByUser/mailboxSettings","keep",,"Get-MgSitePageCreatedByUserMailboxSetting","Get-MgSitePageCreatedByUserMailboxSetting" +"GET","/sites/{param}/pages/{param}/createdByUser/serviceProvisioningErrors","keep",,"Get-MgSitePageCreatedByUserServiceProvisioningError","Get-MgSitePageCreatedByUserServiceProvisioningError" +"GET","/sites/{param}/pages/{param}/createdByUser/serviceProvisioningErrors/$count","keep",,"Get-MgSitePageCreatedByUserServiceProvisioningErrorCount","Get-MgSitePageCreatedByUserServiceProvisioningErrorCount" +"GET","/sites/{param}/pages/{param}/lastModifiedByUser","keep",,"Get-MgSitePageLastModifiedByUser","Get-MgSitePageLastModifiedByUser" +"GET","/sites/{param}/pages/{param}/lastModifiedByUser/mailboxSettings","keep",,"Get-MgSitePageLastModifiedByUserMailboxSetting","Get-MgSitePageLastModifiedByUserMailboxSetting" +"GET","/sites/{param}/pages/{param}/lastModifiedByUser/serviceProvisioningErrors","keep",,"Get-MgSitePageLastModifiedByUserServiceProvisioningError","Get-MgSitePageLastModifiedByUserServiceProvisioningError" +"GET","/sites/{param}/pages/{param}/lastModifiedByUser/serviceProvisioningErrors/$count","keep",,"Get-MgSitePageLastModifiedByUserServiceProvisioningErrorCount","Get-MgSitePageLastModifiedByUserServiceProvisioningErrorCount" +"GET","/sites/{param}/pages/$count","keep",,"Get-MgSitePageCount","Get-MgSitePageCount" +"GET","/sites/{param}/permissions","keep",,"Get-MgSitePermission","Get-MgSitePermission" +"GET","/sites/{param}/permissions/{param}","keep",,"Get-MgSitePermission","Get-MgSitePermission" +"GET","/sites/{param}/permissions/$count","keep",,"Get-MgSitePermissionCount","Get-MgSitePermissionCount" +"GET","/sites/{param}/sites","keep",,"Get-MgSubSite","Get-MgSubSite" +"GET","/sites/{param}/sites/{param}","keep",,"Get-MgSubSite","Get-MgSubSite" +"GET","/sites/{param}/sites/$count","rename","SubSiteCount","Get-MgSiteCount","Get-MgSubSiteCount" +"GET","/sites/{param}/termStore/groups","keep",,"Get-MgSiteTermStoreGroup","Get-MgSiteTermStoreGroup" +"GET","/sites/{param}/termStore/groups/{param}","keep",,"Get-MgSiteTermStoreGroup","Get-MgSiteTermStoreGroup" +"GET","/sites/{param}/termStore/groups/{param}/sets","keep",,"Get-MgSiteTermStoreGroupSet","Get-MgSiteTermStoreGroupSet" +"GET","/sites/{param}/termStore/groups/{param}/sets/{param}","keep",,"Get-MgSiteTermStoreGroupSet","Get-MgSiteTermStoreGroupSet" +"GET","/sites/{param}/termStore/groups/{param}/sets/{param}/children","keep",,"Get-MgSiteTermStoreGroupSetChild","Get-MgSiteTermStoreGroupSetChild" +"GET","/sites/{param}/termStore/groups/{param}/sets/{param}/children/{param}/children/{param}/relations","keep",,"Get-MgSiteTermStoreGroupSetChildRelation","Get-MgSiteTermStoreGroupSetChildRelation" +"GET","/sites/{param}/termStore/groups/{param}/sets/{param}/children/{param}/children/{param}/relations/{param}/fromTerm","keep",,"Get-MgSiteTermStoreGroupSetChildRelationFromTerm","Get-MgSiteTermStoreGroupSetChildRelationFromTerm" +"GET","/sites/{param}/termStore/groups/{param}/sets/{param}/children/{param}/children/{param}/relations/{param}/set","keep",,"Get-MgSiteTermStoreGroupSetChildRelationSet","Get-MgSiteTermStoreGroupSetChildRelationSet" +"GET","/sites/{param}/termStore/groups/{param}/sets/{param}/children/{param}/children/{param}/relations/{param}/toTerm","keep",,"Get-MgSiteTermStoreGroupSetChildRelationToTerm","Get-MgSiteTermStoreGroupSetChildRelationToTerm" +"GET","/sites/{param}/termStore/groups/{param}/sets/{param}/children/{param}/children/{param}/relations/$count","keep",,"Get-MgSiteTermStoreGroupSetChildRelationCount","Get-MgSiteTermStoreGroupSetChildRelationCount" +"GET","/sites/{param}/termStore/groups/{param}/sets/{param}/children/{param}/children/{param}/set","keep",,"Get-MgSiteTermStoreGroupSetChildSet","Get-MgSiteTermStoreGroupSetChildSet" +"GET","/sites/{param}/termStore/groups/{param}/sets/{param}/children/{param}/children/$count","keep",,"Get-MgSiteTermStoreGroupSetChildCount","Get-MgSiteTermStoreGroupSetChildCount" +"GET","/sites/{param}/termStore/groups/{param}/sets/{param}/parentGroup","keep",,"Get-MgSiteTermStoreGroupSetParentGroup","Get-MgSiteTermStoreGroupSetParentGroup" +"GET","/sites/{param}/termStore/groups/{param}/sets/{param}/relations","keep",,"Get-MgSiteTermStoreGroupSetRelation","Get-MgSiteTermStoreGroupSetRelation" +"GET","/sites/{param}/termStore/groups/{param}/sets/{param}/relations/{param}","keep",,"Get-MgSiteTermStoreGroupSetRelation","Get-MgSiteTermStoreGroupSetRelation" +"GET","/sites/{param}/termStore/groups/{param}/sets/{param}/relations/{param}/fromTerm","keep",,"Get-MgSiteTermStoreGroupSetRelationFromTerm","Get-MgSiteTermStoreGroupSetRelationFromTerm" +"GET","/sites/{param}/termStore/groups/{param}/sets/{param}/relations/{param}/set","keep",,"Get-MgSiteTermStoreGroupSetRelationSet","Get-MgSiteTermStoreGroupSetRelationSet" +"GET","/sites/{param}/termStore/groups/{param}/sets/{param}/relations/{param}/toTerm","keep",,"Get-MgSiteTermStoreGroupSetRelationToTerm","Get-MgSiteTermStoreGroupSetRelationToTerm" +"GET","/sites/{param}/termStore/groups/{param}/sets/{param}/relations/$count","keep",,"Get-MgSiteTermStoreGroupSetRelationCount","Get-MgSiteTermStoreGroupSetRelationCount" +"GET","/sites/{param}/termStore/groups/{param}/sets/{param}/terms","keep",,"Get-MgSiteTermStoreGroupSetTerm","Get-MgSiteTermStoreGroupSetTerm" +"GET","/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}","keep",,"Get-MgSiteTermStoreGroupSetTerm","Get-MgSiteTermStoreGroupSetTerm" +"GET","/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/children","keep",,"Get-MgSiteTermStoreGroupSetTermChild","Get-MgSiteTermStoreGroupSetTermChild" +"GET","/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/children/{param}","keep",,"Get-MgSiteTermStoreGroupSetTermChild","Get-MgSiteTermStoreGroupSetTermChild" +"GET","/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/children/{param}/relations","keep",,"Get-MgSiteTermStoreGroupSetTermChildRelation","Get-MgSiteTermStoreGroupSetTermChildRelation" +"GET","/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/children/{param}/relations/{param}","keep",,"Get-MgSiteTermStoreGroupSetTermChildRelation","Get-MgSiteTermStoreGroupSetTermChildRelation" +"GET","/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/children/{param}/relations/{param}/fromTerm","keep",,"Get-MgSiteTermStoreGroupSetTermChildRelationFromTerm","Get-MgSiteTermStoreGroupSetTermChildRelationFromTerm" +"GET","/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/children/{param}/relations/{param}/set","keep",,"Get-MgSiteTermStoreGroupSetTermChildRelationSet","Get-MgSiteTermStoreGroupSetTermChildRelationSet" +"GET","/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/children/{param}/relations/{param}/toTerm","keep",,"Get-MgSiteTermStoreGroupSetTermChildRelationToTerm","Get-MgSiteTermStoreGroupSetTermChildRelationToTerm" +"GET","/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/children/{param}/relations/$count","keep",,"Get-MgSiteTermStoreGroupSetTermChildRelationCount","Get-MgSiteTermStoreGroupSetTermChildRelationCount" +"GET","/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/children/{param}/set","keep",,"Get-MgSiteTermStoreGroupSetTermChildSet","Get-MgSiteTermStoreGroupSetTermChildSet" +"GET","/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/children/$count","keep",,"Get-MgSiteTermStoreGroupSetTermChildCount","Get-MgSiteTermStoreGroupSetTermChildCount" +"GET","/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/relations","keep",,"Get-MgSiteTermStoreGroupSetTermRelation","Get-MgSiteTermStoreGroupSetTermRelation" +"GET","/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/relations/{param}","keep",,"Get-MgSiteTermStoreGroupSetTermRelation","Get-MgSiteTermStoreGroupSetTermRelation" +"GET","/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/relations/{param}/fromTerm","keep",,"Get-MgSiteTermStoreGroupSetTermRelationFromTerm","Get-MgSiteTermStoreGroupSetTermRelationFromTerm" +"GET","/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/relations/{param}/set","keep",,"Get-MgSiteTermStoreGroupSetTermRelationSet","Get-MgSiteTermStoreGroupSetTermRelationSet" +"GET","/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/relations/{param}/toTerm","keep",,"Get-MgSiteTermStoreGroupSetTermRelationToTerm","Get-MgSiteTermStoreGroupSetTermRelationToTerm" +"GET","/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/relations/$count","keep",,"Get-MgSiteTermStoreGroupSetTermRelationCount","Get-MgSiteTermStoreGroupSetTermRelationCount" +"GET","/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/set","keep",,"Get-MgSiteTermStoreGroupSetTermSet","Get-MgSiteTermStoreGroupSetTermSet" +"GET","/sites/{param}/termStore/groups/{param}/sets/{param}/terms/$count","keep",,"Get-MgSiteTermStoreGroupSetTermCount","Get-MgSiteTermStoreGroupSetTermCount" +"GET","/sites/{param}/termStore/groups/{param}/sets/$count","keep",,"Get-MgSiteTermStoreGroupSetCount","Get-MgSiteTermStoreGroupSetCount" +"GET","/sites/{param}/termStore/groups/$count","keep",,"Get-MgSiteTermStoreGroupCount","Get-MgSiteTermStoreGroupCount" +"GET","/sites/{param}/termStore/sets","keep",,"Get-MgSiteTermStoreSet","Get-MgSiteTermStoreSet" +"GET","/sites/{param}/termStore/sets/{param}","keep",,"Get-MgSiteTermStoreSet","Get-MgSiteTermStoreSet" +"GET","/sites/{param}/termStore/sets/{param}/children","keep",,"Get-MgSiteTermStoreSetChild","Get-MgSiteTermStoreSetChild" +"GET","/sites/{param}/termStore/sets/{param}/children/{param}/children/{param}/relations","keep",,"Get-MgSiteTermStoreSetChildRelation","Get-MgSiteTermStoreSetChildRelation" +"GET","/sites/{param}/termStore/sets/{param}/children/{param}/children/{param}/relations/{param}/fromTerm","keep",,"Get-MgSiteTermStoreSetChildRelationFromTerm","Get-MgSiteTermStoreSetChildRelationFromTerm" +"GET","/sites/{param}/termStore/sets/{param}/children/{param}/children/{param}/relations/{param}/set","keep",,"Get-MgSiteTermStoreSetChildRelationSet","Get-MgSiteTermStoreSetChildRelationSet" +"GET","/sites/{param}/termStore/sets/{param}/children/{param}/children/{param}/relations/{param}/toTerm","keep",,"Get-MgSiteTermStoreSetChildRelationToTerm","Get-MgSiteTermStoreSetChildRelationToTerm" +"GET","/sites/{param}/termStore/sets/{param}/children/{param}/children/{param}/relations/$count","keep",,"Get-MgSiteTermStoreSetChildRelationCount","Get-MgSiteTermStoreSetChildRelationCount" +"GET","/sites/{param}/termStore/sets/{param}/children/{param}/children/{param}/set","keep",,"Get-MgSiteTermStoreSetChildSet","Get-MgSiteTermStoreSetChildSet" +"GET","/sites/{param}/termStore/sets/{param}/children/{param}/children/$count","keep",,"Get-MgSiteTermStoreSetChildCount","Get-MgSiteTermStoreSetChildCount" +"GET","/sites/{param}/termStore/sets/{param}/parentGroup","keep",,"Get-MgSiteTermStoreSetParentGroup","Get-MgSiteTermStoreSetParentGroup" +"GET","/sites/{param}/termStore/sets/{param}/parentGroup/sets","keep",,"Get-MgSiteTermStoreSetParentGroupSet","Get-MgSiteTermStoreSetParentGroupSet" +"GET","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}","keep",,"Get-MgSiteTermStoreSetParentGroupSet","Get-MgSiteTermStoreSetParentGroupSet" +"GET","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/children","keep",,"Get-MgSiteTermStoreSetParentGroupSetChild","Get-MgSiteTermStoreSetParentGroupSetChild" +"GET","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/children/{param}/children/{param}/relations","keep",,"Get-MgSiteTermStoreSetParentGroupSetChildRelation","Get-MgSiteTermStoreSetParentGroupSetChildRelation" +"GET","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/children/{param}/children/{param}/relations/{param}/fromTerm","keep",,"Get-MgSiteTermStoreSetParentGroupSetChildRelationFromTerm","Get-MgSiteTermStoreSetParentGroupSetChildRelationFromTerm" +"GET","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/children/{param}/children/{param}/relations/{param}/set","keep",,"Get-MgSiteTermStoreSetParentGroupSetChildRelationSet","Get-MgSiteTermStoreSetParentGroupSetChildRelationSet" +"GET","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/children/{param}/children/{param}/relations/{param}/toTerm","keep",,"Get-MgSiteTermStoreSetParentGroupSetChildRelationToTerm","Get-MgSiteTermStoreSetParentGroupSetChildRelationToTerm" +"GET","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/children/{param}/children/{param}/relations/$count","keep",,"Get-MgSiteTermStoreSetParentGroupSetChildRelationCount","Get-MgSiteTermStoreSetParentGroupSetChildRelationCount" +"GET","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/children/{param}/children/{param}/set","keep",,"Get-MgSiteTermStoreSetParentGroupSetChildSet","Get-MgSiteTermStoreSetParentGroupSetChildSet" +"GET","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/children/{param}/children/$count","keep",,"Get-MgSiteTermStoreSetParentGroupSetChildCount","Get-MgSiteTermStoreSetParentGroupSetChildCount" +"GET","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/relations","keep",,"Get-MgSiteTermStoreSetParentGroupSetRelation","Get-MgSiteTermStoreSetParentGroupSetRelation" +"GET","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/relations/{param}","keep",,"Get-MgSiteTermStoreSetParentGroupSetRelation","Get-MgSiteTermStoreSetParentGroupSetRelation" +"GET","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/relations/{param}/fromTerm","keep",,"Get-MgSiteTermStoreSetParentGroupSetRelationFromTerm","Get-MgSiteTermStoreSetParentGroupSetRelationFromTerm" +"GET","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/relations/{param}/set","keep",,"Get-MgSiteTermStoreSetParentGroupSetRelationSet","Get-MgSiteTermStoreSetParentGroupSetRelationSet" +"GET","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/relations/{param}/toTerm","keep",,"Get-MgSiteTermStoreSetParentGroupSetRelationToTerm","Get-MgSiteTermStoreSetParentGroupSetRelationToTerm" +"GET","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/relations/$count","keep",,"Get-MgSiteTermStoreSetParentGroupSetRelationCount","Get-MgSiteTermStoreSetParentGroupSetRelationCount" +"GET","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms","keep",,"Get-MgSiteTermStoreSetParentGroupSetTerm","Get-MgSiteTermStoreSetParentGroupSetTerm" +"GET","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}","keep",,"Get-MgSiteTermStoreSetParentGroupSetTerm","Get-MgSiteTermStoreSetParentGroupSetTerm" +"GET","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/children","keep",,"Get-MgSiteTermStoreSetParentGroupSetTermChild","Get-MgSiteTermStoreSetParentGroupSetTermChild" +"GET","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/children/{param}","keep",,"Get-MgSiteTermStoreSetParentGroupSetTermChild","Get-MgSiteTermStoreSetParentGroupSetTermChild" +"GET","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/children/{param}/relations","keep",,"Get-MgSiteTermStoreSetParentGroupSetTermChildRelation","Get-MgSiteTermStoreSetParentGroupSetTermChildRelation" +"GET","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/children/{param}/relations/{param}","keep",,"Get-MgSiteTermStoreSetParentGroupSetTermChildRelation","Get-MgSiteTermStoreSetParentGroupSetTermChildRelation" +"GET","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/children/{param}/relations/{param}/fromTerm","keep",,"Get-MgSiteTermStoreSetParentGroupSetTermChildRelationFromTerm","Get-MgSiteTermStoreSetParentGroupSetTermChildRelationFromTerm" +"GET","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/children/{param}/relations/{param}/set","keep",,"Get-MgSiteTermStoreSetParentGroupSetTermChildRelationSet","Get-MgSiteTermStoreSetParentGroupSetTermChildRelationSet" +"GET","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/children/{param}/relations/{param}/toTerm","keep",,"Get-MgSiteTermStoreSetParentGroupSetTermChildRelationToTerm","Get-MgSiteTermStoreSetParentGroupSetTermChildRelationToTerm" +"GET","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/children/{param}/relations/$count","keep",,"Get-MgSiteTermStoreSetParentGroupSetTermChildRelationCount","Get-MgSiteTermStoreSetParentGroupSetTermChildRelationCount" +"GET","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/children/{param}/set","keep",,"Get-MgSiteTermStoreSetParentGroupSetTermChildSet","Get-MgSiteTermStoreSetParentGroupSetTermChildSet" +"GET","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/children/$count","keep",,"Get-MgSiteTermStoreSetParentGroupSetTermChildCount","Get-MgSiteTermStoreSetParentGroupSetTermChildCount" +"GET","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/relations","keep",,"Get-MgSiteTermStoreSetParentGroupSetTermRelation","Get-MgSiteTermStoreSetParentGroupSetTermRelation" +"GET","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/relations/{param}","keep",,"Get-MgSiteTermStoreSetParentGroupSetTermRelation","Get-MgSiteTermStoreSetParentGroupSetTermRelation" +"GET","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/relations/{param}/fromTerm","keep",,"Get-MgSiteTermStoreSetParentGroupSetTermRelationFromTerm","Get-MgSiteTermStoreSetParentGroupSetTermRelationFromTerm" +"GET","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/relations/{param}/set","keep",,"Get-MgSiteTermStoreSetParentGroupSetTermRelationSet","Get-MgSiteTermStoreSetParentGroupSetTermRelationSet" +"GET","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/relations/{param}/toTerm","keep",,"Get-MgSiteTermStoreSetParentGroupSetTermRelationToTerm","Get-MgSiteTermStoreSetParentGroupSetTermRelationToTerm" +"GET","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/relations/$count","keep",,"Get-MgSiteTermStoreSetParentGroupSetTermRelationCount","Get-MgSiteTermStoreSetParentGroupSetTermRelationCount" +"GET","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/set","keep",,"Get-MgSiteTermStoreSetParentGroupSetTermSet","Get-MgSiteTermStoreSetParentGroupSetTermSet" +"GET","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/$count","keep",,"Get-MgSiteTermStoreSetParentGroupSetTermCount","Get-MgSiteTermStoreSetParentGroupSetTermCount" +"GET","/sites/{param}/termStore/sets/{param}/parentGroup/sets/$count","keep",,"Get-MgSiteTermStoreSetParentGroupSetCount","Get-MgSiteTermStoreSetParentGroupSetCount" +"GET","/sites/{param}/termStore/sets/{param}/relations","keep",,"Get-MgSiteTermStoreSetRelation","Get-MgSiteTermStoreSetRelation" +"GET","/sites/{param}/termStore/sets/{param}/relations/{param}","keep",,"Get-MgSiteTermStoreSetRelation","Get-MgSiteTermStoreSetRelation" +"GET","/sites/{param}/termStore/sets/{param}/relations/{param}/fromTerm","keep",,"Get-MgSiteTermStoreSetRelationFromTerm","Get-MgSiteTermStoreSetRelationFromTerm" +"GET","/sites/{param}/termStore/sets/{param}/relations/{param}/set","keep",,"Get-MgSiteTermStoreSetRelationSet","Get-MgSiteTermStoreSetRelationSet" +"GET","/sites/{param}/termStore/sets/{param}/relations/{param}/toTerm","keep",,"Get-MgSiteTermStoreSetRelationToTerm","Get-MgSiteTermStoreSetRelationToTerm" +"GET","/sites/{param}/termStore/sets/{param}/relations/$count","keep",,"Get-MgSiteTermStoreSetRelationCount","Get-MgSiteTermStoreSetRelationCount" +"GET","/sites/{param}/termStore/sets/{param}/terms","keep",,"Get-MgSiteTermStoreSetTerm","Get-MgSiteTermStoreSetTerm" +"GET","/sites/{param}/termStore/sets/{param}/terms/{param}","keep",,"Get-MgSiteTermStoreSetTerm","Get-MgSiteTermStoreSetTerm" +"GET","/sites/{param}/termStore/sets/{param}/terms/{param}/children","keep",,"Get-MgSiteTermStoreSetTermChild","Get-MgSiteTermStoreSetTermChild" +"GET","/sites/{param}/termStore/sets/{param}/terms/{param}/children/{param}","keep",,"Get-MgSiteTermStoreSetTermChild","Get-MgSiteTermStoreSetTermChild" +"GET","/sites/{param}/termStore/sets/{param}/terms/{param}/children/{param}/relations","keep",,"Get-MgSiteTermStoreSetTermChildRelation","Get-MgSiteTermStoreSetTermChildRelation" +"GET","/sites/{param}/termStore/sets/{param}/terms/{param}/children/{param}/relations/{param}","keep",,"Get-MgSiteTermStoreSetTermChildRelation","Get-MgSiteTermStoreSetTermChildRelation" +"GET","/sites/{param}/termStore/sets/{param}/terms/{param}/children/{param}/relations/{param}/fromTerm","keep",,"Get-MgSiteTermStoreSetTermChildRelationFromTerm","Get-MgSiteTermStoreSetTermChildRelationFromTerm" +"GET","/sites/{param}/termStore/sets/{param}/terms/{param}/children/{param}/relations/{param}/set","keep",,"Get-MgSiteTermStoreSetTermChildRelationSet","Get-MgSiteTermStoreSetTermChildRelationSet" +"GET","/sites/{param}/termStore/sets/{param}/terms/{param}/children/{param}/relations/{param}/toTerm","keep",,"Get-MgSiteTermStoreSetTermChildRelationToTerm","Get-MgSiteTermStoreSetTermChildRelationToTerm" +"GET","/sites/{param}/termStore/sets/{param}/terms/{param}/children/{param}/relations/$count","keep",,"Get-MgSiteTermStoreSetTermChildRelationCount","Get-MgSiteTermStoreSetTermChildRelationCount" +"GET","/sites/{param}/termStore/sets/{param}/terms/{param}/children/{param}/set","keep",,"Get-MgSiteTermStoreSetTermChildSet","Get-MgSiteTermStoreSetTermChildSet" +"GET","/sites/{param}/termStore/sets/{param}/terms/{param}/children/$count","keep",,"Get-MgSiteTermStoreSetTermChildCount","Get-MgSiteTermStoreSetTermChildCount" +"GET","/sites/{param}/termStore/sets/{param}/terms/{param}/relations","keep",,"Get-MgSiteTermStoreSetTermRelation","Get-MgSiteTermStoreSetTermRelation" +"GET","/sites/{param}/termStore/sets/{param}/terms/{param}/relations/{param}","keep",,"Get-MgSiteTermStoreSetTermRelation","Get-MgSiteTermStoreSetTermRelation" +"GET","/sites/{param}/termStore/sets/{param}/terms/{param}/relations/{param}/fromTerm","keep",,"Get-MgSiteTermStoreSetTermRelationFromTerm","Get-MgSiteTermStoreSetTermRelationFromTerm" +"GET","/sites/{param}/termStore/sets/{param}/terms/{param}/relations/{param}/set","keep",,"Get-MgSiteTermStoreSetTermRelationSet","Get-MgSiteTermStoreSetTermRelationSet" +"GET","/sites/{param}/termStore/sets/{param}/terms/{param}/relations/{param}/toTerm","keep",,"Get-MgSiteTermStoreSetTermRelationToTerm","Get-MgSiteTermStoreSetTermRelationToTerm" +"GET","/sites/{param}/termStore/sets/{param}/terms/{param}/relations/$count","keep",,"Get-MgSiteTermStoreSetTermRelationCount","Get-MgSiteTermStoreSetTermRelationCount" +"GET","/sites/{param}/termStore/sets/{param}/terms/{param}/set","keep",,"Get-MgSiteTermStoreSetTermSet","Get-MgSiteTermStoreSetTermSet" +"GET","/sites/{param}/termStore/sets/{param}/terms/$count","keep",,"Get-MgSiteTermStoreSetTermCount","Get-MgSiteTermStoreSetTermCount" +"GET","/sites/{param}/termStore/sets/$count","keep",,"Get-MgSiteTermStoreSetCount","Get-MgSiteTermStoreSetCount" +"GET","/sites/{param}/termStores","keep",,"Get-MgSiteTermStore","Get-MgSiteTermStore" +"GET","/sites/{param}/termStores/$count","keep",,"Get-MgSiteTermStoreCount","Get-MgSiteTermStoreCount" +"GET","/sites/delta","keep",,"Get-MgSiteDelta","Get-MgSiteDelta" +"GET","/sites/getAllSites","rename","AllSite","Get-MgSiteGetAllSites","Get-MgAllSite" +"GET","/solutions/backupRestore","keep",,"Get-MgSolutionBackupRestore","Get-MgSolutionBackupRestore" +"GET","/solutions/backupRestore/browseSessions","keep",,"Get-MgSolutionBackupRestoreBrowseSession","Get-MgSolutionBackupRestoreBrowseSession" +"GET","/solutions/backupRestore/browseSessions/{param}","keep",,"Get-MgSolutionBackupRestoreBrowseSession","Get-MgSolutionBackupRestoreBrowseSession" +"GET","/solutions/backupRestore/browseSessions/$count","keep",,"Get-MgSolutionBackupRestoreBrowseSessionCount","Get-MgSolutionBackupRestoreBrowseSessionCount" +"GET","/solutions/backupRestore/driveInclusionRules","keep",,"Get-MgSolutionBackupRestoreDriveInclusionRule","Get-MgSolutionBackupRestoreDriveInclusionRule" +"GET","/solutions/backupRestore/driveInclusionRules/{param}","keep",,"Get-MgSolutionBackupRestoreDriveInclusionRule","Get-MgSolutionBackupRestoreDriveInclusionRule" +"GET","/solutions/backupRestore/driveInclusionRules/$count","keep",,"Get-MgSolutionBackupRestoreDriveInclusionRuleCount","Get-MgSolutionBackupRestoreDriveInclusionRuleCount" +"GET","/solutions/backupRestore/driveProtectionUnits","keep",,"Get-MgSolutionBackupRestoreDriveProtectionUnit","Get-MgSolutionBackupRestoreDriveProtectionUnit" +"GET","/solutions/backupRestore/driveProtectionUnits/{param}","keep",,"Get-MgSolutionBackupRestoreDriveProtectionUnit","Get-MgSolutionBackupRestoreDriveProtectionUnit" +"GET","/solutions/backupRestore/driveProtectionUnits/$count","keep",,"Get-MgSolutionBackupRestoreDriveProtectionUnitCount","Get-MgSolutionBackupRestoreDriveProtectionUnitCount" +"GET","/solutions/backupRestore/driveProtectionUnitsBulkAdditionJobs","keep",,"Get-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob","Get-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob" +"GET","/solutions/backupRestore/driveProtectionUnitsBulkAdditionJobs/{param}","keep",,"Get-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob","Get-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob" +"GET","/solutions/backupRestore/driveProtectionUnitsBulkAdditionJobs/$count","keep",,"Get-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJobCount","Get-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJobCount" +"GET","/solutions/backupRestore/emailNotificationsSetting","keep",,"Get-MgSolutionBackupRestoreEmailNotificationSetting","Get-MgSolutionBackupRestoreEmailNotificationSetting" +"GET","/solutions/backupRestore/exchangeProtectionPolicies","keep",,"Get-MgSolutionBackupRestoreExchangeProtectionPolicy","Get-MgSolutionBackupRestoreExchangeProtectionPolicy" +"GET","/solutions/backupRestore/exchangeProtectionPolicies/{param}","keep",,"Get-MgSolutionBackupRestoreExchangeProtectionPolicy","Get-MgSolutionBackupRestoreExchangeProtectionPolicy" +"GET","/solutions/backupRestore/exchangeProtectionPolicies/{param}/mailboxInclusionRules","keep",,"Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxInclusionRule","Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxInclusionRule" +"GET","/solutions/backupRestore/exchangeProtectionPolicies/{param}/mailboxInclusionRules/{param}","keep",,"Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxInclusionRule","Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxInclusionRule" +"GET","/solutions/backupRestore/exchangeProtectionPolicies/{param}/mailboxInclusionRules/$count","keep",,"Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxInclusionRuleCount","Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxInclusionRuleCount" +"GET","/solutions/backupRestore/exchangeProtectionPolicies/{param}/mailboxProtectionUnits","keep",,"Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnit","Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnit" +"GET","/solutions/backupRestore/exchangeProtectionPolicies/{param}/mailboxProtectionUnits/{param}","keep",,"Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnit","Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnit" +"GET","/solutions/backupRestore/exchangeProtectionPolicies/{param}/mailboxProtectionUnits/$count","keep",,"Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitCount","Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitCount" +"GET","/solutions/backupRestore/exchangeProtectionPolicies/{param}/mailboxProtectionUnitsBulkAdditionJobs","keep",,"Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitBulkAdditionJob","Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitBulkAdditionJob" +"GET","/solutions/backupRestore/exchangeProtectionPolicies/{param}/mailboxProtectionUnitsBulkAdditionJobs/{param}","keep",,"Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitBulkAdditionJob","Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitBulkAdditionJob" +"GET","/solutions/backupRestore/exchangeProtectionPolicies/{param}/mailboxProtectionUnitsBulkAdditionJobs/$count","keep",,"Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitBulkAdditionJobCount","Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitBulkAdditionJobCount" +"GET","/solutions/backupRestore/exchangeProtectionPolicies/$count","keep",,"Get-MgSolutionBackupRestoreExchangeProtectionPolicyCount","Get-MgSolutionBackupRestoreExchangeProtectionPolicyCount" +"GET","/solutions/backupRestore/exchangeRestoreSessions","keep",,"Get-MgSolutionBackupRestoreExchangeRestoreSession","Get-MgSolutionBackupRestoreExchangeRestoreSession" +"GET","/solutions/backupRestore/exchangeRestoreSessions/{param}","keep",,"Get-MgSolutionBackupRestoreExchangeRestoreSession","Get-MgSolutionBackupRestoreExchangeRestoreSession" +"GET","/solutions/backupRestore/exchangeRestoreSessions/{param}/granularMailboxRestoreArtifacts","keep",,"Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact","Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact" +"GET","/solutions/backupRestore/exchangeRestoreSessions/{param}/granularMailboxRestoreArtifacts/{param}","keep",,"Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact","Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact" +"GET","/solutions/backupRestore/exchangeRestoreSessions/{param}/granularMailboxRestoreArtifacts/{param}/restorePoint","keep",,"Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifactRestorePoint","Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifactRestorePoint" +"GET","/solutions/backupRestore/exchangeRestoreSessions/{param}/granularMailboxRestoreArtifacts/$count","keep",,"Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifactCount","Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifactCount" +"GET","/solutions/backupRestore/exchangeRestoreSessions/{param}/mailboxRestoreArtifacts","keep",,"Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact","Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact" +"GET","/solutions/backupRestore/exchangeRestoreSessions/{param}/mailboxRestoreArtifacts/{param}","keep",,"Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact","Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact" +"GET","/solutions/backupRestore/exchangeRestoreSessions/{param}/mailboxRestoreArtifacts/{param}/restorePoint","keep",,"Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactRestorePoint","Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactRestorePoint" +"GET","/solutions/backupRestore/exchangeRestoreSessions/{param}/mailboxRestoreArtifacts/$count","keep",,"Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactCount","Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactCount" +"GET","/solutions/backupRestore/exchangeRestoreSessions/{param}/mailboxRestoreArtifactsBulkAdditionRequests","keep",,"Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest","Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest" +"GET","/solutions/backupRestore/exchangeRestoreSessions/{param}/mailboxRestoreArtifactsBulkAdditionRequests/{param}","keep",,"Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest","Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest" +"GET","/solutions/backupRestore/exchangeRestoreSessions/{param}/mailboxRestoreArtifactsBulkAdditionRequests/$count","keep",,"Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequestCount","Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequestCount" +"GET","/solutions/backupRestore/exchangeRestoreSessions/$count","keep",,"Get-MgSolutionBackupRestoreExchangeRestoreSessionCount","Get-MgSolutionBackupRestoreExchangeRestoreSessionCount" +"GET","/solutions/backupRestore/mailboxInclusionRules","keep",,"Get-MgSolutionBackupRestoreMailboxInclusionRule","Get-MgSolutionBackupRestoreMailboxInclusionRule" +"GET","/solutions/backupRestore/mailboxInclusionRules/{param}","keep",,"Get-MgSolutionBackupRestoreMailboxInclusionRule","Get-MgSolutionBackupRestoreMailboxInclusionRule" +"GET","/solutions/backupRestore/mailboxInclusionRules/$count","keep",,"Get-MgSolutionBackupRestoreMailboxInclusionRuleCount","Get-MgSolutionBackupRestoreMailboxInclusionRuleCount" +"GET","/solutions/backupRestore/mailboxProtectionUnits","keep",,"Get-MgSolutionBackupRestoreMailboxProtectionUnit","Get-MgSolutionBackupRestoreMailboxProtectionUnit" +"GET","/solutions/backupRestore/mailboxProtectionUnits/{param}","keep",,"Get-MgSolutionBackupRestoreMailboxProtectionUnit","Get-MgSolutionBackupRestoreMailboxProtectionUnit" +"GET","/solutions/backupRestore/mailboxProtectionUnits/$count","keep",,"Get-MgSolutionBackupRestoreMailboxProtectionUnitCount","Get-MgSolutionBackupRestoreMailboxProtectionUnitCount" +"GET","/solutions/backupRestore/mailboxProtectionUnitsBulkAdditionJobs","keep",,"Get-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob","Get-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob" +"GET","/solutions/backupRestore/mailboxProtectionUnitsBulkAdditionJobs/{param}","keep",,"Get-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob","Get-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob" +"GET","/solutions/backupRestore/mailboxProtectionUnitsBulkAdditionJobs/$count","keep",,"Get-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJobCount","Get-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJobCount" +"GET","/solutions/backupRestore/oneDriveForBusinessBrowseSessions","keep",,"Get-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession","Get-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession" +"GET","/solutions/backupRestore/oneDriveForBusinessBrowseSessions/{param}","keep",,"Get-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession","Get-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession" +"GET","/solutions/backupRestore/oneDriveForBusinessBrowseSessions/$count","keep",,"Get-MgSolutionBackupRestoreOneDriveForBusinessBrowseSessionCount","Get-MgSolutionBackupRestoreOneDriveForBusinessBrowseSessionCount" +"GET","/solutions/backupRestore/oneDriveForBusinessProtectionPolicies","keep",,"Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy","Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy" +"GET","/solutions/backupRestore/oneDriveForBusinessProtectionPolicies/{param}","keep",,"Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy","Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy" +"GET","/solutions/backupRestore/oneDriveForBusinessProtectionPolicies/{param}/driveInclusionRules","keep",,"Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveInclusionRule","Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveInclusionRule" +"GET","/solutions/backupRestore/oneDriveForBusinessProtectionPolicies/{param}/driveInclusionRules/{param}","keep",,"Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveInclusionRule","Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveInclusionRule" +"GET","/solutions/backupRestore/oneDriveForBusinessProtectionPolicies/{param}/driveInclusionRules/$count","keep",,"Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveInclusionRuleCount","Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveInclusionRuleCount" +"GET","/solutions/backupRestore/oneDriveForBusinessProtectionPolicies/{param}/driveProtectionUnits","keep",,"Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnit","Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnit" +"GET","/solutions/backupRestore/oneDriveForBusinessProtectionPolicies/{param}/driveProtectionUnits/{param}","keep",,"Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnit","Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnit" +"GET","/solutions/backupRestore/oneDriveForBusinessProtectionPolicies/{param}/driveProtectionUnits/$count","keep",,"Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitCount","Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitCount" +"GET","/solutions/backupRestore/oneDriveForBusinessProtectionPolicies/{param}/driveProtectionUnitsBulkAdditionJobs","keep",,"Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitBulkAdditionJob","Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitBulkAdditionJob" +"GET","/solutions/backupRestore/oneDriveForBusinessProtectionPolicies/{param}/driveProtectionUnitsBulkAdditionJobs/{param}","keep",,"Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitBulkAdditionJob","Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitBulkAdditionJob" +"GET","/solutions/backupRestore/oneDriveForBusinessProtectionPolicies/{param}/driveProtectionUnitsBulkAdditionJobs/$count","keep",,"Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitBulkAdditionJobCount","Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitBulkAdditionJobCount" +"GET","/solutions/backupRestore/oneDriveForBusinessProtectionPolicies/$count","keep",,"Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyCount","Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyCount" +"GET","/solutions/backupRestore/oneDriveForBusinessRestoreSessions","keep",,"Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession","Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession" +"GET","/solutions/backupRestore/oneDriveForBusinessRestoreSessions/{param}","keep",,"Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession","Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession" +"GET","/solutions/backupRestore/oneDriveForBusinessRestoreSessions/{param}/driveRestoreArtifacts","keep",,"Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact","Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact" +"GET","/solutions/backupRestore/oneDriveForBusinessRestoreSessions/{param}/driveRestoreArtifacts/{param}","keep",,"Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact","Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact" +"GET","/solutions/backupRestore/oneDriveForBusinessRestoreSessions/{param}/driveRestoreArtifacts/{param}/restorePoint","keep",,"Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactRestorePoint","Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactRestorePoint" +"GET","/solutions/backupRestore/oneDriveForBusinessRestoreSessions/{param}/driveRestoreArtifacts/$count","keep",,"Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactCount","Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactCount" +"GET","/solutions/backupRestore/oneDriveForBusinessRestoreSessions/{param}/driveRestoreArtifactsBulkAdditionRequests","keep",,"Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest","Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest" +"GET","/solutions/backupRestore/oneDriveForBusinessRestoreSessions/{param}/driveRestoreArtifactsBulkAdditionRequests/{param}","keep",,"Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest","Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest" +"GET","/solutions/backupRestore/oneDriveForBusinessRestoreSessions/{param}/driveRestoreArtifactsBulkAdditionRequests/$count","keep",,"Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequestCount","Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequestCount" +"GET","/solutions/backupRestore/oneDriveForBusinessRestoreSessions/{param}/granularDriveRestoreArtifacts","keep",,"Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact","Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact" +"GET","/solutions/backupRestore/oneDriveForBusinessRestoreSessions/{param}/granularDriveRestoreArtifacts/{param}","keep",,"Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact","Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact" +"GET","/solutions/backupRestore/oneDriveForBusinessRestoreSessions/{param}/granularDriveRestoreArtifacts/$count","keep",,"Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifactCount","Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifactCount" +"GET","/solutions/backupRestore/oneDriveForBusinessRestoreSessions/$count","keep",,"Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionCount","Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionCount" +"GET","/solutions/backupRestore/protectionPolicies","keep",,"Get-MgSolutionBackupRestoreProtectionPolicy","Get-MgSolutionBackupRestoreProtectionPolicy" +"GET","/solutions/backupRestore/protectionPolicies/{param}","keep",,"Get-MgSolutionBackupRestoreProtectionPolicy","Get-MgSolutionBackupRestoreProtectionPolicy" +"GET","/solutions/backupRestore/protectionPolicies/$count","keep",,"Get-MgSolutionBackupRestoreProtectionPolicyCount","Get-MgSolutionBackupRestoreProtectionPolicyCount" +"GET","/solutions/backupRestore/protectionUnits","keep",,"Get-MgSolutionBackupRestoreProtectionUnit","Get-MgSolutionBackupRestoreProtectionUnit" +"GET","/solutions/backupRestore/protectionUnits/{param}","keep",,"Get-MgSolutionBackupRestoreProtectionUnit","Get-MgSolutionBackupRestoreProtectionUnit" +"GET","/solutions/backupRestore/protectionUnits/$count","keep",,"Get-MgSolutionBackupRestoreProtectionUnitCount","Get-MgSolutionBackupRestoreProtectionUnitCount" +"GET","/solutions/backupRestore/restorePoints","keep",,"Get-MgSolutionBackupRestorePoint","Get-MgSolutionBackupRestorePoint" +"GET","/solutions/backupRestore/restorePoints/{param}","keep",,"Get-MgSolutionBackupRestorePoint","Get-MgSolutionBackupRestorePoint" +"GET","/solutions/backupRestore/restorePoints/{param}/protectionUnit","keep",,"Get-MgSolutionBackupRestorePointProtectionUnit","Get-MgSolutionBackupRestorePointProtectionUnit" +"GET","/solutions/backupRestore/restorePoints/$count","keep",,"Get-MgSolutionBackupRestorePointCount","Get-MgSolutionBackupRestorePointCount" +"GET","/solutions/backupRestore/restoreSessions","keep",,"Get-MgSolutionBackupRestoreSession","Get-MgSolutionBackupRestoreSession" +"GET","/solutions/backupRestore/restoreSessions/{param}","keep",,"Get-MgSolutionBackupRestoreSession","Get-MgSolutionBackupRestoreSession" +"GET","/solutions/backupRestore/restoreSessions/$count","keep",,"Get-MgSolutionBackupRestoreSessionCount","Get-MgSolutionBackupRestoreSessionCount" +"GET","/solutions/backupRestore/serviceApps","keep",,"Get-MgSolutionBackupRestoreServiceApp","Get-MgSolutionBackupRestoreServiceApp" +"GET","/solutions/backupRestore/serviceApps/{param}","keep",,"Get-MgSolutionBackupRestoreServiceApp","Get-MgSolutionBackupRestoreServiceApp" +"GET","/solutions/backupRestore/serviceApps/$count","keep",,"Get-MgSolutionBackupRestoreServiceAppCount","Get-MgSolutionBackupRestoreServiceAppCount" +"GET","/solutions/backupRestore/sharePointBrowseSessions","keep",,"Get-MgSolutionBackupRestoreSharePointBrowseSession","Get-MgSolutionBackupRestoreSharePointBrowseSession" +"GET","/solutions/backupRestore/sharePointBrowseSessions/{param}","keep",,"Get-MgSolutionBackupRestoreSharePointBrowseSession","Get-MgSolutionBackupRestoreSharePointBrowseSession" +"GET","/solutions/backupRestore/sharePointBrowseSessions/$count","keep",,"Get-MgSolutionBackupRestoreSharePointBrowseSessionCount","Get-MgSolutionBackupRestoreSharePointBrowseSessionCount" +"GET","/solutions/backupRestore/sharePointProtectionPolicies","keep",,"Get-MgSolutionBackupRestoreSharePointProtectionPolicy","Get-MgSolutionBackupRestoreSharePointProtectionPolicy" +"GET","/solutions/backupRestore/sharePointProtectionPolicies/{param}","keep",,"Get-MgSolutionBackupRestoreSharePointProtectionPolicy","Get-MgSolutionBackupRestoreSharePointProtectionPolicy" +"GET","/solutions/backupRestore/sharePointProtectionPolicies/{param}/siteInclusionRules","keep",,"Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteInclusionRule","Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteInclusionRule" +"GET","/solutions/backupRestore/sharePointProtectionPolicies/{param}/siteInclusionRules/{param}","keep",,"Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteInclusionRule","Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteInclusionRule" +"GET","/solutions/backupRestore/sharePointProtectionPolicies/{param}/siteInclusionRules/$count","keep",,"Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteInclusionRuleCount","Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteInclusionRuleCount" +"GET","/solutions/backupRestore/sharePointProtectionPolicies/{param}/siteProtectionUnits","keep",,"Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnit","Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnit" +"GET","/solutions/backupRestore/sharePointProtectionPolicies/{param}/siteProtectionUnits/{param}","keep",,"Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnit","Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnit" +"GET","/solutions/backupRestore/sharePointProtectionPolicies/{param}/siteProtectionUnits/$count","keep",,"Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitCount","Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitCount" +"GET","/solutions/backupRestore/sharePointProtectionPolicies/{param}/siteProtectionUnitsBulkAdditionJobs","keep",,"Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitBulkAdditionJob","Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitBulkAdditionJob" +"GET","/solutions/backupRestore/sharePointProtectionPolicies/{param}/siteProtectionUnitsBulkAdditionJobs/{param}","keep",,"Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitBulkAdditionJob","Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitBulkAdditionJob" +"GET","/solutions/backupRestore/sharePointProtectionPolicies/{param}/siteProtectionUnitsBulkAdditionJobs/$count","keep",,"Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitBulkAdditionJobCount","Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitBulkAdditionJobCount" +"GET","/solutions/backupRestore/sharePointProtectionPolicies/$count","keep",,"Get-MgSolutionBackupRestoreSharePointProtectionPolicyCount","Get-MgSolutionBackupRestoreSharePointProtectionPolicyCount" +"GET","/solutions/backupRestore/sharePointRestoreSessions","keep",,"Get-MgSolutionBackupRestoreSharePointRestoreSession","Get-MgSolutionBackupRestoreSharePointRestoreSession" +"GET","/solutions/backupRestore/sharePointRestoreSessions/{param}","keep",,"Get-MgSolutionBackupRestoreSharePointRestoreSession","Get-MgSolutionBackupRestoreSharePointRestoreSession" +"GET","/solutions/backupRestore/sharePointRestoreSessions/{param}/granularSiteRestoreArtifacts","keep",,"Get-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact","Get-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact" +"GET","/solutions/backupRestore/sharePointRestoreSessions/{param}/granularSiteRestoreArtifacts/{param}","keep",,"Get-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact","Get-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact" +"GET","/solutions/backupRestore/sharePointRestoreSessions/{param}/granularSiteRestoreArtifacts/$count","keep",,"Get-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifactCount","Get-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifactCount" +"GET","/solutions/backupRestore/sharePointRestoreSessions/{param}/siteRestoreArtifacts","keep",,"Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact","Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact" +"GET","/solutions/backupRestore/sharePointRestoreSessions/{param}/siteRestoreArtifacts/{param}","keep",,"Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact","Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact" +"GET","/solutions/backupRestore/sharePointRestoreSessions/{param}/siteRestoreArtifacts/{param}/restorePoint","keep",,"Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactRestorePoint","Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactRestorePoint" +"GET","/solutions/backupRestore/sharePointRestoreSessions/{param}/siteRestoreArtifacts/$count","keep",,"Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactCount","Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactCount" +"GET","/solutions/backupRestore/sharePointRestoreSessions/{param}/siteRestoreArtifactsBulkAdditionRequests","keep",,"Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest","Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest" +"GET","/solutions/backupRestore/sharePointRestoreSessions/{param}/siteRestoreArtifactsBulkAdditionRequests/{param}","keep",,"Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest","Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest" +"GET","/solutions/backupRestore/sharePointRestoreSessions/{param}/siteRestoreArtifactsBulkAdditionRequests/$count","keep",,"Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequestCount","Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequestCount" +"GET","/solutions/backupRestore/sharePointRestoreSessions/$count","keep",,"Get-MgSolutionBackupRestoreSharePointRestoreSessionCount","Get-MgSolutionBackupRestoreSharePointRestoreSessionCount" +"GET","/solutions/backupRestore/siteInclusionRules","keep",,"Get-MgSolutionBackupRestoreSiteInclusionRule","Get-MgSolutionBackupRestoreSiteInclusionRule" +"GET","/solutions/backupRestore/siteInclusionRules/{param}","keep",,"Get-MgSolutionBackupRestoreSiteInclusionRule","Get-MgSolutionBackupRestoreSiteInclusionRule" +"GET","/solutions/backupRestore/siteInclusionRules/$count","keep",,"Get-MgSolutionBackupRestoreSiteInclusionRuleCount","Get-MgSolutionBackupRestoreSiteInclusionRuleCount" +"GET","/solutions/backupRestore/siteProtectionUnits","keep",,"Get-MgSolutionBackupRestoreSiteProtectionUnit","Get-MgSolutionBackupRestoreSiteProtectionUnit" +"GET","/solutions/backupRestore/siteProtectionUnits/{param}","keep",,"Get-MgSolutionBackupRestoreSiteProtectionUnit","Get-MgSolutionBackupRestoreSiteProtectionUnit" +"GET","/solutions/backupRestore/siteProtectionUnits/$count","keep",,"Get-MgSolutionBackupRestoreSiteProtectionUnitCount","Get-MgSolutionBackupRestoreSiteProtectionUnitCount" +"GET","/solutions/backupRestore/siteProtectionUnitsBulkAdditionJobs","keep",,"Get-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob","Get-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob" +"GET","/solutions/backupRestore/siteProtectionUnitsBulkAdditionJobs/{param}","keep",,"Get-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob","Get-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob" +"GET","/solutions/backupRestore/siteProtectionUnitsBulkAdditionJobs/$count","keep",,"Get-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJobCount","Get-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJobCount" +"GET","/solutions/bookingBusinesses","keep",,"Get-MgBookingBusiness","Get-MgBookingBusiness" +"GET","/solutions/bookingBusinesses/{param}","keep",,"Get-MgBookingBusiness","Get-MgBookingBusiness" +"GET","/solutions/bookingBusinesses/{param}/appointments","keep",,"Get-MgBookingBusinessAppointment","Get-MgBookingBusinessAppointment" +"GET","/solutions/bookingBusinesses/{param}/appointments/{param}","keep",,"Get-MgBookingBusinessAppointment","Get-MgBookingBusinessAppointment" +"GET","/solutions/bookingBusinesses/{param}/appointments/$count","keep",,"Get-MgBookingBusinessAppointmentCount","Get-MgBookingBusinessAppointmentCount" +"GET","/solutions/bookingBusinesses/{param}/calendarView","keep",,"Get-MgBookingBusinessCalendarView","Get-MgBookingBusinessCalendarView" +"GET","/solutions/bookingBusinesses/{param}/calendarView/{param}","keep",,"Get-MgBookingBusinessCalendarView","Get-MgBookingBusinessCalendarView" +"GET","/solutions/bookingBusinesses/{param}/calendarView/$count","keep",,"Get-MgBookingBusinessCalendarViewCount","Get-MgBookingBusinessCalendarViewCount" +"GET","/solutions/bookingBusinesses/{param}/customers","keep",,"Get-MgBookingBusinessCustomer","Get-MgBookingBusinessCustomer" +"GET","/solutions/bookingBusinesses/{param}/customers/{param}","keep",,"Get-MgBookingBusinessCustomer","Get-MgBookingBusinessCustomer" +"GET","/solutions/bookingBusinesses/{param}/customers/$count","keep",,"Get-MgBookingBusinessCustomerCount","Get-MgBookingBusinessCustomerCount" +"GET","/solutions/bookingBusinesses/{param}/customQuestions","keep",,"Get-MgBookingBusinessCustomQuestion","Get-MgBookingBusinessCustomQuestion" +"GET","/solutions/bookingBusinesses/{param}/customQuestions/{param}","keep",,"Get-MgBookingBusinessCustomQuestion","Get-MgBookingBusinessCustomQuestion" +"GET","/solutions/bookingBusinesses/{param}/customQuestions/$count","keep",,"Get-MgBookingBusinessCustomQuestionCount","Get-MgBookingBusinessCustomQuestionCount" +"GET","/solutions/bookingBusinesses/{param}/services","keep",,"Get-MgBookingBusinessService","Get-MgBookingBusinessService" +"GET","/solutions/bookingBusinesses/{param}/services/{param}","keep",,"Get-MgBookingBusinessService","Get-MgBookingBusinessService" +"GET","/solutions/bookingBusinesses/{param}/services/$count","keep",,"Get-MgBookingBusinessServiceCount","Get-MgBookingBusinessServiceCount" +"GET","/solutions/bookingBusinesses/{param}/staffMembers","keep",,"Get-MgBookingBusinessStaffMember","Get-MgBookingBusinessStaffMember" +"GET","/solutions/bookingBusinesses/{param}/staffMembers/{param}","keep",,"Get-MgBookingBusinessStaffMember","Get-MgBookingBusinessStaffMember" +"GET","/solutions/bookingBusinesses/{param}/staffMembers/$count","keep",,"Get-MgBookingBusinessStaffMemberCount","Get-MgBookingBusinessStaffMemberCount" +"GET","/solutions/bookingBusinesses/$count","keep",,"Get-MgBookingBusinessCount","Get-MgBookingBusinessCount" +"GET","/solutions/bookingCurrencies","keep",,"Get-MgBookingCurrency","Get-MgBookingCurrency" +"GET","/solutions/bookingCurrencies/{param}","keep",,"Get-MgBookingCurrency","Get-MgBookingCurrency" +"GET","/solutions/bookingCurrencies/$count","keep",,"Get-MgBookingCurrencyCount","Get-MgBookingCurrencyCount" +"GET","/solutions/virtualEvents/events","keep",,"Get-MgVirtualEvent","Get-MgVirtualEvent" +"GET","/solutions/virtualEvents/events/{param}","keep",,"Get-MgVirtualEvent","Get-MgVirtualEvent" +"GET","/solutions/virtualEvents/events/{param}/presenters","keep",,"Get-MgVirtualEventPresenter","Get-MgVirtualEventPresenter" +"GET","/solutions/virtualEvents/events/{param}/presenters/{param}","keep",,"Get-MgVirtualEventPresenter","Get-MgVirtualEventPresenter" +"GET","/solutions/virtualEvents/events/{param}/presenters/$count","keep",,"Get-MgVirtualEventPresenterCount","Get-MgVirtualEventPresenterCount" +"GET","/solutions/virtualEvents/events/{param}/sessions","keep",,"Get-MgVirtualEventSession","Get-MgVirtualEventSession" +"GET","/solutions/virtualEvents/events/{param}/sessions/{param}","keep",,"Get-MgVirtualEventSession","Get-MgVirtualEventSession" +"GET","/solutions/virtualEvents/events/{param}/sessions/{param}/attendanceReports","keep",,"Get-MgVirtualEventSessionAttendanceReport","Get-MgVirtualEventSessionAttendanceReport" +"GET","/solutions/virtualEvents/events/{param}/sessions/{param}/attendanceReports/{param}","keep",,"Get-MgVirtualEventSessionAttendanceReport","Get-MgVirtualEventSessionAttendanceReport" +"GET","/solutions/virtualEvents/events/{param}/sessions/{param}/attendanceReports/{param}/attendanceRecords","keep",,"Get-MgVirtualEventSessionAttendanceReportAttendanceRecord","Get-MgVirtualEventSessionAttendanceReportAttendanceRecord" +"GET","/solutions/virtualEvents/events/{param}/sessions/{param}/attendanceReports/{param}/attendanceRecords/{param}","keep",,"Get-MgVirtualEventSessionAttendanceReportAttendanceRecord","Get-MgVirtualEventSessionAttendanceReportAttendanceRecord" +"GET","/solutions/virtualEvents/events/{param}/sessions/{param}/attendanceReports/{param}/attendanceRecords/$count","keep",,"Get-MgVirtualEventSessionAttendanceReportAttendanceRecordCount","Get-MgVirtualEventSessionAttendanceReportAttendanceRecordCount" +"GET","/solutions/virtualEvents/events/{param}/sessions/{param}/attendanceReports/$count","keep",,"Get-MgVirtualEventSessionAttendanceReportCount","Get-MgVirtualEventSessionAttendanceReportCount" +"GET","/solutions/virtualEvents/events/{param}/sessions/$count","keep",,"Get-MgVirtualEventSessionCount","Get-MgVirtualEventSessionCount" +"GET","/solutions/virtualEvents/events/$count","keep",,"Get-MgVirtualEventCount","Get-MgVirtualEventCount" +"GET","/solutions/virtualEvents/townhalls","keep",,"Get-MgVirtualEventTownhall","Get-MgVirtualEventTownhall" +"GET","/solutions/virtualEvents/townhalls/{param}","keep",,"Get-MgVirtualEventTownhall","Get-MgVirtualEventTownhall" +"GET","/solutions/virtualEvents/townhalls/{param}/presenters","keep",,"Get-MgVirtualEventTownhallPresenter","Get-MgVirtualEventTownhallPresenter" +"GET","/solutions/virtualEvents/townhalls/{param}/presenters/{param}","keep",,"Get-MgVirtualEventTownhallPresenter","Get-MgVirtualEventTownhallPresenter" +"GET","/solutions/virtualEvents/townhalls/{param}/presenters/$count","keep",,"Get-MgVirtualEventTownhallPresenterCount","Get-MgVirtualEventTownhallPresenterCount" +"GET","/solutions/virtualEvents/townhalls/{param}/sessions","keep",,"Get-MgVirtualEventTownhallSession","Get-MgVirtualEventTownhallSession" +"GET","/solutions/virtualEvents/townhalls/{param}/sessions/{param}","keep",,"Get-MgVirtualEventTownhallSession","Get-MgVirtualEventTownhallSession" +"GET","/solutions/virtualEvents/townhalls/{param}/sessions/{param}/attendanceReports","keep",,"Get-MgVirtualEventTownhallSessionAttendanceReport","Get-MgVirtualEventTownhallSessionAttendanceReport" +"GET","/solutions/virtualEvents/townhalls/{param}/sessions/{param}/attendanceReports/{param}","keep",,"Get-MgVirtualEventTownhallSessionAttendanceReport","Get-MgVirtualEventTownhallSessionAttendanceReport" +"GET","/solutions/virtualEvents/townhalls/{param}/sessions/{param}/attendanceReports/{param}/attendanceRecords","keep",,"Get-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord","Get-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord" +"GET","/solutions/virtualEvents/townhalls/{param}/sessions/{param}/attendanceReports/{param}/attendanceRecords/{param}","keep",,"Get-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord","Get-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord" +"GET","/solutions/virtualEvents/townhalls/{param}/sessions/{param}/attendanceReports/{param}/attendanceRecords/$count","keep",,"Get-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecordCount","Get-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecordCount" +"GET","/solutions/virtualEvents/townhalls/{param}/sessions/{param}/attendanceReports/$count","keep",,"Get-MgVirtualEventTownhallSessionAttendanceReportCount","Get-MgVirtualEventTownhallSessionAttendanceReportCount" +"GET","/solutions/virtualEvents/townhalls/{param}/sessions/$count","keep",,"Get-MgVirtualEventTownhallSessionCount","Get-MgVirtualEventTownhallSessionCount" +"GET","/solutions/virtualEvents/townhalls/$count","keep",,"Get-MgVirtualEventTownhallCount","Get-MgVirtualEventTownhallCount" +"GET","/solutions/virtualEvents/webinars","keep",,"Get-MgVirtualEventWebinar","Get-MgVirtualEventWebinar" +"GET","/solutions/virtualEvents/webinars/{param}","keep",,"Get-MgVirtualEventWebinar","Get-MgVirtualEventWebinar" +"GET","/solutions/virtualEvents/webinars/{param}/presenters","keep",,"Get-MgVirtualEventWebinarPresenter","Get-MgVirtualEventWebinarPresenter" +"GET","/solutions/virtualEvents/webinars/{param}/presenters/{param}","keep",,"Get-MgVirtualEventWebinarPresenter","Get-MgVirtualEventWebinarPresenter" +"GET","/solutions/virtualEvents/webinars/{param}/presenters/$count","keep",,"Get-MgVirtualEventWebinarPresenterCount","Get-MgVirtualEventWebinarPresenterCount" +"GET","/solutions/virtualEvents/webinars/{param}/registrationConfiguration","keep",,"Get-MgVirtualEventWebinarRegistrationConfiguration","Get-MgVirtualEventWebinarRegistrationConfiguration" +"GET","/solutions/virtualEvents/webinars/{param}/registrationConfiguration/questions","keep",,"Get-MgVirtualEventWebinarRegistrationConfigurationQuestion","Get-MgVirtualEventWebinarRegistrationConfigurationQuestion" +"GET","/solutions/virtualEvents/webinars/{param}/registrationConfiguration/questions/{param}","keep",,"Get-MgVirtualEventWebinarRegistrationConfigurationQuestion","Get-MgVirtualEventWebinarRegistrationConfigurationQuestion" +"GET","/solutions/virtualEvents/webinars/{param}/registrationConfiguration/questions/$count","keep",,"Get-MgVirtualEventWebinarRegistrationConfigurationQuestionCount","Get-MgVirtualEventWebinarRegistrationConfigurationQuestionCount" +"GET","/solutions/virtualEvents/webinars/{param}/registrations","keep",,"Get-MgVirtualEventWebinarRegistration","Get-MgVirtualEventWebinarRegistration" +"GET","/solutions/virtualEvents/webinars/{param}/registrations/{param}","keep",,"Get-MgVirtualEventWebinarRegistration","Get-MgVirtualEventWebinarRegistration" +"GET","/solutions/virtualEvents/webinars/{param}/registrations/{param}/sessions","keep",,"Get-MgVirtualEventWebinarRegistrationSession","Get-MgVirtualEventWebinarRegistrationSession" +"GET","/solutions/virtualEvents/webinars/{param}/registrations/{param}/sessions/{param}","keep",,"Get-MgVirtualEventWebinarRegistrationSession","Get-MgVirtualEventWebinarRegistrationSession" +"GET","/solutions/virtualEvents/webinars/{param}/registrations/{param}/sessions/$count","keep",,"Get-MgVirtualEventWebinarRegistrationSessionCount","Get-MgVirtualEventWebinarRegistrationSessionCount" +"GET","/solutions/virtualEvents/webinars/{param}/registrations/$count","keep",,"Get-MgVirtualEventWebinarRegistrationCount","Get-MgVirtualEventWebinarRegistrationCount" +"GET","/solutions/virtualEvents/webinars/{param}/sessions","keep",,"Get-MgVirtualEventWebinarSession","Get-MgVirtualEventWebinarSession" +"GET","/solutions/virtualEvents/webinars/{param}/sessions/{param}","keep",,"Get-MgVirtualEventWebinarSession","Get-MgVirtualEventWebinarSession" +"GET","/solutions/virtualEvents/webinars/{param}/sessions/{param}/attendanceReports","keep",,"Get-MgVirtualEventWebinarSessionAttendanceReport","Get-MgVirtualEventWebinarSessionAttendanceReport" +"GET","/solutions/virtualEvents/webinars/{param}/sessions/{param}/attendanceReports/{param}","keep",,"Get-MgVirtualEventWebinarSessionAttendanceReport","Get-MgVirtualEventWebinarSessionAttendanceReport" +"GET","/solutions/virtualEvents/webinars/{param}/sessions/{param}/attendanceReports/{param}/attendanceRecords","keep",,"Get-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord","Get-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord" +"GET","/solutions/virtualEvents/webinars/{param}/sessions/{param}/attendanceReports/{param}/attendanceRecords/{param}","keep",,"Get-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord","Get-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord" +"GET","/solutions/virtualEvents/webinars/{param}/sessions/{param}/attendanceReports/{param}/attendanceRecords/$count","keep",,"Get-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecordCount","Get-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecordCount" +"GET","/solutions/virtualEvents/webinars/{param}/sessions/{param}/attendanceReports/$count","keep",,"Get-MgVirtualEventWebinarSessionAttendanceReportCount","Get-MgVirtualEventWebinarSessionAttendanceReportCount" +"GET","/solutions/virtualEvents/webinars/{param}/sessions/$count","keep",,"Get-MgVirtualEventWebinarSessionCount","Get-MgVirtualEventWebinarSessionCount" +"GET","/solutions/virtualEvents/webinars/$count","keep",,"Get-MgVirtualEventWebinarCount","Get-MgVirtualEventWebinarCount" +"GET","/subscribedSkus","keep",,"Get-MgSubscribedSku","Get-MgSubscribedSku" +"GET","/subscribedSkus/{param}","keep",,"Get-MgSubscribedSku","Get-MgSubscribedSku" +"GET","/subscriptions","keep",,"Get-MgSubscription","Get-MgSubscription" +"GET","/subscriptions/{param}","keep",,"Get-MgSubscription","Get-MgSubscription" +"GET","/teams","keep",,"Get-MgTeam","Get-MgTeam" +"GET","/teams/{param}","keep",,"Get-MgTeam","Get-MgTeam" +"GET","/teams/{param}/allChannels","rename","AllTeamChannel","Get-MgTeamAllChannel","Get-MgAllTeamChannel" +"GET","/teams/{param}/allChannels/{param}","rename","AllTeamChannel","Get-MgTeamAllChannel","Get-MgAllTeamChannel" +"GET","/teams/{param}/allChannels/$count","rename","AllTeamChannelCount","Get-MgTeamAllChannelCount","Get-MgAllTeamChannelCount" +"GET","/teams/{param}/channels","keep",,"Get-MgTeamChannel","Get-MgTeamChannel" +"GET","/teams/{param}/channels/{param}","keep",,"Get-MgTeamChannel","Get-MgTeamChannel" +"GET","/teams/{param}/channels/{param}/allMembers","rename","TeamChannelMember","Get-MgTeamChannelAllMember","Get-MgTeamChannelMember" +"GET","/teams/{param}/channels/{param}/allMembers/{param}","rename","TeamChannelMember","Get-MgTeamChannelAllMember","Get-MgTeamChannelMember" +"GET","/teams/{param}/channels/{param}/allMembers/$count","keep",,"Get-MgTeamChannelAllMemberCount","Get-MgTeamChannelAllMemberCount" +"GET","/teams/{param}/channels/{param}/enabledApps","keep",,"Get-MgTeamChannelEnabledApp","Get-MgTeamChannelEnabledApp" +"GET","/teams/{param}/channels/{param}/enabledApps/{param}","keep",,"Get-MgTeamChannelEnabledApp","Get-MgTeamChannelEnabledApp" +"GET","/teams/{param}/channels/{param}/enabledApps/$count","keep",,"Get-MgTeamChannelEnabledAppCount","Get-MgTeamChannelEnabledAppCount" +"GET","/teams/{param}/channels/{param}/filesFolder","keep",,"Get-MgTeamChannelFileFolder","Get-MgTeamChannelFileFolder" +"GET","/teams/{param}/channels/{param}/members","suppress",,"Get-MgTeamChannelMember","no oracle row; 'Get-MgTeamChannelMember' ships from sibling family (see rename entries for this noun)" +"GET","/teams/{param}/channels/{param}/members/{param}","suppress",,"Get-MgTeamChannelMember","no oracle row; 'Get-MgTeamChannelMember' ships from sibling family (see rename entries for this noun)" +"GET","/teams/{param}/channels/{param}/members/$count","keep",,"Get-MgTeamChannelMemberCount","Get-MgTeamChannelMemberCount" +"GET","/teams/{param}/channels/{param}/messages","keep",,"Get-MgTeamChannelMessage","Get-MgTeamChannelMessage" +"GET","/teams/{param}/channels/{param}/messages/{param}","keep",,"Get-MgTeamChannelMessage","Get-MgTeamChannelMessage" +"GET","/teams/{param}/channels/{param}/messages/{param}/hostedContents","keep",,"Get-MgTeamChannelMessageHostedContent","Get-MgTeamChannelMessageHostedContent" +"GET","/teams/{param}/channels/{param}/messages/{param}/hostedContents/{param}","keep",,"Get-MgTeamChannelMessageHostedContent","Get-MgTeamChannelMessageHostedContent" +"GET","/teams/{param}/channels/{param}/messages/{param}/hostedContents/{param}/$value","suppress",,"Get-MgTeamChannelMessageHostedContentContent","no oracle row for GET /teams/{param}/channels/{param}/messages/{param}/hostedContents/{param}/$value and 'Get-MgTeamChannelMessageHostedContentContent' unshipped" +"GET","/teams/{param}/channels/{param}/messages/{param}/hostedContents/$count","keep",,"Get-MgTeamChannelMessageHostedContentCount","Get-MgTeamChannelMessageHostedContentCount" +"GET","/teams/{param}/channels/{param}/messages/{param}/replies","keep",,"Get-MgTeamChannelMessageReply","Get-MgTeamChannelMessageReply" +"GET","/teams/{param}/channels/{param}/messages/{param}/replies/{param}","keep",,"Get-MgTeamChannelMessageReply","Get-MgTeamChannelMessageReply" +"GET","/teams/{param}/channels/{param}/messages/{param}/replies/{param}/hostedContents","keep",,"Get-MgTeamChannelMessageReplyHostedContent","Get-MgTeamChannelMessageReplyHostedContent" +"GET","/teams/{param}/channels/{param}/messages/{param}/replies/{param}/hostedContents/{param}","keep",,"Get-MgTeamChannelMessageReplyHostedContent","Get-MgTeamChannelMessageReplyHostedContent" +"GET","/teams/{param}/channels/{param}/messages/{param}/replies/{param}/hostedContents/{param}/$value","suppress",,"Get-MgTeamChannelMessageReplyHostedContentContent","no oracle row for GET /teams/{param}/channels/{param}/messages/{param}/replies/{param}/hostedContents/{param}/$value and 'Get-MgTeamChannelMessageReplyHostedContentContent' unshipped" +"GET","/teams/{param}/channels/{param}/messages/{param}/replies/{param}/hostedContents/$count","keep",,"Get-MgTeamChannelMessageReplyHostedContentCount","Get-MgTeamChannelMessageReplyHostedContentCount" +"GET","/teams/{param}/channels/{param}/messages/{param}/replies/$count","keep",,"Get-MgTeamChannelMessageReplyCount","Get-MgTeamChannelMessageReplyCount" +"GET","/teams/{param}/channels/{param}/messages/{param}/replies/delta","keep",,"Get-MgTeamChannelMessageReplyDelta","Get-MgTeamChannelMessageReplyDelta" +"GET","/teams/{param}/channels/{param}/messages/$count","keep",,"Get-MgTeamChannelMessageCount","Get-MgTeamChannelMessageCount" +"GET","/teams/{param}/channels/{param}/messages/delta","keep",,"Get-MgTeamChannelMessageDelta","Get-MgTeamChannelMessageDelta" +"GET","/teams/{param}/channels/{param}/sharedWithTeams","keep",,"Get-MgTeamChannelSharedWithTeam","Get-MgTeamChannelSharedWithTeam" +"GET","/teams/{param}/channels/{param}/sharedWithTeams/{param}","keep",,"Get-MgTeamChannelSharedWithTeam","Get-MgTeamChannelSharedWithTeam" +"GET","/teams/{param}/channels/{param}/sharedWithTeams/{param}/allowedMembers","keep",,"Get-MgTeamChannelSharedWithTeamAllowedMember","Get-MgTeamChannelSharedWithTeamAllowedMember" +"GET","/teams/{param}/channels/{param}/sharedWithTeams/{param}/allowedMembers/{param}","keep",,"Get-MgTeamChannelSharedWithTeamAllowedMember","Get-MgTeamChannelSharedWithTeamAllowedMember" +"GET","/teams/{param}/channels/{param}/sharedWithTeams/{param}/allowedMembers/$count","keep",,"Get-MgTeamChannelSharedWithTeamAllowedMemberCount","Get-MgTeamChannelSharedWithTeamAllowedMemberCount" +"GET","/teams/{param}/channels/{param}/sharedWithTeams/$count","keep",,"Get-MgTeamChannelSharedWithTeamCount","Get-MgTeamChannelSharedWithTeamCount" +"GET","/teams/{param}/channels/{param}/tabs","keep",,"Get-MgTeamChannelTab","Get-MgTeamChannelTab" +"GET","/teams/{param}/channels/{param}/tabs/{param}","keep",,"Get-MgTeamChannelTab","Get-MgTeamChannelTab" +"GET","/teams/{param}/channels/{param}/tabs/{param}/teamsApp","keep",,"Get-MgTeamChannelTabTeamApp","Get-MgTeamChannelTabTeamApp" +"GET","/teams/{param}/channels/{param}/tabs/$count","keep",,"Get-MgTeamChannelTabCount","Get-MgTeamChannelTabCount" +"GET","/teams/{param}/channels/$count","keep",,"Get-MgTeamChannelCount","Get-MgTeamChannelCount" +"GET","/teams/{param}/channels/getAllMessages","suppress",,"Get-MgTeamChannelGetAllMessages","no oracle row for GET /teams/{param}/channels/getAllMessages and 'Get-MgTeamChannelGetAllMessages' unshipped" +"GET","/teams/{param}/channels/getAllRetainedMessages","rename","TeamChannelRetainedMessage","Get-MgTeamChannelGetAllRetainedMessages","Get-MgTeamChannelRetainedMessage" +"GET","/teams/{param}/group","suppress",,"Get-MgTeamGroup","no oracle row for GET /teams/{param}/group and 'Get-MgTeamGroup' unshipped" +"GET","/teams/{param}/group/serviceProvisioningErrors","keep",,"Get-MgTeamGroupServiceProvisioningError","Get-MgTeamGroupServiceProvisioningError" +"GET","/teams/{param}/group/serviceProvisioningErrors/$count","keep",,"Get-MgTeamGroupServiceProvisioningErrorCount","Get-MgTeamGroupServiceProvisioningErrorCount" +"GET","/teams/{param}/incomingChannels","keep",,"Get-MgTeamIncomingChannel","Get-MgTeamIncomingChannel" +"GET","/teams/{param}/incomingChannels/{param}","keep",,"Get-MgTeamIncomingChannel","Get-MgTeamIncomingChannel" +"GET","/teams/{param}/incomingChannels/$count","keep",,"Get-MgTeamIncomingChannelCount","Get-MgTeamIncomingChannelCount" +"GET","/teams/{param}/installedApps","keep",,"Get-MgTeamInstalledApp","Get-MgTeamInstalledApp" +"GET","/teams/{param}/installedApps/{param}","keep",,"Get-MgTeamInstalledApp","Get-MgTeamInstalledApp" +"GET","/teams/{param}/installedApps/{param}/teamsApp","keep",,"Get-MgTeamInstalledAppTeamApp","Get-MgTeamInstalledAppTeamApp" +"GET","/teams/{param}/installedApps/{param}/teamsAppDefinition","keep",,"Get-MgTeamInstalledAppTeamAppDefinition","Get-MgTeamInstalledAppTeamAppDefinition" +"GET","/teams/{param}/installedApps/$count","keep",,"Get-MgTeamInstalledAppCount","Get-MgTeamInstalledAppCount" +"GET","/teams/{param}/members","keep",,"Get-MgTeamMember","Get-MgTeamMember" +"GET","/teams/{param}/members/{param}","keep",,"Get-MgTeamMember","Get-MgTeamMember" +"GET","/teams/{param}/members/$count","keep",,"Get-MgTeamMemberCount","Get-MgTeamMemberCount" +"GET","/teams/{param}/operations","keep",,"Get-MgTeamOperation","Get-MgTeamOperation" +"GET","/teams/{param}/operations/{param}","keep",,"Get-MgTeamOperation","Get-MgTeamOperation" +"GET","/teams/{param}/operations/$count","keep",,"Get-MgTeamOperationCount","Get-MgTeamOperationCount" +"GET","/teams/{param}/permissionGrants","keep",,"Get-MgTeamPermissionGrant","Get-MgTeamPermissionGrant" +"GET","/teams/{param}/permissionGrants/{param}","keep",,"Get-MgTeamPermissionGrant","Get-MgTeamPermissionGrant" +"GET","/teams/{param}/permissionGrants/$count","keep",,"Get-MgTeamPermissionGrantCount","Get-MgTeamPermissionGrantCount" +"GET","/teams/{param}/photo","keep",,"Get-MgTeamPhoto","Get-MgTeamPhoto" +"GET","/teams/{param}/photo/$value","keep",,"Get-MgTeamPhotoContent","Get-MgTeamPhotoContent" +"GET","/teams/{param}/primaryChannel","keep",,"Get-MgTeamPrimaryChannel","Get-MgTeamPrimaryChannel" +"GET","/teams/{param}/primaryChannel/allMembers","rename","TeamPrimaryChannelMember","Get-MgTeamPrimaryChannelAllMember","Get-MgTeamPrimaryChannelMember" +"GET","/teams/{param}/primaryChannel/allMembers/{param}","rename","TeamPrimaryChannelMember","Get-MgTeamPrimaryChannelAllMember","Get-MgTeamPrimaryChannelMember" +"GET","/teams/{param}/primaryChannel/allMembers/$count","keep",,"Get-MgTeamPrimaryChannelAllMemberCount","Get-MgTeamPrimaryChannelAllMemberCount" +"GET","/teams/{param}/primaryChannel/enabledApps","keep",,"Get-MgTeamPrimaryChannelEnabledApp","Get-MgTeamPrimaryChannelEnabledApp" +"GET","/teams/{param}/primaryChannel/enabledApps/{param}","keep",,"Get-MgTeamPrimaryChannelEnabledApp","Get-MgTeamPrimaryChannelEnabledApp" +"GET","/teams/{param}/primaryChannel/enabledApps/$count","keep",,"Get-MgTeamPrimaryChannelEnabledAppCount","Get-MgTeamPrimaryChannelEnabledAppCount" +"GET","/teams/{param}/primaryChannel/filesFolder","keep",,"Get-MgTeamPrimaryChannelFileFolder","Get-MgTeamPrimaryChannelFileFolder" +"GET","/teams/{param}/primaryChannel/members","suppress",,"Get-MgTeamPrimaryChannelMember","no oracle row; 'Get-MgTeamPrimaryChannelMember' ships from sibling family (see rename entries for this noun)" +"GET","/teams/{param}/primaryChannel/members/{param}","suppress",,"Get-MgTeamPrimaryChannelMember","no oracle row; 'Get-MgTeamPrimaryChannelMember' ships from sibling family (see rename entries for this noun)" +"GET","/teams/{param}/primaryChannel/members/$count","keep",,"Get-MgTeamPrimaryChannelMemberCount","Get-MgTeamPrimaryChannelMemberCount" +"GET","/teams/{param}/primaryChannel/messages","keep",,"Get-MgTeamPrimaryChannelMessage","Get-MgTeamPrimaryChannelMessage" +"GET","/teams/{param}/primaryChannel/messages/{param}","keep",,"Get-MgTeamPrimaryChannelMessage","Get-MgTeamPrimaryChannelMessage" +"GET","/teams/{param}/primaryChannel/messages/{param}/hostedContents","keep",,"Get-MgTeamPrimaryChannelMessageHostedContent","Get-MgTeamPrimaryChannelMessageHostedContent" +"GET","/teams/{param}/primaryChannel/messages/{param}/hostedContents/{param}","keep",,"Get-MgTeamPrimaryChannelMessageHostedContent","Get-MgTeamPrimaryChannelMessageHostedContent" +"GET","/teams/{param}/primaryChannel/messages/{param}/hostedContents/{param}/$value","suppress",,"Get-MgTeamPrimaryChannelMessageHostedContentContent","no oracle row for GET /teams/{param}/primaryChannel/messages/{param}/hostedContents/{param}/$value and 'Get-MgTeamPrimaryChannelMessageHostedContentContent' unshipped" +"GET","/teams/{param}/primaryChannel/messages/{param}/hostedContents/$count","keep",,"Get-MgTeamPrimaryChannelMessageHostedContentCount","Get-MgTeamPrimaryChannelMessageHostedContentCount" +"GET","/teams/{param}/primaryChannel/messages/{param}/replies","keep",,"Get-MgTeamPrimaryChannelMessageReply","Get-MgTeamPrimaryChannelMessageReply" +"GET","/teams/{param}/primaryChannel/messages/{param}/replies/{param}","keep",,"Get-MgTeamPrimaryChannelMessageReply","Get-MgTeamPrimaryChannelMessageReply" +"GET","/teams/{param}/primaryChannel/messages/{param}/replies/{param}/hostedContents","keep",,"Get-MgTeamPrimaryChannelMessageReplyHostedContent","Get-MgTeamPrimaryChannelMessageReplyHostedContent" +"GET","/teams/{param}/primaryChannel/messages/{param}/replies/{param}/hostedContents/{param}","keep",,"Get-MgTeamPrimaryChannelMessageReplyHostedContent","Get-MgTeamPrimaryChannelMessageReplyHostedContent" +"GET","/teams/{param}/primaryChannel/messages/{param}/replies/{param}/hostedContents/{param}/$value","suppress",,"Get-MgTeamPrimaryChannelMessageReplyHostedContentContent","no oracle row for GET /teams/{param}/primaryChannel/messages/{param}/replies/{param}/hostedContents/{param}/$value and 'Get-MgTeamPrimaryChannelMessageReplyHostedContentContent' unshipped" +"GET","/teams/{param}/primaryChannel/messages/{param}/replies/{param}/hostedContents/$count","keep",,"Get-MgTeamPrimaryChannelMessageReplyHostedContentCount","Get-MgTeamPrimaryChannelMessageReplyHostedContentCount" +"GET","/teams/{param}/primaryChannel/messages/{param}/replies/$count","keep",,"Get-MgTeamPrimaryChannelMessageReplyCount","Get-MgTeamPrimaryChannelMessageReplyCount" +"GET","/teams/{param}/primaryChannel/messages/{param}/replies/delta","keep",,"Get-MgTeamPrimaryChannelMessageReplyDelta","Get-MgTeamPrimaryChannelMessageReplyDelta" +"GET","/teams/{param}/primaryChannel/messages/$count","keep",,"Get-MgTeamPrimaryChannelMessageCount","Get-MgTeamPrimaryChannelMessageCount" +"GET","/teams/{param}/primaryChannel/messages/delta","keep",,"Get-MgTeamPrimaryChannelMessageDelta","Get-MgTeamPrimaryChannelMessageDelta" +"GET","/teams/{param}/primaryChannel/sharedWithTeams","keep",,"Get-MgTeamPrimaryChannelSharedWithTeam","Get-MgTeamPrimaryChannelSharedWithTeam" +"GET","/teams/{param}/primaryChannel/sharedWithTeams/{param}","keep",,"Get-MgTeamPrimaryChannelSharedWithTeam","Get-MgTeamPrimaryChannelSharedWithTeam" +"GET","/teams/{param}/primaryChannel/sharedWithTeams/{param}/allowedMembers","keep",,"Get-MgTeamPrimaryChannelSharedWithTeamAllowedMember","Get-MgTeamPrimaryChannelSharedWithTeamAllowedMember" +"GET","/teams/{param}/primaryChannel/sharedWithTeams/{param}/allowedMembers/{param}","keep",,"Get-MgTeamPrimaryChannelSharedWithTeamAllowedMember","Get-MgTeamPrimaryChannelSharedWithTeamAllowedMember" +"GET","/teams/{param}/primaryChannel/sharedWithTeams/{param}/allowedMembers/$count","keep",,"Get-MgTeamPrimaryChannelSharedWithTeamAllowedMemberCount","Get-MgTeamPrimaryChannelSharedWithTeamAllowedMemberCount" +"GET","/teams/{param}/primaryChannel/sharedWithTeams/$count","keep",,"Get-MgTeamPrimaryChannelSharedWithTeamCount","Get-MgTeamPrimaryChannelSharedWithTeamCount" +"GET","/teams/{param}/primaryChannel/tabs","keep",,"Get-MgTeamPrimaryChannelTab","Get-MgTeamPrimaryChannelTab" +"GET","/teams/{param}/primaryChannel/tabs/{param}","keep",,"Get-MgTeamPrimaryChannelTab","Get-MgTeamPrimaryChannelTab" +"GET","/teams/{param}/primaryChannel/tabs/{param}/teamsApp","keep",,"Get-MgTeamPrimaryChannelTabTeamApp","Get-MgTeamPrimaryChannelTabTeamApp" +"GET","/teams/{param}/primaryChannel/tabs/$count","keep",,"Get-MgTeamPrimaryChannelTabCount","Get-MgTeamPrimaryChannelTabCount" +"GET","/teams/{param}/schedule","keep",,"Get-MgTeamSchedule","Get-MgTeamSchedule" +"GET","/teams/{param}/schedule/dayNotes","keep",,"Get-MgTeamScheduleDayNote","Get-MgTeamScheduleDayNote" +"GET","/teams/{param}/schedule/dayNotes/{param}","keep",,"Get-MgTeamScheduleDayNote","Get-MgTeamScheduleDayNote" +"GET","/teams/{param}/schedule/dayNotes/$count","keep",,"Get-MgTeamScheduleDayNoteCount","Get-MgTeamScheduleDayNoteCount" +"GET","/teams/{param}/schedule/offerShiftRequests","keep",,"Get-MgTeamScheduleOfferShiftRequest","Get-MgTeamScheduleOfferShiftRequest" +"GET","/teams/{param}/schedule/offerShiftRequests/{param}","keep",,"Get-MgTeamScheduleOfferShiftRequest","Get-MgTeamScheduleOfferShiftRequest" +"GET","/teams/{param}/schedule/offerShiftRequests/$count","keep",,"Get-MgTeamScheduleOfferShiftRequestCount","Get-MgTeamScheduleOfferShiftRequestCount" +"GET","/teams/{param}/schedule/openShiftChangeRequests","keep",,"Get-MgTeamScheduleOpenShiftChangeRequest","Get-MgTeamScheduleOpenShiftChangeRequest" +"GET","/teams/{param}/schedule/openShiftChangeRequests/{param}","keep",,"Get-MgTeamScheduleOpenShiftChangeRequest","Get-MgTeamScheduleOpenShiftChangeRequest" +"GET","/teams/{param}/schedule/openShiftChangeRequests/$count","keep",,"Get-MgTeamScheduleOpenShiftChangeRequestCount","Get-MgTeamScheduleOpenShiftChangeRequestCount" +"GET","/teams/{param}/schedule/openShifts","keep",,"Get-MgTeamScheduleOpenShift","Get-MgTeamScheduleOpenShift" +"GET","/teams/{param}/schedule/openShifts/{param}","keep",,"Get-MgTeamScheduleOpenShift","Get-MgTeamScheduleOpenShift" +"GET","/teams/{param}/schedule/openShifts/$count","keep",,"Get-MgTeamScheduleOpenShiftCount","Get-MgTeamScheduleOpenShiftCount" +"GET","/teams/{param}/schedule/schedulingGroups","keep",,"Get-MgTeamScheduleSchedulingGroup","Get-MgTeamScheduleSchedulingGroup" +"GET","/teams/{param}/schedule/schedulingGroups/{param}","keep",,"Get-MgTeamScheduleSchedulingGroup","Get-MgTeamScheduleSchedulingGroup" +"GET","/teams/{param}/schedule/schedulingGroups/$count","keep",,"Get-MgTeamScheduleSchedulingGroupCount","Get-MgTeamScheduleSchedulingGroupCount" +"GET","/teams/{param}/schedule/shifts","keep",,"Get-MgTeamScheduleShift","Get-MgTeamScheduleShift" +"GET","/teams/{param}/schedule/shifts/{param}","keep",,"Get-MgTeamScheduleShift","Get-MgTeamScheduleShift" +"GET","/teams/{param}/schedule/shifts/$count","keep",,"Get-MgTeamScheduleShiftCount","Get-MgTeamScheduleShiftCount" +"GET","/teams/{param}/schedule/swapShiftsChangeRequests","keep",,"Get-MgTeamScheduleSwapShiftChangeRequest","Get-MgTeamScheduleSwapShiftChangeRequest" +"GET","/teams/{param}/schedule/swapShiftsChangeRequests/{param}","keep",,"Get-MgTeamScheduleSwapShiftChangeRequest","Get-MgTeamScheduleSwapShiftChangeRequest" +"GET","/teams/{param}/schedule/swapShiftsChangeRequests/$count","keep",,"Get-MgTeamScheduleSwapShiftChangeRequestCount","Get-MgTeamScheduleSwapShiftChangeRequestCount" +"GET","/teams/{param}/schedule/timeCards","keep",,"Get-MgTeamScheduleTimeCard","Get-MgTeamScheduleTimeCard" +"GET","/teams/{param}/schedule/timeCards/{param}","keep",,"Get-MgTeamScheduleTimeCard","Get-MgTeamScheduleTimeCard" +"GET","/teams/{param}/schedule/timeCards/$count","keep",,"Get-MgTeamScheduleTimeCardCount","Get-MgTeamScheduleTimeCardCount" +"GET","/teams/{param}/schedule/timeOffReasons","keep",,"Get-MgTeamScheduleTimeOffReason","Get-MgTeamScheduleTimeOffReason" +"GET","/teams/{param}/schedule/timeOffReasons/{param}","keep",,"Get-MgTeamScheduleTimeOffReason","Get-MgTeamScheduleTimeOffReason" +"GET","/teams/{param}/schedule/timeOffReasons/$count","keep",,"Get-MgTeamScheduleTimeOffReasonCount","Get-MgTeamScheduleTimeOffReasonCount" +"GET","/teams/{param}/schedule/timeOffRequests","keep",,"Get-MgTeamScheduleTimeOffRequest","Get-MgTeamScheduleTimeOffRequest" +"GET","/teams/{param}/schedule/timeOffRequests/{param}","keep",,"Get-MgTeamScheduleTimeOffRequest","Get-MgTeamScheduleTimeOffRequest" +"GET","/teams/{param}/schedule/timeOffRequests/$count","keep",,"Get-MgTeamScheduleTimeOffRequestCount","Get-MgTeamScheduleTimeOffRequestCount" +"GET","/teams/{param}/schedule/timesOff","keep",,"Get-MgTeamScheduleTimeOff","Get-MgTeamScheduleTimeOff" +"GET","/teams/{param}/schedule/timesOff/{param}","keep",,"Get-MgTeamScheduleTimeOff","Get-MgTeamScheduleTimeOff" +"GET","/teams/{param}/schedule/timesOff/$count","keep",,"Get-MgTeamScheduleTimeOffCount","Get-MgTeamScheduleTimeOffCount" +"GET","/teams/{param}/tags","keep",,"Get-MgTeamTag","Get-MgTeamTag" +"GET","/teams/{param}/tags/{param}","keep",,"Get-MgTeamTag","Get-MgTeamTag" +"GET","/teams/{param}/tags/{param}/members","keep",,"Get-MgTeamTagMember","Get-MgTeamTagMember" +"GET","/teams/{param}/tags/{param}/members/{param}","keep",,"Get-MgTeamTagMember","Get-MgTeamTagMember" +"GET","/teams/{param}/tags/{param}/members/$count","keep",,"Get-MgTeamTagMemberCount","Get-MgTeamTagMemberCount" +"GET","/teams/{param}/tags/$count","keep",,"Get-MgTeamTagCount","Get-MgTeamTagCount" +"GET","/teams/{param}/template","keep",,"Get-MgTeamTemplate","Get-MgTeamTemplate" +"GET","/teams/$count","keep",,"Get-MgTeamCount","Get-MgTeamCount" +"GET","/teams/getAllMessages","rename","AllTeamMessage","Get-MgTeamGetAllMessages","Get-MgAllTeamMessage" +"GET","/teamwork","keep",,"Get-MgTeamwork","Get-MgTeamwork" +"GET","/teamwork/deletedChats","keep",,"Get-MgTeamworkDeletedChat","Get-MgTeamworkDeletedChat" +"GET","/teamwork/deletedChats/{param}","keep",,"Get-MgTeamworkDeletedChat","Get-MgTeamworkDeletedChat" +"GET","/teamwork/deletedChats/$count","keep",,"Get-MgTeamworkDeletedChatCount","Get-MgTeamworkDeletedChatCount" +"GET","/teamwork/deletedTeams","keep",,"Get-MgTeamworkDeletedTeam","Get-MgTeamworkDeletedTeam" +"GET","/teamwork/deletedTeams/{param}","keep",,"Get-MgTeamworkDeletedTeam","Get-MgTeamworkDeletedTeam" +"GET","/teamwork/deletedTeams/{param}/channels","keep",,"Get-MgTeamworkDeletedTeamChannel","Get-MgTeamworkDeletedTeamChannel" +"GET","/teamwork/deletedTeams/{param}/channels/{param}","keep",,"Get-MgTeamworkDeletedTeamChannel","Get-MgTeamworkDeletedTeamChannel" +"GET","/teamwork/deletedTeams/{param}/channels/{param}/allMembers","rename","TeamworkDeletedTeamChannelMember","Get-MgTeamworkDeletedTeamChannelAllMember","Get-MgTeamworkDeletedTeamChannelMember" +"GET","/teamwork/deletedTeams/{param}/channels/{param}/allMembers/{param}","rename","TeamworkDeletedTeamChannelMember","Get-MgTeamworkDeletedTeamChannelAllMember","Get-MgTeamworkDeletedTeamChannelMember" +"GET","/teamwork/deletedTeams/{param}/channels/{param}/allMembers/$count","keep",,"Get-MgTeamworkDeletedTeamChannelAllMemberCount","Get-MgTeamworkDeletedTeamChannelAllMemberCount" +"GET","/teamwork/deletedTeams/{param}/channels/{param}/enabledApps","keep",,"Get-MgTeamworkDeletedTeamChannelEnabledApp","Get-MgTeamworkDeletedTeamChannelEnabledApp" +"GET","/teamwork/deletedTeams/{param}/channels/{param}/enabledApps/{param}","keep",,"Get-MgTeamworkDeletedTeamChannelEnabledApp","Get-MgTeamworkDeletedTeamChannelEnabledApp" +"GET","/teamwork/deletedTeams/{param}/channels/{param}/enabledApps/$count","keep",,"Get-MgTeamworkDeletedTeamChannelEnabledAppCount","Get-MgTeamworkDeletedTeamChannelEnabledAppCount" +"GET","/teamwork/deletedTeams/{param}/channels/{param}/filesFolder","keep",,"Get-MgTeamworkDeletedTeamChannelFileFolder","Get-MgTeamworkDeletedTeamChannelFileFolder" +"GET","/teamwork/deletedTeams/{param}/channels/{param}/members","suppress",,"Get-MgTeamworkDeletedTeamChannelMember","no oracle row; 'Get-MgTeamworkDeletedTeamChannelMember' ships from sibling family (see rename entries for this noun)" +"GET","/teamwork/deletedTeams/{param}/channels/{param}/members/{param}","suppress",,"Get-MgTeamworkDeletedTeamChannelMember","no oracle row; 'Get-MgTeamworkDeletedTeamChannelMember' ships from sibling family (see rename entries for this noun)" +"GET","/teamwork/deletedTeams/{param}/channels/{param}/members/$count","keep",,"Get-MgTeamworkDeletedTeamChannelMemberCount","Get-MgTeamworkDeletedTeamChannelMemberCount" +"GET","/teamwork/deletedTeams/{param}/channels/{param}/messages","keep",,"Get-MgTeamworkDeletedTeamChannelMessage","Get-MgTeamworkDeletedTeamChannelMessage" +"GET","/teamwork/deletedTeams/{param}/channels/{param}/messages/{param}","keep",,"Get-MgTeamworkDeletedTeamChannelMessage","Get-MgTeamworkDeletedTeamChannelMessage" +"GET","/teamwork/deletedTeams/{param}/channels/{param}/messages/{param}/hostedContents","keep",,"Get-MgTeamworkDeletedTeamChannelMessageHostedContent","Get-MgTeamworkDeletedTeamChannelMessageHostedContent" +"GET","/teamwork/deletedTeams/{param}/channels/{param}/messages/{param}/hostedContents/{param}","keep",,"Get-MgTeamworkDeletedTeamChannelMessageHostedContent","Get-MgTeamworkDeletedTeamChannelMessageHostedContent" +"GET","/teamwork/deletedTeams/{param}/channels/{param}/messages/{param}/hostedContents/{param}/$value","suppress",,"Get-MgTeamworkDeletedTeamChannelMessageHostedContentContent","no oracle row for GET /teamwork/deletedTeams/{param}/channels/{param}/messages/{param}/hostedContents/{param}/$value and 'Get-MgTeamworkDeletedTeamChannelMessageHostedContentContent' unshipped" +"GET","/teamwork/deletedTeams/{param}/channels/{param}/messages/{param}/hostedContents/$count","keep",,"Get-MgTeamworkDeletedTeamChannelMessageHostedContentCount","Get-MgTeamworkDeletedTeamChannelMessageHostedContentCount" +"GET","/teamwork/deletedTeams/{param}/channels/{param}/messages/{param}/replies","keep",,"Get-MgTeamworkDeletedTeamChannelMessageReply","Get-MgTeamworkDeletedTeamChannelMessageReply" +"GET","/teamwork/deletedTeams/{param}/channels/{param}/messages/{param}/replies/{param}","keep",,"Get-MgTeamworkDeletedTeamChannelMessageReply","Get-MgTeamworkDeletedTeamChannelMessageReply" +"GET","/teamwork/deletedTeams/{param}/channels/{param}/messages/{param}/replies/{param}/hostedContents","keep",,"Get-MgTeamworkDeletedTeamChannelMessageReplyHostedContent","Get-MgTeamworkDeletedTeamChannelMessageReplyHostedContent" +"GET","/teamwork/deletedTeams/{param}/channels/{param}/messages/{param}/replies/{param}/hostedContents/{param}","keep",,"Get-MgTeamworkDeletedTeamChannelMessageReplyHostedContent","Get-MgTeamworkDeletedTeamChannelMessageReplyHostedContent" +"GET","/teamwork/deletedTeams/{param}/channels/{param}/messages/{param}/replies/{param}/hostedContents/{param}/$value","suppress",,"Get-MgTeamworkDeletedTeamChannelMessageReplyHostedContentContent","no oracle row for GET /teamwork/deletedTeams/{param}/channels/{param}/messages/{param}/replies/{param}/hostedContents/{param}/$value and 'Get-MgTeamworkDeletedTeamChannelMessageReplyHostedContentContent' unshipped" +"GET","/teamwork/deletedTeams/{param}/channels/{param}/messages/{param}/replies/{param}/hostedContents/$count","keep",,"Get-MgTeamworkDeletedTeamChannelMessageReplyHostedContentCount","Get-MgTeamworkDeletedTeamChannelMessageReplyHostedContentCount" +"GET","/teamwork/deletedTeams/{param}/channels/{param}/messages/{param}/replies/$count","keep",,"Get-MgTeamworkDeletedTeamChannelMessageReplyCount","Get-MgTeamworkDeletedTeamChannelMessageReplyCount" +"GET","/teamwork/deletedTeams/{param}/channels/{param}/messages/{param}/replies/delta","keep",,"Get-MgTeamworkDeletedTeamChannelMessageReplyDelta","Get-MgTeamworkDeletedTeamChannelMessageReplyDelta" +"GET","/teamwork/deletedTeams/{param}/channels/{param}/messages/$count","keep",,"Get-MgTeamworkDeletedTeamChannelMessageCount","Get-MgTeamworkDeletedTeamChannelMessageCount" +"GET","/teamwork/deletedTeams/{param}/channels/{param}/messages/delta","keep",,"Get-MgTeamworkDeletedTeamChannelMessageDelta","Get-MgTeamworkDeletedTeamChannelMessageDelta" +"GET","/teamwork/deletedTeams/{param}/channels/{param}/sharedWithTeams","keep",,"Get-MgTeamworkDeletedTeamChannelSharedWithTeam","Get-MgTeamworkDeletedTeamChannelSharedWithTeam" +"GET","/teamwork/deletedTeams/{param}/channels/{param}/sharedWithTeams/{param}","keep",,"Get-MgTeamworkDeletedTeamChannelSharedWithTeam","Get-MgTeamworkDeletedTeamChannelSharedWithTeam" +"GET","/teamwork/deletedTeams/{param}/channels/{param}/sharedWithTeams/{param}/allowedMembers","keep",,"Get-MgTeamworkDeletedTeamChannelSharedWithTeamAllowedMember","Get-MgTeamworkDeletedTeamChannelSharedWithTeamAllowedMember" +"GET","/teamwork/deletedTeams/{param}/channels/{param}/sharedWithTeams/{param}/allowedMembers/{param}","keep",,"Get-MgTeamworkDeletedTeamChannelSharedWithTeamAllowedMember","Get-MgTeamworkDeletedTeamChannelSharedWithTeamAllowedMember" +"GET","/teamwork/deletedTeams/{param}/channels/{param}/sharedWithTeams/{param}/allowedMembers/$count","keep",,"Get-MgTeamworkDeletedTeamChannelSharedWithTeamAllowedMemberCount","Get-MgTeamworkDeletedTeamChannelSharedWithTeamAllowedMemberCount" +"GET","/teamwork/deletedTeams/{param}/channels/{param}/sharedWithTeams/$count","keep",,"Get-MgTeamworkDeletedTeamChannelSharedWithTeamCount","Get-MgTeamworkDeletedTeamChannelSharedWithTeamCount" +"GET","/teamwork/deletedTeams/{param}/channels/{param}/tabs","keep",,"Get-MgTeamworkDeletedTeamChannelTab","Get-MgTeamworkDeletedTeamChannelTab" +"GET","/teamwork/deletedTeams/{param}/channels/{param}/tabs/{param}","keep",,"Get-MgTeamworkDeletedTeamChannelTab","Get-MgTeamworkDeletedTeamChannelTab" +"GET","/teamwork/deletedTeams/{param}/channels/{param}/tabs/{param}/teamsApp","keep",,"Get-MgTeamworkDeletedTeamChannelTabTeamApp","Get-MgTeamworkDeletedTeamChannelTabTeamApp" +"GET","/teamwork/deletedTeams/{param}/channels/{param}/tabs/$count","keep",,"Get-MgTeamworkDeletedTeamChannelTabCount","Get-MgTeamworkDeletedTeamChannelTabCount" +"GET","/teamwork/deletedTeams/{param}/channels/$count","keep",,"Get-MgTeamworkDeletedTeamChannelCount","Get-MgTeamworkDeletedTeamChannelCount" +"GET","/teamwork/deletedTeams/{param}/channels/getAllMessages","suppress",,"Get-MgTeamworkDeletedTeamChannelGetAllMessages","no oracle row for GET /teamwork/deletedTeams/{param}/channels/getAllMessages and 'Get-MgTeamworkDeletedTeamChannelGetAllMessages' unshipped" +"GET","/teamwork/deletedTeams/{param}/channels/getAllRetainedMessages","rename","TeamworkDeletedTeamChannelRetainedMessage","Get-MgTeamworkDeletedTeamChannelGetAllRetainedMessages","Get-MgTeamworkDeletedTeamChannelRetainedMessage" +"GET","/teamwork/deletedTeams/$count","keep",,"Get-MgTeamworkDeletedTeamCount","Get-MgTeamworkDeletedTeamCount" +"GET","/teamwork/deletedTeams/getAllMessages","rename","AllTeamworkDeletedTeamMessage","Get-MgTeamworkDeletedTeamGetAllMessages","Get-MgAllTeamworkDeletedTeamMessage" +"GET","/teamwork/teamsAppSettings","keep",,"Get-MgTeamworkTeamAppSetting","Get-MgTeamworkTeamAppSetting" +"GET","/teamwork/workforceIntegrations","keep",,"Get-MgTeamworkWorkforceIntegration","Get-MgTeamworkWorkforceIntegration" +"GET","/teamwork/workforceIntegrations/{param}","keep",,"Get-MgTeamworkWorkforceIntegration","Get-MgTeamworkWorkforceIntegration" +"GET","/teamwork/workforceIntegrations/$count","keep",,"Get-MgTeamworkWorkforceIntegrationCount","Get-MgTeamworkWorkforceIntegrationCount" +"GET","/tenantRelationships/delegatedAdminCustomers","keep",,"Get-MgTenantRelationshipDelegatedAdminCustomer","Get-MgTenantRelationshipDelegatedAdminCustomer" +"GET","/tenantRelationships/delegatedAdminCustomers/{param}","keep",,"Get-MgTenantRelationshipDelegatedAdminCustomer","Get-MgTenantRelationshipDelegatedAdminCustomer" +"GET","/tenantRelationships/delegatedAdminCustomers/{param}/serviceManagementDetails","keep",,"Get-MgTenantRelationshipDelegatedAdminCustomerServiceManagementDetail","Get-MgTenantRelationshipDelegatedAdminCustomerServiceManagementDetail" +"GET","/tenantRelationships/delegatedAdminCustomers/{param}/serviceManagementDetails/{param}","keep",,"Get-MgTenantRelationshipDelegatedAdminCustomerServiceManagementDetail","Get-MgTenantRelationshipDelegatedAdminCustomerServiceManagementDetail" +"GET","/tenantRelationships/delegatedAdminCustomers/{param}/serviceManagementDetails/$count","keep",,"Get-MgTenantRelationshipDelegatedAdminCustomerServiceManagementDetailCount","Get-MgTenantRelationshipDelegatedAdminCustomerServiceManagementDetailCount" +"GET","/tenantRelationships/delegatedAdminCustomers/$count","keep",,"Get-MgTenantRelationshipDelegatedAdminCustomerCount","Get-MgTenantRelationshipDelegatedAdminCustomerCount" +"GET","/tenantRelationships/delegatedAdminRelationships","keep",,"Get-MgTenantRelationshipDelegatedAdminRelationship","Get-MgTenantRelationshipDelegatedAdminRelationship" +"GET","/tenantRelationships/delegatedAdminRelationships/{param}","keep",,"Get-MgTenantRelationshipDelegatedAdminRelationship","Get-MgTenantRelationshipDelegatedAdminRelationship" +"GET","/tenantRelationships/delegatedAdminRelationships/{param}/accessAssignments","keep",,"Get-MgTenantRelationshipDelegatedAdminRelationshipAccessAssignment","Get-MgTenantRelationshipDelegatedAdminRelationshipAccessAssignment" +"GET","/tenantRelationships/delegatedAdminRelationships/{param}/accessAssignments/{param}","keep",,"Get-MgTenantRelationshipDelegatedAdminRelationshipAccessAssignment","Get-MgTenantRelationshipDelegatedAdminRelationshipAccessAssignment" +"GET","/tenantRelationships/delegatedAdminRelationships/{param}/accessAssignments/$count","keep",,"Get-MgTenantRelationshipDelegatedAdminRelationshipAccessAssignmentCount","Get-MgTenantRelationshipDelegatedAdminRelationshipAccessAssignmentCount" +"GET","/tenantRelationships/delegatedAdminRelationships/{param}/operations","keep",,"Get-MgTenantRelationshipDelegatedAdminRelationshipOperation","Get-MgTenantRelationshipDelegatedAdminRelationshipOperation" +"GET","/tenantRelationships/delegatedAdminRelationships/{param}/operations/{param}","keep",,"Get-MgTenantRelationshipDelegatedAdminRelationshipOperation","Get-MgTenantRelationshipDelegatedAdminRelationshipOperation" +"GET","/tenantRelationships/delegatedAdminRelationships/{param}/operations/$count","keep",,"Get-MgTenantRelationshipDelegatedAdminRelationshipOperationCount","Get-MgTenantRelationshipDelegatedAdminRelationshipOperationCount" +"GET","/tenantRelationships/delegatedAdminRelationships/{param}/requests","keep",,"Get-MgTenantRelationshipDelegatedAdminRelationshipRequest","Get-MgTenantRelationshipDelegatedAdminRelationshipRequest" +"GET","/tenantRelationships/delegatedAdminRelationships/{param}/requests/{param}","keep",,"Get-MgTenantRelationshipDelegatedAdminRelationshipRequest","Get-MgTenantRelationshipDelegatedAdminRelationshipRequest" +"GET","/tenantRelationships/delegatedAdminRelationships/{param}/requests/$count","keep",,"Get-MgTenantRelationshipDelegatedAdminRelationshipRequestCount","Get-MgTenantRelationshipDelegatedAdminRelationshipRequestCount" +"GET","/tenantRelationships/delegatedAdminRelationships/$count","keep",,"Get-MgTenantRelationshipDelegatedAdminRelationshipCount","Get-MgTenantRelationshipDelegatedAdminRelationshipCount" +"GET","/tenantRelationships/multiTenantOrganization","keep",,"Get-MgTenantRelationshipMultiTenantOrganization","Get-MgTenantRelationshipMultiTenantOrganization" +"GET","/tenantRelationships/multiTenantOrganization/joinRequest","keep",,"Get-MgTenantRelationshipMultiTenantOrganizationJoinRequest","Get-MgTenantRelationshipMultiTenantOrganizationJoinRequest" +"GET","/tenantRelationships/multiTenantOrganization/tenants","keep",,"Get-MgTenantRelationshipMultiTenantOrganizationTenant","Get-MgTenantRelationshipMultiTenantOrganizationTenant" +"GET","/tenantRelationships/multiTenantOrganization/tenants/{param}","keep",,"Get-MgTenantRelationshipMultiTenantOrganizationTenant","Get-MgTenantRelationshipMultiTenantOrganizationTenant" +"GET","/tenantRelationships/multiTenantOrganization/tenants/$count","keep",,"Get-MgTenantRelationshipMultiTenantOrganizationTenantCount","Get-MgTenantRelationshipMultiTenantOrganizationTenantCount" +"GET","/users","keep",,"Get-MgUser","Get-MgUser" +"GET","/users/{param}","keep",,"Get-MgUser","Get-MgUser" +"GET","/users/{param}/activities","keep",,"Get-MgUserActivity","Get-MgUserActivity" +"GET","/users/{param}/activities/{param}","keep",,"Get-MgUserActivity","Get-MgUserActivity" +"GET","/users/{param}/activities/{param}/historyItems","keep",,"Get-MgUserActivityHistoryItem","Get-MgUserActivityHistoryItem" +"GET","/users/{param}/activities/{param}/historyItems/{param}","keep",,"Get-MgUserActivityHistoryItem","Get-MgUserActivityHistoryItem" +"GET","/users/{param}/activities/{param}/historyItems/{param}/activity","keep",,"Get-MgUserActivityHistoryItemActivity","Get-MgUserActivityHistoryItemActivity" +"GET","/users/{param}/activities/{param}/historyItems/$count","keep",,"Get-MgUserActivityHistoryItemCount","Get-MgUserActivityHistoryItemCount" +"GET","/users/{param}/activities/$count","keep",,"Get-MgUserActivityCount","Get-MgUserActivityCount" +"GET","/users/{param}/activities/recent","rename","RecentUserActivity","Get-MgUserActivityRecent","Invoke-MgRecentUserActivity" +"GET","/users/{param}/agreementAcceptances","keep",,"Get-MgUserAgreementAcceptance","Get-MgUserAgreementAcceptance" +"GET","/users/{param}/agreementAcceptances/{param}","keep",,"Get-MgUserAgreementAcceptance","Get-MgUserAgreementAcceptance" +"GET","/users/{param}/agreementAcceptances/$count","keep",,"Get-MgUserAgreementAcceptanceCount","Get-MgUserAgreementAcceptanceCount" +"GET","/users/{param}/appRoleAssignments","keep",,"Get-MgUserAppRoleAssignment","Get-MgUserAppRoleAssignment" +"GET","/users/{param}/appRoleAssignments/{param}","keep",,"Get-MgUserAppRoleAssignment","Get-MgUserAppRoleAssignment" +"GET","/users/{param}/appRoleAssignments/$count","keep",,"Get-MgUserAppRoleAssignmentCount","Get-MgUserAppRoleAssignmentCount" +"GET","/users/{param}/authentication","suppress",,"Get-MgUserAuthentication","no oracle row for GET /users/{param}/authentication and 'Get-MgUserAuthentication' unshipped" +"GET","/users/{param}/authentication/emailMethods","keep",,"Get-MgUserAuthenticationEmailMethod","Get-MgUserAuthenticationEmailMethod" +"GET","/users/{param}/authentication/emailMethods/{param}","keep",,"Get-MgUserAuthenticationEmailMethod","Get-MgUserAuthenticationEmailMethod" +"GET","/users/{param}/authentication/emailMethods/$count","keep",,"Get-MgUserAuthenticationEmailMethodCount","Get-MgUserAuthenticationEmailMethodCount" +"GET","/users/{param}/authentication/externalAuthenticationMethods","keep",,"Get-MgUserAuthenticationExternalAuthenticationMethod","Get-MgUserAuthenticationExternalAuthenticationMethod" +"GET","/users/{param}/authentication/externalAuthenticationMethods/{param}","keep",,"Get-MgUserAuthenticationExternalAuthenticationMethod","Get-MgUserAuthenticationExternalAuthenticationMethod" +"GET","/users/{param}/authentication/externalAuthenticationMethods/$count","keep",,"Get-MgUserAuthenticationExternalAuthenticationMethodCount","Get-MgUserAuthenticationExternalAuthenticationMethodCount" +"GET","/users/{param}/authentication/fido2Methods","keep",,"Get-MgUserAuthenticationFido2Method","Get-MgUserAuthenticationFido2Method" +"GET","/users/{param}/authentication/fido2Methods/{param}","keep",,"Get-MgUserAuthenticationFido2Method","Get-MgUserAuthenticationFido2Method" +"GET","/users/{param}/authentication/fido2Methods/$count","keep",,"Get-MgUserAuthenticationFido2MethodCount","Get-MgUserAuthenticationFido2MethodCount" +"GET","/users/{param}/authentication/fido2Methods/creationOptions","rename","CreationUserAuthenticationFido2MethodOption","Get-MgUserAuthenticationFido2MethodCreationOptions","Invoke-MgCreationUserAuthenticationFido2MethodOption" +"GET","/users/{param}/authentication/methods","keep",,"Get-MgUserAuthenticationMethod","Get-MgUserAuthenticationMethod" +"GET","/users/{param}/authentication/methods/{param}","keep",,"Get-MgUserAuthenticationMethod","Get-MgUserAuthenticationMethod" +"GET","/users/{param}/authentication/methods/$count","keep",,"Get-MgUserAuthenticationMethodCount","Get-MgUserAuthenticationMethodCount" +"GET","/users/{param}/authentication/microsoftAuthenticatorMethods","keep",,"Get-MgUserAuthenticationMicrosoftAuthenticatorMethod","Get-MgUserAuthenticationMicrosoftAuthenticatorMethod" +"GET","/users/{param}/authentication/microsoftAuthenticatorMethods/{param}","keep",,"Get-MgUserAuthenticationMicrosoftAuthenticatorMethod","Get-MgUserAuthenticationMicrosoftAuthenticatorMethod" +"GET","/users/{param}/authentication/microsoftAuthenticatorMethods/{param}/device","keep",,"Get-MgUserAuthenticationMicrosoftAuthenticatorMethodDevice","Get-MgUserAuthenticationMicrosoftAuthenticatorMethodDevice" +"GET","/users/{param}/authentication/microsoftAuthenticatorMethods/$count","keep",,"Get-MgUserAuthenticationMicrosoftAuthenticatorMethodCount","Get-MgUserAuthenticationMicrosoftAuthenticatorMethodCount" +"GET","/users/{param}/authentication/operations","keep",,"Get-MgUserAuthenticationOperation","Get-MgUserAuthenticationOperation" +"GET","/users/{param}/authentication/operations/{param}","keep",,"Get-MgUserAuthenticationOperation","Get-MgUserAuthenticationOperation" +"GET","/users/{param}/authentication/operations/$count","keep",,"Get-MgUserAuthenticationOperationCount","Get-MgUserAuthenticationOperationCount" +"GET","/users/{param}/authentication/passwordMethods","keep",,"Get-MgUserAuthenticationPasswordMethod","Get-MgUserAuthenticationPasswordMethod" +"GET","/users/{param}/authentication/passwordMethods/{param}","keep",,"Get-MgUserAuthenticationPasswordMethod","Get-MgUserAuthenticationPasswordMethod" +"GET","/users/{param}/authentication/passwordMethods/$count","keep",,"Get-MgUserAuthenticationPasswordMethodCount","Get-MgUserAuthenticationPasswordMethodCount" +"GET","/users/{param}/authentication/phoneMethods","keep",,"Get-MgUserAuthenticationPhoneMethod","Get-MgUserAuthenticationPhoneMethod" +"GET","/users/{param}/authentication/phoneMethods/{param}","keep",,"Get-MgUserAuthenticationPhoneMethod","Get-MgUserAuthenticationPhoneMethod" +"GET","/users/{param}/authentication/phoneMethods/$count","keep",,"Get-MgUserAuthenticationPhoneMethodCount","Get-MgUserAuthenticationPhoneMethodCount" +"GET","/users/{param}/authentication/platformCredentialMethods","keep",,"Get-MgUserAuthenticationPlatformCredentialMethod","Get-MgUserAuthenticationPlatformCredentialMethod" +"GET","/users/{param}/authentication/platformCredentialMethods/{param}","keep",,"Get-MgUserAuthenticationPlatformCredentialMethod","Get-MgUserAuthenticationPlatformCredentialMethod" +"GET","/users/{param}/authentication/platformCredentialMethods/{param}/device","keep",,"Get-MgUserAuthenticationPlatformCredentialMethodDevice","Get-MgUserAuthenticationPlatformCredentialMethodDevice" +"GET","/users/{param}/authentication/platformCredentialMethods/$count","keep",,"Get-MgUserAuthenticationPlatformCredentialMethodCount","Get-MgUserAuthenticationPlatformCredentialMethodCount" +"GET","/users/{param}/authentication/softwareOathMethods","keep",,"Get-MgUserAuthenticationSoftwareOathMethod","Get-MgUserAuthenticationSoftwareOathMethod" +"GET","/users/{param}/authentication/softwareOathMethods/{param}","keep",,"Get-MgUserAuthenticationSoftwareOathMethod","Get-MgUserAuthenticationSoftwareOathMethod" +"GET","/users/{param}/authentication/softwareOathMethods/$count","keep",,"Get-MgUserAuthenticationSoftwareOathMethodCount","Get-MgUserAuthenticationSoftwareOathMethodCount" +"GET","/users/{param}/authentication/temporaryAccessPassMethods","keep",,"Get-MgUserAuthenticationTemporaryAccessPassMethod","Get-MgUserAuthenticationTemporaryAccessPassMethod" +"GET","/users/{param}/authentication/temporaryAccessPassMethods/{param}","keep",,"Get-MgUserAuthenticationTemporaryAccessPassMethod","Get-MgUserAuthenticationTemporaryAccessPassMethod" +"GET","/users/{param}/authentication/temporaryAccessPassMethods/$count","keep",,"Get-MgUserAuthenticationTemporaryAccessPassMethodCount","Get-MgUserAuthenticationTemporaryAccessPassMethodCount" +"GET","/users/{param}/authentication/windowsHelloForBusinessMethods","keep",,"Get-MgUserAuthenticationWindowsHelloForBusinessMethod","Get-MgUserAuthenticationWindowsHelloForBusinessMethod" +"GET","/users/{param}/authentication/windowsHelloForBusinessMethods/{param}","keep",,"Get-MgUserAuthenticationWindowsHelloForBusinessMethod","Get-MgUserAuthenticationWindowsHelloForBusinessMethod" +"GET","/users/{param}/authentication/windowsHelloForBusinessMethods/{param}/device","keep",,"Get-MgUserAuthenticationWindowsHelloForBusinessMethodDevice","Get-MgUserAuthenticationWindowsHelloForBusinessMethodDevice" +"GET","/users/{param}/authentication/windowsHelloForBusinessMethods/$count","keep",,"Get-MgUserAuthenticationWindowsHelloForBusinessMethodCount","Get-MgUserAuthenticationWindowsHelloForBusinessMethodCount" +"GET","/users/{param}/calendar","keep",,"Get-MgUserDefaultCalendar","Get-MgUserDefaultCalendar" +"GET","/users/{param}/calendar/calendarPermissions","keep",,"Get-MgUserCalendarPermission","Get-MgUserCalendarPermission" +"GET","/users/{param}/calendar/calendarPermissions/{param}","keep",,"Get-MgUserCalendarPermission","Get-MgUserCalendarPermission" +"GET","/users/{param}/calendar/calendarPermissions/$count","keep",,"Get-MgUserCalendarPermissionCount","Get-MgUserCalendarPermissionCount" +"GET","/users/{param}/calendar/calendarView","keep",,"Get-MgUserCalendarView","Get-MgUserCalendarView" +"GET","/users/{param}/calendar/calendarView/delta","suppress",,"Get-MgUserCalendarViewDelta","no oracle row for GET /users/{param}/calendar/calendarView/delta and 'Get-MgUserCalendarViewDelta' unshipped" +"GET","/users/{param}/calendar/events","keep",,"Get-MgUserDefaultCalendarEvent","Get-MgUserDefaultCalendarEvent" +"GET","/users/{param}/calendar/events/$count","suppress",,"Get-MgUserCalendarEventCount","no oracle row for GET /users/{param}/calendar/events/$count and 'Get-MgUserCalendarEventCount' unshipped" +"GET","/users/{param}/calendar/events/delta","suppress",,"Get-MgUserCalendarEventDelta","no oracle row for GET /users/{param}/calendar/events/delta and 'Get-MgUserCalendarEventDelta' unshipped" +"GET","/users/{param}/calendarGroups","keep",,"Get-MgUserCalendarGroup","Get-MgUserCalendarGroup" +"GET","/users/{param}/calendarGroups/{param}","keep",,"Get-MgUserCalendarGroup","Get-MgUserCalendarGroup" +"GET","/users/{param}/calendarGroups/{param}/calendars","keep",,"Get-MgUserCalendarGroupCalendar","Get-MgUserCalendarGroupCalendar" +"GET","/users/{param}/calendarGroups/{param}/calendars/{param}","defer-crosspath",,"Get-MgUserCalendarGroupCalendar","Get-MgUserCalendarGroupCalendar ships from a different uri" +"GET","/users/{param}/calendarGroups/{param}/calendars/{param}/calendarPermissions","suppress",,"Get-MgUserCalendarGroupCalendarPermission","no oracle row for GET /users/{param}/calendarGroups/{param}/calendars/{param}/calendarPermissions and 'Get-MgUserCalendarGroupCalendarPermission' unshipped" +"GET","/users/{param}/calendarGroups/{param}/calendars/{param}/calendarPermissions/{param}","suppress",,"Get-MgUserCalendarGroupCalendarPermission","no oracle row for GET /users/{param}/calendarGroups/{param}/calendars/{param}/calendarPermissions/{param} and 'Get-MgUserCalendarGroupCalendarPermission' unshipped" +"GET","/users/{param}/calendarGroups/{param}/calendars/{param}/calendarPermissions/$count","suppress",,"Get-MgUserCalendarGroupCalendarPermissionCount","no oracle row for GET /users/{param}/calendarGroups/{param}/calendars/{param}/calendarPermissions/$count and 'Get-MgUserCalendarGroupCalendarPermissionCount' unshipped" +"GET","/users/{param}/calendarGroups/{param}/calendars/{param}/calendarView","suppress",,"Get-MgUserCalendarGroupCalendarView","no oracle row for GET /users/{param}/calendarGroups/{param}/calendars/{param}/calendarView and 'Get-MgUserCalendarGroupCalendarView' unshipped" +"GET","/users/{param}/calendarGroups/{param}/calendars/{param}/calendarView/delta","suppress",,"Get-MgUserCalendarGroupCalendarViewDelta","no oracle row for GET /users/{param}/calendarGroups/{param}/calendars/{param}/calendarView/delta and 'Get-MgUserCalendarGroupCalendarViewDelta' unshipped" +"GET","/users/{param}/calendarGroups/{param}/calendars/{param}/events","suppress",,"Get-MgUserCalendarGroupCalendarEvent","no oracle row for GET /users/{param}/calendarGroups/{param}/calendars/{param}/events and 'Get-MgUserCalendarGroupCalendarEvent' unshipped" +"GET","/users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}","suppress",,"Get-MgUserCalendarGroupCalendarEvent","no oracle row for GET /users/{param}/calendarGroups/{param}/calendars/{param}/events/{param} and 'Get-MgUserCalendarGroupCalendarEvent' unshipped" +"GET","/users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/attachments","suppress",,"Get-MgUserCalendarGroupCalendarEventAttachment","no oracle row for GET /users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/attachments and 'Get-MgUserCalendarGroupCalendarEventAttachment' unshipped" +"GET","/users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/attachments/{param}","suppress",,"Get-MgUserCalendarGroupCalendarEventAttachment","no oracle row for GET /users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/attachments/{param} and 'Get-MgUserCalendarGroupCalendarEventAttachment' unshipped" +"GET","/users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/attachments/$count","suppress",,"Get-MgUserCalendarGroupCalendarEventAttachmentCount","no oracle row for GET /users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/attachments/$count and 'Get-MgUserCalendarGroupCalendarEventAttachmentCount' unshipped" +"GET","/users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/calendar","suppress",,"Get-MgUserCalendarGroupCalendarEventCalendar","no oracle row for GET /users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/calendar and 'Get-MgUserCalendarGroupCalendarEventCalendar' unshipped" +"GET","/users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/extensions","suppress",,"Get-MgUserCalendarGroupCalendarEventExtension","no oracle row for GET /users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/extensions and 'Get-MgUserCalendarGroupCalendarEventExtension' unshipped" +"GET","/users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/extensions/{param}","suppress",,"Get-MgUserCalendarGroupCalendarEventExtension","no oracle row for GET /users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/extensions/{param} and 'Get-MgUserCalendarGroupCalendarEventExtension' unshipped" +"GET","/users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/extensions/$count","suppress",,"Get-MgUserCalendarGroupCalendarEventExtensionCount","no oracle row for GET /users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/extensions/$count and 'Get-MgUserCalendarGroupCalendarEventExtensionCount' unshipped" +"GET","/users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/instances","suppress",,"Get-MgUserCalendarGroupCalendarEventInstance","no oracle row for GET /users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/instances and 'Get-MgUserCalendarGroupCalendarEventInstance' unshipped" +"GET","/users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/instances/delta","suppress",,"Get-MgUserCalendarGroupCalendarEventInstanceDelta","no oracle row for GET /users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/instances/delta and 'Get-MgUserCalendarGroupCalendarEventInstanceDelta' unshipped" +"GET","/users/{param}/calendarGroups/{param}/calendars/{param}/events/$count","suppress",,"Get-MgUserCalendarGroupCalendarEventCount","no oracle row for GET /users/{param}/calendarGroups/{param}/calendars/{param}/events/$count and 'Get-MgUserCalendarGroupCalendarEventCount' unshipped" +"GET","/users/{param}/calendarGroups/{param}/calendars/{param}/events/delta","suppress",,"Get-MgUserCalendarGroupCalendarEventDelta","no oracle row for GET /users/{param}/calendarGroups/{param}/calendars/{param}/events/delta and 'Get-MgUserCalendarGroupCalendarEventDelta' unshipped" +"GET","/users/{param}/calendarGroups/{param}/calendars/$count","suppress",,"Get-MgUserCalendarGroupCalendarCount","no oracle row for GET /users/{param}/calendarGroups/{param}/calendars/$count and 'Get-MgUserCalendarGroupCalendarCount' unshipped" +"GET","/users/{param}/calendarGroups/$count","keep",,"Get-MgUserCalendarGroupCount","Get-MgUserCalendarGroupCount" +"GET","/users/{param}/calendars","keep",,"Get-MgUserCalendar","Get-MgUserCalendar" +"GET","/users/{param}/calendars/{param}","keep",,"Get-MgUserCalendar","Get-MgUserCalendar" +"GET","/users/{param}/calendars/{param}/events","keep",,"Get-MgUserCalendarEvent","Get-MgUserCalendarEvent" +"GET","/users/{param}/calendars/$count","keep",,"Get-MgUserCalendarCount","Get-MgUserCalendarCount" +"GET","/users/{param}/chats","keep",,"Get-MgUserChat","Get-MgUserChat" +"GET","/users/{param}/chats/{param}","keep",,"Get-MgUserChat","Get-MgUserChat" +"GET","/users/{param}/chats/{param}/installedApps","keep",,"Get-MgUserChatInstalledApp","Get-MgUserChatInstalledApp" +"GET","/users/{param}/chats/{param}/installedApps/{param}","keep",,"Get-MgUserChatInstalledApp","Get-MgUserChatInstalledApp" +"GET","/users/{param}/chats/{param}/installedApps/{param}/teamsApp","keep",,"Get-MgUserChatInstalledAppTeamApp","Get-MgUserChatInstalledAppTeamApp" +"GET","/users/{param}/chats/{param}/installedApps/{param}/teamsAppDefinition","keep",,"Get-MgUserChatInstalledAppTeamAppDefinition","Get-MgUserChatInstalledAppTeamAppDefinition" +"GET","/users/{param}/chats/{param}/installedApps/$count","keep",,"Get-MgUserChatInstalledAppCount","Get-MgUserChatInstalledAppCount" +"GET","/users/{param}/chats/{param}/lastMessagePreview","keep",,"Get-MgUserChatLastMessagePreview","Get-MgUserChatLastMessagePreview" +"GET","/users/{param}/chats/{param}/members","keep",,"Get-MgUserChatMember","Get-MgUserChatMember" +"GET","/users/{param}/chats/{param}/members/{param}","keep",,"Get-MgUserChatMember","Get-MgUserChatMember" +"GET","/users/{param}/chats/{param}/members/$count","keep",,"Get-MgUserChatMemberCount","Get-MgUserChatMemberCount" +"GET","/users/{param}/chats/{param}/messages","rename","AllUserChatMessage","Get-MgUserChatMessage","Get-MgAllUserChatMessage" +"GET","/users/{param}/chats/{param}/messages/{param}","rename","AllUserChatMessage","Get-MgUserChatMessage","Get-MgAllUserChatMessage" +"GET","/users/{param}/chats/{param}/messages/{param}/hostedContents","keep",,"Get-MgUserChatMessageHostedContent","Get-MgUserChatMessageHostedContent" +"GET","/users/{param}/chats/{param}/messages/{param}/hostedContents/{param}","keep",,"Get-MgUserChatMessageHostedContent","Get-MgUserChatMessageHostedContent" +"GET","/users/{param}/chats/{param}/messages/{param}/hostedContents/{param}/$value","suppress",,"Get-MgUserChatMessageHostedContentContent","no oracle row for GET /users/{param}/chats/{param}/messages/{param}/hostedContents/{param}/$value and 'Get-MgUserChatMessageHostedContentContent' unshipped" +"GET","/users/{param}/chats/{param}/messages/{param}/hostedContents/$count","keep",,"Get-MgUserChatMessageHostedContentCount","Get-MgUserChatMessageHostedContentCount" +"GET","/users/{param}/chats/{param}/messages/{param}/replies","keep",,"Get-MgUserChatMessageReply","Get-MgUserChatMessageReply" +"GET","/users/{param}/chats/{param}/messages/{param}/replies/{param}","keep",,"Get-MgUserChatMessageReply","Get-MgUserChatMessageReply" +"GET","/users/{param}/chats/{param}/messages/{param}/replies/{param}/hostedContents","keep",,"Get-MgUserChatMessageReplyHostedContent","Get-MgUserChatMessageReplyHostedContent" +"GET","/users/{param}/chats/{param}/messages/{param}/replies/{param}/hostedContents/{param}","keep",,"Get-MgUserChatMessageReplyHostedContent","Get-MgUserChatMessageReplyHostedContent" +"GET","/users/{param}/chats/{param}/messages/{param}/replies/{param}/hostedContents/{param}/$value","suppress",,"Get-MgUserChatMessageReplyHostedContentContent","no oracle row for GET /users/{param}/chats/{param}/messages/{param}/replies/{param}/hostedContents/{param}/$value and 'Get-MgUserChatMessageReplyHostedContentContent' unshipped" +"GET","/users/{param}/chats/{param}/messages/{param}/replies/{param}/hostedContents/$count","keep",,"Get-MgUserChatMessageReplyHostedContentCount","Get-MgUserChatMessageReplyHostedContentCount" +"GET","/users/{param}/chats/{param}/messages/{param}/replies/$count","keep",,"Get-MgUserChatMessageReplyCount","Get-MgUserChatMessageReplyCount" +"GET","/users/{param}/chats/{param}/messages/{param}/replies/delta","keep",,"Get-MgUserChatMessageReplyDelta","Get-MgUserChatMessageReplyDelta" +"GET","/users/{param}/chats/{param}/messages/$count","keep",,"Get-MgUserChatMessageCount","Get-MgUserChatMessageCount" +"GET","/users/{param}/chats/{param}/messages/delta","keep",,"Get-MgUserChatMessageDelta","Get-MgUserChatMessageDelta" +"GET","/users/{param}/chats/{param}/permissionGrants","keep",,"Get-MgUserChatPermissionGrant","Get-MgUserChatPermissionGrant" +"GET","/users/{param}/chats/{param}/permissionGrants/{param}","keep",,"Get-MgUserChatPermissionGrant","Get-MgUserChatPermissionGrant" +"GET","/users/{param}/chats/{param}/permissionGrants/$count","keep",,"Get-MgUserChatPermissionGrantCount","Get-MgUserChatPermissionGrantCount" +"GET","/users/{param}/chats/{param}/pinnedMessages","keep",,"Get-MgUserChatPinnedMessage","Get-MgUserChatPinnedMessage" +"GET","/users/{param}/chats/{param}/pinnedMessages/{param}","keep",,"Get-MgUserChatPinnedMessage","Get-MgUserChatPinnedMessage" +"GET","/users/{param}/chats/{param}/pinnedMessages/$count","keep",,"Get-MgUserChatPinnedMessageCount","Get-MgUserChatPinnedMessageCount" +"GET","/users/{param}/chats/{param}/tabs","keep",,"Get-MgUserChatTab","Get-MgUserChatTab" +"GET","/users/{param}/chats/{param}/tabs/{param}","keep",,"Get-MgUserChatTab","Get-MgUserChatTab" +"GET","/users/{param}/chats/{param}/tabs/{param}/teamsApp","keep",,"Get-MgUserChatTabTeamApp","Get-MgUserChatTabTeamApp" +"GET","/users/{param}/chats/{param}/tabs/$count","keep",,"Get-MgUserChatTabCount","Get-MgUserChatTabCount" +"GET","/users/{param}/chats/{param}/targetedMessages","keep",,"Get-MgUserChatTargetedMessage","Get-MgUserChatTargetedMessage" +"GET","/users/{param}/chats/{param}/targetedMessages/{param}","keep",,"Get-MgUserChatTargetedMessage","Get-MgUserChatTargetedMessage" +"GET","/users/{param}/chats/{param}/targetedMessages/{param}/hostedContents","keep",,"Get-MgUserChatTargetedMessageHostedContent","Get-MgUserChatTargetedMessageHostedContent" +"GET","/users/{param}/chats/{param}/targetedMessages/{param}/hostedContents/{param}","keep",,"Get-MgUserChatTargetedMessageHostedContent","Get-MgUserChatTargetedMessageHostedContent" +"GET","/users/{param}/chats/{param}/targetedMessages/{param}/hostedContents/{param}/$value","suppress",,"Get-MgUserChatTargetedMessageHostedContentContent","no oracle row for GET /users/{param}/chats/{param}/targetedMessages/{param}/hostedContents/{param}/$value and 'Get-MgUserChatTargetedMessageHostedContentContent' unshipped" +"GET","/users/{param}/chats/{param}/targetedMessages/{param}/hostedContents/$count","keep",,"Get-MgUserChatTargetedMessageHostedContentCount","Get-MgUserChatTargetedMessageHostedContentCount" +"GET","/users/{param}/chats/{param}/targetedMessages/{param}/replies","keep",,"Get-MgUserChatTargetedMessageReply","Get-MgUserChatTargetedMessageReply" +"GET","/users/{param}/chats/{param}/targetedMessages/{param}/replies/{param}","keep",,"Get-MgUserChatTargetedMessageReply","Get-MgUserChatTargetedMessageReply" +"GET","/users/{param}/chats/{param}/targetedMessages/{param}/replies/{param}/hostedContents","keep",,"Get-MgUserChatTargetedMessageReplyHostedContent","Get-MgUserChatTargetedMessageReplyHostedContent" +"GET","/users/{param}/chats/{param}/targetedMessages/{param}/replies/{param}/hostedContents/{param}","keep",,"Get-MgUserChatTargetedMessageReplyHostedContent","Get-MgUserChatTargetedMessageReplyHostedContent" +"GET","/users/{param}/chats/{param}/targetedMessages/{param}/replies/{param}/hostedContents/{param}/$value","suppress",,"Get-MgUserChatTargetedMessageReplyHostedContentContent","no oracle row for GET /users/{param}/chats/{param}/targetedMessages/{param}/replies/{param}/hostedContents/{param}/$value and 'Get-MgUserChatTargetedMessageReplyHostedContentContent' unshipped" +"GET","/users/{param}/chats/{param}/targetedMessages/{param}/replies/{param}/hostedContents/$count","keep",,"Get-MgUserChatTargetedMessageReplyHostedContentCount","Get-MgUserChatTargetedMessageReplyHostedContentCount" +"GET","/users/{param}/chats/{param}/targetedMessages/{param}/replies/$count","keep",,"Get-MgUserChatTargetedMessageReplyCount","Get-MgUserChatTargetedMessageReplyCount" +"GET","/users/{param}/chats/{param}/targetedMessages/{param}/replies/delta","keep",,"Get-MgUserChatTargetedMessageReplyDelta","Get-MgUserChatTargetedMessageReplyDelta" +"GET","/users/{param}/chats/{param}/targetedMessages/$count","keep",,"Get-MgUserChatTargetedMessageCount","Get-MgUserChatTargetedMessageCount" +"GET","/users/{param}/chats/$count","keep",,"Get-MgUserChatCount","Get-MgUserChatCount" +"GET","/users/{param}/chats/getAllMessages","suppress",,"Get-MgUserChatGetAllMessages","no oracle row for GET /users/{param}/chats/getAllMessages and 'Get-MgUserChatGetAllMessages' unshipped" +"GET","/users/{param}/chats/getAllRetainedMessages","rename","UserChatRetainedMessage","Get-MgUserChatGetAllRetainedMessages","Get-MgUserChatRetainedMessage" +"GET","/users/{param}/contactFolders","keep",,"Get-MgUserContactFolder","Get-MgUserContactFolder" +"GET","/users/{param}/contactFolders/{param}","keep",,"Get-MgUserContactFolder","Get-MgUserContactFolder" +"GET","/users/{param}/contactFolders/{param}/childFolders","keep",,"Get-MgUserContactFolderChildFolder","Get-MgUserContactFolderChildFolder" +"GET","/users/{param}/contactFolders/{param}/childFolders/{param}","keep",,"Get-MgUserContactFolderChildFolder","Get-MgUserContactFolderChildFolder" +"GET","/users/{param}/contactFolders/{param}/childFolders/{param}/contacts","keep",,"Get-MgUserContactFolderChildFolderContact","Get-MgUserContactFolderChildFolderContact" +"GET","/users/{param}/contactFolders/{param}/childFolders/{param}/contacts/{param}","keep",,"Get-MgUserContactFolderChildFolderContact","Get-MgUserContactFolderChildFolderContact" +"GET","/users/{param}/contactFolders/{param}/childFolders/{param}/contacts/{param}/extensions","keep",,"Get-MgUserContactFolderChildFolderContactExtension","Get-MgUserContactFolderChildFolderContactExtension" +"GET","/users/{param}/contactFolders/{param}/childFolders/{param}/contacts/{param}/extensions/{param}","keep",,"Get-MgUserContactFolderChildFolderContactExtension","Get-MgUserContactFolderChildFolderContactExtension" +"GET","/users/{param}/contactFolders/{param}/childFolders/{param}/contacts/{param}/extensions/$count","keep",,"Get-MgUserContactFolderChildFolderContactExtensionCount","Get-MgUserContactFolderChildFolderContactExtensionCount" +"GET","/users/{param}/contactFolders/{param}/childFolders/{param}/contacts/{param}/photo","keep",,"Get-MgUserContactFolderChildFolderContactPhoto","Get-MgUserContactFolderChildFolderContactPhoto" +"GET","/users/{param}/contactFolders/{param}/childFolders/{param}/contacts/{param}/photo/$value","keep",,"Get-MgUserContactFolderChildFolderContactPhotoContent","Get-MgUserContactFolderChildFolderContactPhotoContent" +"GET","/users/{param}/contactFolders/{param}/childFolders/{param}/contacts/$count","keep",,"Get-MgUserContactFolderChildFolderContactCount","Get-MgUserContactFolderChildFolderContactCount" +"GET","/users/{param}/contactFolders/{param}/childFolders/{param}/contacts/delta","keep",,"Get-MgUserContactFolderChildFolderContactDelta","Get-MgUserContactFolderChildFolderContactDelta" +"GET","/users/{param}/contactFolders/{param}/childFolders/$count","keep",,"Get-MgUserContactFolderChildFolderCount","Get-MgUserContactFolderChildFolderCount" +"GET","/users/{param}/contactFolders/{param}/childFolders/delta","keep",,"Get-MgUserContactFolderChildFolderDelta","Get-MgUserContactFolderChildFolderDelta" +"GET","/users/{param}/contactFolders/{param}/contacts","keep",,"Get-MgUserContactFolderContact","Get-MgUserContactFolderContact" +"GET","/users/{param}/contactFolders/{param}/contacts/{param}","keep",,"Get-MgUserContactFolderContact","Get-MgUserContactFolderContact" +"GET","/users/{param}/contactFolders/{param}/contacts/{param}/extensions","keep",,"Get-MgUserContactFolderContactExtension","Get-MgUserContactFolderContactExtension" +"GET","/users/{param}/contactFolders/{param}/contacts/{param}/extensions/{param}","keep",,"Get-MgUserContactFolderContactExtension","Get-MgUserContactFolderContactExtension" +"GET","/users/{param}/contactFolders/{param}/contacts/{param}/extensions/$count","keep",,"Get-MgUserContactFolderContactExtensionCount","Get-MgUserContactFolderContactExtensionCount" +"GET","/users/{param}/contactFolders/{param}/contacts/{param}/photo","keep",,"Get-MgUserContactFolderContactPhoto","Get-MgUserContactFolderContactPhoto" +"GET","/users/{param}/contactFolders/{param}/contacts/{param}/photo/$value","keep",,"Get-MgUserContactFolderContactPhotoContent","Get-MgUserContactFolderContactPhotoContent" +"GET","/users/{param}/contactFolders/{param}/contacts/$count","keep",,"Get-MgUserContactFolderContactCount","Get-MgUserContactFolderContactCount" +"GET","/users/{param}/contactFolders/{param}/contacts/delta","keep",,"Get-MgUserContactFolderContactDelta","Get-MgUserContactFolderContactDelta" +"GET","/users/{param}/contactFolders/$count","keep",,"Get-MgUserContactFolderCount","Get-MgUserContactFolderCount" +"GET","/users/{param}/contactFolders/delta","keep",,"Get-MgUserContactFolderDelta","Get-MgUserContactFolderDelta" +"GET","/users/{param}/contacts","keep",,"Get-MgUserContact","Get-MgUserContact" +"GET","/users/{param}/contacts/{param}","keep",,"Get-MgUserContact","Get-MgUserContact" +"GET","/users/{param}/contacts/{param}/extensions","keep",,"Get-MgUserContactExtension","Get-MgUserContactExtension" +"GET","/users/{param}/contacts/{param}/extensions/{param}","keep",,"Get-MgUserContactExtension","Get-MgUserContactExtension" +"GET","/users/{param}/contacts/{param}/extensions/$count","keep",,"Get-MgUserContactExtensionCount","Get-MgUserContactExtensionCount" +"GET","/users/{param}/contacts/{param}/photo","keep",,"Get-MgUserContactPhoto","Get-MgUserContactPhoto" +"GET","/users/{param}/contacts/{param}/photo/$value","keep",,"Get-MgUserContactPhotoContent","Get-MgUserContactPhotoContent" +"GET","/users/{param}/contacts/$count","keep",,"Get-MgUserContactCount","Get-MgUserContactCount" +"GET","/users/{param}/contacts/delta","keep",,"Get-MgUserContactDelta","Get-MgUserContactDelta" +"GET","/users/{param}/createdObjects","keep",,"Get-MgUserCreatedObject","Get-MgUserCreatedObject" +"GET","/users/{param}/createdObjects/{param}","keep",,"Get-MgUserCreatedObject","Get-MgUserCreatedObject" +"GET","/users/{param}/createdObjects/$count","keep",,"Get-MgUserCreatedObjectCount","Get-MgUserCreatedObjectCount" +"GET","/users/{param}/deviceManagementTroubleshootingEvents","keep",,"Get-MgUserDeviceManagementTroubleshootingEvent","Get-MgUserDeviceManagementTroubleshootingEvent" +"GET","/users/{param}/deviceManagementTroubleshootingEvents/{param}","keep",,"Get-MgUserDeviceManagementTroubleshootingEvent","Get-MgUserDeviceManagementTroubleshootingEvent" +"GET","/users/{param}/deviceManagementTroubleshootingEvents/$count","keep",,"Get-MgUserDeviceManagementTroubleshootingEventCount","Get-MgUserDeviceManagementTroubleshootingEventCount" +"GET","/users/{param}/directReports","keep",,"Get-MgUserDirectReport","Get-MgUserDirectReport" +"GET","/users/{param}/directReports/{param}","keep",,"Get-MgUserDirectReport","Get-MgUserDirectReport" +"GET","/users/{param}/directReports/$count","keep",,"Get-MgUserDirectReportCount","Get-MgUserDirectReportCount" +"GET","/users/{param}/drive","keep",,"Get-MgUserDefaultDrive","Get-MgUserDefaultDrive" +"GET","/users/{param}/drives","keep",,"Get-MgUserDrive","Get-MgUserDrive" +"GET","/users/{param}/drives/{param}","keep",,"Get-MgUserDrive","Get-MgUserDrive" +"GET","/users/{param}/drives/$count","keep",,"Get-MgUserDriveCount","Get-MgUserDriveCount" +"GET","/users/{param}/events","keep",,"Get-MgUserEvent","Get-MgUserEvent" +"GET","/users/{param}/events/{param}","keep",,"Get-MgUserEvent","Get-MgUserEvent" +"GET","/users/{param}/events/{param}/attachments","keep",,"Get-MgUserEventAttachment","Get-MgUserEventAttachment" +"GET","/users/{param}/events/{param}/attachments/{param}","keep",,"Get-MgUserEventAttachment","Get-MgUserEventAttachment" +"GET","/users/{param}/events/{param}/attachments/$count","keep",,"Get-MgUserEventAttachmentCount","Get-MgUserEventAttachmentCount" +"GET","/users/{param}/events/{param}/calendar","keep",,"Get-MgUserEventCalendar","Get-MgUserEventCalendar" +"GET","/users/{param}/events/{param}/extensions","keep",,"Get-MgUserEventExtension","Get-MgUserEventExtension" +"GET","/users/{param}/events/{param}/extensions/{param}","keep",,"Get-MgUserEventExtension","Get-MgUserEventExtension" +"GET","/users/{param}/events/{param}/extensions/$count","keep",,"Get-MgUserEventExtensionCount","Get-MgUserEventExtensionCount" +"GET","/users/{param}/events/{param}/instances","keep",,"Get-MgUserEventInstance","Get-MgUserEventInstance" +"GET","/users/{param}/events/{param}/instances/delta","keep",,"Get-MgUserEventInstanceDelta","Get-MgUserEventInstanceDelta" +"GET","/users/{param}/events/$count","keep",,"Get-MgUserEventCount","Get-MgUserEventCount" +"GET","/users/{param}/events/delta","keep",,"Get-MgUserEventDelta","Get-MgUserEventDelta" +"GET","/users/{param}/exportDeviceAndAppManagementData","rename","UserDeviceAndAppManagementData","Get-MgUserExportDeviceAndAppManagementData","Export-MgUserDeviceAndAppManagementData" +"GET","/users/{param}/extensions","keep",,"Get-MgUserExtension","Get-MgUserExtension" +"GET","/users/{param}/extensions/{param}","keep",,"Get-MgUserExtension","Get-MgUserExtension" +"GET","/users/{param}/extensions/$count","keep",,"Get-MgUserExtensionCount","Get-MgUserExtensionCount" +"GET","/users/{param}/followedSites","keep",,"Get-MgUserFollowedSite","Get-MgUserFollowedSite" +"GET","/users/{param}/followedSites/{param}","keep",,"Get-MgUserFollowedSite","Get-MgUserFollowedSite" +"GET","/users/{param}/followedSites/$count","keep",,"Get-MgUserFollowedSiteCount","Get-MgUserFollowedSiteCount" +"GET","/users/{param}/getManagedAppDiagnosticStatuses","rename","UserManagedAppDiagnosticStatus","Get-MgUserGetManagedAppDiagnosticStatuses","Get-MgUserManagedAppDiagnosticStatus" +"GET","/users/{param}/getManagedAppPolicies","rename","UserManagedAppPolicy","Get-MgUserGetManagedAppPolicies","Get-MgUserManagedAppPolicy" +"GET","/users/{param}/getManagedDevicesWithAppFailures","rename","UserManagedDeviceWithAppFailure","Get-MgUserGetManagedDevicesWithAppFailures","Get-MgUserManagedDeviceWithAppFailure" +"GET","/users/{param}/inferenceClassification","keep",,"Get-MgUserInferenceClassification","Get-MgUserInferenceClassification" +"GET","/users/{param}/inferenceClassification/overrides","keep",,"Get-MgUserInferenceClassificationOverride","Get-MgUserInferenceClassificationOverride" +"GET","/users/{param}/inferenceClassification/overrides/{param}","keep",,"Get-MgUserInferenceClassificationOverride","Get-MgUserInferenceClassificationOverride" +"GET","/users/{param}/inferenceClassification/overrides/$count","keep",,"Get-MgUserInferenceClassificationOverrideCount","Get-MgUserInferenceClassificationOverrideCount" +"GET","/users/{param}/insights","keep",,"Get-MgUserInsight","Get-MgUserInsight" +"GET","/users/{param}/insights/shared","keep",,"Get-MgUserInsightShared","Get-MgUserInsightShared" +"GET","/users/{param}/insights/shared/{param}","keep",,"Get-MgUserInsightShared","Get-MgUserInsightShared" +"GET","/users/{param}/insights/shared/{param}/lastSharedMethod","keep",,"Get-MgUserInsightSharedLastSharedMethod","Get-MgUserInsightSharedLastSharedMethod" +"GET","/users/{param}/insights/shared/{param}/resource","keep",,"Get-MgUserInsightSharedResource","Get-MgUserInsightSharedResource" +"GET","/users/{param}/insights/shared/$count","keep",,"Get-MgUserInsightSharedCount","Get-MgUserInsightSharedCount" +"GET","/users/{param}/insights/trending","keep",,"Get-MgUserInsightTrending","Get-MgUserInsightTrending" +"GET","/users/{param}/insights/trending/{param}","keep",,"Get-MgUserInsightTrending","Get-MgUserInsightTrending" +"GET","/users/{param}/insights/trending/{param}/resource","keep",,"Get-MgUserInsightTrendingResource","Get-MgUserInsightTrendingResource" +"GET","/users/{param}/insights/trending/$count","keep",,"Get-MgUserInsightTrendingCount","Get-MgUserInsightTrendingCount" +"GET","/users/{param}/insights/used","keep",,"Get-MgUserInsightUsed","Get-MgUserInsightUsed" +"GET","/users/{param}/insights/used/{param}","keep",,"Get-MgUserInsightUsed","Get-MgUserInsightUsed" +"GET","/users/{param}/insights/used/{param}/resource","keep",,"Get-MgUserInsightUsedResource","Get-MgUserInsightUsedResource" +"GET","/users/{param}/insights/used/$count","keep",,"Get-MgUserInsightUsedCount","Get-MgUserInsightUsedCount" +"GET","/users/{param}/joinedTeams","keep",,"Get-MgUserJoinedTeam","Get-MgUserJoinedTeam" +"GET","/users/{param}/joinedTeams/{param}","defer-crosspath",,"Get-MgUserJoinedTeam","Get-MgUserJoinedTeam ships from a different uri" +"GET","/users/{param}/joinedTeams/{param}/allChannels","suppress",,"Get-MgUserJoinedTeamAllChannel","no oracle row for GET /users/{param}/joinedTeams/{param}/allChannels and 'Get-MgUserJoinedTeamAllChannel' unshipped" +"GET","/users/{param}/joinedTeams/{param}/allChannels/{param}","suppress",,"Get-MgUserJoinedTeamAllChannel","no oracle row for GET /users/{param}/joinedTeams/{param}/allChannels/{param} and 'Get-MgUserJoinedTeamAllChannel' unshipped" +"GET","/users/{param}/joinedTeams/{param}/allChannels/$count","suppress",,"Get-MgUserJoinedTeamAllChannelCount","no oracle row for GET /users/{param}/joinedTeams/{param}/allChannels/$count and 'Get-MgUserJoinedTeamAllChannelCount' unshipped" +"GET","/users/{param}/joinedTeams/{param}/channels","suppress",,"Get-MgUserJoinedTeamChannel","no oracle row for GET /users/{param}/joinedTeams/{param}/channels and 'Get-MgUserJoinedTeamChannel' unshipped" +"GET","/users/{param}/joinedTeams/{param}/channels/{param}","suppress",,"Get-MgUserJoinedTeamChannel","no oracle row for GET /users/{param}/joinedTeams/{param}/channels/{param} and 'Get-MgUserJoinedTeamChannel' unshipped" +"GET","/users/{param}/joinedTeams/{param}/channels/{param}/allMembers","suppress",,"Get-MgUserJoinedTeamChannelAllMember","no oracle row for GET /users/{param}/joinedTeams/{param}/channels/{param}/allMembers and 'Get-MgUserJoinedTeamChannelAllMember' unshipped" +"GET","/users/{param}/joinedTeams/{param}/channels/{param}/allMembers/{param}","suppress",,"Get-MgUserJoinedTeamChannelAllMember","no oracle row for GET /users/{param}/joinedTeams/{param}/channels/{param}/allMembers/{param} and 'Get-MgUserJoinedTeamChannelAllMember' unshipped" +"GET","/users/{param}/joinedTeams/{param}/channels/{param}/allMembers/$count","suppress",,"Get-MgUserJoinedTeamChannelAllMemberCount","no oracle row for GET /users/{param}/joinedTeams/{param}/channels/{param}/allMembers/$count and 'Get-MgUserJoinedTeamChannelAllMemberCount' unshipped" +"GET","/users/{param}/joinedTeams/{param}/channels/{param}/enabledApps","suppress",,"Get-MgUserJoinedTeamChannelEnabledApp","no oracle row for GET /users/{param}/joinedTeams/{param}/channels/{param}/enabledApps and 'Get-MgUserJoinedTeamChannelEnabledApp' unshipped" +"GET","/users/{param}/joinedTeams/{param}/channels/{param}/enabledApps/{param}","suppress",,"Get-MgUserJoinedTeamChannelEnabledApp","no oracle row for GET /users/{param}/joinedTeams/{param}/channels/{param}/enabledApps/{param} and 'Get-MgUserJoinedTeamChannelEnabledApp' unshipped" +"GET","/users/{param}/joinedTeams/{param}/channels/{param}/enabledApps/$count","suppress",,"Get-MgUserJoinedTeamChannelEnabledAppCount","no oracle row for GET /users/{param}/joinedTeams/{param}/channels/{param}/enabledApps/$count and 'Get-MgUserJoinedTeamChannelEnabledAppCount' unshipped" +"GET","/users/{param}/joinedTeams/{param}/channels/{param}/filesFolder","suppress",,"Get-MgUserJoinedTeamChannelFileFolder","no oracle row for GET /users/{param}/joinedTeams/{param}/channels/{param}/filesFolder and 'Get-MgUserJoinedTeamChannelFileFolder' unshipped" +"GET","/users/{param}/joinedTeams/{param}/channels/{param}/members","suppress",,"Get-MgUserJoinedTeamChannelMember","no oracle row for GET /users/{param}/joinedTeams/{param}/channels/{param}/members and 'Get-MgUserJoinedTeamChannelMember' unshipped" +"GET","/users/{param}/joinedTeams/{param}/channels/{param}/members/{param}","suppress",,"Get-MgUserJoinedTeamChannelMember","no oracle row for GET /users/{param}/joinedTeams/{param}/channels/{param}/members/{param} and 'Get-MgUserJoinedTeamChannelMember' unshipped" +"GET","/users/{param}/joinedTeams/{param}/channels/{param}/members/$count","suppress",,"Get-MgUserJoinedTeamChannelMemberCount","no oracle row for GET /users/{param}/joinedTeams/{param}/channels/{param}/members/$count and 'Get-MgUserJoinedTeamChannelMemberCount' unshipped" +"GET","/users/{param}/joinedTeams/{param}/channels/{param}/messages","suppress",,"Get-MgUserJoinedTeamChannelMessage","no oracle row for GET /users/{param}/joinedTeams/{param}/channels/{param}/messages and 'Get-MgUserJoinedTeamChannelMessage' unshipped" +"GET","/users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}","suppress",,"Get-MgUserJoinedTeamChannelMessage","no oracle row for GET /users/{param}/joinedTeams/{param}/channels/{param}/messages/{param} and 'Get-MgUserJoinedTeamChannelMessage' unshipped" +"GET","/users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/hostedContents","suppress",,"Get-MgUserJoinedTeamChannelMessageHostedContent","no oracle row for GET /users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/hostedContents and 'Get-MgUserJoinedTeamChannelMessageHostedContent' unshipped" +"GET","/users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/hostedContents/{param}","suppress",,"Get-MgUserJoinedTeamChannelMessageHostedContent","no oracle row for GET /users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/hostedContents/{param} and 'Get-MgUserJoinedTeamChannelMessageHostedContent' unshipped" +"GET","/users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/hostedContents/{param}/$value","suppress",,"Get-MgUserJoinedTeamChannelMessageHostedContentContent","no oracle row for GET /users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/hostedContents/{param}/$value and 'Get-MgUserJoinedTeamChannelMessageHostedContentContent' unshipped" +"GET","/users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/hostedContents/$count","suppress",,"Get-MgUserJoinedTeamChannelMessageHostedContentCount","no oracle row for GET /users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/hostedContents/$count and 'Get-MgUserJoinedTeamChannelMessageHostedContentCount' unshipped" +"GET","/users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/replies","suppress",,"Get-MgUserJoinedTeamChannelMessageReply","no oracle row for GET /users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/replies and 'Get-MgUserJoinedTeamChannelMessageReply' unshipped" +"GET","/users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/replies/{param}","suppress",,"Get-MgUserJoinedTeamChannelMessageReply","no oracle row for GET /users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/replies/{param} and 'Get-MgUserJoinedTeamChannelMessageReply' unshipped" +"GET","/users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/replies/{param}/hostedContents","suppress",,"Get-MgUserJoinedTeamChannelMessageReplyHostedContent","no oracle row for GET /users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/replies/{param}/hostedContents and 'Get-MgUserJoinedTeamChannelMessageReplyHostedContent' unshipped" +"GET","/users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/replies/{param}/hostedContents/{param}","suppress",,"Get-MgUserJoinedTeamChannelMessageReplyHostedContent","no oracle row for GET /users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/replies/{param}/hostedContents/{param} and 'Get-MgUserJoinedTeamChannelMessageReplyHostedContent' unshipped" +"GET","/users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/replies/{param}/hostedContents/{param}/$value","suppress",,"Get-MgUserJoinedTeamChannelMessageReplyHostedContentContent","no oracle row for GET /users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/replies/{param}/hostedContents/{param}/$value and 'Get-MgUserJoinedTeamChannelMessageReplyHostedContentContent' unshipped" +"GET","/users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/replies/{param}/hostedContents/$count","suppress",,"Get-MgUserJoinedTeamChannelMessageReplyHostedContentCount","no oracle row for GET /users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/replies/{param}/hostedContents/$count and 'Get-MgUserJoinedTeamChannelMessageReplyHostedContentCount' unshipped" +"GET","/users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/replies/$count","suppress",,"Get-MgUserJoinedTeamChannelMessageReplyCount","no oracle row for GET /users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/replies/$count and 'Get-MgUserJoinedTeamChannelMessageReplyCount' unshipped" +"GET","/users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/replies/delta","suppress",,"Get-MgUserJoinedTeamChannelMessageReplyDelta","no oracle row for GET /users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/replies/delta and 'Get-MgUserJoinedTeamChannelMessageReplyDelta' unshipped" +"GET","/users/{param}/joinedTeams/{param}/channels/{param}/messages/$count","suppress",,"Get-MgUserJoinedTeamChannelMessageCount","no oracle row for GET /users/{param}/joinedTeams/{param}/channels/{param}/messages/$count and 'Get-MgUserJoinedTeamChannelMessageCount' unshipped" +"GET","/users/{param}/joinedTeams/{param}/channels/{param}/messages/delta","suppress",,"Get-MgUserJoinedTeamChannelMessageDelta","no oracle row for GET /users/{param}/joinedTeams/{param}/channels/{param}/messages/delta and 'Get-MgUserJoinedTeamChannelMessageDelta' unshipped" +"GET","/users/{param}/joinedTeams/{param}/channels/{param}/sharedWithTeams","suppress",,"Get-MgUserJoinedTeamChannelSharedWithTeam","no oracle row for GET /users/{param}/joinedTeams/{param}/channels/{param}/sharedWithTeams and 'Get-MgUserJoinedTeamChannelSharedWithTeam' unshipped" +"GET","/users/{param}/joinedTeams/{param}/channels/{param}/sharedWithTeams/{param}","suppress",,"Get-MgUserJoinedTeamChannelSharedWithTeam","no oracle row for GET /users/{param}/joinedTeams/{param}/channels/{param}/sharedWithTeams/{param} and 'Get-MgUserJoinedTeamChannelSharedWithTeam' unshipped" +"GET","/users/{param}/joinedTeams/{param}/channels/{param}/sharedWithTeams/{param}/allowedMembers","suppress",,"Get-MgUserJoinedTeamChannelSharedWithTeamAllowedMember","no oracle row for GET /users/{param}/joinedTeams/{param}/channels/{param}/sharedWithTeams/{param}/allowedMembers and 'Get-MgUserJoinedTeamChannelSharedWithTeamAllowedMember' unshipped" +"GET","/users/{param}/joinedTeams/{param}/channels/{param}/sharedWithTeams/{param}/allowedMembers/{param}","suppress",,"Get-MgUserJoinedTeamChannelSharedWithTeamAllowedMember","no oracle row for GET /users/{param}/joinedTeams/{param}/channels/{param}/sharedWithTeams/{param}/allowedMembers/{param} and 'Get-MgUserJoinedTeamChannelSharedWithTeamAllowedMember' unshipped" +"GET","/users/{param}/joinedTeams/{param}/channels/{param}/sharedWithTeams/{param}/allowedMembers/$count","suppress",,"Get-MgUserJoinedTeamChannelSharedWithTeamAllowedMemberCount","no oracle row for GET /users/{param}/joinedTeams/{param}/channels/{param}/sharedWithTeams/{param}/allowedMembers/$count and 'Get-MgUserJoinedTeamChannelSharedWithTeamAllowedMemberCount' unshipped" +"GET","/users/{param}/joinedTeams/{param}/channels/{param}/sharedWithTeams/$count","suppress",,"Get-MgUserJoinedTeamChannelSharedWithTeamCount","no oracle row for GET /users/{param}/joinedTeams/{param}/channels/{param}/sharedWithTeams/$count and 'Get-MgUserJoinedTeamChannelSharedWithTeamCount' unshipped" +"GET","/users/{param}/joinedTeams/{param}/channels/{param}/tabs","suppress",,"Get-MgUserJoinedTeamChannelTab","no oracle row for GET /users/{param}/joinedTeams/{param}/channels/{param}/tabs and 'Get-MgUserJoinedTeamChannelTab' unshipped" +"GET","/users/{param}/joinedTeams/{param}/channels/{param}/tabs/{param}","suppress",,"Get-MgUserJoinedTeamChannelTab","no oracle row for GET /users/{param}/joinedTeams/{param}/channels/{param}/tabs/{param} and 'Get-MgUserJoinedTeamChannelTab' unshipped" +"GET","/users/{param}/joinedTeams/{param}/channels/{param}/tabs/{param}/teamsApp","suppress",,"Get-MgUserJoinedTeamChannelTabTeamApp","no oracle row for GET /users/{param}/joinedTeams/{param}/channels/{param}/tabs/{param}/teamsApp and 'Get-MgUserJoinedTeamChannelTabTeamApp' unshipped" +"GET","/users/{param}/joinedTeams/{param}/channels/{param}/tabs/$count","suppress",,"Get-MgUserJoinedTeamChannelTabCount","no oracle row for GET /users/{param}/joinedTeams/{param}/channels/{param}/tabs/$count and 'Get-MgUserJoinedTeamChannelTabCount' unshipped" +"GET","/users/{param}/joinedTeams/{param}/channels/$count","suppress",,"Get-MgUserJoinedTeamChannelCount","no oracle row for GET /users/{param}/joinedTeams/{param}/channels/$count and 'Get-MgUserJoinedTeamChannelCount' unshipped" +"GET","/users/{param}/joinedTeams/{param}/channels/getAllMessages","suppress",,"Get-MgUserJoinedTeamChannelGetAllMessages","no oracle row for GET /users/{param}/joinedTeams/{param}/channels/getAllMessages and 'Get-MgUserJoinedTeamChannelGetAllMessages' unshipped" +"GET","/users/{param}/joinedTeams/{param}/channels/getAllRetainedMessages","suppress",,"Get-MgUserJoinedTeamChannelGetAllRetainedMessages","no oracle row for GET /users/{param}/joinedTeams/{param}/channels/getAllRetainedMessages and 'Get-MgUserJoinedTeamChannelGetAllRetainedMessages' unshipped" +"GET","/users/{param}/joinedTeams/{param}/group","suppress",,"Get-MgUserJoinedTeamGroup","no oracle row for GET /users/{param}/joinedTeams/{param}/group and 'Get-MgUserJoinedTeamGroup' unshipped" +"GET","/users/{param}/joinedTeams/{param}/group/serviceProvisioningErrors","suppress",,"Get-MgUserJoinedTeamGroupServiceProvisioningError","no oracle row for GET /users/{param}/joinedTeams/{param}/group/serviceProvisioningErrors and 'Get-MgUserJoinedTeamGroupServiceProvisioningError' unshipped" +"GET","/users/{param}/joinedTeams/{param}/group/serviceProvisioningErrors/$count","suppress",,"Get-MgUserJoinedTeamGroupServiceProvisioningErrorCount","no oracle row for GET /users/{param}/joinedTeams/{param}/group/serviceProvisioningErrors/$count and 'Get-MgUserJoinedTeamGroupServiceProvisioningErrorCount' unshipped" +"GET","/users/{param}/joinedTeams/{param}/incomingChannels","suppress",,"Get-MgUserJoinedTeamIncomingChannel","no oracle row for GET /users/{param}/joinedTeams/{param}/incomingChannels and 'Get-MgUserJoinedTeamIncomingChannel' unshipped" +"GET","/users/{param}/joinedTeams/{param}/incomingChannels/{param}","suppress",,"Get-MgUserJoinedTeamIncomingChannel","no oracle row for GET /users/{param}/joinedTeams/{param}/incomingChannels/{param} and 'Get-MgUserJoinedTeamIncomingChannel' unshipped" +"GET","/users/{param}/joinedTeams/{param}/incomingChannels/$count","suppress",,"Get-MgUserJoinedTeamIncomingChannelCount","no oracle row for GET /users/{param}/joinedTeams/{param}/incomingChannels/$count and 'Get-MgUserJoinedTeamIncomingChannelCount' unshipped" +"GET","/users/{param}/joinedTeams/{param}/installedApps","suppress",,"Get-MgUserJoinedTeamInstalledApp","no oracle row for GET /users/{param}/joinedTeams/{param}/installedApps and 'Get-MgUserJoinedTeamInstalledApp' unshipped" +"GET","/users/{param}/joinedTeams/{param}/installedApps/{param}","suppress",,"Get-MgUserJoinedTeamInstalledApp","no oracle row for GET /users/{param}/joinedTeams/{param}/installedApps/{param} and 'Get-MgUserJoinedTeamInstalledApp' unshipped" +"GET","/users/{param}/joinedTeams/{param}/installedApps/{param}/teamsApp","suppress",,"Get-MgUserJoinedTeamInstalledAppTeamApp","no oracle row for GET /users/{param}/joinedTeams/{param}/installedApps/{param}/teamsApp and 'Get-MgUserJoinedTeamInstalledAppTeamApp' unshipped" +"GET","/users/{param}/joinedTeams/{param}/installedApps/{param}/teamsAppDefinition","suppress",,"Get-MgUserJoinedTeamInstalledAppTeamAppDefinition","no oracle row for GET /users/{param}/joinedTeams/{param}/installedApps/{param}/teamsAppDefinition and 'Get-MgUserJoinedTeamInstalledAppTeamAppDefinition' unshipped" +"GET","/users/{param}/joinedTeams/{param}/installedApps/$count","suppress",,"Get-MgUserJoinedTeamInstalledAppCount","no oracle row for GET /users/{param}/joinedTeams/{param}/installedApps/$count and 'Get-MgUserJoinedTeamInstalledAppCount' unshipped" +"GET","/users/{param}/joinedTeams/{param}/members","suppress",,"Get-MgUserJoinedTeamMember","no oracle row for GET /users/{param}/joinedTeams/{param}/members and 'Get-MgUserJoinedTeamMember' unshipped" +"GET","/users/{param}/joinedTeams/{param}/members/{param}","suppress",,"Get-MgUserJoinedTeamMember","no oracle row for GET /users/{param}/joinedTeams/{param}/members/{param} and 'Get-MgUserJoinedTeamMember' unshipped" +"GET","/users/{param}/joinedTeams/{param}/members/$count","suppress",,"Get-MgUserJoinedTeamMemberCount","no oracle row for GET /users/{param}/joinedTeams/{param}/members/$count and 'Get-MgUserJoinedTeamMemberCount' unshipped" +"GET","/users/{param}/joinedTeams/{param}/operations","suppress",,"Get-MgUserJoinedTeamOperation","no oracle row for GET /users/{param}/joinedTeams/{param}/operations and 'Get-MgUserJoinedTeamOperation' unshipped" +"GET","/users/{param}/joinedTeams/{param}/operations/{param}","suppress",,"Get-MgUserJoinedTeamOperation","no oracle row for GET /users/{param}/joinedTeams/{param}/operations/{param} and 'Get-MgUserJoinedTeamOperation' unshipped" +"GET","/users/{param}/joinedTeams/{param}/operations/$count","suppress",,"Get-MgUserJoinedTeamOperationCount","no oracle row for GET /users/{param}/joinedTeams/{param}/operations/$count and 'Get-MgUserJoinedTeamOperationCount' unshipped" +"GET","/users/{param}/joinedTeams/{param}/permissionGrants","suppress",,"Get-MgUserJoinedTeamPermissionGrant","no oracle row for GET /users/{param}/joinedTeams/{param}/permissionGrants and 'Get-MgUserJoinedTeamPermissionGrant' unshipped" +"GET","/users/{param}/joinedTeams/{param}/permissionGrants/{param}","suppress",,"Get-MgUserJoinedTeamPermissionGrant","no oracle row for GET /users/{param}/joinedTeams/{param}/permissionGrants/{param} and 'Get-MgUserJoinedTeamPermissionGrant' unshipped" +"GET","/users/{param}/joinedTeams/{param}/permissionGrants/$count","suppress",,"Get-MgUserJoinedTeamPermissionGrantCount","no oracle row for GET /users/{param}/joinedTeams/{param}/permissionGrants/$count and 'Get-MgUserJoinedTeamPermissionGrantCount' unshipped" +"GET","/users/{param}/joinedTeams/{param}/photo","suppress",,"Get-MgUserJoinedTeamPhoto","no oracle row for GET /users/{param}/joinedTeams/{param}/photo and 'Get-MgUserJoinedTeamPhoto' unshipped" +"GET","/users/{param}/joinedTeams/{param}/photo/$value","suppress",,"Get-MgUserJoinedTeamPhotoContent","no oracle row for GET /users/{param}/joinedTeams/{param}/photo/$value and 'Get-MgUserJoinedTeamPhotoContent' unshipped" +"GET","/users/{param}/joinedTeams/{param}/primaryChannel","suppress",,"Get-MgUserJoinedTeamPrimaryChannel","no oracle row for GET /users/{param}/joinedTeams/{param}/primaryChannel and 'Get-MgUserJoinedTeamPrimaryChannel' unshipped" +"GET","/users/{param}/joinedTeams/{param}/primaryChannel/allMembers","suppress",,"Get-MgUserJoinedTeamPrimaryChannelAllMember","no oracle row for GET /users/{param}/joinedTeams/{param}/primaryChannel/allMembers and 'Get-MgUserJoinedTeamPrimaryChannelAllMember' unshipped" +"GET","/users/{param}/joinedTeams/{param}/primaryChannel/allMembers/{param}","suppress",,"Get-MgUserJoinedTeamPrimaryChannelAllMember","no oracle row for GET /users/{param}/joinedTeams/{param}/primaryChannel/allMembers/{param} and 'Get-MgUserJoinedTeamPrimaryChannelAllMember' unshipped" +"GET","/users/{param}/joinedTeams/{param}/primaryChannel/allMembers/$count","suppress",,"Get-MgUserJoinedTeamPrimaryChannelAllMemberCount","no oracle row for GET /users/{param}/joinedTeams/{param}/primaryChannel/allMembers/$count and 'Get-MgUserJoinedTeamPrimaryChannelAllMemberCount' unshipped" +"GET","/users/{param}/joinedTeams/{param}/primaryChannel/enabledApps","suppress",,"Get-MgUserJoinedTeamPrimaryChannelEnabledApp","no oracle row for GET /users/{param}/joinedTeams/{param}/primaryChannel/enabledApps and 'Get-MgUserJoinedTeamPrimaryChannelEnabledApp' unshipped" +"GET","/users/{param}/joinedTeams/{param}/primaryChannel/enabledApps/{param}","suppress",,"Get-MgUserJoinedTeamPrimaryChannelEnabledApp","no oracle row for GET /users/{param}/joinedTeams/{param}/primaryChannel/enabledApps/{param} and 'Get-MgUserJoinedTeamPrimaryChannelEnabledApp' unshipped" +"GET","/users/{param}/joinedTeams/{param}/primaryChannel/enabledApps/$count","suppress",,"Get-MgUserJoinedTeamPrimaryChannelEnabledAppCount","no oracle row for GET /users/{param}/joinedTeams/{param}/primaryChannel/enabledApps/$count and 'Get-MgUserJoinedTeamPrimaryChannelEnabledAppCount' unshipped" +"GET","/users/{param}/joinedTeams/{param}/primaryChannel/filesFolder","suppress",,"Get-MgUserJoinedTeamPrimaryChannelFileFolder","no oracle row for GET /users/{param}/joinedTeams/{param}/primaryChannel/filesFolder and 'Get-MgUserJoinedTeamPrimaryChannelFileFolder' unshipped" +"GET","/users/{param}/joinedTeams/{param}/primaryChannel/members","suppress",,"Get-MgUserJoinedTeamPrimaryChannelMember","no oracle row for GET /users/{param}/joinedTeams/{param}/primaryChannel/members and 'Get-MgUserJoinedTeamPrimaryChannelMember' unshipped" +"GET","/users/{param}/joinedTeams/{param}/primaryChannel/members/{param}","suppress",,"Get-MgUserJoinedTeamPrimaryChannelMember","no oracle row for GET /users/{param}/joinedTeams/{param}/primaryChannel/members/{param} and 'Get-MgUserJoinedTeamPrimaryChannelMember' unshipped" +"GET","/users/{param}/joinedTeams/{param}/primaryChannel/members/$count","suppress",,"Get-MgUserJoinedTeamPrimaryChannelMemberCount","no oracle row for GET /users/{param}/joinedTeams/{param}/primaryChannel/members/$count and 'Get-MgUserJoinedTeamPrimaryChannelMemberCount' unshipped" +"GET","/users/{param}/joinedTeams/{param}/primaryChannel/messages","suppress",,"Get-MgUserJoinedTeamPrimaryChannelMessage","no oracle row for GET /users/{param}/joinedTeams/{param}/primaryChannel/messages and 'Get-MgUserJoinedTeamPrimaryChannelMessage' unshipped" +"GET","/users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}","suppress",,"Get-MgUserJoinedTeamPrimaryChannelMessage","no oracle row for GET /users/{param}/joinedTeams/{param}/primaryChannel/messages/{param} and 'Get-MgUserJoinedTeamPrimaryChannelMessage' unshipped" +"GET","/users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/hostedContents","suppress",,"Get-MgUserJoinedTeamPrimaryChannelMessageHostedContent","no oracle row for GET /users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/hostedContents and 'Get-MgUserJoinedTeamPrimaryChannelMessageHostedContent' unshipped" +"GET","/users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/hostedContents/{param}","suppress",,"Get-MgUserJoinedTeamPrimaryChannelMessageHostedContent","no oracle row for GET /users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/hostedContents/{param} and 'Get-MgUserJoinedTeamPrimaryChannelMessageHostedContent' unshipped" +"GET","/users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/hostedContents/{param}/$value","suppress",,"Get-MgUserJoinedTeamPrimaryChannelMessageHostedContentContent","no oracle row for GET /users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/hostedContents/{param}/$value and 'Get-MgUserJoinedTeamPrimaryChannelMessageHostedContentContent' unshipped" +"GET","/users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/hostedContents/$count","suppress",,"Get-MgUserJoinedTeamPrimaryChannelMessageHostedContentCount","no oracle row for GET /users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/hostedContents/$count and 'Get-MgUserJoinedTeamPrimaryChannelMessageHostedContentCount' unshipped" +"GET","/users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/replies","suppress",,"Get-MgUserJoinedTeamPrimaryChannelMessageReply","no oracle row for GET /users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/replies and 'Get-MgUserJoinedTeamPrimaryChannelMessageReply' unshipped" +"GET","/users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/replies/{param}","suppress",,"Get-MgUserJoinedTeamPrimaryChannelMessageReply","no oracle row for GET /users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/replies/{param} and 'Get-MgUserJoinedTeamPrimaryChannelMessageReply' unshipped" +"GET","/users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/replies/{param}/hostedContents","suppress",,"Get-MgUserJoinedTeamPrimaryChannelMessageReplyHostedContent","no oracle row for GET /users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/replies/{param}/hostedContents and 'Get-MgUserJoinedTeamPrimaryChannelMessageReplyHostedContent' unshipped" +"GET","/users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/replies/{param}/hostedContents/{param}","suppress",,"Get-MgUserJoinedTeamPrimaryChannelMessageReplyHostedContent","no oracle row for GET /users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/replies/{param}/hostedContents/{param} and 'Get-MgUserJoinedTeamPrimaryChannelMessageReplyHostedContent' unshipped" +"GET","/users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/replies/{param}/hostedContents/{param}/$value","suppress",,"Get-MgUserJoinedTeamPrimaryChannelMessageReplyHostedContentContent","no oracle row for GET /users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/replies/{param}/hostedContents/{param}/$value and 'Get-MgUserJoinedTeamPrimaryChannelMessageReplyHostedContentContent' unshipped" +"GET","/users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/replies/{param}/hostedContents/$count","suppress",,"Get-MgUserJoinedTeamPrimaryChannelMessageReplyHostedContentCount","no oracle row for GET /users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/replies/{param}/hostedContents/$count and 'Get-MgUserJoinedTeamPrimaryChannelMessageReplyHostedContentCount' unshipped" +"GET","/users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/replies/$count","suppress",,"Get-MgUserJoinedTeamPrimaryChannelMessageReplyCount","no oracle row for GET /users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/replies/$count and 'Get-MgUserJoinedTeamPrimaryChannelMessageReplyCount' unshipped" +"GET","/users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/replies/delta","suppress",,"Get-MgUserJoinedTeamPrimaryChannelMessageReplyDelta","no oracle row for GET /users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/replies/delta and 'Get-MgUserJoinedTeamPrimaryChannelMessageReplyDelta' unshipped" +"GET","/users/{param}/joinedTeams/{param}/primaryChannel/messages/$count","suppress",,"Get-MgUserJoinedTeamPrimaryChannelMessageCount","no oracle row for GET /users/{param}/joinedTeams/{param}/primaryChannel/messages/$count and 'Get-MgUserJoinedTeamPrimaryChannelMessageCount' unshipped" +"GET","/users/{param}/joinedTeams/{param}/primaryChannel/messages/delta","suppress",,"Get-MgUserJoinedTeamPrimaryChannelMessageDelta","no oracle row for GET /users/{param}/joinedTeams/{param}/primaryChannel/messages/delta and 'Get-MgUserJoinedTeamPrimaryChannelMessageDelta' unshipped" +"GET","/users/{param}/joinedTeams/{param}/primaryChannel/sharedWithTeams","suppress",,"Get-MgUserJoinedTeamPrimaryChannelSharedWithTeam","no oracle row for GET /users/{param}/joinedTeams/{param}/primaryChannel/sharedWithTeams and 'Get-MgUserJoinedTeamPrimaryChannelSharedWithTeam' unshipped" +"GET","/users/{param}/joinedTeams/{param}/primaryChannel/sharedWithTeams/{param}","suppress",,"Get-MgUserJoinedTeamPrimaryChannelSharedWithTeam","no oracle row for GET /users/{param}/joinedTeams/{param}/primaryChannel/sharedWithTeams/{param} and 'Get-MgUserJoinedTeamPrimaryChannelSharedWithTeam' unshipped" +"GET","/users/{param}/joinedTeams/{param}/primaryChannel/sharedWithTeams/{param}/allowedMembers","suppress",,"Get-MgUserJoinedTeamPrimaryChannelSharedWithTeamAllowedMember","no oracle row for GET /users/{param}/joinedTeams/{param}/primaryChannel/sharedWithTeams/{param}/allowedMembers and 'Get-MgUserJoinedTeamPrimaryChannelSharedWithTeamAllowedMember' unshipped" +"GET","/users/{param}/joinedTeams/{param}/primaryChannel/sharedWithTeams/{param}/allowedMembers/{param}","suppress",,"Get-MgUserJoinedTeamPrimaryChannelSharedWithTeamAllowedMember","no oracle row for GET /users/{param}/joinedTeams/{param}/primaryChannel/sharedWithTeams/{param}/allowedMembers/{param} and 'Get-MgUserJoinedTeamPrimaryChannelSharedWithTeamAllowedMember' unshipped" +"GET","/users/{param}/joinedTeams/{param}/primaryChannel/sharedWithTeams/{param}/allowedMembers/$count","suppress",,"Get-MgUserJoinedTeamPrimaryChannelSharedWithTeamAllowedMemberCount","no oracle row for GET /users/{param}/joinedTeams/{param}/primaryChannel/sharedWithTeams/{param}/allowedMembers/$count and 'Get-MgUserJoinedTeamPrimaryChannelSharedWithTeamAllowedMemberCount' unshipped" +"GET","/users/{param}/joinedTeams/{param}/primaryChannel/sharedWithTeams/$count","suppress",,"Get-MgUserJoinedTeamPrimaryChannelSharedWithTeamCount","no oracle row for GET /users/{param}/joinedTeams/{param}/primaryChannel/sharedWithTeams/$count and 'Get-MgUserJoinedTeamPrimaryChannelSharedWithTeamCount' unshipped" +"GET","/users/{param}/joinedTeams/{param}/primaryChannel/tabs","suppress",,"Get-MgUserJoinedTeamPrimaryChannelTab","no oracle row for GET /users/{param}/joinedTeams/{param}/primaryChannel/tabs and 'Get-MgUserJoinedTeamPrimaryChannelTab' unshipped" +"GET","/users/{param}/joinedTeams/{param}/primaryChannel/tabs/{param}","suppress",,"Get-MgUserJoinedTeamPrimaryChannelTab","no oracle row for GET /users/{param}/joinedTeams/{param}/primaryChannel/tabs/{param} and 'Get-MgUserJoinedTeamPrimaryChannelTab' unshipped" +"GET","/users/{param}/joinedTeams/{param}/primaryChannel/tabs/{param}/teamsApp","suppress",,"Get-MgUserJoinedTeamPrimaryChannelTabTeamApp","no oracle row for GET /users/{param}/joinedTeams/{param}/primaryChannel/tabs/{param}/teamsApp and 'Get-MgUserJoinedTeamPrimaryChannelTabTeamApp' unshipped" +"GET","/users/{param}/joinedTeams/{param}/primaryChannel/tabs/$count","suppress",,"Get-MgUserJoinedTeamPrimaryChannelTabCount","no oracle row for GET /users/{param}/joinedTeams/{param}/primaryChannel/tabs/$count and 'Get-MgUserJoinedTeamPrimaryChannelTabCount' unshipped" +"GET","/users/{param}/joinedTeams/{param}/schedule","suppress",,"Get-MgUserJoinedTeamSchedule","no oracle row for GET /users/{param}/joinedTeams/{param}/schedule and 'Get-MgUserJoinedTeamSchedule' unshipped" +"GET","/users/{param}/joinedTeams/{param}/schedule/dayNotes","suppress",,"Get-MgUserJoinedTeamScheduleDayNote","no oracle row for GET /users/{param}/joinedTeams/{param}/schedule/dayNotes and 'Get-MgUserJoinedTeamScheduleDayNote' unshipped" +"GET","/users/{param}/joinedTeams/{param}/schedule/dayNotes/{param}","suppress",,"Get-MgUserJoinedTeamScheduleDayNote","no oracle row for GET /users/{param}/joinedTeams/{param}/schedule/dayNotes/{param} and 'Get-MgUserJoinedTeamScheduleDayNote' unshipped" +"GET","/users/{param}/joinedTeams/{param}/schedule/dayNotes/$count","suppress",,"Get-MgUserJoinedTeamScheduleDayNoteCount","no oracle row for GET /users/{param}/joinedTeams/{param}/schedule/dayNotes/$count and 'Get-MgUserJoinedTeamScheduleDayNoteCount' unshipped" +"GET","/users/{param}/joinedTeams/{param}/schedule/offerShiftRequests","suppress",,"Get-MgUserJoinedTeamScheduleOfferShiftRequest","no oracle row for GET /users/{param}/joinedTeams/{param}/schedule/offerShiftRequests and 'Get-MgUserJoinedTeamScheduleOfferShiftRequest' unshipped" +"GET","/users/{param}/joinedTeams/{param}/schedule/offerShiftRequests/{param}","suppress",,"Get-MgUserJoinedTeamScheduleOfferShiftRequest","no oracle row for GET /users/{param}/joinedTeams/{param}/schedule/offerShiftRequests/{param} and 'Get-MgUserJoinedTeamScheduleOfferShiftRequest' unshipped" +"GET","/users/{param}/joinedTeams/{param}/schedule/offerShiftRequests/$count","suppress",,"Get-MgUserJoinedTeamScheduleOfferShiftRequestCount","no oracle row for GET /users/{param}/joinedTeams/{param}/schedule/offerShiftRequests/$count and 'Get-MgUserJoinedTeamScheduleOfferShiftRequestCount' unshipped" +"GET","/users/{param}/joinedTeams/{param}/schedule/openShiftChangeRequests","suppress",,"Get-MgUserJoinedTeamScheduleOpenShiftChangeRequest","no oracle row for GET /users/{param}/joinedTeams/{param}/schedule/openShiftChangeRequests and 'Get-MgUserJoinedTeamScheduleOpenShiftChangeRequest' unshipped" +"GET","/users/{param}/joinedTeams/{param}/schedule/openShiftChangeRequests/{param}","suppress",,"Get-MgUserJoinedTeamScheduleOpenShiftChangeRequest","no oracle row for GET /users/{param}/joinedTeams/{param}/schedule/openShiftChangeRequests/{param} and 'Get-MgUserJoinedTeamScheduleOpenShiftChangeRequest' unshipped" +"GET","/users/{param}/joinedTeams/{param}/schedule/openShiftChangeRequests/$count","suppress",,"Get-MgUserJoinedTeamScheduleOpenShiftChangeRequestCount","no oracle row for GET /users/{param}/joinedTeams/{param}/schedule/openShiftChangeRequests/$count and 'Get-MgUserJoinedTeamScheduleOpenShiftChangeRequestCount' unshipped" +"GET","/users/{param}/joinedTeams/{param}/schedule/openShifts","suppress",,"Get-MgUserJoinedTeamScheduleOpenShift","no oracle row for GET /users/{param}/joinedTeams/{param}/schedule/openShifts and 'Get-MgUserJoinedTeamScheduleOpenShift' unshipped" +"GET","/users/{param}/joinedTeams/{param}/schedule/openShifts/{param}","suppress",,"Get-MgUserJoinedTeamScheduleOpenShift","no oracle row for GET /users/{param}/joinedTeams/{param}/schedule/openShifts/{param} and 'Get-MgUserJoinedTeamScheduleOpenShift' unshipped" +"GET","/users/{param}/joinedTeams/{param}/schedule/openShifts/$count","suppress",,"Get-MgUserJoinedTeamScheduleOpenShiftCount","no oracle row for GET /users/{param}/joinedTeams/{param}/schedule/openShifts/$count and 'Get-MgUserJoinedTeamScheduleOpenShiftCount' unshipped" +"GET","/users/{param}/joinedTeams/{param}/schedule/schedulingGroups","suppress",,"Get-MgUserJoinedTeamScheduleSchedulingGroup","no oracle row for GET /users/{param}/joinedTeams/{param}/schedule/schedulingGroups and 'Get-MgUserJoinedTeamScheduleSchedulingGroup' unshipped" +"GET","/users/{param}/joinedTeams/{param}/schedule/schedulingGroups/{param}","suppress",,"Get-MgUserJoinedTeamScheduleSchedulingGroup","no oracle row for GET /users/{param}/joinedTeams/{param}/schedule/schedulingGroups/{param} and 'Get-MgUserJoinedTeamScheduleSchedulingGroup' unshipped" +"GET","/users/{param}/joinedTeams/{param}/schedule/schedulingGroups/$count","suppress",,"Get-MgUserJoinedTeamScheduleSchedulingGroupCount","no oracle row for GET /users/{param}/joinedTeams/{param}/schedule/schedulingGroups/$count and 'Get-MgUserJoinedTeamScheduleSchedulingGroupCount' unshipped" +"GET","/users/{param}/joinedTeams/{param}/schedule/shifts","suppress",,"Get-MgUserJoinedTeamScheduleShift","no oracle row for GET /users/{param}/joinedTeams/{param}/schedule/shifts and 'Get-MgUserJoinedTeamScheduleShift' unshipped" +"GET","/users/{param}/joinedTeams/{param}/schedule/shifts/{param}","suppress",,"Get-MgUserJoinedTeamScheduleShift","no oracle row for GET /users/{param}/joinedTeams/{param}/schedule/shifts/{param} and 'Get-MgUserJoinedTeamScheduleShift' unshipped" +"GET","/users/{param}/joinedTeams/{param}/schedule/shifts/$count","suppress",,"Get-MgUserJoinedTeamScheduleShiftCount","no oracle row for GET /users/{param}/joinedTeams/{param}/schedule/shifts/$count and 'Get-MgUserJoinedTeamScheduleShiftCount' unshipped" +"GET","/users/{param}/joinedTeams/{param}/schedule/swapShiftsChangeRequests","suppress",,"Get-MgUserJoinedTeamScheduleSwapShiftChangeRequest","no oracle row for GET /users/{param}/joinedTeams/{param}/schedule/swapShiftsChangeRequests and 'Get-MgUserJoinedTeamScheduleSwapShiftChangeRequest' unshipped" +"GET","/users/{param}/joinedTeams/{param}/schedule/swapShiftsChangeRequests/{param}","suppress",,"Get-MgUserJoinedTeamScheduleSwapShiftChangeRequest","no oracle row for GET /users/{param}/joinedTeams/{param}/schedule/swapShiftsChangeRequests/{param} and 'Get-MgUserJoinedTeamScheduleSwapShiftChangeRequest' unshipped" +"GET","/users/{param}/joinedTeams/{param}/schedule/swapShiftsChangeRequests/$count","suppress",,"Get-MgUserJoinedTeamScheduleSwapShiftChangeRequestCount","no oracle row for GET /users/{param}/joinedTeams/{param}/schedule/swapShiftsChangeRequests/$count and 'Get-MgUserJoinedTeamScheduleSwapShiftChangeRequestCount' unshipped" +"GET","/users/{param}/joinedTeams/{param}/schedule/timeCards","suppress",,"Get-MgUserJoinedTeamScheduleTimeCard","no oracle row for GET /users/{param}/joinedTeams/{param}/schedule/timeCards and 'Get-MgUserJoinedTeamScheduleTimeCard' unshipped" +"GET","/users/{param}/joinedTeams/{param}/schedule/timeCards/{param}","suppress",,"Get-MgUserJoinedTeamScheduleTimeCard","no oracle row for GET /users/{param}/joinedTeams/{param}/schedule/timeCards/{param} and 'Get-MgUserJoinedTeamScheduleTimeCard' unshipped" +"GET","/users/{param}/joinedTeams/{param}/schedule/timeCards/$count","suppress",,"Get-MgUserJoinedTeamScheduleTimeCardCount","no oracle row for GET /users/{param}/joinedTeams/{param}/schedule/timeCards/$count and 'Get-MgUserJoinedTeamScheduleTimeCardCount' unshipped" +"GET","/users/{param}/joinedTeams/{param}/schedule/timeOffReasons","suppress",,"Get-MgUserJoinedTeamScheduleTimeOffReason","no oracle row for GET /users/{param}/joinedTeams/{param}/schedule/timeOffReasons and 'Get-MgUserJoinedTeamScheduleTimeOffReason' unshipped" +"GET","/users/{param}/joinedTeams/{param}/schedule/timeOffReasons/{param}","suppress",,"Get-MgUserJoinedTeamScheduleTimeOffReason","no oracle row for GET /users/{param}/joinedTeams/{param}/schedule/timeOffReasons/{param} and 'Get-MgUserJoinedTeamScheduleTimeOffReason' unshipped" +"GET","/users/{param}/joinedTeams/{param}/schedule/timeOffReasons/$count","suppress",,"Get-MgUserJoinedTeamScheduleTimeOffReasonCount","no oracle row for GET /users/{param}/joinedTeams/{param}/schedule/timeOffReasons/$count and 'Get-MgUserJoinedTeamScheduleTimeOffReasonCount' unshipped" +"GET","/users/{param}/joinedTeams/{param}/schedule/timeOffRequests","suppress",,"Get-MgUserJoinedTeamScheduleTimeOffRequest","no oracle row for GET /users/{param}/joinedTeams/{param}/schedule/timeOffRequests and 'Get-MgUserJoinedTeamScheduleTimeOffRequest' unshipped" +"GET","/users/{param}/joinedTeams/{param}/schedule/timeOffRequests/{param}","suppress",,"Get-MgUserJoinedTeamScheduleTimeOffRequest","no oracle row for GET /users/{param}/joinedTeams/{param}/schedule/timeOffRequests/{param} and 'Get-MgUserJoinedTeamScheduleTimeOffRequest' unshipped" +"GET","/users/{param}/joinedTeams/{param}/schedule/timeOffRequests/$count","suppress",,"Get-MgUserJoinedTeamScheduleTimeOffRequestCount","no oracle row for GET /users/{param}/joinedTeams/{param}/schedule/timeOffRequests/$count and 'Get-MgUserJoinedTeamScheduleTimeOffRequestCount' unshipped" +"GET","/users/{param}/joinedTeams/{param}/schedule/timesOff","suppress",,"Get-MgUserJoinedTeamScheduleTimeOff","no oracle row for GET /users/{param}/joinedTeams/{param}/schedule/timesOff and 'Get-MgUserJoinedTeamScheduleTimeOff' unshipped" +"GET","/users/{param}/joinedTeams/{param}/schedule/timesOff/{param}","suppress",,"Get-MgUserJoinedTeamScheduleTimeOff","no oracle row for GET /users/{param}/joinedTeams/{param}/schedule/timesOff/{param} and 'Get-MgUserJoinedTeamScheduleTimeOff' unshipped" +"GET","/users/{param}/joinedTeams/{param}/schedule/timesOff/$count","suppress",,"Get-MgUserJoinedTeamScheduleTimeOffCount","no oracle row for GET /users/{param}/joinedTeams/{param}/schedule/timesOff/$count and 'Get-MgUserJoinedTeamScheduleTimeOffCount' unshipped" +"GET","/users/{param}/joinedTeams/{param}/tags","suppress",,"Get-MgUserJoinedTeamTag","no oracle row for GET /users/{param}/joinedTeams/{param}/tags and 'Get-MgUserJoinedTeamTag' unshipped" +"GET","/users/{param}/joinedTeams/{param}/tags/{param}","suppress",,"Get-MgUserJoinedTeamTag","no oracle row for GET /users/{param}/joinedTeams/{param}/tags/{param} and 'Get-MgUserJoinedTeamTag' unshipped" +"GET","/users/{param}/joinedTeams/{param}/tags/{param}/members","suppress",,"Get-MgUserJoinedTeamTagMember","no oracle row for GET /users/{param}/joinedTeams/{param}/tags/{param}/members and 'Get-MgUserJoinedTeamTagMember' unshipped" +"GET","/users/{param}/joinedTeams/{param}/tags/{param}/members/{param}","suppress",,"Get-MgUserJoinedTeamTagMember","no oracle row for GET /users/{param}/joinedTeams/{param}/tags/{param}/members/{param} and 'Get-MgUserJoinedTeamTagMember' unshipped" +"GET","/users/{param}/joinedTeams/{param}/tags/{param}/members/$count","suppress",,"Get-MgUserJoinedTeamTagMemberCount","no oracle row for GET /users/{param}/joinedTeams/{param}/tags/{param}/members/$count and 'Get-MgUserJoinedTeamTagMemberCount' unshipped" +"GET","/users/{param}/joinedTeams/{param}/tags/$count","suppress",,"Get-MgUserJoinedTeamTagCount","no oracle row for GET /users/{param}/joinedTeams/{param}/tags/$count and 'Get-MgUserJoinedTeamTagCount' unshipped" +"GET","/users/{param}/joinedTeams/{param}/template","suppress",,"Get-MgUserJoinedTeamTemplate","no oracle row for GET /users/{param}/joinedTeams/{param}/template and 'Get-MgUserJoinedTeamTemplate' unshipped" +"GET","/users/{param}/joinedTeams/$count","suppress",,"Get-MgUserJoinedTeamCount","no oracle row for GET /users/{param}/joinedTeams/$count and 'Get-MgUserJoinedTeamCount' unshipped" +"GET","/users/{param}/joinedTeams/getAllMessages","suppress",,"Get-MgUserJoinedTeamGetAllMessages","no oracle row for GET /users/{param}/joinedTeams/getAllMessages and 'Get-MgUserJoinedTeamGetAllMessages' unshipped" +"GET","/users/{param}/licenseDetails","keep",,"Get-MgUserLicenseDetail","Get-MgUserLicenseDetail" +"GET","/users/{param}/licenseDetails/{param}","keep",,"Get-MgUserLicenseDetail","Get-MgUserLicenseDetail" +"GET","/users/{param}/licenseDetails/$count","keep",,"Get-MgUserLicenseDetailCount","Get-MgUserLicenseDetailCount" +"GET","/users/{param}/licenseDetails/getTeamsLicensingDetails","rename","UserLicenseDetailTeamLicensingDetail","Get-MgUserLicenseDetailGetTeamsLicensingDetails","Get-MgUserLicenseDetailTeamLicensingDetail" +"GET","/users/{param}/mailboxSettings","keep",,"Get-MgUserMailboxSetting","Get-MgUserMailboxSetting" +"GET","/users/{param}/mailFolders","keep",,"Get-MgUserMailFolder","Get-MgUserMailFolder" +"GET","/users/{param}/mailFolders/{param}","keep",,"Get-MgUserMailFolder","Get-MgUserMailFolder" +"GET","/users/{param}/mailFolders/{param}/childFolders","keep",,"Get-MgUserMailFolderChildFolder","Get-MgUserMailFolderChildFolder" +"GET","/users/{param}/mailFolders/{param}/childFolders/{param}","keep",,"Get-MgUserMailFolderChildFolder","Get-MgUserMailFolderChildFolder" +"GET","/users/{param}/mailFolders/{param}/childFolders/{param}/messageRules","keep",,"Get-MgUserMailFolderChildFolderMessageRule","Get-MgUserMailFolderChildFolderMessageRule" +"GET","/users/{param}/mailFolders/{param}/childFolders/{param}/messageRules/{param}","keep",,"Get-MgUserMailFolderChildFolderMessageRule","Get-MgUserMailFolderChildFolderMessageRule" +"GET","/users/{param}/mailFolders/{param}/childFolders/{param}/messageRules/$count","keep",,"Get-MgUserMailFolderChildFolderMessageRuleCount","Get-MgUserMailFolderChildFolderMessageRuleCount" +"GET","/users/{param}/mailFolders/{param}/childFolders/{param}/messages","keep",,"Get-MgUserMailFolderChildFolderMessage","Get-MgUserMailFolderChildFolderMessage" +"GET","/users/{param}/mailFolders/{param}/childFolders/{param}/messages/{param}","keep",,"Get-MgUserMailFolderChildFolderMessage","Get-MgUserMailFolderChildFolderMessage" +"GET","/users/{param}/mailFolders/{param}/childFolders/{param}/messages/{param}/$value","keep",,"Get-MgUserMailFolderChildFolderMessageContent","Get-MgUserMailFolderChildFolderMessageContent" +"GET","/users/{param}/mailFolders/{param}/childFolders/{param}/messages/{param}/attachments","keep",,"Get-MgUserMailFolderChildFolderMessageAttachment","Get-MgUserMailFolderChildFolderMessageAttachment" +"GET","/users/{param}/mailFolders/{param}/childFolders/{param}/messages/{param}/attachments/{param}","keep",,"Get-MgUserMailFolderChildFolderMessageAttachment","Get-MgUserMailFolderChildFolderMessageAttachment" +"GET","/users/{param}/mailFolders/{param}/childFolders/{param}/messages/{param}/attachments/$count","keep",,"Get-MgUserMailFolderChildFolderMessageAttachmentCount","Get-MgUserMailFolderChildFolderMessageAttachmentCount" +"GET","/users/{param}/mailFolders/{param}/childFolders/{param}/messages/{param}/extensions","keep",,"Get-MgUserMailFolderChildFolderMessageExtension","Get-MgUserMailFolderChildFolderMessageExtension" +"GET","/users/{param}/mailFolders/{param}/childFolders/{param}/messages/{param}/extensions/{param}","keep",,"Get-MgUserMailFolderChildFolderMessageExtension","Get-MgUserMailFolderChildFolderMessageExtension" +"GET","/users/{param}/mailFolders/{param}/childFolders/{param}/messages/{param}/extensions/$count","keep",,"Get-MgUserMailFolderChildFolderMessageExtensionCount","Get-MgUserMailFolderChildFolderMessageExtensionCount" +"GET","/users/{param}/mailFolders/{param}/childFolders/{param}/messages/$count","keep",,"Get-MgUserMailFolderChildFolderMessageCount","Get-MgUserMailFolderChildFolderMessageCount" +"GET","/users/{param}/mailFolders/{param}/childFolders/{param}/messages/delta","keep",,"Get-MgUserMailFolderChildFolderMessageDelta","Get-MgUserMailFolderChildFolderMessageDelta" +"GET","/users/{param}/mailFolders/{param}/childFolders/$count","keep",,"Get-MgUserMailFolderChildFolderCount","Get-MgUserMailFolderChildFolderCount" +"GET","/users/{param}/mailFolders/{param}/childFolders/delta","keep",,"Get-MgUserMailFolderChildFolderDelta","Get-MgUserMailFolderChildFolderDelta" +"GET","/users/{param}/mailFolders/{param}/messageRules","keep",,"Get-MgUserMailFolderMessageRule","Get-MgUserMailFolderMessageRule" +"GET","/users/{param}/mailFolders/{param}/messageRules/{param}","keep",,"Get-MgUserMailFolderMessageRule","Get-MgUserMailFolderMessageRule" +"GET","/users/{param}/mailFolders/{param}/messageRules/$count","keep",,"Get-MgUserMailFolderMessageRuleCount","Get-MgUserMailFolderMessageRuleCount" +"GET","/users/{param}/mailFolders/{param}/messages","keep",,"Get-MgUserMailFolderMessage","Get-MgUserMailFolderMessage" +"GET","/users/{param}/mailFolders/{param}/messages/{param}","keep",,"Get-MgUserMailFolderMessage","Get-MgUserMailFolderMessage" +"GET","/users/{param}/mailFolders/{param}/messages/{param}/$value","suppress",,"Get-MgUserMailFolderMessageContent","no oracle row for GET /users/{param}/mailFolders/{param}/messages/{param}/$value and 'Get-MgUserMailFolderMessageContent' unshipped" +"GET","/users/{param}/mailFolders/{param}/messages/{param}/attachments","keep",,"Get-MgUserMailFolderMessageAttachment","Get-MgUserMailFolderMessageAttachment" +"GET","/users/{param}/mailFolders/{param}/messages/{param}/attachments/{param}","keep",,"Get-MgUserMailFolderMessageAttachment","Get-MgUserMailFolderMessageAttachment" +"GET","/users/{param}/mailFolders/{param}/messages/{param}/attachments/$count","keep",,"Get-MgUserMailFolderMessageAttachmentCount","Get-MgUserMailFolderMessageAttachmentCount" +"GET","/users/{param}/mailFolders/{param}/messages/{param}/extensions","keep",,"Get-MgUserMailFolderMessageExtension","Get-MgUserMailFolderMessageExtension" +"GET","/users/{param}/mailFolders/{param}/messages/{param}/extensions/{param}","keep",,"Get-MgUserMailFolderMessageExtension","Get-MgUserMailFolderMessageExtension" +"GET","/users/{param}/mailFolders/{param}/messages/{param}/extensions/$count","keep",,"Get-MgUserMailFolderMessageExtensionCount","Get-MgUserMailFolderMessageExtensionCount" +"GET","/users/{param}/mailFolders/{param}/messages/$count","keep",,"Get-MgUserMailFolderMessageCount","Get-MgUserMailFolderMessageCount" +"GET","/users/{param}/mailFolders/{param}/messages/delta","keep",,"Get-MgUserMailFolderMessageDelta","Get-MgUserMailFolderMessageDelta" +"GET","/users/{param}/mailFolders/$count","keep",,"Get-MgUserMailFolderCount","Get-MgUserMailFolderCount" +"GET","/users/{param}/mailFolders/delta","keep",,"Get-MgUserMailFolderDelta","Get-MgUserMailFolderDelta" +"GET","/users/{param}/managedAppRegistrations","keep",,"Get-MgUserManagedAppRegistration","Get-MgUserManagedAppRegistration" +"GET","/users/{param}/managedAppRegistrations/{param}","keep",,"Get-MgUserManagedAppRegistration","Get-MgUserManagedAppRegistration" +"GET","/users/{param}/managedAppRegistrations/$count","keep",,"Get-MgUserManagedAppRegistrationCount","Get-MgUserManagedAppRegistrationCount" +"GET","/users/{param}/managedDevices","keep",,"Get-MgUserManagedDevice","Get-MgUserManagedDevice" +"GET","/users/{param}/managedDevices/{param}","keep",,"Get-MgUserManagedDevice","Get-MgUserManagedDevice" +"GET","/users/{param}/managedDevices/{param}/deviceCategory","keep",,"Get-MgUserManagedDeviceCategory","Get-MgUserManagedDeviceCategory" +"GET","/users/{param}/managedDevices/{param}/deviceCategory/$ref","keep",,"Get-MgUserManagedDeviceCategoryByRef","Get-MgUserManagedDeviceCategoryByRef" +"GET","/users/{param}/managedDevices/{param}/deviceCompliancePolicyStates","keep",,"Get-MgUserManagedDeviceCompliancePolicyState","Get-MgUserManagedDeviceCompliancePolicyState" +"GET","/users/{param}/managedDevices/{param}/deviceCompliancePolicyStates/{param}","keep",,"Get-MgUserManagedDeviceCompliancePolicyState","Get-MgUserManagedDeviceCompliancePolicyState" +"GET","/users/{param}/managedDevices/{param}/deviceCompliancePolicyStates/$count","keep",,"Get-MgUserManagedDeviceCompliancePolicyStateCount","Get-MgUserManagedDeviceCompliancePolicyStateCount" +"GET","/users/{param}/managedDevices/{param}/deviceConfigurationStates","keep",,"Get-MgUserManagedDeviceConfigurationState","Get-MgUserManagedDeviceConfigurationState" +"GET","/users/{param}/managedDevices/{param}/deviceConfigurationStates/{param}","keep",,"Get-MgUserManagedDeviceConfigurationState","Get-MgUserManagedDeviceConfigurationState" +"GET","/users/{param}/managedDevices/{param}/deviceConfigurationStates/$count","keep",,"Get-MgUserManagedDeviceConfigurationStateCount","Get-MgUserManagedDeviceConfigurationStateCount" +"GET","/users/{param}/managedDevices/{param}/logCollectionRequests","rename","UserManagedDeviceLogCollectionResponse","Get-MgUserManagedDeviceLogCollectionRequest","Get-MgUserManagedDeviceLogCollectionResponse" +"GET","/users/{param}/managedDevices/{param}/logCollectionRequests/{param}","rename","UserManagedDeviceLogCollectionResponse","Get-MgUserManagedDeviceLogCollectionRequest","Get-MgUserManagedDeviceLogCollectionResponse" +"GET","/users/{param}/managedDevices/{param}/logCollectionRequests/$count","keep",,"Get-MgUserManagedDeviceLogCollectionRequestCount","Get-MgUserManagedDeviceLogCollectionRequestCount" +"GET","/users/{param}/managedDevices/{param}/users","keep",,"Get-MgUserManagedDeviceUser","Get-MgUserManagedDeviceUser" +"GET","/users/{param}/managedDevices/{param}/windowsProtectionState","keep",,"Get-MgUserManagedDeviceWindowsProtectionState","Get-MgUserManagedDeviceWindowsProtectionState" +"GET","/users/{param}/managedDevices/{param}/windowsProtectionState/detectedMalwareState","keep",,"Get-MgUserManagedDeviceWindowsProtectionStateDetectedMalwareState","Get-MgUserManagedDeviceWindowsProtectionStateDetectedMalwareState" +"GET","/users/{param}/managedDevices/{param}/windowsProtectionState/detectedMalwareState/{param}","keep",,"Get-MgUserManagedDeviceWindowsProtectionStateDetectedMalwareState","Get-MgUserManagedDeviceWindowsProtectionStateDetectedMalwareState" +"GET","/users/{param}/managedDevices/{param}/windowsProtectionState/detectedMalwareState/$count","keep",,"Get-MgUserManagedDeviceWindowsProtectionStateDetectedMalwareStateCount","Get-MgUserManagedDeviceWindowsProtectionStateDetectedMalwareStateCount" +"GET","/users/{param}/managedDevices/$count","keep",,"Get-MgUserManagedDeviceCount","Get-MgUserManagedDeviceCount" +"GET","/users/{param}/manager","keep",,"Get-MgUserManager","Get-MgUserManager" +"GET","/users/{param}/manager/$ref","keep",,"Get-MgUserManagerByRef","Get-MgUserManagerByRef" +"GET","/users/{param}/memberOf","keep",,"Get-MgUserMemberOf","Get-MgUserMemberOf" +"GET","/users/{param}/memberOf/{param}","keep",,"Get-MgUserMemberOf","Get-MgUserMemberOf" +"GET","/users/{param}/memberOf/$count","keep",,"Get-MgUserMemberOfCount","Get-MgUserMemberOfCount" +"GET","/users/{param}/messages","keep",,"Get-MgUserMessage","Get-MgUserMessage" +"GET","/users/{param}/messages/{param}","keep",,"Get-MgUserMessage","Get-MgUserMessage" +"GET","/users/{param}/messages/{param}/$value","keep",,"Get-MgUserMessageContent","Get-MgUserMessageContent" +"GET","/users/{param}/messages/{param}/attachments","keep",,"Get-MgUserMessageAttachment","Get-MgUserMessageAttachment" +"GET","/users/{param}/messages/{param}/attachments/{param}","keep",,"Get-MgUserMessageAttachment","Get-MgUserMessageAttachment" +"GET","/users/{param}/messages/{param}/attachments/$count","keep",,"Get-MgUserMessageAttachmentCount","Get-MgUserMessageAttachmentCount" +"GET","/users/{param}/messages/{param}/extensions","keep",,"Get-MgUserMessageExtension","Get-MgUserMessageExtension" +"GET","/users/{param}/messages/{param}/extensions/{param}","keep",,"Get-MgUserMessageExtension","Get-MgUserMessageExtension" +"GET","/users/{param}/messages/{param}/extensions/$count","keep",,"Get-MgUserMessageExtensionCount","Get-MgUserMessageExtensionCount" +"GET","/users/{param}/messages/$count","keep",,"Get-MgUserMessageCount","Get-MgUserMessageCount" +"GET","/users/{param}/messages/delta","keep",,"Get-MgUserMessageDelta","Get-MgUserMessageDelta" +"GET","/users/{param}/oauth2PermissionGrants","keep",,"Get-MgUserOauth2PermissionGrant","Get-MgUserOauth2PermissionGrant" +"GET","/users/{param}/oauth2PermissionGrants/{param}","keep",,"Get-MgUserOauth2PermissionGrant","Get-MgUserOauth2PermissionGrant" +"GET","/users/{param}/oauth2PermissionGrants/$count","keep",,"Get-MgUserOauth2PermissionGrantCount","Get-MgUserOauth2PermissionGrantCount" +"GET","/users/{param}/onenote","keep",,"Get-MgUserOnenote","Get-MgUserOnenote" +"GET","/users/{param}/onenote/notebooks","keep",,"Get-MgUserOnenoteNotebook","Get-MgUserOnenoteNotebook" +"GET","/users/{param}/onenote/notebooks/{param}","keep",,"Get-MgUserOnenoteNotebook","Get-MgUserOnenoteNotebook" +"GET","/users/{param}/onenote/notebooks/{param}/sectionGroups","keep",,"Get-MgUserOnenoteNotebookSectionGroup","Get-MgUserOnenoteNotebookSectionGroup" +"GET","/users/{param}/onenote/notebooks/{param}/sectionGroups/{param}/parentNotebook","keep",,"Get-MgUserOnenoteNotebookSectionGroupParentNotebook","Get-MgUserOnenoteNotebookSectionGroupParentNotebook" +"GET","/users/{param}/onenote/notebooks/{param}/sectionGroups/{param}/parentSectionGroup","keep",,"Get-MgUserOnenoteNotebookSectionGroupParentSectionGroup","Get-MgUserOnenoteNotebookSectionGroupParentSectionGroup" +"GET","/users/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sectionGroups/$count","keep",,"Get-MgUserOnenoteNotebookSectionGroupCount","Get-MgUserOnenoteNotebookSectionGroupCount" +"GET","/users/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections","keep",,"Get-MgUserOnenoteNotebookSectionGroupSection","Get-MgUserOnenoteNotebookSectionGroupSection" +"GET","/users/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}","keep",,"Get-MgUserOnenoteNotebookSectionGroupSection","Get-MgUserOnenoteNotebookSectionGroupSection" +"GET","/users/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages","keep",,"Get-MgUserOnenoteNotebookSectionGroupSectionPage","Get-MgUserOnenoteNotebookSectionGroupSectionPage" +"GET","/users/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}","keep",,"Get-MgUserOnenoteNotebookSectionGroupSectionPage","Get-MgUserOnenoteNotebookSectionGroupSectionPage" +"GET","/users/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}/parentNotebook","keep",,"Get-MgUserOnenoteNotebookSectionGroupSectionPageParentNotebook","Get-MgUserOnenoteNotebookSectionGroupSectionPageParentNotebook" +"GET","/users/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}/parentSection","keep",,"Get-MgUserOnenoteNotebookSectionGroupSectionPageParentSection","Get-MgUserOnenoteNotebookSectionGroupSectionPageParentSection" +"GET","/users/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}/preview","rename","PreviewUserOnenoteNotebookSectionGroupSectionPage","Get-MgUserOnenoteNotebookSectionGroupSectionPagePreview","Invoke-MgPreviewUserOnenoteNotebookSectionGroupSectionPage" +"GET","/users/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/$count","keep",,"Get-MgUserOnenoteNotebookSectionGroupSectionPageCount","Get-MgUserOnenoteNotebookSectionGroupSectionPageCount" +"GET","/users/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/parentNotebook","keep",,"Get-MgUserOnenoteNotebookSectionGroupSectionParentNotebook","Get-MgUserOnenoteNotebookSectionGroupSectionParentNotebook" +"GET","/users/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/parentSectionGroup","keep",,"Get-MgUserOnenoteNotebookSectionGroupSectionParentSectionGroup","Get-MgUserOnenoteNotebookSectionGroupSectionParentSectionGroup" +"GET","/users/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/$count","keep",,"Get-MgUserOnenoteNotebookSectionGroupSectionCount","Get-MgUserOnenoteNotebookSectionGroupSectionCount" +"GET","/users/{param}/onenote/notebooks/{param}/sections","keep",,"Get-MgUserOnenoteNotebookSection","Get-MgUserOnenoteNotebookSection" +"GET","/users/{param}/onenote/notebooks/{param}/sections/{param}","keep",,"Get-MgUserOnenoteNotebookSection","Get-MgUserOnenoteNotebookSection" +"GET","/users/{param}/onenote/notebooks/{param}/sections/{param}/pages","keep",,"Get-MgUserOnenoteNotebookSectionPage","Get-MgUserOnenoteNotebookSectionPage" +"GET","/users/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}","keep",,"Get-MgUserOnenoteNotebookSectionPage","Get-MgUserOnenoteNotebookSectionPage" +"GET","/users/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}/parentNotebook","keep",,"Get-MgUserOnenoteNotebookSectionPageParentNotebook","Get-MgUserOnenoteNotebookSectionPageParentNotebook" +"GET","/users/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}/parentSection","keep",,"Get-MgUserOnenoteNotebookSectionPageParentSection","Get-MgUserOnenoteNotebookSectionPageParentSection" +"GET","/users/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}/preview","rename","PreviewUserOnenoteNotebookSectionPage","Get-MgUserOnenoteNotebookSectionPagePreview","Invoke-MgPreviewUserOnenoteNotebookSectionPage" +"GET","/users/{param}/onenote/notebooks/{param}/sections/{param}/pages/$count","keep",,"Get-MgUserOnenoteNotebookSectionPageCount","Get-MgUserOnenoteNotebookSectionPageCount" +"GET","/users/{param}/onenote/notebooks/{param}/sections/{param}/parentNotebook","keep",,"Get-MgUserOnenoteNotebookSectionParentNotebook","Get-MgUserOnenoteNotebookSectionParentNotebook" +"GET","/users/{param}/onenote/notebooks/{param}/sections/{param}/parentSectionGroup","keep",,"Get-MgUserOnenoteNotebookSectionParentSectionGroup","Get-MgUserOnenoteNotebookSectionParentSectionGroup" +"GET","/users/{param}/onenote/notebooks/{param}/sections/$count","keep",,"Get-MgUserOnenoteNotebookSectionCount","Get-MgUserOnenoteNotebookSectionCount" +"GET","/users/{param}/onenote/notebooks/$count","keep",,"Get-MgUserOnenoteNotebookCount","Get-MgUserOnenoteNotebookCount" +"GET","/users/{param}/onenote/operations","keep",,"Get-MgUserOnenoteOperation","Get-MgUserOnenoteOperation" +"GET","/users/{param}/onenote/operations/{param}","keep",,"Get-MgUserOnenoteOperation","Get-MgUserOnenoteOperation" +"GET","/users/{param}/onenote/operations/$count","keep",,"Get-MgUserOnenoteOperationCount","Get-MgUserOnenoteOperationCount" +"GET","/users/{param}/onenote/pages","keep",,"Get-MgUserOnenotePage","Get-MgUserOnenotePage" +"GET","/users/{param}/onenote/pages/{param}","keep",,"Get-MgUserOnenotePage","Get-MgUserOnenotePage" +"GET","/users/{param}/onenote/pages/{param}/parentNotebook","keep",,"Get-MgUserOnenotePageParentNotebook","Get-MgUserOnenotePageParentNotebook" +"GET","/users/{param}/onenote/pages/{param}/parentSection","keep",,"Get-MgUserOnenotePageParentSection","Get-MgUserOnenotePageParentSection" +"GET","/users/{param}/onenote/pages/{param}/preview","rename","PreviewUserOnenotePage","Get-MgUserOnenotePagePreview","Invoke-MgPreviewUserOnenotePage" +"GET","/users/{param}/onenote/pages/$count","keep",,"Get-MgUserOnenotePageCount","Get-MgUserOnenotePageCount" +"GET","/users/{param}/onenote/resources","keep",,"Get-MgUserOnenoteResource","Get-MgUserOnenoteResource" +"GET","/users/{param}/onenote/resources/{param}","keep",,"Get-MgUserOnenoteResource","Get-MgUserOnenoteResource" +"GET","/users/{param}/onenote/resources/$count","keep",,"Get-MgUserOnenoteResourceCount","Get-MgUserOnenoteResourceCount" +"GET","/users/{param}/onenote/sectionGroups","keep",,"Get-MgUserOnenoteSectionGroup","Get-MgUserOnenoteSectionGroup" +"GET","/users/{param}/onenote/sectionGroups/{param}/parentNotebook","keep",,"Get-MgUserOnenoteSectionGroupParentNotebook","Get-MgUserOnenoteSectionGroupParentNotebook" +"GET","/users/{param}/onenote/sectionGroups/{param}/parentSectionGroup","keep",,"Get-MgUserOnenoteSectionGroupParentSectionGroup","Get-MgUserOnenoteSectionGroupParentSectionGroup" +"GET","/users/{param}/onenote/sectionGroups/{param}/sectionGroups/$count","keep",,"Get-MgUserOnenoteSectionGroupCount","Get-MgUserOnenoteSectionGroupCount" +"GET","/users/{param}/onenote/sectionGroups/{param}/sections","keep",,"Get-MgUserOnenoteSectionGroupSection","Get-MgUserOnenoteSectionGroupSection" +"GET","/users/{param}/onenote/sectionGroups/{param}/sections/{param}","keep",,"Get-MgUserOnenoteSectionGroupSection","Get-MgUserOnenoteSectionGroupSection" +"GET","/users/{param}/onenote/sectionGroups/{param}/sections/{param}/pages","keep",,"Get-MgUserOnenoteSectionGroupSectionPage","Get-MgUserOnenoteSectionGroupSectionPage" +"GET","/users/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}","keep",,"Get-MgUserOnenoteSectionGroupSectionPage","Get-MgUserOnenoteSectionGroupSectionPage" +"GET","/users/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}/parentNotebook","keep",,"Get-MgUserOnenoteSectionGroupSectionPageParentNotebook","Get-MgUserOnenoteSectionGroupSectionPageParentNotebook" +"GET","/users/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}/parentSection","keep",,"Get-MgUserOnenoteSectionGroupSectionPageParentSection","Get-MgUserOnenoteSectionGroupSectionPageParentSection" +"GET","/users/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}/preview","rename","PreviewUserOnenoteSectionGroupSectionPage","Get-MgUserOnenoteSectionGroupSectionPagePreview","Invoke-MgPreviewUserOnenoteSectionGroupSectionPage" +"GET","/users/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/$count","keep",,"Get-MgUserOnenoteSectionGroupSectionPageCount","Get-MgUserOnenoteSectionGroupSectionPageCount" +"GET","/users/{param}/onenote/sectionGroups/{param}/sections/{param}/parentNotebook","keep",,"Get-MgUserOnenoteSectionGroupSectionParentNotebook","Get-MgUserOnenoteSectionGroupSectionParentNotebook" +"GET","/users/{param}/onenote/sectionGroups/{param}/sections/{param}/parentSectionGroup","keep",,"Get-MgUserOnenoteSectionGroupSectionParentSectionGroup","Get-MgUserOnenoteSectionGroupSectionParentSectionGroup" +"GET","/users/{param}/onenote/sectionGroups/{param}/sections/$count","keep",,"Get-MgUserOnenoteSectionGroupSectionCount","Get-MgUserOnenoteSectionGroupSectionCount" +"GET","/users/{param}/onenote/sections","keep",,"Get-MgUserOnenoteSection","Get-MgUserOnenoteSection" +"GET","/users/{param}/onenote/sections/{param}","keep",,"Get-MgUserOnenoteSection","Get-MgUserOnenoteSection" +"GET","/users/{param}/onenote/sections/{param}/pages","keep",,"Get-MgUserOnenoteSectionPage","Get-MgUserOnenoteSectionPage" +"GET","/users/{param}/onenote/sections/{param}/pages/{param}","keep",,"Get-MgUserOnenoteSectionPage","Get-MgUserOnenoteSectionPage" +"GET","/users/{param}/onenote/sections/{param}/pages/{param}/parentNotebook","keep",,"Get-MgUserOnenoteSectionPageParentNotebook","Get-MgUserOnenoteSectionPageParentNotebook" +"GET","/users/{param}/onenote/sections/{param}/pages/{param}/parentSection","keep",,"Get-MgUserOnenoteSectionPageParentSection","Get-MgUserOnenoteSectionPageParentSection" +"GET","/users/{param}/onenote/sections/{param}/pages/{param}/preview","rename","PreviewUserOnenoteSectionPage","Get-MgUserOnenoteSectionPagePreview","Invoke-MgPreviewUserOnenoteSectionPage" +"GET","/users/{param}/onenote/sections/{param}/pages/$count","keep",,"Get-MgUserOnenoteSectionPageCount","Get-MgUserOnenoteSectionPageCount" +"GET","/users/{param}/onenote/sections/{param}/parentNotebook","keep",,"Get-MgUserOnenoteSectionParentNotebook","Get-MgUserOnenoteSectionParentNotebook" +"GET","/users/{param}/onenote/sections/{param}/parentSectionGroup","keep",,"Get-MgUserOnenoteSectionParentSectionGroup","Get-MgUserOnenoteSectionParentSectionGroup" +"GET","/users/{param}/onenote/sections/$count","keep",,"Get-MgUserOnenoteSectionCount","Get-MgUserOnenoteSectionCount" +"GET","/users/{param}/onlineMeetings","keep",,"Get-MgUserOnlineMeeting","Get-MgUserOnlineMeeting" +"GET","/users/{param}/onlineMeetings/{param}","keep",,"Get-MgUserOnlineMeeting","Get-MgUserOnlineMeeting" +"GET","/users/{param}/onlineMeetings/{param}/attendanceReports","keep",,"Get-MgUserOnlineMeetingAttendanceReport","Get-MgUserOnlineMeetingAttendanceReport" +"GET","/users/{param}/onlineMeetings/{param}/attendanceReports/{param}","keep",,"Get-MgUserOnlineMeetingAttendanceReport","Get-MgUserOnlineMeetingAttendanceReport" +"GET","/users/{param}/onlineMeetings/{param}/attendanceReports/{param}/attendanceRecords","keep",,"Get-MgUserOnlineMeetingAttendanceReportAttendanceRecord","Get-MgUserOnlineMeetingAttendanceReportAttendanceRecord" +"GET","/users/{param}/onlineMeetings/{param}/attendanceReports/{param}/attendanceRecords/{param}","keep",,"Get-MgUserOnlineMeetingAttendanceReportAttendanceRecord","Get-MgUserOnlineMeetingAttendanceReportAttendanceRecord" +"GET","/users/{param}/onlineMeetings/{param}/attendanceReports/{param}/attendanceRecords/$count","keep",,"Get-MgUserOnlineMeetingAttendanceReportAttendanceRecordCount","Get-MgUserOnlineMeetingAttendanceReportAttendanceRecordCount" +"GET","/users/{param}/onlineMeetings/{param}/attendanceReports/$count","keep",,"Get-MgUserOnlineMeetingAttendanceReportCount","Get-MgUserOnlineMeetingAttendanceReportCount" +"GET","/users/{param}/onlineMeetings/{param}/getVirtualAppointmentJoinWebUrl","rename","UserOnlineMeetingVirtualAppointmentJoinWebUrl","Get-MgUserOnlineMeetingGetVirtualAppointmentJoinWebUrl","Get-MgUserOnlineMeetingVirtualAppointmentJoinWebUrl" +"GET","/users/{param}/onlineMeetings/{param}/recordings","keep",,"Get-MgUserOnlineMeetingRecording","Get-MgUserOnlineMeetingRecording" +"GET","/users/{param}/onlineMeetings/{param}/recordings/{param}","keep",,"Get-MgUserOnlineMeetingRecording","Get-MgUserOnlineMeetingRecording" +"GET","/users/{param}/onlineMeetings/{param}/recordings/$count","keep",,"Get-MgUserOnlineMeetingRecordingCount","Get-MgUserOnlineMeetingRecordingCount" +"GET","/users/{param}/onlineMeetings/{param}/recordings/delta","keep",,"Get-MgUserOnlineMeetingRecordingDelta","Get-MgUserOnlineMeetingRecordingDelta" +"GET","/users/{param}/onlineMeetings/{param}/transcripts","keep",,"Get-MgUserOnlineMeetingTranscript","Get-MgUserOnlineMeetingTranscript" +"GET","/users/{param}/onlineMeetings/{param}/transcripts/{param}","keep",,"Get-MgUserOnlineMeetingTranscript","Get-MgUserOnlineMeetingTranscript" +"GET","/users/{param}/onlineMeetings/{param}/transcripts/$count","keep",,"Get-MgUserOnlineMeetingTranscriptCount","Get-MgUserOnlineMeetingTranscriptCount" +"GET","/users/{param}/onlineMeetings/{param}/transcripts/delta","keep",,"Get-MgUserOnlineMeetingTranscriptDelta","Get-MgUserOnlineMeetingTranscriptDelta" +"GET","/users/{param}/onlineMeetings/$count","keep",,"Get-MgUserOnlineMeetingCount","Get-MgUserOnlineMeetingCount" +"GET","/users/{param}/onPremisesSyncBehavior","keep",,"Get-MgUserOnPremiseSyncBehavior","Get-MgUserOnPremiseSyncBehavior" +"GET","/users/{param}/outlook","suppress",,"Get-MgUserOutlook","no oracle row for GET /users/{param}/outlook and 'Get-MgUserOutlook' unshipped" +"GET","/users/{param}/outlook/masterCategories","keep",,"Get-MgUserOutlookMasterCategory","Get-MgUserOutlookMasterCategory" +"GET","/users/{param}/outlook/masterCategories/{param}","keep",,"Get-MgUserOutlookMasterCategory","Get-MgUserOutlookMasterCategory" +"GET","/users/{param}/outlook/masterCategories/$count","keep",,"Get-MgUserOutlookMasterCategoryCount","Get-MgUserOutlookMasterCategoryCount" +"GET","/users/{param}/outlook/supportedLanguages","rename","SupportedUserOutlookLanguage","Get-MgUserOutlookSupportedLanguages","Invoke-MgSupportedUserOutlookLanguage" +"GET","/users/{param}/outlook/supportedTimeZones","rename","TimeUserOutlook","Get-MgUserOutlookSupportedTimeZones","Invoke-MgTimeUserOutlook" +"GET","/users/{param}/ownedDevices","keep",,"Get-MgUserOwnedDevice","Get-MgUserOwnedDevice" +"GET","/users/{param}/ownedDevices/{param}","keep",,"Get-MgUserOwnedDevice","Get-MgUserOwnedDevice" +"GET","/users/{param}/ownedDevices/$count","keep",,"Get-MgUserOwnedDeviceCount","Get-MgUserOwnedDeviceCount" +"GET","/users/{param}/ownedObjects","keep",,"Get-MgUserOwnedObject","Get-MgUserOwnedObject" +"GET","/users/{param}/ownedObjects/{param}","keep",,"Get-MgUserOwnedObject","Get-MgUserOwnedObject" +"GET","/users/{param}/ownedObjects/$count","keep",,"Get-MgUserOwnedObjectCount","Get-MgUserOwnedObjectCount" +"GET","/users/{param}/people","keep",,"Get-MgUserPerson","Get-MgUserPerson" +"GET","/users/{param}/people/{param}","keep",,"Get-MgUserPerson","Get-MgUserPerson" +"GET","/users/{param}/people/$count","keep",,"Get-MgUserPersonCount","Get-MgUserPersonCount" +"GET","/users/{param}/photo","keep",,"Get-MgUserPhoto","Get-MgUserPhoto" +"GET","/users/{param}/photo/$value","keep",,"Get-MgUserPhotoContent","Get-MgUserPhotoContent" +"GET","/users/{param}/planner","keep",,"Get-MgUserPlanner","Get-MgUserPlanner" +"GET","/users/{param}/planner/plans","keep",,"Get-MgUserPlannerPlan","Get-MgUserPlannerPlan" +"GET","/users/{param}/planner/plans/{param}","defer-crosspath",,"Get-MgUserPlannerPlan","Get-MgUserPlannerPlan ships from a different uri" +"GET","/users/{param}/planner/plans/{param}/buckets","suppress",,"Get-MgUserPlannerPlanBucket","no oracle row for GET /users/{param}/planner/plans/{param}/buckets and 'Get-MgUserPlannerPlanBucket' unshipped" +"GET","/users/{param}/planner/plans/{param}/buckets/{param}","suppress",,"Get-MgUserPlannerPlanBucket","no oracle row for GET /users/{param}/planner/plans/{param}/buckets/{param} and 'Get-MgUserPlannerPlanBucket' unshipped" +"GET","/users/{param}/planner/plans/{param}/buckets/{param}/tasks","suppress",,"Get-MgUserPlannerPlanBucketTask","no oracle row for GET /users/{param}/planner/plans/{param}/buckets/{param}/tasks and 'Get-MgUserPlannerPlanBucketTask' unshipped" +"GET","/users/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}","suppress",,"Get-MgUserPlannerPlanBucketTask","no oracle row for GET /users/{param}/planner/plans/{param}/buckets/{param}/tasks/{param} and 'Get-MgUserPlannerPlanBucketTask' unshipped" +"GET","/users/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/assignedToTaskBoardFormat","suppress",,"Get-MgUserPlannerPlanBucketTaskAssignedToTaskBoardFormat","no oracle row for GET /users/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/assignedToTaskBoardFormat and 'Get-MgUserPlannerPlanBucketTaskAssignedToTaskBoardFormat' unshipped" +"GET","/users/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/bucketTaskBoardFormat","suppress",,"Get-MgUserPlannerPlanBucketTaskBucketTaskBoardFormat","no oracle row for GET /users/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/bucketTaskBoardFormat and 'Get-MgUserPlannerPlanBucketTaskBucketTaskBoardFormat' unshipped" +"GET","/users/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/details","suppress",,"Get-MgUserPlannerPlanBucketTaskDetail","no oracle row for GET /users/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/details and 'Get-MgUserPlannerPlanBucketTaskDetail' unshipped" +"GET","/users/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/progressTaskBoardFormat","suppress",,"Get-MgUserPlannerPlanBucketTaskProgressTaskBoardFormat","no oracle row for GET /users/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/progressTaskBoardFormat and 'Get-MgUserPlannerPlanBucketTaskProgressTaskBoardFormat' unshipped" +"GET","/users/{param}/planner/plans/{param}/buckets/{param}/tasks/$count","suppress",,"Get-MgUserPlannerPlanBucketTaskCount","no oracle row for GET /users/{param}/planner/plans/{param}/buckets/{param}/tasks/$count and 'Get-MgUserPlannerPlanBucketTaskCount' unshipped" +"GET","/users/{param}/planner/plans/{param}/buckets/$count","suppress",,"Get-MgUserPlannerPlanBucketCount","no oracle row for GET /users/{param}/planner/plans/{param}/buckets/$count and 'Get-MgUserPlannerPlanBucketCount' unshipped" +"GET","/users/{param}/planner/plans/{param}/details","suppress",,"Get-MgUserPlannerPlanDetail","no oracle row for GET /users/{param}/planner/plans/{param}/details and 'Get-MgUserPlannerPlanDetail' unshipped" +"GET","/users/{param}/planner/plans/{param}/tasks","suppress",,"Get-MgUserPlannerPlanTask","no oracle row for GET /users/{param}/planner/plans/{param}/tasks and 'Get-MgUserPlannerPlanTask' unshipped" +"GET","/users/{param}/planner/plans/{param}/tasks/{param}","suppress",,"Get-MgUserPlannerPlanTask","no oracle row for GET /users/{param}/planner/plans/{param}/tasks/{param} and 'Get-MgUserPlannerPlanTask' unshipped" +"GET","/users/{param}/planner/plans/{param}/tasks/{param}/assignedToTaskBoardFormat","suppress",,"Get-MgUserPlannerPlanTaskAssignedToTaskBoardFormat","no oracle row for GET /users/{param}/planner/plans/{param}/tasks/{param}/assignedToTaskBoardFormat and 'Get-MgUserPlannerPlanTaskAssignedToTaskBoardFormat' unshipped" +"GET","/users/{param}/planner/plans/{param}/tasks/{param}/bucketTaskBoardFormat","suppress",,"Get-MgUserPlannerPlanTaskBucketTaskBoardFormat","no oracle row for GET /users/{param}/planner/plans/{param}/tasks/{param}/bucketTaskBoardFormat and 'Get-MgUserPlannerPlanTaskBucketTaskBoardFormat' unshipped" +"GET","/users/{param}/planner/plans/{param}/tasks/{param}/details","suppress",,"Get-MgUserPlannerPlanTaskDetail","no oracle row for GET /users/{param}/planner/plans/{param}/tasks/{param}/details and 'Get-MgUserPlannerPlanTaskDetail' unshipped" +"GET","/users/{param}/planner/plans/{param}/tasks/{param}/progressTaskBoardFormat","suppress",,"Get-MgUserPlannerPlanTaskProgressTaskBoardFormat","no oracle row for GET /users/{param}/planner/plans/{param}/tasks/{param}/progressTaskBoardFormat and 'Get-MgUserPlannerPlanTaskProgressTaskBoardFormat' unshipped" +"GET","/users/{param}/planner/plans/{param}/tasks/$count","suppress",,"Get-MgUserPlannerPlanTaskCount","no oracle row for GET /users/{param}/planner/plans/{param}/tasks/$count and 'Get-MgUserPlannerPlanTaskCount' unshipped" +"GET","/users/{param}/planner/plans/$count","suppress",,"Get-MgUserPlannerPlanCount","no oracle row for GET /users/{param}/planner/plans/$count and 'Get-MgUserPlannerPlanCount' unshipped" +"GET","/users/{param}/planner/tasks","keep",,"Get-MgUserPlannerTask","Get-MgUserPlannerTask" +"GET","/users/{param}/planner/tasks/{param}","defer-crosspath",,"Get-MgUserPlannerTask","Get-MgUserPlannerTask ships from a different uri" +"GET","/users/{param}/planner/tasks/{param}/assignedToTaskBoardFormat","suppress",,"Get-MgUserPlannerTaskAssignedToTaskBoardFormat","no oracle row for GET /users/{param}/planner/tasks/{param}/assignedToTaskBoardFormat and 'Get-MgUserPlannerTaskAssignedToTaskBoardFormat' unshipped" +"GET","/users/{param}/planner/tasks/{param}/bucketTaskBoardFormat","suppress",,"Get-MgUserPlannerTaskBucketTaskBoardFormat","no oracle row for GET /users/{param}/planner/tasks/{param}/bucketTaskBoardFormat and 'Get-MgUserPlannerTaskBucketTaskBoardFormat' unshipped" +"GET","/users/{param}/planner/tasks/{param}/details","suppress",,"Get-MgUserPlannerTaskDetail","no oracle row for GET /users/{param}/planner/tasks/{param}/details and 'Get-MgUserPlannerTaskDetail' unshipped" +"GET","/users/{param}/planner/tasks/{param}/progressTaskBoardFormat","suppress",,"Get-MgUserPlannerTaskProgressTaskBoardFormat","no oracle row for GET /users/{param}/planner/tasks/{param}/progressTaskBoardFormat and 'Get-MgUserPlannerTaskProgressTaskBoardFormat' unshipped" +"GET","/users/{param}/planner/tasks/$count","suppress",,"Get-MgUserPlannerTaskCount","no oracle row for GET /users/{param}/planner/tasks/$count and 'Get-MgUserPlannerTaskCount' unshipped" +"GET","/users/{param}/presence","keep",,"Get-MgUserPresence","Get-MgUserPresence" +"GET","/users/{param}/registeredDevices","keep",,"Get-MgUserRegisteredDevice","Get-MgUserRegisteredDevice" +"GET","/users/{param}/registeredDevices/{param}","keep",,"Get-MgUserRegisteredDevice","Get-MgUserRegisteredDevice" +"GET","/users/{param}/registeredDevices/$count","keep",,"Get-MgUserRegisteredDeviceCount","Get-MgUserRegisteredDeviceCount" +"GET","/users/{param}/scopedRoleMemberOf","keep",,"Get-MgUserScopedRoleMemberOf","Get-MgUserScopedRoleMemberOf" +"GET","/users/{param}/scopedRoleMemberOf/{param}","keep",,"Get-MgUserScopedRoleMemberOf","Get-MgUserScopedRoleMemberOf" +"GET","/users/{param}/scopedRoleMemberOf/$count","keep",,"Get-MgUserScopedRoleMemberOfCount","Get-MgUserScopedRoleMemberOfCount" +"GET","/users/{param}/settings","keep",,"Get-MgUserSetting","Get-MgUserSetting" +"GET","/users/{param}/settings/exchange","keep",,"Get-MgUserSettingExchange","Get-MgUserSettingExchange" +"GET","/users/{param}/settings/itemInsights","keep",,"Get-MgUserSettingItemInsight","Get-MgUserSettingItemInsight" +"GET","/users/{param}/settings/shiftPreferences","keep",,"Get-MgUserSettingShiftPreference","Get-MgUserSettingShiftPreference" +"GET","/users/{param}/settings/storage","keep",,"Get-MgUserSettingStorage","Get-MgUserSettingStorage" +"GET","/users/{param}/settings/storage/quota","keep",,"Get-MgUserSettingStorageQuota","Get-MgUserSettingStorageQuota" +"GET","/users/{param}/settings/storage/quota/services","keep",,"Get-MgUserSettingStorageQuotaService","Get-MgUserSettingStorageQuotaService" +"GET","/users/{param}/settings/storage/quota/services/{param}","keep",,"Get-MgUserSettingStorageQuotaService","Get-MgUserSettingStorageQuotaService" +"GET","/users/{param}/settings/storage/quota/services/$count","keep",,"Get-MgUserSettingStorageQuotaServiceCount","Get-MgUserSettingStorageQuotaServiceCount" +"GET","/users/{param}/settings/windows","keep",,"Get-MgUserSettingWindows","Get-MgUserSettingWindows" +"GET","/users/{param}/settings/windows/{param}","keep",,"Get-MgUserSettingWindows","Get-MgUserSettingWindows" +"GET","/users/{param}/settings/windows/{param}/instances","keep",,"Get-MgUserSettingWindowsInstance","Get-MgUserSettingWindowsInstance" +"GET","/users/{param}/settings/windows/{param}/instances/{param}","keep",,"Get-MgUserSettingWindowsInstance","Get-MgUserSettingWindowsInstance" +"GET","/users/{param}/settings/windows/{param}/instances/$count","keep",,"Get-MgUserSettingWindowsInstanceCount","Get-MgUserSettingWindowsInstanceCount" +"GET","/users/{param}/settings/windows/$count","keep",,"Get-MgUserSettingWindowsCount","Get-MgUserSettingWindowsCount" +"GET","/users/{param}/settings/workHoursAndLocations","keep",,"Get-MgUserSettingWorkHourAndLocation","Get-MgUserSettingWorkHourAndLocation" +"GET","/users/{param}/settings/workHoursAndLocations/occurrences","keep",,"Get-MgUserSettingWorkHourAndLocationOccurrence","Get-MgUserSettingWorkHourAndLocationOccurrence" +"GET","/users/{param}/settings/workHoursAndLocations/occurrences/{param}","keep",,"Get-MgUserSettingWorkHourAndLocationOccurrence","Get-MgUserSettingWorkHourAndLocationOccurrence" +"GET","/users/{param}/settings/workHoursAndLocations/occurrences/$count","keep",,"Get-MgUserSettingWorkHourAndLocationOccurrenceCount","Get-MgUserSettingWorkHourAndLocationOccurrenceCount" +"GET","/users/{param}/settings/workHoursAndLocations/recurrences","keep",,"Get-MgUserSettingWorkHourAndLocationRecurrence","Get-MgUserSettingWorkHourAndLocationRecurrence" +"GET","/users/{param}/settings/workHoursAndLocations/recurrences/{param}","keep",,"Get-MgUserSettingWorkHourAndLocationRecurrence","Get-MgUserSettingWorkHourAndLocationRecurrence" +"GET","/users/{param}/settings/workHoursAndLocations/recurrences/$count","keep",,"Get-MgUserSettingWorkHourAndLocationRecurrenceCount","Get-MgUserSettingWorkHourAndLocationRecurrenceCount" +"GET","/users/{param}/sponsors","keep",,"Get-MgUserSponsor","Get-MgUserSponsor" +"GET","/users/{param}/sponsors/$count","keep",,"Get-MgUserSponsorCount","Get-MgUserSponsorCount" +"GET","/users/{param}/sponsors/$ref","keep",,"Get-MgUserSponsorByRef","Get-MgUserSponsorByRef" +"GET","/users/{param}/teamwork","keep",,"Get-MgUserTeamwork","Get-MgUserTeamwork" +"GET","/users/{param}/teamwork/associatedTeams","keep",,"Get-MgUserTeamworkAssociatedTeam","Get-MgUserTeamworkAssociatedTeam" +"GET","/users/{param}/teamwork/associatedTeams/{param}","keep",,"Get-MgUserTeamworkAssociatedTeam","Get-MgUserTeamworkAssociatedTeam" +"GET","/users/{param}/teamwork/associatedTeams/$count","keep",,"Get-MgUserTeamworkAssociatedTeamCount","Get-MgUserTeamworkAssociatedTeamCount" +"GET","/users/{param}/teamwork/getAllRetainedTargetedMessages","rename","UserTeamworkRetainedTargetedMessage","Get-MgUserTeamworkGetAllRetainedTargetedMessages","Get-MgUserTeamworkRetainedTargetedMessage" +"GET","/users/{param}/teamwork/getAllTargetedMessages","rename","UserTeamworkTargetedMessage","Get-MgUserTeamworkGetAllTargetedMessages","Get-MgUserTeamworkTargetedMessage" +"GET","/users/{param}/teamwork/installedApps","keep",,"Get-MgUserTeamworkInstalledApp","Get-MgUserTeamworkInstalledApp" +"GET","/users/{param}/teamwork/installedApps/{param}","keep",,"Get-MgUserTeamworkInstalledApp","Get-MgUserTeamworkInstalledApp" +"GET","/users/{param}/teamwork/installedApps/{param}/chat","keep",,"Get-MgUserTeamworkInstalledAppChat","Get-MgUserTeamworkInstalledAppChat" +"GET","/users/{param}/teamwork/installedApps/{param}/teamsApp","keep",,"Get-MgUserTeamworkInstalledAppTeamApp","Get-MgUserTeamworkInstalledAppTeamApp" +"GET","/users/{param}/teamwork/installedApps/{param}/teamsAppDefinition","keep",,"Get-MgUserTeamworkInstalledAppTeamAppDefinition","Get-MgUserTeamworkInstalledAppTeamAppDefinition" +"GET","/users/{param}/teamwork/installedApps/$count","keep",,"Get-MgUserTeamworkInstalledAppCount","Get-MgUserTeamworkInstalledAppCount" +"GET","/users/{param}/todo","suppress",,"Get-MgUserTodo","no oracle row for GET /users/{param}/todo and 'Get-MgUserTodo' unshipped" +"GET","/users/{param}/todo/lists","keep",,"Get-MgUserTodoList","Get-MgUserTodoList" +"GET","/users/{param}/todo/lists/{param}","keep",,"Get-MgUserTodoList","Get-MgUserTodoList" +"GET","/users/{param}/todo/lists/{param}/extensions","keep",,"Get-MgUserTodoListExtension","Get-MgUserTodoListExtension" +"GET","/users/{param}/todo/lists/{param}/extensions/{param}","keep",,"Get-MgUserTodoListExtension","Get-MgUserTodoListExtension" +"GET","/users/{param}/todo/lists/{param}/extensions/$count","keep",,"Get-MgUserTodoListExtensionCount","Get-MgUserTodoListExtensionCount" +"GET","/users/{param}/todo/lists/{param}/tasks","rename","UserTodoTask","Get-MgUserTodoListTask","Get-MgUserTodoTask" +"GET","/users/{param}/todo/lists/{param}/tasks/{param}","rename","UserTodoTask","Get-MgUserTodoListTask","Get-MgUserTodoTask" +"GET","/users/{param}/todo/lists/{param}/tasks/{param}/attachments","rename","UserTodoTaskAttachment","Get-MgUserTodoListTaskAttachment","Get-MgUserTodoTaskAttachment" +"GET","/users/{param}/todo/lists/{param}/tasks/{param}/attachments/{param}","rename","UserTodoTaskAttachment","Get-MgUserTodoListTaskAttachment","Get-MgUserTodoTaskAttachment" +"GET","/users/{param}/todo/lists/{param}/tasks/{param}/attachments/{param}/$value","rename","UserTodoTaskAttachmentContent","Get-MgUserTodoListTaskAttachmentContent","Get-MgUserTodoTaskAttachmentContent" +"GET","/users/{param}/todo/lists/{param}/tasks/{param}/attachments/$count","rename","UserTodoTaskAttachmentCount","Get-MgUserTodoListTaskAttachmentCount","Get-MgUserTodoTaskAttachmentCount" +"GET","/users/{param}/todo/lists/{param}/tasks/{param}/attachmentSessions","rename","UserTodoTaskAttachmentSession","Get-MgUserTodoListTaskAttachmentSession","Get-MgUserTodoTaskAttachmentSession" +"GET","/users/{param}/todo/lists/{param}/tasks/{param}/attachmentSessions/{param}","rename","UserTodoTaskAttachmentSession","Get-MgUserTodoListTaskAttachmentSession","Get-MgUserTodoTaskAttachmentSession" +"GET","/users/{param}/todo/lists/{param}/tasks/{param}/attachmentSessions/$count","rename","UserTodoTaskAttachmentSessionCount","Get-MgUserTodoListTaskAttachmentSessionCount","Get-MgUserTodoTaskAttachmentSessionCount" +"GET","/users/{param}/todo/lists/{param}/tasks/{param}/checklistItems","rename","UserTodoTaskChecklistItem","Get-MgUserTodoListTaskChecklistItem","Get-MgUserTodoTaskChecklistItem" +"GET","/users/{param}/todo/lists/{param}/tasks/{param}/checklistItems/{param}","rename","UserTodoTaskChecklistItem","Get-MgUserTodoListTaskChecklistItem","Get-MgUserTodoTaskChecklistItem" +"GET","/users/{param}/todo/lists/{param}/tasks/{param}/checklistItems/$count","rename","UserTodoTaskChecklistItemCount","Get-MgUserTodoListTaskChecklistItemCount","Get-MgUserTodoTaskChecklistItemCount" +"GET","/users/{param}/todo/lists/{param}/tasks/{param}/extensions","rename","UserTodoTaskExtension","Get-MgUserTodoListTaskExtension","Get-MgUserTodoTaskExtension" +"GET","/users/{param}/todo/lists/{param}/tasks/{param}/extensions/{param}","rename","UserTodoTaskExtension","Get-MgUserTodoListTaskExtension","Get-MgUserTodoTaskExtension" +"GET","/users/{param}/todo/lists/{param}/tasks/{param}/extensions/$count","rename","UserTodoTaskExtensionCount","Get-MgUserTodoListTaskExtensionCount","Get-MgUserTodoTaskExtensionCount" +"GET","/users/{param}/todo/lists/{param}/tasks/{param}/linkedResources","rename","UserTodoTaskLinkedResource","Get-MgUserTodoListTaskLinkedResource","Get-MgUserTodoTaskLinkedResource" +"GET","/users/{param}/todo/lists/{param}/tasks/{param}/linkedResources/{param}","rename","UserTodoTaskLinkedResource","Get-MgUserTodoListTaskLinkedResource","Get-MgUserTodoTaskLinkedResource" +"GET","/users/{param}/todo/lists/{param}/tasks/{param}/linkedResources/$count","rename","UserTodoTaskLinkedResourceCount","Get-MgUserTodoListTaskLinkedResourceCount","Get-MgUserTodoTaskLinkedResourceCount" +"GET","/users/{param}/todo/lists/{param}/tasks/$count","rename","UserTodoTaskCount","Get-MgUserTodoListTaskCount","Get-MgUserTodoTaskCount" +"GET","/users/{param}/todo/lists/{param}/tasks/delta","rename","UserTodoTaskDelta","Get-MgUserTodoListTaskDelta","Get-MgUserTodoTaskDelta" +"GET","/users/{param}/todo/lists/$count","keep",,"Get-MgUserTodoListCount","Get-MgUserTodoListCount" +"GET","/users/{param}/todo/lists/delta","keep",,"Get-MgUserTodoListDelta","Get-MgUserTodoListDelta" +"GET","/users/{param}/transitiveMemberOf","keep",,"Get-MgUserTransitiveMemberOf","Get-MgUserTransitiveMemberOf" +"GET","/users/{param}/transitiveMemberOf/{param}","keep",,"Get-MgUserTransitiveMemberOf","Get-MgUserTransitiveMemberOf" +"GET","/users/{param}/transitiveMemberOf/$count","keep",,"Get-MgUserTransitiveMemberOfCount","Get-MgUserTransitiveMemberOfCount" +"GET","/users/$count","keep",,"Get-MgUserCount","Get-MgUserCount" +"GET","/users/delta","keep",,"Get-MgUserDelta","Get-MgUserDelta" +"PATCH","/admin/configurationManagement","keep",,"Update-MgAdminConfigurationManagement","Update-MgAdminConfigurationManagement" +"PATCH","/admin/configurationManagement/configurationDrifts/{param}","keep",,"Update-MgAdminConfigurationManagementConfigurationDrift","Update-MgAdminConfigurationManagementConfigurationDrift" +"PATCH","/admin/configurationManagement/configurationMonitoringResults/{param}","keep",,"Update-MgAdminConfigurationManagementConfigurationMonitoringResult","Update-MgAdminConfigurationManagementConfigurationMonitoringResult" +"PATCH","/admin/configurationManagement/configurationMonitors/{param}","keep",,"Update-MgAdminConfigurationManagementConfigurationMonitor","Update-MgAdminConfigurationManagementConfigurationMonitor" +"PATCH","/admin/configurationManagement/configurationMonitors/{param}/baseline","keep",,"Update-MgAdminConfigurationManagementConfigurationMonitorBaseline","Update-MgAdminConfigurationManagementConfigurationMonitorBaseline" +"PATCH","/admin/configurationManagement/configurationSnapshotJobs/{param}","keep",,"Update-MgAdminConfigurationManagementConfigurationSnapshotJob","Update-MgAdminConfigurationManagementConfigurationSnapshotJob" +"PATCH","/admin/configurationManagement/configurationSnapshots/{param}","keep",,"Update-MgAdminConfigurationManagementConfigurationSnapshot","Update-MgAdminConfigurationManagementConfigurationSnapshot" +"PATCH","/admin/edge","keep",,"Update-MgAdminEdge","Update-MgAdminEdge" +"PATCH","/admin/edge/internetExplorerMode","keep",,"Update-MgAdminEdgeInternetExplorerMode","Update-MgAdminEdgeInternetExplorerMode" +"PATCH","/admin/edge/internetExplorerMode/siteLists/{param}","keep",,"Update-MgAdminEdgeInternetExplorerModeSiteList","Update-MgAdminEdgeInternetExplorerModeSiteList" +"PATCH","/admin/edge/internetExplorerMode/siteLists/{param}/sharedCookies/{param}","keep",,"Update-MgAdminEdgeInternetExplorerModeSiteListSharedCookie","Update-MgAdminEdgeInternetExplorerModeSiteListSharedCookie" +"PATCH","/admin/edge/internetExplorerMode/siteLists/{param}/sites/{param}","keep",,"Update-MgAdminEdgeInternetExplorerModeSiteListSite","Update-MgAdminEdgeInternetExplorerModeSiteListSite" +"PATCH","/admin/people/itemInsights","keep",,"Update-MgAdminPeopleItemInsight","Update-MgAdminPeopleItemInsight" +"PATCH","/admin/people/profileCardProperties/{param}","keep",,"Update-MgAdminPeopleProfileCardProperty","Update-MgAdminPeopleProfileCardProperty" +"PATCH","/admin/people/profilePropertySettings/{param}","keep",,"Update-MgAdminPeopleProfilePropertySetting","Update-MgAdminPeopleProfilePropertySetting" +"PATCH","/admin/people/profileSources/{param}","keep",,"Update-MgAdminPeopleProfileSource","Update-MgAdminPeopleProfileSource" +"PATCH","/admin/people/pronouns","keep",,"Update-MgAdminPeoplePronoun","Update-MgAdminPeoplePronoun" +"PATCH","/admin/reportSettings","keep",,"Update-MgAdminReportSetting","Update-MgAdminReportSetting" +"PATCH","/admin/serviceAnnouncement","suppress",,"Update-MgAdminServiceAnnouncement","no oracle row for PATCH /admin/serviceAnnouncement and 'Update-MgAdminServiceAnnouncement' unshipped" +"PATCH","/admin/serviceAnnouncement/healthOverviews/{param}","suppress",,"Update-MgAdminServiceAnnouncementHealthOverview","no oracle row for PATCH /admin/serviceAnnouncement/healthOverviews/{param} and 'Update-MgAdminServiceAnnouncementHealthOverview' unshipped" +"PATCH","/admin/serviceAnnouncement/healthOverviews/{param}/issues/{param}","suppress",,"Update-MgAdminServiceAnnouncementHealthOverviewIssue","no oracle row for PATCH /admin/serviceAnnouncement/healthOverviews/{param}/issues/{param} and 'Update-MgAdminServiceAnnouncementHealthOverviewIssue' unshipped" +"PATCH","/admin/serviceAnnouncement/issues/{param}","suppress",,"Update-MgAdminServiceAnnouncementIssue","no oracle row for PATCH /admin/serviceAnnouncement/issues/{param} and 'Update-MgAdminServiceAnnouncementIssue' unshipped" +"PATCH","/admin/serviceAnnouncement/messages/{param}","suppress",,"Update-MgAdminServiceAnnouncementMessage","no oracle row for PATCH /admin/serviceAnnouncement/messages/{param} and 'Update-MgAdminServiceAnnouncementMessage' unshipped" +"PATCH","/admin/serviceAnnouncement/messages/{param}/attachments/{param}","suppress",,"Update-MgAdminServiceAnnouncementMessageAttachment","no oracle row for PATCH /admin/serviceAnnouncement/messages/{param}/attachments/{param} and 'Update-MgAdminServiceAnnouncementMessageAttachment' unshipped" +"PATCH","/admin/sharepoint","keep",,"Update-MgAdminSharepoint","Update-MgAdminSharepoint" +"PATCH","/admin/sharepoint/settings","keep",,"Update-MgAdminSharepointSetting","Update-MgAdminSharepointSetting" +"PATCH","/agreements/{param}","keep",,"Update-MgAgreement","Update-MgAgreement" +"PATCH","/agreements/{param}/acceptances/{param}","keep",,"Update-MgAgreementAcceptance","Update-MgAgreementAcceptance" +"PATCH","/agreements/{param}/file","keep",,"Update-MgAgreementFile","Update-MgAgreementFile" +"PATCH","/agreements/{param}/file/localizations/{param}","keep",,"Update-MgAgreementFileLocalization","Update-MgAgreementFileLocalization" +"PATCH","/agreements/{param}/file/localizations/{param}/versions/{param}","keep",,"Update-MgAgreementFileLocalizationVersion","Update-MgAgreementFileLocalizationVersion" +"PATCH","/agreements/{param}/files/{param}/versions/{param}","keep",,"Update-MgAgreementFileVersion","Update-MgAgreementFileVersion" +"PATCH","/appCatalogs/teamsApps/{param}","keep",,"Update-MgAppCatalogTeamApp","Update-MgAppCatalogTeamApp" +"PATCH","/appCatalogs/teamsApps/{param}/appDefinitions/{param}","keep",,"Update-MgAppCatalogTeamAppDefinition","Update-MgAppCatalogTeamAppDefinition" +"PATCH","/appCatalogs/teamsApps/{param}/appDefinitions/{param}/bot","keep",,"Update-MgAppCatalogTeamAppDefinitionBot","Update-MgAppCatalogTeamAppDefinitionBot" +"PATCH","/applications/{param}","keep",,"Update-MgApplication","Update-MgApplication" +"PATCH","/applications/{param}/extensionProperties/{param}","keep",,"Update-MgApplicationExtensionProperty","Update-MgApplicationExtensionProperty" +"PATCH","/applications/{param}/federatedIdentityCredentials/{param}","keep",,"Update-MgApplicationFederatedIdentityCredential","Update-MgApplicationFederatedIdentityCredential" +"PATCH","/applications/{param}/synchronization/jobs/{param}","keep",,"Update-MgApplicationSynchronizationJob","Update-MgApplicationSynchronizationJob" +"PATCH","/applications/{param}/synchronization/jobs/{param}/bulkUpload","keep",,"Update-MgApplicationSynchronizationJobBulkUpload","Update-MgApplicationSynchronizationJobBulkUpload" +"PATCH","/applications/{param}/synchronization/jobs/{param}/schema","keep",,"Update-MgApplicationSynchronizationJobSchema","Update-MgApplicationSynchronizationJobSchema" +"PATCH","/applications/{param}/synchronization/jobs/{param}/schema/directories/{param}","keep",,"Update-MgApplicationSynchronizationJobSchemaDirectory","Update-MgApplicationSynchronizationJobSchemaDirectory" +"PATCH","/applications/{param}/synchronization/templates/{param}","keep",,"Update-MgApplicationSynchronizationTemplate","Update-MgApplicationSynchronizationTemplate" +"PATCH","/applications/{param}/synchronization/templates/{param}/schema","keep",,"Update-MgApplicationSynchronizationTemplateSchema","Update-MgApplicationSynchronizationTemplateSchema" +"PATCH","/applications/{param}/synchronization/templates/{param}/schema/directories/{param}","keep",,"Update-MgApplicationSynchronizationTemplateSchemaDirectory","Update-MgApplicationSynchronizationTemplateSchemaDirectory" +"PATCH","/auditLogs","suppress",,"Update-MgAuditLog","no oracle row for PATCH /auditLogs and 'Update-MgAuditLog' unshipped" +"PATCH","/auditLogs/directoryAudits/{param}","suppress",,"Update-MgAuditLogDirectoryAudit","no oracle row for PATCH /auditLogs/directoryAudits/{param} and 'Update-MgAuditLogDirectoryAudit' unshipped" +"PATCH","/auditLogs/provisioning/{param}","suppress",,"Update-MgAuditLogProvisioning","no oracle row for PATCH /auditLogs/provisioning/{param} and 'Update-MgAuditLogProvisioning' unshipped" +"PATCH","/auditLogs/signIns/{param}","suppress",,"Update-MgAuditLogSignIn","no oracle row for PATCH /auditLogs/signIns/{param} and 'Update-MgAuditLogSignIn' unshipped" +"PATCH","/chats/{param}","keep",,"Update-MgChat","Update-MgChat" +"PATCH","/chats/{param}/installedApps/{param}","suppress",,"Update-MgChatInstalledApp","no oracle row; 'Update-MgChatInstalledApp' ships from sibling family (see rename entries for this noun)" +"PATCH","/chats/{param}/lastMessagePreview","keep",,"Update-MgChatLastMessagePreview","Update-MgChatLastMessagePreview" +"PATCH","/chats/{param}/members/{param}","keep",,"Update-MgChatMember","Update-MgChatMember" +"PATCH","/chats/{param}/messages/{param}","keep",,"Update-MgChatMessage","Update-MgChatMessage" +"PATCH","/chats/{param}/messages/{param}/hostedContents/{param}","suppress",,"Update-MgChatMessageHostedContent","no oracle row for PATCH /chats/{param}/messages/{param}/hostedContents/{param} and 'Update-MgChatMessageHostedContent' unshipped" +"PATCH","/chats/{param}/messages/{param}/replies/{param}","keep",,"Update-MgChatMessageReply","Update-MgChatMessageReply" +"PATCH","/chats/{param}/messages/{param}/replies/{param}/hostedContents/{param}","keep",,"Update-MgChatMessageReplyHostedContent","Update-MgChatMessageReplyHostedContent" +"PATCH","/chats/{param}/permissionGrants/{param}","keep",,"Update-MgChatPermissionGrant","Update-MgChatPermissionGrant" +"PATCH","/chats/{param}/pinnedMessages/{param}","keep",,"Update-MgChatPinnedMessage","Update-MgChatPinnedMessage" +"PATCH","/chats/{param}/tabs/{param}","keep",,"Update-MgChatTab","Update-MgChatTab" +"PATCH","/chats/{param}/targetedMessages/{param}","keep",,"Update-MgChatTargetedMessage","Update-MgChatTargetedMessage" +"PATCH","/chats/{param}/targetedMessages/{param}/hostedContents/{param}","keep",,"Update-MgChatTargetedMessageHostedContent","Update-MgChatTargetedMessageHostedContent" +"PATCH","/chats/{param}/targetedMessages/{param}/replies/{param}","keep",,"Update-MgChatTargetedMessageReply","Update-MgChatTargetedMessageReply" +"PATCH","/chats/{param}/targetedMessages/{param}/replies/{param}/hostedContents/{param}","keep",,"Update-MgChatTargetedMessageReplyHostedContent","Update-MgChatTargetedMessageReplyHostedContent" +"PATCH","/communications","suppress",,"Update-MgCommunication","no oracle row for PATCH /communications and 'Update-MgCommunication' unshipped" +"PATCH","/communications/adhocCalls/{param}","keep",,"Update-MgCommunicationAdhocCall","Update-MgCommunicationAdhocCall" +"PATCH","/communications/adhocCalls/{param}/recordings/{param}","keep",,"Update-MgCommunicationAdhocCallRecording","Update-MgCommunicationAdhocCallRecording" +"PATCH","/communications/adhocCalls/{param}/transcripts/{param}","keep",,"Update-MgCommunicationAdhocCallTranscript","Update-MgCommunicationAdhocCallTranscript" +"PATCH","/communications/callRecords/{param}","suppress",,"Update-MgCommunicationCallRecord","no oracle row for PATCH /communications/callRecords/{param} and 'Update-MgCommunicationCallRecord' unshipped" +"PATCH","/communications/callRecords/{param}/sessions/{param}","keep",,"Update-MgCommunicationCallRecordSession","Update-MgCommunicationCallRecordSession" +"PATCH","/communications/callRecords/{param}/sessions/{param}/segments/{param}","suppress",,"Update-MgCommunicationCallRecordSessionSegment","no oracle row for PATCH /communications/callRecords/{param}/sessions/{param}/segments/{param} and 'Update-MgCommunicationCallRecordSessionSegment' unshipped" +"PATCH","/communications/calls/{param}","suppress",,"Update-MgCommunicationCall","no oracle row for PATCH /communications/calls/{param} and 'Update-MgCommunicationCall' unshipped" +"PATCH","/communications/calls/{param}/audioRoutingGroups/{param}","keep",,"Update-MgCommunicationCallAudioRoutingGroup","Update-MgCommunicationCallAudioRoutingGroup" +"PATCH","/communications/calls/{param}/contentSharingSessions/{param}","keep",,"Update-MgCommunicationCallContentSharingSession","Update-MgCommunicationCallContentSharingSession" +"PATCH","/communications/calls/{param}/operations/{param}","keep",,"Update-MgCommunicationCallOperation","Update-MgCommunicationCallOperation" +"PATCH","/communications/calls/{param}/participants/{param}","keep",,"Update-MgCommunicationCallParticipant","Update-MgCommunicationCallParticipant" +"PATCH","/communications/onlineMeetingConversations/{param}","keep",,"Update-MgCommunicationOnlineMeetingConversation","Update-MgCommunicationOnlineMeetingConversation" +"PATCH","/communications/onlineMeetingConversations/{param}/messages/{param}","keep",,"Update-MgCommunicationOnlineMeetingConversationMessage","Update-MgCommunicationOnlineMeetingConversationMessage" +"PATCH","/communications/onlineMeetingConversations/{param}/messages/{param}/reactions/{param}","keep",,"Update-MgCommunicationOnlineMeetingConversationMessageReaction","Update-MgCommunicationOnlineMeetingConversationMessageReaction" +"PATCH","/communications/onlineMeetingConversations/{param}/messages/{param}/replies/{param}","keep",,"Update-MgCommunicationOnlineMeetingConversationMessageReply","Update-MgCommunicationOnlineMeetingConversationMessageReply" +"PATCH","/communications/onlineMeetingConversations/{param}/messages/{param}/replies/{param}/reactions/{param}","keep",,"Update-MgCommunicationOnlineMeetingConversationMessageReplyReaction","Update-MgCommunicationOnlineMeetingConversationMessageReplyReaction" +"PATCH","/communications/onlineMeetingConversations/{param}/starter","keep",,"Update-MgCommunicationOnlineMeetingConversationStarter","Update-MgCommunicationOnlineMeetingConversationStarter" +"PATCH","/communications/onlineMeetingConversations/{param}/starter/reactions/{param}","keep",,"Update-MgCommunicationOnlineMeetingConversationStarterReaction","Update-MgCommunicationOnlineMeetingConversationStarterReaction" +"PATCH","/communications/onlineMeetingConversations/{param}/starter/replies/{param}","keep",,"Update-MgCommunicationOnlineMeetingConversationStarterReply","Update-MgCommunicationOnlineMeetingConversationStarterReply" +"PATCH","/communications/onlineMeetingConversations/{param}/starter/replies/{param}/reactions/{param}","keep",,"Update-MgCommunicationOnlineMeetingConversationStarterReplyReaction","Update-MgCommunicationOnlineMeetingConversationStarterReplyReaction" +"PATCH","/communications/onlineMeetings/{param}","keep",,"Update-MgCommunicationOnlineMeeting","Update-MgCommunicationOnlineMeeting" +"PATCH","/communications/onlineMeetings/{param}/attendanceReports/{param}","keep",,"Update-MgCommunicationOnlineMeetingAttendanceReport","Update-MgCommunicationOnlineMeetingAttendanceReport" +"PATCH","/communications/onlineMeetings/{param}/attendanceReports/{param}/attendanceRecords/{param}","keep",,"Update-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord","Update-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord" +"PATCH","/communications/onlineMeetings/{param}/recordings/{param}","keep",,"Update-MgCommunicationOnlineMeetingRecording","Update-MgCommunicationOnlineMeetingRecording" +"PATCH","/communications/onlineMeetings/{param}/transcripts/{param}","keep",,"Update-MgCommunicationOnlineMeetingTranscript","Update-MgCommunicationOnlineMeetingTranscript" +"PATCH","/communications/presences/{param}","keep",,"Update-MgCommunicationPresence","Update-MgCommunicationPresence" +"PATCH","/compliance","keep",,"Update-MgCompliance","Update-MgCompliance" +"PATCH","/contacts/{param}","keep",,"Update-MgContact","Update-MgContact" +"PATCH","/contacts/{param}/onPremisesSyncBehavior","keep",,"Update-MgContactOnPremiseSyncBehavior","Update-MgContactOnPremiseSyncBehavior" +"PATCH","/contracts/{param}","keep",,"Update-MgContract","Update-MgContract" +"PATCH","/dataPolicyOperations/{param}","keep",,"Update-MgDataPolicyOperation","Update-MgDataPolicyOperation" +"PATCH","/deviceAppManagement","keep",,"Update-MgDeviceAppManagement","Update-MgDeviceAppManagement" +"PATCH","/deviceAppManagement/androidManagedAppProtections/{param}","keep",,"Update-MgDeviceAppManagementAndroidManagedAppProtection","Update-MgDeviceAppManagementAndroidManagedAppProtection" +"PATCH","/deviceAppManagement/androidManagedAppProtections/{param}/apps/{param}","keep",,"Update-MgDeviceAppManagementAndroidManagedAppProtectionApp","Update-MgDeviceAppManagementAndroidManagedAppProtectionApp" +"PATCH","/deviceAppManagement/androidManagedAppProtections/{param}/assignments/{param}","keep",,"Update-MgDeviceAppManagementAndroidManagedAppProtectionAssignment","Update-MgDeviceAppManagementAndroidManagedAppProtectionAssignment" +"PATCH","/deviceAppManagement/androidManagedAppProtections/{param}/deploymentSummary","keep",,"Update-MgDeviceAppManagementAndroidManagedAppProtectionDeploymentSummary","Update-MgDeviceAppManagementAndroidManagedAppProtectionDeploymentSummary" +"PATCH","/deviceAppManagement/defaultManagedAppProtections/{param}","keep",,"Update-MgDeviceAppManagementDefaultManagedAppProtection","Update-MgDeviceAppManagementDefaultManagedAppProtection" +"PATCH","/deviceAppManagement/defaultManagedAppProtections/{param}/apps/{param}","keep",,"Update-MgDeviceAppManagementDefaultManagedAppProtectionApp","Update-MgDeviceAppManagementDefaultManagedAppProtectionApp" +"PATCH","/deviceAppManagement/defaultManagedAppProtections/{param}/deploymentSummary","keep",,"Update-MgDeviceAppManagementDefaultManagedAppProtectionDeploymentSummary","Update-MgDeviceAppManagementDefaultManagedAppProtectionDeploymentSummary" +"PATCH","/deviceAppManagement/iosManagedAppProtections/{param}","rename","DeviceAppManagementiOSManagedAppProtection","Update-MgDeviceAppManagementIosManagedAppProtection","Update-MgDeviceAppManagementiOSManagedAppProtection" +"PATCH","/deviceAppManagement/iosManagedAppProtections/{param}/apps/{param}","rename","DeviceAppManagementiOSManagedAppProtectionApp","Update-MgDeviceAppManagementIosManagedAppProtectionApp","Update-MgDeviceAppManagementiOSManagedAppProtectionApp" +"PATCH","/deviceAppManagement/iosManagedAppProtections/{param}/assignments/{param}","rename","DeviceAppManagementiOSManagedAppProtectionAssignment","Update-MgDeviceAppManagementIosManagedAppProtectionAssignment","Update-MgDeviceAppManagementiOSManagedAppProtectionAssignment" +"PATCH","/deviceAppManagement/iosManagedAppProtections/{param}/deploymentSummary","rename","DeviceAppManagementiOSManagedAppProtectionDeploymentSummary","Update-MgDeviceAppManagementIosManagedAppProtectionDeploymentSummary","Update-MgDeviceAppManagementiOSManagedAppProtectionDeploymentSummary" +"PATCH","/deviceAppManagement/managedAppPolicies/{param}","keep",,"Update-MgDeviceAppManagementManagedAppPolicy","Update-MgDeviceAppManagementManagedAppPolicy" +"PATCH","/deviceAppManagement/managedAppRegistrations/{param}","keep",,"Update-MgDeviceAppManagementManagedAppRegistration","Update-MgDeviceAppManagementManagedAppRegistration" +"PATCH","/deviceAppManagement/managedAppRegistrations/{param}/appliedPolicies/{param}","keep",,"Update-MgDeviceAppManagementManagedAppRegistrationAppliedPolicy","Update-MgDeviceAppManagementManagedAppRegistrationAppliedPolicy" +"PATCH","/deviceAppManagement/managedAppRegistrations/{param}/intendedPolicies/{param}","keep",,"Update-MgDeviceAppManagementManagedAppRegistrationIntendedPolicy","Update-MgDeviceAppManagementManagedAppRegistrationIntendedPolicy" +"PATCH","/deviceAppManagement/managedAppRegistrations/{param}/operations/{param}","keep",,"Update-MgDeviceAppManagementManagedAppRegistrationOperation","Update-MgDeviceAppManagementManagedAppRegistrationOperation" +"PATCH","/deviceAppManagement/managedAppStatuses/{param}","keep",,"Update-MgDeviceAppManagementManagedAppStatus","Update-MgDeviceAppManagementManagedAppStatus" +"PATCH","/deviceAppManagement/managedEBooks/{param}","keep",,"Update-MgDeviceAppManagementManagedEBook","Update-MgDeviceAppManagementManagedEBook" +"PATCH","/deviceAppManagement/managedEBooks/{param}/assignments/{param}","keep",,"Update-MgDeviceAppManagementManagedEBookAssignment","Update-MgDeviceAppManagementManagedEBookAssignment" +"PATCH","/deviceAppManagement/managedEBooks/{param}/deviceStates/{param}","keep",,"Update-MgDeviceAppManagementManagedEBookDeviceState","Update-MgDeviceAppManagementManagedEBookDeviceState" +"PATCH","/deviceAppManagement/managedEBooks/{param}/installSummary","keep",,"Update-MgDeviceAppManagementManagedEBookInstallSummary","Update-MgDeviceAppManagementManagedEBookInstallSummary" +"PATCH","/deviceAppManagement/managedEBooks/{param}/userStateSummary/{param}","keep",,"Update-MgDeviceAppManagementManagedEBookUserStateSummary","Update-MgDeviceAppManagementManagedEBookUserStateSummary" +"PATCH","/deviceAppManagement/managedEBooks/{param}/userStateSummary/{param}/deviceStates/{param}","keep",,"Update-MgDeviceAppManagementManagedEBookUserStateSummaryDeviceState","Update-MgDeviceAppManagementManagedEBookUserStateSummaryDeviceState" +"PATCH","/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{param}","keep",,"Update-MgDeviceAppManagementMdmWindowsInformationProtectionPolicy","Update-MgDeviceAppManagementMdmWindowsInformationProtectionPolicy" +"PATCH","/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{param}/assignments/{param}","keep",,"Update-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyAssignment","Update-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyAssignment" +"PATCH","/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{param}/exemptAppLockerFiles/{param}","keep",,"Update-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyExemptAppLockerFile","Update-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyExemptAppLockerFile" +"PATCH","/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{param}/protectedAppLockerFiles/{param}","keep",,"Update-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyProtectedAppLockerFile","Update-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyProtectedAppLockerFile" +"PATCH","/deviceAppManagement/mobileAppCategories/{param}","keep",,"Update-MgDeviceAppManagementMobileAppCategory","Update-MgDeviceAppManagementMobileAppCategory" +"PATCH","/deviceAppManagement/mobileAppConfigurations/{param}","keep",,"Update-MgDeviceAppManagementMobileAppConfiguration","Update-MgDeviceAppManagementMobileAppConfiguration" +"PATCH","/deviceAppManagement/mobileAppConfigurations/{param}/assignments/{param}","keep",,"Update-MgDeviceAppManagementMobileAppConfigurationAssignment","Update-MgDeviceAppManagementMobileAppConfigurationAssignment" +"PATCH","/deviceAppManagement/mobileAppConfigurations/{param}/deviceStatuses/{param}","keep",,"Update-MgDeviceAppManagementMobileAppConfigurationDeviceStatus","Update-MgDeviceAppManagementMobileAppConfigurationDeviceStatus" +"PATCH","/deviceAppManagement/mobileAppConfigurations/{param}/deviceStatusSummary","keep",,"Update-MgDeviceAppManagementMobileAppConfigurationDeviceStatusSummary","Update-MgDeviceAppManagementMobileAppConfigurationDeviceStatusSummary" +"PATCH","/deviceAppManagement/mobileAppConfigurations/{param}/userStatuses/{param}","keep",,"Update-MgDeviceAppManagementMobileAppConfigurationUserStatus","Update-MgDeviceAppManagementMobileAppConfigurationUserStatus" +"PATCH","/deviceAppManagement/mobileAppConfigurations/{param}/userStatusSummary","keep",,"Update-MgDeviceAppManagementMobileAppConfigurationUserStatusSummary","Update-MgDeviceAppManagementMobileAppConfigurationUserStatusSummary" +"PATCH","/deviceAppManagement/mobileAppRelationships/{param}","rename","DeviceAppManagementMultipleMobileAppRelationship","Update-MgDeviceAppManagementMobileAppRelationship","Update-MgDeviceAppManagementMultipleMobileAppRelationship" +"PATCH","/deviceAppManagement/mobileApps/{param}","keep",,"Update-MgDeviceAppManagementMobileApp","Update-MgDeviceAppManagementMobileApp" +"PATCH","/deviceAppManagement/mobileApps/{param}/assignments/{param}","keep",,"Update-MgDeviceAppManagementMobileAppAssignment","Update-MgDeviceAppManagementMobileAppAssignment" +"PATCH","/deviceAppManagement/targetedManagedAppConfigurations/{param}","keep",,"Update-MgDeviceAppManagementTargetedManagedAppConfiguration","Update-MgDeviceAppManagementTargetedManagedAppConfiguration" +"PATCH","/deviceAppManagement/targetedManagedAppConfigurations/{param}/apps/{param}","keep",,"Update-MgDeviceAppManagementTargetedManagedAppConfigurationApp","Update-MgDeviceAppManagementTargetedManagedAppConfigurationApp" +"PATCH","/deviceAppManagement/targetedManagedAppConfigurations/{param}/assignments/{param}","keep",,"Update-MgDeviceAppManagementTargetedManagedAppConfigurationAssignment","Update-MgDeviceAppManagementTargetedManagedAppConfigurationAssignment" +"PATCH","/deviceAppManagement/targetedManagedAppConfigurations/{param}/deploymentSummary","keep",,"Update-MgDeviceAppManagementTargetedManagedAppConfigurationDeploymentSummary","Update-MgDeviceAppManagementTargetedManagedAppConfigurationDeploymentSummary" +"PATCH","/deviceAppManagement/vppTokens/{param}","keep",,"Update-MgDeviceAppManagementVppToken","Update-MgDeviceAppManagementVppToken" +"PATCH","/deviceAppManagement/windowsInformationProtectionPolicies/{param}","keep",,"Update-MgDeviceAppManagementWindowsInformationProtectionPolicy","Update-MgDeviceAppManagementWindowsInformationProtectionPolicy" +"PATCH","/deviceAppManagement/windowsInformationProtectionPolicies/{param}/assignments/{param}","keep",,"Update-MgDeviceAppManagementWindowsInformationProtectionPolicyAssignment","Update-MgDeviceAppManagementWindowsInformationProtectionPolicyAssignment" +"PATCH","/deviceAppManagement/windowsInformationProtectionPolicies/{param}/exemptAppLockerFiles/{param}","keep",,"Update-MgDeviceAppManagementWindowsInformationProtectionPolicyExemptAppLockerFile","Update-MgDeviceAppManagementWindowsInformationProtectionPolicyExemptAppLockerFile" +"PATCH","/deviceAppManagement/windowsInformationProtectionPolicies/{param}/protectedAppLockerFiles/{param}","keep",,"Update-MgDeviceAppManagementWindowsInformationProtectionPolicyProtectedAppLockerFile","Update-MgDeviceAppManagementWindowsInformationProtectionPolicyProtectedAppLockerFile" +"PATCH","/deviceManagement","keep",,"Update-MgDeviceManagement","Update-MgDeviceManagement" +"PATCH","/deviceManagement/applePushNotificationCertificate","keep",,"Update-MgDeviceManagementApplePushNotificationCertificate","Update-MgDeviceManagementApplePushNotificationCertificate" +"PATCH","/deviceManagement/auditEvents/{param}","keep",,"Update-MgDeviceManagementAuditEvent","Update-MgDeviceManagementAuditEvent" +"PATCH","/deviceManagement/complianceManagementPartners/{param}","keep",,"Update-MgDeviceManagementComplianceManagementPartner","Update-MgDeviceManagementComplianceManagementPartner" +"PATCH","/deviceManagement/conditionalAccessSettings","keep",,"Update-MgDeviceManagementConditionalAccessSetting","Update-MgDeviceManagementConditionalAccessSetting" +"PATCH","/deviceManagement/detectedApps/{param}","keep",,"Update-MgDeviceManagementDetectedApp","Update-MgDeviceManagementDetectedApp" +"PATCH","/deviceManagement/deviceCategories/{param}","keep",,"Update-MgDeviceManagementDeviceCategory","Update-MgDeviceManagementDeviceCategory" +"PATCH","/deviceManagement/deviceCompliancePolicies/{param}","keep",,"Update-MgDeviceManagementDeviceCompliancePolicy","Update-MgDeviceManagementDeviceCompliancePolicy" +"PATCH","/deviceManagement/deviceCompliancePolicies/{param}/assignments/{param}","keep",,"Update-MgDeviceManagementDeviceCompliancePolicyAssignment","Update-MgDeviceManagementDeviceCompliancePolicyAssignment" +"PATCH","/deviceManagement/deviceCompliancePolicies/{param}/deviceSettingStateSummaries/{param}","keep",,"Update-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary","Update-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary" +"PATCH","/deviceManagement/deviceCompliancePolicies/{param}/deviceStatuses/{param}","keep",,"Update-MgDeviceManagementDeviceCompliancePolicyDeviceStatus","Update-MgDeviceManagementDeviceCompliancePolicyDeviceStatus" +"PATCH","/deviceManagement/deviceCompliancePolicies/{param}/deviceStatusOverview","keep",,"Update-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview","Update-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview" +"PATCH","/deviceManagement/deviceCompliancePolicies/{param}/scheduledActionsForRule/{param}","keep",,"Update-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule","Update-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule" +"PATCH","/deviceManagement/deviceCompliancePolicies/{param}/scheduledActionsForRule/{param}/scheduledActionConfigurations/{param}","keep",,"Update-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration","Update-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration" +"PATCH","/deviceManagement/deviceCompliancePolicies/{param}/userStatuses/{param}","keep",,"Update-MgDeviceManagementDeviceCompliancePolicyUserStatus","Update-MgDeviceManagementDeviceCompliancePolicyUserStatus" +"PATCH","/deviceManagement/deviceCompliancePolicies/{param}/userStatusOverview","keep",,"Update-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview","Update-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview" +"PATCH","/deviceManagement/deviceCompliancePolicyDeviceStateSummary","keep",,"Update-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary","Update-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary" +"PATCH","/deviceManagement/deviceCompliancePolicySettingStateSummaries/{param}","keep",,"Update-MgDeviceManagementDeviceCompliancePolicySettingStateSummary","Update-MgDeviceManagementDeviceCompliancePolicySettingStateSummary" +"PATCH","/deviceManagement/deviceCompliancePolicySettingStateSummaries/{param}/deviceComplianceSettingStates/{param}","keep",,"Update-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState","Update-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState" +"PATCH","/deviceManagement/deviceConfigurationDeviceStateSummaries","keep",,"Update-MgDeviceManagementDeviceConfigurationDeviceStateSummary","Update-MgDeviceManagementDeviceConfigurationDeviceStateSummary" +"PATCH","/deviceManagement/deviceConfigurations/{param}","keep",,"Update-MgDeviceManagementDeviceConfiguration","Update-MgDeviceManagementDeviceConfiguration" +"PATCH","/deviceManagement/deviceConfigurations/{param}/assignments/{param}","keep",,"Update-MgDeviceManagementDeviceConfigurationAssignment","Update-MgDeviceManagementDeviceConfigurationAssignment" +"PATCH","/deviceManagement/deviceConfigurations/{param}/deviceSettingStateSummaries/{param}","keep",,"Update-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary","Update-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary" +"PATCH","/deviceManagement/deviceConfigurations/{param}/deviceStatuses/{param}","keep",,"Update-MgDeviceManagementDeviceConfigurationDeviceStatus","Update-MgDeviceManagementDeviceConfigurationDeviceStatus" +"PATCH","/deviceManagement/deviceConfigurations/{param}/deviceStatusOverview","keep",,"Update-MgDeviceManagementDeviceConfigurationDeviceStatusOverview","Update-MgDeviceManagementDeviceConfigurationDeviceStatusOverview" +"PATCH","/deviceManagement/deviceConfigurations/{param}/userStatuses/{param}","keep",,"Update-MgDeviceManagementDeviceConfigurationUserStatus","Update-MgDeviceManagementDeviceConfigurationUserStatus" +"PATCH","/deviceManagement/deviceConfigurations/{param}/userStatusOverview","keep",,"Update-MgDeviceManagementDeviceConfigurationUserStatusOverview","Update-MgDeviceManagementDeviceConfigurationUserStatusOverview" +"PATCH","/deviceManagement/deviceEnrollmentConfigurations/{param}","keep",,"Update-MgDeviceManagementDeviceEnrollmentConfiguration","Update-MgDeviceManagementDeviceEnrollmentConfiguration" +"PATCH","/deviceManagement/deviceEnrollmentConfigurations/{param}/assignments/{param}","keep",,"Update-MgDeviceManagementDeviceEnrollmentConfigurationAssignment","Update-MgDeviceManagementDeviceEnrollmentConfigurationAssignment" +"PATCH","/deviceManagement/deviceManagementPartners/{param}","keep",,"Update-MgDeviceManagementPartner","Update-MgDeviceManagementPartner" +"PATCH","/deviceManagement/exchangeConnectors/{param}","keep",,"Update-MgDeviceManagementExchangeConnector","Update-MgDeviceManagementExchangeConnector" +"PATCH","/deviceManagement/importedWindowsAutopilotDeviceIdentities/{param}","keep",,"Update-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity","Update-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity" +"PATCH","/deviceManagement/iosUpdateStatuses/{param}","rename","DeviceManagementIoUpdateStatus","Update-MgDeviceManagementIosUpdateStatus","Update-MgDeviceManagementIoUpdateStatus" +"PATCH","/deviceManagement/managedDevices/{param}","keep",,"Update-MgDeviceManagementManagedDevice","Update-MgDeviceManagementManagedDevice" +"PATCH","/deviceManagement/managedDevices/{param}/deviceCategory","keep",,"Update-MgDeviceManagementManagedDeviceCategory","Update-MgDeviceManagementManagedDeviceCategory" +"PATCH","/deviceManagement/managedDevices/{param}/deviceCompliancePolicyStates/{param}","keep",,"Update-MgDeviceManagementManagedDeviceCompliancePolicyState","Update-MgDeviceManagementManagedDeviceCompliancePolicyState" +"PATCH","/deviceManagement/managedDevices/{param}/deviceConfigurationStates/{param}","keep",,"Update-MgDeviceManagementManagedDeviceConfigurationState","Update-MgDeviceManagementManagedDeviceConfigurationState" +"PATCH","/deviceManagement/managedDevices/{param}/logCollectionRequests/{param}","keep",,"Update-MgDeviceManagementManagedDeviceLogCollectionRequest","Update-MgDeviceManagementManagedDeviceLogCollectionRequest" +"PATCH","/deviceManagement/managedDevices/{param}/windowsProtectionState","keep",,"Update-MgDeviceManagementManagedDeviceWindowsProtectionState","Update-MgDeviceManagementManagedDeviceWindowsProtectionState" +"PATCH","/deviceManagement/managedDevices/{param}/windowsProtectionState/detectedMalwareState/{param}","keep",,"Update-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState","Update-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState" +"PATCH","/deviceManagement/mobileAppTroubleshootingEvents/{param}","keep",,"Update-MgDeviceManagementMobileAppTroubleshootingEvent","Update-MgDeviceManagementMobileAppTroubleshootingEvent" +"PATCH","/deviceManagement/mobileAppTroubleshootingEvents/{param}/appLogCollectionRequests/{param}","keep",,"Update-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest","Update-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest" +"PATCH","/deviceManagement/mobileThreatDefenseConnectors/{param}","keep",,"Update-MgDeviceManagementMobileThreatDefenseConnector","Update-MgDeviceManagementMobileThreatDefenseConnector" +"PATCH","/deviceManagement/notificationMessageTemplates/{param}","keep",,"Update-MgDeviceManagementNotificationMessageTemplate","Update-MgDeviceManagementNotificationMessageTemplate" +"PATCH","/deviceManagement/notificationMessageTemplates/{param}/localizedNotificationMessages/{param}","keep",,"Update-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage","Update-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage" +"PATCH","/deviceManagement/remoteAssistancePartners/{param}","keep",,"Update-MgDeviceManagementRemoteAssistancePartner","Update-MgDeviceManagementRemoteAssistancePartner" +"PATCH","/deviceManagement/reports","keep",,"Update-MgDeviceManagementReport","Update-MgDeviceManagementReport" +"PATCH","/deviceManagement/reports/exportJobs/{param}","suppress",,"Update-MgDeviceManagementReportExportJob","no oracle row for PATCH /deviceManagement/reports/exportJobs/{param} and 'Update-MgDeviceManagementReportExportJob' unshipped" +"PATCH","/deviceManagement/resourceOperations/{param}","keep",,"Update-MgDeviceManagementResourceOperation","Update-MgDeviceManagementResourceOperation" +"PATCH","/deviceManagement/roleAssignments/{param}","keep",,"Update-MgDeviceManagementRoleAssignment","Update-MgDeviceManagementRoleAssignment" +"PATCH","/deviceManagement/roleDefinitions/{param}","keep",,"Update-MgDeviceManagementRoleDefinition","Update-MgDeviceManagementRoleDefinition" +"PATCH","/deviceManagement/roleDefinitions/{param}/roleAssignments/{param}","keep",,"Update-MgDeviceManagementRoleDefinitionRoleAssignment","Update-MgDeviceManagementRoleDefinitionRoleAssignment" +"PATCH","/deviceManagement/termsAndConditions/{param}","keep",,"Update-MgDeviceManagementTermAndCondition","Update-MgDeviceManagementTermAndCondition" +"PATCH","/deviceManagement/termsAndConditions/{param}/acceptanceStatuses/{param}","keep",,"Update-MgDeviceManagementTermAndConditionAcceptanceStatus","Update-MgDeviceManagementTermAndConditionAcceptanceStatus" +"PATCH","/deviceManagement/termsAndConditions/{param}/assignments/{param}","keep",,"Update-MgDeviceManagementTermAndConditionAssignment","Update-MgDeviceManagementTermAndConditionAssignment" +"PATCH","/deviceManagement/troubleshootingEvents/{param}","keep",,"Update-MgDeviceManagementTroubleshootingEvent","Update-MgDeviceManagementTroubleshootingEvent" +"PATCH","/deviceManagement/virtualEndpoint","suppress",,"Update-MgDeviceManagementVirtualEndpoint","no oracle row for PATCH /deviceManagement/virtualEndpoint and 'Update-MgDeviceManagementVirtualEndpoint' unshipped" +"PATCH","/deviceManagement/virtualEndpoint/auditEvents/{param}","suppress",,"Update-MgDeviceManagementVirtualEndpointAuditEvent","no oracle row for PATCH /deviceManagement/virtualEndpoint/auditEvents/{param} and 'Update-MgDeviceManagementVirtualEndpointAuditEvent' unshipped" +"PATCH","/deviceManagement/virtualEndpoint/cloudPCs/{param}","suppress",,"Update-MgDeviceManagementVirtualEndpointCloudPCs","no oracle row for PATCH /deviceManagement/virtualEndpoint/cloudPCs/{param} and 'Update-MgDeviceManagementVirtualEndpointCloudPCs' unshipped" +"PATCH","/deviceManagement/virtualEndpoint/deviceImages/{param}","keep",,"Update-MgDeviceManagementVirtualEndpointDeviceImage","Update-MgDeviceManagementVirtualEndpointDeviceImage" +"PATCH","/deviceManagement/virtualEndpoint/galleryImages/{param}","keep",,"Update-MgDeviceManagementVirtualEndpointGalleryImage","Update-MgDeviceManagementVirtualEndpointGalleryImage" +"PATCH","/deviceManagement/virtualEndpoint/onPremisesConnections/{param}","keep",,"Update-MgDeviceManagementVirtualEndpointOnPremiseConnection","Update-MgDeviceManagementVirtualEndpointOnPremiseConnection" +"PATCH","/deviceManagement/virtualEndpoint/provisioningPolicies/{param}","keep",,"Update-MgDeviceManagementVirtualEndpointProvisioningPolicy","Update-MgDeviceManagementVirtualEndpointProvisioningPolicy" +"PATCH","/deviceManagement/virtualEndpoint/provisioningPolicies/{param}/assignments/{param}","keep",,"Update-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment","Update-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment" +"PATCH","/deviceManagement/virtualEndpoint/provisioningPolicies/{param}/assignments/{param}/assignedUsers/{param}/mailboxSettings","keep",,"Update-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserMailboxSetting","Update-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserMailboxSetting" +"PATCH","/deviceManagement/virtualEndpoint/report","keep",,"Update-MgDeviceManagementVirtualEndpointReport","Update-MgDeviceManagementVirtualEndpointReport" +"PATCH","/deviceManagement/virtualEndpoint/userSettings/{param}","keep",,"Update-MgDeviceManagementVirtualEndpointUserSetting","Update-MgDeviceManagementVirtualEndpointUserSetting" +"PATCH","/deviceManagement/virtualEndpoint/userSettings/{param}/assignments/{param}","keep",,"Update-MgDeviceManagementVirtualEndpointUserSettingAssignment","Update-MgDeviceManagementVirtualEndpointUserSettingAssignment" +"PATCH","/deviceManagement/windowsAutopilotDeviceIdentities/{param}","suppress",,"Update-MgDeviceManagementWindowsAutopilotDeviceIdentity","no oracle row for PATCH /deviceManagement/windowsAutopilotDeviceIdentities/{param} and 'Update-MgDeviceManagementWindowsAutopilotDeviceIdentity' unshipped" +"PATCH","/deviceManagement/windowsInformationProtectionAppLearningSummaries/{param}","keep",,"Update-MgDeviceManagementWindowsInformationProtectionAppLearningSummary","Update-MgDeviceManagementWindowsInformationProtectionAppLearningSummary" +"PATCH","/deviceManagement/windowsInformationProtectionNetworkLearningSummaries/{param}","keep",,"Update-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary","Update-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary" +"PATCH","/deviceManagement/windowsMalwareInformation/{param}","keep",,"Update-MgDeviceManagementWindowsMalwareInformation","Update-MgDeviceManagementWindowsMalwareInformation" +"PATCH","/deviceManagement/windowsMalwareInformation/{param}/deviceMalwareStates/{param}","keep",,"Update-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState","Update-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState" +"PATCH","/devices/{param}","keep",,"Update-MgDevice","Update-MgDevice" +"PATCH","/devices/{param}/extensions/{param}","keep",,"Update-MgDeviceExtension","Update-MgDeviceExtension" +"PATCH","/directory","keep",,"Update-MgDirectory","Update-MgDirectory" +"PATCH","/directory/administrativeUnits/{param}","keep",,"Update-MgDirectoryAdministrativeUnit","Update-MgDirectoryAdministrativeUnit" +"PATCH","/directory/administrativeUnits/{param}/extensions/{param}","keep",,"Update-MgDirectoryAdministrativeUnitExtension","Update-MgDirectoryAdministrativeUnitExtension" +"PATCH","/directory/administrativeUnits/{param}/scopedRoleMembers/{param}","keep",,"Update-MgDirectoryAdministrativeUnitScopedRoleMember","Update-MgDirectoryAdministrativeUnitScopedRoleMember" +"PATCH","/directory/attributeSets/{param}","keep",,"Update-MgDirectoryAttributeSet","Update-MgDirectoryAttributeSet" +"PATCH","/directory/customSecurityAttributeDefinitions/{param}","keep",,"Update-MgDirectoryCustomSecurityAttributeDefinition","Update-MgDirectoryCustomSecurityAttributeDefinition" +"PATCH","/directory/customSecurityAttributeDefinitions/{param}/allowedValues/{param}","keep",,"Update-MgDirectoryCustomSecurityAttributeDefinitionAllowedValue","Update-MgDirectoryCustomSecurityAttributeDefinitionAllowedValue" +"PATCH","/directory/deviceLocalCredentials/{param}","keep",,"Update-MgDirectoryDeviceLocalCredential","Update-MgDirectoryDeviceLocalCredential" +"PATCH","/directory/federationConfigurations/{param}","keep",,"Update-MgDirectoryFederationConfiguration","Update-MgDirectoryFederationConfiguration" +"PATCH","/directory/onPremisesSynchronization/{param}","keep",,"Update-MgDirectoryOnPremiseSynchronization","Update-MgDirectoryOnPremiseSynchronization" +"PATCH","/directory/publicKeyInfrastructure","keep",,"Update-MgDirectoryPublicKeyInfrastructure","Update-MgDirectoryPublicKeyInfrastructure" +"PATCH","/directory/publicKeyInfrastructure/certificateBasedAuthConfigurations/{param}","keep",,"Update-MgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfiguration","Update-MgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfiguration" +"PATCH","/directory/publicKeyInfrastructure/certificateBasedAuthConfigurations/{param}/certificateAuthorities/{param}","keep",,"Update-MgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfigurationCertificateAuthority","Update-MgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfigurationCertificateAuthority" +"PATCH","/directory/recovery","keep",,"Update-MgDirectoryRecovery","Update-MgDirectoryRecovery" +"PATCH","/directory/recovery/jobs/{param}","keep",,"Update-MgDirectoryRecoveryJob","Update-MgDirectoryRecoveryJob" +"PATCH","/directory/recovery/snapshots/{param}","keep",,"Update-MgDirectoryRecoverySnapshot","Update-MgDirectoryRecoverySnapshot" +"PATCH","/directory/subscriptions/{param}","keep",,"Update-MgDirectorySubscription","Update-MgDirectorySubscription" +"PATCH","/directoryObjects/{param}","keep",,"Update-MgDirectoryObject","Update-MgDirectoryObject" +"PATCH","/directoryRoles/{param}","keep",,"Update-MgDirectoryRole","Update-MgDirectoryRole" +"PATCH","/directoryRoles/{param}/scopedMembers/{param}","keep",,"Update-MgDirectoryRoleScopedMember","Update-MgDirectoryRoleScopedMember" +"PATCH","/directoryRoleTemplates/{param}","keep",,"Update-MgDirectoryRoleTemplate","Update-MgDirectoryRoleTemplate" +"PATCH","/domains/{param}","keep",,"Update-MgDomain","Update-MgDomain" +"PATCH","/domains/{param}/federationConfiguration/{param}","keep",,"Update-MgDomainFederationConfiguration","Update-MgDomainFederationConfiguration" +"PATCH","/domains/{param}/serviceConfigurationRecords/{param}","keep",,"Update-MgDomainServiceConfigurationRecord","Update-MgDomainServiceConfigurationRecord" +"PATCH","/domains/{param}/verificationDnsRecords/{param}","keep",,"Update-MgDomainVerificationDnsRecord","Update-MgDomainVerificationDnsRecord" +"PATCH","/drives/{param}","keep",,"Update-MgDrive","Update-MgDrive" +"PATCH","/drives/{param}/createdByUser/mailboxSettings","keep",,"Update-MgDriveCreatedByUserMailboxSetting","Update-MgDriveCreatedByUserMailboxSetting" +"PATCH","/drives/{param}/items/{param}","keep",,"Update-MgDriveItem","Update-MgDriveItem" +"PATCH","/drives/{param}/items/{param}/analytics","keep",,"Update-MgDriveItemAnalytic","Update-MgDriveItemAnalytic" +"PATCH","/drives/{param}/items/{param}/analytics/itemActivityStats/{param}","keep",,"Update-MgDriveItemAnalyticItemActivityStat","Update-MgDriveItemAnalyticItemActivityStat" +"PATCH","/drives/{param}/items/{param}/analytics/itemActivityStats/{param}/activities/{param}","suppress",,"Update-MgDriveItemAnalyticItemActivityStatActivity","no oracle row for PATCH /drives/{param}/items/{param}/analytics/itemActivityStats/{param}/activities/{param} and 'Update-MgDriveItemAnalyticItemActivityStatActivity' unshipped" +"PATCH","/drives/{param}/items/{param}/createdByUser/mailboxSettings","keep",,"Update-MgDriveItemCreatedByUserMailboxSetting","Update-MgDriveItemCreatedByUserMailboxSetting" +"PATCH","/drives/{param}/items/{param}/lastModifiedByUser/mailboxSettings","keep",,"Update-MgDriveItemLastModifiedByUserMailboxSetting","Update-MgDriveItemLastModifiedByUserMailboxSetting" +"PATCH","/drives/{param}/items/{param}/permissions/{param}","keep",,"Update-MgDriveItemPermission","Update-MgDriveItemPermission" +"PATCH","/drives/{param}/items/{param}/retentionLabel","keep",,"Update-MgDriveItemRetentionLabel","Update-MgDriveItemRetentionLabel" +"PATCH","/drives/{param}/items/{param}/subscriptions/{param}","keep",,"Update-MgDriveItemSubscription","Update-MgDriveItemSubscription" +"PATCH","/drives/{param}/items/{param}/thumbnails/{param}","keep",,"Update-MgDriveItemThumbnail","Update-MgDriveItemThumbnail" +"PATCH","/drives/{param}/items/{param}/versions/{param}","keep",,"Update-MgDriveItemVersion","Update-MgDriveItemVersion" +"PATCH","/drives/{param}/items/{param}/workbook","suppress",,"Update-MgDriveItemWorkbook","no oracle row for PATCH /drives/{param}/items/{param}/workbook and 'Update-MgDriveItemWorkbook' unshipped" +"PATCH","/drives/{param}/items/{param}/workbook/application","suppress",,"Update-MgDriveItemWorkbookApplication","no oracle row for PATCH /drives/{param}/items/{param}/workbook/application and 'Update-MgDriveItemWorkbookApplication' unshipped" +"PATCH","/drives/{param}/items/{param}/workbook/comments/{param}","suppress",,"Update-MgDriveItemWorkbookComment","no oracle row for PATCH /drives/{param}/items/{param}/workbook/comments/{param} and 'Update-MgDriveItemWorkbookComment' unshipped" +"PATCH","/drives/{param}/items/{param}/workbook/comments/{param}/replies/{param}","suppress",,"Update-MgDriveItemWorkbookCommentReply","no oracle row for PATCH /drives/{param}/items/{param}/workbook/comments/{param}/replies/{param} and 'Update-MgDriveItemWorkbookCommentReply' unshipped" +"PATCH","/drives/{param}/items/{param}/workbook/functions","suppress",,"Update-MgDriveItemWorkbookFunction","no oracle row for PATCH /drives/{param}/items/{param}/workbook/functions and 'Update-MgDriveItemWorkbookFunction' unshipped" +"PATCH","/drives/{param}/items/{param}/workbook/names/{param}","suppress",,"Update-MgDriveItemWorkbookName","no oracle row for PATCH /drives/{param}/items/{param}/workbook/names/{param} and 'Update-MgDriveItemWorkbookName' unshipped" +"PATCH","/drives/{param}/items/{param}/workbook/operations/{param}","suppress",,"Update-MgDriveItemWorkbookOperation","no oracle row for PATCH /drives/{param}/items/{param}/workbook/operations/{param} and 'Update-MgDriveItemWorkbookOperation' unshipped" +"PATCH","/drives/{param}/items/{param}/workbook/tables/{param}","suppress",,"Update-MgDriveItemWorkbookTable","no oracle row for PATCH /drives/{param}/items/{param}/workbook/tables/{param} and 'Update-MgDriveItemWorkbookTable' unshipped" +"PATCH","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}","suppress",,"Update-MgDriveItemWorkbookTableColumn","no oracle row for PATCH /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param} and 'Update-MgDriveItemWorkbookTableColumn' unshipped" +"PATCH","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/filter","suppress",,"Update-MgDriveItemWorkbookTableColumnFilter","no oracle row for PATCH /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/filter and 'Update-MgDriveItemWorkbookTableColumnFilter' unshipped" +"PATCH","/drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}","suppress",,"Update-MgDriveItemWorkbookTableRow","no oracle row for PATCH /drives/{param}/items/{param}/workbook/tables/{param}/rows/{param} and 'Update-MgDriveItemWorkbookTableRow' unshipped" +"PATCH","/drives/{param}/items/{param}/workbook/tables/{param}/sort","suppress",,"Update-MgDriveItemWorkbookTableSort","no oracle row for PATCH /drives/{param}/items/{param}/workbook/tables/{param}/sort and 'Update-MgDriveItemWorkbookTableSort' unshipped" +"PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}","suppress",,"Update-MgDriveItemWorkbookWorksheet","no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param} and 'Update-MgDriveItemWorkbookWorksheet' unshipped" +"PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}","suppress",,"Update-MgDriveItemWorkbookWorksheetChart","no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param} and 'Update-MgDriveItemWorkbookWorksheetChart' unshipped" +"PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes","suppress",,"Update-MgDriveItemWorkbookWorksheetChartAx","no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes and 'Update-MgDriveItemWorkbookWorksheetChartAx' unshipped" +"PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis","suppress",,"Update-MgDriveItemWorkbookWorksheetChartAxCategoryAxis","no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis and 'Update-MgDriveItemWorkbookWorksheetChartAxCategoryAxis' unshipped" +"PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/format","suppress",,"Update-MgDriveItemWorkbookWorksheetChartAxCategoryAxisFormat","no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/format and 'Update-MgDriveItemWorkbookWorksheetChartAxCategoryAxisFormat' unshipped" +"PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/format/font","suppress",,"Update-MgDriveItemWorkbookWorksheetChartAxCategoryAxisFormatFont","no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/format/font and 'Update-MgDriveItemWorkbookWorksheetChartAxCategoryAxisFormatFont' unshipped" +"PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/format/line","suppress",,"Update-MgDriveItemWorkbookWorksheetChartAxCategoryAxisFormatLine","no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/format/line and 'Update-MgDriveItemWorkbookWorksheetChartAxCategoryAxisFormatLine' unshipped" +"PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/majorGridlines","suppress",,"Update-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMajorGridline","no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/majorGridlines and 'Update-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMajorGridline' unshipped" +"PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/majorGridlines/format","suppress",,"Update-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMajorGridlineFormat","no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/majorGridlines/format and 'Update-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMajorGridlineFormat' unshipped" +"PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/majorGridlines/format/line","suppress",,"Update-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMajorGridlineFormatLine","no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/majorGridlines/format/line and 'Update-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMajorGridlineFormatLine' unshipped" +"PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/minorGridlines","suppress",,"Update-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMinorGridline","no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/minorGridlines and 'Update-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMinorGridline' unshipped" +"PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/minorGridlines/format","suppress",,"Update-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMinorGridlineFormat","no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/minorGridlines/format and 'Update-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMinorGridlineFormat' unshipped" +"PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/minorGridlines/format/line","suppress",,"Update-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMinorGridlineFormatLine","no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/minorGridlines/format/line and 'Update-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMinorGridlineFormatLine' unshipped" +"PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/title","suppress",,"Update-MgDriveItemWorkbookWorksheetChartAxCategoryAxisTitle","no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/title and 'Update-MgDriveItemWorkbookWorksheetChartAxCategoryAxisTitle' unshipped" +"PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/title/format","suppress",,"Update-MgDriveItemWorkbookWorksheetChartAxCategoryAxisTitleFormat","no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/title/format and 'Update-MgDriveItemWorkbookWorksheetChartAxCategoryAxisTitleFormat' unshipped" +"PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/title/format/font","suppress",,"Update-MgDriveItemWorkbookWorksheetChartAxCategoryAxisTitleFormatFont","no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/title/format/font and 'Update-MgDriveItemWorkbookWorksheetChartAxCategoryAxisTitleFormatFont' unshipped" +"PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis","suppress",,"Update-MgDriveItemWorkbookWorksheetChartAxSeryAxis","no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis and 'Update-MgDriveItemWorkbookWorksheetChartAxSeryAxis' unshipped" +"PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/format","suppress",,"Update-MgDriveItemWorkbookWorksheetChartAxSeryAxisFormat","no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/format and 'Update-MgDriveItemWorkbookWorksheetChartAxSeryAxisFormat' unshipped" +"PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/format/font","suppress",,"Update-MgDriveItemWorkbookWorksheetChartAxSeryAxisFormatFont","no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/format/font and 'Update-MgDriveItemWorkbookWorksheetChartAxSeryAxisFormatFont' unshipped" +"PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/format/line","suppress",,"Update-MgDriveItemWorkbookWorksheetChartAxSeryAxisFormatLine","no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/format/line and 'Update-MgDriveItemWorkbookWorksheetChartAxSeryAxisFormatLine' unshipped" +"PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/majorGridlines","suppress",,"Update-MgDriveItemWorkbookWorksheetChartAxSeryAxisMajorGridline","no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/majorGridlines and 'Update-MgDriveItemWorkbookWorksheetChartAxSeryAxisMajorGridline' unshipped" +"PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/majorGridlines/format","suppress",,"Update-MgDriveItemWorkbookWorksheetChartAxSeryAxisMajorGridlineFormat","no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/majorGridlines/format and 'Update-MgDriveItemWorkbookWorksheetChartAxSeryAxisMajorGridlineFormat' unshipped" +"PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/majorGridlines/format/line","suppress",,"Update-MgDriveItemWorkbookWorksheetChartAxSeryAxisMajorGridlineFormatLine","no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/majorGridlines/format/line and 'Update-MgDriveItemWorkbookWorksheetChartAxSeryAxisMajorGridlineFormatLine' unshipped" +"PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/minorGridlines","suppress",,"Update-MgDriveItemWorkbookWorksheetChartAxSeryAxisMinorGridline","no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/minorGridlines and 'Update-MgDriveItemWorkbookWorksheetChartAxSeryAxisMinorGridline' unshipped" +"PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/minorGridlines/format","suppress",,"Update-MgDriveItemWorkbookWorksheetChartAxSeryAxisMinorGridlineFormat","no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/minorGridlines/format and 'Update-MgDriveItemWorkbookWorksheetChartAxSeryAxisMinorGridlineFormat' unshipped" +"PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/minorGridlines/format/line","suppress",,"Update-MgDriveItemWorkbookWorksheetChartAxSeryAxisMinorGridlineFormatLine","no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/minorGridlines/format/line and 'Update-MgDriveItemWorkbookWorksheetChartAxSeryAxisMinorGridlineFormatLine' unshipped" +"PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/title","suppress",,"Update-MgDriveItemWorkbookWorksheetChartAxSeryAxisTitle","no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/title and 'Update-MgDriveItemWorkbookWorksheetChartAxSeryAxisTitle' unshipped" +"PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/title/format","suppress",,"Update-MgDriveItemWorkbookWorksheetChartAxSeryAxisTitleFormat","no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/title/format and 'Update-MgDriveItemWorkbookWorksheetChartAxSeryAxisTitleFormat' unshipped" +"PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/title/format/font","suppress",,"Update-MgDriveItemWorkbookWorksheetChartAxSeryAxisTitleFormatFont","no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/title/format/font and 'Update-MgDriveItemWorkbookWorksheetChartAxSeryAxisTitleFormatFont' unshipped" +"PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis","suppress",,"Update-MgDriveItemWorkbookWorksheetChartAxValueAxis","no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis and 'Update-MgDriveItemWorkbookWorksheetChartAxValueAxis' unshipped" +"PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/format","suppress",,"Update-MgDriveItemWorkbookWorksheetChartAxValueAxisFormat","no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/format and 'Update-MgDriveItemWorkbookWorksheetChartAxValueAxisFormat' unshipped" +"PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/format/font","suppress",,"Update-MgDriveItemWorkbookWorksheetChartAxValueAxisFormatFont","no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/format/font and 'Update-MgDriveItemWorkbookWorksheetChartAxValueAxisFormatFont' unshipped" +"PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/format/line","suppress",,"Update-MgDriveItemWorkbookWorksheetChartAxValueAxisFormatLine","no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/format/line and 'Update-MgDriveItemWorkbookWorksheetChartAxValueAxisFormatLine' unshipped" +"PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/majorGridlines","suppress",,"Update-MgDriveItemWorkbookWorksheetChartAxValueAxisMajorGridline","no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/majorGridlines and 'Update-MgDriveItemWorkbookWorksheetChartAxValueAxisMajorGridline' unshipped" +"PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/majorGridlines/format","suppress",,"Update-MgDriveItemWorkbookWorksheetChartAxValueAxisMajorGridlineFormat","no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/majorGridlines/format and 'Update-MgDriveItemWorkbookWorksheetChartAxValueAxisMajorGridlineFormat' unshipped" +"PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/majorGridlines/format/line","suppress",,"Update-MgDriveItemWorkbookWorksheetChartAxValueAxisMajorGridlineFormatLine","no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/majorGridlines/format/line and 'Update-MgDriveItemWorkbookWorksheetChartAxValueAxisMajorGridlineFormatLine' unshipped" +"PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/minorGridlines","suppress",,"Update-MgDriveItemWorkbookWorksheetChartAxValueAxisMinorGridline","no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/minorGridlines and 'Update-MgDriveItemWorkbookWorksheetChartAxValueAxisMinorGridline' unshipped" +"PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/minorGridlines/format","suppress",,"Update-MgDriveItemWorkbookWorksheetChartAxValueAxisMinorGridlineFormat","no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/minorGridlines/format and 'Update-MgDriveItemWorkbookWorksheetChartAxValueAxisMinorGridlineFormat' unshipped" +"PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/minorGridlines/format/line","suppress",,"Update-MgDriveItemWorkbookWorksheetChartAxValueAxisMinorGridlineFormatLine","no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/minorGridlines/format/line and 'Update-MgDriveItemWorkbookWorksheetChartAxValueAxisMinorGridlineFormatLine' unshipped" +"PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/title","suppress",,"Update-MgDriveItemWorkbookWorksheetChartAxValueAxisTitle","no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/title and 'Update-MgDriveItemWorkbookWorksheetChartAxValueAxisTitle' unshipped" +"PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/title/format","suppress",,"Update-MgDriveItemWorkbookWorksheetChartAxValueAxisTitleFormat","no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/title/format and 'Update-MgDriveItemWorkbookWorksheetChartAxValueAxisTitleFormat' unshipped" +"PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/title/format/font","suppress",,"Update-MgDriveItemWorkbookWorksheetChartAxValueAxisTitleFormatFont","no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/title/format/font and 'Update-MgDriveItemWorkbookWorksheetChartAxValueAxisTitleFormatFont' unshipped" +"PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/dataLabels","suppress",,"Update-MgDriveItemWorkbookWorksheetChartDataLabel","no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/dataLabels and 'Update-MgDriveItemWorkbookWorksheetChartDataLabel' unshipped" +"PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/dataLabels/format","suppress",,"Update-MgDriveItemWorkbookWorksheetChartDataLabelFormat","no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/dataLabels/format and 'Update-MgDriveItemWorkbookWorksheetChartDataLabelFormat' unshipped" +"PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/dataLabels/format/fill","suppress",,"Update-MgDriveItemWorkbookWorksheetChartDataLabelFormatFill","no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/dataLabels/format/fill and 'Update-MgDriveItemWorkbookWorksheetChartDataLabelFormatFill' unshipped" +"PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/dataLabels/format/font","suppress",,"Update-MgDriveItemWorkbookWorksheetChartDataLabelFormatFont","no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/dataLabels/format/font and 'Update-MgDriveItemWorkbookWorksheetChartDataLabelFormatFont' unshipped" +"PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/format","suppress",,"Update-MgDriveItemWorkbookWorksheetChartFormat","no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/format and 'Update-MgDriveItemWorkbookWorksheetChartFormat' unshipped" +"PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/format/fill","suppress",,"Update-MgDriveItemWorkbookWorksheetChartFormatFill","no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/format/fill and 'Update-MgDriveItemWorkbookWorksheetChartFormatFill' unshipped" +"PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/format/font","suppress",,"Update-MgDriveItemWorkbookWorksheetChartFormatFont","no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/format/font and 'Update-MgDriveItemWorkbookWorksheetChartFormatFont' unshipped" +"PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/legend","suppress",,"Update-MgDriveItemWorkbookWorksheetChartLegend","no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/legend and 'Update-MgDriveItemWorkbookWorksheetChartLegend' unshipped" +"PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/legend/format","suppress",,"Update-MgDriveItemWorkbookWorksheetChartLegendFormat","no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/legend/format and 'Update-MgDriveItemWorkbookWorksheetChartLegendFormat' unshipped" +"PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/legend/format/fill","suppress",,"Update-MgDriveItemWorkbookWorksheetChartLegendFormatFill","no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/legend/format/fill and 'Update-MgDriveItemWorkbookWorksheetChartLegendFormatFill' unshipped" +"PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/legend/format/font","suppress",,"Update-MgDriveItemWorkbookWorksheetChartLegendFormatFont","no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/legend/format/font and 'Update-MgDriveItemWorkbookWorksheetChartLegendFormatFont' unshipped" +"PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}","suppress",,"Update-MgDriveItemWorkbookWorksheetChartSery","no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param} and 'Update-MgDriveItemWorkbookWorksheetChartSery' unshipped" +"PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/format","suppress",,"Update-MgDriveItemWorkbookWorksheetChartSeryFormat","no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/format and 'Update-MgDriveItemWorkbookWorksheetChartSeryFormat' unshipped" +"PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/format/fill","suppress",,"Update-MgDriveItemWorkbookWorksheetChartSeryFormatFill","no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/format/fill and 'Update-MgDriveItemWorkbookWorksheetChartSeryFormatFill' unshipped" +"PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/format/line","suppress",,"Update-MgDriveItemWorkbookWorksheetChartSeryFormatLine","no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/format/line and 'Update-MgDriveItemWorkbookWorksheetChartSeryFormatLine' unshipped" +"PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/points/{param}","suppress",,"Update-MgDriveItemWorkbookWorksheetChartSeryPoint","no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/points/{param} and 'Update-MgDriveItemWorkbookWorksheetChartSeryPoint' unshipped" +"PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/points/{param}/format","suppress",,"Update-MgDriveItemWorkbookWorksheetChartSeryPointFormat","no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/points/{param}/format and 'Update-MgDriveItemWorkbookWorksheetChartSeryPointFormat' unshipped" +"PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/points/{param}/format/fill","suppress",,"Update-MgDriveItemWorkbookWorksheetChartSeryPointFormatFill","no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/points/{param}/format/fill and 'Update-MgDriveItemWorkbookWorksheetChartSeryPointFormatFill' unshipped" +"PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/title","suppress",,"Update-MgDriveItemWorkbookWorksheetChartTitle","no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/title and 'Update-MgDriveItemWorkbookWorksheetChartTitle' unshipped" +"PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/title/format","suppress",,"Update-MgDriveItemWorkbookWorksheetChartTitleFormat","no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/title/format and 'Update-MgDriveItemWorkbookWorksheetChartTitleFormat' unshipped" +"PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/title/format/fill","suppress",,"Update-MgDriveItemWorkbookWorksheetChartTitleFormatFill","no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/title/format/fill and 'Update-MgDriveItemWorkbookWorksheetChartTitleFormatFill' unshipped" +"PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/title/format/font","suppress",,"Update-MgDriveItemWorkbookWorksheetChartTitleFormatFont","no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/title/format/font and 'Update-MgDriveItemWorkbookWorksheetChartTitleFormatFont' unshipped" +"PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}","suppress",,"Update-MgDriveItemWorkbookWorksheetName","no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param} and 'Update-MgDriveItemWorkbookWorksheetName' unshipped" +"PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/pivotTables/{param}","suppress",,"Update-MgDriveItemWorkbookWorksheetPivotTable","no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/pivotTables/{param} and 'Update-MgDriveItemWorkbookWorksheetPivotTable' unshipped" +"PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/protection","suppress",,"Update-MgDriveItemWorkbookWorksheetProtection","no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/protection and 'Update-MgDriveItemWorkbookWorksheetProtection' unshipped" +"PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}","suppress",,"Update-MgDriveItemWorkbookWorksheetTable","no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param} and 'Update-MgDriveItemWorkbookWorksheetTable' unshipped" +"PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}","suppress",,"Update-MgDriveItemWorkbookWorksheetTableColumn","no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param} and 'Update-MgDriveItemWorkbookWorksheetTableColumn' unshipped" +"PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/filter","suppress",,"Update-MgDriveItemWorkbookWorksheetTableColumnFilter","no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/filter and 'Update-MgDriveItemWorkbookWorksheetTableColumnFilter' unshipped" +"PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}","suppress",,"Update-MgDriveItemWorkbookWorksheetTableRow","no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param} and 'Update-MgDriveItemWorkbookWorksheetTableRow' unshipped" +"PATCH","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/sort","suppress",,"Update-MgDriveItemWorkbookWorksheetTableSort","no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/sort and 'Update-MgDriveItemWorkbookWorksheetTableSort' unshipped" +"PATCH","/drives/{param}/lastModifiedByUser/mailboxSettings","keep",,"Update-MgDriveLastModifiedByUserMailboxSetting","Update-MgDriveLastModifiedByUserMailboxSetting" +"PATCH","/drives/{param}/list","keep",,"Update-MgDriveList","Update-MgDriveList" +"PATCH","/drives/{param}/list/columns/{param}","keep",,"Update-MgDriveListColumn","Update-MgDriveListColumn" +"PATCH","/drives/{param}/list/contentTypes/{param}","keep",,"Update-MgDriveListContentType","Update-MgDriveListContentType" +"PATCH","/drives/{param}/list/contentTypes/{param}/columnLinks/{param}","keep",,"Update-MgDriveListContentTypeColumnLink","Update-MgDriveListContentTypeColumnLink" +"PATCH","/drives/{param}/list/contentTypes/{param}/columns/{param}","keep",,"Update-MgDriveListContentTypeColumn","Update-MgDriveListContentTypeColumn" +"PATCH","/drives/{param}/list/createdByUser/mailboxSettings","keep",,"Update-MgDriveListCreatedByUserMailboxSetting","Update-MgDriveListCreatedByUserMailboxSetting" +"PATCH","/drives/{param}/list/items/{param}","keep",,"Update-MgDriveListItem","Update-MgDriveListItem" +"PATCH","/drives/{param}/list/items/{param}/createdByUser/mailboxSettings","keep",,"Update-MgDriveListItemCreatedByUserMailboxSetting","Update-MgDriveListItemCreatedByUserMailboxSetting" +"PATCH","/drives/{param}/list/items/{param}/documentSetVersions/{param}","keep",,"Update-MgDriveListItemDocumentSetVersion","Update-MgDriveListItemDocumentSetVersion" +"PATCH","/drives/{param}/list/items/{param}/documentSetVersions/{param}/fields","keep",,"Update-MgDriveListItemDocumentSetVersionField","Update-MgDriveListItemDocumentSetVersionField" +"PATCH","/drives/{param}/list/items/{param}/fields","keep",,"Update-MgDriveListItemField","Update-MgDriveListItemField" +"PATCH","/drives/{param}/list/items/{param}/lastModifiedByUser/mailboxSettings","keep",,"Update-MgDriveListItemLastModifiedByUserMailboxSetting","Update-MgDriveListItemLastModifiedByUserMailboxSetting" +"PATCH","/drives/{param}/list/items/{param}/permissions/{param}","suppress",,"Update-MgDriveListItemPermission","no oracle row for PATCH /drives/{param}/list/items/{param}/permissions/{param} and 'Update-MgDriveListItemPermission' unshipped" +"PATCH","/drives/{param}/list/items/{param}/versions/{param}","keep",,"Update-MgDriveListItemVersion","Update-MgDriveListItemVersion" +"PATCH","/drives/{param}/list/items/{param}/versions/{param}/fields","keep",,"Update-MgDriveListItemVersionField","Update-MgDriveListItemVersionField" +"PATCH","/drives/{param}/list/lastModifiedByUser/mailboxSettings","keep",,"Update-MgDriveListLastModifiedByUserMailboxSetting","Update-MgDriveListLastModifiedByUserMailboxSetting" +"PATCH","/drives/{param}/list/operations/{param}","keep",,"Update-MgDriveListOperation","Update-MgDriveListOperation" +"PATCH","/drives/{param}/list/permissions/{param}","suppress",,"Update-MgDriveListPermission","no oracle row for PATCH /drives/{param}/list/permissions/{param} and 'Update-MgDriveListPermission' unshipped" +"PATCH","/drives/{param}/list/subscriptions/{param}","keep",,"Update-MgDriveListSubscription","Update-MgDriveListSubscription" +"PATCH","/education","keep",,"Update-MgEducation","Update-MgEducationRoot" +"PATCH","/education/classes/{param}","keep",,"Update-MgEducationClass","Update-MgEducationClass" +"PATCH","/education/classes/{param}/assignmentCategories/{param}","keep",,"Update-MgEducationClassAssignmentCategory","Update-MgEducationClassAssignmentCategory" +"PATCH","/education/classes/{param}/assignmentDefaults","keep",,"Update-MgEducationClassAssignmentDefault","Update-MgEducationClassAssignmentDefault" +"PATCH","/education/classes/{param}/assignments/{param}","keep",,"Update-MgEducationClassAssignment","Update-MgEducationClassAssignment" +"PATCH","/education/classes/{param}/assignments/{param}/resources/{param}","keep",,"Update-MgEducationClassAssignmentResource","Update-MgEducationClassAssignmentResource" +"PATCH","/education/classes/{param}/assignments/{param}/resources/{param}/dependentResources/{param}","keep",,"Update-MgEducationClassAssignmentResourceDependentResource","Update-MgEducationClassAssignmentResourceDependentResource" +"PATCH","/education/classes/{param}/assignments/{param}/rubric","keep",,"Update-MgEducationClassAssignmentRubric","Update-MgEducationClassAssignmentRubric" +"PATCH","/education/classes/{param}/assignments/{param}/submissions/{param}","keep",,"Update-MgEducationClassAssignmentSubmission","Update-MgEducationClassAssignmentSubmission" +"PATCH","/education/classes/{param}/assignments/{param}/submissions/{param}/outcomes/{param}","keep",,"Update-MgEducationClassAssignmentSubmissionOutcome","Update-MgEducationClassAssignmentSubmissionOutcome" +"PATCH","/education/classes/{param}/assignments/{param}/submissions/{param}/resources/{param}","keep",,"Update-MgEducationClassAssignmentSubmissionResource","Update-MgEducationClassAssignmentSubmissionResource" +"PATCH","/education/classes/{param}/assignments/{param}/submissions/{param}/resources/{param}/dependentResources/{param}","keep",,"Update-MgEducationClassAssignmentSubmissionResourceDependentResource","Update-MgEducationClassAssignmentSubmissionResourceDependentResource" +"PATCH","/education/classes/{param}/assignments/{param}/submissions/{param}/submittedResources/{param}","keep",,"Update-MgEducationClassAssignmentSubmissionSubmittedResource","Update-MgEducationClassAssignmentSubmissionSubmittedResource" +"PATCH","/education/classes/{param}/assignments/{param}/submissions/{param}/submittedResources/{param}/dependentResources/{param}","keep",,"Update-MgEducationClassAssignmentSubmissionSubmittedResourceDependentResource","Update-MgEducationClassAssignmentSubmissionSubmittedResourceDependentResource" +"PATCH","/education/classes/{param}/assignmentSettings","keep",,"Update-MgEducationClassAssignmentSetting","Update-MgEducationClassAssignmentSetting" +"PATCH","/education/classes/{param}/assignmentSettings/gradingCategories/{param}","keep",,"Update-MgEducationClassAssignmentSettingGradingCategory","Update-MgEducationClassAssignmentSettingGradingCategory" +"PATCH","/education/classes/{param}/assignmentSettings/gradingSchemes/{param}","keep",,"Update-MgEducationClassAssignmentSettingGradingScheme","Update-MgEducationClassAssignmentSettingGradingScheme" +"PATCH","/education/classes/{param}/modules/{param}","keep",,"Update-MgEducationClassModule","Update-MgEducationClassModule" +"PATCH","/education/classes/{param}/modules/{param}/resources/{param}","keep",,"Update-MgEducationClassModuleResource","Update-MgEducationClassModuleResource" +"PATCH","/education/me","keep",,"Update-MgEducationMe","Update-MgEducationMe" +"PATCH","/education/me/assignments/{param}","keep",,"Update-MgEducationMeAssignment","Update-MgEducationMeAssignment" +"PATCH","/education/me/assignments/{param}/resources/{param}","keep",,"Update-MgEducationMeAssignmentResource","Update-MgEducationMeAssignmentResource" +"PATCH","/education/me/assignments/{param}/resources/{param}/dependentResources/{param}","keep",,"Update-MgEducationMeAssignmentResourceDependentResource","Update-MgEducationMeAssignmentResourceDependentResource" +"PATCH","/education/me/assignments/{param}/rubric","keep",,"Update-MgEducationMeAssignmentRubric","Update-MgEducationMeAssignmentRubric" +"PATCH","/education/me/assignments/{param}/submissions/{param}","keep",,"Update-MgEducationMeAssignmentSubmission","Update-MgEducationMeAssignmentSubmission" +"PATCH","/education/me/assignments/{param}/submissions/{param}/outcomes/{param}","keep",,"Update-MgEducationMeAssignmentSubmissionOutcome","Update-MgEducationMeAssignmentSubmissionOutcome" +"PATCH","/education/me/assignments/{param}/submissions/{param}/resources/{param}","keep",,"Update-MgEducationMeAssignmentSubmissionResource","Update-MgEducationMeAssignmentSubmissionResource" +"PATCH","/education/me/assignments/{param}/submissions/{param}/resources/{param}/dependentResources/{param}","keep",,"Update-MgEducationMeAssignmentSubmissionResourceDependentResource","Update-MgEducationMeAssignmentSubmissionResourceDependentResource" +"PATCH","/education/me/assignments/{param}/submissions/{param}/submittedResources/{param}","keep",,"Update-MgEducationMeAssignmentSubmissionSubmittedResource","Update-MgEducationMeAssignmentSubmissionSubmittedResource" +"PATCH","/education/me/assignments/{param}/submissions/{param}/submittedResources/{param}/dependentResources/{param}","keep",,"Update-MgEducationMeAssignmentSubmissionSubmittedResourceDependentResource","Update-MgEducationMeAssignmentSubmissionSubmittedResourceDependentResource" +"PATCH","/education/me/rubrics/{param}","keep",,"Update-MgEducationMeRubric","Update-MgEducationMeRubric" +"PATCH","/education/me/user/mailboxSettings","keep",,"Update-MgEducationMeUserMailboxSetting","Update-MgEducationMeUserMailboxSetting" +"PATCH","/education/reports","keep",,"Update-MgEducationReport","Update-MgEducationReport" +"PATCH","/education/reports/readingAssignmentSubmissions/{param}","keep",,"Update-MgEducationReportReadingAssignmentSubmission","Update-MgEducationReportReadingAssignmentSubmission" +"PATCH","/education/reports/readingCoachPassages/{param}","keep",,"Update-MgEducationReportReadingCoachPassage","Update-MgEducationReportReadingCoachPassage" +"PATCH","/education/reports/reflectCheckInResponses/{param}","rename","EducationReportReflectCheck","Update-MgEducationReportReflectCheckInResponse","Update-MgEducationReportReflectCheck" +"PATCH","/education/reports/speakerAssignmentSubmissions/{param}","keep",,"Update-MgEducationReportSpeakerAssignmentSubmission","Update-MgEducationReportSpeakerAssignmentSubmission" +"PATCH","/education/schools/{param}","keep",,"Update-MgEducationSchool","Update-MgEducationSchool" +"PATCH","/education/schools/{param}/administrativeUnit","keep",,"Update-MgEducationSchoolAdministrativeUnit","Update-MgEducationSchoolAdministrativeUnit" +"PATCH","/education/users/{param}","keep",,"Update-MgEducationUser","Update-MgEducationUser" +"PATCH","/education/users/{param}/assignments/{param}","keep",,"Update-MgEducationUserAssignment","Update-MgEducationUserAssignment" +"PATCH","/education/users/{param}/assignments/{param}/resources/{param}","keep",,"Update-MgEducationUserAssignmentResource","Update-MgEducationUserAssignmentResource" +"PATCH","/education/users/{param}/assignments/{param}/resources/{param}/dependentResources/{param}","keep",,"Update-MgEducationUserAssignmentResourceDependentResource","Update-MgEducationUserAssignmentResourceDependentResource" +"PATCH","/education/users/{param}/assignments/{param}/rubric","keep",,"Update-MgEducationUserAssignmentRubric","Update-MgEducationUserAssignmentRubric" +"PATCH","/education/users/{param}/assignments/{param}/submissions/{param}","keep",,"Update-MgEducationUserAssignmentSubmission","Update-MgEducationUserAssignmentSubmission" +"PATCH","/education/users/{param}/assignments/{param}/submissions/{param}/outcomes/{param}","keep",,"Update-MgEducationUserAssignmentSubmissionOutcome","Update-MgEducationUserAssignmentSubmissionOutcome" +"PATCH","/education/users/{param}/assignments/{param}/submissions/{param}/resources/{param}","keep",,"Update-MgEducationUserAssignmentSubmissionResource","Update-MgEducationUserAssignmentSubmissionResource" +"PATCH","/education/users/{param}/assignments/{param}/submissions/{param}/resources/{param}/dependentResources/{param}","keep",,"Update-MgEducationUserAssignmentSubmissionResourceDependentResource","Update-MgEducationUserAssignmentSubmissionResourceDependentResource" +"PATCH","/education/users/{param}/assignments/{param}/submissions/{param}/submittedResources/{param}","keep",,"Update-MgEducationUserAssignmentSubmissionSubmittedResource","Update-MgEducationUserAssignmentSubmissionSubmittedResource" +"PATCH","/education/users/{param}/assignments/{param}/submissions/{param}/submittedResources/{param}/dependentResources/{param}","keep",,"Update-MgEducationUserAssignmentSubmissionSubmittedResourceDependentResource","Update-MgEducationUserAssignmentSubmissionSubmittedResourceDependentResource" +"PATCH","/education/users/{param}/rubrics/{param}","keep",,"Update-MgEducationUserRubric","Update-MgEducationUserRubric" +"PATCH","/education/users/{param}/user/mailboxSettings","keep",,"Update-MgEducationUserMailboxSetting","Update-MgEducationUserMailboxSetting" +"PATCH","/external","keep",,"Update-MgExternal","Update-MgExternal" +"PATCH","/external/connections/{param}","keep",,"Update-MgExternalConnection","Update-MgExternalConnection" +"PATCH","/external/connections/{param}/groups/{param}","keep",,"Update-MgExternalConnectionGroup","Update-MgExternalConnectionGroup" +"PATCH","/external/connections/{param}/groups/{param}/members/{param}","keep",,"Update-MgExternalConnectionGroupMember","Update-MgExternalConnectionGroupMember" +"PATCH","/external/connections/{param}/items/{param}/activities/{param}","keep",,"Update-MgExternalConnectionItemActivity","Update-MgExternalConnectionItemActivity" +"PATCH","/external/connections/{param}/operations/{param}","keep",,"Update-MgExternalConnectionOperation","Update-MgExternalConnectionOperation" +"PATCH","/external/connections/{param}/schema","keep",,"Update-MgExternalConnectionSchema","Update-MgExternalConnectionSchema" +"PATCH","/groupLifecyclePolicies/{param}","keep",,"Update-MgGroupLifecyclePolicy","Update-MgGroupLifecyclePolicy" +"PATCH","/groups/{param}","keep",,"Update-MgGroup","Update-MgGroup" +"PATCH","/groups/{param}/appRoleAssignments/{param}","keep",,"Update-MgGroupAppRoleAssignment","Update-MgGroupAppRoleAssignment" +"PATCH","/groups/{param}/calendar/calendarPermissions/{param}","keep",,"Update-MgGroupCalendarPermission","Update-MgGroupCalendarPermission" +"PATCH","/groups/{param}/calendar/events/{param}","keep",,"Update-MgGroupCalendarEvent","Update-MgGroupCalendarEvent" +"PATCH","/groups/{param}/calendar/events/{param}/extensions/{param}","suppress",,"Update-MgGroupCalendarEventExtension","no oracle row for PATCH /groups/{param}/calendar/events/{param}/extensions/{param} and 'Update-MgGroupCalendarEventExtension' unshipped" +"PATCH","/groups/{param}/conversations/{param}/threads/{param}","keep",,"Update-MgGroupConversationThread","Update-MgGroupConversationThread" +"PATCH","/groups/{param}/conversations/{param}/threads/{param}/posts/{param}/extensions/{param}","keep",,"Update-MgGroupConversationThreadPostExtension","Update-MgGroupConversationThreadPostExtension" +"PATCH","/groups/{param}/conversations/{param}/threads/{param}/posts/{param}/inReplyTo/extensions/{param}","keep",,"Update-MgGroupConversationThreadPostInReplyToExtension","Update-MgGroupConversationThreadPostInReplyToExtension" +"PATCH","/groups/{param}/events/{param}","keep",,"Update-MgGroupEvent","Update-MgGroupEvent" +"PATCH","/groups/{param}/events/{param}/extensions/{param}","keep",,"Update-MgGroupEventExtension","Update-MgGroupEventExtension" +"PATCH","/groups/{param}/extensions/{param}","keep",,"Update-MgGroupExtension","Update-MgGroupExtension" +"PATCH","/groups/{param}/onenote","keep",,"Update-MgGroupOnenote","Update-MgGroupOnenote" +"PATCH","/groups/{param}/onenote/notebooks/{param}","keep",,"Update-MgGroupOnenoteNotebook","Update-MgGroupOnenoteNotebook" +"PATCH","/groups/{param}/onenote/notebooks/{param}/sectionGroups/{param}","keep",,"Update-MgGroupOnenoteNotebookSectionGroup","Update-MgGroupOnenoteNotebookSectionGroup" +"PATCH","/groups/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}","keep",,"Update-MgGroupOnenoteNotebookSectionGroupSection","Update-MgGroupOnenoteNotebookSectionGroupSection" +"PATCH","/groups/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}","suppress",,"Update-MgGroupOnenoteNotebookSectionGroupSectionPage","no oracle row for PATCH /groups/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param} and 'Update-MgGroupOnenoteNotebookSectionGroupSectionPage' unshipped" +"PATCH","/groups/{param}/onenote/notebooks/{param}/sections/{param}","keep",,"Update-MgGroupOnenoteNotebookSection","Update-MgGroupOnenoteNotebookSection" +"PATCH","/groups/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}","suppress",,"Update-MgGroupOnenoteNotebookSectionPage","no oracle row for PATCH /groups/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param} and 'Update-MgGroupOnenoteNotebookSectionPage' unshipped" +"PATCH","/groups/{param}/onenote/operations/{param}","keep",,"Update-MgGroupOnenoteOperation","Update-MgGroupOnenoteOperation" +"PATCH","/groups/{param}/onenote/pages/{param}","suppress",,"Update-MgGroupOnenotePage","no oracle row for PATCH /groups/{param}/onenote/pages/{param} and 'Update-MgGroupOnenotePage' unshipped" +"PATCH","/groups/{param}/onenote/resources/{param}","keep",,"Update-MgGroupOnenoteResource","Update-MgGroupOnenoteResource" +"PATCH","/groups/{param}/onenote/sectionGroups/{param}","keep",,"Update-MgGroupOnenoteSectionGroup","Update-MgGroupOnenoteSectionGroup" +"PATCH","/groups/{param}/onenote/sectionGroups/{param}/sections/{param}","keep",,"Update-MgGroupOnenoteSectionGroupSection","Update-MgGroupOnenoteSectionGroupSection" +"PATCH","/groups/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}","suppress",,"Update-MgGroupOnenoteSectionGroupSectionPage","no oracle row for PATCH /groups/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param} and 'Update-MgGroupOnenoteSectionGroupSectionPage' unshipped" +"PATCH","/groups/{param}/onenote/sections/{param}","keep",,"Update-MgGroupOnenoteSection","Update-MgGroupOnenoteSection" +"PATCH","/groups/{param}/onenote/sections/{param}/pages/{param}","suppress",,"Update-MgGroupOnenoteSectionPage","no oracle row for PATCH /groups/{param}/onenote/sections/{param}/pages/{param} and 'Update-MgGroupOnenoteSectionPage' unshipped" +"PATCH","/groups/{param}/onPremisesSyncBehavior","keep",,"Update-MgGroupOnPremiseSyncBehavior","Update-MgGroupOnPremiseSyncBehavior" +"PATCH","/groups/{param}/permissionGrants/{param}","keep",,"Update-MgGroupPermissionGrant","Update-MgGroupPermissionGrant" +"PATCH","/groups/{param}/photo","suppress",,"Update-MgGroupPhoto","no oracle row for PATCH /groups/{param}/photo and 'Update-MgGroupPhoto' unshipped" +"PATCH","/groups/{param}/planner","keep",,"Update-MgGroupPlanner","Update-MgGroupPlanner" +"PATCH","/groups/{param}/planner/plans/{param}","suppress",,"Update-MgGroupPlannerPlan","no oracle row for PATCH /groups/{param}/planner/plans/{param} and 'Update-MgGroupPlannerPlan' unshipped" +"PATCH","/groups/{param}/planner/plans/{param}/buckets/{param}","suppress",,"Update-MgGroupPlannerPlanBucket","no oracle row for PATCH /groups/{param}/planner/plans/{param}/buckets/{param} and 'Update-MgGroupPlannerPlanBucket' unshipped" +"PATCH","/groups/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}","suppress",,"Update-MgGroupPlannerPlanBucketTask","no oracle row for PATCH /groups/{param}/planner/plans/{param}/buckets/{param}/tasks/{param} and 'Update-MgGroupPlannerPlanBucketTask' unshipped" +"PATCH","/groups/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/assignedToTaskBoardFormat","suppress",,"Update-MgGroupPlannerPlanBucketTaskAssignedToTaskBoardFormat","no oracle row for PATCH /groups/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/assignedToTaskBoardFormat and 'Update-MgGroupPlannerPlanBucketTaskAssignedToTaskBoardFormat' unshipped" +"PATCH","/groups/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/bucketTaskBoardFormat","suppress",,"Update-MgGroupPlannerPlanBucketTaskBucketTaskBoardFormat","no oracle row for PATCH /groups/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/bucketTaskBoardFormat and 'Update-MgGroupPlannerPlanBucketTaskBucketTaskBoardFormat' unshipped" +"PATCH","/groups/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/details","suppress",,"Update-MgGroupPlannerPlanBucketTaskDetail","no oracle row for PATCH /groups/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/details and 'Update-MgGroupPlannerPlanBucketTaskDetail' unshipped" +"PATCH","/groups/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/progressTaskBoardFormat","suppress",,"Update-MgGroupPlannerPlanBucketTaskProgressTaskBoardFormat","no oracle row for PATCH /groups/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/progressTaskBoardFormat and 'Update-MgGroupPlannerPlanBucketTaskProgressTaskBoardFormat' unshipped" +"PATCH","/groups/{param}/planner/plans/{param}/details","keep",,"Update-MgGroupPlannerPlanDetail","Update-MgGroupPlannerPlanDetail" +"PATCH","/groups/{param}/planner/plans/{param}/tasks/{param}","suppress",,"Update-MgGroupPlannerPlanTask","no oracle row for PATCH /groups/{param}/planner/plans/{param}/tasks/{param} and 'Update-MgGroupPlannerPlanTask' unshipped" +"PATCH","/groups/{param}/planner/plans/{param}/tasks/{param}/assignedToTaskBoardFormat","suppress",,"Update-MgGroupPlannerPlanTaskAssignedToTaskBoardFormat","no oracle row for PATCH /groups/{param}/planner/plans/{param}/tasks/{param}/assignedToTaskBoardFormat and 'Update-MgGroupPlannerPlanTaskAssignedToTaskBoardFormat' unshipped" +"PATCH","/groups/{param}/planner/plans/{param}/tasks/{param}/bucketTaskBoardFormat","suppress",,"Update-MgGroupPlannerPlanTaskBucketTaskBoardFormat","no oracle row for PATCH /groups/{param}/planner/plans/{param}/tasks/{param}/bucketTaskBoardFormat and 'Update-MgGroupPlannerPlanTaskBucketTaskBoardFormat' unshipped" +"PATCH","/groups/{param}/planner/plans/{param}/tasks/{param}/details","suppress",,"Update-MgGroupPlannerPlanTaskDetail","no oracle row for PATCH /groups/{param}/planner/plans/{param}/tasks/{param}/details and 'Update-MgGroupPlannerPlanTaskDetail' unshipped" +"PATCH","/groups/{param}/planner/plans/{param}/tasks/{param}/progressTaskBoardFormat","suppress",,"Update-MgGroupPlannerPlanTaskProgressTaskBoardFormat","no oracle row for PATCH /groups/{param}/planner/plans/{param}/tasks/{param}/progressTaskBoardFormat and 'Update-MgGroupPlannerPlanTaskProgressTaskBoardFormat' unshipped" +"PATCH","/groups/{param}/settings/{param}","keep",,"Update-MgGroupSetting","Update-MgGroupSetting" +"PATCH","/groups/{param}/sites/{param}","keep",,"Update-MgGroupSite","Update-MgGroupSite" +"PATCH","/groups/{param}/sites/{param}/analytics","keep",,"Update-MgGroupSiteAnalytic","Update-MgGroupSiteAnalytic" +"PATCH","/groups/{param}/sites/{param}/analytics/itemActivityStats/{param}","keep",,"Update-MgGroupSiteAnalyticItemActivityStat","Update-MgGroupSiteAnalyticItemActivityStat" +"PATCH","/groups/{param}/sites/{param}/analytics/itemActivityStats/{param}/activities/{param}","keep",,"Update-MgGroupSiteAnalyticItemActivityStatActivity","Update-MgGroupSiteAnalyticItemActivityStatActivity" +"PATCH","/groups/{param}/sites/{param}/columns/{param}","keep",,"Update-MgGroupSiteColumn","Update-MgGroupSiteColumn" +"PATCH","/groups/{param}/sites/{param}/contentTypes/{param}","keep",,"Update-MgGroupSiteContentType","Update-MgGroupSiteContentType" +"PATCH","/groups/{param}/sites/{param}/contentTypes/{param}/columnLinks/{param}","keep",,"Update-MgGroupSiteContentTypeColumnLink","Update-MgGroupSiteContentTypeColumnLink" +"PATCH","/groups/{param}/sites/{param}/contentTypes/{param}/columns/{param}","keep",,"Update-MgGroupSiteContentTypeColumn","Update-MgGroupSiteContentTypeColumn" +"PATCH","/groups/{param}/sites/{param}/createdByUser/mailboxSettings","keep",,"Update-MgGroupSiteCreatedByUserMailboxSetting","Update-MgGroupSiteCreatedByUserMailboxSetting" +"PATCH","/groups/{param}/sites/{param}/lastModifiedByUser/mailboxSettings","keep",,"Update-MgGroupSiteLastModifiedByUserMailboxSetting","Update-MgGroupSiteLastModifiedByUserMailboxSetting" +"PATCH","/groups/{param}/sites/{param}/lists/{param}","keep",,"Update-MgGroupSiteList","Update-MgGroupSiteList" +"PATCH","/groups/{param}/sites/{param}/lists/{param}/columns/{param}","keep",,"Update-MgGroupSiteListColumn","Update-MgGroupSiteListColumn" +"PATCH","/groups/{param}/sites/{param}/lists/{param}/contentTypes/{param}","keep",,"Update-MgGroupSiteListContentType","Update-MgGroupSiteListContentType" +"PATCH","/groups/{param}/sites/{param}/lists/{param}/contentTypes/{param}/columnLinks/{param}","keep",,"Update-MgGroupSiteListContentTypeColumnLink","Update-MgGroupSiteListContentTypeColumnLink" +"PATCH","/groups/{param}/sites/{param}/lists/{param}/contentTypes/{param}/columns/{param}","keep",,"Update-MgGroupSiteListContentTypeColumn","Update-MgGroupSiteListContentTypeColumn" +"PATCH","/groups/{param}/sites/{param}/lists/{param}/createdByUser/mailboxSettings","keep",,"Update-MgGroupSiteListCreatedByUserMailboxSetting","Update-MgGroupSiteListCreatedByUserMailboxSetting" +"PATCH","/groups/{param}/sites/{param}/lists/{param}/items/{param}","keep",,"Update-MgGroupSiteListItem","Update-MgGroupSiteListItem" +"PATCH","/groups/{param}/sites/{param}/lists/{param}/items/{param}/createdByUser/mailboxSettings","keep",,"Update-MgGroupSiteListItemCreatedByUserMailboxSetting","Update-MgGroupSiteListItemCreatedByUserMailboxSetting" +"PATCH","/groups/{param}/sites/{param}/lists/{param}/items/{param}/documentSetVersions/{param}","keep",,"Update-MgGroupSiteListItemDocumentSetVersion","Update-MgGroupSiteListItemDocumentSetVersion" +"PATCH","/groups/{param}/sites/{param}/lists/{param}/items/{param}/documentSetVersions/{param}/fields","keep",,"Update-MgGroupSiteListItemDocumentSetVersionField","Update-MgGroupSiteListItemDocumentSetVersionField" +"PATCH","/groups/{param}/sites/{param}/lists/{param}/items/{param}/fields","keep",,"Update-MgGroupSiteListItemField","Update-MgGroupSiteListItemField" +"PATCH","/groups/{param}/sites/{param}/lists/{param}/items/{param}/lastModifiedByUser/mailboxSettings","keep",,"Update-MgGroupSiteListItemLastModifiedByUserMailboxSetting","Update-MgGroupSiteListItemLastModifiedByUserMailboxSetting" +"PATCH","/groups/{param}/sites/{param}/lists/{param}/items/{param}/permissions/{param}","keep",,"Update-MgGroupSiteListItemPermission","Update-MgGroupSiteListItemPermission" +"PATCH","/groups/{param}/sites/{param}/lists/{param}/items/{param}/versions/{param}","keep",,"Update-MgGroupSiteListItemVersion","Update-MgGroupSiteListItemVersion" +"PATCH","/groups/{param}/sites/{param}/lists/{param}/items/{param}/versions/{param}/fields","keep",,"Update-MgGroupSiteListItemVersionField","Update-MgGroupSiteListItemVersionField" +"PATCH","/groups/{param}/sites/{param}/lists/{param}/lastModifiedByUser/mailboxSettings","keep",,"Update-MgGroupSiteListLastModifiedByUserMailboxSetting","Update-MgGroupSiteListLastModifiedByUserMailboxSetting" +"PATCH","/groups/{param}/sites/{param}/lists/{param}/operations/{param}","keep",,"Update-MgGroupSiteListOperation","Update-MgGroupSiteListOperation" +"PATCH","/groups/{param}/sites/{param}/lists/{param}/permissions/{param}","keep",,"Update-MgGroupSiteListPermission","Update-MgGroupSiteListPermission" +"PATCH","/groups/{param}/sites/{param}/lists/{param}/subscriptions/{param}","keep",,"Update-MgGroupSiteListSubscription","Update-MgGroupSiteListSubscription" +"PATCH","/groups/{param}/sites/{param}/onenote","keep",,"Update-MgGroupSiteOnenote","Update-MgGroupSiteOnenote" +"PATCH","/groups/{param}/sites/{param}/onenote/notebooks/{param}","keep",,"Update-MgGroupSiteOnenoteNotebook","Update-MgGroupSiteOnenoteNotebook" +"PATCH","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}","keep",,"Update-MgGroupSiteOnenoteNotebookSectionGroup","Update-MgGroupSiteOnenoteNotebookSectionGroup" +"PATCH","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}","keep",,"Update-MgGroupSiteOnenoteNotebookSectionGroupSection","Update-MgGroupSiteOnenoteNotebookSectionGroupSection" +"PATCH","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}","keep",,"Update-MgGroupSiteOnenoteNotebookSectionGroupSectionPage","Update-MgGroupSiteOnenoteNotebookSectionGroupSectionPage" +"PATCH","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sections/{param}","keep",,"Update-MgGroupSiteOnenoteNotebookSection","Update-MgGroupSiteOnenoteNotebookSection" +"PATCH","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}","keep",,"Update-MgGroupSiteOnenoteNotebookSectionPage","Update-MgGroupSiteOnenoteNotebookSectionPage" +"PATCH","/groups/{param}/sites/{param}/onenote/operations/{param}","keep",,"Update-MgGroupSiteOnenoteOperation","Update-MgGroupSiteOnenoteOperation" +"PATCH","/groups/{param}/sites/{param}/onenote/pages/{param}","keep",,"Update-MgGroupSiteOnenotePage","Update-MgGroupSiteOnenotePage" +"PATCH","/groups/{param}/sites/{param}/onenote/resources/{param}","keep",,"Update-MgGroupSiteOnenoteResource","Update-MgGroupSiteOnenoteResource" +"PATCH","/groups/{param}/sites/{param}/onenote/sectionGroups/{param}","keep",,"Update-MgGroupSiteOnenoteSectionGroup","Update-MgGroupSiteOnenoteSectionGroup" +"PATCH","/groups/{param}/sites/{param}/onenote/sectionGroups/{param}/sections/{param}","keep",,"Update-MgGroupSiteOnenoteSectionGroupSection","Update-MgGroupSiteOnenoteSectionGroupSection" +"PATCH","/groups/{param}/sites/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}","keep",,"Update-MgGroupSiteOnenoteSectionGroupSectionPage","Update-MgGroupSiteOnenoteSectionGroupSectionPage" +"PATCH","/groups/{param}/sites/{param}/onenote/sections/{param}","keep",,"Update-MgGroupSiteOnenoteSection","Update-MgGroupSiteOnenoteSection" +"PATCH","/groups/{param}/sites/{param}/onenote/sections/{param}/pages/{param}","keep",,"Update-MgGroupSiteOnenoteSectionPage","Update-MgGroupSiteOnenoteSectionPage" +"PATCH","/groups/{param}/sites/{param}/operations/{param}","keep",,"Update-MgGroupSiteOperation","Update-MgGroupSiteOperation" +"PATCH","/groups/{param}/sites/{param}/pages/{param}","keep",,"Update-MgGroupSitePage","Update-MgGroupSitePage" +"PATCH","/groups/{param}/sites/{param}/pages/{param}/createdByUser/mailboxSettings","keep",,"Update-MgGroupSitePageCreatedByUserMailboxSetting","Update-MgGroupSitePageCreatedByUserMailboxSetting" +"PATCH","/groups/{param}/sites/{param}/pages/{param}/lastModifiedByUser/mailboxSettings","keep",,"Update-MgGroupSitePageLastModifiedByUserMailboxSetting","Update-MgGroupSitePageLastModifiedByUserMailboxSetting" +"PATCH","/groups/{param}/sites/{param}/permissions/{param}","keep",,"Update-MgGroupSitePermission","Update-MgGroupSitePermission" +"PATCH","/groups/{param}/sites/{param}/termStore","keep",,"Update-MgGroupSiteTermStore","Update-MgGroupSiteTermStore" +"PATCH","/groups/{param}/sites/{param}/termStore/groups/{param}","keep",,"Update-MgGroupSiteTermStoreGroup","Update-MgGroupSiteTermStoreGroup" +"PATCH","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}","keep",,"Update-MgGroupSiteTermStoreGroupSet","Update-MgGroupSiteTermStoreGroupSet" +"PATCH","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/children/{param}","keep",,"Update-MgGroupSiteTermStoreGroupSetChild","Update-MgGroupSiteTermStoreGroupSetChild" +"PATCH","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/children/{param}/children/{param}/relations/{param}","keep",,"Update-MgGroupSiteTermStoreGroupSetChildRelation","Update-MgGroupSiteTermStoreGroupSetChildRelation" +"PATCH","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/parentGroup","keep",,"Update-MgGroupSiteTermStoreGroupSetParentGroup","Update-MgGroupSiteTermStoreGroupSetParentGroup" +"PATCH","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/relations/{param}","keep",,"Update-MgGroupSiteTermStoreGroupSetRelation","Update-MgGroupSiteTermStoreGroupSetRelation" +"PATCH","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}","keep",,"Update-MgGroupSiteTermStoreGroupSetTerm","Update-MgGroupSiteTermStoreGroupSetTerm" +"PATCH","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/children/{param}","keep",,"Update-MgGroupSiteTermStoreGroupSetTermChild","Update-MgGroupSiteTermStoreGroupSetTermChild" +"PATCH","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/children/{param}/relations/{param}","keep",,"Update-MgGroupSiteTermStoreGroupSetTermChildRelation","Update-MgGroupSiteTermStoreGroupSetTermChildRelation" +"PATCH","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/relations/{param}","keep",,"Update-MgGroupSiteTermStoreGroupSetTermRelation","Update-MgGroupSiteTermStoreGroupSetTermRelation" +"PATCH","/groups/{param}/sites/{param}/termStore/sets/{param}","keep",,"Update-MgGroupSiteTermStoreSet","Update-MgGroupSiteTermStoreSet" +"PATCH","/groups/{param}/sites/{param}/termStore/sets/{param}/children/{param}","keep",,"Update-MgGroupSiteTermStoreSetChild","Update-MgGroupSiteTermStoreSetChild" +"PATCH","/groups/{param}/sites/{param}/termStore/sets/{param}/children/{param}/children/{param}/relations/{param}","keep",,"Update-MgGroupSiteTermStoreSetChildRelation","Update-MgGroupSiteTermStoreSetChildRelation" +"PATCH","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup","keep",,"Update-MgGroupSiteTermStoreSetParentGroup","Update-MgGroupSiteTermStoreSetParentGroup" +"PATCH","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}","keep",,"Update-MgGroupSiteTermStoreSetParentGroupSet","Update-MgGroupSiteTermStoreSetParentGroupSet" +"PATCH","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/children/{param}","keep",,"Update-MgGroupSiteTermStoreSetParentGroupSetChild","Update-MgGroupSiteTermStoreSetParentGroupSetChild" +"PATCH","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/children/{param}/children/{param}/relations/{param}","keep",,"Update-MgGroupSiteTermStoreSetParentGroupSetChildRelation","Update-MgGroupSiteTermStoreSetParentGroupSetChildRelation" +"PATCH","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/relations/{param}","keep",,"Update-MgGroupSiteTermStoreSetParentGroupSetRelation","Update-MgGroupSiteTermStoreSetParentGroupSetRelation" +"PATCH","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}","keep",,"Update-MgGroupSiteTermStoreSetParentGroupSetTerm","Update-MgGroupSiteTermStoreSetParentGroupSetTerm" +"PATCH","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/children/{param}","keep",,"Update-MgGroupSiteTermStoreSetParentGroupSetTermChild","Update-MgGroupSiteTermStoreSetParentGroupSetTermChild" +"PATCH","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/children/{param}/relations/{param}","keep",,"Update-MgGroupSiteTermStoreSetParentGroupSetTermChildRelation","Update-MgGroupSiteTermStoreSetParentGroupSetTermChildRelation" +"PATCH","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/relations/{param}","keep",,"Update-MgGroupSiteTermStoreSetParentGroupSetTermRelation","Update-MgGroupSiteTermStoreSetParentGroupSetTermRelation" +"PATCH","/groups/{param}/sites/{param}/termStore/sets/{param}/relations/{param}","keep",,"Update-MgGroupSiteTermStoreSetRelation","Update-MgGroupSiteTermStoreSetRelation" +"PATCH","/groups/{param}/sites/{param}/termStore/sets/{param}/terms/{param}","keep",,"Update-MgGroupSiteTermStoreSetTerm","Update-MgGroupSiteTermStoreSetTerm" +"PATCH","/groups/{param}/sites/{param}/termStore/sets/{param}/terms/{param}/children/{param}","keep",,"Update-MgGroupSiteTermStoreSetTermChild","Update-MgGroupSiteTermStoreSetTermChild" +"PATCH","/groups/{param}/sites/{param}/termStore/sets/{param}/terms/{param}/children/{param}/relations/{param}","keep",,"Update-MgGroupSiteTermStoreSetTermChildRelation","Update-MgGroupSiteTermStoreSetTermChildRelation" +"PATCH","/groups/{param}/sites/{param}/termStore/sets/{param}/terms/{param}/relations/{param}","keep",,"Update-MgGroupSiteTermStoreSetTermRelation","Update-MgGroupSiteTermStoreSetTermRelation" +"PATCH","/groups/{param}/team/channels/{param}","keep",,"Update-MgGroupTeamChannel","Update-MgGroupTeamChannel" +"PATCH","/groups/{param}/team/channels/{param}/allMembers/{param}","rename","GroupTeamChannelMember","Update-MgGroupTeamChannelAllMember","Update-MgGroupTeamChannelMember" +"PATCH","/groups/{param}/team/channels/{param}/members/{param}","suppress",,"Update-MgGroupTeamChannelMember","no oracle row; 'Update-MgGroupTeamChannelMember' ships from sibling family (see rename entries for this noun)" +"PATCH","/groups/{param}/team/channels/{param}/messages/{param}","keep",,"Update-MgGroupTeamChannelMessage","Update-MgGroupTeamChannelMessage" +"PATCH","/groups/{param}/team/channels/{param}/messages/{param}/hostedContents/{param}","keep",,"Update-MgGroupTeamChannelMessageHostedContent","Update-MgGroupTeamChannelMessageHostedContent" +"PATCH","/groups/{param}/team/channels/{param}/messages/{param}/replies/{param}","keep",,"Update-MgGroupTeamChannelMessageReply","Update-MgGroupTeamChannelMessageReply" +"PATCH","/groups/{param}/team/channels/{param}/messages/{param}/replies/{param}/hostedContents/{param}","keep",,"Update-MgGroupTeamChannelMessageReplyHostedContent","Update-MgGroupTeamChannelMessageReplyHostedContent" +"PATCH","/groups/{param}/team/channels/{param}/sharedWithTeams/{param}","keep",,"Update-MgGroupTeamChannelSharedWithTeam","Update-MgGroupTeamChannelSharedWithTeam" +"PATCH","/groups/{param}/team/channels/{param}/tabs/{param}","keep",,"Update-MgGroupTeamChannelTab","Update-MgGroupTeamChannelTab" +"PATCH","/groups/{param}/team/installedApps/{param}","suppress",,"Update-MgGroupTeamInstalledApp","no oracle row; 'Update-MgGroupTeamInstalledApp' ships from sibling family (see rename entries for this noun)" +"PATCH","/groups/{param}/team/members/{param}","keep",,"Update-MgGroupTeamMember","Update-MgGroupTeamMember" +"PATCH","/groups/{param}/team/operations/{param}","keep",,"Update-MgGroupTeamOperation","Update-MgGroupTeamOperation" +"PATCH","/groups/{param}/team/permissionGrants/{param}","keep",,"Update-MgGroupTeamPermissionGrant","Update-MgGroupTeamPermissionGrant" +"PATCH","/groups/{param}/team/photo","keep",,"Update-MgGroupTeamPhoto","Update-MgGroupTeamPhoto" +"PATCH","/groups/{param}/team/primaryChannel","keep",,"Update-MgGroupTeamPrimaryChannel","Update-MgGroupTeamPrimaryChannel" +"PATCH","/groups/{param}/team/primaryChannel/allMembers/{param}","rename","GroupTeamPrimaryChannelMember","Update-MgGroupTeamPrimaryChannelAllMember","Update-MgGroupTeamPrimaryChannelMember" +"PATCH","/groups/{param}/team/primaryChannel/members/{param}","suppress",,"Update-MgGroupTeamPrimaryChannelMember","no oracle row; 'Update-MgGroupTeamPrimaryChannelMember' ships from sibling family (see rename entries for this noun)" +"PATCH","/groups/{param}/team/primaryChannel/messages/{param}","keep",,"Update-MgGroupTeamPrimaryChannelMessage","Update-MgGroupTeamPrimaryChannelMessage" +"PATCH","/groups/{param}/team/primaryChannel/messages/{param}/hostedContents/{param}","keep",,"Update-MgGroupTeamPrimaryChannelMessageHostedContent","Update-MgGroupTeamPrimaryChannelMessageHostedContent" +"PATCH","/groups/{param}/team/primaryChannel/messages/{param}/replies/{param}","keep",,"Update-MgGroupTeamPrimaryChannelMessageReply","Update-MgGroupTeamPrimaryChannelMessageReply" +"PATCH","/groups/{param}/team/primaryChannel/messages/{param}/replies/{param}/hostedContents/{param}","keep",,"Update-MgGroupTeamPrimaryChannelMessageReplyHostedContent","Update-MgGroupTeamPrimaryChannelMessageReplyHostedContent" +"PATCH","/groups/{param}/team/primaryChannel/sharedWithTeams/{param}","keep",,"Update-MgGroupTeamPrimaryChannelSharedWithTeam","Update-MgGroupTeamPrimaryChannelSharedWithTeam" +"PATCH","/groups/{param}/team/primaryChannel/tabs/{param}","keep",,"Update-MgGroupTeamPrimaryChannelTab","Update-MgGroupTeamPrimaryChannelTab" +"PATCH","/groups/{param}/team/schedule/dayNotes/{param}","keep",,"Update-MgGroupTeamScheduleDayNote","Update-MgGroupTeamScheduleDayNote" +"PATCH","/groups/{param}/team/schedule/offerShiftRequests/{param}","keep",,"Update-MgGroupTeamScheduleOfferShiftRequest","Update-MgGroupTeamScheduleOfferShiftRequest" +"PATCH","/groups/{param}/team/schedule/openShiftChangeRequests/{param}","keep",,"Update-MgGroupTeamScheduleOpenShiftChangeRequest","Update-MgGroupTeamScheduleOpenShiftChangeRequest" +"PATCH","/groups/{param}/team/schedule/openShifts/{param}","keep",,"Update-MgGroupTeamScheduleOpenShift","Update-MgGroupTeamScheduleOpenShift" +"PATCH","/groups/{param}/team/schedule/schedulingGroups/{param}","keep",,"Update-MgGroupTeamScheduleSchedulingGroup","Update-MgGroupTeamScheduleSchedulingGroup" +"PATCH","/groups/{param}/team/schedule/shifts/{param}","keep",,"Update-MgGroupTeamScheduleShift","Update-MgGroupTeamScheduleShift" +"PATCH","/groups/{param}/team/schedule/swapShiftsChangeRequests/{param}","keep",,"Update-MgGroupTeamScheduleSwapShiftChangeRequest","Update-MgGroupTeamScheduleSwapShiftChangeRequest" +"PATCH","/groups/{param}/team/schedule/timeCards/{param}","keep",,"Update-MgGroupTeamScheduleTimeCard","Update-MgGroupTeamScheduleTimeCard" +"PATCH","/groups/{param}/team/schedule/timeOffReasons/{param}","keep",,"Update-MgGroupTeamScheduleTimeOffReason","Update-MgGroupTeamScheduleTimeOffReason" +"PATCH","/groups/{param}/team/schedule/timeOffRequests/{param}","keep",,"Update-MgGroupTeamScheduleTimeOffRequest","Update-MgGroupTeamScheduleTimeOffRequest" +"PATCH","/groups/{param}/team/schedule/timesOff/{param}","keep",,"Update-MgGroupTeamScheduleTimeOff","Update-MgGroupTeamScheduleTimeOff" +"PATCH","/groups/{param}/team/tags/{param}","keep",,"Update-MgGroupTeamTag","Update-MgGroupTeamTag" +"PATCH","/groups/{param}/team/tags/{param}/members/{param}","keep",,"Update-MgGroupTeamTagMember","Update-MgGroupTeamTagMember" +"PATCH","/groups/{param}/threads/{param}","keep",,"Update-MgGroupThread","Update-MgGroupThread" +"PATCH","/groups/{param}/threads/{param}/posts/{param}/extensions/{param}","keep",,"Update-MgGroupThreadPostExtension","Update-MgGroupThreadPostExtension" +"PATCH","/groups/{param}/threads/{param}/posts/{param}/inReplyTo/extensions/{param}","keep",,"Update-MgGroupThreadPostInReplyToExtension","Update-MgGroupThreadPostInReplyToExtension" +"PATCH","/groupSettingTemplates/{param}","keep",,"Update-MgGroupSettingTemplate","Update-MgGroupSettingTemplateGroupSettingTemplate" +"PATCH","/identity","suppress",,"Update-MgIdentity","no oracle row for PATCH /identity and 'Update-MgIdentity' unshipped" +"PATCH","/identity/apiConnectors/{param}","keep",,"Update-MgIdentityApiConnector","Update-MgIdentityApiConnector" +"PATCH","/identity/authenticationEventListeners/{param}","keep",,"Update-MgIdentityAuthenticationEventListener","Update-MgIdentityAuthenticationEventListener" +"PATCH","/identity/authenticationEventsFlows/{param}","keep",,"Update-MgIdentityAuthenticationEventFlow","Update-MgIdentityAuthenticationEventFlow" +"PATCH","/identity/authenticationEventsFlows/{param}/conditions/applications/includeApplications/{param}","rename","IdentityAuthenticationEventFlowIncludeApplication","Update-MgIdentityAuthenticationEventFlowConditionApplicationIncludeApplication","Update-MgIdentityAuthenticationEventFlowIncludeApplication" +"PATCH","/identity/b2xUserFlows/{param}","rename","IdentityB2XUserFlow","Update-MgIdentityB2xUserFlow","Update-MgIdentityB2XUserFlow" +"PATCH","/identity/b2xUserFlows/{param}/apiConnectorConfiguration/postAttributeCollection","rename","IdentityB2XUserFlowPostAttributeCollection","Update-MgIdentityB2xUserFlowApiConnectorConfigurationPostAttributeCollection","Update-MgIdentityB2XUserFlowPostAttributeCollection" +"PATCH","/identity/b2xUserFlows/{param}/apiConnectorConfiguration/postFederationSignup","rename","IdentityB2XUserFlowPostFederationSignup","Update-MgIdentityB2xUserFlowApiConnectorConfigurationPostFederationSignup","Update-MgIdentityB2XUserFlowPostFederationSignup" +"PATCH","/identity/b2xUserFlows/{param}/languages/{param}","rename","IdentityB2XUserFlowLanguage","Update-MgIdentityB2xUserFlowLanguage","Update-MgIdentityB2XUserFlowLanguage" +"PATCH","/identity/b2xUserFlows/{param}/languages/{param}/defaultPages/{param}","rename","IdentityB2XUserFlowLanguageDefaultPage","Update-MgIdentityB2xUserFlowLanguageDefaultPage","Update-MgIdentityB2XUserFlowLanguageDefaultPage" +"PATCH","/identity/b2xUserFlows/{param}/languages/{param}/overridesPages/{param}","rename","IdentityB2XUserFlowLanguageOverridePage","Update-MgIdentityB2xUserFlowLanguageOverridePage","Update-MgIdentityB2XUserFlowLanguageOverridePage" +"PATCH","/identity/b2xUserFlows/{param}/userAttributeAssignments/{param}","rename","IdentityB2XUserFlowUserAttributeAssignment","Update-MgIdentityB2xUserFlowUserAttributeAssignment","Update-MgIdentityB2XUserFlowUserAttributeAssignment" +"PATCH","/identity/conditionalAccess/authenticationContextClassReferences/{param}","keep",,"Update-MgIdentityConditionalAccessAuthenticationContextClassReference","Update-MgIdentityConditionalAccessAuthenticationContextClassReference" +"PATCH","/identity/conditionalAccess/authenticationStrength","suppress",,"Update-MgIdentityConditionalAccessAuthenticationStrength","no oracle row for PATCH /identity/conditionalAccess/authenticationStrength and 'Update-MgIdentityConditionalAccessAuthenticationStrength' unshipped" +"PATCH","/identity/conditionalAccess/authenticationStrength/authenticationMethodModes/{param}","suppress",,"Update-MgIdentityConditionalAccessAuthenticationStrengthAuthenticationMethodMode","no oracle row for PATCH /identity/conditionalAccess/authenticationStrength/authenticationMethodModes/{param} and 'Update-MgIdentityConditionalAccessAuthenticationStrengthAuthenticationMethodMode' unshipped" +"PATCH","/identity/conditionalAccess/authenticationStrength/policies/{param}","suppress",,"Update-MgIdentityConditionalAccessAuthenticationStrengthPolicy","no oracle row for PATCH /identity/conditionalAccess/authenticationStrength/policies/{param} and 'Update-MgIdentityConditionalAccessAuthenticationStrengthPolicy' unshipped" +"PATCH","/identity/conditionalAccess/authenticationStrength/policies/{param}/combinationConfigurations/{param}","suppress",,"Update-MgIdentityConditionalAccessAuthenticationStrengthPolicyCombinationConfiguration","no oracle row for PATCH /identity/conditionalAccess/authenticationStrength/policies/{param}/combinationConfigurations/{param} and 'Update-MgIdentityConditionalAccessAuthenticationStrengthPolicyCombinationConfiguration' unshipped" +"PATCH","/identity/conditionalAccess/deletedItems","keep",,"Update-MgIdentityConditionalAccessDeletedItem","Update-MgIdentityConditionalAccessDeletedItem" +"PATCH","/identity/conditionalAccess/deletedItems/namedLocations/{param}","keep",,"Update-MgIdentityConditionalAccessDeletedItemNamedLocation","Update-MgIdentityConditionalAccessDeletedItemNamedLocation" +"PATCH","/identity/conditionalAccess/deletedItems/policies/{param}","keep",,"Update-MgIdentityConditionalAccessDeletedItemPolicy","Update-MgIdentityConditionalAccessDeletedItemPolicy" +"PATCH","/identity/conditionalAccess/namedLocations/{param}","keep",,"Update-MgIdentityConditionalAccessNamedLocation","Update-MgIdentityConditionalAccessNamedLocation" +"PATCH","/identity/conditionalAccess/policies/{param}","keep",,"Update-MgIdentityConditionalAccessPolicy","Update-MgIdentityConditionalAccessPolicy" +"PATCH","/identity/customAuthenticationExtensions/{param}","keep",,"Update-MgIdentityCustomAuthenticationExtension","Update-MgIdentityCustomAuthenticationExtension" +"PATCH","/identity/identityProviders/{param}","keep",,"Update-MgIdentityProvider","Update-MgIdentityProvider" +"PATCH","/identity/riskPrevention","keep",,"Update-MgIdentityRiskPrevention","Update-MgIdentityRiskPrevention" +"PATCH","/identity/riskPrevention/fraudProtectionProviders/{param}","keep",,"Update-MgIdentityRiskPreventionFraudProtectionProvider","Update-MgIdentityRiskPreventionFraudProtectionProvider" +"PATCH","/identity/riskPrevention/webApplicationFirewallProviders/{param}","keep",,"Update-MgIdentityRiskPreventionWebApplicationFirewallProvider","Update-MgIdentityRiskPreventionWebApplicationFirewallProvider" +"PATCH","/identity/riskPrevention/webApplicationFirewallVerifications/{param}","keep",,"Update-MgIdentityRiskPreventionWebApplicationFirewallVerification","Update-MgIdentityRiskPreventionWebApplicationFirewallVerification" +"PATCH","/identity/userFlowAttributes/{param}","keep",,"Update-MgIdentityUserFlowAttribute","Update-MgIdentityUserFlowAttribute" +"PATCH","/identity/verifiedId","keep",,"Update-MgIdentityVerifiedId","Update-MgIdentityVerifiedId" +"PATCH","/identity/verifiedId/profiles/{param}","keep",,"Update-MgIdentityVerifiedIdProfile","Update-MgIdentityVerifiedIdProfile" +"PATCH","/identityGovernance","suppress",,"Update-MgIdentityGovernance","no oracle row for PATCH /identityGovernance and 'Update-MgIdentityGovernance' unshipped" +"PATCH","/identityGovernance/accessReviews","suppress",,"Update-MgIdentityGovernanceAccessReview","no oracle row for PATCH /identityGovernance/accessReviews and 'Update-MgIdentityGovernanceAccessReview' unshipped" +"PATCH","/identityGovernance/accessReviews/definitions/{param}/instances/{param}","keep",,"Update-MgIdentityGovernanceAccessReviewDefinitionInstance","Update-MgIdentityGovernanceAccessReviewDefinitionInstance" +"PATCH","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/contactedReviewers/{param}","keep",,"Update-MgIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewer","Update-MgIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewer" +"PATCH","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/decisions/{param}","keep",,"Update-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision","Update-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision" +"PATCH","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/decisions/{param}/insights/{param}","keep",,"Update-MgIdentityGovernanceAccessReviewDefinitionInstanceDecisionInsight","Update-MgIdentityGovernanceAccessReviewDefinitionInstanceDecisionInsight" +"PATCH","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/stages/{param}","keep",,"Update-MgIdentityGovernanceAccessReviewDefinitionInstanceStage","Update-MgIdentityGovernanceAccessReviewDefinitionInstanceStage" +"PATCH","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/stages/{param}/decisions/{param}","keep",,"Update-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision","Update-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision" +"PATCH","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/stages/{param}/decisions/{param}/insights/{param}","keep",,"Update-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionInsight","Update-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionInsight" +"PATCH","/identityGovernance/accessReviews/historyDefinitions/{param}","keep",,"Update-MgIdentityGovernanceAccessReviewHistoryDefinition","Update-MgIdentityGovernanceAccessReviewHistoryDefinition" +"PATCH","/identityGovernance/accessReviews/historyDefinitions/{param}/instances/{param}","keep",,"Update-MgIdentityGovernanceAccessReviewHistoryDefinitionInstance","Update-MgIdentityGovernanceAccessReviewHistoryDefinitionInstance" +"PATCH","/identityGovernance/appConsent","suppress",,"Update-MgIdentityGovernanceAppConsent","no oracle row for PATCH /identityGovernance/appConsent and 'Update-MgIdentityGovernanceAppConsent' unshipped" +"PATCH","/identityGovernance/appConsent/appConsentRequests/{param}","rename","IdentityGovernanceAppConsentRequest","Update-MgIdentityGovernanceAppConsentAppConsentRequest","Update-MgIdentityGovernanceAppConsentRequest" +"PATCH","/identityGovernance/appConsent/appConsentRequests/{param}/userConsentRequests/{param}","rename","IdentityGovernanceAppConsentRequestUserConsentRequest","Update-MgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequest","Update-MgIdentityGovernanceAppConsentRequestUserConsentRequest" +"PATCH","/identityGovernance/appConsent/appConsentRequests/{param}/userConsentRequests/{param}/approval","rename","IdentityGovernanceAppConsentRequestUserConsentRequestApproval","Update-MgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequestApproval","Update-MgIdentityGovernanceAppConsentRequestUserConsentRequestApproval" +"PATCH","/identityGovernance/appConsent/appConsentRequests/{param}/userConsentRequests/{param}/approval/stages/{param}","rename","IdentityGovernanceAppConsentRequestUserConsentRequestApprovalStage","Update-MgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequestApprovalStage","Update-MgIdentityGovernanceAppConsentRequestUserConsentRequestApprovalStage" +"PATCH","/identityGovernance/entitlementManagement","suppress",,"Update-MgIdentityGovernanceEntitlementManagement","no oracle row for PATCH /identityGovernance/entitlementManagement and 'Update-MgIdentityGovernanceEntitlementManagement' unshipped" +"PATCH","/identityGovernance/entitlementManagement/accessPackageAssignmentApprovals/{param}","rename","EntitlementManagementAccessPackageAssignmentApproval","Update-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentApproval","Update-MgEntitlementManagementAccessPackageAssignmentApproval" +"PATCH","/identityGovernance/entitlementManagement/accessPackageAssignmentApprovals/{param}/stages/{param}","rename","EntitlementManagementAccessPackageAssignmentApprovalStage","Update-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentApprovalStage","Update-MgEntitlementManagementAccessPackageAssignmentApprovalStage" +"PATCH","/identityGovernance/entitlementManagement/accessPackages/{param}","rename","EntitlementManagementAccessPackage","Update-MgIdentityGovernanceEntitlementManagementAccessPackage","Update-MgEntitlementManagementAccessPackage" +"PATCH","/identityGovernance/entitlementManagement/accessPackages/{param}/assignmentPolicies/{param}","rename","EntitlementManagementAccessPackageAssignmentPolicy","Update-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicy","Update-MgEntitlementManagementAccessPackageAssignmentPolicy" +"PATCH","/identityGovernance/entitlementManagement/accessPackages/{param}/assignmentPolicies/{param}/customExtensionStageSettings/{param}","suppress",,"Update-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyCustomExtensionStageSetting","no oracle row for PATCH /identityGovernance/entitlementManagement/accessPackages/{param}/assignmentPolicies/{param}/customExtensionStageSettings/{param} and 'Update-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyCustomExtensionStageSetting' unshipped" +"PATCH","/identityGovernance/entitlementManagement/accessPackages/{param}/assignmentPolicies/{param}/questions/{param}","suppress",,"Update-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyQuestion","no oracle row for PATCH /identityGovernance/entitlementManagement/accessPackages/{param}/assignmentPolicies/{param}/questions/{param} and 'Update-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyQuestion' unshipped" +"PATCH","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}","rename","EntitlementManagementAccessPackageResourceRoleScope","Update-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScope","Update-MgEntitlementManagementAccessPackageResourceRoleScope" +"PATCH","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role","suppress",,"Update-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRole","no oracle row for PATCH /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role and 'Update-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRole' unshipped" +"PATCH","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource","suppress",,"Update-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResource","no oracle row for PATCH /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource and 'Update-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResource' unshipped" +"PATCH","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/roles/{param}","suppress",,"Update-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceRole","no oracle row for PATCH /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/roles/{param} and 'Update-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceRole' unshipped" +"PATCH","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/scopes/{param}","suppress",,"Update-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScope","no oracle row for PATCH /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/scopes/{param} and 'Update-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScope' unshipped" +"PATCH","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/scopes/{param}/resource","suppress",,"Update-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScopeResource","no oracle row for PATCH /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/scopes/{param}/resource and 'Update-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScopeResource' unshipped" +"PATCH","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/scopes/{param}/resource/roles/{param}","suppress",,"Update-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScopeResourceRole","no oracle row for PATCH /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/scopes/{param}/resource/roles/{param} and 'Update-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScopeResourceRole' unshipped" +"PATCH","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource","suppress",,"Update-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResource","no oracle row for PATCH /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource and 'Update-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResource' unshipped" +"PATCH","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/roles/{param}","suppress",,"Update-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRole","no oracle row for PATCH /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/roles/{param} and 'Update-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRole' unshipped" +"PATCH","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/roles/{param}/resource","suppress",,"Update-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRoleResource","no oracle row for PATCH /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/roles/{param}/resource and 'Update-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRoleResource' unshipped" +"PATCH","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/roles/{param}/resource/scopes/{param}","suppress",,"Update-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRoleResourceScope","no oracle row for PATCH /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/roles/{param}/resource/scopes/{param} and 'Update-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRoleResourceScope' unshipped" +"PATCH","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/scopes/{param}","suppress",,"Update-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceScope","no oracle row for PATCH /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/scopes/{param} and 'Update-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceScope' unshipped" +"PATCH","/identityGovernance/entitlementManagement/accessPackageSuggestions/{param}","rename","EntitlementManagementAccessPackageSuggestion","Update-MgIdentityGovernanceEntitlementManagementAccessPackageSuggestion","Update-MgEntitlementManagementAccessPackageSuggestion" +"PATCH","/identityGovernance/entitlementManagement/assignmentPolicies/{param}/customExtensionStageSettings/{param}","rename","EntitlementManagementAssignmentPolicyCustomExtensionStageSetting","Update-MgIdentityGovernanceEntitlementManagementAssignmentPolicyCustomExtensionStageSetting","Update-MgEntitlementManagementAssignmentPolicyCustomExtensionStageSetting" +"PATCH","/identityGovernance/entitlementManagement/assignmentPolicies/{param}/questions/{param}","rename","EntitlementManagementAssignmentPolicyQuestion","Update-MgIdentityGovernanceEntitlementManagementAssignmentPolicyQuestion","Update-MgEntitlementManagementAssignmentPolicyQuestion" +"PATCH","/identityGovernance/entitlementManagement/assignmentRequests/{param}","suppress",,"Update-MgIdentityGovernanceEntitlementManagementAssignmentRequest","no oracle row for PATCH /identityGovernance/entitlementManagement/assignmentRequests/{param} and 'Update-MgIdentityGovernanceEntitlementManagementAssignmentRequest' unshipped" +"PATCH","/identityGovernance/entitlementManagement/assignments/{param}","suppress",,"Update-MgIdentityGovernanceEntitlementManagementAssignment","no oracle row for PATCH /identityGovernance/entitlementManagement/assignments/{param} and 'Update-MgIdentityGovernanceEntitlementManagementAssignment' unshipped" +"PATCH","/identityGovernance/entitlementManagement/availableAccessPackages/{param}","rename","EntitlementManagementAvailableAccessPackage","Update-MgIdentityGovernanceEntitlementManagementAvailableAccessPackage","Update-MgEntitlementManagementAvailableAccessPackage" +"PATCH","/identityGovernance/entitlementManagement/catalogs/{param}","rename","EntitlementManagementCatalog","Update-MgIdentityGovernanceEntitlementManagementCatalog","Update-MgEntitlementManagementCatalog" +"PATCH","/identityGovernance/entitlementManagement/catalogs/{param}/customWorkflowExtensions/{param}","rename","EntitlementManagementCatalogCustomWorkflowExtension","Update-MgIdentityGovernanceEntitlementManagementCatalogCustomWorkflowExtension","Update-MgEntitlementManagementCatalogCustomWorkflowExtension" +"PATCH","/identityGovernance/entitlementManagement/catalogs/{param}/resourceRoles/{param}","rename","EntitlementManagementCatalogResourceRole","Update-MgIdentityGovernanceEntitlementManagementCatalogResourceRole","Update-MgEntitlementManagementCatalogResourceRole" +"PATCH","/identityGovernance/entitlementManagement/catalogs/{param}/resourceRoles/{param}/resource","suppress",,"Update-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResource","no oracle row for PATCH /identityGovernance/entitlementManagement/catalogs/{param}/resourceRoles/{param}/resource and 'Update-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResource' unshipped" +"PATCH","/identityGovernance/entitlementManagement/catalogs/{param}/resourceRoles/{param}/resource/roles/{param}","suppress",,"Update-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceRole","no oracle row for PATCH /identityGovernance/entitlementManagement/catalogs/{param}/resourceRoles/{param}/resource/roles/{param} and 'Update-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceRole' unshipped" +"PATCH","/identityGovernance/entitlementManagement/catalogs/{param}/resourceRoles/{param}/resource/scopes/{param}","rename","EntitlementManagementCatalogResourceRoleResourceScope","Update-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScope","Update-MgEntitlementManagementCatalogResourceRoleResourceScope" +"PATCH","/identityGovernance/entitlementManagement/catalogs/{param}/resourceRoles/{param}/resource/scopes/{param}/resource","suppress",,"Update-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResource","no oracle row for PATCH /identityGovernance/entitlementManagement/catalogs/{param}/resourceRoles/{param}/resource/scopes/{param}/resource and 'Update-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResource' unshipped" +"PATCH","/identityGovernance/entitlementManagement/catalogs/{param}/resourceRoles/{param}/resource/scopes/{param}/resource/roles/{param}","rename","EntitlementManagementCatalogResourceRoleResourceScopeResourceRole","Update-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResourceRole","Update-MgEntitlementManagementCatalogResourceRoleResourceScopeResourceRole" +"PATCH","/identityGovernance/entitlementManagement/catalogs/{param}/resources/{param}","suppress",,"Update-MgIdentityGovernanceEntitlementManagementCatalogResource","no oracle row for PATCH /identityGovernance/entitlementManagement/catalogs/{param}/resources/{param} and 'Update-MgIdentityGovernanceEntitlementManagementCatalogResource' unshipped" +"PATCH","/identityGovernance/entitlementManagement/catalogs/{param}/resources/{param}/scopes/{param}","suppress",,"Update-MgIdentityGovernanceEntitlementManagementCatalogResourceScope","no oracle row for PATCH /identityGovernance/entitlementManagement/catalogs/{param}/resources/{param}/scopes/{param} and 'Update-MgIdentityGovernanceEntitlementManagementCatalogResourceScope' unshipped" +"PATCH","/identityGovernance/entitlementManagement/catalogs/{param}/resources/{param}/scopes/{param}/resource","suppress",,"Update-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResource","no oracle row for PATCH /identityGovernance/entitlementManagement/catalogs/{param}/resources/{param}/scopes/{param}/resource and 'Update-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResource' unshipped" +"PATCH","/identityGovernance/entitlementManagement/catalogs/{param}/resources/{param}/scopes/{param}/resource/roles/{param}","rename","EntitlementManagementCatalogResourceScopeResourceRole","Update-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRole","Update-MgEntitlementManagementCatalogResourceScopeResourceRole" +"PATCH","/identityGovernance/entitlementManagement/catalogs/{param}/resources/{param}/scopes/{param}/resource/roles/{param}/resource","suppress",,"Update-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResource","no oracle row for PATCH /identityGovernance/entitlementManagement/catalogs/{param}/resources/{param}/scopes/{param}/resource/roles/{param}/resource and 'Update-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResource' unshipped" +"PATCH","/identityGovernance/entitlementManagement/catalogs/{param}/resourceScopes/{param}/resource/roles/{param}/resource/scopes/{param}","rename","EntitlementManagementCatalogResourceScopeResourceRoleResourceScope","Update-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResourceScope","Update-MgEntitlementManagementCatalogResourceScopeResourceRoleResourceScope" +"PATCH","/identityGovernance/entitlementManagement/catalogs/{param}/resourceScopes/{param}/resource/scopes/{param}","suppress",,"Update-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceScope","no oracle row for PATCH /identityGovernance/entitlementManagement/catalogs/{param}/resourceScopes/{param}/resource/scopes/{param} and 'Update-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceScope' unshipped" +"PATCH","/identityGovernance/entitlementManagement/connectedOrganizations/{param}","rename","EntitlementManagementConnectedOrganization","Update-MgIdentityGovernanceEntitlementManagementConnectedOrganization","Update-MgEntitlementManagementConnectedOrganization" +"PATCH","/identityGovernance/entitlementManagement/resourceEnvironments/{param}","rename","EntitlementManagementResourceEnvironment","Update-MgIdentityGovernanceEntitlementManagementResourceEnvironment","Update-MgEntitlementManagementResourceEnvironment" +"PATCH","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}","suppress",,"Update-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResource","no oracle row for PATCH /identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param} and 'Update-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResource' unshipped" +"PATCH","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/roles/{param}","rename","EntitlementManagementResourceEnvironmentResourceRole","Update-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRole","Update-MgEntitlementManagementResourceEnvironmentResourceRole" +"PATCH","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/roles/{param}/resource","suppress",,"Update-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResource","no oracle row for PATCH /identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/roles/{param}/resource and 'Update-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResource' unshipped" +"PATCH","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/roles/{param}/resource/scopes/{param}","rename","EntitlementManagementResourceEnvironmentResourceRoleResourceScope","Update-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResourceScope","Update-MgEntitlementManagementResourceEnvironmentResourceRoleResourceScope" +"PATCH","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/roles/{param}/resource/scopes/{param}/resource","suppress",,"Update-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResourceScopeResource","no oracle row for PATCH /identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/roles/{param}/resource/scopes/{param}/resource and 'Update-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResourceScopeResource' unshipped" +"PATCH","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/scopes/{param}","rename","EntitlementManagementResourceEnvironmentResourceScope","Update-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScope","Update-MgEntitlementManagementResourceEnvironmentResourceScope" +"PATCH","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/scopes/{param}/resource","suppress",,"Update-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResource","no oracle row for PATCH /identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/scopes/{param}/resource and 'Update-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResource' unshipped" +"PATCH","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/scopes/{param}/resource/roles/{param}","rename","EntitlementManagementResourceEnvironmentResourceScopeResourceRole","Update-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResourceRole","Update-MgEntitlementManagementResourceEnvironmentResourceScopeResourceRole" +"PATCH","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/scopes/{param}/resource/roles/{param}/resource","suppress",,"Update-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResourceRoleResource","no oracle row for PATCH /identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/scopes/{param}/resource/roles/{param}/resource and 'Update-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResourceRoleResource' unshipped" +"PATCH","/identityGovernance/entitlementManagement/resourceRequests/{param}","rename","EntitlementManagementResourceRequest","Update-MgIdentityGovernanceEntitlementManagementResourceRequest","Update-MgEntitlementManagementResourceRequest" +"PATCH","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog","rename","EntitlementManagementResourceRequestCatalog","Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalog","Update-MgEntitlementManagementResourceRequestCatalog" +"PATCH","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/customWorkflowExtensions/{param}","rename","EntitlementManagementResourceRequestCatalogCustomWorkflowExtension","Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogCustomWorkflowExtension","Update-MgEntitlementManagementResourceRequestCatalogCustomWorkflowExtension" +"PATCH","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceRoles/{param}","rename","EntitlementManagementResourceRequestCatalogResourceRole","Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRole","Update-MgEntitlementManagementResourceRequestCatalogResourceRole" +"PATCH","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceRoles/{param}/resource","suppress",,"Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResource","no oracle row for PATCH /identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceRoles/{param}/resource and 'Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResource' unshipped" +"PATCH","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceRoles/{param}/resource/roles/{param}","suppress",,"Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceRole","no oracle row for PATCH /identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceRoles/{param}/resource/roles/{param} and 'Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceRole' unshipped" +"PATCH","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceRoles/{param}/resource/scopes/{param}","rename","EntitlementManagementResourceRequestCatalogResourceRoleResourceScope","Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScope","Update-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScope" +"PATCH","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceRoles/{param}/resource/scopes/{param}/resource","suppress",,"Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResource","no oracle row for PATCH /identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceRoles/{param}/resource/scopes/{param}/resource and 'Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResource' unshipped" +"PATCH","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceRoles/{param}/resource/scopes/{param}/resource/roles/{param}","rename","EntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRole","Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRole","Update-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRole" +"PATCH","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resources/{param}","suppress",,"Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResource","no oracle row for PATCH /identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resources/{param} and 'Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResource' unshipped" +"PATCH","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resources/{param}/scopes/{param}","suppress",,"Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScope","no oracle row for PATCH /identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resources/{param}/scopes/{param} and 'Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScope' unshipped" +"PATCH","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resources/{param}/scopes/{param}/resource","suppress",,"Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResource","no oracle row for PATCH /identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resources/{param}/scopes/{param}/resource and 'Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResource' unshipped" +"PATCH","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resources/{param}/scopes/{param}/resource/roles/{param}","rename","EntitlementManagementResourceRequestCatalogResourceScopeResourceRole","Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRole","Update-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRole" +"PATCH","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resources/{param}/scopes/{param}/resource/roles/{param}/resource","suppress",,"Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResource","no oracle row for PATCH /identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resources/{param}/scopes/{param}/resource/roles/{param}/resource and 'Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResource' unshipped" +"PATCH","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceScopes/{param}/resource/roles/{param}/resource/scopes/{param}","rename","EntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceScope","Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceScope","Update-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceScope" +"PATCH","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceScopes/{param}/resource/scopes/{param}","suppress",,"Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceScope","no oracle row for PATCH /identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceScopes/{param}/resource/scopes/{param} and 'Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceScope' unshipped" +"PATCH","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource","suppress",,"Update-MgIdentityGovernanceEntitlementManagementResourceRequestResource","no oracle row for PATCH /identityGovernance/entitlementManagement/resourceRequests/{param}/resource and 'Update-MgIdentityGovernanceEntitlementManagementResourceRequestResource' unshipped" +"PATCH","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/roles/{param}","rename","EntitlementManagementResourceRequestResourceRole","Update-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRole","Update-MgEntitlementManagementResourceRequestResourceRole" +"PATCH","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/roles/{param}/resource","suppress",,"Update-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResource","no oracle row for PATCH /identityGovernance/entitlementManagement/resourceRequests/{param}/resource/roles/{param}/resource and 'Update-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResource' unshipped" +"PATCH","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/roles/{param}/resource/scopes/{param}","rename","EntitlementManagementResourceRequestResourceRoleResourceScope","Update-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResourceScope","Update-MgEntitlementManagementResourceRequestResourceRoleResourceScope" +"PATCH","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/roles/{param}/resource/scopes/{param}/resource","suppress",,"Update-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResourceScopeResource","no oracle row for PATCH /identityGovernance/entitlementManagement/resourceRequests/{param}/resource/roles/{param}/resource/scopes/{param}/resource and 'Update-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResourceScopeResource' unshipped" +"PATCH","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/scopes/{param}","rename","EntitlementManagementResourceRequestResourceScope","Update-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScope","Update-MgEntitlementManagementResourceRequestResourceScope" +"PATCH","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/scopes/{param}/resource","suppress",,"Update-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResource","no oracle row for PATCH /identityGovernance/entitlementManagement/resourceRequests/{param}/resource/scopes/{param}/resource and 'Update-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResource' unshipped" +"PATCH","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/scopes/{param}/resource/roles/{param}","rename","EntitlementManagementResourceRequestResourceScopeResourceRole","Update-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResourceRole","Update-MgEntitlementManagementResourceRequestResourceScopeResourceRole" +"PATCH","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/scopes/{param}/resource/roles/{param}/resource","suppress",,"Update-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResourceRoleResource","no oracle row for PATCH /identityGovernance/entitlementManagement/resourceRequests/{param}/resource/scopes/{param}/resource/roles/{param}/resource and 'Update-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResourceRoleResource' unshipped" +"PATCH","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}","rename","EntitlementManagementResourceRoleScope","Update-MgIdentityGovernanceEntitlementManagementResourceRoleScope","Update-MgEntitlementManagementResourceRoleScope" +"PATCH","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/role","rename","EntitlementManagementResourceRoleScopeRole","Update-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRole","Update-MgEntitlementManagementResourceRoleScopeRole" +"PATCH","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/role/resource","suppress",,"Update-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResource","no oracle row for PATCH /identityGovernance/entitlementManagement/resourceRoleScopes/{param}/role/resource and 'Update-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResource' unshipped" +"PATCH","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/role/resource/roles/{param}","rename","EntitlementManagementResourceRoleScopeRoleResourceRole","Update-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceRole","Update-MgEntitlementManagementResourceRoleScopeRoleResourceRole" +"PATCH","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/role/resource/scopes/{param}","rename","EntitlementManagementResourceRoleScopeRoleResourceScope","Update-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScope","Update-MgEntitlementManagementResourceRoleScopeRoleResourceScope" +"PATCH","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/role/resource/scopes/{param}/resource","suppress",,"Update-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScopeResource","no oracle row for PATCH /identityGovernance/entitlementManagement/resourceRoleScopes/{param}/role/resource/scopes/{param}/resource and 'Update-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScopeResource' unshipped" +"PATCH","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/role/resource/scopes/{param}/resource/roles/{param}","rename","EntitlementManagementResourceRoleScopeRoleResourceScopeResourceRole","Update-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScopeResourceRole","Update-MgEntitlementManagementResourceRoleScopeRoleResourceScopeResourceRole" +"PATCH","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/scope/resource","suppress",,"Update-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResource","no oracle row for PATCH /identityGovernance/entitlementManagement/resourceRoleScopes/{param}/scope/resource and 'Update-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResource' unshipped" +"PATCH","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/scope/resource/roles/{param}","rename","EntitlementManagementResourceRoleScopeResourceRole","Update-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRole","Update-MgEntitlementManagementResourceRoleScopeResourceRole" +"PATCH","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/scope/resource/roles/{param}/resource","suppress",,"Update-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRoleResource","no oracle row for PATCH /identityGovernance/entitlementManagement/resourceRoleScopes/{param}/scope/resource/roles/{param}/resource and 'Update-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRoleResource' unshipped" +"PATCH","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/scope/resource/roles/{param}/resource/scopes/{param}","rename","EntitlementManagementResourceRoleScopeResourceRoleResourceScope","Update-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRoleResourceScope","Update-MgEntitlementManagementResourceRoleScopeResourceRoleResourceScope" +"PATCH","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/scope/resource/scopes/{param}","rename","EntitlementManagementResourceRoleScopeResourceScope","Update-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceScope","Update-MgEntitlementManagementResourceRoleScopeResourceScope" +"PATCH","/identityGovernance/entitlementManagement/resources/{param}","suppress",,"Update-MgIdentityGovernanceEntitlementManagementResource","no oracle row for PATCH /identityGovernance/entitlementManagement/resources/{param} and 'Update-MgIdentityGovernanceEntitlementManagementResource' unshipped" +"PATCH","/identityGovernance/entitlementManagement/resources/{param}/roles/{param}","rename","EntitlementManagementResourceRole","Update-MgIdentityGovernanceEntitlementManagementResourceRole","Update-MgEntitlementManagementResourceRole" +"PATCH","/identityGovernance/entitlementManagement/resources/{param}/roles/{param}/resource","suppress",,"Update-MgIdentityGovernanceEntitlementManagementResourceRoleResource","no oracle row for PATCH /identityGovernance/entitlementManagement/resources/{param}/roles/{param}/resource and 'Update-MgIdentityGovernanceEntitlementManagementResourceRoleResource' unshipped" +"PATCH","/identityGovernance/entitlementManagement/resources/{param}/roles/{param}/resource/scopes/{param}","rename","EntitlementManagementResourceRoleResourceScope","Update-MgIdentityGovernanceEntitlementManagementResourceRoleResourceScope","Update-MgEntitlementManagementResourceRoleResourceScope" +"PATCH","/identityGovernance/entitlementManagement/resources/{param}/roles/{param}/resource/scopes/{param}/resource","suppress",,"Update-MgIdentityGovernanceEntitlementManagementResourceRoleResourceScopeResource","no oracle row for PATCH /identityGovernance/entitlementManagement/resources/{param}/roles/{param}/resource/scopes/{param}/resource and 'Update-MgIdentityGovernanceEntitlementManagementResourceRoleResourceScopeResource' unshipped" +"PATCH","/identityGovernance/entitlementManagement/resources/{param}/scopes/{param}","rename","EntitlementManagementResourceScope","Update-MgIdentityGovernanceEntitlementManagementResourceScope","Update-MgEntitlementManagementResourceScope" +"PATCH","/identityGovernance/entitlementManagement/resources/{param}/scopes/{param}/resource","suppress",,"Update-MgIdentityGovernanceEntitlementManagementResourceScopeResource","no oracle row for PATCH /identityGovernance/entitlementManagement/resources/{param}/scopes/{param}/resource and 'Update-MgIdentityGovernanceEntitlementManagementResourceScopeResource' unshipped" +"PATCH","/identityGovernance/entitlementManagement/resources/{param}/scopes/{param}/resource/roles/{param}","rename","EntitlementManagementResourceScopeResourceRole","Update-MgIdentityGovernanceEntitlementManagementResourceScopeResourceRole","Update-MgEntitlementManagementResourceScopeResourceRole" +"PATCH","/identityGovernance/entitlementManagement/resources/{param}/scopes/{param}/resource/roles/{param}/resource","suppress",,"Update-MgIdentityGovernanceEntitlementManagementResourceScopeResourceRoleResource","no oracle row for PATCH /identityGovernance/entitlementManagement/resources/{param}/scopes/{param}/resource/roles/{param}/resource and 'Update-MgIdentityGovernanceEntitlementManagementResourceScopeResourceRoleResource' unshipped" +"PATCH","/identityGovernance/entitlementManagement/settings","rename","EntitlementManagementSetting","Update-MgIdentityGovernanceEntitlementManagementSetting","Update-MgEntitlementManagementSetting" +"PATCH","/identityGovernance/entitlementManagement/subjects/{param}","rename","EntitlementManagementSubject","Update-MgIdentityGovernanceEntitlementManagementSubject","Update-MgEntitlementManagementSubject" +"PATCH","/identityGovernance/lifecycleWorkflows/customTaskExtensions/{param}","keep",,"Update-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtension","Update-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtension" +"PATCH","/identityGovernance/lifecycleWorkflows/customTaskExtensions/{param}/createdBy/mailboxSettings","keep",,"Update-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtensionCreatedByMailboxSetting","Update-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtensionCreatedByMailboxSetting" +"PATCH","/identityGovernance/lifecycleWorkflows/customTaskExtensions/{param}/lastModifiedBy/mailboxSettings","keep",,"Update-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtensionLastModifiedByMailboxSetting","Update-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtensionLastModifiedByMailboxSetting" +"PATCH","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/createdBy/mailboxSettings","suppress",,"Update-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowCreatedByMailboxSetting","no oracle row for PATCH /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/createdBy/mailboxSettings and 'Update-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowCreatedByMailboxSetting' unshipped" +"PATCH","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/lastModifiedBy/mailboxSettings","suppress",,"Update-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowLastModifiedByMailboxSetting","no oracle row for PATCH /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/lastModifiedBy/mailboxSettings and 'Update-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowLastModifiedByMailboxSetting' unshipped" +"PATCH","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/taskProcessingResults/{param}/subject/mailboxSettings","suppress",,"Update-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunTaskProcessingResultSubjectMailboxSetting","no oracle row for PATCH /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/taskProcessingResults/{param}/subject/mailboxSettings and 'Update-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunTaskProcessingResultSubjectMailboxSetting' unshipped" +"PATCH","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/userProcessingResults/{param}/subject/mailboxSettings","suppress",,"Update-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultSubjectMailboxSetting","no oracle row for PATCH /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/userProcessingResults/{param}/subject/mailboxSettings and 'Update-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultSubjectMailboxSetting' unshipped" +"PATCH","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/subject/mailboxSettings","suppress",,"Update-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultTaskProcessingResultSubjectMailboxSetting","no oracle row for PATCH /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/subject/mailboxSettings and 'Update-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultTaskProcessingResultSubjectMailboxSetting' unshipped" +"PATCH","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/taskReports/{param}/taskProcessingResults/{param}/subject/mailboxSettings","suppress",,"Update-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportTaskProcessingResultSubjectMailboxSetting","no oracle row for PATCH /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/taskReports/{param}/taskProcessingResults/{param}/subject/mailboxSettings and 'Update-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportTaskProcessingResultSubjectMailboxSetting' unshipped" +"PATCH","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/tasks/{param}","keep",,"Update-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTask","Update-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTask" +"PATCH","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/tasks/{param}/taskProcessingResults/{param}/subject/mailboxSettings","suppress",,"Update-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskProcessingResultSubjectMailboxSetting","no oracle row for PATCH /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/tasks/{param}/taskProcessingResults/{param}/subject/mailboxSettings and 'Update-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskProcessingResultSubjectMailboxSetting' unshipped" +"PATCH","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/userProcessingResults/{param}/subject/mailboxSettings","suppress",,"Update-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultSubjectMailboxSetting","no oracle row for PATCH /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/userProcessingResults/{param}/subject/mailboxSettings and 'Update-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultSubjectMailboxSetting' unshipped" +"PATCH","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/subject/mailboxSettings","suppress",,"Update-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultTaskProcessingResultSubjectMailboxSetting","no oracle row for PATCH /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/subject/mailboxSettings and 'Update-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultTaskProcessingResultSubjectMailboxSetting' unshipped" +"PATCH","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/createdBy/mailboxSettings","suppress",,"Update-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionCreatedByMailboxSetting","no oracle row for PATCH /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/createdBy/mailboxSettings and 'Update-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionCreatedByMailboxSetting' unshipped" +"PATCH","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/lastModifiedBy/mailboxSettings","suppress",,"Update-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionLastModifiedByMailboxSetting","no oracle row for PATCH /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/lastModifiedBy/mailboxSettings and 'Update-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionLastModifiedByMailboxSetting' unshipped" +"PATCH","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/tasks/{param}","suppress",,"Update-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTask","no oracle row for PATCH /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/tasks/{param} and 'Update-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTask' unshipped" +"PATCH","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/tasks/{param}/taskProcessingResults/{param}/subject/mailboxSettings","suppress",,"Update-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTaskProcessingResultSubjectMailboxSetting","no oracle row for PATCH /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/tasks/{param}/taskProcessingResults/{param}/subject/mailboxSettings and 'Update-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTaskProcessingResultSubjectMailboxSetting' unshipped" +"PATCH","/identityGovernance/lifecycleWorkflows/insights","keep",,"Update-MgIdentityGovernanceLifecycleWorkflowInsight","Update-MgIdentityGovernanceLifecycleWorkflowInsight" +"PATCH","/identityGovernance/lifecycleWorkflows/settings","keep",,"Update-MgIdentityGovernanceLifecycleWorkflowSetting","Update-MgIdentityGovernanceLifecycleWorkflowSetting" +"PATCH","/identityGovernance/lifecycleWorkflows/workflows/{param}","keep",,"Update-MgIdentityGovernanceLifecycleWorkflow","Update-MgIdentityGovernanceLifecycleWorkflow" +"PATCH","/identityGovernance/lifecycleWorkflows/workflows/{param}/createdBy/mailboxSettings","keep",,"Update-MgIdentityGovernanceLifecycleWorkflowCreatedByMailboxSetting","Update-MgIdentityGovernanceLifecycleWorkflowCreatedByMailboxSetting" +"PATCH","/identityGovernance/lifecycleWorkflows/workflows/{param}/lastModifiedBy/mailboxSettings","keep",,"Update-MgIdentityGovernanceLifecycleWorkflowLastModifiedByMailboxSetting","Update-MgIdentityGovernanceLifecycleWorkflowLastModifiedByMailboxSetting" +"PATCH","/identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/taskProcessingResults/{param}/subject/mailboxSettings","keep",,"Update-MgIdentityGovernanceLifecycleWorkflowRunTaskProcessingResultSubjectMailboxSetting","Update-MgIdentityGovernanceLifecycleWorkflowRunTaskProcessingResultSubjectMailboxSetting" +"PATCH","/identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/userProcessingResults/{param}/subject/mailboxSettings","keep",,"Update-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultSubjectMailboxSetting","Update-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultSubjectMailboxSetting" +"PATCH","/identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/subject/mailboxSettings","suppress",,"Update-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultTaskProcessingResultSubjectMailboxSetting","no oracle row for PATCH /identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/subject/mailboxSettings and 'Update-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultTaskProcessingResultSubjectMailboxSetting' unshipped" +"PATCH","/identityGovernance/lifecycleWorkflows/workflows/{param}/taskReports/{param}/taskProcessingResults/{param}/subject/mailboxSettings","keep",,"Update-MgIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResultSubjectMailboxSetting","Update-MgIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResultSubjectMailboxSetting" +"PATCH","/identityGovernance/lifecycleWorkflows/workflows/{param}/tasks/{param}","keep",,"Update-MgIdentityGovernanceLifecycleWorkflowTask","Update-MgIdentityGovernanceLifecycleWorkflowTask" +"PATCH","/identityGovernance/lifecycleWorkflows/workflows/{param}/tasks/{param}/taskProcessingResults/{param}/subject/mailboxSettings","keep",,"Update-MgIdentityGovernanceLifecycleWorkflowTaskProcessingResultSubjectMailboxSetting","Update-MgIdentityGovernanceLifecycleWorkflowTaskProcessingResultSubjectMailboxSetting" +"PATCH","/identityGovernance/lifecycleWorkflows/workflows/{param}/userProcessingResults/{param}/subject/mailboxSettings","keep",,"Update-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultSubjectMailboxSetting","Update-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultSubjectMailboxSetting" +"PATCH","/identityGovernance/lifecycleWorkflows/workflows/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/subject/mailboxSettings","suppress",,"Update-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultTaskProcessingResultSubjectMailboxSetting","no oracle row for PATCH /identityGovernance/lifecycleWorkflows/workflows/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/subject/mailboxSettings and 'Update-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultTaskProcessingResultSubjectMailboxSetting' unshipped" +"PATCH","/identityGovernance/lifecycleWorkflows/workflows/{param}/versions/{param}/createdBy/mailboxSettings","keep",,"Update-MgIdentityGovernanceLifecycleWorkflowVersionCreatedByMailboxSetting","Update-MgIdentityGovernanceLifecycleWorkflowVersionCreatedByMailboxSetting" +"PATCH","/identityGovernance/lifecycleWorkflows/workflows/{param}/versions/{param}/lastModifiedBy/mailboxSettings","keep",,"Update-MgIdentityGovernanceLifecycleWorkflowVersionLastModifiedByMailboxSetting","Update-MgIdentityGovernanceLifecycleWorkflowVersionLastModifiedByMailboxSetting" +"PATCH","/identityGovernance/lifecycleWorkflows/workflows/{param}/versions/{param}/tasks/{param}","keep",,"Update-MgIdentityGovernanceLifecycleWorkflowVersionTask","Update-MgIdentityGovernanceLifecycleWorkflowVersionTask" +"PATCH","/identityGovernance/lifecycleWorkflows/workflows/{param}/versions/{param}/tasks/{param}/taskProcessingResults/{param}/subject/mailboxSettings","keep",,"Update-MgIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResultSubjectMailboxSetting","Update-MgIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResultSubjectMailboxSetting" +"PATCH","/identityGovernance/lifecycleWorkflows/workflowTemplates/{param}/tasks/{param}/taskProcessingResults/{param}/subject/mailboxSettings","keep",,"Update-MgIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResultSubjectMailboxSetting","Update-MgIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResultSubjectMailboxSetting" +"PATCH","/identityGovernance/privilegedAccess","keep",,"Update-MgIdentityGovernancePrivilegedAccess","Update-MgIdentityGovernancePrivilegedAccess" +"PATCH","/identityGovernance/privilegedAccess/group","keep",,"Update-MgIdentityGovernancePrivilegedAccessGroup","Update-MgIdentityGovernancePrivilegedAccessGroup" +"PATCH","/identityGovernance/privilegedAccess/group/assignmentApprovals/{param}","keep",,"Update-MgIdentityGovernancePrivilegedAccessGroupAssignmentApproval","Update-MgIdentityGovernancePrivilegedAccessGroupAssignmentApproval" +"PATCH","/identityGovernance/privilegedAccess/group/assignmentApprovals/{param}/stages/{param}","keep",,"Update-MgIdentityGovernancePrivilegedAccessGroupAssignmentApprovalStage","Update-MgIdentityGovernancePrivilegedAccessGroupAssignmentApprovalStage" +"PATCH","/identityGovernance/privilegedAccess/group/assignmentScheduleInstances/{param}","keep",,"Update-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstance","Update-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstance" +"PATCH","/identityGovernance/privilegedAccess/group/assignmentScheduleRequests/{param}","keep",,"Update-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequest","Update-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequest" +"PATCH","/identityGovernance/privilegedAccess/group/assignmentSchedules/{param}","keep",,"Update-MgIdentityGovernancePrivilegedAccessGroupAssignmentSchedule","Update-MgIdentityGovernancePrivilegedAccessGroupAssignmentSchedule" +"PATCH","/identityGovernance/privilegedAccess/group/eligibilityScheduleInstances/{param}","keep",,"Update-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstance","Update-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstance" +"PATCH","/identityGovernance/privilegedAccess/group/eligibilityScheduleRequests/{param}","keep",,"Update-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequest","Update-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequest" +"PATCH","/identityGovernance/privilegedAccess/group/eligibilitySchedules/{param}","keep",,"Update-MgIdentityGovernancePrivilegedAccessGroupEligibilitySchedule","Update-MgIdentityGovernancePrivilegedAccessGroupEligibilitySchedule" +"PATCH","/identityGovernance/termsOfUse","suppress",,"Update-MgIdentityGovernanceTermOfUse","no oracle row for PATCH /identityGovernance/termsOfUse and 'Update-MgIdentityGovernanceTermOfUse' unshipped" +"PATCH","/identityGovernance/termsOfUse/agreementAcceptances/{param}","rename","IdentityGovernanceTermsOfUseAgreementAcceptance","Update-MgIdentityGovernanceTermOfUseAgreementAcceptance","Update-MgIdentityGovernanceTermsOfUseAgreementAcceptance" +"PATCH","/identityGovernance/termsOfUse/agreements/{param}","rename","IdentityGovernanceTermsOfUseAgreement","Update-MgIdentityGovernanceTermOfUseAgreement","Update-MgIdentityGovernanceTermsOfUseAgreement" +"PATCH","/identityGovernance/termsOfUse/agreements/{param}/file","rename","IdentityGovernanceTermsOfUseAgreementFile","Update-MgIdentityGovernanceTermOfUseAgreementFile","Update-MgIdentityGovernanceTermsOfUseAgreementFile" +"PATCH","/identityGovernance/termsOfUse/agreements/{param}/file/localizations/{param}","rename","IdentityGovernanceTermsOfUseAgreementFileLocalization","Update-MgIdentityGovernanceTermOfUseAgreementFileLocalization","Update-MgIdentityGovernanceTermsOfUseAgreementFileLocalization" +"PATCH","/identityGovernance/termsOfUse/agreements/{param}/file/localizations/{param}/versions/{param}","rename","IdentityGovernanceTermsOfUseAgreementFileLocalizationVersion","Update-MgIdentityGovernanceTermOfUseAgreementFileLocalizationVersion","Update-MgIdentityGovernanceTermsOfUseAgreementFileLocalizationVersion" +"PATCH","/identityGovernance/termsOfUse/agreements/{param}/files/{param}/versions/{param}","rename","IdentityGovernanceTermsOfUseAgreementFileVersion","Update-MgIdentityGovernanceTermOfUseAgreementFileVersion","Update-MgIdentityGovernanceTermsOfUseAgreementFileVersion" +"PATCH","/identityProtection","suppress",,"Update-MgIdentityProtection","no oracle row for PATCH /identityProtection and 'Update-MgIdentityProtection' unshipped" +"PATCH","/identityProtection/riskDetections/{param}","rename","RiskDetection","Update-MgIdentityProtectionRiskDetection","Update-MgRiskDetection" +"PATCH","/identityProtection/riskyServicePrincipals/{param}","rename","RiskyServicePrincipal","Update-MgIdentityProtectionRiskyServicePrincipal","Update-MgRiskyServicePrincipal" +"PATCH","/identityProtection/riskyServicePrincipals/{param}/history/{param}","rename","RiskyServicePrincipalHistory","Update-MgIdentityProtectionRiskyServicePrincipalHistory","Update-MgRiskyServicePrincipalHistory" +"PATCH","/identityProtection/riskyUsers/{param}","rename","RiskyUser","Update-MgIdentityProtectionRiskyUser","Update-MgRiskyUser" +"PATCH","/identityProtection/riskyUsers/{param}/history/{param}","rename","RiskyUserHistory","Update-MgIdentityProtectionRiskyUserHistory","Update-MgRiskyUserHistory" +"PATCH","/identityProtection/servicePrincipalRiskDetections/{param}","rename","ServicePrincipalRiskDetection","Update-MgIdentityProtectionServicePrincipalRiskDetection","Update-MgServicePrincipalRiskDetection" +"PATCH","/informationProtection","keep",,"Update-MgInformationProtection","Update-MgInformationProtection" +"PATCH","/informationProtection/threatAssessmentRequests/{param}","keep",,"Update-MgInformationProtectionThreatAssessmentRequest","Update-MgInformationProtectionThreatAssessmentRequest" +"PATCH","/informationProtection/threatAssessmentRequests/{param}/results/{param}","keep",,"Update-MgInformationProtectionThreatAssessmentRequestResult","Update-MgInformationProtectionThreatAssessmentRequestResult" +"PATCH","/invitations/invitedUser/mailboxSettings","keep",,"Update-MgInvitationInvitedUserMailboxSetting","Update-MgInvitationInvitedUserMailboxSetting" +"PATCH","/oauth2PermissionGrants/{param}","keep",,"Update-MgOauth2PermissionGrant","Update-MgOauth2PermissionGrant" +"PATCH","/organization/{param}","keep",,"Update-MgOrganization","Update-MgOrganization" +"PATCH","/organization/{param}/branding","keep",,"Update-MgOrganizationBranding","Update-MgOrganizationBranding" +"PATCH","/organization/{param}/branding/localizations/{param}","keep",,"Update-MgOrganizationBrandingLocalization","Update-MgOrganizationBrandingLocalization" +"PATCH","/organization/{param}/extensions/{param}","keep",,"Update-MgOrganizationExtension","Update-MgOrganizationExtension" +"PATCH","/places/{param}","keep",,"Update-MgPlace","Update-MgPlace" +"PATCH","/places/{param}/checkIns/{param}","keep",,"Update-MgPlaceCheckIn","deliberate correction; oracle ships Update-MgPlaceCheck" +"PATCH","/planner","keep",,"Update-MgPlanner","Update-MgPlanner" +"PATCH","/planner/buckets/{param}","keep",,"Update-MgPlannerBucket","Update-MgPlannerBucket" +"PATCH","/planner/buckets/{param}/tasks/{param}","suppress",,"Update-MgPlannerBucketTask","no oracle row for PATCH /planner/buckets/{param}/tasks/{param} and 'Update-MgPlannerBucketTask' unshipped" +"PATCH","/planner/buckets/{param}/tasks/{param}/assignedToTaskBoardFormat","suppress",,"Update-MgPlannerBucketTaskAssignedToTaskBoardFormat","no oracle row for PATCH /planner/buckets/{param}/tasks/{param}/assignedToTaskBoardFormat and 'Update-MgPlannerBucketTaskAssignedToTaskBoardFormat' unshipped" +"PATCH","/planner/buckets/{param}/tasks/{param}/bucketTaskBoardFormat","suppress",,"Update-MgPlannerBucketTaskBucketTaskBoardFormat","no oracle row for PATCH /planner/buckets/{param}/tasks/{param}/bucketTaskBoardFormat and 'Update-MgPlannerBucketTaskBucketTaskBoardFormat' unshipped" +"PATCH","/planner/buckets/{param}/tasks/{param}/details","suppress",,"Update-MgPlannerBucketTaskDetail","no oracle row for PATCH /planner/buckets/{param}/tasks/{param}/details and 'Update-MgPlannerBucketTaskDetail' unshipped" +"PATCH","/planner/buckets/{param}/tasks/{param}/progressTaskBoardFormat","suppress",,"Update-MgPlannerBucketTaskProgressTaskBoardFormat","no oracle row for PATCH /planner/buckets/{param}/tasks/{param}/progressTaskBoardFormat and 'Update-MgPlannerBucketTaskProgressTaskBoardFormat' unshipped" +"PATCH","/planner/plans/{param}","keep",,"Update-MgPlannerPlan","Update-MgPlannerPlan" +"PATCH","/planner/plans/{param}/buckets/{param}","suppress",,"Update-MgPlannerPlanBucket","no oracle row for PATCH /planner/plans/{param}/buckets/{param} and 'Update-MgPlannerPlanBucket' unshipped" +"PATCH","/planner/plans/{param}/buckets/{param}/tasks/{param}","suppress",,"Update-MgPlannerPlanBucketTask","no oracle row for PATCH /planner/plans/{param}/buckets/{param}/tasks/{param} and 'Update-MgPlannerPlanBucketTask' unshipped" +"PATCH","/planner/plans/{param}/buckets/{param}/tasks/{param}/assignedToTaskBoardFormat","suppress",,"Update-MgPlannerPlanBucketTaskAssignedToTaskBoardFormat","no oracle row for PATCH /planner/plans/{param}/buckets/{param}/tasks/{param}/assignedToTaskBoardFormat and 'Update-MgPlannerPlanBucketTaskAssignedToTaskBoardFormat' unshipped" +"PATCH","/planner/plans/{param}/buckets/{param}/tasks/{param}/bucketTaskBoardFormat","suppress",,"Update-MgPlannerPlanBucketTaskBucketTaskBoardFormat","no oracle row for PATCH /planner/plans/{param}/buckets/{param}/tasks/{param}/bucketTaskBoardFormat and 'Update-MgPlannerPlanBucketTaskBucketTaskBoardFormat' unshipped" +"PATCH","/planner/plans/{param}/buckets/{param}/tasks/{param}/details","suppress",,"Update-MgPlannerPlanBucketTaskDetail","no oracle row for PATCH /planner/plans/{param}/buckets/{param}/tasks/{param}/details and 'Update-MgPlannerPlanBucketTaskDetail' unshipped" +"PATCH","/planner/plans/{param}/buckets/{param}/tasks/{param}/progressTaskBoardFormat","suppress",,"Update-MgPlannerPlanBucketTaskProgressTaskBoardFormat","no oracle row for PATCH /planner/plans/{param}/buckets/{param}/tasks/{param}/progressTaskBoardFormat and 'Update-MgPlannerPlanBucketTaskProgressTaskBoardFormat' unshipped" +"PATCH","/planner/plans/{param}/details","keep",,"Update-MgPlannerPlanDetail","Update-MgPlannerPlanDetail" +"PATCH","/planner/plans/{param}/tasks/{param}","suppress",,"Update-MgPlannerPlanTask","no oracle row for PATCH /planner/plans/{param}/tasks/{param} and 'Update-MgPlannerPlanTask' unshipped" +"PATCH","/planner/plans/{param}/tasks/{param}/assignedToTaskBoardFormat","suppress",,"Update-MgPlannerPlanTaskAssignedToTaskBoardFormat","no oracle row for PATCH /planner/plans/{param}/tasks/{param}/assignedToTaskBoardFormat and 'Update-MgPlannerPlanTaskAssignedToTaskBoardFormat' unshipped" +"PATCH","/planner/plans/{param}/tasks/{param}/bucketTaskBoardFormat","suppress",,"Update-MgPlannerPlanTaskBucketTaskBoardFormat","no oracle row for PATCH /planner/plans/{param}/tasks/{param}/bucketTaskBoardFormat and 'Update-MgPlannerPlanTaskBucketTaskBoardFormat' unshipped" +"PATCH","/planner/plans/{param}/tasks/{param}/details","suppress",,"Update-MgPlannerPlanTaskDetail","no oracle row for PATCH /planner/plans/{param}/tasks/{param}/details and 'Update-MgPlannerPlanTaskDetail' unshipped" +"PATCH","/planner/plans/{param}/tasks/{param}/progressTaskBoardFormat","suppress",,"Update-MgPlannerPlanTaskProgressTaskBoardFormat","no oracle row for PATCH /planner/plans/{param}/tasks/{param}/progressTaskBoardFormat and 'Update-MgPlannerPlanTaskProgressTaskBoardFormat' unshipped" +"PATCH","/planner/tasks/{param}","keep",,"Update-MgPlannerTask","Update-MgPlannerTask" +"PATCH","/planner/tasks/{param}/assignedToTaskBoardFormat","keep",,"Update-MgPlannerTaskAssignedToTaskBoardFormat","Update-MgPlannerTaskAssignedToTaskBoardFormat" +"PATCH","/planner/tasks/{param}/bucketTaskBoardFormat","keep",,"Update-MgPlannerTaskBucketTaskBoardFormat","Update-MgPlannerTaskBucketTaskBoardFormat" +"PATCH","/planner/tasks/{param}/details","keep",,"Update-MgPlannerTaskDetail","Update-MgPlannerTaskDetail" +"PATCH","/planner/tasks/{param}/progressTaskBoardFormat","keep",,"Update-MgPlannerTaskProgressTaskBoardFormat","Update-MgPlannerTaskProgressTaskBoardFormat" +"PATCH","/policies","suppress",,"Update-MgPolicy","no oracle row for PATCH /policies and 'Update-MgPolicy' unshipped" +"PATCH","/policies/activityBasedTimeoutPolicies/{param}","keep",,"Update-MgPolicyActivityBasedTimeoutPolicy","Update-MgPolicyActivityBasedTimeoutPolicy" +"PATCH","/policies/adminConsentRequestPolicy","keep",,"Update-MgPolicyAdminConsentRequestPolicy","Update-MgPolicyAdminConsentRequestPolicy" +"PATCH","/policies/appManagementPolicies/{param}","keep",,"Update-MgPolicyAppManagementPolicy","Update-MgPolicyAppManagementPolicy" +"PATCH","/policies/authenticationFlowsPolicy","keep",,"Update-MgPolicyAuthenticationFlowPolicy","Update-MgPolicyAuthenticationFlowPolicy" +"PATCH","/policies/authenticationMethodsPolicy","keep",,"Update-MgPolicyAuthenticationMethodPolicy","Update-MgPolicyAuthenticationMethodPolicy" +"PATCH","/policies/authenticationMethodsPolicy/authenticationMethodConfigurations/{param}","keep",,"Update-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration","Update-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration" +"PATCH","/policies/authenticationStrengthPolicies/{param}","keep",,"Update-MgPolicyAuthenticationStrengthPolicy","Update-MgPolicyAuthenticationStrengthPolicy" +"PATCH","/policies/authenticationStrengthPolicies/{param}/combinationConfigurations/{param}","keep",,"Update-MgPolicyAuthenticationStrengthPolicyCombinationConfiguration","Update-MgPolicyAuthenticationStrengthPolicyCombinationConfiguration" +"PATCH","/policies/authorizationPolicy","keep",,"Update-MgPolicyAuthorizationPolicy","Update-MgPolicyAuthorizationPolicy" +"PATCH","/policies/claimsMappingPolicies/{param}","keep",,"Update-MgPolicyClaimMappingPolicy","Update-MgPolicyClaimMappingPolicy" +"PATCH","/policies/conditionalAccessPolicies/{param}","suppress",,"Update-MgPolicyConditionalAccessPolicy","no oracle row for PATCH /policies/conditionalAccessPolicies/{param} and 'Update-MgPolicyConditionalAccessPolicy' unshipped" +"PATCH","/policies/crossTenantAccessPolicy","keep",,"Update-MgPolicyCrossTenantAccessPolicy","Update-MgPolicyCrossTenantAccessPolicy" +"PATCH","/policies/crossTenantAccessPolicy/default","keep",,"Update-MgPolicyCrossTenantAccessPolicyDefault","Update-MgPolicyCrossTenantAccessPolicyDefault" +"PATCH","/policies/crossTenantAccessPolicy/partners/{param}","keep",,"Update-MgPolicyCrossTenantAccessPolicyPartner","Update-MgPolicyCrossTenantAccessPolicyPartner" +"PATCH","/policies/crossTenantAccessPolicy/templates","keep",,"Update-MgPolicyCrossTenantAccessPolicyTemplate","Update-MgPolicyCrossTenantAccessPolicyTemplate" +"PATCH","/policies/crossTenantAccessPolicy/templates/multiTenantOrganizationIdentitySynchronization","keep",,"Update-MgPolicyCrossTenantAccessPolicyTemplateMultiTenantOrganizationIdentitySynchronization","Update-MgPolicyCrossTenantAccessPolicyTemplateMultiTenantOrganizationIdentitySynchronization" +"PATCH","/policies/crossTenantAccessPolicy/templates/multiTenantOrganizationPartnerConfiguration","keep",,"Update-MgPolicyCrossTenantAccessPolicyTemplateMultiTenantOrganizationPartnerConfiguration","Update-MgPolicyCrossTenantAccessPolicyTemplateMultiTenantOrganizationPartnerConfiguration" +"PATCH","/policies/defaultAppManagementPolicy","keep",,"Update-MgPolicyDefaultAppManagementPolicy","Update-MgPolicyDefaultAppManagementPolicy" +"PATCH","/policies/featureRolloutPolicies/{param}","keep",,"Update-MgPolicyFeatureRolloutPolicy","Update-MgPolicyFeatureRolloutPolicy" +"PATCH","/policies/federatedTokenValidationPolicy","keep",,"Update-MgPolicyFederatedTokenValidationPolicy","Update-MgPolicyFederatedTokenValidationPolicy" +"PATCH","/policies/homeRealmDiscoveryPolicies/{param}","keep",,"Update-MgPolicyHomeRealmDiscoveryPolicy","Update-MgPolicyHomeRealmDiscoveryPolicy" +"PATCH","/policies/identitySecurityDefaultsEnforcementPolicy","keep",,"Update-MgPolicyIdentitySecurityDefaultEnforcementPolicy","Update-MgPolicyIdentitySecurityDefaultEnforcementPolicy" +"PATCH","/policies/ownerlessGroupPolicy","keep",,"Update-MgPolicyOwnerlessGroupPolicy","Update-MgPolicyOwnerlessGroupPolicy" +"PATCH","/policies/permissionGrantPolicies/{param}","keep",,"Update-MgPolicyPermissionGrantPolicy","Update-MgPolicyPermissionGrantPolicy" +"PATCH","/policies/permissionGrantPolicies/{param}/excludes/{param}","keep",,"Update-MgPolicyPermissionGrantPolicyExclude","Update-MgPolicyPermissionGrantPolicyExclude" +"PATCH","/policies/permissionGrantPolicies/{param}/includes/{param}","keep",,"Update-MgPolicyPermissionGrantPolicyInclude","Update-MgPolicyPermissionGrantPolicyInclude" +"PATCH","/policies/roleManagementPolicies/{param}","keep",,"Update-MgPolicyRoleManagementPolicy","Update-MgPolicyRoleManagementPolicy" +"PATCH","/policies/roleManagementPolicies/{param}/effectiveRules/{param}","keep",,"Update-MgPolicyRoleManagementPolicyEffectiveRule","Update-MgPolicyRoleManagementPolicyEffectiveRule" +"PATCH","/policies/roleManagementPolicies/{param}/rules/{param}","keep",,"Update-MgPolicyRoleManagementPolicyRule","Update-MgPolicyRoleManagementPolicyRule" +"PATCH","/policies/roleManagementPolicyAssignments/{param}","keep",,"Update-MgPolicyRoleManagementPolicyAssignment","Update-MgPolicyRoleManagementPolicyAssignment" +"PATCH","/policies/tokenIssuancePolicies/{param}","keep",,"Update-MgPolicyTokenIssuancePolicy","Update-MgPolicyTokenIssuancePolicy" +"PATCH","/policies/tokenLifetimePolicies/{param}","keep",,"Update-MgPolicyTokenLifetimePolicy","Update-MgPolicyTokenLifetimePolicy" +"PATCH","/print","keep",,"Update-MgPrint","Update-MgPrint" +"PATCH","/print/connectors/{param}","keep",,"Update-MgPrintConnector","Update-MgPrintConnector" +"PATCH","/print/operations/{param}","keep",,"Update-MgPrintOperation","Update-MgPrintOperation" +"PATCH","/print/printers/{param}","rename","PrintPrinter","Update-MgPrinter","Update-MgPrintPrinter" +"PATCH","/print/printers/{param}/jobs/{param}","rename","PrintPrinterJob","Update-MgPrinterJob","Update-MgPrintPrinterJob" +"PATCH","/print/printers/{param}/jobs/{param}/documents/{param}","rename","PrintPrinterJobDocument","Update-MgPrinterJobDocument","Update-MgPrintPrinterJobDocument" +"PATCH","/print/printers/{param}/jobs/{param}/tasks/{param}","rename","PrintPrinterJobTask","Update-MgPrinterJobTask","Update-MgPrintPrinterJobTask" +"PATCH","/print/printers/{param}/taskTriggers/{param}","rename","PrintPrinterTaskTrigger","Update-MgPrinterTaskTrigger","Update-MgPrintPrinterTaskTrigger" +"PATCH","/print/services/{param}","keep",,"Update-MgPrintService","Update-MgPrintService" +"PATCH","/print/services/{param}/endpoints/{param}","keep",,"Update-MgPrintServiceEndpoint","Update-MgPrintServiceEndpoint" +"PATCH","/print/shares/{param}","keep",,"Update-MgPrintShare","Update-MgPrintShare" +"PATCH","/print/shares/{param}/allowedUsers/{param}/mailboxSettings","keep",,"Update-MgPrintShareAllowedUserMailboxSetting","Update-MgPrintShareAllowedUserMailboxSetting" +"PATCH","/print/shares/{param}/jobs/{param}","keep",,"Update-MgPrintShareJob","Update-MgPrintShareJob" +"PATCH","/print/shares/{param}/jobs/{param}/documents/{param}","keep",,"Update-MgPrintShareJobDocument","Update-MgPrintShareJobDocument" +"PATCH","/print/shares/{param}/jobs/{param}/tasks/{param}","keep",,"Update-MgPrintShareJobTask","Update-MgPrintShareJobTask" +"PATCH","/print/taskDefinitions/{param}","keep",,"Update-MgPrintTaskDefinition","Update-MgPrintTaskDefinition" +"PATCH","/print/taskDefinitions/{param}/tasks/{param}","keep",,"Update-MgPrintTaskDefinitionTask","Update-MgPrintTaskDefinitionTask" +"PATCH","/privacy/subjectRightsRequests/{param}","keep",,"Update-MgPrivacySubjectRightsRequest","Update-MgPrivacySubjectRightsRequest" +"PATCH","/privacy/subjectRightsRequests/{param}/approvers/{param}/mailboxSettings","keep",,"Update-MgPrivacySubjectRightsRequestApproverMailboxSetting","Update-MgPrivacySubjectRightsRequestApproverMailboxSetting" +"PATCH","/privacy/subjectRightsRequests/{param}/collaborators/{param}/mailboxSettings","keep",,"Update-MgPrivacySubjectRightsRequestCollaboratorMailboxSetting","Update-MgPrivacySubjectRightsRequestCollaboratorMailboxSetting" +"PATCH","/privacy/subjectRightsRequests/{param}/notes/{param}","keep",,"Update-MgPrivacySubjectRightsRequestNote","Update-MgPrivacySubjectRightsRequestNote" +"PATCH","/reports","suppress",,"Update-MgReport","no oracle row for PATCH /reports and 'Update-MgReport' unshipped" +"PATCH","/reports/authenticationMethods","suppress",,"Update-MgReportAuthenticationMethod","no oracle row for PATCH /reports/authenticationMethods and 'Update-MgReportAuthenticationMethod' unshipped" +"PATCH","/reports/authenticationMethods/userRegistrationDetails/{param}","keep",,"Update-MgReportAuthenticationMethodUserRegistrationDetail","Update-MgReportAuthenticationMethodUserRegistrationDetail" +"PATCH","/reports/dailyPrintUsageByPrinter/{param}","suppress",,"Update-MgReportDailyPrintUsageByPrinter","no oracle row for PATCH /reports/dailyPrintUsageByPrinter/{param} and 'Update-MgReportDailyPrintUsageByPrinter' unshipped" +"PATCH","/reports/dailyPrintUsageByUser/{param}","suppress",,"Update-MgReportDailyPrintUsageByUser","no oracle row for PATCH /reports/dailyPrintUsageByUser/{param} and 'Update-MgReportDailyPrintUsageByUser' unshipped" +"PATCH","/reports/monthlyPrintUsageByPrinter/{param}","suppress",,"Update-MgReportMonthlyPrintUsageByPrinter","no oracle row for PATCH /reports/monthlyPrintUsageByPrinter/{param} and 'Update-MgReportMonthlyPrintUsageByPrinter' unshipped" +"PATCH","/reports/monthlyPrintUsageByUser/{param}","suppress",,"Update-MgReportMonthlyPrintUsageByUser","no oracle row for PATCH /reports/monthlyPrintUsageByUser/{param} and 'Update-MgReportMonthlyPrintUsageByUser' unshipped" +"PATCH","/reports/partners","suppress",,"Update-MgReportPartner","no oracle row for PATCH /reports/partners and 'Update-MgReportPartner' unshipped" +"PATCH","/reports/partners/billing","keep",,"Update-MgReportPartnerBilling","Update-MgReportPartnerBilling" +"PATCH","/reports/partners/billing/manifests/{param}","keep",,"Update-MgReportPartnerBillingManifest","Update-MgReportPartnerBillingManifest" +"PATCH","/reports/partners/billing/operations/{param}","keep",,"Update-MgReportPartnerBillingOperation","Update-MgReportPartnerBillingOperation" +"PATCH","/reports/partners/billing/reconciliation","keep",,"Update-MgReportPartnerBillingReconciliation","Update-MgReportPartnerBillingReconciliation" +"PATCH","/reports/partners/billing/reconciliation/billed","keep",,"Update-MgReportPartnerBillingReconciliationBilled","Update-MgReportPartnerBillingReconciliationBilled" +"PATCH","/reports/partners/billing/reconciliation/unbilled","keep",,"Update-MgReportPartnerBillingReconciliationUnbilled","Update-MgReportPartnerBillingReconciliationUnbilled" +"PATCH","/reports/partners/billing/usage","keep",,"Update-MgReportPartnerBillingUsage","Update-MgReportPartnerBillingUsage" +"PATCH","/reports/partners/billing/usage/billed","keep",,"Update-MgReportPartnerBillingUsageBilled","Update-MgReportPartnerBillingUsageBilled" +"PATCH","/reports/partners/billing/usage/unbilled","keep",,"Update-MgReportPartnerBillingUsageUnbilled","Update-MgReportPartnerBillingUsageUnbilled" +"PATCH","/reports/security","suppress",,"Update-MgReportSecurity","no oracle row for PATCH /reports/security and 'Update-MgReportSecurity' unshipped" +"PATCH","/roleManagement","keep",,"Update-MgRoleManagement","Update-MgRoleManagement" +"PATCH","/roleManagement/directory","keep",,"Update-MgRoleManagementDirectory","Update-MgRoleManagementDirectory" +"PATCH","/roleManagement/directory/resourceNamespaces/{param}","keep",,"Update-MgRoleManagementDirectoryResourceNamespace","Update-MgRoleManagementDirectoryResourceNamespace" +"PATCH","/roleManagement/directory/resourceNamespaces/{param}/resourceActions/{param}","keep",,"Update-MgRoleManagementDirectoryResourceNamespaceResourceAction","Update-MgRoleManagementDirectoryResourceNamespaceResourceAction" +"PATCH","/roleManagement/directory/roleAssignments/{param}","keep",,"Update-MgRoleManagementDirectoryRoleAssignment","Update-MgRoleManagementDirectoryRoleAssignment" +"PATCH","/roleManagement/directory/roleAssignments/{param}/appScope","keep",,"Update-MgRoleManagementDirectoryRoleAssignmentAppScope","Update-MgRoleManagementDirectoryRoleAssignmentAppScope" +"PATCH","/roleManagement/directory/roleAssignmentScheduleInstances/{param}","keep",,"Update-MgRoleManagementDirectoryRoleAssignmentScheduleInstance","Update-MgRoleManagementDirectoryRoleAssignmentScheduleInstance" +"PATCH","/roleManagement/directory/roleAssignmentScheduleRequests/{param}","keep",,"Update-MgRoleManagementDirectoryRoleAssignmentScheduleRequest","Update-MgRoleManagementDirectoryRoleAssignmentScheduleRequest" +"PATCH","/roleManagement/directory/roleAssignmentSchedules/{param}","keep",,"Update-MgRoleManagementDirectoryRoleAssignmentSchedule","Update-MgRoleManagementDirectoryRoleAssignmentSchedule" +"PATCH","/roleManagement/directory/roleDefinitions/{param}","keep",,"Update-MgRoleManagementDirectoryRoleDefinition","Update-MgRoleManagementDirectoryRoleDefinition" +"PATCH","/roleManagement/directory/roleDefinitions/{param}/inheritsPermissionsFrom/{param}","keep",,"Update-MgRoleManagementDirectoryRoleDefinitionInheritPermissionFrom","Update-MgRoleManagementDirectoryRoleDefinitionInheritPermissionFrom" +"PATCH","/roleManagement/directory/roleEligibilityScheduleInstances/{param}","keep",,"Update-MgRoleManagementDirectoryRoleEligibilityScheduleInstance","Update-MgRoleManagementDirectoryRoleEligibilityScheduleInstance" +"PATCH","/roleManagement/directory/roleEligibilityScheduleRequests/{param}","keep",,"Update-MgRoleManagementDirectoryRoleEligibilityScheduleRequest","Update-MgRoleManagementDirectoryRoleEligibilityScheduleRequest" +"PATCH","/roleManagement/directory/roleEligibilitySchedules/{param}","keep",,"Update-MgRoleManagementDirectoryRoleEligibilitySchedule","Update-MgRoleManagementDirectoryRoleEligibilitySchedule" +"PATCH","/roleManagement/entitlementManagement","keep",,"Update-MgRoleManagementEntitlementManagement","Update-MgRoleManagementEntitlementManagement" +"PATCH","/roleManagement/entitlementManagement/resourceNamespaces/{param}","keep",,"Update-MgRoleManagementEntitlementManagementResourceNamespace","Update-MgRoleManagementEntitlementManagementResourceNamespace" +"PATCH","/roleManagement/entitlementManagement/resourceNamespaces/{param}/resourceActions/{param}","keep",,"Update-MgRoleManagementEntitlementManagementResourceNamespaceResourceAction","Update-MgRoleManagementEntitlementManagementResourceNamespaceResourceAction" +"PATCH","/roleManagement/entitlementManagement/roleAssignments/{param}","keep",,"Update-MgRoleManagementEntitlementManagementRoleAssignment","Update-MgRoleManagementEntitlementManagementRoleAssignment" +"PATCH","/roleManagement/entitlementManagement/roleAssignments/{param}/appScope","keep",,"Update-MgRoleManagementEntitlementManagementRoleAssignmentAppScope","Update-MgRoleManagementEntitlementManagementRoleAssignmentAppScope" +"PATCH","/roleManagement/entitlementManagement/roleAssignmentScheduleInstances/{param}","keep",,"Update-MgRoleManagementEntitlementManagementRoleAssignmentScheduleInstance","Update-MgRoleManagementEntitlementManagementRoleAssignmentScheduleInstance" +"PATCH","/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{param}","keep",,"Update-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequest","Update-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequest" +"PATCH","/roleManagement/entitlementManagement/roleAssignmentSchedules/{param}","keep",,"Update-MgRoleManagementEntitlementManagementRoleAssignmentSchedule","Update-MgRoleManagementEntitlementManagementRoleAssignmentSchedule" +"PATCH","/roleManagement/entitlementManagement/roleDefinitions/{param}","keep",,"Update-MgRoleManagementEntitlementManagementRoleDefinition","Update-MgRoleManagementEntitlementManagementRoleDefinition" +"PATCH","/roleManagement/entitlementManagement/roleDefinitions/{param}/inheritsPermissionsFrom/{param}","keep",,"Update-MgRoleManagementEntitlementManagementRoleDefinitionInheritPermissionFrom","Update-MgRoleManagementEntitlementManagementRoleDefinitionInheritPermissionFrom" +"PATCH","/roleManagement/entitlementManagement/roleEligibilityScheduleInstances/{param}","keep",,"Update-MgRoleManagementEntitlementManagementRoleEligibilityScheduleInstance","Update-MgRoleManagementEntitlementManagementRoleEligibilityScheduleInstance" +"PATCH","/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{param}","keep",,"Update-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequest","Update-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequest" +"PATCH","/roleManagement/entitlementManagement/roleEligibilitySchedules/{param}","keep",,"Update-MgRoleManagementEntitlementManagementRoleEligibilitySchedule","Update-MgRoleManagementEntitlementManagementRoleEligibilitySchedule" +"PATCH","/schemaExtensions/{param}","keep",,"Update-MgSchemaExtension","Update-MgSchemaExtension" +"PATCH","/search","keep",,"Update-MgSearch","Update-MgSearchEntity" +"PATCH","/search/acronyms/{param}","keep",,"Update-MgSearchAcronym","Update-MgSearchAcronym" +"PATCH","/search/bookmarks/{param}","keep",,"Update-MgSearchBookmark","Update-MgSearchBookmark" +"PATCH","/search/qnas/{param}","keep",,"Update-MgSearchQna","Update-MgSearchQna" +"PATCH","/security","suppress",,"Update-MgSecurity","no oracle row for PATCH /security and 'Update-MgSecurity' unshipped" +"PATCH","/security/alerts/{param}","keep",,"Update-MgSecurityAlert","Update-MgSecurityAlert" +"PATCH","/security/attackSimulation/endUserNotifications/{param}","keep",,"Update-MgSecurityAttackSimulationEndUserNotification","Update-MgSecurityAttackSimulationEndUserNotification" +"PATCH","/security/attackSimulation/endUserNotifications/{param}/details/{param}","keep",,"Update-MgSecurityAttackSimulationEndUserNotificationDetail","Update-MgSecurityAttackSimulationEndUserNotificationDetail" +"PATCH","/security/attackSimulation/landingPages/{param}","keep",,"Update-MgSecurityAttackSimulationLandingPage","Update-MgSecurityAttackSimulationLandingPage" +"PATCH","/security/attackSimulation/landingPages/{param}/details/{param}","keep",,"Update-MgSecurityAttackSimulationLandingPageDetail","Update-MgSecurityAttackSimulationLandingPageDetail" +"PATCH","/security/attackSimulation/loginPages/{param}","keep",,"Update-MgSecurityAttackSimulationLoginPage","Update-MgSecurityAttackSimulationLoginPage" +"PATCH","/security/attackSimulation/operations/{param}","keep",,"Update-MgSecurityAttackSimulationOperation","Update-MgSecurityAttackSimulationOperation" +"PATCH","/security/attackSimulation/payloads/{param}","keep",,"Update-MgSecurityAttackSimulationPayload","Update-MgSecurityAttackSimulationPayload" +"PATCH","/security/attackSimulation/simulationAutomations/{param}","keep",,"Update-MgSecurityAttackSimulationAutomation","Update-MgSecurityAttackSimulationAutomation" +"PATCH","/security/attackSimulation/simulationAutomations/{param}/runs/{param}","keep",,"Update-MgSecurityAttackSimulationAutomationRun","Update-MgSecurityAttackSimulationAutomationRun" +"PATCH","/security/attackSimulation/simulations/{param}","suppress",,"Update-MgSecurityAttackSimulation","no oracle row for PATCH /security/attackSimulation/simulations/{param} and 'Update-MgSecurityAttackSimulation' unshipped" +"PATCH","/security/attackSimulation/trainings/{param}","keep",,"Update-MgSecurityAttackSimulationTraining","Update-MgSecurityAttackSimulationTraining" +"PATCH","/security/attackSimulation/trainings/{param}/languageDetails/{param}","keep",,"Update-MgSecurityAttackSimulationTrainingLanguageDetail","Update-MgSecurityAttackSimulationTrainingLanguageDetail" +"PATCH","/security/auditLog","keep",,"Update-MgSecurityAuditLog","Update-MgSecurityAuditLog" +"PATCH","/security/cases","keep",,"Update-MgSecurityCase","Update-MgSecurityCase" +"PATCH","/security/cases/ediscoveryCases/{param}","keep",,"Update-MgSecurityCaseEdiscoveryCase","Update-MgSecurityCaseEdiscoveryCase" +"PATCH","/security/cases/ediscoveryCases/{param}/caseMembers/{param}","keep",,"Update-MgSecurityCaseEdiscoveryCaseMember","Update-MgSecurityCaseEdiscoveryCaseMember" +"PATCH","/security/cases/ediscoveryCases/{param}/custodians/{param}","keep",,"Update-MgSecurityCaseEdiscoveryCaseCustodian","Update-MgSecurityCaseEdiscoveryCaseCustodian" +"PATCH","/security/cases/ediscoveryCases/{param}/custodians/{param}/siteSources/{param}","keep",,"Update-MgSecurityCaseEdiscoveryCaseCustodianSiteSource","Update-MgSecurityCaseEdiscoveryCaseCustodianSiteSource" +"PATCH","/security/cases/ediscoveryCases/{param}/custodians/{param}/unifiedGroupSources/{param}","keep",,"Update-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource","Update-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource" +"PATCH","/security/cases/ediscoveryCases/{param}/custodians/{param}/userSources/{param}","keep",,"Update-MgSecurityCaseEdiscoveryCaseCustodianUserSource","Update-MgSecurityCaseEdiscoveryCaseCustodianUserSource" +"PATCH","/security/cases/ediscoveryCases/{param}/noncustodialDataSources/{param}","keep",,"Update-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource","Update-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource" +"PATCH","/security/cases/ediscoveryCases/{param}/noncustodialDataSources/{param}/dataSource","suppress",,"Update-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceDataSource","no oracle row for PATCH /security/cases/ediscoveryCases/{param}/noncustodialDataSources/{param}/dataSource and 'Update-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceDataSource' unshipped" +"PATCH","/security/cases/ediscoveryCases/{param}/operations/{param}","keep",,"Update-MgSecurityCaseEdiscoveryCaseOperation","Update-MgSecurityCaseEdiscoveryCaseOperation" +"PATCH","/security/cases/ediscoveryCases/{param}/reviewSets/{param}","keep",,"Update-MgSecurityCaseEdiscoveryCaseReviewSet","Update-MgSecurityCaseEdiscoveryCaseReviewSet" +"PATCH","/security/cases/ediscoveryCases/{param}/reviewSets/{param}/queries/{param}","keep",,"Update-MgSecurityCaseEdiscoveryCaseReviewSetQuery","Update-MgSecurityCaseEdiscoveryCaseReviewSetQuery" +"PATCH","/security/cases/ediscoveryCases/{param}/searches/{param}","keep",,"Update-MgSecurityCaseEdiscoveryCaseSearch","Update-MgSecurityCaseEdiscoveryCaseSearch" +"PATCH","/security/cases/ediscoveryCases/{param}/searches/{param}/additionalSources/{param}","keep",,"Update-MgSecurityCaseEdiscoveryCaseSearchAdditionalSource","Update-MgSecurityCaseEdiscoveryCaseSearchAdditionalSource" +"PATCH","/security/cases/ediscoveryCases/{param}/settings","keep",,"Update-MgSecurityCaseEdiscoveryCaseSetting","Update-MgSecurityCaseEdiscoveryCaseSetting" +"PATCH","/security/cases/ediscoveryCases/{param}/tags/{param}","keep",,"Update-MgSecurityCaseEdiscoveryCaseTag","Update-MgSecurityCaseEdiscoveryCaseTag" +"PATCH","/security/collaboration","keep",,"Update-MgSecurityCollaboration","Update-MgSecurityCollaboration" +"PATCH","/security/collaboration/analyzedEmails/{param}","keep",,"Update-MgSecurityCollaborationAnalyzedEmail","Update-MgSecurityCollaborationAnalyzedEmail" +"PATCH","/security/dataSecurityAndGovernance","keep",,"Update-MgSecurityDataSecurityAndGovernance","Update-MgSecurityDataSecurityAndGovernance" +"PATCH","/security/dataSecurityAndGovernance/protectionScopes","keep",,"Update-MgSecurityDataSecurityAndGovernanceProtectionScope","Update-MgSecurityDataSecurityAndGovernanceProtectionScope" +"PATCH","/security/dataSecurityAndGovernance/sensitivityLabels/{param}","keep",,"Update-MgSecurityDataSecurityAndGovernanceSensitivityLabel","Update-MgSecurityDataSecurityAndGovernanceSensitivityLabel" +"PATCH","/security/dataSecurityAndGovernance/sensitivityLabels/{param}/sublabels/{param}","keep",,"Update-MgSecurityDataSecurityAndGovernanceSensitivityLabelSublabel","Update-MgSecurityDataSecurityAndGovernanceSensitivityLabelSublabel" +"PATCH","/security/identities","keep",,"Update-MgSecurityIdentity","Update-MgSecurityIdentity" +"PATCH","/security/identities/healthIssues/{param}","keep",,"Update-MgSecurityIdentityHealthIssue","Update-MgSecurityIdentityHealthIssue" +"PATCH","/security/identities/identityAccounts/{param}","keep",,"Update-MgSecurityIdentityAccount","Update-MgSecurityIdentityAccount" +"PATCH","/security/identities/sensorCandidateActivationConfiguration","keep",,"Update-MgSecurityIdentitySensorCandidateActivationConfiguration","Update-MgSecurityIdentitySensorCandidateActivationConfiguration" +"PATCH","/security/identities/sensorCandidates/{param}","keep",,"Update-MgSecurityIdentitySensorCandidate","Update-MgSecurityIdentitySensorCandidate" +"PATCH","/security/identities/sensors/{param}","keep",,"Update-MgSecurityIdentitySensor","Update-MgSecurityIdentitySensor" +"PATCH","/security/identities/settings","keep",,"Update-MgSecurityIdentitySetting","Update-MgSecurityIdentitySetting" +"PATCH","/security/identities/settings/autoAuditingConfiguration","keep",,"Update-MgSecurityIdentitySettingAutoAuditingConfiguration","Update-MgSecurityIdentitySettingAutoAuditingConfiguration" +"PATCH","/security/incidents/{param}","keep",,"Update-MgSecurityIncident","Update-MgSecurityIncident" +"PATCH","/security/labels","keep",,"Update-MgSecurityLabel","Update-MgSecurityLabel" +"PATCH","/security/labels/authorities/{param}","keep",,"Update-MgSecurityLabelAuthority","Update-MgSecurityLabelAuthority" +"PATCH","/security/labels/categories/{param}","keep",,"Update-MgSecurityLabelCategory","Update-MgSecurityLabelCategory" +"PATCH","/security/labels/categories/{param}/subcategories/{param}","keep",,"Update-MgSecurityLabelCategorySubcategory","Update-MgSecurityLabelCategorySubcategory" +"PATCH","/security/labels/citations/{param}","keep",,"Update-MgSecurityLabelCitation","Update-MgSecurityLabelCitation" +"PATCH","/security/labels/departments/{param}","keep",,"Update-MgSecurityLabelDepartment","Update-MgSecurityLabelDepartment" +"PATCH","/security/labels/filePlanReferences/{param}","keep",,"Update-MgSecurityLabelFilePlanReference","Update-MgSecurityLabelFilePlanReference" +"PATCH","/security/labels/retentionLabels/{param}","keep",,"Update-MgSecurityLabelRetentionLabel","Update-MgSecurityLabelRetentionLabel" +"PATCH","/security/labels/retentionLabels/{param}/descriptors","keep",,"Update-MgSecurityLabelRetentionLabelDescriptor","Update-MgSecurityLabelRetentionLabelDescriptor" +"PATCH","/security/labels/retentionLabels/{param}/dispositionReviewStages/{param}","keep",,"Update-MgSecurityLabelRetentionLabelDispositionReviewStage","Update-MgSecurityLabelRetentionLabelDispositionReviewStage" +"PATCH","/security/secureScoreControlProfiles/{param}","keep",,"Update-MgSecuritySecureScoreControlProfile","Update-MgSecuritySecureScoreControlProfile" +"PATCH","/security/secureScores/{param}","keep",,"Update-MgSecuritySecureScore","Update-MgSecuritySecureScore" +"PATCH","/security/subjectRightsRequests/{param}","keep",,"Update-MgSecuritySubjectRightsRequest","Update-MgSecuritySubjectRightsRequest" +"PATCH","/security/subjectRightsRequests/{param}/approvers/{param}/mailboxSettings","keep",,"Update-MgSecuritySubjectRightsRequestApproverMailboxSetting","Update-MgSecuritySubjectRightsRequestApproverMailboxSetting" +"PATCH","/security/subjectRightsRequests/{param}/collaborators/{param}/mailboxSettings","keep",,"Update-MgSecuritySubjectRightsRequestCollaboratorMailboxSetting","Update-MgSecuritySubjectRightsRequestCollaboratorMailboxSetting" +"PATCH","/security/subjectRightsRequests/{param}/notes/{param}","keep",,"Update-MgSecuritySubjectRightsRequestNote","Update-MgSecuritySubjectRightsRequestNote" +"PATCH","/security/threatIntelligence","keep",,"Update-MgSecurityThreatIntelligence","Update-MgSecurityThreatIntelligence" +"PATCH","/security/threatIntelligence/articleIndicators/{param}","keep",,"Update-MgSecurityThreatIntelligenceArticleIndicator","Update-MgSecurityThreatIntelligenceArticleIndicator" +"PATCH","/security/threatIntelligence/articles/{param}","keep",,"Update-MgSecurityThreatIntelligenceArticle","Update-MgSecurityThreatIntelligenceArticle" +"PATCH","/security/threatIntelligence/hostComponents/{param}","keep",,"Update-MgSecurityThreatIntelligenceHostComponent","Update-MgSecurityThreatIntelligenceHostComponent" +"PATCH","/security/threatIntelligence/hostCookies/{param}","keep",,"Update-MgSecurityThreatIntelligenceHostCookie","Update-MgSecurityThreatIntelligenceHostCookie" +"PATCH","/security/threatIntelligence/hostPairs/{param}","keep",,"Update-MgSecurityThreatIntelligenceHostPair","Update-MgSecurityThreatIntelligenceHostPair" +"PATCH","/security/threatIntelligence/hostPorts/{param}","keep",,"Update-MgSecurityThreatIntelligenceHostPort","Update-MgSecurityThreatIntelligenceHostPort" +"PATCH","/security/threatIntelligence/hosts/{param}","keep",,"Update-MgSecurityThreatIntelligenceHost","Update-MgSecurityThreatIntelligenceHost" +"PATCH","/security/threatIntelligence/hosts/{param}/reputation","keep",,"Update-MgSecurityThreatIntelligenceHostReputation","Update-MgSecurityThreatIntelligenceHostReputation" +"PATCH","/security/threatIntelligence/hostSslCertificates/{param}","keep",,"Update-MgSecurityThreatIntelligenceHostSslCertificate","Update-MgSecurityThreatIntelligenceHostSslCertificate" +"PATCH","/security/threatIntelligence/hostTrackers/{param}","keep",,"Update-MgSecurityThreatIntelligenceHostTracker","Update-MgSecurityThreatIntelligenceHostTracker" +"PATCH","/security/threatIntelligence/intelligenceProfileIndicators/{param}","keep",,"Update-MgSecurityThreatIntelligenceProfileIndicator","Update-MgSecurityThreatIntelligenceProfileIndicator" +"PATCH","/security/threatIntelligence/intelProfiles/{param}","keep",,"Update-MgSecurityThreatIntelligenceIntelProfile","Update-MgSecurityThreatIntelligenceIntelProfile" +"PATCH","/security/threatIntelligence/passiveDnsRecords/{param}","keep",,"Update-MgSecurityThreatIntelligencePassiveDnsRecord","Update-MgSecurityThreatIntelligencePassiveDnsRecord" +"PATCH","/security/threatIntelligence/sslCertificates/{param}","keep",,"Update-MgSecurityThreatIntelligenceSslCertificate","Update-MgSecurityThreatIntelligenceSslCertificate" +"PATCH","/security/threatIntelligence/subdomains/{param}","keep",,"Update-MgSecurityThreatIntelligenceSubdomain","Update-MgSecurityThreatIntelligenceSubdomain" +"PATCH","/security/threatIntelligence/vulnerabilities/{param}","keep",,"Update-MgSecurityThreatIntelligenceVulnerability","Update-MgSecurityThreatIntelligenceVulnerability" +"PATCH","/security/threatIntelligence/vulnerabilities/{param}/components/{param}","keep",,"Update-MgSecurityThreatIntelligenceVulnerabilityComponent","Update-MgSecurityThreatIntelligenceVulnerabilityComponent" +"PATCH","/security/threatIntelligence/whoisHistoryRecords/{param}","keep",,"Update-MgSecurityThreatIntelligenceWhoisHistoryRecord","Update-MgSecurityThreatIntelligenceWhoisHistoryRecord" +"PATCH","/security/threatIntelligence/whoisRecords/{param}","keep",,"Update-MgSecurityThreatIntelligenceWhoisRecord","Update-MgSecurityThreatIntelligenceWhoisRecord" +"PATCH","/security/triggers","keep",,"Update-MgSecurityTrigger","Update-MgSecurityTrigger" +"PATCH","/security/triggers/retentionEvents/{param}","keep",,"Update-MgSecurityTriggerRetentionEvent","Update-MgSecurityTriggerRetentionEvent" +"PATCH","/security/triggerTypes","keep",,"Update-MgSecurityTriggerType","Update-MgSecurityTriggerType" +"PATCH","/security/triggerTypes/retentionEventTypes/{param}","keep",,"Update-MgSecurityTriggerTypeRetentionEventType","Update-MgSecurityTriggerTypeRetentionEventType" +"PATCH","/servicePrincipals/{param}","keep",,"Update-MgServicePrincipal","Update-MgServicePrincipal" +"PATCH","/servicePrincipals/{param}/appRoleAssignedTo/{param}","keep",,"Update-MgServicePrincipalAppRoleAssignedTo","Update-MgServicePrincipalAppRoleAssignedTo" +"PATCH","/servicePrincipals/{param}/appRoleAssignments/{param}","keep",,"Update-MgServicePrincipalAppRoleAssignment","Update-MgServicePrincipalAppRoleAssignment" +"PATCH","/servicePrincipals/{param}/delegatedPermissionClassifications/{param}","keep",,"Update-MgServicePrincipalDelegatedPermissionClassification","Update-MgServicePrincipalDelegatedPermissionClassification" +"PATCH","/servicePrincipals/{param}/endpoints/{param}","keep",,"Update-MgServicePrincipalEndpoint","Update-MgServicePrincipalEndpoint" +"PATCH","/servicePrincipals/{param}/federatedIdentityCredentials/{param}","suppress",,"Update-MgServicePrincipalFederatedIdentityCredential","no oracle row for PATCH /servicePrincipals/{param}/federatedIdentityCredentials/{param} and 'Update-MgServicePrincipalFederatedIdentityCredential' unshipped" +"PATCH","/servicePrincipals/{param}/remoteDesktopSecurityConfiguration","keep",,"Update-MgServicePrincipalRemoteDesktopSecurityConfiguration","Update-MgServicePrincipalRemoteDesktopSecurityConfiguration" +"PATCH","/servicePrincipals/{param}/remoteDesktopSecurityConfiguration/approvedClientApps/{param}","keep",,"Update-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp","Update-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp" +"PATCH","/servicePrincipals/{param}/remoteDesktopSecurityConfiguration/targetDeviceGroups/{param}","keep",,"Update-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup","Update-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup" +"PATCH","/servicePrincipals/{param}/synchronization/jobs/{param}","keep",,"Update-MgServicePrincipalSynchronizationJob","Update-MgServicePrincipalSynchronizationJob" +"PATCH","/servicePrincipals/{param}/synchronization/jobs/{param}/bulkUpload","keep",,"Update-MgServicePrincipalSynchronizationJobBulkUpload","Update-MgServicePrincipalSynchronizationJobBulkUpload" +"PATCH","/servicePrincipals/{param}/synchronization/jobs/{param}/schema","keep",,"Update-MgServicePrincipalSynchronizationJobSchema","Update-MgServicePrincipalSynchronizationJobSchema" +"PATCH","/servicePrincipals/{param}/synchronization/jobs/{param}/schema/directories/{param}","keep",,"Update-MgServicePrincipalSynchronizationJobSchemaDirectory","Update-MgServicePrincipalSynchronizationJobSchemaDirectory" +"PATCH","/servicePrincipals/{param}/synchronization/templates/{param}","keep",,"Update-MgServicePrincipalSynchronizationTemplate","Update-MgServicePrincipalSynchronizationTemplate" +"PATCH","/servicePrincipals/{param}/synchronization/templates/{param}/schema","keep",,"Update-MgServicePrincipalSynchronizationTemplateSchema","Update-MgServicePrincipalSynchronizationTemplateSchema" +"PATCH","/servicePrincipals/{param}/synchronization/templates/{param}/schema/directories/{param}","keep",,"Update-MgServicePrincipalSynchronizationTemplateSchemaDirectory","Update-MgServicePrincipalSynchronizationTemplateSchemaDirectory" +"PATCH","/shares/{param}","keep",,"Update-MgShare","Update-MgShareSharedDriveItemSharedDriveItem" +"PATCH","/shares/{param}/createdByUser/mailboxSettings","keep",,"Update-MgShareCreatedByUserMailboxSetting","Update-MgShareCreatedByUserMailboxSetting" +"PATCH","/shares/{param}/lastModifiedByUser/mailboxSettings","keep",,"Update-MgShareLastModifiedByUserMailboxSetting","Update-MgShareLastModifiedByUserMailboxSetting" +"PATCH","/shares/{param}/list","keep",,"Update-MgShareList","Update-MgShareList" +"PATCH","/shares/{param}/list/columns/{param}","keep",,"Update-MgShareListColumn","Update-MgShareListColumn" +"PATCH","/shares/{param}/list/contentTypes/{param}","keep",,"Update-MgShareListContentType","Update-MgShareListContentType" +"PATCH","/shares/{param}/list/contentTypes/{param}/columnLinks/{param}","keep",,"Update-MgShareListContentTypeColumnLink","Update-MgShareListContentTypeColumnLink" +"PATCH","/shares/{param}/list/contentTypes/{param}/columns/{param}","keep",,"Update-MgShareListContentTypeColumn","Update-MgShareListContentTypeColumn" +"PATCH","/shares/{param}/list/createdByUser/mailboxSettings","keep",,"Update-MgShareListCreatedByUserMailboxSetting","Update-MgShareListCreatedByUserMailboxSetting" +"PATCH","/shares/{param}/list/items/{param}","defer-crosspath",,"Update-MgShareListItem","Update-MgShareListItem ships from a different uri" +"PATCH","/shares/{param}/list/items/{param}/createdByUser/mailboxSettings","keep",,"Update-MgShareListItemCreatedByUserMailboxSetting","Update-MgShareListItemCreatedByUserMailboxSetting" +"PATCH","/shares/{param}/list/items/{param}/documentSetVersions/{param}","keep",,"Update-MgShareListItemDocumentSetVersion","Update-MgShareListItemDocumentSetVersion" +"PATCH","/shares/{param}/list/items/{param}/documentSetVersions/{param}/fields","keep",,"Update-MgShareListItemDocumentSetVersionField","Update-MgShareListItemDocumentSetVersionField" +"PATCH","/shares/{param}/list/items/{param}/fields","keep",,"Update-MgShareListItemField","Update-MgShareListItemField" +"PATCH","/shares/{param}/list/items/{param}/lastModifiedByUser/mailboxSettings","keep",,"Update-MgShareListItemLastModifiedByUserMailboxSetting","Update-MgShareListItemLastModifiedByUserMailboxSetting" +"PATCH","/shares/{param}/list/items/{param}/permissions/{param}","suppress",,"Update-MgShareListItemPermission","no oracle row for PATCH /shares/{param}/list/items/{param}/permissions/{param} and 'Update-MgShareListItemPermission' unshipped" +"PATCH","/shares/{param}/list/items/{param}/versions/{param}","keep",,"Update-MgShareListItemVersion","Update-MgShareListItemVersion" +"PATCH","/shares/{param}/list/items/{param}/versions/{param}/fields","keep",,"Update-MgShareListItemVersionField","Update-MgShareListItemVersionField" +"PATCH","/shares/{param}/list/lastModifiedByUser/mailboxSettings","keep",,"Update-MgShareListLastModifiedByUserMailboxSetting","Update-MgShareListLastModifiedByUserMailboxSetting" +"PATCH","/shares/{param}/list/operations/{param}","keep",,"Update-MgShareListOperation","Update-MgShareListOperation" +"PATCH","/shares/{param}/list/permissions/{param}","suppress",,"Update-MgShareListPermission","no oracle row for PATCH /shares/{param}/list/permissions/{param} and 'Update-MgShareListPermission' unshipped" +"PATCH","/shares/{param}/list/subscriptions/{param}","keep",,"Update-MgShareListSubscription","Update-MgShareListSubscription" +"PATCH","/shares/{param}/permission","keep",,"Update-MgSharePermission","Update-MgSharePermission" +"PATCH","/sites/{param}","keep",,"Update-MgSite","Update-MgSite" +"PATCH","/sites/{param}/analytics","keep",,"Update-MgSiteAnalytic","Update-MgSiteAnalytic" +"PATCH","/sites/{param}/analytics/itemActivityStats/{param}","keep",,"Update-MgSiteAnalyticItemActivityStat","Update-MgSiteAnalyticItemActivityStat" +"PATCH","/sites/{param}/analytics/itemActivityStats/{param}/activities/{param}","keep",,"Update-MgSiteAnalyticItemActivityStatActivity","Update-MgSiteAnalyticItemActivityStatActivity" +"PATCH","/sites/{param}/columns/{param}","keep",,"Update-MgSiteColumn","Update-MgSiteColumn" +"PATCH","/sites/{param}/contentTypes/{param}","keep",,"Update-MgSiteContentType","Update-MgSiteContentType" +"PATCH","/sites/{param}/contentTypes/{param}/columnLinks/{param}","keep",,"Update-MgSiteContentTypeColumnLink","Update-MgSiteContentTypeColumnLink" +"PATCH","/sites/{param}/contentTypes/{param}/columns/{param}","keep",,"Update-MgSiteContentTypeColumn","Update-MgSiteContentTypeColumn" +"PATCH","/sites/{param}/lists/{param}","keep",,"Update-MgSiteList","Update-MgSiteList" +"PATCH","/sites/{param}/lists/{param}/columns/{param}","keep",,"Update-MgSiteListColumn","Update-MgSiteListColumn" +"PATCH","/sites/{param}/lists/{param}/contentTypes/{param}","keep",,"Update-MgSiteListContentType","Update-MgSiteListContentType" +"PATCH","/sites/{param}/lists/{param}/contentTypes/{param}/columnLinks/{param}","keep",,"Update-MgSiteListContentTypeColumnLink","Update-MgSiteListContentTypeColumnLink" +"PATCH","/sites/{param}/lists/{param}/contentTypes/{param}/columns/{param}","keep",,"Update-MgSiteListContentTypeColumn","Update-MgSiteListContentTypeColumn" +"PATCH","/sites/{param}/lists/{param}/createdByUser/mailboxSettings","keep",,"Update-MgSiteListCreatedByUserMailboxSetting","Update-MgSiteListCreatedByUserMailboxSetting" +"PATCH","/sites/{param}/lists/{param}/items/{param}","keep",,"Update-MgSiteListItem","Update-MgSiteListItem" +"PATCH","/sites/{param}/lists/{param}/items/{param}/createdByUser/mailboxSettings","keep",,"Update-MgSiteListItemCreatedByUserMailboxSetting","Update-MgSiteListItemCreatedByUserMailboxSetting" +"PATCH","/sites/{param}/lists/{param}/items/{param}/documentSetVersions/{param}","keep",,"Update-MgSiteListItemDocumentSetVersion","Update-MgSiteListItemDocumentSetVersion" +"PATCH","/sites/{param}/lists/{param}/items/{param}/documentSetVersions/{param}/fields","keep",,"Update-MgSiteListItemDocumentSetVersionField","Update-MgSiteListItemDocumentSetVersionField" +"PATCH","/sites/{param}/lists/{param}/items/{param}/fields","keep",,"Update-MgSiteListItemField","Update-MgSiteListItemField" +"PATCH","/sites/{param}/lists/{param}/items/{param}/lastModifiedByUser/mailboxSettings","keep",,"Update-MgSiteListItemLastModifiedByUserMailboxSetting","Update-MgSiteListItemLastModifiedByUserMailboxSetting" +"PATCH","/sites/{param}/lists/{param}/items/{param}/permissions/{param}","keep",,"Update-MgSiteListItemPermission","Update-MgSiteListItemPermission" +"PATCH","/sites/{param}/lists/{param}/items/{param}/versions/{param}","keep",,"Update-MgSiteListItemVersion","Update-MgSiteListItemVersion" +"PATCH","/sites/{param}/lists/{param}/items/{param}/versions/{param}/fields","keep",,"Update-MgSiteListItemVersionField","Update-MgSiteListItemVersionField" +"PATCH","/sites/{param}/lists/{param}/lastModifiedByUser/mailboxSettings","keep",,"Update-MgSiteListLastModifiedByUserMailboxSetting","Update-MgSiteListLastModifiedByUserMailboxSetting" +"PATCH","/sites/{param}/lists/{param}/operations/{param}","keep",,"Update-MgSiteListOperation","Update-MgSiteListOperation" +"PATCH","/sites/{param}/lists/{param}/permissions/{param}","keep",,"Update-MgSiteListPermission","Update-MgSiteListPermission" +"PATCH","/sites/{param}/lists/{param}/subscriptions/{param}","keep",,"Update-MgSiteListSubscription","Update-MgSiteListSubscription" +"PATCH","/sites/{param}/onenote","keep",,"Update-MgSiteOnenote","Update-MgSiteOnenoteContent" +"PATCH","/sites/{param}/onenote/notebooks/{param}","keep",,"Update-MgSiteOnenoteNotebook","Update-MgSiteOnenoteNotebookContent" +"PATCH","/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}","keep",,"Update-MgSiteOnenoteNotebookSectionGroup","Update-MgSiteOnenoteNotebookSectionGroupContent" +"PATCH","/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}","keep",,"Update-MgSiteOnenoteNotebookSectionGroupSection","Update-MgSiteOnenoteNotebookSectionGroupSectionContent" +"PATCH","/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}","suppress",,"Update-MgSiteOnenoteNotebookSectionGroupSectionPage","no oracle row for PATCH /sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param} and 'Update-MgSiteOnenoteNotebookSectionGroupSectionPage' unshipped" +"PATCH","/sites/{param}/onenote/notebooks/{param}/sections/{param}","keep",,"Update-MgSiteOnenoteNotebookSection","Update-MgSiteOnenoteNotebookSectionContent" +"PATCH","/sites/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}","suppress",,"Update-MgSiteOnenoteNotebookSectionPage","no oracle row for PATCH /sites/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param} and 'Update-MgSiteOnenoteNotebookSectionPage' unshipped" +"PATCH","/sites/{param}/onenote/operations/{param}","keep",,"Update-MgSiteOnenoteOperation","Update-MgSiteOnenoteOperationContent" +"PATCH","/sites/{param}/onenote/pages/{param}","suppress",,"Update-MgSiteOnenotePage","no oracle row for PATCH /sites/{param}/onenote/pages/{param} and 'Update-MgSiteOnenotePage' unshipped" +"PATCH","/sites/{param}/onenote/resources/{param}","keep",,"Update-MgSiteOnenoteResource","Update-MgSiteOnenoteResourceContent" +"PATCH","/sites/{param}/onenote/sectionGroups/{param}","keep",,"Update-MgSiteOnenoteSectionGroup","Update-MgSiteOnenoteSectionGroupContent" +"PATCH","/sites/{param}/onenote/sectionGroups/{param}/sections/{param}","keep",,"Update-MgSiteOnenoteSectionGroupSection","Update-MgSiteOnenoteSectionGroupSectionContent" +"PATCH","/sites/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}","suppress",,"Update-MgSiteOnenoteSectionGroupSectionPage","no oracle row for PATCH /sites/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param} and 'Update-MgSiteOnenoteSectionGroupSectionPage' unshipped" +"PATCH","/sites/{param}/onenote/sections/{param}","keep",,"Update-MgSiteOnenoteSection","Update-MgSiteOnenoteSectionContent" +"PATCH","/sites/{param}/onenote/sections/{param}/pages/{param}","suppress",,"Update-MgSiteOnenoteSectionPage","no oracle row for PATCH /sites/{param}/onenote/sections/{param}/pages/{param} and 'Update-MgSiteOnenoteSectionPage' unshipped" +"PATCH","/sites/{param}/operations/{param}","keep",,"Update-MgSiteOperation","Update-MgSiteOperation" +"PATCH","/sites/{param}/pages/{param}","keep",,"Update-MgSitePage","Update-MgSitePage" +"PATCH","/sites/{param}/pages/{param}/createdByUser/mailboxSettings","keep",,"Update-MgSitePageCreatedByUserMailboxSetting","Update-MgSitePageCreatedByUserMailboxSetting" +"PATCH","/sites/{param}/pages/{param}/lastModifiedByUser/mailboxSettings","keep",,"Update-MgSitePageLastModifiedByUserMailboxSetting","Update-MgSitePageLastModifiedByUserMailboxSetting" +"PATCH","/sites/{param}/permissions/{param}","keep",,"Update-MgSitePermission","Update-MgSitePermission" +"PATCH","/sites/{param}/termStore","keep",,"Update-MgSiteTermStore","Update-MgSiteTermStore" +"PATCH","/sites/{param}/termStore/groups/{param}","keep",,"Update-MgSiteTermStoreGroup","Update-MgSiteTermStoreGroup" +"PATCH","/sites/{param}/termStore/groups/{param}/sets/{param}","keep",,"Update-MgSiteTermStoreGroupSet","Update-MgSiteTermStoreGroupSet" +"PATCH","/sites/{param}/termStore/groups/{param}/sets/{param}/children/{param}","keep",,"Update-MgSiteTermStoreGroupSetChild","Update-MgSiteTermStoreGroupSetChild" +"PATCH","/sites/{param}/termStore/groups/{param}/sets/{param}/children/{param}/children/{param}/relations/{param}","keep",,"Update-MgSiteTermStoreGroupSetChildRelation","Update-MgSiteTermStoreGroupSetChildRelation" +"PATCH","/sites/{param}/termStore/groups/{param}/sets/{param}/parentGroup","keep",,"Update-MgSiteTermStoreGroupSetParentGroup","Update-MgSiteTermStoreGroupSetParentGroup" +"PATCH","/sites/{param}/termStore/groups/{param}/sets/{param}/relations/{param}","keep",,"Update-MgSiteTermStoreGroupSetRelation","Update-MgSiteTermStoreGroupSetRelation" +"PATCH","/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}","keep",,"Update-MgSiteTermStoreGroupSetTerm","Update-MgSiteTermStoreGroupSetTerm" +"PATCH","/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/children/{param}","keep",,"Update-MgSiteTermStoreGroupSetTermChild","Update-MgSiteTermStoreGroupSetTermChild" +"PATCH","/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/children/{param}/relations/{param}","keep",,"Update-MgSiteTermStoreGroupSetTermChildRelation","Update-MgSiteTermStoreGroupSetTermChildRelation" +"PATCH","/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/relations/{param}","keep",,"Update-MgSiteTermStoreGroupSetTermRelation","Update-MgSiteTermStoreGroupSetTermRelation" +"PATCH","/sites/{param}/termStore/sets/{param}","keep",,"Update-MgSiteTermStoreSet","Update-MgSiteTermStoreSet" +"PATCH","/sites/{param}/termStore/sets/{param}/children/{param}","keep",,"Update-MgSiteTermStoreSetChild","Update-MgSiteTermStoreSetChild" +"PATCH","/sites/{param}/termStore/sets/{param}/children/{param}/children/{param}/relations/{param}","keep",,"Update-MgSiteTermStoreSetChildRelation","Update-MgSiteTermStoreSetChildRelation" +"PATCH","/sites/{param}/termStore/sets/{param}/parentGroup","keep",,"Update-MgSiteTermStoreSetParentGroup","Update-MgSiteTermStoreSetParentGroup" +"PATCH","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}","keep",,"Update-MgSiteTermStoreSetParentGroupSet","Update-MgSiteTermStoreSetParentGroupSet" +"PATCH","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/children/{param}","keep",,"Update-MgSiteTermStoreSetParentGroupSetChild","Update-MgSiteTermStoreSetParentGroupSetChild" +"PATCH","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/children/{param}/children/{param}/relations/{param}","keep",,"Update-MgSiteTermStoreSetParentGroupSetChildRelation","Update-MgSiteTermStoreSetParentGroupSetChildRelation" +"PATCH","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/relations/{param}","keep",,"Update-MgSiteTermStoreSetParentGroupSetRelation","Update-MgSiteTermStoreSetParentGroupSetRelation" +"PATCH","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}","keep",,"Update-MgSiteTermStoreSetParentGroupSetTerm","Update-MgSiteTermStoreSetParentGroupSetTerm" +"PATCH","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/children/{param}","keep",,"Update-MgSiteTermStoreSetParentGroupSetTermChild","Update-MgSiteTermStoreSetParentGroupSetTermChild" +"PATCH","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/children/{param}/relations/{param}","keep",,"Update-MgSiteTermStoreSetParentGroupSetTermChildRelation","Update-MgSiteTermStoreSetParentGroupSetTermChildRelation" +"PATCH","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/relations/{param}","keep",,"Update-MgSiteTermStoreSetParentGroupSetTermRelation","Update-MgSiteTermStoreSetParentGroupSetTermRelation" +"PATCH","/sites/{param}/termStore/sets/{param}/relations/{param}","keep",,"Update-MgSiteTermStoreSetRelation","Update-MgSiteTermStoreSetRelation" +"PATCH","/sites/{param}/termStore/sets/{param}/terms/{param}","keep",,"Update-MgSiteTermStoreSetTerm","Update-MgSiteTermStoreSetTerm" +"PATCH","/sites/{param}/termStore/sets/{param}/terms/{param}/children/{param}","keep",,"Update-MgSiteTermStoreSetTermChild","Update-MgSiteTermStoreSetTermChild" +"PATCH","/sites/{param}/termStore/sets/{param}/terms/{param}/children/{param}/relations/{param}","keep",,"Update-MgSiteTermStoreSetTermChildRelation","Update-MgSiteTermStoreSetTermChildRelation" +"PATCH","/sites/{param}/termStore/sets/{param}/terms/{param}/relations/{param}","keep",,"Update-MgSiteTermStoreSetTermRelation","Update-MgSiteTermStoreSetTermRelation" +"PATCH","/solutions/backupRestore","keep",,"Update-MgSolutionBackupRestore","Update-MgSolutionBackupRestore" +"PATCH","/solutions/backupRestore/browseSessions/{param}","keep",,"Update-MgSolutionBackupRestoreBrowseSession","Update-MgSolutionBackupRestoreBrowseSession" +"PATCH","/solutions/backupRestore/driveInclusionRules/{param}","keep",,"Update-MgSolutionBackupRestoreDriveInclusionRule","Update-MgSolutionBackupRestoreDriveInclusionRule" +"PATCH","/solutions/backupRestore/driveProtectionUnits/{param}","keep",,"Update-MgSolutionBackupRestoreDriveProtectionUnit","Update-MgSolutionBackupRestoreDriveProtectionUnit" +"PATCH","/solutions/backupRestore/driveProtectionUnitsBulkAdditionJobs/{param}","keep",,"Update-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob","Update-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob" +"PATCH","/solutions/backupRestore/emailNotificationsSetting","keep",,"Update-MgSolutionBackupRestoreEmailNotificationSetting","Update-MgSolutionBackupRestoreEmailNotificationSetting" +"PATCH","/solutions/backupRestore/exchangeProtectionPolicies/{param}","keep",,"Update-MgSolutionBackupRestoreExchangeProtectionPolicy","Update-MgSolutionBackupRestoreExchangeProtectionPolicy" +"PATCH","/solutions/backupRestore/exchangeRestoreSessions/{param}","keep",,"Update-MgSolutionBackupRestoreExchangeRestoreSession","Update-MgSolutionBackupRestoreExchangeRestoreSession" +"PATCH","/solutions/backupRestore/exchangeRestoreSessions/{param}/granularMailboxRestoreArtifacts/{param}","keep",,"Update-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact","Update-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact" +"PATCH","/solutions/backupRestore/exchangeRestoreSessions/{param}/mailboxRestoreArtifacts/{param}","keep",,"Update-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact","Update-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact" +"PATCH","/solutions/backupRestore/exchangeRestoreSessions/{param}/mailboxRestoreArtifactsBulkAdditionRequests/{param}","keep",,"Update-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest","Update-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest" +"PATCH","/solutions/backupRestore/mailboxInclusionRules/{param}","keep",,"Update-MgSolutionBackupRestoreMailboxInclusionRule","Update-MgSolutionBackupRestoreMailboxInclusionRule" +"PATCH","/solutions/backupRestore/mailboxProtectionUnits/{param}","keep",,"Update-MgSolutionBackupRestoreMailboxProtectionUnit","Update-MgSolutionBackupRestoreMailboxProtectionUnit" +"PATCH","/solutions/backupRestore/mailboxProtectionUnitsBulkAdditionJobs/{param}","keep",,"Update-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob","Update-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob" +"PATCH","/solutions/backupRestore/oneDriveForBusinessBrowseSessions/{param}","keep",,"Update-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession","Update-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession" +"PATCH","/solutions/backupRestore/oneDriveForBusinessProtectionPolicies/{param}","keep",,"Update-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy","Update-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy" +"PATCH","/solutions/backupRestore/oneDriveForBusinessRestoreSessions/{param}","keep",,"Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession","Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession" +"PATCH","/solutions/backupRestore/oneDriveForBusinessRestoreSessions/{param}/driveRestoreArtifacts/{param}","keep",,"Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact","Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact" +"PATCH","/solutions/backupRestore/oneDriveForBusinessRestoreSessions/{param}/driveRestoreArtifactsBulkAdditionRequests/{param}","keep",,"Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest","Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest" +"PATCH","/solutions/backupRestore/oneDriveForBusinessRestoreSessions/{param}/granularDriveRestoreArtifacts/{param}","keep",,"Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact","Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact" +"PATCH","/solutions/backupRestore/protectionPolicies/{param}","keep",,"Update-MgSolutionBackupRestoreProtectionPolicy","Update-MgSolutionBackupRestoreProtectionPolicy" +"PATCH","/solutions/backupRestore/restorePoints/{param}","keep",,"Update-MgSolutionBackupRestorePoint","Update-MgSolutionBackupRestorePoint" +"PATCH","/solutions/backupRestore/restoreSessions/{param}","keep",,"Update-MgSolutionBackupRestoreSession","Update-MgSolutionBackupRestoreSession" +"PATCH","/solutions/backupRestore/serviceApps/{param}","keep",,"Update-MgSolutionBackupRestoreServiceApp","Update-MgSolutionBackupRestoreServiceApp" +"PATCH","/solutions/backupRestore/sharePointBrowseSessions/{param}","keep",,"Update-MgSolutionBackupRestoreSharePointBrowseSession","Update-MgSolutionBackupRestoreSharePointBrowseSession" +"PATCH","/solutions/backupRestore/sharePointProtectionPolicies/{param}","keep",,"Update-MgSolutionBackupRestoreSharePointProtectionPolicy","Update-MgSolutionBackupRestoreSharePointProtectionPolicy" +"PATCH","/solutions/backupRestore/sharePointRestoreSessions/{param}","keep",,"Update-MgSolutionBackupRestoreSharePointRestoreSession","Update-MgSolutionBackupRestoreSharePointRestoreSession" +"PATCH","/solutions/backupRestore/sharePointRestoreSessions/{param}/granularSiteRestoreArtifacts/{param}","keep",,"Update-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact","Update-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact" +"PATCH","/solutions/backupRestore/sharePointRestoreSessions/{param}/siteRestoreArtifacts/{param}","keep",,"Update-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact","Update-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact" +"PATCH","/solutions/backupRestore/sharePointRestoreSessions/{param}/siteRestoreArtifactsBulkAdditionRequests/{param}","keep",,"Update-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest","Update-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest" +"PATCH","/solutions/backupRestore/siteInclusionRules/{param}","keep",,"Update-MgSolutionBackupRestoreSiteInclusionRule","Update-MgSolutionBackupRestoreSiteInclusionRule" +"PATCH","/solutions/backupRestore/siteProtectionUnits/{param}","keep",,"Update-MgSolutionBackupRestoreSiteProtectionUnit","Update-MgSolutionBackupRestoreSiteProtectionUnit" +"PATCH","/solutions/backupRestore/siteProtectionUnitsBulkAdditionJobs/{param}","keep",,"Update-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob","Update-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob" +"PATCH","/solutions/bookingBusinesses/{param}","keep",,"Update-MgBookingBusiness","Update-MgBookingBusiness" +"PATCH","/solutions/bookingBusinesses/{param}/appointments/{param}","keep",,"Update-MgBookingBusinessAppointment","Update-MgBookingBusinessAppointment" +"PATCH","/solutions/bookingBusinesses/{param}/calendarView/{param}","keep",,"Update-MgBookingBusinessCalendarView","Update-MgBookingBusinessCalendarView" +"PATCH","/solutions/bookingBusinesses/{param}/customers/{param}","keep",,"Update-MgBookingBusinessCustomer","Update-MgBookingBusinessCustomer" +"PATCH","/solutions/bookingBusinesses/{param}/customQuestions/{param}","keep",,"Update-MgBookingBusinessCustomQuestion","Update-MgBookingBusinessCustomQuestion" +"PATCH","/solutions/bookingBusinesses/{param}/services/{param}","keep",,"Update-MgBookingBusinessService","Update-MgBookingBusinessService" +"PATCH","/solutions/bookingBusinesses/{param}/staffMembers/{param}","keep",,"Update-MgBookingBusinessStaffMember","Update-MgBookingBusinessStaffMember" +"PATCH","/solutions/bookingCurrencies/{param}","keep",,"Update-MgBookingCurrency","Update-MgBookingCurrency" +"PATCH","/solutions/virtualEvents/events/{param}","keep",,"Update-MgVirtualEvent","Update-MgVirtualEvent" +"PATCH","/solutions/virtualEvents/events/{param}/presenters/{param}","keep",,"Update-MgVirtualEventPresenter","Update-MgVirtualEventPresenter" +"PATCH","/solutions/virtualEvents/events/{param}/sessions/{param}","keep",,"Update-MgVirtualEventSession","Update-MgVirtualEventSession" +"PATCH","/solutions/virtualEvents/events/{param}/sessions/{param}/attendanceReports/{param}","keep",,"Update-MgVirtualEventSessionAttendanceReport","Update-MgVirtualEventSessionAttendanceReport" +"PATCH","/solutions/virtualEvents/events/{param}/sessions/{param}/attendanceReports/{param}/attendanceRecords/{param}","keep",,"Update-MgVirtualEventSessionAttendanceReportAttendanceRecord","Update-MgVirtualEventSessionAttendanceReportAttendanceRecord" +"PATCH","/solutions/virtualEvents/townhalls/{param}","keep",,"Update-MgVirtualEventTownhall","Update-MgVirtualEventTownhall" +"PATCH","/solutions/virtualEvents/townhalls/{param}/presenters/{param}","keep",,"Update-MgVirtualEventTownhallPresenter","Update-MgVirtualEventTownhallPresenter" +"PATCH","/solutions/virtualEvents/townhalls/{param}/sessions/{param}","keep",,"Update-MgVirtualEventTownhallSession","Update-MgVirtualEventTownhallSession" +"PATCH","/solutions/virtualEvents/townhalls/{param}/sessions/{param}/attendanceReports/{param}","keep",,"Update-MgVirtualEventTownhallSessionAttendanceReport","Update-MgVirtualEventTownhallSessionAttendanceReport" +"PATCH","/solutions/virtualEvents/townhalls/{param}/sessions/{param}/attendanceReports/{param}/attendanceRecords/{param}","keep",,"Update-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord","Update-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord" +"PATCH","/solutions/virtualEvents/webinars/{param}","keep",,"Update-MgVirtualEventWebinar","Update-MgVirtualEventWebinar" +"PATCH","/solutions/virtualEvents/webinars/{param}/presenters/{param}","keep",,"Update-MgVirtualEventWebinarPresenter","Update-MgVirtualEventWebinarPresenter" +"PATCH","/solutions/virtualEvents/webinars/{param}/registrationConfiguration","keep",,"Update-MgVirtualEventWebinarRegistrationConfiguration","Update-MgVirtualEventWebinarRegistrationConfiguration" +"PATCH","/solutions/virtualEvents/webinars/{param}/registrationConfiguration/questions/{param}","keep",,"Update-MgVirtualEventWebinarRegistrationConfigurationQuestion","Update-MgVirtualEventWebinarRegistrationConfigurationQuestion" +"PATCH","/solutions/virtualEvents/webinars/{param}/registrations/{param}","keep",,"Update-MgVirtualEventWebinarRegistration","Update-MgVirtualEventWebinarRegistration" +"PATCH","/solutions/virtualEvents/webinars/{param}/sessions/{param}","keep",,"Update-MgVirtualEventWebinarSession","Update-MgVirtualEventWebinarSession" +"PATCH","/solutions/virtualEvents/webinars/{param}/sessions/{param}/attendanceReports/{param}","keep",,"Update-MgVirtualEventWebinarSessionAttendanceReport","Update-MgVirtualEventWebinarSessionAttendanceReport" +"PATCH","/solutions/virtualEvents/webinars/{param}/sessions/{param}/attendanceReports/{param}/attendanceRecords/{param}","keep",,"Update-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord","Update-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord" +"PATCH","/subscribedSkus/{param}","keep",,"Update-MgSubscribedSku","Update-MgSubscribedSku" +"PATCH","/subscriptions/{param}","keep",,"Update-MgSubscription","Update-MgSubscription" +"PATCH","/teams/{param}","keep",,"Update-MgTeam","Update-MgTeam" +"PATCH","/teams/{param}/channels/{param}","keep",,"Update-MgTeamChannel","Update-MgTeamChannel" +"PATCH","/teams/{param}/channels/{param}/allMembers/{param}","rename","TeamChannelMember","Update-MgTeamChannelAllMember","Update-MgTeamChannelMember" +"PATCH","/teams/{param}/channels/{param}/members/{param}","suppress",,"Update-MgTeamChannelMember","no oracle row; 'Update-MgTeamChannelMember' ships from sibling family (see rename entries for this noun)" +"PATCH","/teams/{param}/channels/{param}/messages/{param}","keep",,"Update-MgTeamChannelMessage","Update-MgTeamChannelMessage" +"PATCH","/teams/{param}/channels/{param}/messages/{param}/hostedContents/{param}","suppress",,"Update-MgTeamChannelMessageHostedContent","no oracle row for PATCH /teams/{param}/channels/{param}/messages/{param}/hostedContents/{param} and 'Update-MgTeamChannelMessageHostedContent' unshipped" +"PATCH","/teams/{param}/channels/{param}/messages/{param}/replies/{param}","keep",,"Update-MgTeamChannelMessageReply","Update-MgTeamChannelMessageReply" +"PATCH","/teams/{param}/channels/{param}/messages/{param}/replies/{param}/hostedContents/{param}","keep",,"Update-MgTeamChannelMessageReplyHostedContent","Update-MgTeamChannelMessageReplyHostedContent" +"PATCH","/teams/{param}/channels/{param}/sharedWithTeams/{param}","keep",,"Update-MgTeamChannelSharedWithTeam","Update-MgTeamChannelSharedWithTeam" +"PATCH","/teams/{param}/channels/{param}/tabs/{param}","keep",,"Update-MgTeamChannelTab","Update-MgTeamChannelTab" +"PATCH","/teams/{param}/installedApps/{param}","suppress",,"Update-MgTeamInstalledApp","no oracle row; 'Update-MgTeamInstalledApp' ships from sibling family (see rename entries for this noun)" +"PATCH","/teams/{param}/members/{param}","keep",,"Update-MgTeamMember","Update-MgTeamMember" +"PATCH","/teams/{param}/operations/{param}","keep",,"Update-MgTeamOperation","Update-MgTeamOperation" +"PATCH","/teams/{param}/permissionGrants/{param}","keep",,"Update-MgTeamPermissionGrant","Update-MgTeamPermissionGrant" +"PATCH","/teams/{param}/photo","keep",,"Update-MgTeamPhoto","Update-MgTeamPhoto" +"PATCH","/teams/{param}/primaryChannel","keep",,"Update-MgTeamPrimaryChannel","Update-MgTeamPrimaryChannel" +"PATCH","/teams/{param}/primaryChannel/allMembers/{param}","rename","TeamPrimaryChannelMember","Update-MgTeamPrimaryChannelAllMember","Update-MgTeamPrimaryChannelMember" +"PATCH","/teams/{param}/primaryChannel/members/{param}","suppress",,"Update-MgTeamPrimaryChannelMember","no oracle row; 'Update-MgTeamPrimaryChannelMember' ships from sibling family (see rename entries for this noun)" +"PATCH","/teams/{param}/primaryChannel/messages/{param}","keep",,"Update-MgTeamPrimaryChannelMessage","Update-MgTeamPrimaryChannelMessage" +"PATCH","/teams/{param}/primaryChannel/messages/{param}/hostedContents/{param}","suppress",,"Update-MgTeamPrimaryChannelMessageHostedContent","no oracle row for PATCH /teams/{param}/primaryChannel/messages/{param}/hostedContents/{param} and 'Update-MgTeamPrimaryChannelMessageHostedContent' unshipped" +"PATCH","/teams/{param}/primaryChannel/messages/{param}/replies/{param}","keep",,"Update-MgTeamPrimaryChannelMessageReply","Update-MgTeamPrimaryChannelMessageReply" +"PATCH","/teams/{param}/primaryChannel/messages/{param}/replies/{param}/hostedContents/{param}","keep",,"Update-MgTeamPrimaryChannelMessageReplyHostedContent","Update-MgTeamPrimaryChannelMessageReplyHostedContent" +"PATCH","/teams/{param}/primaryChannel/sharedWithTeams/{param}","keep",,"Update-MgTeamPrimaryChannelSharedWithTeam","Update-MgTeamPrimaryChannelSharedWithTeam" +"PATCH","/teams/{param}/primaryChannel/tabs/{param}","keep",,"Update-MgTeamPrimaryChannelTab","Update-MgTeamPrimaryChannelTab" +"PATCH","/teams/{param}/schedule/dayNotes/{param}","keep",,"Update-MgTeamScheduleDayNote","Update-MgTeamScheduleDayNote" +"PATCH","/teams/{param}/schedule/offerShiftRequests/{param}","keep",,"Update-MgTeamScheduleOfferShiftRequest","Update-MgTeamScheduleOfferShiftRequest" +"PATCH","/teams/{param}/schedule/openShiftChangeRequests/{param}","keep",,"Update-MgTeamScheduleOpenShiftChangeRequest","Update-MgTeamScheduleOpenShiftChangeRequest" +"PATCH","/teams/{param}/schedule/openShifts/{param}","keep",,"Update-MgTeamScheduleOpenShift","Update-MgTeamScheduleOpenShift" +"PATCH","/teams/{param}/schedule/schedulingGroups/{param}","keep",,"Update-MgTeamScheduleSchedulingGroup","Update-MgTeamScheduleSchedulingGroup" +"PATCH","/teams/{param}/schedule/shifts/{param}","keep",,"Update-MgTeamScheduleShift","Update-MgTeamScheduleShift" +"PATCH","/teams/{param}/schedule/swapShiftsChangeRequests/{param}","keep",,"Update-MgTeamScheduleSwapShiftChangeRequest","Update-MgTeamScheduleSwapShiftChangeRequest" +"PATCH","/teams/{param}/schedule/timeCards/{param}","keep",,"Update-MgTeamScheduleTimeCard","Update-MgTeamScheduleTimeCard" +"PATCH","/teams/{param}/schedule/timeOffReasons/{param}","keep",,"Update-MgTeamScheduleTimeOffReason","Update-MgTeamScheduleTimeOffReason" +"PATCH","/teams/{param}/schedule/timeOffRequests/{param}","keep",,"Update-MgTeamScheduleTimeOffRequest","Update-MgTeamScheduleTimeOffRequest" +"PATCH","/teams/{param}/schedule/timesOff/{param}","keep",,"Update-MgTeamScheduleTimeOff","Update-MgTeamScheduleTimeOff" +"PATCH","/teams/{param}/tags/{param}","keep",,"Update-MgTeamTag","Update-MgTeamTag" +"PATCH","/teams/{param}/tags/{param}/members/{param}","keep",,"Update-MgTeamTagMember","Update-MgTeamTagMember" +"PATCH","/teamwork","keep",,"Update-MgTeamwork","Update-MgTeamwork" +"PATCH","/teamwork/deletedChats/{param}","keep",,"Update-MgTeamworkDeletedChat","Update-MgTeamworkDeletedChat" +"PATCH","/teamwork/deletedTeams/{param}","keep",,"Update-MgTeamworkDeletedTeam","Update-MgTeamworkDeletedTeam" +"PATCH","/teamwork/deletedTeams/{param}/channels/{param}","keep",,"Update-MgTeamworkDeletedTeamChannel","Update-MgTeamworkDeletedTeamChannel" +"PATCH","/teamwork/deletedTeams/{param}/channels/{param}/allMembers/{param}","rename","TeamworkDeletedTeamChannelMember","Update-MgTeamworkDeletedTeamChannelAllMember","Update-MgTeamworkDeletedTeamChannelMember" +"PATCH","/teamwork/deletedTeams/{param}/channels/{param}/members/{param}","suppress",,"Update-MgTeamworkDeletedTeamChannelMember","no oracle row; 'Update-MgTeamworkDeletedTeamChannelMember' ships from sibling family (see rename entries for this noun)" +"PATCH","/teamwork/deletedTeams/{param}/channels/{param}/messages/{param}","keep",,"Update-MgTeamworkDeletedTeamChannelMessage","Update-MgTeamworkDeletedTeamChannelMessage" +"PATCH","/teamwork/deletedTeams/{param}/channels/{param}/messages/{param}/hostedContents/{param}","keep",,"Update-MgTeamworkDeletedTeamChannelMessageHostedContent","Update-MgTeamworkDeletedTeamChannelMessageHostedContent" +"PATCH","/teamwork/deletedTeams/{param}/channels/{param}/messages/{param}/replies/{param}","keep",,"Update-MgTeamworkDeletedTeamChannelMessageReply","Update-MgTeamworkDeletedTeamChannelMessageReply" +"PATCH","/teamwork/deletedTeams/{param}/channels/{param}/messages/{param}/replies/{param}/hostedContents/{param}","keep",,"Update-MgTeamworkDeletedTeamChannelMessageReplyHostedContent","Update-MgTeamworkDeletedTeamChannelMessageReplyHostedContent" +"PATCH","/teamwork/deletedTeams/{param}/channels/{param}/sharedWithTeams/{param}","keep",,"Update-MgTeamworkDeletedTeamChannelSharedWithTeam","Update-MgTeamworkDeletedTeamChannelSharedWithTeam" +"PATCH","/teamwork/deletedTeams/{param}/channels/{param}/tabs/{param}","keep",,"Update-MgTeamworkDeletedTeamChannelTab","Update-MgTeamworkDeletedTeamChannelTab" +"PATCH","/teamwork/teamsAppSettings","keep",,"Update-MgTeamworkTeamAppSetting","Update-MgTeamworkTeamAppSetting" +"PATCH","/teamwork/workforceIntegrations/{param}","keep",,"Update-MgTeamworkWorkforceIntegration","Update-MgTeamworkWorkforceIntegration" +"PATCH","/tenantRelationships/delegatedAdminCustomers/{param}","keep",,"Update-MgTenantRelationshipDelegatedAdminCustomer","Update-MgTenantRelationshipDelegatedAdminCustomer" +"PATCH","/tenantRelationships/delegatedAdminCustomers/{param}/serviceManagementDetails/{param}","keep",,"Update-MgTenantRelationshipDelegatedAdminCustomerServiceManagementDetail","Update-MgTenantRelationshipDelegatedAdminCustomerServiceManagementDetail" +"PATCH","/tenantRelationships/delegatedAdminRelationships/{param}","keep",,"Update-MgTenantRelationshipDelegatedAdminRelationship","Update-MgTenantRelationshipDelegatedAdminRelationship" +"PATCH","/tenantRelationships/delegatedAdminRelationships/{param}/accessAssignments/{param}","keep",,"Update-MgTenantRelationshipDelegatedAdminRelationshipAccessAssignment","Update-MgTenantRelationshipDelegatedAdminRelationshipAccessAssignment" +"PATCH","/tenantRelationships/delegatedAdminRelationships/{param}/operations/{param}","keep",,"Update-MgTenantRelationshipDelegatedAdminRelationshipOperation","Update-MgTenantRelationshipDelegatedAdminRelationshipOperation" +"PATCH","/tenantRelationships/delegatedAdminRelationships/{param}/requests/{param}","keep",,"Update-MgTenantRelationshipDelegatedAdminRelationshipRequest","Update-MgTenantRelationshipDelegatedAdminRelationshipRequest" +"PATCH","/tenantRelationships/multiTenantOrganization","keep",,"Update-MgTenantRelationshipMultiTenantOrganization","Update-MgTenantRelationshipMultiTenantOrganization" +"PATCH","/tenantRelationships/multiTenantOrganization/joinRequest","keep",,"Update-MgTenantRelationshipMultiTenantOrganizationJoinRequest","Update-MgTenantRelationshipMultiTenantOrganizationJoinRequest" +"PATCH","/tenantRelationships/multiTenantOrganization/tenants/{param}","keep",,"Update-MgTenantRelationshipMultiTenantOrganizationTenant","Update-MgTenantRelationshipMultiTenantOrganizationTenant" +"PATCH","/users/{param}","keep",,"Update-MgUser","Update-MgUser" +"PATCH","/users/{param}/activities/{param}","keep",,"Update-MgUserActivity","Update-MgUserActivity" +"PATCH","/users/{param}/activities/{param}/historyItems/{param}","keep",,"Update-MgUserActivityHistoryItem","Update-MgUserActivityHistoryItem" +"PATCH","/users/{param}/appRoleAssignments/{param}","keep",,"Update-MgUserAppRoleAssignment","Update-MgUserAppRoleAssignment" +"PATCH","/users/{param}/authentication","suppress",,"Update-MgUserAuthentication","no oracle row for PATCH /users/{param}/authentication and 'Update-MgUserAuthentication' unshipped" +"PATCH","/users/{param}/authentication/emailMethods/{param}","keep",,"Update-MgUserAuthenticationEmailMethod","Update-MgUserAuthenticationEmailMethod" +"PATCH","/users/{param}/authentication/externalAuthenticationMethods/{param}","keep",,"Update-MgUserAuthenticationExternalAuthenticationMethod","Update-MgUserAuthenticationExternalAuthenticationMethod" +"PATCH","/users/{param}/authentication/methods/{param}","keep",,"Update-MgUserAuthenticationMethod","Update-MgUserAuthenticationMethod" +"PATCH","/users/{param}/authentication/operations/{param}","keep",,"Update-MgUserAuthenticationOperation","Update-MgUserAuthenticationOperation" +"PATCH","/users/{param}/authentication/phoneMethods/{param}","keep",,"Update-MgUserAuthenticationPhoneMethod","Update-MgUserAuthenticationPhoneMethod" +"PATCH","/users/{param}/calendar/calendarPermissions/{param}","keep",,"Update-MgUserCalendarPermission","Update-MgUserCalendarPermission" +"PATCH","/users/{param}/calendarGroups/{param}","keep",,"Update-MgUserCalendarGroup","Update-MgUserCalendarGroup" +"PATCH","/users/{param}/calendarGroups/{param}/calendars/{param}","suppress",,"Update-MgUserCalendarGroupCalendar","no oracle row for PATCH /users/{param}/calendarGroups/{param}/calendars/{param} and 'Update-MgUserCalendarGroupCalendar' unshipped" +"PATCH","/users/{param}/calendarGroups/{param}/calendars/{param}/calendarPermissions/{param}","suppress",,"Update-MgUserCalendarGroupCalendarPermission","no oracle row for PATCH /users/{param}/calendarGroups/{param}/calendars/{param}/calendarPermissions/{param} and 'Update-MgUserCalendarGroupCalendarPermission' unshipped" +"PATCH","/users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}","suppress",,"Update-MgUserCalendarGroupCalendarEvent","no oracle row for PATCH /users/{param}/calendarGroups/{param}/calendars/{param}/events/{param} and 'Update-MgUserCalendarGroupCalendarEvent' unshipped" +"PATCH","/users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/extensions/{param}","suppress",,"Update-MgUserCalendarGroupCalendarEventExtension","no oracle row for PATCH /users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/extensions/{param} and 'Update-MgUserCalendarGroupCalendarEventExtension' unshipped" +"PATCH","/users/{param}/calendars/{param}","suppress",,"Update-MgUserCalendar","no oracle row for PATCH /users/{param}/calendars/{param} and 'Update-MgUserCalendar' unshipped" +"PATCH","/users/{param}/chats/{param}","keep",,"Update-MgUserChat","Update-MgUserChat" +"PATCH","/users/{param}/chats/{param}/installedApps/{param}","suppress",,"Update-MgUserChatInstalledApp","no oracle row; 'Update-MgUserChatInstalledApp' ships from sibling family (see rename entries for this noun)" +"PATCH","/users/{param}/chats/{param}/lastMessagePreview","keep",,"Update-MgUserChatLastMessagePreview","Update-MgUserChatLastMessagePreview" +"PATCH","/users/{param}/chats/{param}/members/{param}","keep",,"Update-MgUserChatMember","Update-MgUserChatMember" +"PATCH","/users/{param}/chats/{param}/messages/{param}","keep",,"Update-MgUserChatMessage","Update-MgUserChatMessage" +"PATCH","/users/{param}/chats/{param}/messages/{param}/hostedContents/{param}","keep",,"Update-MgUserChatMessageHostedContent","Update-MgUserChatMessageHostedContent" +"PATCH","/users/{param}/chats/{param}/messages/{param}/replies/{param}","keep",,"Update-MgUserChatMessageReply","Update-MgUserChatMessageReply" +"PATCH","/users/{param}/chats/{param}/messages/{param}/replies/{param}/hostedContents/{param}","keep",,"Update-MgUserChatMessageReplyHostedContent","Update-MgUserChatMessageReplyHostedContent" +"PATCH","/users/{param}/chats/{param}/permissionGrants/{param}","keep",,"Update-MgUserChatPermissionGrant","Update-MgUserChatPermissionGrant" +"PATCH","/users/{param}/chats/{param}/pinnedMessages/{param}","keep",,"Update-MgUserChatPinnedMessage","Update-MgUserChatPinnedMessage" +"PATCH","/users/{param}/chats/{param}/tabs/{param}","keep",,"Update-MgUserChatTab","Update-MgUserChatTab" +"PATCH","/users/{param}/chats/{param}/targetedMessages/{param}","keep",,"Update-MgUserChatTargetedMessage","Update-MgUserChatTargetedMessage" +"PATCH","/users/{param}/chats/{param}/targetedMessages/{param}/hostedContents/{param}","keep",,"Update-MgUserChatTargetedMessageHostedContent","Update-MgUserChatTargetedMessageHostedContent" +"PATCH","/users/{param}/chats/{param}/targetedMessages/{param}/replies/{param}","keep",,"Update-MgUserChatTargetedMessageReply","Update-MgUserChatTargetedMessageReply" +"PATCH","/users/{param}/chats/{param}/targetedMessages/{param}/replies/{param}/hostedContents/{param}","keep",,"Update-MgUserChatTargetedMessageReplyHostedContent","Update-MgUserChatTargetedMessageReplyHostedContent" +"PATCH","/users/{param}/contactFolders/{param}","keep",,"Update-MgUserContactFolder","Update-MgUserContactFolder" +"PATCH","/users/{param}/contactFolders/{param}/childFolders/{param}","keep",,"Update-MgUserContactFolderChildFolder","Update-MgUserContactFolderChildFolder" +"PATCH","/users/{param}/contactFolders/{param}/childFolders/{param}/contacts/{param}","keep",,"Update-MgUserContactFolderChildFolderContact","Update-MgUserContactFolderChildFolderContact" +"PATCH","/users/{param}/contactFolders/{param}/childFolders/{param}/contacts/{param}/extensions/{param}","keep",,"Update-MgUserContactFolderChildFolderContactExtension","Update-MgUserContactFolderChildFolderContactExtension" +"PATCH","/users/{param}/contactFolders/{param}/childFolders/{param}/contacts/{param}/photo","keep",,"Update-MgUserContactFolderChildFolderContactPhoto","Update-MgUserContactFolderChildFolderContactPhoto" +"PATCH","/users/{param}/contactFolders/{param}/contacts/{param}","keep",,"Update-MgUserContactFolderContact","Update-MgUserContactFolderContact" +"PATCH","/users/{param}/contactFolders/{param}/contacts/{param}/extensions/{param}","keep",,"Update-MgUserContactFolderContactExtension","Update-MgUserContactFolderContactExtension" +"PATCH","/users/{param}/contactFolders/{param}/contacts/{param}/photo","keep",,"Update-MgUserContactFolderContactPhoto","Update-MgUserContactFolderContactPhoto" +"PATCH","/users/{param}/contacts/{param}","keep",,"Update-MgUserContact","Update-MgUserContact" +"PATCH","/users/{param}/contacts/{param}/extensions/{param}","keep",,"Update-MgUserContactExtension","Update-MgUserContactExtension" +"PATCH","/users/{param}/contacts/{param}/photo","keep",,"Update-MgUserContactPhoto","Update-MgUserContactPhoto" +"PATCH","/users/{param}/deviceManagementTroubleshootingEvents/{param}","keep",,"Update-MgUserDeviceManagementTroubleshootingEvent","Update-MgUserDeviceManagementTroubleshootingEvent" +"PATCH","/users/{param}/events/{param}","keep",,"Update-MgUserEvent","Update-MgUserEvent" +"PATCH","/users/{param}/events/{param}/extensions/{param}","keep",,"Update-MgUserEventExtension","Update-MgUserEventExtension" +"PATCH","/users/{param}/extensions/{param}","keep",,"Update-MgUserExtension","Update-MgUserExtension" +"PATCH","/users/{param}/inferenceClassification","keep",,"Update-MgUserInferenceClassification","Update-MgUserInferenceClassification" +"PATCH","/users/{param}/inferenceClassification/overrides/{param}","keep",,"Update-MgUserInferenceClassificationOverride","Update-MgUserInferenceClassificationOverride" +"PATCH","/users/{param}/insights","keep",,"Update-MgUserInsight","Update-MgUserInsight" +"PATCH","/users/{param}/insights/shared/{param}","keep",,"Update-MgUserInsightShared","Update-MgUserInsightShared" +"PATCH","/users/{param}/insights/trending/{param}","keep",,"Update-MgUserInsightTrending","Update-MgUserInsightTrending" +"PATCH","/users/{param}/insights/used/{param}","keep",,"Update-MgUserInsightUsed","Update-MgUserInsightUsed" +"PATCH","/users/{param}/joinedTeams/{param}","suppress",,"Update-MgUserJoinedTeam","no oracle row for PATCH /users/{param}/joinedTeams/{param} and 'Update-MgUserJoinedTeam' unshipped" +"PATCH","/users/{param}/joinedTeams/{param}/channels/{param}","suppress",,"Update-MgUserJoinedTeamChannel","no oracle row for PATCH /users/{param}/joinedTeams/{param}/channels/{param} and 'Update-MgUserJoinedTeamChannel' unshipped" +"PATCH","/users/{param}/joinedTeams/{param}/channels/{param}/allMembers/{param}","suppress",,"Update-MgUserJoinedTeamChannelAllMember","no oracle row for PATCH /users/{param}/joinedTeams/{param}/channels/{param}/allMembers/{param} and 'Update-MgUserJoinedTeamChannelAllMember' unshipped" +"PATCH","/users/{param}/joinedTeams/{param}/channels/{param}/members/{param}","suppress",,"Update-MgUserJoinedTeamChannelMember","no oracle row for PATCH /users/{param}/joinedTeams/{param}/channels/{param}/members/{param} and 'Update-MgUserJoinedTeamChannelMember' unshipped" +"PATCH","/users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}","suppress",,"Update-MgUserJoinedTeamChannelMessage","no oracle row for PATCH /users/{param}/joinedTeams/{param}/channels/{param}/messages/{param} and 'Update-MgUserJoinedTeamChannelMessage' unshipped" +"PATCH","/users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/hostedContents/{param}","suppress",,"Update-MgUserJoinedTeamChannelMessageHostedContent","no oracle row for PATCH /users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/hostedContents/{param} and 'Update-MgUserJoinedTeamChannelMessageHostedContent' unshipped" +"PATCH","/users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/replies/{param}","suppress",,"Update-MgUserJoinedTeamChannelMessageReply","no oracle row for PATCH /users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/replies/{param} and 'Update-MgUserJoinedTeamChannelMessageReply' unshipped" +"PATCH","/users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/replies/{param}/hostedContents/{param}","suppress",,"Update-MgUserJoinedTeamChannelMessageReplyHostedContent","no oracle row for PATCH /users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/replies/{param}/hostedContents/{param} and 'Update-MgUserJoinedTeamChannelMessageReplyHostedContent' unshipped" +"PATCH","/users/{param}/joinedTeams/{param}/channels/{param}/sharedWithTeams/{param}","suppress",,"Update-MgUserJoinedTeamChannelSharedWithTeam","no oracle row for PATCH /users/{param}/joinedTeams/{param}/channels/{param}/sharedWithTeams/{param} and 'Update-MgUserJoinedTeamChannelSharedWithTeam' unshipped" +"PATCH","/users/{param}/joinedTeams/{param}/channels/{param}/tabs/{param}","suppress",,"Update-MgUserJoinedTeamChannelTab","no oracle row for PATCH /users/{param}/joinedTeams/{param}/channels/{param}/tabs/{param} and 'Update-MgUserJoinedTeamChannelTab' unshipped" +"PATCH","/users/{param}/joinedTeams/{param}/installedApps/{param}","suppress",,"Update-MgUserJoinedTeamInstalledApp","no oracle row for PATCH /users/{param}/joinedTeams/{param}/installedApps/{param} and 'Update-MgUserJoinedTeamInstalledApp' unshipped" +"PATCH","/users/{param}/joinedTeams/{param}/members/{param}","suppress",,"Update-MgUserJoinedTeamMember","no oracle row for PATCH /users/{param}/joinedTeams/{param}/members/{param} and 'Update-MgUserJoinedTeamMember' unshipped" +"PATCH","/users/{param}/joinedTeams/{param}/operations/{param}","suppress",,"Update-MgUserJoinedTeamOperation","no oracle row for PATCH /users/{param}/joinedTeams/{param}/operations/{param} and 'Update-MgUserJoinedTeamOperation' unshipped" +"PATCH","/users/{param}/joinedTeams/{param}/permissionGrants/{param}","suppress",,"Update-MgUserJoinedTeamPermissionGrant","no oracle row for PATCH /users/{param}/joinedTeams/{param}/permissionGrants/{param} and 'Update-MgUserJoinedTeamPermissionGrant' unshipped" +"PATCH","/users/{param}/joinedTeams/{param}/photo","suppress",,"Update-MgUserJoinedTeamPhoto","no oracle row for PATCH /users/{param}/joinedTeams/{param}/photo and 'Update-MgUserJoinedTeamPhoto' unshipped" +"PATCH","/users/{param}/joinedTeams/{param}/primaryChannel","suppress",,"Update-MgUserJoinedTeamPrimaryChannel","no oracle row for PATCH /users/{param}/joinedTeams/{param}/primaryChannel and 'Update-MgUserJoinedTeamPrimaryChannel' unshipped" +"PATCH","/users/{param}/joinedTeams/{param}/primaryChannel/allMembers/{param}","suppress",,"Update-MgUserJoinedTeamPrimaryChannelAllMember","no oracle row for PATCH /users/{param}/joinedTeams/{param}/primaryChannel/allMembers/{param} and 'Update-MgUserJoinedTeamPrimaryChannelAllMember' unshipped" +"PATCH","/users/{param}/joinedTeams/{param}/primaryChannel/members/{param}","suppress",,"Update-MgUserJoinedTeamPrimaryChannelMember","no oracle row for PATCH /users/{param}/joinedTeams/{param}/primaryChannel/members/{param} and 'Update-MgUserJoinedTeamPrimaryChannelMember' unshipped" +"PATCH","/users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}","suppress",,"Update-MgUserJoinedTeamPrimaryChannelMessage","no oracle row for PATCH /users/{param}/joinedTeams/{param}/primaryChannel/messages/{param} and 'Update-MgUserJoinedTeamPrimaryChannelMessage' unshipped" +"PATCH","/users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/hostedContents/{param}","suppress",,"Update-MgUserJoinedTeamPrimaryChannelMessageHostedContent","no oracle row for PATCH /users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/hostedContents/{param} and 'Update-MgUserJoinedTeamPrimaryChannelMessageHostedContent' unshipped" +"PATCH","/users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/replies/{param}","suppress",,"Update-MgUserJoinedTeamPrimaryChannelMessageReply","no oracle row for PATCH /users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/replies/{param} and 'Update-MgUserJoinedTeamPrimaryChannelMessageReply' unshipped" +"PATCH","/users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/replies/{param}/hostedContents/{param}","suppress",,"Update-MgUserJoinedTeamPrimaryChannelMessageReplyHostedContent","no oracle row for PATCH /users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/replies/{param}/hostedContents/{param} and 'Update-MgUserJoinedTeamPrimaryChannelMessageReplyHostedContent' unshipped" +"PATCH","/users/{param}/joinedTeams/{param}/primaryChannel/sharedWithTeams/{param}","suppress",,"Update-MgUserJoinedTeamPrimaryChannelSharedWithTeam","no oracle row for PATCH /users/{param}/joinedTeams/{param}/primaryChannel/sharedWithTeams/{param} and 'Update-MgUserJoinedTeamPrimaryChannelSharedWithTeam' unshipped" +"PATCH","/users/{param}/joinedTeams/{param}/primaryChannel/tabs/{param}","suppress",,"Update-MgUserJoinedTeamPrimaryChannelTab","no oracle row for PATCH /users/{param}/joinedTeams/{param}/primaryChannel/tabs/{param} and 'Update-MgUserJoinedTeamPrimaryChannelTab' unshipped" +"PATCH","/users/{param}/joinedTeams/{param}/schedule/dayNotes/{param}","suppress",,"Update-MgUserJoinedTeamScheduleDayNote","no oracle row for PATCH /users/{param}/joinedTeams/{param}/schedule/dayNotes/{param} and 'Update-MgUserJoinedTeamScheduleDayNote' unshipped" +"PATCH","/users/{param}/joinedTeams/{param}/schedule/offerShiftRequests/{param}","suppress",,"Update-MgUserJoinedTeamScheduleOfferShiftRequest","no oracle row for PATCH /users/{param}/joinedTeams/{param}/schedule/offerShiftRequests/{param} and 'Update-MgUserJoinedTeamScheduleOfferShiftRequest' unshipped" +"PATCH","/users/{param}/joinedTeams/{param}/schedule/openShiftChangeRequests/{param}","suppress",,"Update-MgUserJoinedTeamScheduleOpenShiftChangeRequest","no oracle row for PATCH /users/{param}/joinedTeams/{param}/schedule/openShiftChangeRequests/{param} and 'Update-MgUserJoinedTeamScheduleOpenShiftChangeRequest' unshipped" +"PATCH","/users/{param}/joinedTeams/{param}/schedule/openShifts/{param}","suppress",,"Update-MgUserJoinedTeamScheduleOpenShift","no oracle row for PATCH /users/{param}/joinedTeams/{param}/schedule/openShifts/{param} and 'Update-MgUserJoinedTeamScheduleOpenShift' unshipped" +"PATCH","/users/{param}/joinedTeams/{param}/schedule/schedulingGroups/{param}","suppress",,"Update-MgUserJoinedTeamScheduleSchedulingGroup","no oracle row for PATCH /users/{param}/joinedTeams/{param}/schedule/schedulingGroups/{param} and 'Update-MgUserJoinedTeamScheduleSchedulingGroup' unshipped" +"PATCH","/users/{param}/joinedTeams/{param}/schedule/shifts/{param}","suppress",,"Update-MgUserJoinedTeamScheduleShift","no oracle row for PATCH /users/{param}/joinedTeams/{param}/schedule/shifts/{param} and 'Update-MgUserJoinedTeamScheduleShift' unshipped" +"PATCH","/users/{param}/joinedTeams/{param}/schedule/swapShiftsChangeRequests/{param}","suppress",,"Update-MgUserJoinedTeamScheduleSwapShiftChangeRequest","no oracle row for PATCH /users/{param}/joinedTeams/{param}/schedule/swapShiftsChangeRequests/{param} and 'Update-MgUserJoinedTeamScheduleSwapShiftChangeRequest' unshipped" +"PATCH","/users/{param}/joinedTeams/{param}/schedule/timeCards/{param}","suppress",,"Update-MgUserJoinedTeamScheduleTimeCard","no oracle row for PATCH /users/{param}/joinedTeams/{param}/schedule/timeCards/{param} and 'Update-MgUserJoinedTeamScheduleTimeCard' unshipped" +"PATCH","/users/{param}/joinedTeams/{param}/schedule/timeOffReasons/{param}","suppress",,"Update-MgUserJoinedTeamScheduleTimeOffReason","no oracle row for PATCH /users/{param}/joinedTeams/{param}/schedule/timeOffReasons/{param} and 'Update-MgUserJoinedTeamScheduleTimeOffReason' unshipped" +"PATCH","/users/{param}/joinedTeams/{param}/schedule/timeOffRequests/{param}","suppress",,"Update-MgUserJoinedTeamScheduleTimeOffRequest","no oracle row for PATCH /users/{param}/joinedTeams/{param}/schedule/timeOffRequests/{param} and 'Update-MgUserJoinedTeamScheduleTimeOffRequest' unshipped" +"PATCH","/users/{param}/joinedTeams/{param}/schedule/timesOff/{param}","suppress",,"Update-MgUserJoinedTeamScheduleTimeOff","no oracle row for PATCH /users/{param}/joinedTeams/{param}/schedule/timesOff/{param} and 'Update-MgUserJoinedTeamScheduleTimeOff' unshipped" +"PATCH","/users/{param}/joinedTeams/{param}/tags/{param}","suppress",,"Update-MgUserJoinedTeamTag","no oracle row for PATCH /users/{param}/joinedTeams/{param}/tags/{param} and 'Update-MgUserJoinedTeamTag' unshipped" +"PATCH","/users/{param}/joinedTeams/{param}/tags/{param}/members/{param}","suppress",,"Update-MgUserJoinedTeamTagMember","no oracle row for PATCH /users/{param}/joinedTeams/{param}/tags/{param}/members/{param} and 'Update-MgUserJoinedTeamTagMember' unshipped" +"PATCH","/users/{param}/licenseDetails/{param}","keep",,"Update-MgUserLicenseDetail","Update-MgUserLicenseDetail" +"PATCH","/users/{param}/mailboxSettings","keep",,"Update-MgUserMailboxSetting","Update-MgUserMailboxSetting" +"PATCH","/users/{param}/mailFolders/{param}","keep",,"Update-MgUserMailFolder","Update-MgUserMailFolder" +"PATCH","/users/{param}/mailFolders/{param}/childFolders/{param}","keep",,"Update-MgUserMailFolderChildFolder","Update-MgUserMailFolderChildFolder" +"PATCH","/users/{param}/mailFolders/{param}/childFolders/{param}/messageRules/{param}","keep",,"Update-MgUserMailFolderChildFolderMessageRule","Update-MgUserMailFolderChildFolderMessageRule" +"PATCH","/users/{param}/mailFolders/{param}/childFolders/{param}/messages/{param}","keep",,"Update-MgUserMailFolderChildFolderMessage","Update-MgUserMailFolderChildFolderMessage" +"PATCH","/users/{param}/mailFolders/{param}/childFolders/{param}/messages/{param}/extensions/{param}","keep",,"Update-MgUserMailFolderChildFolderMessageExtension","Update-MgUserMailFolderChildFolderMessageExtension" +"PATCH","/users/{param}/mailFolders/{param}/messageRules/{param}","keep",,"Update-MgUserMailFolderMessageRule","Update-MgUserMailFolderMessageRule" +"PATCH","/users/{param}/mailFolders/{param}/messages/{param}","keep",,"Update-MgUserMailFolderMessage","Update-MgUserMailFolderMessage" +"PATCH","/users/{param}/mailFolders/{param}/messages/{param}/extensions/{param}","keep",,"Update-MgUserMailFolderMessageExtension","Update-MgUserMailFolderMessageExtension" +"PATCH","/users/{param}/managedDevices/{param}","keep",,"Update-MgUserManagedDevice","Update-MgUserManagedDevice" +"PATCH","/users/{param}/managedDevices/{param}/deviceCategory","keep",,"Update-MgUserManagedDeviceCategory","Update-MgUserManagedDeviceCategory" +"PATCH","/users/{param}/managedDevices/{param}/deviceCompliancePolicyStates/{param}","keep",,"Update-MgUserManagedDeviceCompliancePolicyState","Update-MgUserManagedDeviceCompliancePolicyState" +"PATCH","/users/{param}/managedDevices/{param}/deviceConfigurationStates/{param}","keep",,"Update-MgUserManagedDeviceConfigurationState","Update-MgUserManagedDeviceConfigurationState" +"PATCH","/users/{param}/managedDevices/{param}/logCollectionRequests/{param}","rename","UserManagedDeviceLogCollectionResponse","Update-MgUserManagedDeviceLogCollectionRequest","Update-MgUserManagedDeviceLogCollectionResponse" +"PATCH","/users/{param}/managedDevices/{param}/windowsProtectionState","keep",,"Update-MgUserManagedDeviceWindowsProtectionState","Update-MgUserManagedDeviceWindowsProtectionState" +"PATCH","/users/{param}/managedDevices/{param}/windowsProtectionState/detectedMalwareState/{param}","keep",,"Update-MgUserManagedDeviceWindowsProtectionStateDetectedMalwareState","Update-MgUserManagedDeviceWindowsProtectionStateDetectedMalwareState" +"PATCH","/users/{param}/messages/{param}","keep",,"Update-MgUserMessage","Update-MgUserMessage" +"PATCH","/users/{param}/messages/{param}/extensions/{param}","keep",,"Update-MgUserMessageExtension","Update-MgUserMessageExtension" +"PATCH","/users/{param}/onenote","keep",,"Update-MgUserOnenote","Update-MgUserOnenote" +"PATCH","/users/{param}/onenote/notebooks/{param}","keep",,"Update-MgUserOnenoteNotebook","Update-MgUserOnenoteNotebook" +"PATCH","/users/{param}/onenote/notebooks/{param}/sectionGroups/{param}","keep",,"Update-MgUserOnenoteNotebookSectionGroup","Update-MgUserOnenoteNotebookSectionGroup" +"PATCH","/users/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}","keep",,"Update-MgUserOnenoteNotebookSectionGroupSection","Update-MgUserOnenoteNotebookSectionGroupSection" +"PATCH","/users/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}","suppress",,"Update-MgUserOnenoteNotebookSectionGroupSectionPage","no oracle row; 'Update-MgUserOnenoteNotebookSectionGroupSectionPage' ships from sibling family (see rename entries for this noun)" +"PATCH","/users/{param}/onenote/notebooks/{param}/sections/{param}","keep",,"Update-MgUserOnenoteNotebookSection","Update-MgUserOnenoteNotebookSection" +"PATCH","/users/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}","suppress",,"Update-MgUserOnenoteNotebookSectionPage","no oracle row; 'Update-MgUserOnenoteNotebookSectionPage' ships from sibling family (see rename entries for this noun)" +"PATCH","/users/{param}/onenote/operations/{param}","keep",,"Update-MgUserOnenoteOperation","Update-MgUserOnenoteOperation" +"PATCH","/users/{param}/onenote/pages/{param}","suppress",,"Update-MgUserOnenotePage","no oracle row; 'Update-MgUserOnenotePage' ships from sibling family (see rename entries for this noun)" +"PATCH","/users/{param}/onenote/resources/{param}","keep",,"Update-MgUserOnenoteResource","Update-MgUserOnenoteResource" +"PATCH","/users/{param}/onenote/sectionGroups/{param}","keep",,"Update-MgUserOnenoteSectionGroup","Update-MgUserOnenoteSectionGroup" +"PATCH","/users/{param}/onenote/sectionGroups/{param}/sections/{param}","keep",,"Update-MgUserOnenoteSectionGroupSection","Update-MgUserOnenoteSectionGroupSection" +"PATCH","/users/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}","suppress",,"Update-MgUserOnenoteSectionGroupSectionPage","no oracle row; 'Update-MgUserOnenoteSectionGroupSectionPage' ships from sibling family (see rename entries for this noun)" +"PATCH","/users/{param}/onenote/sections/{param}","keep",,"Update-MgUserOnenoteSection","Update-MgUserOnenoteSection" +"PATCH","/users/{param}/onenote/sections/{param}/pages/{param}","suppress",,"Update-MgUserOnenoteSectionPage","no oracle row; 'Update-MgUserOnenoteSectionPage' ships from sibling family (see rename entries for this noun)" +"PATCH","/users/{param}/onlineMeetings/{param}","keep",,"Update-MgUserOnlineMeeting","Update-MgUserOnlineMeeting" +"PATCH","/users/{param}/onlineMeetings/{param}/attendanceReports/{param}","keep",,"Update-MgUserOnlineMeetingAttendanceReport","Update-MgUserOnlineMeetingAttendanceReport" +"PATCH","/users/{param}/onlineMeetings/{param}/attendanceReports/{param}/attendanceRecords/{param}","keep",,"Update-MgUserOnlineMeetingAttendanceReportAttendanceRecord","Update-MgUserOnlineMeetingAttendanceReportAttendanceRecord" +"PATCH","/users/{param}/onlineMeetings/{param}/recordings/{param}","keep",,"Update-MgUserOnlineMeetingRecording","Update-MgUserOnlineMeetingRecording" +"PATCH","/users/{param}/onlineMeetings/{param}/transcripts/{param}","keep",,"Update-MgUserOnlineMeetingTranscript","Update-MgUserOnlineMeetingTranscript" +"PATCH","/users/{param}/onPremisesSyncBehavior","keep",,"Update-MgUserOnPremiseSyncBehavior","Update-MgUserOnPremiseSyncBehavior" +"PATCH","/users/{param}/outlook/masterCategories/{param}","keep",,"Update-MgUserOutlookMasterCategory","Update-MgUserOutlookMasterCategory" +"PATCH","/users/{param}/photo","suppress",,"Update-MgUserPhoto","no oracle row for PATCH /users/{param}/photo and 'Update-MgUserPhoto' unshipped" +"PATCH","/users/{param}/planner","keep",,"Update-MgUserPlanner","Update-MgUserPlanner" +"PATCH","/users/{param}/planner/plans/{param}","suppress",,"Update-MgUserPlannerPlan","no oracle row for PATCH /users/{param}/planner/plans/{param} and 'Update-MgUserPlannerPlan' unshipped" +"PATCH","/users/{param}/planner/plans/{param}/buckets/{param}","suppress",,"Update-MgUserPlannerPlanBucket","no oracle row for PATCH /users/{param}/planner/plans/{param}/buckets/{param} and 'Update-MgUserPlannerPlanBucket' unshipped" +"PATCH","/users/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}","suppress",,"Update-MgUserPlannerPlanBucketTask","no oracle row for PATCH /users/{param}/planner/plans/{param}/buckets/{param}/tasks/{param} and 'Update-MgUserPlannerPlanBucketTask' unshipped" +"PATCH","/users/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/assignedToTaskBoardFormat","suppress",,"Update-MgUserPlannerPlanBucketTaskAssignedToTaskBoardFormat","no oracle row for PATCH /users/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/assignedToTaskBoardFormat and 'Update-MgUserPlannerPlanBucketTaskAssignedToTaskBoardFormat' unshipped" +"PATCH","/users/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/bucketTaskBoardFormat","suppress",,"Update-MgUserPlannerPlanBucketTaskBucketTaskBoardFormat","no oracle row for PATCH /users/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/bucketTaskBoardFormat and 'Update-MgUserPlannerPlanBucketTaskBucketTaskBoardFormat' unshipped" +"PATCH","/users/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/details","suppress",,"Update-MgUserPlannerPlanBucketTaskDetail","no oracle row for PATCH /users/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/details and 'Update-MgUserPlannerPlanBucketTaskDetail' unshipped" +"PATCH","/users/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/progressTaskBoardFormat","suppress",,"Update-MgUserPlannerPlanBucketTaskProgressTaskBoardFormat","no oracle row for PATCH /users/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/progressTaskBoardFormat and 'Update-MgUserPlannerPlanBucketTaskProgressTaskBoardFormat' unshipped" +"PATCH","/users/{param}/planner/plans/{param}/details","suppress",,"Update-MgUserPlannerPlanDetail","no oracle row for PATCH /users/{param}/planner/plans/{param}/details and 'Update-MgUserPlannerPlanDetail' unshipped" +"PATCH","/users/{param}/planner/plans/{param}/tasks/{param}","suppress",,"Update-MgUserPlannerPlanTask","no oracle row for PATCH /users/{param}/planner/plans/{param}/tasks/{param} and 'Update-MgUserPlannerPlanTask' unshipped" +"PATCH","/users/{param}/planner/plans/{param}/tasks/{param}/assignedToTaskBoardFormat","suppress",,"Update-MgUserPlannerPlanTaskAssignedToTaskBoardFormat","no oracle row for PATCH /users/{param}/planner/plans/{param}/tasks/{param}/assignedToTaskBoardFormat and 'Update-MgUserPlannerPlanTaskAssignedToTaskBoardFormat' unshipped" +"PATCH","/users/{param}/planner/plans/{param}/tasks/{param}/bucketTaskBoardFormat","suppress",,"Update-MgUserPlannerPlanTaskBucketTaskBoardFormat","no oracle row for PATCH /users/{param}/planner/plans/{param}/tasks/{param}/bucketTaskBoardFormat and 'Update-MgUserPlannerPlanTaskBucketTaskBoardFormat' unshipped" +"PATCH","/users/{param}/planner/plans/{param}/tasks/{param}/details","suppress",,"Update-MgUserPlannerPlanTaskDetail","no oracle row for PATCH /users/{param}/planner/plans/{param}/tasks/{param}/details and 'Update-MgUserPlannerPlanTaskDetail' unshipped" +"PATCH","/users/{param}/planner/plans/{param}/tasks/{param}/progressTaskBoardFormat","suppress",,"Update-MgUserPlannerPlanTaskProgressTaskBoardFormat","no oracle row for PATCH /users/{param}/planner/plans/{param}/tasks/{param}/progressTaskBoardFormat and 'Update-MgUserPlannerPlanTaskProgressTaskBoardFormat' unshipped" +"PATCH","/users/{param}/planner/tasks/{param}","suppress",,"Update-MgUserPlannerTask","no oracle row for PATCH /users/{param}/planner/tasks/{param} and 'Update-MgUserPlannerTask' unshipped" +"PATCH","/users/{param}/planner/tasks/{param}/assignedToTaskBoardFormat","suppress",,"Update-MgUserPlannerTaskAssignedToTaskBoardFormat","no oracle row for PATCH /users/{param}/planner/tasks/{param}/assignedToTaskBoardFormat and 'Update-MgUserPlannerTaskAssignedToTaskBoardFormat' unshipped" +"PATCH","/users/{param}/planner/tasks/{param}/bucketTaskBoardFormat","suppress",,"Update-MgUserPlannerTaskBucketTaskBoardFormat","no oracle row for PATCH /users/{param}/planner/tasks/{param}/bucketTaskBoardFormat and 'Update-MgUserPlannerTaskBucketTaskBoardFormat' unshipped" +"PATCH","/users/{param}/planner/tasks/{param}/details","suppress",,"Update-MgUserPlannerTaskDetail","no oracle row for PATCH /users/{param}/planner/tasks/{param}/details and 'Update-MgUserPlannerTaskDetail' unshipped" +"PATCH","/users/{param}/planner/tasks/{param}/progressTaskBoardFormat","suppress",,"Update-MgUserPlannerTaskProgressTaskBoardFormat","no oracle row for PATCH /users/{param}/planner/tasks/{param}/progressTaskBoardFormat and 'Update-MgUserPlannerTaskProgressTaskBoardFormat' unshipped" +"PATCH","/users/{param}/presence","keep",,"Update-MgUserPresence","Update-MgUserPresence" +"PATCH","/users/{param}/scopedRoleMemberOf/{param}","keep",,"Update-MgUserScopedRoleMemberOf","Update-MgUserScopedRoleMemberOf" +"PATCH","/users/{param}/settings","keep",,"Update-MgUserSetting","Update-MgUserSetting" +"PATCH","/users/{param}/settings/itemInsights","keep",,"Update-MgUserSettingItemInsight","Update-MgUserSettingItemInsight" +"PATCH","/users/{param}/settings/shiftPreferences","keep",,"Update-MgUserSettingShiftPreference","Update-MgUserSettingShiftPreference" +"PATCH","/users/{param}/settings/storage","keep",,"Update-MgUserSettingStorage","Update-MgUserSettingStorage" +"PATCH","/users/{param}/settings/storage/quota","keep",,"Update-MgUserSettingStorageQuota","Update-MgUserSettingStorageQuota" +"PATCH","/users/{param}/settings/storage/quota/services/{param}","keep",,"Update-MgUserSettingStorageQuotaService","Update-MgUserSettingStorageQuotaService" +"PATCH","/users/{param}/settings/windows/{param}","keep",,"Update-MgUserSettingWindows","Update-MgUserSettingWindows" +"PATCH","/users/{param}/settings/windows/{param}/instances/{param}","keep",,"Update-MgUserSettingWindowsInstance","Update-MgUserSettingWindowsInstance" +"PATCH","/users/{param}/settings/workHoursAndLocations","keep",,"Update-MgUserSettingWorkHourAndLocation","Update-MgUserSettingWorkHourAndLocation" +"PATCH","/users/{param}/teamwork","keep",,"Update-MgUserTeamwork","Update-MgUserTeamwork" +"PATCH","/users/{param}/teamwork/associatedTeams/{param}","keep",,"Update-MgUserTeamworkAssociatedTeam","Update-MgUserTeamworkAssociatedTeam" +"PATCH","/users/{param}/teamwork/installedApps/{param}","suppress",,"Update-MgUserTeamworkInstalledApp","no oracle row for PATCH /users/{param}/teamwork/installedApps/{param} and 'Update-MgUserTeamworkInstalledApp' unshipped" +"PATCH","/users/{param}/todo","suppress",,"Update-MgUserTodo","no oracle row for PATCH /users/{param}/todo and 'Update-MgUserTodo' unshipped" +"PATCH","/users/{param}/todo/lists/{param}","keep",,"Update-MgUserTodoList","Update-MgUserTodoList" +"PATCH","/users/{param}/todo/lists/{param}/extensions/{param}","keep",,"Update-MgUserTodoListExtension","Update-MgUserTodoListExtension" +"PATCH","/users/{param}/todo/lists/{param}/tasks/{param}","keep",,"Update-MgUserTodoListTask","Update-MgUserTodoListTask" +"PATCH","/users/{param}/todo/lists/{param}/tasks/{param}/attachmentSessions/{param}","keep",,"Update-MgUserTodoListTaskAttachmentSession","Update-MgUserTodoListTaskAttachmentSession" +"PATCH","/users/{param}/todo/lists/{param}/tasks/{param}/checklistItems/{param}","keep",,"Update-MgUserTodoListTaskChecklistItem","Update-MgUserTodoListTaskChecklistItem" +"PATCH","/users/{param}/todo/lists/{param}/tasks/{param}/extensions/{param}","keep",,"Update-MgUserTodoListTaskExtension","Update-MgUserTodoListTaskExtension" +"PATCH","/users/{param}/todo/lists/{param}/tasks/{param}/linkedResources/{param}","keep",,"Update-MgUserTodoListTaskLinkedResource","Update-MgUserTodoListTaskLinkedResource" +"POST","/admin/configurationManagement/configurationDrifts","keep",,"New-MgAdminConfigurationManagementConfigurationDrift","New-MgAdminConfigurationManagementConfigurationDrift" +"POST","/admin/configurationManagement/configurationMonitoringResults","keep",,"New-MgAdminConfigurationManagementConfigurationMonitoringResult","New-MgAdminConfigurationManagementConfigurationMonitoringResult" +"POST","/admin/configurationManagement/configurationMonitors","keep",,"New-MgAdminConfigurationManagementConfigurationMonitor","New-MgAdminConfigurationManagementConfigurationMonitor" +"POST","/admin/configurationManagement/configurationSnapshotJobs","keep",,"New-MgAdminConfigurationManagementConfigurationSnapshotJob","New-MgAdminConfigurationManagementConfigurationSnapshotJob" +"POST","/admin/configurationManagement/configurationSnapshots","keep",,"New-MgAdminConfigurationManagementConfigurationSnapshot","New-MgAdminConfigurationManagementConfigurationSnapshot" +"POST","/admin/edge/internetExplorerMode/siteLists","keep",,"New-MgAdminEdgeInternetExplorerModeSiteList","New-MgAdminEdgeInternetExplorerModeSiteList" +"POST","/admin/edge/internetExplorerMode/siteLists/{param}/publish","rename","AdminEdgeInternetExplorerModeSiteList","Invoke-MgAdminEdgeInternetExplorerModeSiteListPublish","Publish-MgAdminEdgeInternetExplorerModeSiteList" +"POST","/admin/edge/internetExplorerMode/siteLists/{param}/sharedCookies","keep",,"New-MgAdminEdgeInternetExplorerModeSiteListSharedCookie","New-MgAdminEdgeInternetExplorerModeSiteListSharedCookie" +"POST","/admin/edge/internetExplorerMode/siteLists/{param}/sites","keep",,"New-MgAdminEdgeInternetExplorerModeSiteListSite","New-MgAdminEdgeInternetExplorerModeSiteListSite" +"POST","/admin/people/profileCardProperties","keep",,"New-MgAdminPeopleProfileCardProperty","New-MgAdminPeopleProfileCardProperty" +"POST","/admin/people/profilePropertySettings","keep",,"New-MgAdminPeopleProfilePropertySetting","New-MgAdminPeopleProfilePropertySetting" +"POST","/admin/people/profileSources","keep",,"New-MgAdminPeopleProfileSource","New-MgAdminPeopleProfileSource" +"POST","/admin/serviceAnnouncement/healthOverviews","suppress",,"New-MgAdminServiceAnnouncementHealthOverview","no oracle row for POST /admin/serviceAnnouncement/healthOverviews and 'New-MgAdminServiceAnnouncementHealthOverview' unshipped" +"POST","/admin/serviceAnnouncement/healthOverviews/{param}/issues","suppress",,"New-MgAdminServiceAnnouncementHealthOverviewIssue","no oracle row for POST /admin/serviceAnnouncement/healthOverviews/{param}/issues and 'New-MgAdminServiceAnnouncementHealthOverviewIssue' unshipped" +"POST","/admin/serviceAnnouncement/issues","suppress",,"New-MgAdminServiceAnnouncementIssue","no oracle row for POST /admin/serviceAnnouncement/issues and 'New-MgAdminServiceAnnouncementIssue' unshipped" +"POST","/admin/serviceAnnouncement/messages","suppress",,"New-MgAdminServiceAnnouncementMessage","no oracle row for POST /admin/serviceAnnouncement/messages and 'New-MgAdminServiceAnnouncementMessage' unshipped" +"POST","/admin/serviceAnnouncement/messages/{param}/attachments","suppress",,"New-MgAdminServiceAnnouncementMessageAttachment","no oracle row for POST /admin/serviceAnnouncement/messages/{param}/attachments and 'New-MgAdminServiceAnnouncementMessageAttachment' unshipped" +"POST","/admin/serviceAnnouncement/messages/archive","rename","ArchiveServiceAnnouncementMessage","Invoke-MgAdminServiceAnnouncementMessageArchive","Invoke-MgArchiveServiceAnnouncementMessage" +"POST","/admin/serviceAnnouncement/messages/favorite","rename","FavoriteServiceAnnouncementMessage","Invoke-MgAdminServiceAnnouncementMessageFavorite","Invoke-MgFavoriteServiceAnnouncementMessage" +"POST","/admin/serviceAnnouncement/messages/markRead","rename","MarkServiceAnnouncementMessageRead","Invoke-MgAdminServiceAnnouncementMessageMarkRead","Invoke-MgMarkServiceAnnouncementMessageRead" +"POST","/admin/serviceAnnouncement/messages/markUnread","rename","MarkServiceAnnouncementMessageUnread","Invoke-MgAdminServiceAnnouncementMessageMarkUnread","Invoke-MgMarkServiceAnnouncementMessageUnread" +"POST","/admin/serviceAnnouncement/messages/unarchive","rename","UnarchiveServiceAnnouncementMessage","Invoke-MgAdminServiceAnnouncementMessageUnarchive","Invoke-MgUnarchiveServiceAnnouncementMessage" +"POST","/admin/serviceAnnouncement/messages/unfavorite","rename","UnfavoriteServiceAnnouncementMessage","Invoke-MgAdminServiceAnnouncementMessageUnfavorite","Invoke-MgUnfavoriteServiceAnnouncementMessage" +"POST","/agreements","keep",,"New-MgAgreement","New-MgAgreement" +"POST","/agreements/{param}/acceptances","keep",,"New-MgAgreementAcceptance","New-MgAgreementAcceptance" +"POST","/agreements/{param}/file/localizations","keep",,"New-MgAgreementFileLocalization","New-MgAgreementFileLocalization" +"POST","/agreements/{param}/file/localizations/{param}/versions","keep",,"New-MgAgreementFileLocalizationVersion","New-MgAgreementFileLocalizationVersion" +"POST","/agreements/{param}/files","keep",,"New-MgAgreementFile","New-MgAgreementFile" +"POST","/agreements/{param}/files/{param}/versions","keep",,"New-MgAgreementFileVersion","New-MgAgreementFileVersion" +"POST","/appCatalogs/teamsApps","keep",,"New-MgAppCatalogTeamApp","New-MgAppCatalogTeamApp" +"POST","/appCatalogs/teamsApps/{param}/appDefinitions","keep",,"New-MgAppCatalogTeamAppDefinition","New-MgAppCatalogTeamAppDefinition" +"POST","/applications","keep",,"New-MgApplication","New-MgApplication" +"POST","/applications/{param}/addKey","rename","ApplicationKey","Invoke-MgApplicationAddKey","Add-MgApplicationKey" +"POST","/applications/{param}/addPassword","rename","ApplicationPassword","Invoke-MgApplicationAddPassword","Add-MgApplicationPassword" +"POST","/applications/{param}/appManagementPolicies/$ref","keep",,"New-MgApplicationAppManagementPolicyByRef","New-MgApplicationAppManagementPolicyByRef" +"POST","/applications/{param}/checkMemberGroups","rename","ApplicationMemberGroup","Invoke-MgApplicationCheckMemberGroups","Confirm-MgApplicationMemberGroup" +"POST","/applications/{param}/checkMemberObjects","rename","ApplicationMemberObject","Invoke-MgApplicationCheckMemberObjects","Confirm-MgApplicationMemberObject" +"POST","/applications/{param}/extensionProperties","keep",,"New-MgApplicationExtensionProperty","New-MgApplicationExtensionProperty" +"POST","/applications/{param}/federatedIdentityCredentials","keep",,"New-MgApplicationFederatedIdentityCredential","New-MgApplicationFederatedIdentityCredential" +"POST","/applications/{param}/getMemberGroups","rename","ApplicationMemberGroup","Invoke-MgApplicationGetMemberGroups","Get-MgApplicationMemberGroup" +"POST","/applications/{param}/getMemberObjects","rename","ApplicationMemberObject","Invoke-MgApplicationGetMemberObjects","Get-MgApplicationMemberObject" +"POST","/applications/{param}/owners/$ref","keep",,"New-MgApplicationOwnerByRef","New-MgApplicationOwnerByRef" +"POST","/applications/{param}/removeKey","rename","ApplicationKey","Invoke-MgApplicationRemoveKey","Remove-MgApplicationKey" +"POST","/applications/{param}/removePassword","rename","ApplicationPassword","Invoke-MgApplicationRemovePassword","Remove-MgApplicationPassword" +"POST","/applications/{param}/restore","suppress",,"Invoke-MgApplicationRestore","no oracle row for POST /applications/{param}/restore and 'Invoke-MgApplicationRestore' unshipped" +"POST","/applications/{param}/setVerifiedPublisher","rename","ApplicationVerifiedPublisher","Invoke-MgApplicationSetVerifiedPublisher","Set-MgApplicationVerifiedPublisher" +"POST","/applications/{param}/synchronization/acquireAccessToken","rename","ApplicationSynchronizationAccessToken","Invoke-MgApplicationSynchronizationAcquireAccessToken","Get-MgApplicationSynchronizationAccessToken" +"POST","/applications/{param}/synchronization/jobs","keep",,"New-MgApplicationSynchronizationJob","New-MgApplicationSynchronizationJob" +"POST","/applications/{param}/synchronization/jobs/{param}/pause","rename","ApplicationSynchronizationJob","Invoke-MgApplicationSynchronizationJobPause","Suspend-MgApplicationSynchronizationJob" +"POST","/applications/{param}/synchronization/jobs/{param}/provisionOnDemand","rename","ApplicationSynchronizationJobOnDemand","Invoke-MgApplicationSynchronizationJobProvisionOnDemand","New-MgApplicationSynchronizationJobOnDemand" +"POST","/applications/{param}/synchronization/jobs/{param}/restart","rename","ApplicationSynchronizationJob","Invoke-MgApplicationSynchronizationJobRestart","Restart-MgApplicationSynchronizationJob" +"POST","/applications/{param}/synchronization/jobs/{param}/schema/directories","keep",,"New-MgApplicationSynchronizationJobSchemaDirectory","New-MgApplicationSynchronizationJobSchemaDirectory" +"POST","/applications/{param}/synchronization/jobs/{param}/schema/directories/{param}/discover","rename","ApplicationSynchronizationJobSchemaDirectory","Invoke-MgApplicationSynchronizationJobSchemaDirectoryDiscover","Find-MgApplicationSynchronizationJobSchemaDirectory" +"POST","/applications/{param}/synchronization/jobs/{param}/schema/parseExpression","rename","ParseApplicationSynchronizationJobSchemaExpression","Invoke-MgApplicationSynchronizationJobSchemaParseExpression","Invoke-MgParseApplicationSynchronizationJobSchemaExpression" +"POST","/applications/{param}/synchronization/jobs/{param}/start","rename","ApplicationSynchronizationJob","Invoke-MgApplicationSynchronizationJobStart","Start-MgApplicationSynchronizationJob" +"POST","/applications/{param}/synchronization/jobs/{param}/validateCredentials","rename","ApplicationSynchronizationJobCredential","Invoke-MgApplicationSynchronizationJobValidateCredentials","Test-MgApplicationSynchronizationJobCredential" +"POST","/applications/{param}/synchronization/templates","keep",,"New-MgApplicationSynchronizationTemplate","New-MgApplicationSynchronizationTemplate" +"POST","/applications/{param}/synchronization/templates/{param}/schema/directories","keep",,"New-MgApplicationSynchronizationTemplateSchemaDirectory","New-MgApplicationSynchronizationTemplateSchemaDirectory" +"POST","/applications/{param}/synchronization/templates/{param}/schema/directories/{param}/discover","rename","ApplicationSynchronizationTemplateSchemaDirectory","Invoke-MgApplicationSynchronizationTemplateSchemaDirectoryDiscover","Find-MgApplicationSynchronizationTemplateSchemaDirectory" +"POST","/applications/{param}/synchronization/templates/{param}/schema/parseExpression","rename","ParseApplicationSynchronizationTemplateSchemaExpression","Invoke-MgApplicationSynchronizationTemplateSchemaParseExpression","Invoke-MgParseApplicationSynchronizationTemplateSchemaExpression" +"POST","/applications/{param}/tokenIssuancePolicies/$ref","keep",,"New-MgApplicationTokenIssuancePolicyByRef","New-MgApplicationTokenIssuancePolicyByRef" +"POST","/applications/{param}/tokenLifetimePolicies/$ref","keep",,"New-MgApplicationTokenLifetimePolicyByRef","New-MgApplicationTokenLifetimePolicyByRef" +"POST","/applications/{param}/unsetVerifiedPublisher","rename","ApplicationVerifiedPublisher","Invoke-MgApplicationUnsetVerifiedPublisher","Clear-MgApplicationVerifiedPublisher" +"POST","/applications/getAvailableExtensionProperties","suppress",,"Invoke-MgApplicationGetAvailableExtensionProperties","no oracle row for POST /applications/getAvailableExtensionProperties and 'Invoke-MgApplicationGetAvailableExtensionProperties' unshipped" +"POST","/applications/getByIds","rename","ApplicationById","Invoke-MgApplicationGetByIds","Get-MgApplicationById" +"POST","/applications/validateProperties","rename","ApplicationProperty","Invoke-MgApplicationValidateProperties","Test-MgApplicationProperty" +"POST","/applicationTemplates/{param}/instantiate","rename","InstantiateApplicationTemplate","Invoke-MgApplicationTemplateInstantiate","Invoke-MgInstantiateApplicationTemplate" +"POST","/auditLogs/directoryAudits","suppress",,"New-MgAuditLogDirectoryAudit","no oracle row for POST /auditLogs/directoryAudits and 'New-MgAuditLogDirectoryAudit' unshipped" +"POST","/auditLogs/provisioning","suppress",,"New-MgAuditLogProvisioning","no oracle row for POST /auditLogs/provisioning and 'New-MgAuditLogProvisioning' unshipped" +"POST","/auditLogs/signIns","suppress",,"New-MgAuditLogSignIn","no oracle row for POST /auditLogs/signIns and 'New-MgAuditLogSignIn' unshipped" +"POST","/auditLogs/signIns/confirmCompromised","rename","AuditLogSignInCompromised","Invoke-MgAuditLogSignInConfirmCompromised","Confirm-MgAuditLogSignInCompromised" +"POST","/auditLogs/signIns/confirmSafe","rename","AuditLogSignInSafe","Invoke-MgAuditLogSignInConfirmSafe","Confirm-MgAuditLogSignInSafe" +"POST","/auditLogs/signIns/dismiss","rename","DismissAuditLogSignIn","Invoke-MgAuditLogSignInDismiss","Invoke-MgDismissAuditLogSignIn" +"POST","/chats","keep",,"New-MgChat","New-MgChat" +"POST","/chats/{param}/completeMigration","rename","ChatMigration","Invoke-MgChatCompleteMigration","Complete-MgChatMigration" +"POST","/chats/{param}/hideForUser","rename","ChatForUser","Invoke-MgChatHideForUser","Hide-MgChatForUser" +"POST","/chats/{param}/installedApps","keep",,"New-MgChatInstalledApp","New-MgChatInstalledApp" +"POST","/chats/{param}/installedApps/{param}/upgrade","rename","ChatInstalledApp","Invoke-MgChatInstalledAppUpgrade","Update-MgChatInstalledApp" +"POST","/chats/{param}/markChatReadForUser","rename","MarkChatReadForUser","Invoke-MgChatMarkChatReadForUser","Invoke-MgMarkChatReadForUser" +"POST","/chats/{param}/markChatUnreadForUser","rename","MarkChatUnreadForUser","Invoke-MgChatMarkChatUnreadForUser","Invoke-MgMarkChatUnreadForUser" +"POST","/chats/{param}/members","keep",,"New-MgChatMember","New-MgChatMember" +"POST","/chats/{param}/members/add","rename","ChatMember","Invoke-MgChatMemberAdd","Add-MgChatMember" +"POST","/chats/{param}/members/remove","suppress",,"Invoke-MgChatMemberRemove","no oracle row for POST /chats/{param}/members/remove and 'Invoke-MgChatMemberRemove' unshipped" +"POST","/chats/{param}/messages","keep",,"New-MgChatMessage","New-MgChatMessage" +"POST","/chats/{param}/messages/{param}/hostedContents","keep",,"New-MgChatMessageHostedContent","New-MgChatMessageHostedContent" +"POST","/chats/{param}/messages/{param}/replies","keep",,"New-MgChatMessageReply","New-MgChatMessageReply" +"POST","/chats/{param}/messages/{param}/replies/{param}/hostedContents","keep",,"New-MgChatMessageReplyHostedContent","New-MgChatMessageReplyHostedContent" +"POST","/chats/{param}/messages/{param}/replies/{param}/setReaction","rename","ChatMessageReplyReaction","Invoke-MgChatMessageReplySetReaction","Set-MgChatMessageReplyReaction" +"POST","/chats/{param}/messages/{param}/replies/{param}/softDelete","rename","SoftChatMessageReplyDelete","Invoke-MgChatMessageReplySoftDelete","Invoke-MgSoftChatMessageReplyDelete" +"POST","/chats/{param}/messages/{param}/replies/{param}/undoSoftDelete","rename","ChatMessageReplySoftDelete","Invoke-MgChatMessageReplyUndoSoftDelete","Undo-MgChatMessageReplySoftDelete" +"POST","/chats/{param}/messages/{param}/replies/{param}/unsetReaction","rename","ChatMessageReplyReaction","Invoke-MgChatMessageReplyUnsetReaction","Clear-MgChatMessageReplyReaction" +"POST","/chats/{param}/messages/{param}/replies/replyWithQuote","rename","GraphChatMessageReply","Invoke-MgChatMessageReplyReplyWithQuote","Invoke-MgGraphChatMessageReply" +"POST","/chats/{param}/messages/{param}/setReaction","rename","ChatMessageReaction","Invoke-MgChatMessageSetReaction","Set-MgChatMessageReaction" +"POST","/chats/{param}/messages/{param}/softDelete","rename","SoftChatMessageDelete","Invoke-MgChatMessageSoftDelete","Invoke-MgSoftChatMessageDelete" +"POST","/chats/{param}/messages/{param}/undoSoftDelete","rename","ChatMessageSoftDelete","Invoke-MgChatMessageUndoSoftDelete","Undo-MgChatMessageSoftDelete" +"POST","/chats/{param}/messages/{param}/unsetReaction","rename","ChatMessageReaction","Invoke-MgChatMessageUnsetReaction","Clear-MgChatMessageReaction" +"POST","/chats/{param}/messages/replyWithQuote","rename","GraphChatMessage","Invoke-MgChatMessageReplyWithQuote","Invoke-MgGraphChatMessage" +"POST","/chats/{param}/permissionGrants","keep",,"New-MgChatPermissionGrant","New-MgChatPermissionGrant" +"POST","/chats/{param}/pinnedMessages","keep",,"New-MgChatPinnedMessage","New-MgChatPinnedMessage" +"POST","/chats/{param}/removeAllAccessForUser","rename","ChatAccessForUser","Invoke-MgChatRemoveAllAccessForUser","Remove-MgChatAccessForUser" +"POST","/chats/{param}/sendActivityNotification","rename","ChatActivityNotification","Invoke-MgChatSendActivityNotification","Send-MgChatActivityNotification" +"POST","/chats/{param}/startMigration","rename","ChatMigration","Invoke-MgChatStartMigration","Start-MgChatMigration" +"POST","/chats/{param}/tabs","keep",,"New-MgChatTab","New-MgChatTab" +"POST","/chats/{param}/targetedMessages","keep",,"New-MgChatTargetedMessage","New-MgChatTargetedMessage" +"POST","/chats/{param}/targetedMessages/{param}/hostedContents","keep",,"New-MgChatTargetedMessageHostedContent","New-MgChatTargetedMessageHostedContent" +"POST","/chats/{param}/targetedMessages/{param}/replies","keep",,"New-MgChatTargetedMessageReply","New-MgChatTargetedMessageReply" +"POST","/chats/{param}/targetedMessages/{param}/replies/{param}/hostedContents","keep",,"New-MgChatTargetedMessageReplyHostedContent","New-MgChatTargetedMessageReplyHostedContent" +"POST","/chats/{param}/targetedMessages/{param}/replies/{param}/setReaction","rename","ChatTargetedMessageReplyReaction","Invoke-MgChatTargetedMessageReplySetReaction","Set-MgChatTargetedMessageReplyReaction" +"POST","/chats/{param}/targetedMessages/{param}/replies/{param}/softDelete","rename","SoftChatTargetedMessageReplyDelete","Invoke-MgChatTargetedMessageReplySoftDelete","Invoke-MgSoftChatTargetedMessageReplyDelete" +"POST","/chats/{param}/targetedMessages/{param}/replies/{param}/undoSoftDelete","rename","ChatTargetedMessageReplySoftDelete","Invoke-MgChatTargetedMessageReplyUndoSoftDelete","Undo-MgChatTargetedMessageReplySoftDelete" +"POST","/chats/{param}/targetedMessages/{param}/replies/{param}/unsetReaction","rename","ChatTargetedMessageReplyReaction","Invoke-MgChatTargetedMessageReplyUnsetReaction","Clear-MgChatTargetedMessageReplyReaction" +"POST","/chats/{param}/targetedMessages/{param}/replies/replyWithQuote","rename","GraphChatTargetedMessageReply","Invoke-MgChatTargetedMessageReplyReplyWithQuote","Invoke-MgGraphChatTargetedMessageReply" +"POST","/chats/{param}/unhideForUser","rename","GraphChat","Invoke-MgChatUnhideForUser","Invoke-MgGraphChat" +"POST","/communications/adhocCalls","keep",,"New-MgCommunicationAdhocCall","New-MgCommunicationAdhocCall" +"POST","/communications/adhocCalls/{param}/recordings","keep",,"New-MgCommunicationAdhocCallRecording","New-MgCommunicationAdhocCallRecording" +"POST","/communications/adhocCalls/{param}/transcripts","keep",,"New-MgCommunicationAdhocCallTranscript","New-MgCommunicationAdhocCallTranscript" +"POST","/communications/callRecords","suppress",,"New-MgCommunicationCallRecord","no oracle row for POST /communications/callRecords and 'New-MgCommunicationCallRecord' unshipped" +"POST","/communications/callRecords/{param}/sessions","keep",,"New-MgCommunicationCallRecordSession","New-MgCommunicationCallRecordSession" +"POST","/communications/callRecords/{param}/sessions/{param}/segments","suppress",,"New-MgCommunicationCallRecordSessionSegment","no oracle row for POST /communications/callRecords/{param}/sessions/{param}/segments and 'New-MgCommunicationCallRecordSessionSegment' unshipped" +"POST","/communications/calls","keep",,"New-MgCommunicationCall","New-MgCommunicationCall" +"POST","/communications/calls/{param}/addLargeGalleryView","rename","CommunicationCallLargeGalleryView","Invoke-MgCommunicationCallAddLargeGalleryView","Add-MgCommunicationCallLargeGalleryView" +"POST","/communications/calls/{param}/answer","rename","AnswerCommunicationCall","Invoke-MgCommunicationCallAnswer","Invoke-MgAnswerCommunicationCall" +"POST","/communications/calls/{param}/audioRoutingGroups","keep",,"New-MgCommunicationCallAudioRoutingGroup","New-MgCommunicationCallAudioRoutingGroup" +"POST","/communications/calls/{param}/cancelMediaProcessing","rename","CommunicationCallMediaProcessing","Invoke-MgCommunicationCallCancelMediaProcessing","Stop-MgCommunicationCallMediaProcessing" +"POST","/communications/calls/{param}/changeScreenSharingRole","rename","CommunicationCallScreenSharingRole","Invoke-MgCommunicationCallChangeScreenSharingRole","Rename-MgCommunicationCallScreenSharingRole" +"POST","/communications/calls/{param}/contentSharingSessions","keep",,"New-MgCommunicationCallContentSharingSession","New-MgCommunicationCallContentSharingSession" +"POST","/communications/calls/{param}/keepAlive","rename","KeepCommunicationCallAlive","Invoke-MgCommunicationCallKeepAlive","Invoke-MgKeepCommunicationCallAlive" +"POST","/communications/calls/{param}/mute","rename","MuteCommunicationCall","Invoke-MgCommunicationCallMute","Invoke-MgMuteCommunicationCall" +"POST","/communications/calls/{param}/operations","keep",,"New-MgCommunicationCallOperation","New-MgCommunicationCallOperation" +"POST","/communications/calls/{param}/participants","keep",,"New-MgCommunicationCallParticipant","New-MgCommunicationCallParticipant" +"POST","/communications/calls/{param}/participants/{param}/mute","rename","MuteCommunicationCallParticipant","Invoke-MgCommunicationCallParticipantMute","Invoke-MgMuteCommunicationCallParticipant" +"POST","/communications/calls/{param}/participants/{param}/startHoldMusic","rename","CommunicationCallParticipantHoldMusic","Invoke-MgCommunicationCallParticipantStartHoldMusic","Start-MgCommunicationCallParticipantHoldMusic" +"POST","/communications/calls/{param}/participants/{param}/stopHoldMusic","rename","CommunicationCallParticipantHoldMusic","Invoke-MgCommunicationCallParticipantStopHoldMusic","Stop-MgCommunicationCallParticipantHoldMusic" +"POST","/communications/calls/{param}/participants/invite","rename","InviteCommunicationCallParticipant","Invoke-MgCommunicationCallParticipantInvite","Invoke-MgInviteCommunicationCallParticipant" +"POST","/communications/calls/{param}/playPrompt","rename","PlayCommunicationCallPrompt","Invoke-MgCommunicationCallPlayPrompt","Invoke-MgPlayCommunicationCallPrompt" +"POST","/communications/calls/{param}/recordResponse","rename","RecordCommunicationCallResponse","Invoke-MgCommunicationCallRecordResponse","Invoke-MgRecordCommunicationCallResponse" +"POST","/communications/calls/{param}/redirect","rename","RedirectCommunicationCall","Invoke-MgCommunicationCallRedirect","Invoke-MgRedirectCommunicationCall" +"POST","/communications/calls/{param}/reject","rename","RejectCommunicationCall","Invoke-MgCommunicationCallReject","Invoke-MgRejectCommunicationCall" +"POST","/communications/calls/{param}/sendDtmfTones","rename","CommunicationCallDtmfTone","Invoke-MgCommunicationCallSendDtmfTones","Send-MgCommunicationCallDtmfTone" +"POST","/communications/calls/{param}/subscribeToTone","rename","SubscribeCommunicationCallToTone","Invoke-MgCommunicationCallSubscribeToTone","Invoke-MgSubscribeCommunicationCallToTone" +"POST","/communications/calls/{param}/transfer","rename","CommunicationCall","Invoke-MgCommunicationCallTransfer","Move-MgCommunicationCall" +"POST","/communications/calls/{param}/unmute","rename","UnmuteCommunicationCall","Invoke-MgCommunicationCallUnmute","Invoke-MgUnmuteCommunicationCall" +"POST","/communications/calls/{param}/updateRecordingStatus","rename","CommunicationCallRecordingStatus","Invoke-MgCommunicationCallUpdateRecordingStatus","Update-MgCommunicationCallRecordingStatus" +"POST","/communications/calls/logTeleconferenceDeviceQuality","rename","LogCommunicationCallTeleconferenceDeviceQuality","Invoke-MgCommunicationCallLogTeleconferenceDeviceQuality","Invoke-MgLogCommunicationCallTeleconferenceDeviceQuality" +"POST","/communications/getPresencesByUserId","rename","CommunicationPresenceByUserId","Invoke-MgCommunicationGetPresencesByUserId","Get-MgCommunicationPresenceByUserId" +"POST","/communications/onlineMeetingConversations","keep",,"New-MgCommunicationOnlineMeetingConversation","New-MgCommunicationOnlineMeetingConversation" +"POST","/communications/onlineMeetingConversations/{param}/messages","keep",,"New-MgCommunicationOnlineMeetingConversationMessage","New-MgCommunicationOnlineMeetingConversationMessage" +"POST","/communications/onlineMeetingConversations/{param}/messages/{param}/reactions","keep",,"New-MgCommunicationOnlineMeetingConversationMessageReaction","New-MgCommunicationOnlineMeetingConversationMessageReaction" +"POST","/communications/onlineMeetingConversations/{param}/messages/{param}/replies","keep",,"New-MgCommunicationOnlineMeetingConversationMessageReply","New-MgCommunicationOnlineMeetingConversationMessageReply" +"POST","/communications/onlineMeetingConversations/{param}/messages/{param}/replies/{param}/reactions","keep",,"New-MgCommunicationOnlineMeetingConversationMessageReplyReaction","New-MgCommunicationOnlineMeetingConversationMessageReplyReaction" +"POST","/communications/onlineMeetingConversations/{param}/starter/reactions","keep",,"New-MgCommunicationOnlineMeetingConversationStarterReaction","New-MgCommunicationOnlineMeetingConversationStarterReaction" +"POST","/communications/onlineMeetingConversations/{param}/starter/replies","keep",,"New-MgCommunicationOnlineMeetingConversationStarterReply","New-MgCommunicationOnlineMeetingConversationStarterReply" +"POST","/communications/onlineMeetingConversations/{param}/starter/replies/{param}/reactions","keep",,"New-MgCommunicationOnlineMeetingConversationStarterReplyReaction","New-MgCommunicationOnlineMeetingConversationStarterReplyReaction" +"POST","/communications/onlineMeetings","keep",,"New-MgCommunicationOnlineMeeting","New-MgCommunicationOnlineMeeting" +"POST","/communications/onlineMeetings/{param}/attendanceReports","keep",,"New-MgCommunicationOnlineMeetingAttendanceReport","New-MgCommunicationOnlineMeetingAttendanceReport" +"POST","/communications/onlineMeetings/{param}/attendanceReports/{param}/attendanceRecords","keep",,"New-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord","New-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord" +"POST","/communications/onlineMeetings/{param}/recordings","keep",,"New-MgCommunicationOnlineMeetingRecording","New-MgCommunicationOnlineMeetingRecording" +"POST","/communications/onlineMeetings/{param}/sendVirtualAppointmentReminderSms","rename","CommunicationOnlineMeetingVirtualAppointmentReminderSm","Invoke-MgCommunicationOnlineMeetingSendVirtualAppointmentReminderSms","Send-MgCommunicationOnlineMeetingVirtualAppointmentReminderSm" +"POST","/communications/onlineMeetings/{param}/sendVirtualAppointmentSms","rename","CommunicationOnlineMeetingVirtualAppointmentSm","Invoke-MgCommunicationOnlineMeetingSendVirtualAppointmentSms","Send-MgCommunicationOnlineMeetingVirtualAppointmentSm" +"POST","/communications/onlineMeetings/{param}/transcripts","keep",,"New-MgCommunicationOnlineMeetingTranscript","New-MgCommunicationOnlineMeetingTranscript" +"POST","/communications/onlineMeetings/createOrGet","rename","CreateOrGetCommunicationOnlineMeeting","Invoke-MgCommunicationOnlineMeetingCreateOrGet","Invoke-MgCreateOrGetCommunicationOnlineMeeting" +"POST","/communications/presences","keep",,"New-MgCommunicationPresence","New-MgCommunicationPresence" +"POST","/communications/presences/{param}/clearAutomaticLocation","rename","CommunicationPresenceAutomaticLocation","Invoke-MgCommunicationPresenceClearAutomaticLocation","Clear-MgCommunicationPresenceAutomaticLocation" +"POST","/communications/presences/{param}/clearLocation","rename","CommunicationPresenceLocation","Invoke-MgCommunicationPresenceClearLocation","Clear-MgCommunicationPresenceLocation" +"POST","/communications/presences/{param}/clearPresence","rename","CommunicationPresence","Invoke-MgCommunicationPresenceClearPresence","Clear-MgCommunicationPresence" +"POST","/communications/presences/{param}/clearUserPreferredPresence","rename","CommunicationPresenceUserPreferredPresence","Invoke-MgCommunicationPresenceClearUserPreferredPresence","Clear-MgCommunicationPresenceUserPreferredPresence" +"POST","/communications/presences/{param}/setAutomaticLocation","rename","CommunicationPresenceAutomaticLocation","Invoke-MgCommunicationPresenceSetAutomaticLocation","Set-MgCommunicationPresenceAutomaticLocation" +"POST","/communications/presences/{param}/setManualLocation","rename","CommunicationPresenceManualLocation","Invoke-MgCommunicationPresenceSetManualLocation","Set-MgCommunicationPresenceManualLocation" +"POST","/communications/presences/{param}/setPresence","rename","CommunicationPresence","Invoke-MgCommunicationPresenceSetPresence","Set-MgCommunicationPresence" +"POST","/communications/presences/{param}/setStatusMessage","rename","CommunicationPresenceStatusMessage","Invoke-MgCommunicationPresenceSetStatusMessage","Set-MgCommunicationPresenceStatusMessage" +"POST","/communications/presences/{param}/setUserPreferredPresence","rename","CommunicationPresenceUserPreferredPresence","Invoke-MgCommunicationPresenceSetUserPreferredPresence","Set-MgCommunicationPresenceUserPreferredPresence" +"POST","/contacts/{param}/checkMemberGroups","rename","ContactMemberGroup","Invoke-MgContactCheckMemberGroups","Confirm-MgContactMemberGroup" +"POST","/contacts/{param}/checkMemberObjects","rename","ContactMemberObject","Invoke-MgContactCheckMemberObjects","Confirm-MgContactMemberObject" +"POST","/contacts/{param}/getMemberGroups","rename","ContactMemberGroup","Invoke-MgContactGetMemberGroups","Get-MgContactMemberGroup" +"POST","/contacts/{param}/getMemberObjects","rename","ContactMemberObject","Invoke-MgContactGetMemberObjects","Get-MgContactMemberObject" +"POST","/contacts/{param}/restore","suppress",,"Invoke-MgContactRestore","no oracle row for POST /contacts/{param}/restore and 'Invoke-MgContactRestore' unshipped" +"POST","/contacts/{param}/retryServiceProvisioning","rename","RetryContactServiceProvisioning","Invoke-MgContactRetryServiceProvisioning","Invoke-MgRetryContactServiceProvisioning" +"POST","/contacts/getAvailableExtensionProperties","suppress",,"Invoke-MgContactGetAvailableExtensionProperties","no oracle row for POST /contacts/getAvailableExtensionProperties and 'Invoke-MgContactGetAvailableExtensionProperties' unshipped" +"POST","/contacts/getByIds","rename","ContactById","Invoke-MgContactGetByIds","Get-MgContactById" +"POST","/contacts/validateProperties","rename","ContactProperty","Invoke-MgContactValidateProperties","Test-MgContactProperty" +"POST","/contracts","keep",,"New-MgContract","New-MgContract" +"POST","/contracts/{param}/checkMemberGroups","rename","ContractMemberGroup","Invoke-MgContractCheckMemberGroups","Confirm-MgContractMemberGroup" +"POST","/contracts/{param}/checkMemberObjects","rename","ContractMemberObject","Invoke-MgContractCheckMemberObjects","Confirm-MgContractMemberObject" +"POST","/contracts/{param}/getMemberGroups","rename","ContractMemberGroup","Invoke-MgContractGetMemberGroups","Get-MgContractMemberGroup" +"POST","/contracts/{param}/getMemberObjects","rename","ContractMemberObject","Invoke-MgContractGetMemberObjects","Get-MgContractMemberObject" +"POST","/contracts/{param}/restore","suppress",,"Invoke-MgContractRestore","no oracle row for POST /contracts/{param}/restore and 'Invoke-MgContractRestore' unshipped" +"POST","/contracts/getAvailableExtensionProperties","suppress",,"Invoke-MgContractGetAvailableExtensionProperties","no oracle row for POST /contracts/getAvailableExtensionProperties and 'Invoke-MgContractGetAvailableExtensionProperties' unshipped" +"POST","/contracts/getByIds","rename","ContractById","Invoke-MgContractGetByIds","Get-MgContractById" +"POST","/contracts/validateProperties","rename","ContractProperty","Invoke-MgContractValidateProperties","Test-MgContractProperty" +"POST","/dataPolicyOperations","keep",,"New-MgDataPolicyOperation","New-MgDataPolicyOperation" +"POST","/deviceAppManagement/androidManagedAppProtections","keep",,"New-MgDeviceAppManagementAndroidManagedAppProtection","New-MgDeviceAppManagementAndroidManagedAppProtection" +"POST","/deviceAppManagement/androidManagedAppProtections/{param}/apps","keep",,"New-MgDeviceAppManagementAndroidManagedAppProtectionApp","New-MgDeviceAppManagementAndroidManagedAppProtectionApp" +"POST","/deviceAppManagement/androidManagedAppProtections/{param}/assignments","keep",,"New-MgDeviceAppManagementAndroidManagedAppProtectionAssignment","New-MgDeviceAppManagementAndroidManagedAppProtectionAssignment" +"POST","/deviceAppManagement/defaultManagedAppProtections","keep",,"New-MgDeviceAppManagementDefaultManagedAppProtection","New-MgDeviceAppManagementDefaultManagedAppProtection" +"POST","/deviceAppManagement/defaultManagedAppProtections/{param}/apps","keep",,"New-MgDeviceAppManagementDefaultManagedAppProtectionApp","New-MgDeviceAppManagementDefaultManagedAppProtectionApp" +"POST","/deviceAppManagement/iosManagedAppProtections","rename","DeviceAppManagementiOSManagedAppProtection","New-MgDeviceAppManagementIosManagedAppProtection","New-MgDeviceAppManagementiOSManagedAppProtection" +"POST","/deviceAppManagement/iosManagedAppProtections/{param}/apps","rename","DeviceAppManagementiOSManagedAppProtectionApp","New-MgDeviceAppManagementIosManagedAppProtectionApp","New-MgDeviceAppManagementiOSManagedAppProtectionApp" +"POST","/deviceAppManagement/iosManagedAppProtections/{param}/assignments","rename","DeviceAppManagementiOSManagedAppProtectionAssignment","New-MgDeviceAppManagementIosManagedAppProtectionAssignment","New-MgDeviceAppManagementiOSManagedAppProtectionAssignment" +"POST","/deviceAppManagement/managedAppPolicies","keep",,"New-MgDeviceAppManagementManagedAppPolicy","New-MgDeviceAppManagementManagedAppPolicy" +"POST","/deviceAppManagement/managedAppPolicies/{param}/targetApps","rename","TargetDeviceAppManagementManagedAppPolicyApp","Invoke-MgDeviceAppManagementManagedAppPolicyTargetApps","Invoke-MgTargetDeviceAppManagementManagedAppPolicyApp" +"POST","/deviceAppManagement/managedAppRegistrations","keep",,"New-MgDeviceAppManagementManagedAppRegistration","New-MgDeviceAppManagementManagedAppRegistration" +"POST","/deviceAppManagement/managedAppRegistrations/{param}/appliedPolicies","keep",,"New-MgDeviceAppManagementManagedAppRegistrationAppliedPolicy","New-MgDeviceAppManagementManagedAppRegistrationAppliedPolicy" +"POST","/deviceAppManagement/managedAppRegistrations/{param}/appliedPolicies/{param}/targetApps","rename","TargetDeviceAppManagementManagedAppRegistrationAppliedPolicyApp","Invoke-MgDeviceAppManagementManagedAppRegistrationAppliedPolicyTargetApps","Invoke-MgTargetDeviceAppManagementManagedAppRegistrationAppliedPolicyApp" +"POST","/deviceAppManagement/managedAppRegistrations/{param}/intendedPolicies","keep",,"New-MgDeviceAppManagementManagedAppRegistrationIntendedPolicy","New-MgDeviceAppManagementManagedAppRegistrationIntendedPolicy" +"POST","/deviceAppManagement/managedAppRegistrations/{param}/intendedPolicies/{param}/targetApps","rename","TargetDeviceAppManagementManagedAppRegistrationIntendedPolicyApp","Invoke-MgDeviceAppManagementManagedAppRegistrationIntendedPolicyTargetApps","Invoke-MgTargetDeviceAppManagementManagedAppRegistrationIntendedPolicyApp" +"POST","/deviceAppManagement/managedAppRegistrations/{param}/operations","keep",,"New-MgDeviceAppManagementManagedAppRegistrationOperation","New-MgDeviceAppManagementManagedAppRegistrationOperation" +"POST","/deviceAppManagement/managedAppStatuses","keep",,"New-MgDeviceAppManagementManagedAppStatus","New-MgDeviceAppManagementManagedAppStatus" +"POST","/deviceAppManagement/managedEBooks","keep",,"New-MgDeviceAppManagementManagedEBook","New-MgDeviceAppManagementManagedEBook" +"POST","/deviceAppManagement/managedEBooks/{param}/assign","rename","DeviceAppManagementManagedEBook","Invoke-MgDeviceAppManagementManagedEBookAssign","Set-MgDeviceAppManagementManagedEBook" +"POST","/deviceAppManagement/managedEBooks/{param}/assignments","keep",,"New-MgDeviceAppManagementManagedEBookAssignment","New-MgDeviceAppManagementManagedEBookAssignment" +"POST","/deviceAppManagement/managedEBooks/{param}/deviceStates","keep",,"New-MgDeviceAppManagementManagedEBookDeviceState","New-MgDeviceAppManagementManagedEBookDeviceState" +"POST","/deviceAppManagement/managedEBooks/{param}/userStateSummary","keep",,"New-MgDeviceAppManagementManagedEBookUserStateSummary","New-MgDeviceAppManagementManagedEBookUserStateSummary" +"POST","/deviceAppManagement/managedEBooks/{param}/userStateSummary/{param}/deviceStates","keep",,"New-MgDeviceAppManagementManagedEBookUserStateSummaryDeviceState","New-MgDeviceAppManagementManagedEBookUserStateSummaryDeviceState" +"POST","/deviceAppManagement/mdmWindowsInformationProtectionPolicies","keep",,"New-MgDeviceAppManagementMdmWindowsInformationProtectionPolicy","New-MgDeviceAppManagementMdmWindowsInformationProtectionPolicy" +"POST","/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{param}/assignments","keep",,"New-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyAssignment","New-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyAssignment" +"POST","/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{param}/exemptAppLockerFiles","keep",,"New-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyExemptAppLockerFile","New-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyExemptAppLockerFile" +"POST","/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{param}/protectedAppLockerFiles","keep",,"New-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyProtectedAppLockerFile","New-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyProtectedAppLockerFile" +"POST","/deviceAppManagement/mobileAppCategories","keep",,"New-MgDeviceAppManagementMobileAppCategory","New-MgDeviceAppManagementMobileAppCategory" +"POST","/deviceAppManagement/mobileAppConfigurations","keep",,"New-MgDeviceAppManagementMobileAppConfiguration","New-MgDeviceAppManagementMobileAppConfiguration" +"POST","/deviceAppManagement/mobileAppConfigurations/{param}/assign","rename","DeviceAppManagementMobileAppConfiguration","Invoke-MgDeviceAppManagementMobileAppConfigurationAssign","Set-MgDeviceAppManagementMobileAppConfiguration" +"POST","/deviceAppManagement/mobileAppConfigurations/{param}/assignments","keep",,"New-MgDeviceAppManagementMobileAppConfigurationAssignment","New-MgDeviceAppManagementMobileAppConfigurationAssignment" +"POST","/deviceAppManagement/mobileAppConfigurations/{param}/deviceStatuses","keep",,"New-MgDeviceAppManagementMobileAppConfigurationDeviceStatus","New-MgDeviceAppManagementMobileAppConfigurationDeviceStatus" +"POST","/deviceAppManagement/mobileAppConfigurations/{param}/userStatuses","keep",,"New-MgDeviceAppManagementMobileAppConfigurationUserStatus","New-MgDeviceAppManagementMobileAppConfigurationUserStatus" +"POST","/deviceAppManagement/mobileAppRelationships","keep",,"New-MgDeviceAppManagementMobileAppRelationship","New-MgDeviceAppManagementMobileAppRelationship" +"POST","/deviceAppManagement/mobileApps","keep",,"New-MgDeviceAppManagementMobileApp","New-MgDeviceAppManagementMobileApp" +"POST","/deviceAppManagement/mobileApps/{param}/assign","rename","DeviceAppManagementMobileApp","Invoke-MgDeviceAppManagementMobileAppAssign","Set-MgDeviceAppManagementMobileApp" +"POST","/deviceAppManagement/mobileApps/{param}/assignments","keep",,"New-MgDeviceAppManagementMobileAppAssignment","New-MgDeviceAppManagementMobileAppAssignment" +"POST","/deviceAppManagement/syncMicrosoftStoreForBusinessApps","rename","DeviceAppManagementMicrosoftStoreForBusinessApp","Invoke-MgDeviceAppManagementSyncMicrosoftStoreForBusinessApps","Sync-MgDeviceAppManagementMicrosoftStoreForBusinessApp" +"POST","/deviceAppManagement/targetedManagedAppConfigurations","keep",,"New-MgDeviceAppManagementTargetedManagedAppConfiguration","New-MgDeviceAppManagementTargetedManagedAppConfiguration" +"POST","/deviceAppManagement/targetedManagedAppConfigurations/{param}/apps","keep",,"New-MgDeviceAppManagementTargetedManagedAppConfigurationApp","New-MgDeviceAppManagementTargetedManagedAppConfigurationApp" +"POST","/deviceAppManagement/targetedManagedAppConfigurations/{param}/assign","rename","DeviceAppManagementTargetedManagedAppConfiguration","Invoke-MgDeviceAppManagementTargetedManagedAppConfigurationAssign","Set-MgDeviceAppManagementTargetedManagedAppConfiguration" +"POST","/deviceAppManagement/targetedManagedAppConfigurations/{param}/assignments","keep",,"New-MgDeviceAppManagementTargetedManagedAppConfigurationAssignment","New-MgDeviceAppManagementTargetedManagedAppConfigurationAssignment" +"POST","/deviceAppManagement/targetedManagedAppConfigurations/{param}/targetApps","rename","TargetDeviceAppManagementTargetedManagedAppConfigurationApp","Invoke-MgDeviceAppManagementTargetedManagedAppConfigurationTargetApps","Invoke-MgTargetDeviceAppManagementTargetedManagedAppConfigurationApp" +"POST","/deviceAppManagement/vppTokens","keep",,"New-MgDeviceAppManagementVppToken","New-MgDeviceAppManagementVppToken" +"POST","/deviceAppManagement/vppTokens/{param}/syncLicenses","rename","DeviceAppManagementVppTokenLicense","Invoke-MgDeviceAppManagementVppTokenSyncLicenses","Sync-MgDeviceAppManagementVppTokenLicense" +"POST","/deviceAppManagement/windowsInformationProtectionPolicies","keep",,"New-MgDeviceAppManagementWindowsInformationProtectionPolicy","New-MgDeviceAppManagementWindowsInformationProtectionPolicy" +"POST","/deviceAppManagement/windowsInformationProtectionPolicies/{param}/assignments","keep",,"New-MgDeviceAppManagementWindowsInformationProtectionPolicyAssignment","New-MgDeviceAppManagementWindowsInformationProtectionPolicyAssignment" +"POST","/deviceAppManagement/windowsInformationProtectionPolicies/{param}/exemptAppLockerFiles","keep",,"New-MgDeviceAppManagementWindowsInformationProtectionPolicyExemptAppLockerFile","New-MgDeviceAppManagementWindowsInformationProtectionPolicyExemptAppLockerFile" +"POST","/deviceAppManagement/windowsInformationProtectionPolicies/{param}/protectedAppLockerFiles","keep",,"New-MgDeviceAppManagementWindowsInformationProtectionPolicyProtectedAppLockerFile","New-MgDeviceAppManagementWindowsInformationProtectionPolicyProtectedAppLockerFile" +"POST","/deviceManagement/auditEvents","keep",,"New-MgDeviceManagementAuditEvent","New-MgDeviceManagementAuditEvent" +"POST","/deviceManagement/complianceManagementPartners","keep",,"New-MgDeviceManagementComplianceManagementPartner","New-MgDeviceManagementComplianceManagementPartner" +"POST","/deviceManagement/detectedApps","keep",,"New-MgDeviceManagementDetectedApp","New-MgDeviceManagementDetectedApp" +"POST","/deviceManagement/deviceCategories","keep",,"New-MgDeviceManagementDeviceCategory","New-MgDeviceManagementDeviceCategory" +"POST","/deviceManagement/deviceCompliancePolicies","keep",,"New-MgDeviceManagementDeviceCompliancePolicy","New-MgDeviceManagementDeviceCompliancePolicy" +"POST","/deviceManagement/deviceCompliancePolicies/{param}/assign","rename","DeviceManagementDeviceCompliancePolicy","Invoke-MgDeviceManagementDeviceCompliancePolicyAssign","Set-MgDeviceManagementDeviceCompliancePolicy" +"POST","/deviceManagement/deviceCompliancePolicies/{param}/assignments","keep",,"New-MgDeviceManagementDeviceCompliancePolicyAssignment","New-MgDeviceManagementDeviceCompliancePolicyAssignment" +"POST","/deviceManagement/deviceCompliancePolicies/{param}/deviceSettingStateSummaries","keep",,"New-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary","New-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary" +"POST","/deviceManagement/deviceCompliancePolicies/{param}/deviceStatuses","keep",,"New-MgDeviceManagementDeviceCompliancePolicyDeviceStatus","New-MgDeviceManagementDeviceCompliancePolicyDeviceStatus" +"POST","/deviceManagement/deviceCompliancePolicies/{param}/scheduleActionsForRules","rename","ScheduleDeviceManagementDeviceCompliancePolicyActionForRule","Invoke-MgDeviceManagementDeviceCompliancePolicyScheduleActionsForRules","Invoke-MgScheduleDeviceManagementDeviceCompliancePolicyActionForRule" +"POST","/deviceManagement/deviceCompliancePolicies/{param}/scheduledActionsForRule","keep",,"New-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule","New-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule" +"POST","/deviceManagement/deviceCompliancePolicies/{param}/scheduledActionsForRule/{param}/scheduledActionConfigurations","keep",,"New-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration","New-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration" +"POST","/deviceManagement/deviceCompliancePolicies/{param}/userStatuses","keep",,"New-MgDeviceManagementDeviceCompliancePolicyUserStatus","New-MgDeviceManagementDeviceCompliancePolicyUserStatus" +"POST","/deviceManagement/deviceCompliancePolicySettingStateSummaries","keep",,"New-MgDeviceManagementDeviceCompliancePolicySettingStateSummary","New-MgDeviceManagementDeviceCompliancePolicySettingStateSummary" +"POST","/deviceManagement/deviceCompliancePolicySettingStateSummaries/{param}/deviceComplianceSettingStates","keep",,"New-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState","New-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState" +"POST","/deviceManagement/deviceConfigurations","keep",,"New-MgDeviceManagementDeviceConfiguration","New-MgDeviceManagementDeviceConfiguration" +"POST","/deviceManagement/deviceConfigurations/{param}/assign","rename","DeviceManagementDeviceConfiguration","Invoke-MgDeviceManagementDeviceConfigurationAssign","Set-MgDeviceManagementDeviceConfiguration" +"POST","/deviceManagement/deviceConfigurations/{param}/assignments","keep",,"New-MgDeviceManagementDeviceConfigurationAssignment","New-MgDeviceManagementDeviceConfigurationAssignment" +"POST","/deviceManagement/deviceConfigurations/{param}/deviceSettingStateSummaries","keep",,"New-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary","New-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary" +"POST","/deviceManagement/deviceConfigurations/{param}/deviceStatuses","keep",,"New-MgDeviceManagementDeviceConfigurationDeviceStatus","New-MgDeviceManagementDeviceConfigurationDeviceStatus" +"POST","/deviceManagement/deviceConfigurations/{param}/userStatuses","keep",,"New-MgDeviceManagementDeviceConfigurationUserStatus","New-MgDeviceManagementDeviceConfigurationUserStatus" +"POST","/deviceManagement/deviceEnrollmentConfigurations","keep",,"New-MgDeviceManagementDeviceEnrollmentConfiguration","New-MgDeviceManagementDeviceEnrollmentConfiguration" +"POST","/deviceManagement/deviceEnrollmentConfigurations/{param}/assign","rename","DeviceManagementDeviceEnrollmentConfiguration","Invoke-MgDeviceManagementDeviceEnrollmentConfigurationAssign","Set-MgDeviceManagementDeviceEnrollmentConfiguration" +"POST","/deviceManagement/deviceEnrollmentConfigurations/{param}/assignments","keep",,"New-MgDeviceManagementDeviceEnrollmentConfigurationAssignment","New-MgDeviceManagementDeviceEnrollmentConfigurationAssignment" +"POST","/deviceManagement/deviceEnrollmentConfigurations/{param}/setPriority","rename","DeviceManagementDeviceEnrollmentConfigurationPriority","Invoke-MgDeviceManagementDeviceEnrollmentConfigurationSetPriority","Set-MgDeviceManagementDeviceEnrollmentConfigurationPriority" +"POST","/deviceManagement/deviceManagementPartners","keep",,"New-MgDeviceManagementPartner","New-MgDeviceManagementPartner" +"POST","/deviceManagement/deviceManagementPartners/{param}/terminate","rename","TerminateDeviceManagementPartner","Invoke-MgDeviceManagementDeviceManagementPartnerTerminate","Invoke-MgTerminateDeviceManagementPartner" +"POST","/deviceManagement/exchangeConnectors","keep",,"New-MgDeviceManagementExchangeConnector","New-MgDeviceManagementExchangeConnector" +"POST","/deviceManagement/exchangeConnectors/{param}/sync","rename","DeviceManagementExchangeConnector","Invoke-MgDeviceManagementExchangeConnectorSync","Sync-MgDeviceManagementExchangeConnector" +"POST","/deviceManagement/importedWindowsAutopilotDeviceIdentities","keep",,"New-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity","New-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity" +"POST","/deviceManagement/importedWindowsAutopilotDeviceIdentities/import","rename","DeviceManagementImportedWindowsAutopilotDeviceIdentity","Invoke-MgDeviceManagementImportedWindowsAutopilotDeviceIdentityImport","Import-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity" +"POST","/deviceManagement/iosUpdateStatuses","rename","DeviceManagementIoUpdateStatus","New-MgDeviceManagementIosUpdateStatus","New-MgDeviceManagementIoUpdateStatus" +"POST","/deviceManagement/managedDevices","keep",,"New-MgDeviceManagementManagedDevice","New-MgDeviceManagementManagedDevice" +"POST","/deviceManagement/managedDevices/{param}/bypassActivationLock","rename","DeviceManagementManagedDeviceActivationLock","Invoke-MgDeviceManagementManagedDeviceBypassActivationLock","Skip-MgDeviceManagementManagedDeviceActivationLock" +"POST","/deviceManagement/managedDevices/{param}/cleanWindowsDevice","rename","CleanDeviceManagementManagedDeviceWindowsDevice","Invoke-MgDeviceManagementManagedDeviceCleanWindowsDevice","Invoke-MgCleanDeviceManagementManagedDeviceWindowsDevice" +"POST","/deviceManagement/managedDevices/{param}/deleteUserFromSharedAppleDevice","rename","DeviceManagementManagedDeviceUserFromSharedAppleDevice","Invoke-MgDeviceManagementManagedDeviceDeleteUserFromSharedAppleDevice","Remove-MgDeviceManagementManagedDeviceUserFromSharedAppleDevice" +"POST","/deviceManagement/managedDevices/{param}/deviceCompliancePolicyStates","keep",,"New-MgDeviceManagementManagedDeviceCompliancePolicyState","New-MgDeviceManagementManagedDeviceCompliancePolicyState" +"POST","/deviceManagement/managedDevices/{param}/deviceConfigurationStates","keep",,"New-MgDeviceManagementManagedDeviceConfigurationState","New-MgDeviceManagementManagedDeviceConfigurationState" +"POST","/deviceManagement/managedDevices/{param}/disableLostMode","rename","DeviceManagementManagedDeviceLostMode","Invoke-MgDeviceManagementManagedDeviceDisableLostMode","Disable-MgDeviceManagementManagedDeviceLostMode" +"POST","/deviceManagement/managedDevices/{param}/locateDevice","rename","DeviceManagementManagedDevice","Invoke-MgDeviceManagementManagedDeviceLocateDevice","Find-MgDeviceManagementManagedDevice" +"POST","/deviceManagement/managedDevices/{param}/logCollectionRequests","suppress",,"New-MgDeviceManagementManagedDeviceLogCollectionRequest","no oracle row for POST /deviceManagement/managedDevices/{param}/logCollectionRequests and 'New-MgDeviceManagementManagedDeviceLogCollectionRequest' unshipped" +"POST","/deviceManagement/managedDevices/{param}/logCollectionRequests/{param}/createDownloadUrl","rename","DeviceManagementManagedDeviceLogCollectionRequestDownloadUrl","Invoke-MgDeviceManagementManagedDeviceLogCollectionRequestCreateDownloadUrl","New-MgDeviceManagementManagedDeviceLogCollectionRequestDownloadUrl" +"POST","/deviceManagement/managedDevices/{param}/logoutSharedAppleDeviceActiveUser","rename","LogoutDeviceManagementManagedDeviceSharedAppleDeviceActiveUser","Invoke-MgDeviceManagementManagedDeviceLogoutSharedAppleDeviceActiveUser","Invoke-MgLogoutDeviceManagementManagedDeviceSharedAppleDeviceActiveUser" +"POST","/deviceManagement/managedDevices/{param}/rebootNow","rename","DeviceManagementManagedDeviceNow","Invoke-MgDeviceManagementManagedDeviceRebootNow","Restart-MgDeviceManagementManagedDeviceNow" +"POST","/deviceManagement/managedDevices/{param}/recoverPasscode","rename","DeviceManagementManagedDevicePasscode","Invoke-MgDeviceManagementManagedDeviceRecoverPasscode","Restore-MgDeviceManagementManagedDevicePasscode" +"POST","/deviceManagement/managedDevices/{param}/remoteLock","rename","DeviceManagementManagedDeviceRemote","Invoke-MgDeviceManagementManagedDeviceRemoteLock","Lock-MgDeviceManagementManagedDeviceRemote" +"POST","/deviceManagement/managedDevices/{param}/requestRemoteAssistance","rename","DeviceManagementManagedDeviceRemoteAssistance","Invoke-MgDeviceManagementManagedDeviceRequestRemoteAssistance","Request-MgDeviceManagementManagedDeviceRemoteAssistance" +"POST","/deviceManagement/managedDevices/{param}/resetPasscode","rename","DeviceManagementManagedDevicePasscode","Invoke-MgDeviceManagementManagedDeviceResetPasscode","Reset-MgDeviceManagementManagedDevicePasscode" +"POST","/deviceManagement/managedDevices/{param}/retire","rename","RetireDeviceManagementManagedDevice","Invoke-MgDeviceManagementManagedDeviceRetire","Invoke-MgRetireDeviceManagementManagedDevice" +"POST","/deviceManagement/managedDevices/{param}/shutDown","rename","DownDeviceManagementManagedDeviceShut","Invoke-MgDeviceManagementManagedDeviceShutDown","Invoke-MgDownDeviceManagementManagedDeviceShut" +"POST","/deviceManagement/managedDevices/{param}/syncDevice","rename","DeviceManagementManagedDevice","Invoke-MgDeviceManagementManagedDeviceSyncDevice","Sync-MgDeviceManagementManagedDevice" +"POST","/deviceManagement/managedDevices/{param}/updateWindowsDeviceAccount","rename","DeviceManagementManagedDeviceWindowsDeviceAccount","Invoke-MgDeviceManagementManagedDeviceUpdateWindowsDeviceAccount","Update-MgDeviceManagementManagedDeviceWindowsDeviceAccount" +"POST","/deviceManagement/managedDevices/{param}/windowsDefenderScan","rename","ScanDeviceManagementManagedDeviceWindowsDefender","Invoke-MgDeviceManagementManagedDeviceWindowsDefenderScan","Invoke-MgScanDeviceManagementManagedDeviceWindowsDefender" +"POST","/deviceManagement/managedDevices/{param}/windowsDefenderUpdateSignatures","suppress",,"Invoke-MgDeviceManagementManagedDeviceWindowsDefenderUpdateSignatures","no oracle row for POST /deviceManagement/managedDevices/{param}/windowsDefenderUpdateSignatures and 'Invoke-MgDeviceManagementManagedDeviceWindowsDefenderUpdateSignatures' unshipped" +"POST","/deviceManagement/managedDevices/{param}/windowsProtectionState/detectedMalwareState","keep",,"New-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState","New-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState" +"POST","/deviceManagement/managedDevices/{param}/wipe","rename","DeviceManagementManagedDevice","Invoke-MgDeviceManagementManagedDeviceWipe","Clear-MgDeviceManagementManagedDevice" +"POST","/deviceManagement/mobileAppTroubleshootingEvents","keep",,"New-MgDeviceManagementMobileAppTroubleshootingEvent","New-MgDeviceManagementMobileAppTroubleshootingEvent" +"POST","/deviceManagement/mobileAppTroubleshootingEvents/{param}/appLogCollectionRequests","keep",,"New-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest","New-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest" +"POST","/deviceManagement/mobileAppTroubleshootingEvents/{param}/appLogCollectionRequests/{param}/createDownloadUrl","rename","DeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestDownloadUrl","Invoke-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestCreateDownloadUrl","New-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestDownloadUrl" +"POST","/deviceManagement/mobileThreatDefenseConnectors","keep",,"New-MgDeviceManagementMobileThreatDefenseConnector","New-MgDeviceManagementMobileThreatDefenseConnector" +"POST","/deviceManagement/notificationMessageTemplates","keep",,"New-MgDeviceManagementNotificationMessageTemplate","New-MgDeviceManagementNotificationMessageTemplate" +"POST","/deviceManagement/notificationMessageTemplates/{param}/localizedNotificationMessages","keep",,"New-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage","New-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage" +"POST","/deviceManagement/notificationMessageTemplates/{param}/sendTestMessage","rename","DeviceManagementNotificationMessageTemplateTestMessage","Invoke-MgDeviceManagementNotificationMessageTemplateSendTestMessage","Send-MgDeviceManagementNotificationMessageTemplateTestMessage" +"POST","/deviceManagement/remoteAssistancePartners","keep",,"New-MgDeviceManagementRemoteAssistancePartner","New-MgDeviceManagementRemoteAssistancePartner" +"POST","/deviceManagement/remoteAssistancePartners/{param}/beginOnboarding","rename","BeginDeviceManagementRemoteAssistancePartnerOnboarding","Invoke-MgDeviceManagementRemoteAssistancePartnerBeginOnboarding","Invoke-MgBeginDeviceManagementRemoteAssistancePartnerOnboarding" +"POST","/deviceManagement/remoteAssistancePartners/{param}/disconnect","rename","DeviceManagementRemoteAssistancePartner","Invoke-MgDeviceManagementRemoteAssistancePartnerDisconnect","Disconnect-MgDeviceManagementRemoteAssistancePartner" +"POST","/deviceManagement/reports/exportJobs","suppress",,"New-MgDeviceManagementReportExportJob","no oracle row for POST /deviceManagement/reports/exportJobs and 'New-MgDeviceManagementReportExportJob' unshipped" +"POST","/deviceManagement/reports/getCachedReport","rename","DeviceManagementReportCachedReport","Invoke-MgDeviceManagementReportGetCachedReport","Get-MgDeviceManagementReportCachedReport" +"POST","/deviceManagement/reports/getCompliancePolicyNonComplianceReport","rename","DeviceManagementReportCompliancePolicyNonComplianceReport","Invoke-MgDeviceManagementReportGetCompliancePolicyNonComplianceReport","Get-MgDeviceManagementReportCompliancePolicyNonComplianceReport" +"POST","/deviceManagement/reports/getCompliancePolicyNonComplianceSummaryReport","rename","DeviceManagementReportCompliancePolicyNonComplianceSummaryReport","Invoke-MgDeviceManagementReportGetCompliancePolicyNonComplianceSummaryReport","Get-MgDeviceManagementReportCompliancePolicyNonComplianceSummaryReport" +"POST","/deviceManagement/reports/getComplianceSettingNonComplianceReport","rename","DeviceManagementReportComplianceSettingNonComplianceReport","Invoke-MgDeviceManagementReportGetComplianceSettingNonComplianceReport","Get-MgDeviceManagementReportComplianceSettingNonComplianceReport" +"POST","/deviceManagement/reports/getConfigurationPolicyNonComplianceReport","rename","DeviceManagementReportConfigurationPolicyNonComplianceReport","Invoke-MgDeviceManagementReportGetConfigurationPolicyNonComplianceReport","Get-MgDeviceManagementReportConfigurationPolicyNonComplianceReport" +"POST","/deviceManagement/reports/getConfigurationPolicyNonComplianceSummaryReport","rename","DeviceManagementReportConfigurationPolicyNonComplianceSummaryReport","Invoke-MgDeviceManagementReportGetConfigurationPolicyNonComplianceSummaryReport","Get-MgDeviceManagementReportConfigurationPolicyNonComplianceSummaryReport" +"POST","/deviceManagement/reports/getConfigurationSettingNonComplianceReport","rename","DeviceManagementReportConfigurationSettingNonComplianceReport","Invoke-MgDeviceManagementReportGetConfigurationSettingNonComplianceReport","Get-MgDeviceManagementReportConfigurationSettingNonComplianceReport" +"POST","/deviceManagement/reports/getDeviceManagementIntentPerSettingContributingProfiles","rename","DeviceManagementReportDeviceManagementIntentPerSettingContributingProfile","Invoke-MgDeviceManagementReportGetDeviceManagementIntentPerSettingContributingProfiles","Get-MgDeviceManagementReportDeviceManagementIntentPerSettingContributingProfile" +"POST","/deviceManagement/reports/getDeviceManagementIntentSettingsReport","rename","DeviceManagementReportDeviceManagementIntentSettingReport","Invoke-MgDeviceManagementReportGetDeviceManagementIntentSettingsReport","Get-MgDeviceManagementReportDeviceManagementIntentSettingReport" +"POST","/deviceManagement/reports/getDeviceNonComplianceReport","rename","DeviceManagementReportDeviceNonComplianceReport","Invoke-MgDeviceManagementReportGetDeviceNonComplianceReport","Get-MgDeviceManagementReportDeviceNonComplianceReport" +"POST","/deviceManagement/reports/getDevicesWithoutCompliancePolicyReport","rename","DeviceManagementReportDeviceWithoutCompliancePolicyReport","Invoke-MgDeviceManagementReportGetDevicesWithoutCompliancePolicyReport","Get-MgDeviceManagementReportDeviceWithoutCompliancePolicyReport" +"POST","/deviceManagement/reports/getHistoricalReport","rename","DeviceManagementReportHistoricalReport","Invoke-MgDeviceManagementReportGetHistoricalReport","Get-MgDeviceManagementReportHistoricalReport" +"POST","/deviceManagement/reports/getNoncompliantDevicesAndSettingsReport","rename","DeviceManagementReportNoncompliantDeviceAndSettingReport","Invoke-MgDeviceManagementReportGetNoncompliantDevicesAndSettingsReport","Get-MgDeviceManagementReportNoncompliantDeviceAndSettingReport" +"POST","/deviceManagement/reports/getPolicyNonComplianceMetadata","rename","DeviceManagementReportPolicyNonComplianceMetadata","Invoke-MgDeviceManagementReportGetPolicyNonComplianceMetadata","Get-MgDeviceManagementReportPolicyNonComplianceMetadata" +"POST","/deviceManagement/reports/getPolicyNonComplianceReport","rename","DeviceManagementReportPolicyNonComplianceReport","Invoke-MgDeviceManagementReportGetPolicyNonComplianceReport","Get-MgDeviceManagementReportPolicyNonComplianceReport" +"POST","/deviceManagement/reports/getPolicyNonComplianceSummaryReport","rename","DeviceManagementReportPolicyNonComplianceSummaryReport","Invoke-MgDeviceManagementReportGetPolicyNonComplianceSummaryReport","Get-MgDeviceManagementReportPolicyNonComplianceSummaryReport" +"POST","/deviceManagement/reports/getReportFilters","rename","DeviceManagementReportFilter","Invoke-MgDeviceManagementReportGetReportFilters","Get-MgDeviceManagementReportFilter" +"POST","/deviceManagement/reports/getSettingNonComplianceReport","rename","DeviceManagementReportSettingNonComplianceReport","Invoke-MgDeviceManagementReportGetSettingNonComplianceReport","Get-MgDeviceManagementReportSettingNonComplianceReport" +"POST","/deviceManagement/reports/retrieveDeviceAppInstallationStatusReport","rename","DeviceManagementReportDeviceAppInstallationStatusReport","Invoke-MgDeviceManagementReportRetrieveDeviceAppInstallationStatusReport","Get-MgDeviceManagementReportDeviceAppInstallationStatusReport" +"POST","/deviceManagement/resourceOperations","keep",,"New-MgDeviceManagementResourceOperation","New-MgDeviceManagementResourceOperation" +"POST","/deviceManagement/roleAssignments","keep",,"New-MgDeviceManagementRoleAssignment","New-MgDeviceManagementRoleAssignment" +"POST","/deviceManagement/roleDefinitions","keep",,"New-MgDeviceManagementRoleDefinition","New-MgDeviceManagementRoleDefinition" +"POST","/deviceManagement/roleDefinitions/{param}/roleAssignments","keep",,"New-MgDeviceManagementRoleDefinitionRoleAssignment","New-MgDeviceManagementRoleDefinitionRoleAssignment" +"POST","/deviceManagement/termsAndConditions","keep",,"New-MgDeviceManagementTermAndCondition","New-MgDeviceManagementTermAndCondition" +"POST","/deviceManagement/termsAndConditions/{param}/acceptanceStatuses","keep",,"New-MgDeviceManagementTermAndConditionAcceptanceStatus","New-MgDeviceManagementTermAndConditionAcceptanceStatus" +"POST","/deviceManagement/termsAndConditions/{param}/assignments","keep",,"New-MgDeviceManagementTermAndConditionAssignment","New-MgDeviceManagementTermAndConditionAssignment" +"POST","/deviceManagement/troubleshootingEvents","keep",,"New-MgDeviceManagementTroubleshootingEvent","New-MgDeviceManagementTroubleshootingEvent" +"POST","/deviceManagement/virtualEndpoint/auditEvents","suppress",,"New-MgDeviceManagementVirtualEndpointAuditEvent","no oracle row for POST /deviceManagement/virtualEndpoint/auditEvents and 'New-MgDeviceManagementVirtualEndpointAuditEvent' unshipped" +"POST","/deviceManagement/virtualEndpoint/cloudPCs","suppress",,"New-MgDeviceManagementVirtualEndpointCloudPCs","no oracle row for POST /deviceManagement/virtualEndpoint/cloudPCs and 'New-MgDeviceManagementVirtualEndpointCloudPCs' unshipped" +"POST","/deviceManagement/virtualEndpoint/cloudPCs/{param}/endGracePeriod","rename","DeviceManagementVirtualEndpointCloudPcGracePeriod","Invoke-MgDeviceManagementVirtualEndpointCloudPCsEndGracePeriod","Stop-MgDeviceManagementVirtualEndpointCloudPcGracePeriod" +"POST","/deviceManagement/virtualEndpoint/cloudPCs/{param}/reboot","rename","DeviceManagementVirtualEndpointCloudPc","Invoke-MgDeviceManagementVirtualEndpointCloudPCsReboot","Restart-MgDeviceManagementVirtualEndpointCloudPc" +"POST","/deviceManagement/virtualEndpoint/cloudPCs/{param}/rename","rename","DeviceManagementVirtualEndpointCloudPc","Invoke-MgDeviceManagementVirtualEndpointCloudPCsRename","Rename-MgDeviceManagementVirtualEndpointCloudPc" +"POST","/deviceManagement/virtualEndpoint/cloudPCs/{param}/reprovision","rename","ReprovisionDeviceManagementVirtualEndpointCloudPc","Invoke-MgDeviceManagementVirtualEndpointCloudPCsReprovision","Invoke-MgReprovisionDeviceManagementVirtualEndpointCloudPc" +"POST","/deviceManagement/virtualEndpoint/cloudPCs/{param}/resize","rename","DeviceManagementVirtualEndpointCloudPc","Invoke-MgDeviceManagementVirtualEndpointCloudPCsResize","Resize-MgDeviceManagementVirtualEndpointCloudPc" +"POST","/deviceManagement/virtualEndpoint/cloudPCs/{param}/restore","rename","DeviceManagementVirtualEndpointCloudPc","Invoke-MgDeviceManagementVirtualEndpointCloudPCsRestore","Restore-MgDeviceManagementVirtualEndpointCloudPc" +"POST","/deviceManagement/virtualEndpoint/cloudPCs/{param}/troubleshoot","rename","TroubleshootDeviceManagementVirtualEndpointCloudPc","Invoke-MgDeviceManagementVirtualEndpointCloudPCsTroubleshoot","Invoke-MgTroubleshootDeviceManagementVirtualEndpointCloudPc" +"POST","/deviceManagement/virtualEndpoint/deviceImages","keep",,"New-MgDeviceManagementVirtualEndpointDeviceImage","New-MgDeviceManagementVirtualEndpointDeviceImage" +"POST","/deviceManagement/virtualEndpoint/galleryImages","keep",,"New-MgDeviceManagementVirtualEndpointGalleryImage","New-MgDeviceManagementVirtualEndpointGalleryImage" +"POST","/deviceManagement/virtualEndpoint/onPremisesConnections","keep",,"New-MgDeviceManagementVirtualEndpointOnPremiseConnection","New-MgDeviceManagementVirtualEndpointOnPremiseConnection" +"POST","/deviceManagement/virtualEndpoint/onPremisesConnections/{param}/runHealthChecks","rename","DeviceManagementVirtualEndpointOnPremiseConnectionHealthCheck","Invoke-MgDeviceManagementVirtualEndpointOnPremiseConnectionRunHealthChecks","Start-MgDeviceManagementVirtualEndpointOnPremiseConnectionHealthCheck" +"POST","/deviceManagement/virtualEndpoint/onPremisesConnections/{param}/updateAdDomainPassword","rename","DeviceManagementVirtualEndpointOnPremiseConnectionAdDomainPassword","Invoke-MgDeviceManagementVirtualEndpointOnPremiseConnectionUpdateAdDomainPassword","Update-MgDeviceManagementVirtualEndpointOnPremiseConnectionAdDomainPassword" +"POST","/deviceManagement/virtualEndpoint/provisioningPolicies","keep",,"New-MgDeviceManagementVirtualEndpointProvisioningPolicy","New-MgDeviceManagementVirtualEndpointProvisioningPolicy" +"POST","/deviceManagement/virtualEndpoint/provisioningPolicies/{param}/assign","rename","DeviceManagementVirtualEndpointProvisioningPolicy","Invoke-MgDeviceManagementVirtualEndpointProvisioningPolicyAssign","Set-MgDeviceManagementVirtualEndpointProvisioningPolicy" +"POST","/deviceManagement/virtualEndpoint/provisioningPolicies/{param}/assignments","keep",,"New-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment","New-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment" +"POST","/deviceManagement/virtualEndpoint/report/retrieveCloudPcRecommendationReports","rename","DeviceManagementVirtualEndpointReportCloudPcRecommendationReport","Invoke-MgDeviceManagementVirtualEndpointReportRetrieveCloudPcRecommendationReports","Get-MgDeviceManagementVirtualEndpointReportCloudPcRecommendationReport" +"POST","/deviceManagement/virtualEndpoint/userSettings","keep",,"New-MgDeviceManagementVirtualEndpointUserSetting","New-MgDeviceManagementVirtualEndpointUserSetting" +"POST","/deviceManagement/virtualEndpoint/userSettings/{param}/assign","rename","DeviceManagementVirtualEndpointUserSetting","Invoke-MgDeviceManagementVirtualEndpointUserSettingAssign","Set-MgDeviceManagementVirtualEndpointUserSetting" +"POST","/deviceManagement/virtualEndpoint/userSettings/{param}/assignments","keep",,"New-MgDeviceManagementVirtualEndpointUserSettingAssignment","New-MgDeviceManagementVirtualEndpointUserSettingAssignment" +"POST","/deviceManagement/windowsAutopilotDeviceIdentities","keep",,"New-MgDeviceManagementWindowsAutopilotDeviceIdentity","New-MgDeviceManagementWindowsAutopilotDeviceIdentity" +"POST","/deviceManagement/windowsAutopilotDeviceIdentities/{param}/assignUserToDevice","rename","DeviceManagementWindowsAutopilotDeviceIdentityUserToDevice","Invoke-MgDeviceManagementWindowsAutopilotDeviceIdentityAssignUserToDevice","Set-MgDeviceManagementWindowsAutopilotDeviceIdentityUserToDevice" +"POST","/deviceManagement/windowsAutopilotDeviceIdentities/{param}/unassignUserFromDevice","rename","UnassignDeviceManagementWindowsAutopilotDeviceIdentityUserFromDevice","Invoke-MgDeviceManagementWindowsAutopilotDeviceIdentityUnassignUserFromDevice","Invoke-MgUnassignDeviceManagementWindowsAutopilotDeviceIdentityUserFromDevice" +"POST","/deviceManagement/windowsAutopilotDeviceIdentities/{param}/updateDeviceProperties","rename","DeviceManagementWindowsAutopilotDeviceIdentityDeviceProperty","Invoke-MgDeviceManagementWindowsAutopilotDeviceIdentityUpdateDeviceProperties","Update-MgDeviceManagementWindowsAutopilotDeviceIdentityDeviceProperty" +"POST","/deviceManagement/windowsInformationProtectionAppLearningSummaries","keep",,"New-MgDeviceManagementWindowsInformationProtectionAppLearningSummary","New-MgDeviceManagementWindowsInformationProtectionAppLearningSummary" +"POST","/deviceManagement/windowsInformationProtectionNetworkLearningSummaries","keep",,"New-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary","New-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary" +"POST","/deviceManagement/windowsMalwareInformation","keep",,"New-MgDeviceManagementWindowsMalwareInformation","New-MgDeviceManagementWindowsMalwareInformation" +"POST","/deviceManagement/windowsMalwareInformation/{param}/deviceMalwareStates","keep",,"New-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState","New-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState" +"POST","/devices","keep",,"New-MgDevice","New-MgDevice" +"POST","/devices/{param}/checkMemberGroups","rename","DeviceMemberGroup","Invoke-MgDeviceCheckMemberGroups","Confirm-MgDeviceMemberGroup" +"POST","/devices/{param}/checkMemberObjects","rename","DeviceMemberObject","Invoke-MgDeviceCheckMemberObjects","Confirm-MgDeviceMemberObject" +"POST","/devices/{param}/extensions","keep",,"New-MgDeviceExtension","New-MgDeviceExtension" +"POST","/devices/{param}/getMemberGroups","rename","DeviceMemberGroup","Invoke-MgDeviceGetMemberGroups","Get-MgDeviceMemberGroup" +"POST","/devices/{param}/getMemberObjects","rename","DeviceMemberObject","Invoke-MgDeviceGetMemberObjects","Get-MgDeviceMemberObject" +"POST","/devices/{param}/registeredOwners/$ref","keep",,"New-MgDeviceRegisteredOwnerByRef","New-MgDeviceRegisteredOwnerByRef" +"POST","/devices/{param}/registeredUsers/$ref","keep",,"New-MgDeviceRegisteredUserByRef","New-MgDeviceRegisteredUserByRef" +"POST","/devices/{param}/restore","suppress",,"Invoke-MgDeviceRestore","no oracle row for POST /devices/{param}/restore and 'Invoke-MgDeviceRestore' unshipped" +"POST","/devices/getAvailableExtensionProperties","suppress",,"Invoke-MgDeviceGetAvailableExtensionProperties","no oracle row for POST /devices/getAvailableExtensionProperties and 'Invoke-MgDeviceGetAvailableExtensionProperties' unshipped" +"POST","/devices/getByIds","rename","DeviceById","Invoke-MgDeviceGetByIds","Get-MgDeviceById" +"POST","/devices/validateProperties","rename","DeviceProperty","Invoke-MgDeviceValidateProperties","Test-MgDeviceProperty" +"POST","/directory/administrativeUnits","keep",,"New-MgDirectoryAdministrativeUnit","New-MgDirectoryAdministrativeUnit" +"POST","/directory/administrativeUnits/{param}/extensions","keep",,"New-MgDirectoryAdministrativeUnitExtension","New-MgDirectoryAdministrativeUnitExtension" +"POST","/directory/administrativeUnits/{param}/members","keep",,"New-MgDirectoryAdministrativeUnitMember","New-MgDirectoryAdministrativeUnitMember" +"POST","/directory/administrativeUnits/{param}/members/$ref","keep",,"New-MgDirectoryAdministrativeUnitMemberByRef","New-MgDirectoryAdministrativeUnitMemberByRef" +"POST","/directory/administrativeUnits/{param}/scopedRoleMembers","keep",,"New-MgDirectoryAdministrativeUnitScopedRoleMember","New-MgDirectoryAdministrativeUnitScopedRoleMember" +"POST","/directory/attributeSets","keep",,"New-MgDirectoryAttributeSet","New-MgDirectoryAttributeSet" +"POST","/directory/customSecurityAttributeDefinitions","keep",,"New-MgDirectoryCustomSecurityAttributeDefinition","New-MgDirectoryCustomSecurityAttributeDefinition" +"POST","/directory/customSecurityAttributeDefinitions/{param}/allowedValues","keep",,"New-MgDirectoryCustomSecurityAttributeDefinitionAllowedValue","New-MgDirectoryCustomSecurityAttributeDefinitionAllowedValue" +"POST","/directory/deletedItems/{param}/checkMemberGroups","rename","DirectoryDeletedItemMemberGroup","Invoke-MgDirectoryDeletedItemCheckMemberGroups","Confirm-MgDirectoryDeletedItemMemberGroup" +"POST","/directory/deletedItems/{param}/checkMemberObjects","rename","DirectoryDeletedItemMemberObject","Invoke-MgDirectoryDeletedItemCheckMemberObjects","Confirm-MgDirectoryDeletedItemMemberObject" +"POST","/directory/deletedItems/{param}/getMemberGroups","rename","DirectoryDeletedItemMemberGroup","Invoke-MgDirectoryDeletedItemGetMemberGroups","Get-MgDirectoryDeletedItemMemberGroup" +"POST","/directory/deletedItems/{param}/getMemberObjects","rename","DirectoryDeletedItemMemberObject","Invoke-MgDirectoryDeletedItemGetMemberObjects","Get-MgDirectoryDeletedItemMemberObject" +"POST","/directory/deletedItems/{param}/restore","rename","DirectoryDeletedItem","Invoke-MgDirectoryDeletedItemRestore","Restore-MgDirectoryDeletedItem" +"POST","/directory/deletedItems/getAvailableExtensionProperties","suppress",,"Invoke-MgDirectoryDeletedItemGetAvailableExtensionProperties","no oracle row for POST /directory/deletedItems/getAvailableExtensionProperties and 'Invoke-MgDirectoryDeletedItemGetAvailableExtensionProperties' unshipped" +"POST","/directory/deletedItems/getByIds","rename","DirectoryDeletedItemById","Invoke-MgDirectoryDeletedItemGetByIds","Get-MgDirectoryDeletedItemById" +"POST","/directory/deletedItems/validateProperties","rename","DirectoryDeletedItemProperty","Invoke-MgDirectoryDeletedItemValidateProperties","Test-MgDirectoryDeletedItemProperty" +"POST","/directory/deviceLocalCredentials","keep",,"New-MgDirectoryDeviceLocalCredential","New-MgDirectoryDeviceLocalCredential" +"POST","/directory/federationConfigurations","keep",,"New-MgDirectoryFederationConfiguration","New-MgDirectoryFederationConfiguration" +"POST","/directory/onPremisesSynchronization","keep",,"New-MgDirectoryOnPremiseSynchronization","New-MgDirectoryOnPremiseSynchronization" +"POST","/directory/publicKeyInfrastructure/certificateBasedAuthConfigurations","keep",,"New-MgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfiguration","New-MgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfiguration" +"POST","/directory/publicKeyInfrastructure/certificateBasedAuthConfigurations/{param}/certificateAuthorities","keep",,"New-MgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfigurationCertificateAuthority","New-MgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfigurationCertificateAuthority" +"POST","/directory/publicKeyInfrastructure/certificateBasedAuthConfigurations/{param}/upload","rename","UploadDirectoryPublicKeyInfrastructureCertificateBasedAuthConfiguration","Invoke-MgDirectoryPublicKeyInfrastructureCertificateBasedAuthConfigurationUpload","Invoke-MgUploadDirectoryPublicKeyInfrastructureCertificateBasedAuthConfiguration" +"POST","/directory/recovery/jobs","keep",,"New-MgDirectoryRecoveryJob","New-MgDirectoryRecoveryJob" +"POST","/directory/recovery/snapshots","keep",,"New-MgDirectoryRecoverySnapshot","New-MgDirectoryRecoverySnapshot" +"POST","/directory/subscriptions","keep",,"New-MgDirectorySubscription","New-MgDirectorySubscription" +"POST","/directoryObjects","keep",,"New-MgDirectoryObject","New-MgDirectoryObject" +"POST","/directoryObjects/{param}/checkMemberGroups","rename","DirectoryObjectMemberGroup","Invoke-MgDirectoryObjectCheckMemberGroups","Confirm-MgDirectoryObjectMemberGroup" +"POST","/directoryObjects/{param}/checkMemberObjects","rename","DirectoryObjectMemberObject","Invoke-MgDirectoryObjectCheckMemberObjects","Confirm-MgDirectoryObjectMemberObject" +"POST","/directoryObjects/{param}/getMemberGroups","rename","DirectoryObjectMemberGroup","Invoke-MgDirectoryObjectGetMemberGroups","Get-MgDirectoryObjectMemberGroup" +"POST","/directoryObjects/{param}/getMemberObjects","rename","DirectoryObjectMemberObject","Invoke-MgDirectoryObjectGetMemberObjects","Get-MgDirectoryObjectMemberObject" +"POST","/directoryObjects/{param}/restore","suppress",,"Invoke-MgDirectoryObjectRestore","no oracle row for POST /directoryObjects/{param}/restore and 'Invoke-MgDirectoryObjectRestore' unshipped" +"POST","/directoryObjects/getAvailableExtensionProperties","rename","DirectoryObjectAvailableExtensionProperty","Invoke-MgDirectoryObjectGetAvailableExtensionProperties","Get-MgDirectoryObjectAvailableExtensionProperty" +"POST","/directoryObjects/getByIds","rename","DirectoryObjectById","Invoke-MgDirectoryObjectGetByIds","Get-MgDirectoryObjectById" +"POST","/directoryObjects/validateProperties","rename","DirectoryObjectProperty","Invoke-MgDirectoryObjectValidateProperties","Test-MgDirectoryObjectProperty" +"POST","/directoryRoles","keep",,"New-MgDirectoryRole","New-MgDirectoryRole" +"POST","/directoryRoles/{param}/checkMemberGroups","rename","DirectoryRoleMemberGroup","Invoke-MgDirectoryRoleCheckMemberGroups","Confirm-MgDirectoryRoleMemberGroup" +"POST","/directoryRoles/{param}/checkMemberObjects","rename","DirectoryRoleMemberObject","Invoke-MgDirectoryRoleCheckMemberObjects","Confirm-MgDirectoryRoleMemberObject" +"POST","/directoryRoles/{param}/getMemberGroups","rename","DirectoryRoleMemberGroup","Invoke-MgDirectoryRoleGetMemberGroups","Get-MgDirectoryRoleMemberGroup" +"POST","/directoryRoles/{param}/getMemberObjects","rename","DirectoryRoleMemberObject","Invoke-MgDirectoryRoleGetMemberObjects","Get-MgDirectoryRoleMemberObject" +"POST","/directoryRoles/{param}/members/$ref","keep",,"New-MgDirectoryRoleMemberByRef","New-MgDirectoryRoleMemberByRef" +"POST","/directoryRoles/{param}/restore","suppress",,"Invoke-MgDirectoryRoleRestore","no oracle row for POST /directoryRoles/{param}/restore and 'Invoke-MgDirectoryRoleRestore' unshipped" +"POST","/directoryRoles/{param}/scopedMembers","keep",,"New-MgDirectoryRoleScopedMember","New-MgDirectoryRoleScopedMember" +"POST","/directoryRoles/getAvailableExtensionProperties","suppress",,"Invoke-MgDirectoryRoleGetAvailableExtensionProperties","no oracle row for POST /directoryRoles/getAvailableExtensionProperties and 'Invoke-MgDirectoryRoleGetAvailableExtensionProperties' unshipped" +"POST","/directoryRoles/getByIds","rename","DirectoryRoleById","Invoke-MgDirectoryRoleGetByIds","Get-MgDirectoryRoleById" +"POST","/directoryRoles/validateProperties","rename","DirectoryRoleProperty","Invoke-MgDirectoryRoleValidateProperties","Test-MgDirectoryRoleProperty" +"POST","/directoryRoleTemplates","keep",,"New-MgDirectoryRoleTemplate","New-MgDirectoryRoleTemplate" +"POST","/directoryRoleTemplates/{param}/checkMemberGroups","rename","DirectoryRoleTemplateMemberGroup","Invoke-MgDirectoryRoleTemplateCheckMemberGroups","Confirm-MgDirectoryRoleTemplateMemberGroup" +"POST","/directoryRoleTemplates/{param}/checkMemberObjects","rename","DirectoryRoleTemplateMemberObject","Invoke-MgDirectoryRoleTemplateCheckMemberObjects","Confirm-MgDirectoryRoleTemplateMemberObject" +"POST","/directoryRoleTemplates/{param}/getMemberGroups","rename","DirectoryRoleTemplateMemberGroup","Invoke-MgDirectoryRoleTemplateGetMemberGroups","Get-MgDirectoryRoleTemplateMemberGroup" +"POST","/directoryRoleTemplates/{param}/getMemberObjects","rename","DirectoryRoleTemplateMemberObject","Invoke-MgDirectoryRoleTemplateGetMemberObjects","Get-MgDirectoryRoleTemplateMemberObject" +"POST","/directoryRoleTemplates/{param}/restore","suppress",,"Invoke-MgDirectoryRoleTemplateRestore","no oracle row for POST /directoryRoleTemplates/{param}/restore and 'Invoke-MgDirectoryRoleTemplateRestore' unshipped" +"POST","/directoryRoleTemplates/getAvailableExtensionProperties","suppress",,"Invoke-MgDirectoryRoleTemplateGetAvailableExtensionProperties","no oracle row for POST /directoryRoleTemplates/getAvailableExtensionProperties and 'Invoke-MgDirectoryRoleTemplateGetAvailableExtensionProperties' unshipped" +"POST","/directoryRoleTemplates/getByIds","rename","DirectoryRoleTemplateById","Invoke-MgDirectoryRoleTemplateGetByIds","Get-MgDirectoryRoleTemplateById" +"POST","/directoryRoleTemplates/validateProperties","rename","DirectoryRoleTemplateProperty","Invoke-MgDirectoryRoleTemplateValidateProperties","Test-MgDirectoryRoleTemplateProperty" +"POST","/domains","keep",,"New-MgDomain","New-MgDomain" +"POST","/domains/{param}/federationConfiguration","keep",,"New-MgDomainFederationConfiguration","New-MgDomainFederationConfiguration" +"POST","/domains/{param}/forceDelete","rename","ForceDomainDelete","Invoke-MgDomainForceDelete","Invoke-MgForceDomainDelete" +"POST","/domains/{param}/promote","rename","PromoteDomain","Invoke-MgDomainPromote","Invoke-MgPromoteDomain" +"POST","/domains/{param}/serviceConfigurationRecords","keep",,"New-MgDomainServiceConfigurationRecord","New-MgDomainServiceConfigurationRecord" +"POST","/domains/{param}/verificationDnsRecords","keep",,"New-MgDomainVerificationDnsRecord","New-MgDomainVerificationDnsRecord" +"POST","/domains/{param}/verify","rename","Domain","Invoke-MgDomainVerify","Confirm-MgDomain" +"POST","/drives","keep",,"New-MgDrive","New-MgDrive" +"POST","/drives/{param}/bundles","keep",,"New-MgDriveBundle","New-MgDriveBundle" +"POST","/drives/{param}/items","keep",,"New-MgDriveItem","New-MgDriveItem" +"POST","/drives/{param}/items/{param}/analytics/itemActivityStats","keep",,"New-MgDriveItemAnalyticItemActivityStat","New-MgDriveItemAnalyticItemActivityStat" +"POST","/drives/{param}/items/{param}/analytics/itemActivityStats/{param}/activities","suppress",,"New-MgDriveItemAnalyticItemActivityStatActivity","no oracle row for POST /drives/{param}/items/{param}/analytics/itemActivityStats/{param}/activities and 'New-MgDriveItemAnalyticItemActivityStatActivity' unshipped" +"POST","/drives/{param}/items/{param}/assignSensitivityLabel","rename","DriveItemSensitivityLabel","Invoke-MgDriveItemAssignSensitivityLabel","Set-MgDriveItemSensitivityLabel" +"POST","/drives/{param}/items/{param}/checkin","rename","CheckinDriveItem","Invoke-MgDriveItemCheckin","Invoke-MgCheckinDriveItem" +"POST","/drives/{param}/items/{param}/checkout","rename","CheckoutDriveItem","Invoke-MgDriveItemCheckout","Invoke-MgCheckoutDriveItem" +"POST","/drives/{param}/items/{param}/children","keep",,"New-MgDriveItemChild","New-MgDriveItemChild" +"POST","/drives/{param}/items/{param}/copy","rename","DriveItem","Invoke-MgDriveItemCopy","Copy-MgDriveItem" +"POST","/drives/{param}/items/{param}/createLink","rename","DriveItemLink","Invoke-MgDriveItemCreateLink","New-MgDriveItemLink" +"POST","/drives/{param}/items/{param}/createUploadSession","rename","DriveItemUploadSession","Invoke-MgDriveItemCreateUploadSession","New-MgDriveItemUploadSession" +"POST","/drives/{param}/items/{param}/discardCheckout","rename","DriveItemCheckout","Invoke-MgDriveItemDiscardCheckout","Remove-MgDriveItemCheckout" +"POST","/drives/{param}/items/{param}/extractSensitivityLabels","rename","ExtractDriveItemSensitivityLabel","Invoke-MgDriveItemExtractSensitivityLabels","Invoke-MgExtractDriveItemSensitivityLabel" +"POST","/drives/{param}/items/{param}/follow","rename","FollowDriveItem","Invoke-MgDriveItemFollow","Invoke-MgFollowDriveItem" +"POST","/drives/{param}/items/{param}/invite","rename","InviteDriveItem","Invoke-MgDriveItemInvite","Invoke-MgInviteDriveItem" +"POST","/drives/{param}/items/{param}/permanentDelete","rename","DriveItemPermanent","Invoke-MgDriveItemPermanentDelete","Remove-MgDriveItemPermanent" +"POST","/drives/{param}/items/{param}/permissions","keep",,"New-MgDriveItemPermission","New-MgDriveItemPermission" +"POST","/drives/{param}/items/{param}/permissions/{param}/grant","rename","DriveItemPermission","Invoke-MgDriveItemPermissionGrant","Grant-MgDriveItemPermission" +"POST","/drives/{param}/items/{param}/preview","rename","PreviewDriveItem","Invoke-MgDriveItemPreview","Invoke-MgPreviewDriveItem" +"POST","/drives/{param}/items/{param}/restore","rename","DriveItem","Invoke-MgDriveItemRestore","Restore-MgDriveItem" +"POST","/drives/{param}/items/{param}/subscriptions","keep",,"New-MgDriveItemSubscription","New-MgDriveItemSubscription" +"POST","/drives/{param}/items/{param}/subscriptions/{param}/reauthorize","rename","ReauthorizeDriveItemSubscription","Invoke-MgDriveItemSubscriptionReauthorize","Invoke-MgReauthorizeDriveItemSubscription" +"POST","/drives/{param}/items/{param}/thumbnails","keep",,"New-MgDriveItemThumbnail","New-MgDriveItemThumbnail" +"POST","/drives/{param}/items/{param}/unfollow","rename","UnfollowDriveItem","Invoke-MgDriveItemUnfollow","Invoke-MgUnfollowDriveItem" +"POST","/drives/{param}/items/{param}/validatePermission","rename","DriveItemPermission","Invoke-MgDriveItemValidatePermission","Test-MgDriveItemPermission" +"POST","/drives/{param}/items/{param}/versions","keep",,"New-MgDriveItemVersion","New-MgDriveItemVersion" +"POST","/drives/{param}/items/{param}/versions/{param}/restoreVersion","rename","DriveItemVersion","Invoke-MgDriveItemVersionRestoreVersion","Restore-MgDriveItemVersion" +"POST","/drives/{param}/items/{param}/workbook/application/calculate","suppress",,"Invoke-MgDriveItemWorkbookApplicationCalculate","no oracle row for POST /drives/{param}/items/{param}/workbook/application/calculate and 'Invoke-MgDriveItemWorkbookApplicationCalculate' unshipped" +"POST","/drives/{param}/items/{param}/workbook/closeSession","suppress",,"Invoke-MgDriveItemWorkbookCloseSession","no oracle row for POST /drives/{param}/items/{param}/workbook/closeSession and 'Invoke-MgDriveItemWorkbookCloseSession' unshipped" +"POST","/drives/{param}/items/{param}/workbook/comments","suppress",,"New-MgDriveItemWorkbookComment","no oracle row for POST /drives/{param}/items/{param}/workbook/comments and 'New-MgDriveItemWorkbookComment' unshipped" +"POST","/drives/{param}/items/{param}/workbook/comments/{param}/replies","suppress",,"New-MgDriveItemWorkbookCommentReply","no oracle row for POST /drives/{param}/items/{param}/workbook/comments/{param}/replies and 'New-MgDriveItemWorkbookCommentReply' unshipped" +"POST","/drives/{param}/items/{param}/workbook/createSession","suppress",,"Invoke-MgDriveItemWorkbookCreateSession","no oracle row for POST /drives/{param}/items/{param}/workbook/createSession and 'Invoke-MgDriveItemWorkbookCreateSession' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/$count","suppress",,"Invoke-MgDriveItemWorkbookFunctionCount","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/$count and 'Invoke-MgDriveItemWorkbookFunctionCount' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/abs","suppress",,"Invoke-MgDriveItemWorkbookFunctionAbs","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/abs and 'Invoke-MgDriveItemWorkbookFunctionAbs' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/accrInt","suppress",,"Invoke-MgDriveItemWorkbookFunctionAccrInt","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/accrInt and 'Invoke-MgDriveItemWorkbookFunctionAccrInt' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/accrIntM","suppress",,"Invoke-MgDriveItemWorkbookFunctionAccrIntM","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/accrIntM and 'Invoke-MgDriveItemWorkbookFunctionAccrIntM' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/acos","suppress",,"Invoke-MgDriveItemWorkbookFunctionAcos","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/acos and 'Invoke-MgDriveItemWorkbookFunctionAcos' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/acosh","suppress",,"Invoke-MgDriveItemWorkbookFunctionAcosh","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/acosh and 'Invoke-MgDriveItemWorkbookFunctionAcosh' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/acot","suppress",,"Invoke-MgDriveItemWorkbookFunctionAcot","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/acot and 'Invoke-MgDriveItemWorkbookFunctionAcot' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/acoth","suppress",,"Invoke-MgDriveItemWorkbookFunctionAcoth","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/acoth and 'Invoke-MgDriveItemWorkbookFunctionAcoth' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/amorDegrc","suppress",,"Invoke-MgDriveItemWorkbookFunctionAmorDegrc","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/amorDegrc and 'Invoke-MgDriveItemWorkbookFunctionAmorDegrc' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/amorLinc","suppress",,"Invoke-MgDriveItemWorkbookFunctionAmorLinc","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/amorLinc and 'Invoke-MgDriveItemWorkbookFunctionAmorLinc' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/and","suppress",,"Invoke-MgDriveItemWorkbookFunctionAnd","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/and and 'Invoke-MgDriveItemWorkbookFunctionAnd' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/arabic","suppress",,"Invoke-MgDriveItemWorkbookFunctionArabic","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/arabic and 'Invoke-MgDriveItemWorkbookFunctionArabic' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/areas","suppress",,"Invoke-MgDriveItemWorkbookFunctionAreas","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/areas and 'Invoke-MgDriveItemWorkbookFunctionAreas' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/asc","suppress",,"Invoke-MgDriveItemWorkbookFunctionAsc","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/asc and 'Invoke-MgDriveItemWorkbookFunctionAsc' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/asin","suppress",,"Invoke-MgDriveItemWorkbookFunctionAsin","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/asin and 'Invoke-MgDriveItemWorkbookFunctionAsin' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/asinh","suppress",,"Invoke-MgDriveItemWorkbookFunctionAsinh","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/asinh and 'Invoke-MgDriveItemWorkbookFunctionAsinh' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/atan","suppress",,"Invoke-MgDriveItemWorkbookFunctionAtan","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/atan and 'Invoke-MgDriveItemWorkbookFunctionAtan' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/atan2","suppress",,"Invoke-MgDriveItemWorkbookFunctionAtan2","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/atan2 and 'Invoke-MgDriveItemWorkbookFunctionAtan2' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/atanh","suppress",,"Invoke-MgDriveItemWorkbookFunctionAtanh","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/atanh and 'Invoke-MgDriveItemWorkbookFunctionAtanh' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/aveDev","suppress",,"Invoke-MgDriveItemWorkbookFunctionAveDev","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/aveDev and 'Invoke-MgDriveItemWorkbookFunctionAveDev' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/average","suppress",,"Invoke-MgDriveItemWorkbookFunctionAverage","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/average and 'Invoke-MgDriveItemWorkbookFunctionAverage' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/averageA","suppress",,"Invoke-MgDriveItemWorkbookFunctionAverageA","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/averageA and 'Invoke-MgDriveItemWorkbookFunctionAverageA' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/averageIf","suppress",,"Invoke-MgDriveItemWorkbookFunctionAverageIf","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/averageIf and 'Invoke-MgDriveItemWorkbookFunctionAverageIf' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/averageIfs","suppress",,"Invoke-MgDriveItemWorkbookFunctionAverageIfs","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/averageIfs and 'Invoke-MgDriveItemWorkbookFunctionAverageIfs' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/bahtText","suppress",,"Invoke-MgDriveItemWorkbookFunctionBahtText","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/bahtText and 'Invoke-MgDriveItemWorkbookFunctionBahtText' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/base","suppress",,"Invoke-MgDriveItemWorkbookFunctionBase","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/base and 'Invoke-MgDriveItemWorkbookFunctionBase' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/besselI","suppress",,"Invoke-MgDriveItemWorkbookFunctionBesselI","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/besselI and 'Invoke-MgDriveItemWorkbookFunctionBesselI' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/besselJ","suppress",,"Invoke-MgDriveItemWorkbookFunctionBesselJ","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/besselJ and 'Invoke-MgDriveItemWorkbookFunctionBesselJ' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/besselK","suppress",,"Invoke-MgDriveItemWorkbookFunctionBesselK","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/besselK and 'Invoke-MgDriveItemWorkbookFunctionBesselK' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/besselY","suppress",,"Invoke-MgDriveItemWorkbookFunctionBesselY","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/besselY and 'Invoke-MgDriveItemWorkbookFunctionBesselY' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/bin2Dec","suppress",,"Invoke-MgDriveItemWorkbookFunctionBin2Dec","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/bin2Dec and 'Invoke-MgDriveItemWorkbookFunctionBin2Dec' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/bin2Hex","suppress",,"Invoke-MgDriveItemWorkbookFunctionBin2Hex","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/bin2Hex and 'Invoke-MgDriveItemWorkbookFunctionBin2Hex' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/bin2Oct","suppress",,"Invoke-MgDriveItemWorkbookFunctionBin2Oct","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/bin2Oct and 'Invoke-MgDriveItemWorkbookFunctionBin2Oct' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/bitand","suppress",,"Invoke-MgDriveItemWorkbookFunctionBitand","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/bitand and 'Invoke-MgDriveItemWorkbookFunctionBitand' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/bitlshift","suppress",,"Invoke-MgDriveItemWorkbookFunctionBitlshift","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/bitlshift and 'Invoke-MgDriveItemWorkbookFunctionBitlshift' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/bitor","suppress",,"Invoke-MgDriveItemWorkbookFunctionBitor","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/bitor and 'Invoke-MgDriveItemWorkbookFunctionBitor' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/bitrshift","suppress",,"Invoke-MgDriveItemWorkbookFunctionBitrshift","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/bitrshift and 'Invoke-MgDriveItemWorkbookFunctionBitrshift' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/bitxor","suppress",,"Invoke-MgDriveItemWorkbookFunctionBitxor","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/bitxor and 'Invoke-MgDriveItemWorkbookFunctionBitxor' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/char","suppress",,"Invoke-MgDriveItemWorkbookFunctionChar","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/char and 'Invoke-MgDriveItemWorkbookFunctionChar' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/choose","suppress",,"Invoke-MgDriveItemWorkbookFunctionChoose","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/choose and 'Invoke-MgDriveItemWorkbookFunctionChoose' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/clean","suppress",,"Invoke-MgDriveItemWorkbookFunctionClean","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/clean and 'Invoke-MgDriveItemWorkbookFunctionClean' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/code","suppress",,"Invoke-MgDriveItemWorkbookFunctionCode","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/code and 'Invoke-MgDriveItemWorkbookFunctionCode' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/columns","suppress",,"Invoke-MgDriveItemWorkbookFunctionColumns","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/columns and 'Invoke-MgDriveItemWorkbookFunctionColumns' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/combin","suppress",,"Invoke-MgDriveItemWorkbookFunctionCombin","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/combin and 'Invoke-MgDriveItemWorkbookFunctionCombin' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/combina","suppress",,"Invoke-MgDriveItemWorkbookFunctionCombina","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/combina and 'Invoke-MgDriveItemWorkbookFunctionCombina' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/complex","suppress",,"Invoke-MgDriveItemWorkbookFunctionComplex","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/complex and 'Invoke-MgDriveItemWorkbookFunctionComplex' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/concatenate","suppress",,"Invoke-MgDriveItemWorkbookFunctionConcatenate","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/concatenate and 'Invoke-MgDriveItemWorkbookFunctionConcatenate' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/convert","suppress",,"Invoke-MgDriveItemWorkbookFunctionConvert","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/convert and 'Invoke-MgDriveItemWorkbookFunctionConvert' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/cos","suppress",,"Invoke-MgDriveItemWorkbookFunctionCos","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/cos and 'Invoke-MgDriveItemWorkbookFunctionCos' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/cosh","suppress",,"Invoke-MgDriveItemWorkbookFunctionCosh","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/cosh and 'Invoke-MgDriveItemWorkbookFunctionCosh' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/cot","suppress",,"Invoke-MgDriveItemWorkbookFunctionCot","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/cot and 'Invoke-MgDriveItemWorkbookFunctionCot' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/coth","suppress",,"Invoke-MgDriveItemWorkbookFunctionCoth","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/coth and 'Invoke-MgDriveItemWorkbookFunctionCoth' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/countA","suppress",,"Invoke-MgDriveItemWorkbookFunctionCountA","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/countA and 'Invoke-MgDriveItemWorkbookFunctionCountA' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/countBlank","suppress",,"Invoke-MgDriveItemWorkbookFunctionCountBlank","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/countBlank and 'Invoke-MgDriveItemWorkbookFunctionCountBlank' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/countIf","suppress",,"Invoke-MgDriveItemWorkbookFunctionCountIf","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/countIf and 'Invoke-MgDriveItemWorkbookFunctionCountIf' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/countIfs","suppress",,"Invoke-MgDriveItemWorkbookFunctionCountIfs","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/countIfs and 'Invoke-MgDriveItemWorkbookFunctionCountIfs' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/coupDayBs","suppress",,"Invoke-MgDriveItemWorkbookFunctionCoupDayBs","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/coupDayBs and 'Invoke-MgDriveItemWorkbookFunctionCoupDayBs' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/coupDays","suppress",,"Invoke-MgDriveItemWorkbookFunctionCoupDays","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/coupDays and 'Invoke-MgDriveItemWorkbookFunctionCoupDays' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/coupDaysNc","suppress",,"Invoke-MgDriveItemWorkbookFunctionCoupDaysNc","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/coupDaysNc and 'Invoke-MgDriveItemWorkbookFunctionCoupDaysNc' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/coupNcd","suppress",,"Invoke-MgDriveItemWorkbookFunctionCoupNcd","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/coupNcd and 'Invoke-MgDriveItemWorkbookFunctionCoupNcd' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/coupNum","suppress",,"Invoke-MgDriveItemWorkbookFunctionCoupNum","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/coupNum and 'Invoke-MgDriveItemWorkbookFunctionCoupNum' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/coupPcd","suppress",,"Invoke-MgDriveItemWorkbookFunctionCoupPcd","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/coupPcd and 'Invoke-MgDriveItemWorkbookFunctionCoupPcd' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/csc","suppress",,"Invoke-MgDriveItemWorkbookFunctionCsc","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/csc and 'Invoke-MgDriveItemWorkbookFunctionCsc' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/csch","suppress",,"Invoke-MgDriveItemWorkbookFunctionCsch","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/csch and 'Invoke-MgDriveItemWorkbookFunctionCsch' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/cumIPmt","suppress",,"Invoke-MgDriveItemWorkbookFunctionCumIPmt","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/cumIPmt and 'Invoke-MgDriveItemWorkbookFunctionCumIPmt' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/cumPrinc","suppress",,"Invoke-MgDriveItemWorkbookFunctionCumPrinc","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/cumPrinc and 'Invoke-MgDriveItemWorkbookFunctionCumPrinc' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/date","suppress",,"Invoke-MgDriveItemWorkbookFunctionDate","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/date and 'Invoke-MgDriveItemWorkbookFunctionDate' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/datevalue","suppress",,"Invoke-MgDriveItemWorkbookFunctionDatevalue","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/datevalue and 'Invoke-MgDriveItemWorkbookFunctionDatevalue' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/daverage","suppress",,"Invoke-MgDriveItemWorkbookFunctionDaverage","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/daverage and 'Invoke-MgDriveItemWorkbookFunctionDaverage' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/day","suppress",,"Invoke-MgDriveItemWorkbookFunctionDay","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/day and 'Invoke-MgDriveItemWorkbookFunctionDay' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/days","suppress",,"Invoke-MgDriveItemWorkbookFunctionDays","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/days and 'Invoke-MgDriveItemWorkbookFunctionDays' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/days360","suppress",,"Invoke-MgDriveItemWorkbookFunctionDays360","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/days360 and 'Invoke-MgDriveItemWorkbookFunctionDays360' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/db","suppress",,"Invoke-MgDriveItemWorkbookFunctionDb","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/db and 'Invoke-MgDriveItemWorkbookFunctionDb' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/dbcs","suppress",,"Invoke-MgDriveItemWorkbookFunctionDbcs","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/dbcs and 'Invoke-MgDriveItemWorkbookFunctionDbcs' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/dcount","suppress",,"Invoke-MgDriveItemWorkbookFunctionDcount","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/dcount and 'Invoke-MgDriveItemWorkbookFunctionDcount' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/dcountA","suppress",,"Invoke-MgDriveItemWorkbookFunctionDcountA","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/dcountA and 'Invoke-MgDriveItemWorkbookFunctionDcountA' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/ddb","suppress",,"Invoke-MgDriveItemWorkbookFunctionDdb","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/ddb and 'Invoke-MgDriveItemWorkbookFunctionDdb' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/dec2Bin","suppress",,"Invoke-MgDriveItemWorkbookFunctionDec2Bin","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/dec2Bin and 'Invoke-MgDriveItemWorkbookFunctionDec2Bin' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/dec2Hex","suppress",,"Invoke-MgDriveItemWorkbookFunctionDec2Hex","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/dec2Hex and 'Invoke-MgDriveItemWorkbookFunctionDec2Hex' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/dec2Oct","suppress",,"Invoke-MgDriveItemWorkbookFunctionDec2Oct","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/dec2Oct and 'Invoke-MgDriveItemWorkbookFunctionDec2Oct' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/decimal","suppress",,"Invoke-MgDriveItemWorkbookFunctionDecimal","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/decimal and 'Invoke-MgDriveItemWorkbookFunctionDecimal' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/degrees","suppress",,"Invoke-MgDriveItemWorkbookFunctionDegrees","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/degrees and 'Invoke-MgDriveItemWorkbookFunctionDegrees' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/delta","suppress",,"Invoke-MgDriveItemWorkbookFunctionDelta","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/delta and 'Invoke-MgDriveItemWorkbookFunctionDelta' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/devSq","suppress",,"Invoke-MgDriveItemWorkbookFunctionDevSq","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/devSq and 'Invoke-MgDriveItemWorkbookFunctionDevSq' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/dget","suppress",,"Invoke-MgDriveItemWorkbookFunctionDget","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/dget and 'Invoke-MgDriveItemWorkbookFunctionDget' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/disc","suppress",,"Invoke-MgDriveItemWorkbookFunctionDisc","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/disc and 'Invoke-MgDriveItemWorkbookFunctionDisc' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/dmax","suppress",,"Invoke-MgDriveItemWorkbookFunctionDmax","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/dmax and 'Invoke-MgDriveItemWorkbookFunctionDmax' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/dmin","suppress",,"Invoke-MgDriveItemWorkbookFunctionDmin","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/dmin and 'Invoke-MgDriveItemWorkbookFunctionDmin' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/dollar","suppress",,"Invoke-MgDriveItemWorkbookFunctionDollar","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/dollar and 'Invoke-MgDriveItemWorkbookFunctionDollar' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/dollarDe","suppress",,"Invoke-MgDriveItemWorkbookFunctionDollarDe","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/dollarDe and 'Invoke-MgDriveItemWorkbookFunctionDollarDe' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/dollarFr","suppress",,"Invoke-MgDriveItemWorkbookFunctionDollarFr","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/dollarFr and 'Invoke-MgDriveItemWorkbookFunctionDollarFr' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/dproduct","suppress",,"Invoke-MgDriveItemWorkbookFunctionDproduct","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/dproduct and 'Invoke-MgDriveItemWorkbookFunctionDproduct' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/dstDev","suppress",,"Invoke-MgDriveItemWorkbookFunctionDstDev","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/dstDev and 'Invoke-MgDriveItemWorkbookFunctionDstDev' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/dstDevP","suppress",,"Invoke-MgDriveItemWorkbookFunctionDstDevP","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/dstDevP and 'Invoke-MgDriveItemWorkbookFunctionDstDevP' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/dsum","suppress",,"Invoke-MgDriveItemWorkbookFunctionDsum","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/dsum and 'Invoke-MgDriveItemWorkbookFunctionDsum' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/duration","suppress",,"Invoke-MgDriveItemWorkbookFunctionDuration","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/duration and 'Invoke-MgDriveItemWorkbookFunctionDuration' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/dvar","suppress",,"Invoke-MgDriveItemWorkbookFunctionDvar","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/dvar and 'Invoke-MgDriveItemWorkbookFunctionDvar' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/dvarP","suppress",,"Invoke-MgDriveItemWorkbookFunctionDvarP","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/dvarP and 'Invoke-MgDriveItemWorkbookFunctionDvarP' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/edate","suppress",,"Invoke-MgDriveItemWorkbookFunctionEdate","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/edate and 'Invoke-MgDriveItemWorkbookFunctionEdate' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/effect","suppress",,"Invoke-MgDriveItemWorkbookFunctionEffect","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/effect and 'Invoke-MgDriveItemWorkbookFunctionEffect' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/eoMonth","suppress",,"Invoke-MgDriveItemWorkbookFunctionEoMonth","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/eoMonth and 'Invoke-MgDriveItemWorkbookFunctionEoMonth' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/erf","suppress",,"Invoke-MgDriveItemWorkbookFunctionErf","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/erf and 'Invoke-MgDriveItemWorkbookFunctionErf' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/erfC","suppress",,"Invoke-MgDriveItemWorkbookFunctionErfC","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/erfC and 'Invoke-MgDriveItemWorkbookFunctionErfC' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/even","suppress",,"Invoke-MgDriveItemWorkbookFunctionEven","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/even and 'Invoke-MgDriveItemWorkbookFunctionEven' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/exact","suppress",,"Invoke-MgDriveItemWorkbookFunctionExact","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/exact and 'Invoke-MgDriveItemWorkbookFunctionExact' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/exp","suppress",,"Invoke-MgDriveItemWorkbookFunctionExp","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/exp and 'Invoke-MgDriveItemWorkbookFunctionExp' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/fact","suppress",,"Invoke-MgDriveItemWorkbookFunctionFact","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/fact and 'Invoke-MgDriveItemWorkbookFunctionFact' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/factDouble","suppress",,"Invoke-MgDriveItemWorkbookFunctionFactDouble","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/factDouble and 'Invoke-MgDriveItemWorkbookFunctionFactDouble' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/false","suppress",,"Invoke-MgDriveItemWorkbookFunctionFalse","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/false and 'Invoke-MgDriveItemWorkbookFunctionFalse' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/find","suppress",,"Invoke-MgDriveItemWorkbookFunctionFind","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/find and 'Invoke-MgDriveItemWorkbookFunctionFind' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/findB","suppress",,"Invoke-MgDriveItemWorkbookFunctionFindB","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/findB and 'Invoke-MgDriveItemWorkbookFunctionFindB' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/fisher","suppress",,"Invoke-MgDriveItemWorkbookFunctionFisher","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/fisher and 'Invoke-MgDriveItemWorkbookFunctionFisher' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/fisherInv","suppress",,"Invoke-MgDriveItemWorkbookFunctionFisherInv","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/fisherInv and 'Invoke-MgDriveItemWorkbookFunctionFisherInv' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/fixed","suppress",,"Invoke-MgDriveItemWorkbookFunctionFixed","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/fixed and 'Invoke-MgDriveItemWorkbookFunctionFixed' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/fv","suppress",,"Invoke-MgDriveItemWorkbookFunctionFv","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/fv and 'Invoke-MgDriveItemWorkbookFunctionFv' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/fvschedule","suppress",,"Invoke-MgDriveItemWorkbookFunctionFvschedule","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/fvschedule and 'Invoke-MgDriveItemWorkbookFunctionFvschedule' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/gamma","suppress",,"Invoke-MgDriveItemWorkbookFunctionGamma","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/gamma and 'Invoke-MgDriveItemWorkbookFunctionGamma' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/gammaLn","suppress",,"Invoke-MgDriveItemWorkbookFunctionGammaLn","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/gammaLn and 'Invoke-MgDriveItemWorkbookFunctionGammaLn' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/gauss","suppress",,"Invoke-MgDriveItemWorkbookFunctionGauss","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/gauss and 'Invoke-MgDriveItemWorkbookFunctionGauss' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/gcd","suppress",,"Invoke-MgDriveItemWorkbookFunctionGcd","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/gcd and 'Invoke-MgDriveItemWorkbookFunctionGcd' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/geoMean","suppress",,"Invoke-MgDriveItemWorkbookFunctionGeoMean","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/geoMean and 'Invoke-MgDriveItemWorkbookFunctionGeoMean' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/geStep","suppress",,"Invoke-MgDriveItemWorkbookFunctionGeStep","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/geStep and 'Invoke-MgDriveItemWorkbookFunctionGeStep' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/harMean","suppress",,"Invoke-MgDriveItemWorkbookFunctionHarMean","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/harMean and 'Invoke-MgDriveItemWorkbookFunctionHarMean' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/hex2Bin","suppress",,"Invoke-MgDriveItemWorkbookFunctionHex2Bin","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/hex2Bin and 'Invoke-MgDriveItemWorkbookFunctionHex2Bin' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/hex2Dec","suppress",,"Invoke-MgDriveItemWorkbookFunctionHex2Dec","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/hex2Dec and 'Invoke-MgDriveItemWorkbookFunctionHex2Dec' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/hex2Oct","suppress",,"Invoke-MgDriveItemWorkbookFunctionHex2Oct","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/hex2Oct and 'Invoke-MgDriveItemWorkbookFunctionHex2Oct' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/hlookup","suppress",,"Invoke-MgDriveItemWorkbookFunctionHlookup","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/hlookup and 'Invoke-MgDriveItemWorkbookFunctionHlookup' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/hour","suppress",,"Invoke-MgDriveItemWorkbookFunctionHour","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/hour and 'Invoke-MgDriveItemWorkbookFunctionHour' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/hyperlink","suppress",,"Invoke-MgDriveItemWorkbookFunctionHyperlink","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/hyperlink and 'Invoke-MgDriveItemWorkbookFunctionHyperlink' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/if","suppress",,"Invoke-MgDriveItemWorkbookFunctionIf","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/if and 'Invoke-MgDriveItemWorkbookFunctionIf' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/imAbs","suppress",,"Invoke-MgDriveItemWorkbookFunctionImAbs","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/imAbs and 'Invoke-MgDriveItemWorkbookFunctionImAbs' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/imaginary","suppress",,"Invoke-MgDriveItemWorkbookFunctionImaginary","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/imaginary and 'Invoke-MgDriveItemWorkbookFunctionImaginary' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/imArgument","suppress",,"Invoke-MgDriveItemWorkbookFunctionImArgument","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/imArgument and 'Invoke-MgDriveItemWorkbookFunctionImArgument' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/imConjugate","suppress",,"Invoke-MgDriveItemWorkbookFunctionImConjugate","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/imConjugate and 'Invoke-MgDriveItemWorkbookFunctionImConjugate' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/imCos","suppress",,"Invoke-MgDriveItemWorkbookFunctionImCos","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/imCos and 'Invoke-MgDriveItemWorkbookFunctionImCos' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/imCosh","suppress",,"Invoke-MgDriveItemWorkbookFunctionImCosh","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/imCosh and 'Invoke-MgDriveItemWorkbookFunctionImCosh' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/imCot","suppress",,"Invoke-MgDriveItemWorkbookFunctionImCot","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/imCot and 'Invoke-MgDriveItemWorkbookFunctionImCot' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/imCsc","suppress",,"Invoke-MgDriveItemWorkbookFunctionImCsc","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/imCsc and 'Invoke-MgDriveItemWorkbookFunctionImCsc' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/imCsch","suppress",,"Invoke-MgDriveItemWorkbookFunctionImCsch","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/imCsch and 'Invoke-MgDriveItemWorkbookFunctionImCsch' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/imDiv","suppress",,"Invoke-MgDriveItemWorkbookFunctionImDiv","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/imDiv and 'Invoke-MgDriveItemWorkbookFunctionImDiv' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/imExp","suppress",,"Invoke-MgDriveItemWorkbookFunctionImExp","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/imExp and 'Invoke-MgDriveItemWorkbookFunctionImExp' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/imLn","suppress",,"Invoke-MgDriveItemWorkbookFunctionImLn","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/imLn and 'Invoke-MgDriveItemWorkbookFunctionImLn' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/imLog10","suppress",,"Invoke-MgDriveItemWorkbookFunctionImLog10","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/imLog10 and 'Invoke-MgDriveItemWorkbookFunctionImLog10' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/imLog2","suppress",,"Invoke-MgDriveItemWorkbookFunctionImLog2","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/imLog2 and 'Invoke-MgDriveItemWorkbookFunctionImLog2' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/imPower","suppress",,"Invoke-MgDriveItemWorkbookFunctionImPower","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/imPower and 'Invoke-MgDriveItemWorkbookFunctionImPower' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/imProduct","suppress",,"Invoke-MgDriveItemWorkbookFunctionImProduct","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/imProduct and 'Invoke-MgDriveItemWorkbookFunctionImProduct' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/imReal","suppress",,"Invoke-MgDriveItemWorkbookFunctionImReal","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/imReal and 'Invoke-MgDriveItemWorkbookFunctionImReal' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/imSec","suppress",,"Invoke-MgDriveItemWorkbookFunctionImSec","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/imSec and 'Invoke-MgDriveItemWorkbookFunctionImSec' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/imSech","suppress",,"Invoke-MgDriveItemWorkbookFunctionImSech","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/imSech and 'Invoke-MgDriveItemWorkbookFunctionImSech' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/imSin","suppress",,"Invoke-MgDriveItemWorkbookFunctionImSin","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/imSin and 'Invoke-MgDriveItemWorkbookFunctionImSin' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/imSinh","suppress",,"Invoke-MgDriveItemWorkbookFunctionImSinh","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/imSinh and 'Invoke-MgDriveItemWorkbookFunctionImSinh' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/imSqrt","suppress",,"Invoke-MgDriveItemWorkbookFunctionImSqrt","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/imSqrt and 'Invoke-MgDriveItemWorkbookFunctionImSqrt' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/imSub","suppress",,"Invoke-MgDriveItemWorkbookFunctionImSub","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/imSub and 'Invoke-MgDriveItemWorkbookFunctionImSub' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/imSum","suppress",,"Invoke-MgDriveItemWorkbookFunctionImSum","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/imSum and 'Invoke-MgDriveItemWorkbookFunctionImSum' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/imTan","suppress",,"Invoke-MgDriveItemWorkbookFunctionImTan","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/imTan and 'Invoke-MgDriveItemWorkbookFunctionImTan' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/int","suppress",,"Invoke-MgDriveItemWorkbookFunctionInt","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/int and 'Invoke-MgDriveItemWorkbookFunctionInt' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/intRate","suppress",,"Invoke-MgDriveItemWorkbookFunctionIntRate","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/intRate and 'Invoke-MgDriveItemWorkbookFunctionIntRate' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/ipmt","suppress",,"Invoke-MgDriveItemWorkbookFunctionIpmt","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/ipmt and 'Invoke-MgDriveItemWorkbookFunctionIpmt' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/irr","suppress",,"Invoke-MgDriveItemWorkbookFunctionIrr","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/irr and 'Invoke-MgDriveItemWorkbookFunctionIrr' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/isErr","suppress",,"Invoke-MgDriveItemWorkbookFunctionIsErr","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/isErr and 'Invoke-MgDriveItemWorkbookFunctionIsErr' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/isError","suppress",,"Invoke-MgDriveItemWorkbookFunctionIsError","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/isError and 'Invoke-MgDriveItemWorkbookFunctionIsError' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/isEven","suppress",,"Invoke-MgDriveItemWorkbookFunctionIsEven","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/isEven and 'Invoke-MgDriveItemWorkbookFunctionIsEven' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/isFormula","suppress",,"Invoke-MgDriveItemWorkbookFunctionIsFormula","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/isFormula and 'Invoke-MgDriveItemWorkbookFunctionIsFormula' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/isLogical","suppress",,"Invoke-MgDriveItemWorkbookFunctionIsLogical","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/isLogical and 'Invoke-MgDriveItemWorkbookFunctionIsLogical' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/isNA","suppress",,"Invoke-MgDriveItemWorkbookFunctionIsNA","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/isNA and 'Invoke-MgDriveItemWorkbookFunctionIsNA' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/isNonText","suppress",,"Invoke-MgDriveItemWorkbookFunctionIsNonText","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/isNonText and 'Invoke-MgDriveItemWorkbookFunctionIsNonText' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/isNumber","suppress",,"Invoke-MgDriveItemWorkbookFunctionIsNumber","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/isNumber and 'Invoke-MgDriveItemWorkbookFunctionIsNumber' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/isOdd","suppress",,"Invoke-MgDriveItemWorkbookFunctionIsOdd","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/isOdd and 'Invoke-MgDriveItemWorkbookFunctionIsOdd' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/isoWeekNum","suppress",,"Invoke-MgDriveItemWorkbookFunctionIsoWeekNum","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/isoWeekNum and 'Invoke-MgDriveItemWorkbookFunctionIsoWeekNum' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/ispmt","suppress",,"Invoke-MgDriveItemWorkbookFunctionIspmt","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/ispmt and 'Invoke-MgDriveItemWorkbookFunctionIspmt' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/isref","suppress",,"Invoke-MgDriveItemWorkbookFunctionIsref","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/isref and 'Invoke-MgDriveItemWorkbookFunctionIsref' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/isText","suppress",,"Invoke-MgDriveItemWorkbookFunctionIsText","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/isText and 'Invoke-MgDriveItemWorkbookFunctionIsText' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/kurt","suppress",,"Invoke-MgDriveItemWorkbookFunctionKurt","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/kurt and 'Invoke-MgDriveItemWorkbookFunctionKurt' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/large","suppress",,"Invoke-MgDriveItemWorkbookFunctionLarge","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/large and 'Invoke-MgDriveItemWorkbookFunctionLarge' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/lcm","suppress",,"Invoke-MgDriveItemWorkbookFunctionLcm","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/lcm and 'Invoke-MgDriveItemWorkbookFunctionLcm' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/left","suppress",,"Invoke-MgDriveItemWorkbookFunctionLeft","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/left and 'Invoke-MgDriveItemWorkbookFunctionLeft' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/leftb","suppress",,"Invoke-MgDriveItemWorkbookFunctionLeftb","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/leftb and 'Invoke-MgDriveItemWorkbookFunctionLeftb' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/len","suppress",,"Invoke-MgDriveItemWorkbookFunctionLen","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/len and 'Invoke-MgDriveItemWorkbookFunctionLen' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/lenb","suppress",,"Invoke-MgDriveItemWorkbookFunctionLenb","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/lenb and 'Invoke-MgDriveItemWorkbookFunctionLenb' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/ln","suppress",,"Invoke-MgDriveItemWorkbookFunctionLn","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/ln and 'Invoke-MgDriveItemWorkbookFunctionLn' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/log","suppress",,"Invoke-MgDriveItemWorkbookFunctionLog","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/log and 'Invoke-MgDriveItemWorkbookFunctionLog' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/log10","suppress",,"Invoke-MgDriveItemWorkbookFunctionLog10","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/log10 and 'Invoke-MgDriveItemWorkbookFunctionLog10' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/lookup","suppress",,"Invoke-MgDriveItemWorkbookFunctionLookup","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/lookup and 'Invoke-MgDriveItemWorkbookFunctionLookup' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/lower","suppress",,"Invoke-MgDriveItemWorkbookFunctionLower","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/lower and 'Invoke-MgDriveItemWorkbookFunctionLower' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/match","suppress",,"Invoke-MgDriveItemWorkbookFunctionMatch","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/match and 'Invoke-MgDriveItemWorkbookFunctionMatch' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/max","suppress",,"Invoke-MgDriveItemWorkbookFunctionMax","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/max and 'Invoke-MgDriveItemWorkbookFunctionMax' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/maxA","suppress",,"Invoke-MgDriveItemWorkbookFunctionMaxA","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/maxA and 'Invoke-MgDriveItemWorkbookFunctionMaxA' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/mduration","suppress",,"Invoke-MgDriveItemWorkbookFunctionMduration","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/mduration and 'Invoke-MgDriveItemWorkbookFunctionMduration' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/median","suppress",,"Invoke-MgDriveItemWorkbookFunctionMedian","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/median and 'Invoke-MgDriveItemWorkbookFunctionMedian' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/mid","suppress",,"Invoke-MgDriveItemWorkbookFunctionMid","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/mid and 'Invoke-MgDriveItemWorkbookFunctionMid' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/midb","suppress",,"Invoke-MgDriveItemWorkbookFunctionMidb","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/midb and 'Invoke-MgDriveItemWorkbookFunctionMidb' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/min","suppress",,"Invoke-MgDriveItemWorkbookFunctionMin","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/min and 'Invoke-MgDriveItemWorkbookFunctionMin' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/minA","suppress",,"Invoke-MgDriveItemWorkbookFunctionMinA","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/minA and 'Invoke-MgDriveItemWorkbookFunctionMinA' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/minute","suppress",,"Invoke-MgDriveItemWorkbookFunctionMinute","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/minute and 'Invoke-MgDriveItemWorkbookFunctionMinute' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/mirr","suppress",,"Invoke-MgDriveItemWorkbookFunctionMirr","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/mirr and 'Invoke-MgDriveItemWorkbookFunctionMirr' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/mod","suppress",,"Invoke-MgDriveItemWorkbookFunctionMod","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/mod and 'Invoke-MgDriveItemWorkbookFunctionMod' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/month","suppress",,"Invoke-MgDriveItemWorkbookFunctionMonth","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/month and 'Invoke-MgDriveItemWorkbookFunctionMonth' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/mround","suppress",,"Invoke-MgDriveItemWorkbookFunctionMround","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/mround and 'Invoke-MgDriveItemWorkbookFunctionMround' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/multiNomial","suppress",,"Invoke-MgDriveItemWorkbookFunctionMultiNomial","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/multiNomial and 'Invoke-MgDriveItemWorkbookFunctionMultiNomial' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/n","suppress",,"Invoke-MgDriveItemWorkbookFunctionN","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/n and 'Invoke-MgDriveItemWorkbookFunctionN' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/na","suppress",,"Invoke-MgDriveItemWorkbookFunctionNa","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/na and 'Invoke-MgDriveItemWorkbookFunctionNa' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/networkDays","suppress",,"Invoke-MgDriveItemWorkbookFunctionNetworkDays","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/networkDays and 'Invoke-MgDriveItemWorkbookFunctionNetworkDays' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/nominal","suppress",,"Invoke-MgDriveItemWorkbookFunctionNominal","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/nominal and 'Invoke-MgDriveItemWorkbookFunctionNominal' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/not","suppress",,"Invoke-MgDriveItemWorkbookFunctionNot","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/not and 'Invoke-MgDriveItemWorkbookFunctionNot' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/now","suppress",,"Invoke-MgDriveItemWorkbookFunctionNow","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/now and 'Invoke-MgDriveItemWorkbookFunctionNow' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/nper","suppress",,"Invoke-MgDriveItemWorkbookFunctionNper","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/nper and 'Invoke-MgDriveItemWorkbookFunctionNper' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/npv","suppress",,"Invoke-MgDriveItemWorkbookFunctionNpv","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/npv and 'Invoke-MgDriveItemWorkbookFunctionNpv' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/numberValue","suppress",,"Invoke-MgDriveItemWorkbookFunctionNumberValue","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/numberValue and 'Invoke-MgDriveItemWorkbookFunctionNumberValue' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/oct2Bin","suppress",,"Invoke-MgDriveItemWorkbookFunctionOct2Bin","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/oct2Bin and 'Invoke-MgDriveItemWorkbookFunctionOct2Bin' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/oct2Dec","suppress",,"Invoke-MgDriveItemWorkbookFunctionOct2Dec","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/oct2Dec and 'Invoke-MgDriveItemWorkbookFunctionOct2Dec' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/oct2Hex","suppress",,"Invoke-MgDriveItemWorkbookFunctionOct2Hex","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/oct2Hex and 'Invoke-MgDriveItemWorkbookFunctionOct2Hex' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/odd","suppress",,"Invoke-MgDriveItemWorkbookFunctionOdd","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/odd and 'Invoke-MgDriveItemWorkbookFunctionOdd' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/oddFPrice","suppress",,"Invoke-MgDriveItemWorkbookFunctionOddFPrice","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/oddFPrice and 'Invoke-MgDriveItemWorkbookFunctionOddFPrice' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/oddFYield","suppress",,"Invoke-MgDriveItemWorkbookFunctionOddFYield","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/oddFYield and 'Invoke-MgDriveItemWorkbookFunctionOddFYield' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/oddLPrice","suppress",,"Invoke-MgDriveItemWorkbookFunctionOddLPrice","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/oddLPrice and 'Invoke-MgDriveItemWorkbookFunctionOddLPrice' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/oddLYield","suppress",,"Invoke-MgDriveItemWorkbookFunctionOddLYield","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/oddLYield and 'Invoke-MgDriveItemWorkbookFunctionOddLYield' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/or","suppress",,"Invoke-MgDriveItemWorkbookFunctionOr","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/or and 'Invoke-MgDriveItemWorkbookFunctionOr' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/pduration","suppress",,"Invoke-MgDriveItemWorkbookFunctionPduration","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/pduration and 'Invoke-MgDriveItemWorkbookFunctionPduration' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/permut","suppress",,"Invoke-MgDriveItemWorkbookFunctionPermut","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/permut and 'Invoke-MgDriveItemWorkbookFunctionPermut' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/permutationa","suppress",,"Invoke-MgDriveItemWorkbookFunctionPermutationa","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/permutationa and 'Invoke-MgDriveItemWorkbookFunctionPermutationa' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/phi","suppress",,"Invoke-MgDriveItemWorkbookFunctionPhi","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/phi and 'Invoke-MgDriveItemWorkbookFunctionPhi' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/pi","suppress",,"Invoke-MgDriveItemWorkbookFunctionPi","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/pi and 'Invoke-MgDriveItemWorkbookFunctionPi' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/pmt","suppress",,"Invoke-MgDriveItemWorkbookFunctionPmt","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/pmt and 'Invoke-MgDriveItemWorkbookFunctionPmt' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/power","suppress",,"Invoke-MgDriveItemWorkbookFunctionPower","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/power and 'Invoke-MgDriveItemWorkbookFunctionPower' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/ppmt","suppress",,"Invoke-MgDriveItemWorkbookFunctionPpmt","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/ppmt and 'Invoke-MgDriveItemWorkbookFunctionPpmt' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/price","suppress",,"Invoke-MgDriveItemWorkbookFunctionPrice","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/price and 'Invoke-MgDriveItemWorkbookFunctionPrice' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/priceDisc","suppress",,"Invoke-MgDriveItemWorkbookFunctionPriceDisc","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/priceDisc and 'Invoke-MgDriveItemWorkbookFunctionPriceDisc' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/priceMat","suppress",,"Invoke-MgDriveItemWorkbookFunctionPriceMat","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/priceMat and 'Invoke-MgDriveItemWorkbookFunctionPriceMat' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/product","suppress",,"Invoke-MgDriveItemWorkbookFunctionProduct","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/product and 'Invoke-MgDriveItemWorkbookFunctionProduct' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/proper","suppress",,"Invoke-MgDriveItemWorkbookFunctionProper","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/proper and 'Invoke-MgDriveItemWorkbookFunctionProper' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/pv","suppress",,"Invoke-MgDriveItemWorkbookFunctionPv","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/pv and 'Invoke-MgDriveItemWorkbookFunctionPv' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/quotient","suppress",,"Invoke-MgDriveItemWorkbookFunctionQuotient","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/quotient and 'Invoke-MgDriveItemWorkbookFunctionQuotient' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/radians","suppress",,"Invoke-MgDriveItemWorkbookFunctionRadians","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/radians and 'Invoke-MgDriveItemWorkbookFunctionRadians' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/rand","suppress",,"Invoke-MgDriveItemWorkbookFunctionRand","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/rand and 'Invoke-MgDriveItemWorkbookFunctionRand' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/randBetween","suppress",,"Invoke-MgDriveItemWorkbookFunctionRandBetween","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/randBetween and 'Invoke-MgDriveItemWorkbookFunctionRandBetween' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/rate","suppress",,"Invoke-MgDriveItemWorkbookFunctionRate","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/rate and 'Invoke-MgDriveItemWorkbookFunctionRate' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/received","suppress",,"Invoke-MgDriveItemWorkbookFunctionReceived","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/received and 'Invoke-MgDriveItemWorkbookFunctionReceived' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/replace","suppress",,"Invoke-MgDriveItemWorkbookFunctionReplace","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/replace and 'Invoke-MgDriveItemWorkbookFunctionReplace' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/replaceB","suppress",,"Invoke-MgDriveItemWorkbookFunctionReplaceB","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/replaceB and 'Invoke-MgDriveItemWorkbookFunctionReplaceB' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/rept","suppress",,"Invoke-MgDriveItemWorkbookFunctionRept","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/rept and 'Invoke-MgDriveItemWorkbookFunctionRept' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/right","suppress",,"Invoke-MgDriveItemWorkbookFunctionRight","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/right and 'Invoke-MgDriveItemWorkbookFunctionRight' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/rightb","suppress",,"Invoke-MgDriveItemWorkbookFunctionRightb","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/rightb and 'Invoke-MgDriveItemWorkbookFunctionRightb' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/roman","suppress",,"Invoke-MgDriveItemWorkbookFunctionRoman","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/roman and 'Invoke-MgDriveItemWorkbookFunctionRoman' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/round","suppress",,"Invoke-MgDriveItemWorkbookFunctionRound","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/round and 'Invoke-MgDriveItemWorkbookFunctionRound' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/roundDown","suppress",,"Invoke-MgDriveItemWorkbookFunctionRoundDown","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/roundDown and 'Invoke-MgDriveItemWorkbookFunctionRoundDown' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/roundUp","suppress",,"Invoke-MgDriveItemWorkbookFunctionRoundUp","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/roundUp and 'Invoke-MgDriveItemWorkbookFunctionRoundUp' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/rows","suppress",,"Invoke-MgDriveItemWorkbookFunctionRows","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/rows and 'Invoke-MgDriveItemWorkbookFunctionRows' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/rri","suppress",,"Invoke-MgDriveItemWorkbookFunctionRri","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/rri and 'Invoke-MgDriveItemWorkbookFunctionRri' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/sec","suppress",,"Invoke-MgDriveItemWorkbookFunctionSec","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/sec and 'Invoke-MgDriveItemWorkbookFunctionSec' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/sech","suppress",,"Invoke-MgDriveItemWorkbookFunctionSech","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/sech and 'Invoke-MgDriveItemWorkbookFunctionSech' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/second","suppress",,"Invoke-MgDriveItemWorkbookFunctionSecond","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/second and 'Invoke-MgDriveItemWorkbookFunctionSecond' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/seriesSum","suppress",,"Invoke-MgDriveItemWorkbookFunctionSeriesSum","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/seriesSum and 'Invoke-MgDriveItemWorkbookFunctionSeriesSum' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/sheet","suppress",,"Invoke-MgDriveItemWorkbookFunctionSheet","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/sheet and 'Invoke-MgDriveItemWorkbookFunctionSheet' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/sheets","suppress",,"Invoke-MgDriveItemWorkbookFunctionSheets","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/sheets and 'Invoke-MgDriveItemWorkbookFunctionSheets' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/sign","suppress",,"Invoke-MgDriveItemWorkbookFunctionSign","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/sign and 'Invoke-MgDriveItemWorkbookFunctionSign' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/sin","suppress",,"Invoke-MgDriveItemWorkbookFunctionSin","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/sin and 'Invoke-MgDriveItemWorkbookFunctionSin' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/sinh","suppress",,"Invoke-MgDriveItemWorkbookFunctionSinh","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/sinh and 'Invoke-MgDriveItemWorkbookFunctionSinh' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/skew","suppress",,"Invoke-MgDriveItemWorkbookFunctionSkew","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/skew and 'Invoke-MgDriveItemWorkbookFunctionSkew' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/sln","suppress",,"Invoke-MgDriveItemWorkbookFunctionSln","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/sln and 'Invoke-MgDriveItemWorkbookFunctionSln' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/small","suppress",,"Invoke-MgDriveItemWorkbookFunctionSmall","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/small and 'Invoke-MgDriveItemWorkbookFunctionSmall' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/sqrt","suppress",,"Invoke-MgDriveItemWorkbookFunctionSqrt","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/sqrt and 'Invoke-MgDriveItemWorkbookFunctionSqrt' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/sqrtPi","suppress",,"Invoke-MgDriveItemWorkbookFunctionSqrtPi","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/sqrtPi and 'Invoke-MgDriveItemWorkbookFunctionSqrtPi' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/standardize","suppress",,"Invoke-MgDriveItemWorkbookFunctionStandardize","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/standardize and 'Invoke-MgDriveItemWorkbookFunctionStandardize' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/stDevA","suppress",,"Invoke-MgDriveItemWorkbookFunctionStDevA","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/stDevA and 'Invoke-MgDriveItemWorkbookFunctionStDevA' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/stDevPA","suppress",,"Invoke-MgDriveItemWorkbookFunctionStDevPA","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/stDevPA and 'Invoke-MgDriveItemWorkbookFunctionStDevPA' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/substitute","suppress",,"Invoke-MgDriveItemWorkbookFunctionSubstitute","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/substitute and 'Invoke-MgDriveItemWorkbookFunctionSubstitute' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/subtotal","suppress",,"Invoke-MgDriveItemWorkbookFunctionSubtotal","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/subtotal and 'Invoke-MgDriveItemWorkbookFunctionSubtotal' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/sum","suppress",,"Invoke-MgDriveItemWorkbookFunctionSum","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/sum and 'Invoke-MgDriveItemWorkbookFunctionSum' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/sumIf","suppress",,"Invoke-MgDriveItemWorkbookFunctionSumIf","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/sumIf and 'Invoke-MgDriveItemWorkbookFunctionSumIf' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/sumIfs","suppress",,"Invoke-MgDriveItemWorkbookFunctionSumIfs","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/sumIfs and 'Invoke-MgDriveItemWorkbookFunctionSumIfs' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/sumSq","suppress",,"Invoke-MgDriveItemWorkbookFunctionSumSq","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/sumSq and 'Invoke-MgDriveItemWorkbookFunctionSumSq' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/syd","suppress",,"Invoke-MgDriveItemWorkbookFunctionSyd","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/syd and 'Invoke-MgDriveItemWorkbookFunctionSyd' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/t","suppress",,"Invoke-MgDriveItemWorkbookFunctionT","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/t and 'Invoke-MgDriveItemWorkbookFunctionT' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/tan","suppress",,"Invoke-MgDriveItemWorkbookFunctionTan","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/tan and 'Invoke-MgDriveItemWorkbookFunctionTan' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/tanh","suppress",,"Invoke-MgDriveItemWorkbookFunctionTanh","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/tanh and 'Invoke-MgDriveItemWorkbookFunctionTanh' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/tbillEq","suppress",,"Invoke-MgDriveItemWorkbookFunctionTbillEq","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/tbillEq and 'Invoke-MgDriveItemWorkbookFunctionTbillEq' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/tbillPrice","suppress",,"Invoke-MgDriveItemWorkbookFunctionTbillPrice","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/tbillPrice and 'Invoke-MgDriveItemWorkbookFunctionTbillPrice' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/tbillYield","suppress",,"Invoke-MgDriveItemWorkbookFunctionTbillYield","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/tbillYield and 'Invoke-MgDriveItemWorkbookFunctionTbillYield' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/text","suppress",,"Invoke-MgDriveItemWorkbookFunctionText","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/text and 'Invoke-MgDriveItemWorkbookFunctionText' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/time","suppress",,"Invoke-MgDriveItemWorkbookFunctionTime","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/time and 'Invoke-MgDriveItemWorkbookFunctionTime' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/timevalue","suppress",,"Invoke-MgDriveItemWorkbookFunctionTimevalue","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/timevalue and 'Invoke-MgDriveItemWorkbookFunctionTimevalue' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/today","suppress",,"Invoke-MgDriveItemWorkbookFunctionToday","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/today and 'Invoke-MgDriveItemWorkbookFunctionToday' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/trim","suppress",,"Invoke-MgDriveItemWorkbookFunctionTrim","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/trim and 'Invoke-MgDriveItemWorkbookFunctionTrim' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/trimMean","suppress",,"Invoke-MgDriveItemWorkbookFunctionTrimMean","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/trimMean and 'Invoke-MgDriveItemWorkbookFunctionTrimMean' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/true","suppress",,"Invoke-MgDriveItemWorkbookFunctionTrue","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/true and 'Invoke-MgDriveItemWorkbookFunctionTrue' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/trunc","suppress",,"Invoke-MgDriveItemWorkbookFunctionTrunc","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/trunc and 'Invoke-MgDriveItemWorkbookFunctionTrunc' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/type","suppress",,"Invoke-MgDriveItemWorkbookFunctionType","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/type and 'Invoke-MgDriveItemWorkbookFunctionType' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/unichar","suppress",,"Invoke-MgDriveItemWorkbookFunctionUnichar","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/unichar and 'Invoke-MgDriveItemWorkbookFunctionUnichar' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/unicode","suppress",,"Invoke-MgDriveItemWorkbookFunctionUnicode","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/unicode and 'Invoke-MgDriveItemWorkbookFunctionUnicode' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/upper","suppress",,"Invoke-MgDriveItemWorkbookFunctionUpper","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/upper and 'Invoke-MgDriveItemWorkbookFunctionUpper' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/usdollar","suppress",,"Invoke-MgDriveItemWorkbookFunctionUsdollar","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/usdollar and 'Invoke-MgDriveItemWorkbookFunctionUsdollar' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/value","suppress",,"Invoke-MgDriveItemWorkbookFunctionValue","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/value and 'Invoke-MgDriveItemWorkbookFunctionValue' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/varA","suppress",,"Invoke-MgDriveItemWorkbookFunctionVarA","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/varA and 'Invoke-MgDriveItemWorkbookFunctionVarA' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/varPA","suppress",,"Invoke-MgDriveItemWorkbookFunctionVarPA","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/varPA and 'Invoke-MgDriveItemWorkbookFunctionVarPA' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/vdb","suppress",,"Invoke-MgDriveItemWorkbookFunctionVdb","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/vdb and 'Invoke-MgDriveItemWorkbookFunctionVdb' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/vlookup","suppress",,"Invoke-MgDriveItemWorkbookFunctionVlookup","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/vlookup and 'Invoke-MgDriveItemWorkbookFunctionVlookup' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/weekday","suppress",,"Invoke-MgDriveItemWorkbookFunctionWeekday","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/weekday and 'Invoke-MgDriveItemWorkbookFunctionWeekday' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/weekNum","suppress",,"Invoke-MgDriveItemWorkbookFunctionWeekNum","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/weekNum and 'Invoke-MgDriveItemWorkbookFunctionWeekNum' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/workDay","suppress",,"Invoke-MgDriveItemWorkbookFunctionWorkDay","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/workDay and 'Invoke-MgDriveItemWorkbookFunctionWorkDay' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/xirr","suppress",,"Invoke-MgDriveItemWorkbookFunctionXirr","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/xirr and 'Invoke-MgDriveItemWorkbookFunctionXirr' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/xnpv","suppress",,"Invoke-MgDriveItemWorkbookFunctionXnpv","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/xnpv and 'Invoke-MgDriveItemWorkbookFunctionXnpv' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/xor","suppress",,"Invoke-MgDriveItemWorkbookFunctionXor","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/xor and 'Invoke-MgDriveItemWorkbookFunctionXor' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/year","suppress",,"Invoke-MgDriveItemWorkbookFunctionYear","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/year and 'Invoke-MgDriveItemWorkbookFunctionYear' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/yearFrac","suppress",,"Invoke-MgDriveItemWorkbookFunctionYearFrac","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/yearFrac and 'Invoke-MgDriveItemWorkbookFunctionYearFrac' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/yield","suppress",,"Invoke-MgDriveItemWorkbookFunctionYield","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/yield and 'Invoke-MgDriveItemWorkbookFunctionYield' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/yieldDisc","suppress",,"Invoke-MgDriveItemWorkbookFunctionYieldDisc","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/yieldDisc and 'Invoke-MgDriveItemWorkbookFunctionYieldDisc' unshipped" +"POST","/drives/{param}/items/{param}/workbook/functions/yieldMat","suppress",,"Invoke-MgDriveItemWorkbookFunctionYieldMat","no oracle row for POST /drives/{param}/items/{param}/workbook/functions/yieldMat and 'Invoke-MgDriveItemWorkbookFunctionYieldMat' unshipped" +"POST","/drives/{param}/items/{param}/workbook/names","suppress",,"New-MgDriveItemWorkbookName","no oracle row for POST /drives/{param}/items/{param}/workbook/names and 'New-MgDriveItemWorkbookName' unshipped" +"POST","/drives/{param}/items/{param}/workbook/names/{param}/range/clear","suppress",,"Invoke-MgDriveItemWorkbookNameRangeClear","no oracle row for POST /drives/{param}/items/{param}/workbook/names/{param}/range/clear and 'Invoke-MgDriveItemWorkbookNameRangeClear' unshipped" +"POST","/drives/{param}/items/{param}/workbook/names/{param}/range/delete","suppress",,"Invoke-MgDriveItemWorkbookNameRangeDelete","no oracle row for POST /drives/{param}/items/{param}/workbook/names/{param}/range/delete and 'Invoke-MgDriveItemWorkbookNameRangeDelete' unshipped" +"POST","/drives/{param}/items/{param}/workbook/names/{param}/range/insert","suppress",,"Invoke-MgDriveItemWorkbookNameRangeInsert","no oracle row for POST /drives/{param}/items/{param}/workbook/names/{param}/range/insert and 'Invoke-MgDriveItemWorkbookNameRangeInsert' unshipped" +"POST","/drives/{param}/items/{param}/workbook/names/{param}/range/merge","suppress",,"Invoke-MgDriveItemWorkbookNameRangeMerge","no oracle row for POST /drives/{param}/items/{param}/workbook/names/{param}/range/merge and 'Invoke-MgDriveItemWorkbookNameRangeMerge' unshipped" +"POST","/drives/{param}/items/{param}/workbook/names/{param}/range/unmerge","suppress",,"Invoke-MgDriveItemWorkbookNameRangeUnmerge","no oracle row for POST /drives/{param}/items/{param}/workbook/names/{param}/range/unmerge and 'Invoke-MgDriveItemWorkbookNameRangeUnmerge' unshipped" +"POST","/drives/{param}/items/{param}/workbook/names/add","suppress",,"Invoke-MgDriveItemWorkbookNameAdd","no oracle row for POST /drives/{param}/items/{param}/workbook/names/add and 'Invoke-MgDriveItemWorkbookNameAdd' unshipped" +"POST","/drives/{param}/items/{param}/workbook/names/addFormulaLocal","suppress",,"Invoke-MgDriveItemWorkbookNameAddFormulaLocal","no oracle row for POST /drives/{param}/items/{param}/workbook/names/addFormulaLocal and 'Invoke-MgDriveItemWorkbookNameAddFormulaLocal' unshipped" +"POST","/drives/{param}/items/{param}/workbook/operations","suppress",,"New-MgDriveItemWorkbookOperation","no oracle row for POST /drives/{param}/items/{param}/workbook/operations and 'New-MgDriveItemWorkbookOperation' unshipped" +"POST","/drives/{param}/items/{param}/workbook/refreshSession","suppress",,"Invoke-MgDriveItemWorkbookRefreshSession","no oracle row for POST /drives/{param}/items/{param}/workbook/refreshSession and 'Invoke-MgDriveItemWorkbookRefreshSession' unshipped" +"POST","/drives/{param}/items/{param}/workbook/tables","suppress",,"New-MgDriveItemWorkbookTable","no oracle row for POST /drives/{param}/items/{param}/workbook/tables and 'New-MgDriveItemWorkbookTable' unshipped" +"POST","/drives/{param}/items/{param}/workbook/tables/{param}/clearFilters","suppress",,"Invoke-MgDriveItemWorkbookTableClearFilters","no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/clearFilters and 'Invoke-MgDriveItemWorkbookTableClearFilters' unshipped" +"POST","/drives/{param}/items/{param}/workbook/tables/{param}/columns","suppress",,"New-MgDriveItemWorkbookTableColumn","no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/columns and 'New-MgDriveItemWorkbookTableColumn' unshipped" +"POST","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/clear","suppress",,"Invoke-MgDriveItemWorkbookTableColumnDataBodyRangeClear","no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/clear and 'Invoke-MgDriveItemWorkbookTableColumnDataBodyRangeClear' unshipped" +"POST","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/delete","suppress",,"Invoke-MgDriveItemWorkbookTableColumnDataBodyRangeDelete","no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/delete and 'Invoke-MgDriveItemWorkbookTableColumnDataBodyRangeDelete' unshipped" +"POST","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/insert","suppress",,"Invoke-MgDriveItemWorkbookTableColumnDataBodyRangeInsert","no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/insert and 'Invoke-MgDriveItemWorkbookTableColumnDataBodyRangeInsert' unshipped" +"POST","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/merge","suppress",,"Invoke-MgDriveItemWorkbookTableColumnDataBodyRangeMerge","no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/merge and 'Invoke-MgDriveItemWorkbookTableColumnDataBodyRangeMerge' unshipped" +"POST","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/unmerge","suppress",,"Invoke-MgDriveItemWorkbookTableColumnDataBodyRangeUnmerge","no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/unmerge and 'Invoke-MgDriveItemWorkbookTableColumnDataBodyRangeUnmerge' unshipped" +"POST","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/filter/apply","suppress",,"Invoke-MgDriveItemWorkbookTableColumnFilterApply","no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/filter/apply and 'Invoke-MgDriveItemWorkbookTableColumnFilterApply' unshipped" +"POST","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/filter/applyBottomItemsFilter","suppress",,"Invoke-MgDriveItemWorkbookTableColumnFilterApplyBottomItemsFilter","no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/filter/applyBottomItemsFilter and 'Invoke-MgDriveItemWorkbookTableColumnFilterApplyBottomItemsFilter' unshipped" +"POST","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/filter/applyBottomPercentFilter","suppress",,"Invoke-MgDriveItemWorkbookTableColumnFilterApplyBottomPercentFilter","no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/filter/applyBottomPercentFilter and 'Invoke-MgDriveItemWorkbookTableColumnFilterApplyBottomPercentFilter' unshipped" +"POST","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/filter/applyCellColorFilter","suppress",,"Invoke-MgDriveItemWorkbookTableColumnFilterApplyCellColorFilter","no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/filter/applyCellColorFilter and 'Invoke-MgDriveItemWorkbookTableColumnFilterApplyCellColorFilter' unshipped" +"POST","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/filter/applyCustomFilter","suppress",,"Invoke-MgDriveItemWorkbookTableColumnFilterApplyCustomFilter","no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/filter/applyCustomFilter and 'Invoke-MgDriveItemWorkbookTableColumnFilterApplyCustomFilter' unshipped" +"POST","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/filter/applyDynamicFilter","suppress",,"Invoke-MgDriveItemWorkbookTableColumnFilterApplyDynamicFilter","no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/filter/applyDynamicFilter and 'Invoke-MgDriveItemWorkbookTableColumnFilterApplyDynamicFilter' unshipped" +"POST","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/filter/applyFontColorFilter","suppress",,"Invoke-MgDriveItemWorkbookTableColumnFilterApplyFontColorFilter","no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/filter/applyFontColorFilter and 'Invoke-MgDriveItemWorkbookTableColumnFilterApplyFontColorFilter' unshipped" +"POST","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/filter/applyIconFilter","suppress",,"Invoke-MgDriveItemWorkbookTableColumnFilterApplyIconFilter","no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/filter/applyIconFilter and 'Invoke-MgDriveItemWorkbookTableColumnFilterApplyIconFilter' unshipped" +"POST","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/filter/applyTopItemsFilter","suppress",,"Invoke-MgDriveItemWorkbookTableColumnFilterApplyTopItemsFilter","no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/filter/applyTopItemsFilter and 'Invoke-MgDriveItemWorkbookTableColumnFilterApplyTopItemsFilter' unshipped" +"POST","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/filter/applyTopPercentFilter","suppress",,"Invoke-MgDriveItemWorkbookTableColumnFilterApplyTopPercentFilter","no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/filter/applyTopPercentFilter and 'Invoke-MgDriveItemWorkbookTableColumnFilterApplyTopPercentFilter' unshipped" +"POST","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/filter/applyValuesFilter","suppress",,"Invoke-MgDriveItemWorkbookTableColumnFilterApplyValuesFilter","no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/filter/applyValuesFilter and 'Invoke-MgDriveItemWorkbookTableColumnFilterApplyValuesFilter' unshipped" +"POST","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/filter/clear","suppress",,"Invoke-MgDriveItemWorkbookTableColumnFilterClear","no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/filter/clear and 'Invoke-MgDriveItemWorkbookTableColumnFilterClear' unshipped" +"POST","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/clear","suppress",,"Invoke-MgDriveItemWorkbookTableColumnHeaderRowRangeClear","no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/clear and 'Invoke-MgDriveItemWorkbookTableColumnHeaderRowRangeClear' unshipped" +"POST","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/delete","suppress",,"Invoke-MgDriveItemWorkbookTableColumnHeaderRowRangeDelete","no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/delete and 'Invoke-MgDriveItemWorkbookTableColumnHeaderRowRangeDelete' unshipped" +"POST","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/insert","suppress",,"Invoke-MgDriveItemWorkbookTableColumnHeaderRowRangeInsert","no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/insert and 'Invoke-MgDriveItemWorkbookTableColumnHeaderRowRangeInsert' unshipped" +"POST","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/merge","suppress",,"Invoke-MgDriveItemWorkbookTableColumnHeaderRowRangeMerge","no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/merge and 'Invoke-MgDriveItemWorkbookTableColumnHeaderRowRangeMerge' unshipped" +"POST","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/unmerge","suppress",,"Invoke-MgDriveItemWorkbookTableColumnHeaderRowRangeUnmerge","no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/unmerge and 'Invoke-MgDriveItemWorkbookTableColumnHeaderRowRangeUnmerge' unshipped" +"POST","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/clear","suppress",,"Invoke-MgDriveItemWorkbookTableColumnRangeClear","no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/clear and 'Invoke-MgDriveItemWorkbookTableColumnRangeClear' unshipped" +"POST","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/delete","suppress",,"Invoke-MgDriveItemWorkbookTableColumnRangeDelete","no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/delete and 'Invoke-MgDriveItemWorkbookTableColumnRangeDelete' unshipped" +"POST","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/insert","suppress",,"Invoke-MgDriveItemWorkbookTableColumnRangeInsert","no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/insert and 'Invoke-MgDriveItemWorkbookTableColumnRangeInsert' unshipped" +"POST","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/merge","suppress",,"Invoke-MgDriveItemWorkbookTableColumnRangeMerge","no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/merge and 'Invoke-MgDriveItemWorkbookTableColumnRangeMerge' unshipped" +"POST","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/unmerge","suppress",,"Invoke-MgDriveItemWorkbookTableColumnRangeUnmerge","no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/unmerge and 'Invoke-MgDriveItemWorkbookTableColumnRangeUnmerge' unshipped" +"POST","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/clear","suppress",,"Invoke-MgDriveItemWorkbookTableColumnTotalRowRangeClear","no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/clear and 'Invoke-MgDriveItemWorkbookTableColumnTotalRowRangeClear' unshipped" +"POST","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/delete","suppress",,"Invoke-MgDriveItemWorkbookTableColumnTotalRowRangeDelete","no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/delete and 'Invoke-MgDriveItemWorkbookTableColumnTotalRowRangeDelete' unshipped" +"POST","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/insert","suppress",,"Invoke-MgDriveItemWorkbookTableColumnTotalRowRangeInsert","no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/insert and 'Invoke-MgDriveItemWorkbookTableColumnTotalRowRangeInsert' unshipped" +"POST","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/merge","suppress",,"Invoke-MgDriveItemWorkbookTableColumnTotalRowRangeMerge","no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/merge and 'Invoke-MgDriveItemWorkbookTableColumnTotalRowRangeMerge' unshipped" +"POST","/drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/unmerge","suppress",,"Invoke-MgDriveItemWorkbookTableColumnTotalRowRangeUnmerge","no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/unmerge and 'Invoke-MgDriveItemWorkbookTableColumnTotalRowRangeUnmerge' unshipped" +"POST","/drives/{param}/items/{param}/workbook/tables/{param}/columns/add","suppress",,"Invoke-MgDriveItemWorkbookTableColumnAdd","no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/columns/add and 'Invoke-MgDriveItemWorkbookTableColumnAdd' unshipped" +"POST","/drives/{param}/items/{param}/workbook/tables/{param}/convertToRange","suppress",,"Invoke-MgDriveItemWorkbookTableConvertToRange","no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/convertToRange and 'Invoke-MgDriveItemWorkbookTableConvertToRange' unshipped" +"POST","/drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/clear","suppress",,"Invoke-MgDriveItemWorkbookTableDataBodyRangeClear","no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/clear and 'Invoke-MgDriveItemWorkbookTableDataBodyRangeClear' unshipped" +"POST","/drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/delete","suppress",,"Invoke-MgDriveItemWorkbookTableDataBodyRangeDelete","no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/delete and 'Invoke-MgDriveItemWorkbookTableDataBodyRangeDelete' unshipped" +"POST","/drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/insert","suppress",,"Invoke-MgDriveItemWorkbookTableDataBodyRangeInsert","no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/insert and 'Invoke-MgDriveItemWorkbookTableDataBodyRangeInsert' unshipped" +"POST","/drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/merge","suppress",,"Invoke-MgDriveItemWorkbookTableDataBodyRangeMerge","no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/merge and 'Invoke-MgDriveItemWorkbookTableDataBodyRangeMerge' unshipped" +"POST","/drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/unmerge","suppress",,"Invoke-MgDriveItemWorkbookTableDataBodyRangeUnmerge","no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/unmerge and 'Invoke-MgDriveItemWorkbookTableDataBodyRangeUnmerge' unshipped" +"POST","/drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/clear","suppress",,"Invoke-MgDriveItemWorkbookTableHeaderRowRangeClear","no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/clear and 'Invoke-MgDriveItemWorkbookTableHeaderRowRangeClear' unshipped" +"POST","/drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/delete","suppress",,"Invoke-MgDriveItemWorkbookTableHeaderRowRangeDelete","no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/delete and 'Invoke-MgDriveItemWorkbookTableHeaderRowRangeDelete' unshipped" +"POST","/drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/insert","suppress",,"Invoke-MgDriveItemWorkbookTableHeaderRowRangeInsert","no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/insert and 'Invoke-MgDriveItemWorkbookTableHeaderRowRangeInsert' unshipped" +"POST","/drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/merge","suppress",,"Invoke-MgDriveItemWorkbookTableHeaderRowRangeMerge","no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/merge and 'Invoke-MgDriveItemWorkbookTableHeaderRowRangeMerge' unshipped" +"POST","/drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/unmerge","suppress",,"Invoke-MgDriveItemWorkbookTableHeaderRowRangeUnmerge","no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/unmerge and 'Invoke-MgDriveItemWorkbookTableHeaderRowRangeUnmerge' unshipped" +"POST","/drives/{param}/items/{param}/workbook/tables/{param}/range/clear","suppress",,"Invoke-MgDriveItemWorkbookTableRangeClear","no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/range/clear and 'Invoke-MgDriveItemWorkbookTableRangeClear' unshipped" +"POST","/drives/{param}/items/{param}/workbook/tables/{param}/range/delete","suppress",,"Invoke-MgDriveItemWorkbookTableRangeDelete","no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/range/delete and 'Invoke-MgDriveItemWorkbookTableRangeDelete' unshipped" +"POST","/drives/{param}/items/{param}/workbook/tables/{param}/range/insert","suppress",,"Invoke-MgDriveItemWorkbookTableRangeInsert","no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/range/insert and 'Invoke-MgDriveItemWorkbookTableRangeInsert' unshipped" +"POST","/drives/{param}/items/{param}/workbook/tables/{param}/range/merge","suppress",,"Invoke-MgDriveItemWorkbookTableRangeMerge","no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/range/merge and 'Invoke-MgDriveItemWorkbookTableRangeMerge' unshipped" +"POST","/drives/{param}/items/{param}/workbook/tables/{param}/range/unmerge","suppress",,"Invoke-MgDriveItemWorkbookTableRangeUnmerge","no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/range/unmerge and 'Invoke-MgDriveItemWorkbookTableRangeUnmerge' unshipped" +"POST","/drives/{param}/items/{param}/workbook/tables/{param}/reapplyFilters","suppress",,"Invoke-MgDriveItemWorkbookTableReapplyFilters","no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/reapplyFilters and 'Invoke-MgDriveItemWorkbookTableReapplyFilters' unshipped" +"POST","/drives/{param}/items/{param}/workbook/tables/{param}/rows","suppress",,"New-MgDriveItemWorkbookTableRow","no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/rows and 'New-MgDriveItemWorkbookTableRow' unshipped" +"POST","/drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/clear","suppress",,"Invoke-MgDriveItemWorkbookTableRowRangeClear","no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/clear and 'Invoke-MgDriveItemWorkbookTableRowRangeClear' unshipped" +"POST","/drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/delete","suppress",,"Invoke-MgDriveItemWorkbookTableRowRangeDelete","no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/delete and 'Invoke-MgDriveItemWorkbookTableRowRangeDelete' unshipped" +"POST","/drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/insert","suppress",,"Invoke-MgDriveItemWorkbookTableRowRangeInsert","no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/insert and 'Invoke-MgDriveItemWorkbookTableRowRangeInsert' unshipped" +"POST","/drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/merge","suppress",,"Invoke-MgDriveItemWorkbookTableRowRangeMerge","no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/merge and 'Invoke-MgDriveItemWorkbookTableRowRangeMerge' unshipped" +"POST","/drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/unmerge","suppress",,"Invoke-MgDriveItemWorkbookTableRowRangeUnmerge","no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/unmerge and 'Invoke-MgDriveItemWorkbookTableRowRangeUnmerge' unshipped" +"POST","/drives/{param}/items/{param}/workbook/tables/{param}/rows/add","suppress",,"Invoke-MgDriveItemWorkbookTableRowAdd","no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/rows/add and 'Invoke-MgDriveItemWorkbookTableRowAdd' unshipped" +"POST","/drives/{param}/items/{param}/workbook/tables/{param}/sort/apply","suppress",,"Invoke-MgDriveItemWorkbookTableSortApply","no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/sort/apply and 'Invoke-MgDriveItemWorkbookTableSortApply' unshipped" +"POST","/drives/{param}/items/{param}/workbook/tables/{param}/sort/clear","suppress",,"Invoke-MgDriveItemWorkbookTableSortClear","no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/sort/clear and 'Invoke-MgDriveItemWorkbookTableSortClear' unshipped" +"POST","/drives/{param}/items/{param}/workbook/tables/{param}/sort/reapply","suppress",,"Invoke-MgDriveItemWorkbookTableSortReapply","no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/sort/reapply and 'Invoke-MgDriveItemWorkbookTableSortReapply' unshipped" +"POST","/drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/clear","suppress",,"Invoke-MgDriveItemWorkbookTableTotalRowRangeClear","no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/clear and 'Invoke-MgDriveItemWorkbookTableTotalRowRangeClear' unshipped" +"POST","/drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/delete","suppress",,"Invoke-MgDriveItemWorkbookTableTotalRowRangeDelete","no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/delete and 'Invoke-MgDriveItemWorkbookTableTotalRowRangeDelete' unshipped" +"POST","/drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/insert","suppress",,"Invoke-MgDriveItemWorkbookTableTotalRowRangeInsert","no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/insert and 'Invoke-MgDriveItemWorkbookTableTotalRowRangeInsert' unshipped" +"POST","/drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/merge","suppress",,"Invoke-MgDriveItemWorkbookTableTotalRowRangeMerge","no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/merge and 'Invoke-MgDriveItemWorkbookTableTotalRowRangeMerge' unshipped" +"POST","/drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/unmerge","suppress",,"Invoke-MgDriveItemWorkbookTableTotalRowRangeUnmerge","no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/unmerge and 'Invoke-MgDriveItemWorkbookTableTotalRowRangeUnmerge' unshipped" +"POST","/drives/{param}/items/{param}/workbook/tables/add","suppress",,"Invoke-MgDriveItemWorkbookTableAdd","no oracle row for POST /drives/{param}/items/{param}/workbook/tables/add and 'Invoke-MgDriveItemWorkbookTableAdd' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets","suppress",,"New-MgDriveItemWorkbookWorksheet","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets and 'New-MgDriveItemWorkbookWorksheet' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts","suppress",,"New-MgDriveItemWorkbookWorksheetChart","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/charts and 'New-MgDriveItemWorkbookWorksheetChart' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/format/line/clear","suppress",,"Invoke-MgDriveItemWorkbookWorksheetChartAxCategoryAxisFormatLineClear","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/format/line/clear and 'Invoke-MgDriveItemWorkbookWorksheetChartAxCategoryAxisFormatLineClear' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/majorGridlines/format/line/clear","suppress",,"Invoke-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMajorGridlineFormatLineClear","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/majorGridlines/format/line/clear and 'Invoke-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMajorGridlineFormatLineClear' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/minorGridlines/format/line/clear","suppress",,"Invoke-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMinorGridlineFormatLineClear","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/minorGridlines/format/line/clear and 'Invoke-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMinorGridlineFormatLineClear' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/format/line/clear","suppress",,"Invoke-MgDriveItemWorkbookWorksheetChartAxSeryAxisFormatLineClear","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/format/line/clear and 'Invoke-MgDriveItemWorkbookWorksheetChartAxSeryAxisFormatLineClear' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/majorGridlines/format/line/clear","suppress",,"Invoke-MgDriveItemWorkbookWorksheetChartAxSeryAxisMajorGridlineFormatLineClear","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/majorGridlines/format/line/clear and 'Invoke-MgDriveItemWorkbookWorksheetChartAxSeryAxisMajorGridlineFormatLineClear' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/minorGridlines/format/line/clear","suppress",,"Invoke-MgDriveItemWorkbookWorksheetChartAxSeryAxisMinorGridlineFormatLineClear","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/minorGridlines/format/line/clear and 'Invoke-MgDriveItemWorkbookWorksheetChartAxSeryAxisMinorGridlineFormatLineClear' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/format/line/clear","suppress",,"Invoke-MgDriveItemWorkbookWorksheetChartAxValueAxisFormatLineClear","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/format/line/clear and 'Invoke-MgDriveItemWorkbookWorksheetChartAxValueAxisFormatLineClear' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/majorGridlines/format/line/clear","suppress",,"Invoke-MgDriveItemWorkbookWorksheetChartAxValueAxisMajorGridlineFormatLineClear","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/majorGridlines/format/line/clear and 'Invoke-MgDriveItemWorkbookWorksheetChartAxValueAxisMajorGridlineFormatLineClear' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/minorGridlines/format/line/clear","suppress",,"Invoke-MgDriveItemWorkbookWorksheetChartAxValueAxisMinorGridlineFormatLineClear","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/minorGridlines/format/line/clear and 'Invoke-MgDriveItemWorkbookWorksheetChartAxValueAxisMinorGridlineFormatLineClear' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/dataLabels/format/fill/clear","suppress",,"Invoke-MgDriveItemWorkbookWorksheetChartDataLabelFormatFillClear","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/dataLabels/format/fill/clear and 'Invoke-MgDriveItemWorkbookWorksheetChartDataLabelFormatFillClear' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/dataLabels/format/fill/setSolidColor","suppress",,"Invoke-MgDriveItemWorkbookWorksheetChartDataLabelFormatFillSetSolidColor","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/dataLabels/format/fill/setSolidColor and 'Invoke-MgDriveItemWorkbookWorksheetChartDataLabelFormatFillSetSolidColor' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/format/fill/clear","suppress",,"Invoke-MgDriveItemWorkbookWorksheetChartFormatFillClear","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/format/fill/clear and 'Invoke-MgDriveItemWorkbookWorksheetChartFormatFillClear' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/format/fill/setSolidColor","suppress",,"Invoke-MgDriveItemWorkbookWorksheetChartFormatFillSetSolidColor","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/format/fill/setSolidColor and 'Invoke-MgDriveItemWorkbookWorksheetChartFormatFillSetSolidColor' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/legend/format/fill/clear","suppress",,"Invoke-MgDriveItemWorkbookWorksheetChartLegendFormatFillClear","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/legend/format/fill/clear and 'Invoke-MgDriveItemWorkbookWorksheetChartLegendFormatFillClear' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/legend/format/fill/setSolidColor","suppress",,"Invoke-MgDriveItemWorkbookWorksheetChartLegendFormatFillSetSolidColor","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/legend/format/fill/setSolidColor and 'Invoke-MgDriveItemWorkbookWorksheetChartLegendFormatFillSetSolidColor' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series","suppress",,"New-MgDriveItemWorkbookWorksheetChartSery","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series and 'New-MgDriveItemWorkbookWorksheetChartSery' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/format/fill/clear","suppress",,"Invoke-MgDriveItemWorkbookWorksheetChartSeryFormatFillClear","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/format/fill/clear and 'Invoke-MgDriveItemWorkbookWorksheetChartSeryFormatFillClear' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/format/fill/setSolidColor","suppress",,"Invoke-MgDriveItemWorkbookWorksheetChartSeryFormatFillSetSolidColor","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/format/fill/setSolidColor and 'Invoke-MgDriveItemWorkbookWorksheetChartSeryFormatFillSetSolidColor' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/format/line/clear","suppress",,"Invoke-MgDriveItemWorkbookWorksheetChartSeryFormatLineClear","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/format/line/clear and 'Invoke-MgDriveItemWorkbookWorksheetChartSeryFormatLineClear' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/points","suppress",,"New-MgDriveItemWorkbookWorksheetChartSeryPoint","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/points and 'New-MgDriveItemWorkbookWorksheetChartSeryPoint' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/points/{param}/format/fill/clear","suppress",,"Invoke-MgDriveItemWorkbookWorksheetChartSeryPointFormatFillClear","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/points/{param}/format/fill/clear and 'Invoke-MgDriveItemWorkbookWorksheetChartSeryPointFormatFillClear' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/points/{param}/format/fill/setSolidColor","suppress",,"Invoke-MgDriveItemWorkbookWorksheetChartSeryPointFormatFillSetSolidColor","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/points/{param}/format/fill/setSolidColor and 'Invoke-MgDriveItemWorkbookWorksheetChartSeryPointFormatFillSetSolidColor' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/setData","suppress",,"Invoke-MgDriveItemWorkbookWorksheetChartSetData","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/setData and 'Invoke-MgDriveItemWorkbookWorksheetChartSetData' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/setPosition","suppress",,"Invoke-MgDriveItemWorkbookWorksheetChartSetPosition","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/setPosition and 'Invoke-MgDriveItemWorkbookWorksheetChartSetPosition' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/title/format/fill/clear","suppress",,"Invoke-MgDriveItemWorkbookWorksheetChartTitleFormatFillClear","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/title/format/fill/clear and 'Invoke-MgDriveItemWorkbookWorksheetChartTitleFormatFillClear' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/title/format/fill/setSolidColor","suppress",,"Invoke-MgDriveItemWorkbookWorksheetChartTitleFormatFillSetSolidColor","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/title/format/fill/setSolidColor and 'Invoke-MgDriveItemWorkbookWorksheetChartTitleFormatFillSetSolidColor' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/charts/add","suppress",,"Invoke-MgDriveItemWorkbookWorksheetChartAdd","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/add and 'Invoke-MgDriveItemWorkbookWorksheetChartAdd' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/names","suppress",,"New-MgDriveItemWorkbookWorksheetName","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/names and 'New-MgDriveItemWorkbookWorksheetName' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/clear","suppress",,"Invoke-MgDriveItemWorkbookWorksheetNameRangeClear","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/clear and 'Invoke-MgDriveItemWorkbookWorksheetNameRangeClear' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/delete","suppress",,"Invoke-MgDriveItemWorkbookWorksheetNameRangeDelete","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/delete and 'Invoke-MgDriveItemWorkbookWorksheetNameRangeDelete' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/insert","suppress",,"Invoke-MgDriveItemWorkbookWorksheetNameRangeInsert","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/insert and 'Invoke-MgDriveItemWorkbookWorksheetNameRangeInsert' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/merge","suppress",,"Invoke-MgDriveItemWorkbookWorksheetNameRangeMerge","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/merge and 'Invoke-MgDriveItemWorkbookWorksheetNameRangeMerge' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/unmerge","suppress",,"Invoke-MgDriveItemWorkbookWorksheetNameRangeUnmerge","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/unmerge and 'Invoke-MgDriveItemWorkbookWorksheetNameRangeUnmerge' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/names/add","suppress",,"Invoke-MgDriveItemWorkbookWorksheetNameAdd","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/names/add and 'Invoke-MgDriveItemWorkbookWorksheetNameAdd' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/names/addFormulaLocal","suppress",,"Invoke-MgDriveItemWorkbookWorksheetNameAddFormulaLocal","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/names/addFormulaLocal and 'Invoke-MgDriveItemWorkbookWorksheetNameAddFormulaLocal' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/pivotTables","suppress",,"New-MgDriveItemWorkbookWorksheetPivotTable","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/pivotTables and 'New-MgDriveItemWorkbookWorksheetPivotTable' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/pivotTables/{param}/refresh","suppress",,"Invoke-MgDriveItemWorkbookWorksheetPivotTableRefresh","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/pivotTables/{param}/refresh and 'Invoke-MgDriveItemWorkbookWorksheetPivotTableRefresh' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/pivotTables/refreshAll","suppress",,"Invoke-MgDriveItemWorkbookWorksheetPivotTableRefreshAll","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/pivotTables/refreshAll and 'Invoke-MgDriveItemWorkbookWorksheetPivotTableRefreshAll' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/protection/protect","suppress",,"Invoke-MgDriveItemWorkbookWorksheetProtectionProtect","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/protection/protect and 'Invoke-MgDriveItemWorkbookWorksheetProtectionProtect' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/protection/unprotect","suppress",,"Invoke-MgDriveItemWorkbookWorksheetProtectionUnprotect","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/protection/unprotect and 'Invoke-MgDriveItemWorkbookWorksheetProtectionUnprotect' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/range/clear","suppress",,"Invoke-MgDriveItemWorkbookWorksheetRangeClear","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/range/clear and 'Invoke-MgDriveItemWorkbookWorksheetRangeClear' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/range/delete","suppress",,"Invoke-MgDriveItemWorkbookWorksheetRangeDelete","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/range/delete and 'Invoke-MgDriveItemWorkbookWorksheetRangeDelete' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/range/insert","suppress",,"Invoke-MgDriveItemWorkbookWorksheetRangeInsert","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/range/insert and 'Invoke-MgDriveItemWorkbookWorksheetRangeInsert' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/range/merge","suppress",,"Invoke-MgDriveItemWorkbookWorksheetRangeMerge","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/range/merge and 'Invoke-MgDriveItemWorkbookWorksheetRangeMerge' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/range/unmerge","suppress",,"Invoke-MgDriveItemWorkbookWorksheetRangeUnmerge","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/range/unmerge and 'Invoke-MgDriveItemWorkbookWorksheetRangeUnmerge' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables","suppress",,"New-MgDriveItemWorkbookWorksheetTable","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables and 'New-MgDriveItemWorkbookWorksheetTable' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/clearFilters","suppress",,"Invoke-MgDriveItemWorkbookWorksheetTableClearFilters","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/clearFilters and 'Invoke-MgDriveItemWorkbookWorksheetTableClearFilters' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns","suppress",,"New-MgDriveItemWorkbookWorksheetTableColumn","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns and 'New-MgDriveItemWorkbookWorksheetTableColumn' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/clear","suppress",,"Invoke-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeClear","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/clear and 'Invoke-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeClear' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/delete","suppress",,"Invoke-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeDelete","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/delete and 'Invoke-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeDelete' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/insert","suppress",,"Invoke-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeInsert","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/insert and 'Invoke-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeInsert' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/merge","suppress",,"Invoke-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeMerge","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/merge and 'Invoke-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeMerge' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/unmerge","suppress",,"Invoke-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeUnmerge","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/unmerge and 'Invoke-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeUnmerge' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/filter/apply","suppress",,"Invoke-MgDriveItemWorkbookWorksheetTableColumnFilterApply","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/filter/apply and 'Invoke-MgDriveItemWorkbookWorksheetTableColumnFilterApply' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/filter/applyBottomItemsFilter","suppress",,"Invoke-MgDriveItemWorkbookWorksheetTableColumnFilterApplyBottomItemsFilter","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/filter/applyBottomItemsFilter and 'Invoke-MgDriveItemWorkbookWorksheetTableColumnFilterApplyBottomItemsFilter' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/filter/applyBottomPercentFilter","suppress",,"Invoke-MgDriveItemWorkbookWorksheetTableColumnFilterApplyBottomPercentFilter","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/filter/applyBottomPercentFilter and 'Invoke-MgDriveItemWorkbookWorksheetTableColumnFilterApplyBottomPercentFilter' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/filter/applyCellColorFilter","suppress",,"Invoke-MgDriveItemWorkbookWorksheetTableColumnFilterApplyCellColorFilter","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/filter/applyCellColorFilter and 'Invoke-MgDriveItemWorkbookWorksheetTableColumnFilterApplyCellColorFilter' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/filter/applyCustomFilter","suppress",,"Invoke-MgDriveItemWorkbookWorksheetTableColumnFilterApplyCustomFilter","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/filter/applyCustomFilter and 'Invoke-MgDriveItemWorkbookWorksheetTableColumnFilterApplyCustomFilter' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/filter/applyDynamicFilter","suppress",,"Invoke-MgDriveItemWorkbookWorksheetTableColumnFilterApplyDynamicFilter","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/filter/applyDynamicFilter and 'Invoke-MgDriveItemWorkbookWorksheetTableColumnFilterApplyDynamicFilter' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/filter/applyFontColorFilter","suppress",,"Invoke-MgDriveItemWorkbookWorksheetTableColumnFilterApplyFontColorFilter","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/filter/applyFontColorFilter and 'Invoke-MgDriveItemWorkbookWorksheetTableColumnFilterApplyFontColorFilter' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/filter/applyIconFilter","suppress",,"Invoke-MgDriveItemWorkbookWorksheetTableColumnFilterApplyIconFilter","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/filter/applyIconFilter and 'Invoke-MgDriveItemWorkbookWorksheetTableColumnFilterApplyIconFilter' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/filter/applyTopItemsFilter","suppress",,"Invoke-MgDriveItemWorkbookWorksheetTableColumnFilterApplyTopItemsFilter","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/filter/applyTopItemsFilter and 'Invoke-MgDriveItemWorkbookWorksheetTableColumnFilterApplyTopItemsFilter' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/filter/applyTopPercentFilter","suppress",,"Invoke-MgDriveItemWorkbookWorksheetTableColumnFilterApplyTopPercentFilter","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/filter/applyTopPercentFilter and 'Invoke-MgDriveItemWorkbookWorksheetTableColumnFilterApplyTopPercentFilter' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/filter/applyValuesFilter","suppress",,"Invoke-MgDriveItemWorkbookWorksheetTableColumnFilterApplyValuesFilter","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/filter/applyValuesFilter and 'Invoke-MgDriveItemWorkbookWorksheetTableColumnFilterApplyValuesFilter' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/filter/clear","suppress",,"Invoke-MgDriveItemWorkbookWorksheetTableColumnFilterClear","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/filter/clear and 'Invoke-MgDriveItemWorkbookWorksheetTableColumnFilterClear' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/clear","suppress",,"Invoke-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeClear","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/clear and 'Invoke-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeClear' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/delete","suppress",,"Invoke-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeDelete","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/delete and 'Invoke-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeDelete' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/insert","suppress",,"Invoke-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeInsert","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/insert and 'Invoke-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeInsert' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/merge","suppress",,"Invoke-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeMerge","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/merge and 'Invoke-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeMerge' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/unmerge","suppress",,"Invoke-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeUnmerge","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/unmerge and 'Invoke-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeUnmerge' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/clear","suppress",,"Invoke-MgDriveItemWorkbookWorksheetTableColumnRangeClear","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/clear and 'Invoke-MgDriveItemWorkbookWorksheetTableColumnRangeClear' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/delete","suppress",,"Invoke-MgDriveItemWorkbookWorksheetTableColumnRangeDelete","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/delete and 'Invoke-MgDriveItemWorkbookWorksheetTableColumnRangeDelete' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/insert","suppress",,"Invoke-MgDriveItemWorkbookWorksheetTableColumnRangeInsert","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/insert and 'Invoke-MgDriveItemWorkbookWorksheetTableColumnRangeInsert' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/merge","suppress",,"Invoke-MgDriveItemWorkbookWorksheetTableColumnRangeMerge","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/merge and 'Invoke-MgDriveItemWorkbookWorksheetTableColumnRangeMerge' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/unmerge","suppress",,"Invoke-MgDriveItemWorkbookWorksheetTableColumnRangeUnmerge","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/unmerge and 'Invoke-MgDriveItemWorkbookWorksheetTableColumnRangeUnmerge' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/clear","suppress",,"Invoke-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeClear","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/clear and 'Invoke-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeClear' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/delete","suppress",,"Invoke-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeDelete","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/delete and 'Invoke-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeDelete' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/insert","suppress",,"Invoke-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeInsert","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/insert and 'Invoke-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeInsert' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/merge","suppress",,"Invoke-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeMerge","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/merge and 'Invoke-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeMerge' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/unmerge","suppress",,"Invoke-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeUnmerge","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/unmerge and 'Invoke-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeUnmerge' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/add","suppress",,"Invoke-MgDriveItemWorkbookWorksheetTableColumnAdd","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/add and 'Invoke-MgDriveItemWorkbookWorksheetTableColumnAdd' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/convertToRange","suppress",,"Invoke-MgDriveItemWorkbookWorksheetTableConvertToRange","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/convertToRange and 'Invoke-MgDriveItemWorkbookWorksheetTableConvertToRange' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/clear","suppress",,"Invoke-MgDriveItemWorkbookWorksheetTableDataBodyRangeClear","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/clear and 'Invoke-MgDriveItemWorkbookWorksheetTableDataBodyRangeClear' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/delete","suppress",,"Invoke-MgDriveItemWorkbookWorksheetTableDataBodyRangeDelete","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/delete and 'Invoke-MgDriveItemWorkbookWorksheetTableDataBodyRangeDelete' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/insert","suppress",,"Invoke-MgDriveItemWorkbookWorksheetTableDataBodyRangeInsert","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/insert and 'Invoke-MgDriveItemWorkbookWorksheetTableDataBodyRangeInsert' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/merge","suppress",,"Invoke-MgDriveItemWorkbookWorksheetTableDataBodyRangeMerge","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/merge and 'Invoke-MgDriveItemWorkbookWorksheetTableDataBodyRangeMerge' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/unmerge","suppress",,"Invoke-MgDriveItemWorkbookWorksheetTableDataBodyRangeUnmerge","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/unmerge and 'Invoke-MgDriveItemWorkbookWorksheetTableDataBodyRangeUnmerge' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/clear","suppress",,"Invoke-MgDriveItemWorkbookWorksheetTableHeaderRowRangeClear","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/clear and 'Invoke-MgDriveItemWorkbookWorksheetTableHeaderRowRangeClear' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/delete","suppress",,"Invoke-MgDriveItemWorkbookWorksheetTableHeaderRowRangeDelete","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/delete and 'Invoke-MgDriveItemWorkbookWorksheetTableHeaderRowRangeDelete' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/insert","suppress",,"Invoke-MgDriveItemWorkbookWorksheetTableHeaderRowRangeInsert","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/insert and 'Invoke-MgDriveItemWorkbookWorksheetTableHeaderRowRangeInsert' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/merge","suppress",,"Invoke-MgDriveItemWorkbookWorksheetTableHeaderRowRangeMerge","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/merge and 'Invoke-MgDriveItemWorkbookWorksheetTableHeaderRowRangeMerge' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/unmerge","suppress",,"Invoke-MgDriveItemWorkbookWorksheetTableHeaderRowRangeUnmerge","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/unmerge and 'Invoke-MgDriveItemWorkbookWorksheetTableHeaderRowRangeUnmerge' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/clear","suppress",,"Invoke-MgDriveItemWorkbookWorksheetTableRangeClear","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/clear and 'Invoke-MgDriveItemWorkbookWorksheetTableRangeClear' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/delete","suppress",,"Invoke-MgDriveItemWorkbookWorksheetTableRangeDelete","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/delete and 'Invoke-MgDriveItemWorkbookWorksheetTableRangeDelete' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/insert","suppress",,"Invoke-MgDriveItemWorkbookWorksheetTableRangeInsert","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/insert and 'Invoke-MgDriveItemWorkbookWorksheetTableRangeInsert' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/merge","suppress",,"Invoke-MgDriveItemWorkbookWorksheetTableRangeMerge","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/merge and 'Invoke-MgDriveItemWorkbookWorksheetTableRangeMerge' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/unmerge","suppress",,"Invoke-MgDriveItemWorkbookWorksheetTableRangeUnmerge","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/unmerge and 'Invoke-MgDriveItemWorkbookWorksheetTableRangeUnmerge' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/reapplyFilters","suppress",,"Invoke-MgDriveItemWorkbookWorksheetTableReapplyFilters","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/reapplyFilters and 'Invoke-MgDriveItemWorkbookWorksheetTableReapplyFilters' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows","suppress",,"New-MgDriveItemWorkbookWorksheetTableRow","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows and 'New-MgDriveItemWorkbookWorksheetTableRow' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/clear","suppress",,"Invoke-MgDriveItemWorkbookWorksheetTableRowRangeClear","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/clear and 'Invoke-MgDriveItemWorkbookWorksheetTableRowRangeClear' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/delete","suppress",,"Invoke-MgDriveItemWorkbookWorksheetTableRowRangeDelete","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/delete and 'Invoke-MgDriveItemWorkbookWorksheetTableRowRangeDelete' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/insert","suppress",,"Invoke-MgDriveItemWorkbookWorksheetTableRowRangeInsert","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/insert and 'Invoke-MgDriveItemWorkbookWorksheetTableRowRangeInsert' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/merge","suppress",,"Invoke-MgDriveItemWorkbookWorksheetTableRowRangeMerge","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/merge and 'Invoke-MgDriveItemWorkbookWorksheetTableRowRangeMerge' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/unmerge","suppress",,"Invoke-MgDriveItemWorkbookWorksheetTableRowRangeUnmerge","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/unmerge and 'Invoke-MgDriveItemWorkbookWorksheetTableRowRangeUnmerge' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/add","suppress",,"Invoke-MgDriveItemWorkbookWorksheetTableRowAdd","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/add and 'Invoke-MgDriveItemWorkbookWorksheetTableRowAdd' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/sort/apply","suppress",,"Invoke-MgDriveItemWorkbookWorksheetTableSortApply","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/sort/apply and 'Invoke-MgDriveItemWorkbookWorksheetTableSortApply' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/sort/clear","suppress",,"Invoke-MgDriveItemWorkbookWorksheetTableSortClear","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/sort/clear and 'Invoke-MgDriveItemWorkbookWorksheetTableSortClear' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/sort/reapply","suppress",,"Invoke-MgDriveItemWorkbookWorksheetTableSortReapply","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/sort/reapply and 'Invoke-MgDriveItemWorkbookWorksheetTableSortReapply' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/clear","suppress",,"Invoke-MgDriveItemWorkbookWorksheetTableTotalRowRangeClear","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/clear and 'Invoke-MgDriveItemWorkbookWorksheetTableTotalRowRangeClear' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/delete","suppress",,"Invoke-MgDriveItemWorkbookWorksheetTableTotalRowRangeDelete","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/delete and 'Invoke-MgDriveItemWorkbookWorksheetTableTotalRowRangeDelete' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/insert","suppress",,"Invoke-MgDriveItemWorkbookWorksheetTableTotalRowRangeInsert","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/insert and 'Invoke-MgDriveItemWorkbookWorksheetTableTotalRowRangeInsert' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/merge","suppress",,"Invoke-MgDriveItemWorkbookWorksheetTableTotalRowRangeMerge","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/merge and 'Invoke-MgDriveItemWorkbookWorksheetTableTotalRowRangeMerge' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/unmerge","suppress",,"Invoke-MgDriveItemWorkbookWorksheetTableTotalRowRangeUnmerge","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/unmerge and 'Invoke-MgDriveItemWorkbookWorksheetTableTotalRowRangeUnmerge' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/tables/add","suppress",,"Invoke-MgDriveItemWorkbookWorksheetTableAdd","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/add and 'Invoke-MgDriveItemWorkbookWorksheetTableAdd' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange/clear","suppress",,"Invoke-MgDriveItemWorkbookWorksheetUsedRangeClear","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange/clear and 'Invoke-MgDriveItemWorkbookWorksheetUsedRangeClear' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange/delete","suppress",,"Invoke-MgDriveItemWorkbookWorksheetUsedRangeDelete","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange/delete and 'Invoke-MgDriveItemWorkbookWorksheetUsedRangeDelete' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange/insert","suppress",,"Invoke-MgDriveItemWorkbookWorksheetUsedRangeInsert","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange/insert and 'Invoke-MgDriveItemWorkbookWorksheetUsedRangeInsert' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange/merge","suppress",,"Invoke-MgDriveItemWorkbookWorksheetUsedRangeMerge","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange/merge and 'Invoke-MgDriveItemWorkbookWorksheetUsedRangeMerge' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange/unmerge","suppress",,"Invoke-MgDriveItemWorkbookWorksheetUsedRangeUnmerge","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange/unmerge and 'Invoke-MgDriveItemWorkbookWorksheetUsedRangeUnmerge' unshipped" +"POST","/drives/{param}/items/{param}/workbook/worksheets/add","suppress",,"Invoke-MgDriveItemWorkbookWorksheetAdd","no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/add and 'Invoke-MgDriveItemWorkbookWorksheetAdd' unshipped" +"POST","/drives/{param}/list/columns","keep",,"New-MgDriveListColumn","New-MgDriveListColumn" +"POST","/drives/{param}/list/contentTypes","keep",,"New-MgDriveListContentType","New-MgDriveListContentType" +"POST","/drives/{param}/list/contentTypes/{param}/associateWithHubSites","rename","DriveListContentTypeWithHubSite","Invoke-MgDriveListContentTypeAssociateWithHubSites","Join-MgDriveListContentTypeWithHubSite" +"POST","/drives/{param}/list/contentTypes/{param}/columnLinks","keep",,"New-MgDriveListContentTypeColumnLink","New-MgDriveListContentTypeColumnLink" +"POST","/drives/{param}/list/contentTypes/{param}/columns","keep",,"New-MgDriveListContentTypeColumn","New-MgDriveListContentTypeColumn" +"POST","/drives/{param}/list/contentTypes/{param}/copyToDefaultContentLocation","rename","DriveListContentTypeToDefaultContentLocation","Invoke-MgDriveListContentTypeCopyToDefaultContentLocation","Copy-MgDriveListContentTypeToDefaultContentLocation" +"POST","/drives/{param}/list/contentTypes/{param}/publish","rename","DriveListContentType","Invoke-MgDriveListContentTypePublish","Publish-MgDriveListContentType" +"POST","/drives/{param}/list/contentTypes/{param}/unpublish","rename","DriveListContentType","Invoke-MgDriveListContentTypeUnpublish","Unpublish-MgDriveListContentType" +"POST","/drives/{param}/list/contentTypes/addCopy","rename","DriveListContentTypeCopy","Invoke-MgDriveListContentTypeAddCopy","Add-MgDriveListContentTypeCopy" +"POST","/drives/{param}/list/contentTypes/addCopyFromContentTypeHub","rename","DriveListContentTypeCopyFromContentTypeHub","Invoke-MgDriveListContentTypeAddCopyFromContentTypeHub","Add-MgDriveListContentTypeCopyFromContentTypeHub" +"POST","/drives/{param}/list/items","keep",,"New-MgDriveListItem","New-MgDriveListItem" +"POST","/drives/{param}/list/items/{param}/createLink","rename","DriveListItemLink","Invoke-MgDriveListItemCreateLink","New-MgDriveListItemLink" +"POST","/drives/{param}/list/items/{param}/documentSetVersions","keep",,"New-MgDriveListItemDocumentSetVersion","New-MgDriveListItemDocumentSetVersion" +"POST","/drives/{param}/list/items/{param}/documentSetVersions/{param}/restore","rename","DriveListItemDocumentSetVersion","Invoke-MgDriveListItemDocumentSetVersionRestore","Restore-MgDriveListItemDocumentSetVersion" +"POST","/drives/{param}/list/items/{param}/permissions","suppress",,"New-MgDriveListItemPermission","no oracle row for POST /drives/{param}/list/items/{param}/permissions and 'New-MgDriveListItemPermission' unshipped" +"POST","/drives/{param}/list/items/{param}/permissions/{param}/grant","suppress",,"Invoke-MgDriveListItemPermissionGrant","no oracle row for POST /drives/{param}/list/items/{param}/permissions/{param}/grant and 'Invoke-MgDriveListItemPermissionGrant' unshipped" +"POST","/drives/{param}/list/items/{param}/versions","keep",,"New-MgDriveListItemVersion","New-MgDriveListItemVersion" +"POST","/drives/{param}/list/items/{param}/versions/{param}/restoreVersion","rename","DriveListItemVersion","Invoke-MgDriveListItemVersionRestoreVersion","Restore-MgDriveListItemVersion" +"POST","/drives/{param}/list/operations","keep",,"New-MgDriveListOperation","New-MgDriveListOperation" +"POST","/drives/{param}/list/permissions","suppress",,"New-MgDriveListPermission","no oracle row for POST /drives/{param}/list/permissions and 'New-MgDriveListPermission' unshipped" +"POST","/drives/{param}/list/permissions/{param}/grant","suppress",,"Invoke-MgDriveListPermissionGrant","no oracle row for POST /drives/{param}/list/permissions/{param}/grant and 'Invoke-MgDriveListPermissionGrant' unshipped" +"POST","/drives/{param}/list/subscriptions","keep",,"New-MgDriveListSubscription","New-MgDriveListSubscription" +"POST","/drives/{param}/list/subscriptions/{param}/reauthorize","rename","ReauthorizeDriveListSubscription","Invoke-MgDriveListSubscriptionReauthorize","Invoke-MgReauthorizeDriveListSubscription" +"POST","/education/classes","keep",,"New-MgEducationClass","New-MgEducationClass" +"POST","/education/classes/{param}/assignmentCategories","keep",,"New-MgEducationClassAssignmentCategory","New-MgEducationClassAssignmentCategory" +"POST","/education/classes/{param}/assignments","keep",,"New-MgEducationClassAssignment","New-MgEducationClassAssignment" +"POST","/education/classes/{param}/assignments/{param}/activate","rename","EducationClassAssignment","Invoke-MgEducationClassAssignmentActivate","Initialize-MgEducationClassAssignment" +"POST","/education/classes/{param}/assignments/{param}/categories/$ref","keep",,"New-MgEducationClassAssignmentCategoryByRef","New-MgEducationClassAssignmentCategoryByRef" +"POST","/education/classes/{param}/assignments/{param}/deactivate","rename","DeactivateEducationClassAssignment","Invoke-MgEducationClassAssignmentDeactivate","Invoke-MgDeactivateEducationClassAssignment" +"POST","/education/classes/{param}/assignments/{param}/publish","rename","EducationClassAssignment","Invoke-MgEducationClassAssignmentPublish","Publish-MgEducationClassAssignment" +"POST","/education/classes/{param}/assignments/{param}/resources","keep",,"New-MgEducationClassAssignmentResource","New-MgEducationClassAssignmentResource" +"POST","/education/classes/{param}/assignments/{param}/resources/{param}/dependentResources","keep",,"New-MgEducationClassAssignmentResourceDependentResource","New-MgEducationClassAssignmentResourceDependentResource" +"POST","/education/classes/{param}/assignments/{param}/setUpFeedbackResourcesFolder","rename","EducationClassAssignmentUpFeedbackResourceFolder","Invoke-MgEducationClassAssignmentSetUpFeedbackResourcesFolder","Set-MgEducationClassAssignmentUpFeedbackResourceFolder" +"POST","/education/classes/{param}/assignments/{param}/setUpResourcesFolder","rename","EducationClassAssignmentUpResourceFolder","Invoke-MgEducationClassAssignmentSetUpResourcesFolder","Set-MgEducationClassAssignmentUpResourceFolder" +"POST","/education/classes/{param}/assignments/{param}/submissions","keep",,"New-MgEducationClassAssignmentSubmission","New-MgEducationClassAssignmentSubmission" +"POST","/education/classes/{param}/assignments/{param}/submissions/{param}/excuse","rename","ExcuseEducationClassAssignmentSubmission","Invoke-MgEducationClassAssignmentSubmissionExcuse","Invoke-MgExcuseEducationClassAssignmentSubmission" +"POST","/education/classes/{param}/assignments/{param}/submissions/{param}/outcomes","keep",,"New-MgEducationClassAssignmentSubmissionOutcome","New-MgEducationClassAssignmentSubmissionOutcome" +"POST","/education/classes/{param}/assignments/{param}/submissions/{param}/reassign","rename","ReassignEducationClassAssignmentSubmission","Invoke-MgEducationClassAssignmentSubmissionReassign","Invoke-MgReassignEducationClassAssignmentSubmission" +"POST","/education/classes/{param}/assignments/{param}/submissions/{param}/resources","keep",,"New-MgEducationClassAssignmentSubmissionResource","New-MgEducationClassAssignmentSubmissionResource" +"POST","/education/classes/{param}/assignments/{param}/submissions/{param}/resources/{param}/dependentResources","keep",,"New-MgEducationClassAssignmentSubmissionResourceDependentResource","New-MgEducationClassAssignmentSubmissionResourceDependentResource" +"POST","/education/classes/{param}/assignments/{param}/submissions/{param}/return","rename","ReturnEducationClassAssignmentSubmission","Invoke-MgEducationClassAssignmentSubmissionReturn","Invoke-MgReturnEducationClassAssignmentSubmission" +"POST","/education/classes/{param}/assignments/{param}/submissions/{param}/setUpResourcesFolder","rename","EducationClassAssignmentSubmissionUpResourceFolder","Invoke-MgEducationClassAssignmentSubmissionSetUpResourcesFolder","Set-MgEducationClassAssignmentSubmissionUpResourceFolder" +"POST","/education/classes/{param}/assignments/{param}/submissions/{param}/submit","rename","EducationClassAssignmentSubmission","Invoke-MgEducationClassAssignmentSubmissionSubmit","Submit-MgEducationClassAssignmentSubmission" +"POST","/education/classes/{param}/assignments/{param}/submissions/{param}/submittedResources","keep",,"New-MgEducationClassAssignmentSubmissionSubmittedResource","New-MgEducationClassAssignmentSubmissionSubmittedResource" +"POST","/education/classes/{param}/assignments/{param}/submissions/{param}/submittedResources/{param}/dependentResources","keep",,"New-MgEducationClassAssignmentSubmissionSubmittedResourceDependentResource","New-MgEducationClassAssignmentSubmissionSubmittedResourceDependentResource" +"POST","/education/classes/{param}/assignments/{param}/submissions/{param}/unsubmit","rename","UnsubmitEducationClassAssignmentSubmission","Invoke-MgEducationClassAssignmentSubmissionUnsubmit","Invoke-MgUnsubmitEducationClassAssignmentSubmission" +"POST","/education/classes/{param}/assignmentSettings/gradingCategories","keep",,"New-MgEducationClassAssignmentSettingGradingCategory","New-MgEducationClassAssignmentSettingGradingCategory" +"POST","/education/classes/{param}/assignmentSettings/gradingSchemes","keep",,"New-MgEducationClassAssignmentSettingGradingScheme","New-MgEducationClassAssignmentSettingGradingScheme" +"POST","/education/classes/{param}/members/$ref","keep",,"New-MgEducationClassMemberByRef","New-MgEducationClassMemberByRef" +"POST","/education/classes/{param}/modules","keep",,"New-MgEducationClassModule","New-MgEducationClassModule" +"POST","/education/classes/{param}/modules/{param}/pin","rename","PinEducationClassModule","Invoke-MgEducationClassModulePin","Invoke-MgPinEducationClassModule" +"POST","/education/classes/{param}/modules/{param}/publish","rename","EducationClassModule","Invoke-MgEducationClassModulePublish","Publish-MgEducationClassModule" +"POST","/education/classes/{param}/modules/{param}/resources","keep",,"New-MgEducationClassModuleResource","New-MgEducationClassModuleResource" +"POST","/education/classes/{param}/modules/{param}/setUpResourcesFolder","rename","EducationClassModuleUpResourceFolder","Invoke-MgEducationClassModuleSetUpResourcesFolder","Set-MgEducationClassModuleUpResourceFolder" +"POST","/education/classes/{param}/modules/{param}/unpin","rename","UnpinEducationClassModule","Invoke-MgEducationClassModuleUnpin","Invoke-MgUnpinEducationClassModule" +"POST","/education/classes/{param}/teachers/$ref","keep",,"New-MgEducationClassTeacherByRef","New-MgEducationClassTeacherByRef" +"POST","/education/me/assignments","keep",,"New-MgEducationMeAssignment","New-MgEducationMeAssignment" +"POST","/education/me/assignments/{param}/activate","rename","EducationMeAssignment","Invoke-MgEducationMeAssignmentActivate","Initialize-MgEducationMeAssignment" +"POST","/education/me/assignments/{param}/categories","keep",,"New-MgEducationMeAssignmentCategory","New-MgEducationMeAssignmentCategory" +"POST","/education/me/assignments/{param}/categories/$ref","keep",,"New-MgEducationMeAssignmentCategoryByRef","New-MgEducationMeAssignmentCategoryByRef" +"POST","/education/me/assignments/{param}/deactivate","rename","DeactivateEducationMeAssignment","Invoke-MgEducationMeAssignmentDeactivate","Invoke-MgDeactivateEducationMeAssignment" +"POST","/education/me/assignments/{param}/publish","rename","EducationMeAssignment","Invoke-MgEducationMeAssignmentPublish","Publish-MgEducationMeAssignment" +"POST","/education/me/assignments/{param}/resources","keep",,"New-MgEducationMeAssignmentResource","New-MgEducationMeAssignmentResource" +"POST","/education/me/assignments/{param}/resources/{param}/dependentResources","keep",,"New-MgEducationMeAssignmentResourceDependentResource","New-MgEducationMeAssignmentResourceDependentResource" +"POST","/education/me/assignments/{param}/setUpFeedbackResourcesFolder","rename","EducationMeAssignmentUpFeedbackResourceFolder","Invoke-MgEducationMeAssignmentSetUpFeedbackResourcesFolder","Set-MgEducationMeAssignmentUpFeedbackResourceFolder" +"POST","/education/me/assignments/{param}/setUpResourcesFolder","rename","EducationMeAssignmentUpResourceFolder","Invoke-MgEducationMeAssignmentSetUpResourcesFolder","Set-MgEducationMeAssignmentUpResourceFolder" +"POST","/education/me/assignments/{param}/submissions","keep",,"New-MgEducationMeAssignmentSubmission","New-MgEducationMeAssignmentSubmission" +"POST","/education/me/assignments/{param}/submissions/{param}/excuse","rename","ExcuseEducationMeAssignmentSubmission","Invoke-MgEducationMeAssignmentSubmissionExcuse","Invoke-MgExcuseEducationMeAssignmentSubmission" +"POST","/education/me/assignments/{param}/submissions/{param}/outcomes","keep",,"New-MgEducationMeAssignmentSubmissionOutcome","New-MgEducationMeAssignmentSubmissionOutcome" +"POST","/education/me/assignments/{param}/submissions/{param}/reassign","rename","ReassignEducationMeAssignmentSubmission","Invoke-MgEducationMeAssignmentSubmissionReassign","Invoke-MgReassignEducationMeAssignmentSubmission" +"POST","/education/me/assignments/{param}/submissions/{param}/resources","keep",,"New-MgEducationMeAssignmentSubmissionResource","New-MgEducationMeAssignmentSubmissionResource" +"POST","/education/me/assignments/{param}/submissions/{param}/resources/{param}/dependentResources","keep",,"New-MgEducationMeAssignmentSubmissionResourceDependentResource","New-MgEducationMeAssignmentSubmissionResourceDependentResource" +"POST","/education/me/assignments/{param}/submissions/{param}/return","rename","ReturnEducationMeAssignmentSubmission","Invoke-MgEducationMeAssignmentSubmissionReturn","Invoke-MgReturnEducationMeAssignmentSubmission" +"POST","/education/me/assignments/{param}/submissions/{param}/setUpResourcesFolder","rename","EducationMeAssignmentSubmissionUpResourceFolder","Invoke-MgEducationMeAssignmentSubmissionSetUpResourcesFolder","Set-MgEducationMeAssignmentSubmissionUpResourceFolder" +"POST","/education/me/assignments/{param}/submissions/{param}/submit","rename","EducationMeAssignmentSubmission","Invoke-MgEducationMeAssignmentSubmissionSubmit","Submit-MgEducationMeAssignmentSubmission" +"POST","/education/me/assignments/{param}/submissions/{param}/submittedResources","keep",,"New-MgEducationMeAssignmentSubmissionSubmittedResource","New-MgEducationMeAssignmentSubmissionSubmittedResource" +"POST","/education/me/assignments/{param}/submissions/{param}/submittedResources/{param}/dependentResources","keep",,"New-MgEducationMeAssignmentSubmissionSubmittedResourceDependentResource","New-MgEducationMeAssignmentSubmissionSubmittedResourceDependentResource" +"POST","/education/me/assignments/{param}/submissions/{param}/unsubmit","rename","UnsubmitEducationMeAssignmentSubmission","Invoke-MgEducationMeAssignmentSubmissionUnsubmit","Invoke-MgUnsubmitEducationMeAssignmentSubmission" +"POST","/education/me/rubrics","keep",,"New-MgEducationMeRubric","New-MgEducationMeRubric" +"POST","/education/reports/readingAssignmentSubmissions","keep",,"New-MgEducationReportReadingAssignmentSubmission","New-MgEducationReportReadingAssignmentSubmission" +"POST","/education/reports/readingCoachPassages","keep",,"New-MgEducationReportReadingCoachPassage","New-MgEducationReportReadingCoachPassage" +"POST","/education/reports/reflectCheckInResponses","rename","EducationReportReflectCheck","New-MgEducationReportReflectCheckInResponse","New-MgEducationReportReflectCheck" +"POST","/education/reports/speakerAssignmentSubmissions","keep",,"New-MgEducationReportSpeakerAssignmentSubmission","New-MgEducationReportSpeakerAssignmentSubmission" +"POST","/education/schools","keep",,"New-MgEducationSchool","New-MgEducationSchool" +"POST","/education/schools/{param}/classes/$ref","keep",,"New-MgEducationSchoolClassByRef","New-MgEducationSchoolClassByRef" +"POST","/education/schools/{param}/users/$ref","keep",,"New-MgEducationSchoolUserByRef","New-MgEducationSchoolUserByRef" +"POST","/education/users","keep",,"New-MgEducationUser","New-MgEducationUser" +"POST","/education/users/{param}/assignments","keep",,"New-MgEducationUserAssignment","New-MgEducationUserAssignment" +"POST","/education/users/{param}/assignments/{param}/activate","rename","EducationUserAssignment","Invoke-MgEducationUserAssignmentActivate","Initialize-MgEducationUserAssignment" +"POST","/education/users/{param}/assignments/{param}/categories","keep",,"New-MgEducationUserAssignmentCategory","New-MgEducationUserAssignmentCategory" +"POST","/education/users/{param}/assignments/{param}/categories/$ref","keep",,"New-MgEducationUserAssignmentCategoryByRef","New-MgEducationUserAssignmentCategoryByRef" +"POST","/education/users/{param}/assignments/{param}/deactivate","rename","DeactivateEducationUserAssignment","Invoke-MgEducationUserAssignmentDeactivate","Invoke-MgDeactivateEducationUserAssignment" +"POST","/education/users/{param}/assignments/{param}/publish","rename","EducationUserAssignment","Invoke-MgEducationUserAssignmentPublish","Publish-MgEducationUserAssignment" +"POST","/education/users/{param}/assignments/{param}/resources","keep",,"New-MgEducationUserAssignmentResource","New-MgEducationUserAssignmentResource" +"POST","/education/users/{param}/assignments/{param}/resources/{param}/dependentResources","keep",,"New-MgEducationUserAssignmentResourceDependentResource","New-MgEducationUserAssignmentResourceDependentResource" +"POST","/education/users/{param}/assignments/{param}/setUpFeedbackResourcesFolder","rename","EducationUserAssignmentUpFeedbackResourceFolder","Invoke-MgEducationUserAssignmentSetUpFeedbackResourcesFolder","Set-MgEducationUserAssignmentUpFeedbackResourceFolder" +"POST","/education/users/{param}/assignments/{param}/setUpResourcesFolder","rename","EducationUserAssignmentUpResourceFolder","Invoke-MgEducationUserAssignmentSetUpResourcesFolder","Set-MgEducationUserAssignmentUpResourceFolder" +"POST","/education/users/{param}/assignments/{param}/submissions","keep",,"New-MgEducationUserAssignmentSubmission","New-MgEducationUserAssignmentSubmission" +"POST","/education/users/{param}/assignments/{param}/submissions/{param}/excuse","rename","ExcuseEducationUserAssignmentSubmission","Invoke-MgEducationUserAssignmentSubmissionExcuse","Invoke-MgExcuseEducationUserAssignmentSubmission" +"POST","/education/users/{param}/assignments/{param}/submissions/{param}/outcomes","keep",,"New-MgEducationUserAssignmentSubmissionOutcome","New-MgEducationUserAssignmentSubmissionOutcome" +"POST","/education/users/{param}/assignments/{param}/submissions/{param}/reassign","rename","ReassignEducationUserAssignmentSubmission","Invoke-MgEducationUserAssignmentSubmissionReassign","Invoke-MgReassignEducationUserAssignmentSubmission" +"POST","/education/users/{param}/assignments/{param}/submissions/{param}/resources","keep",,"New-MgEducationUserAssignmentSubmissionResource","New-MgEducationUserAssignmentSubmissionResource" +"POST","/education/users/{param}/assignments/{param}/submissions/{param}/resources/{param}/dependentResources","keep",,"New-MgEducationUserAssignmentSubmissionResourceDependentResource","New-MgEducationUserAssignmentSubmissionResourceDependentResource" +"POST","/education/users/{param}/assignments/{param}/submissions/{param}/return","rename","ReturnEducationUserAssignmentSubmission","Invoke-MgEducationUserAssignmentSubmissionReturn","Invoke-MgReturnEducationUserAssignmentSubmission" +"POST","/education/users/{param}/assignments/{param}/submissions/{param}/setUpResourcesFolder","rename","EducationUserAssignmentSubmissionUpResourceFolder","Invoke-MgEducationUserAssignmentSubmissionSetUpResourcesFolder","Set-MgEducationUserAssignmentSubmissionUpResourceFolder" +"POST","/education/users/{param}/assignments/{param}/submissions/{param}/submit","rename","EducationUserAssignmentSubmission","Invoke-MgEducationUserAssignmentSubmissionSubmit","Submit-MgEducationUserAssignmentSubmission" +"POST","/education/users/{param}/assignments/{param}/submissions/{param}/submittedResources","keep",,"New-MgEducationUserAssignmentSubmissionSubmittedResource","New-MgEducationUserAssignmentSubmissionSubmittedResource" +"POST","/education/users/{param}/assignments/{param}/submissions/{param}/submittedResources/{param}/dependentResources","keep",,"New-MgEducationUserAssignmentSubmissionSubmittedResourceDependentResource","New-MgEducationUserAssignmentSubmissionSubmittedResourceDependentResource" +"POST","/education/users/{param}/assignments/{param}/submissions/{param}/unsubmit","rename","UnsubmitEducationUserAssignmentSubmission","Invoke-MgEducationUserAssignmentSubmissionUnsubmit","Invoke-MgUnsubmitEducationUserAssignmentSubmission" +"POST","/education/users/{param}/rubrics","keep",,"New-MgEducationUserRubric","New-MgEducationUserRubric" +"POST","/external/connections","keep",,"New-MgExternalConnection","New-MgExternalConnection" +"POST","/external/connections/{param}/groups","keep",,"New-MgExternalConnectionGroup","New-MgExternalConnectionGroup" +"POST","/external/connections/{param}/groups/{param}/members","keep",,"New-MgExternalConnectionGroupMember","New-MgExternalConnectionGroupMember" +"POST","/external/connections/{param}/items","keep",,"New-MgExternalConnectionItem","New-MgExternalConnectionItem" +"POST","/external/connections/{param}/items/{param}/activities","keep",,"New-MgExternalConnectionItemActivity","New-MgExternalConnectionItemActivity" +"POST","/external/connections/{param}/operations","keep",,"New-MgExternalConnectionOperation","New-MgExternalConnectionOperation" +"POST","/groupLifecyclePolicies","keep",,"New-MgGroupLifecyclePolicy","New-MgGroupLifecyclePolicy" +"POST","/groupLifecyclePolicies/{param}/addGroup","rename","GroupToLifecyclePolicy","Invoke-MgGroupLifecyclePolicyAddGroup","Add-MgGroupToLifecyclePolicy" +"POST","/groupLifecyclePolicies/{param}/removeGroup","rename","GroupFromLifecyclePolicy","Invoke-MgGroupLifecyclePolicyRemoveGroup","Remove-MgGroupFromLifecyclePolicy" +"POST","/groups","keep",,"New-MgGroup","New-MgGroup" +"POST","/groups/{param}/acceptedSenders/$ref","keep",,"New-MgGroupAcceptedSenderByRef","New-MgGroupAcceptedSenderByRef" +"POST","/groups/{param}/addFavorite","rename","GroupFavorite","Invoke-MgGroupAddFavorite","Add-MgGroupFavorite" +"POST","/groups/{param}/appRoleAssignments","keep",,"New-MgGroupAppRoleAssignment","New-MgGroupAppRoleAssignment" +"POST","/groups/{param}/assignLicense","rename","GroupLicense","Invoke-MgGroupAssignLicense","Set-MgGroupLicense" +"POST","/groups/{param}/calendar/calendarPermissions","keep",,"New-MgGroupCalendarPermission","New-MgGroupCalendarPermission" +"POST","/groups/{param}/calendar/events","keep",,"New-MgGroupCalendarEvent","New-MgGroupCalendarEvent" +"POST","/groups/{param}/calendar/events/{param}/accept","suppress",,"Invoke-MgGroupCalendarEventAccept","no oracle row for POST /groups/{param}/calendar/events/{param}/accept and 'Invoke-MgGroupCalendarEventAccept' unshipped" +"POST","/groups/{param}/calendar/events/{param}/attachments","suppress",,"New-MgGroupCalendarEventAttachment","no oracle row for POST /groups/{param}/calendar/events/{param}/attachments and 'New-MgGroupCalendarEventAttachment' unshipped" +"POST","/groups/{param}/calendar/events/{param}/attachments/createUploadSession","suppress",,"Invoke-MgGroupCalendarEventAttachmentCreateUploadSession","no oracle row for POST /groups/{param}/calendar/events/{param}/attachments/createUploadSession and 'Invoke-MgGroupCalendarEventAttachmentCreateUploadSession' unshipped" +"POST","/groups/{param}/calendar/events/{param}/cancel","suppress",,"Invoke-MgGroupCalendarEventCancel","no oracle row for POST /groups/{param}/calendar/events/{param}/cancel and 'Invoke-MgGroupCalendarEventCancel' unshipped" +"POST","/groups/{param}/calendar/events/{param}/decline","suppress",,"Invoke-MgGroupCalendarEventDecline","no oracle row for POST /groups/{param}/calendar/events/{param}/decline and 'Invoke-MgGroupCalendarEventDecline' unshipped" +"POST","/groups/{param}/calendar/events/{param}/dismissReminder","suppress",,"Invoke-MgGroupCalendarEventDismissReminder","no oracle row for POST /groups/{param}/calendar/events/{param}/dismissReminder and 'Invoke-MgGroupCalendarEventDismissReminder' unshipped" +"POST","/groups/{param}/calendar/events/{param}/extensions","suppress",,"New-MgGroupCalendarEventExtension","no oracle row for POST /groups/{param}/calendar/events/{param}/extensions and 'New-MgGroupCalendarEventExtension' unshipped" +"POST","/groups/{param}/calendar/events/{param}/forward","suppress",,"Invoke-MgGroupCalendarEventForward","no oracle row for POST /groups/{param}/calendar/events/{param}/forward and 'Invoke-MgGroupCalendarEventForward' unshipped" +"POST","/groups/{param}/calendar/events/{param}/permanentDelete","suppress",,"Invoke-MgGroupCalendarEventPermanentDelete","no oracle row for POST /groups/{param}/calendar/events/{param}/permanentDelete and 'Invoke-MgGroupCalendarEventPermanentDelete' unshipped" +"POST","/groups/{param}/calendar/events/{param}/snoozeReminder","suppress",,"Invoke-MgGroupCalendarEventSnoozeReminder","no oracle row for POST /groups/{param}/calendar/events/{param}/snoozeReminder and 'Invoke-MgGroupCalendarEventSnoozeReminder' unshipped" +"POST","/groups/{param}/calendar/events/{param}/tentativelyAccept","suppress",,"Invoke-MgGroupCalendarEventTentativelyAccept","no oracle row for POST /groups/{param}/calendar/events/{param}/tentativelyAccept and 'Invoke-MgGroupCalendarEventTentativelyAccept' unshipped" +"POST","/groups/{param}/calendar/getSchedule","rename","GroupCalendarSchedule","Invoke-MgGroupCalendarGetSchedule","Get-MgGroupCalendarSchedule" +"POST","/groups/{param}/calendar/permanentDelete","rename","GroupCalendarPermanent","Invoke-MgGroupCalendarPermanentDelete","Remove-MgGroupCalendarPermanent" +"POST","/groups/{param}/checkGrantedPermissionsForApp","rename","GroupGrantedPermissionForApp","Invoke-MgGroupCheckGrantedPermissionsForApp","Confirm-MgGroupGrantedPermissionForApp" +"POST","/groups/{param}/checkMemberGroups","rename","GroupMemberGroup","Invoke-MgGroupCheckMemberGroups","Confirm-MgGroupMemberGroup" +"POST","/groups/{param}/checkMemberObjects","rename","GroupMemberObject","Invoke-MgGroupCheckMemberObjects","Confirm-MgGroupMemberObject" +"POST","/groups/{param}/conversations","keep",,"New-MgGroupConversation","New-MgGroupConversation" +"POST","/groups/{param}/conversations/{param}/threads","keep",,"New-MgGroupConversationThread","New-MgGroupConversationThread" +"POST","/groups/{param}/conversations/{param}/threads/{param}/posts/{param}/attachments","keep",,"New-MgGroupConversationThreadPostAttachment","New-MgGroupConversationThreadPostAttachment" +"POST","/groups/{param}/conversations/{param}/threads/{param}/posts/{param}/attachments/createUploadSession","rename","GroupConversationThreadPostAttachmentUploadSession","Invoke-MgGroupConversationThreadPostAttachmentCreateUploadSession","New-MgGroupConversationThreadPostAttachmentUploadSession" +"POST","/groups/{param}/conversations/{param}/threads/{param}/posts/{param}/extensions","keep",,"New-MgGroupConversationThreadPostExtension","New-MgGroupConversationThreadPostExtension" +"POST","/groups/{param}/conversations/{param}/threads/{param}/posts/{param}/forward","rename","ForwardGroupConversationThreadPost","Invoke-MgGroupConversationThreadPostForward","Invoke-MgForwardGroupConversationThreadPost" +"POST","/groups/{param}/conversations/{param}/threads/{param}/posts/{param}/inReplyTo/attachments","keep",,"New-MgGroupConversationThreadPostInReplyToAttachment","New-MgGroupConversationThreadPostInReplyToAttachment" +"POST","/groups/{param}/conversations/{param}/threads/{param}/posts/{param}/inReplyTo/attachments/createUploadSession","rename","GroupConversationThreadPostInReplyToAttachmentUploadSession","Invoke-MgGroupConversationThreadPostInReplyToAttachmentCreateUploadSession","New-MgGroupConversationThreadPostInReplyToAttachmentUploadSession" +"POST","/groups/{param}/conversations/{param}/threads/{param}/posts/{param}/inReplyTo/extensions","keep",,"New-MgGroupConversationThreadPostInReplyToExtension","New-MgGroupConversationThreadPostInReplyToExtension" +"POST","/groups/{param}/conversations/{param}/threads/{param}/posts/{param}/inReplyTo/forward","rename","ForwardGroupConversationThreadPostInReplyTo","Invoke-MgGroupConversationThreadPostInReplyToForward","Invoke-MgForwardGroupConversationThreadPostInReplyTo" +"POST","/groups/{param}/conversations/{param}/threads/{param}/posts/{param}/inReplyTo/reply","rename","ReplyGroupConversationThreadPostInReplyTo","Invoke-MgGroupConversationThreadPostInReplyToReply","Invoke-MgReplyGroupConversationThreadPostInReplyTo" +"POST","/groups/{param}/conversations/{param}/threads/{param}/posts/{param}/reply","rename","ReplyGroupConversationThreadPost","Invoke-MgGroupConversationThreadPostReply","Invoke-MgReplyGroupConversationThreadPost" +"POST","/groups/{param}/conversations/{param}/threads/{param}/reply","rename","ReplyGroupConversationThread","Invoke-MgGroupConversationThreadReply","Invoke-MgReplyGroupConversationThread" +"POST","/groups/{param}/events","keep",,"New-MgGroupEvent","New-MgGroupEvent" +"POST","/groups/{param}/events/{param}/accept","rename","AcceptGroupEvent","Invoke-MgGroupEventAccept","Invoke-MgAcceptGroupEvent" +"POST","/groups/{param}/events/{param}/attachments","keep",,"New-MgGroupEventAttachment","New-MgGroupEventAttachment" +"POST","/groups/{param}/events/{param}/attachments/createUploadSession","rename","GroupEventAttachmentUploadSession","Invoke-MgGroupEventAttachmentCreateUploadSession","New-MgGroupEventAttachmentUploadSession" +"POST","/groups/{param}/events/{param}/cancel","rename","GroupEvent","Invoke-MgGroupEventCancel","Stop-MgGroupEvent" +"POST","/groups/{param}/events/{param}/decline","rename","DeclineGroupEvent","Invoke-MgGroupEventDecline","Invoke-MgDeclineGroupEvent" +"POST","/groups/{param}/events/{param}/dismissReminder","rename","DismissGroupEventReminder","Invoke-MgGroupEventDismissReminder","Invoke-MgDismissGroupEventReminder" +"POST","/groups/{param}/events/{param}/extensions","keep",,"New-MgGroupEventExtension","New-MgGroupEventExtension" +"POST","/groups/{param}/events/{param}/forward","rename","ForwardGroupEvent","Invoke-MgGroupEventForward","Invoke-MgForwardGroupEvent" +"POST","/groups/{param}/events/{param}/permanentDelete","rename","GroupEventPermanent","Invoke-MgGroupEventPermanentDelete","Remove-MgGroupEventPermanent" +"POST","/groups/{param}/events/{param}/snoozeReminder","rename","SnoozeGroupEventReminder","Invoke-MgGroupEventSnoozeReminder","Invoke-MgSnoozeGroupEventReminder" +"POST","/groups/{param}/events/{param}/tentativelyAccept","rename","AcceptGroupEventTentatively","Invoke-MgGroupEventTentativelyAccept","Invoke-MgAcceptGroupEventTentatively" +"POST","/groups/{param}/extensions","keep",,"New-MgGroupExtension","New-MgGroupExtension" +"POST","/groups/{param}/getMemberGroups","rename","GroupMemberGroup","Invoke-MgGroupGetMemberGroups","Get-MgGroupMemberGroup" +"POST","/groups/{param}/getMemberObjects","rename","GroupMemberObject","Invoke-MgGroupGetMemberObjects","Get-MgGroupMemberObject" +"POST","/groups/{param}/members/$ref","keep",,"New-MgGroupMemberByRef","New-MgGroupMemberByRef" +"POST","/groups/{param}/onenote/notebooks","keep",,"New-MgGroupOnenoteNotebook","New-MgGroupOnenoteNotebook" +"POST","/groups/{param}/onenote/notebooks/{param}/copyNotebook","rename","GroupOnenoteNotebook","Invoke-MgGroupOnenoteNotebookCopyNotebook","Copy-MgGroupOnenoteNotebook" +"POST","/groups/{param}/onenote/notebooks/{param}/sectionGroups","keep",,"New-MgGroupOnenoteNotebookSectionGroup","New-MgGroupOnenoteNotebookSectionGroup" +"POST","/groups/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections","keep",,"New-MgGroupOnenoteNotebookSectionGroupSection","New-MgGroupOnenoteNotebookSectionGroupSection" +"POST","/groups/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/copyToNotebook","rename","GroupOnenoteNotebookSectionGroupSectionToNotebook","Invoke-MgGroupOnenoteNotebookSectionGroupSectionCopyToNotebook","Copy-MgGroupOnenoteNotebookSectionGroupSectionToNotebook" +"POST","/groups/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/copyToSectionGroup","rename","GroupOnenoteNotebookSectionGroupSectionToSectionGroup","Invoke-MgGroupOnenoteNotebookSectionGroupSectionCopyToSectionGroup","Copy-MgGroupOnenoteNotebookSectionGroupSectionToSectionGroup" +"POST","/groups/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages","keep",,"New-MgGroupOnenoteNotebookSectionGroupSectionPage","New-MgGroupOnenoteNotebookSectionGroupSectionPage" +"POST","/groups/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}/copyToSection","rename","GroupOnenoteNotebookSectionGroupSectionPageToSection","Invoke-MgGroupOnenoteNotebookSectionGroupSectionPageCopyToSection","Copy-MgGroupOnenoteNotebookSectionGroupSectionPageToSection" +"POST","/groups/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}/onenotePatchContent","rename","GroupOnenoteNotebookSectionGroupSectionPageContent","Invoke-MgGroupOnenoteNotebookSectionGroupSectionPageOnenotePatchContent","Update-MgGroupOnenoteNotebookSectionGroupSectionPageContent" +"POST","/groups/{param}/onenote/notebooks/{param}/sections","keep",,"New-MgGroupOnenoteNotebookSection","New-MgGroupOnenoteNotebookSection" +"POST","/groups/{param}/onenote/notebooks/{param}/sections/{param}/copyToNotebook","rename","GroupOnenoteNotebookSectionToNotebook","Invoke-MgGroupOnenoteNotebookSectionCopyToNotebook","Copy-MgGroupOnenoteNotebookSectionToNotebook" +"POST","/groups/{param}/onenote/notebooks/{param}/sections/{param}/copyToSectionGroup","rename","GroupOnenoteNotebookSectionToSectionGroup","Invoke-MgGroupOnenoteNotebookSectionCopyToSectionGroup","Copy-MgGroupOnenoteNotebookSectionToSectionGroup" +"POST","/groups/{param}/onenote/notebooks/{param}/sections/{param}/pages","keep",,"New-MgGroupOnenoteNotebookSectionPage","New-MgGroupOnenoteNotebookSectionPage" +"POST","/groups/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}/copyToSection","rename","GroupOnenoteNotebookSectionPageToSection","Invoke-MgGroupOnenoteNotebookSectionPageCopyToSection","Copy-MgGroupOnenoteNotebookSectionPageToSection" +"POST","/groups/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}/onenotePatchContent","rename","GroupOnenoteNotebookSectionPageContent","Invoke-MgGroupOnenoteNotebookSectionPageOnenotePatchContent","Update-MgGroupOnenoteNotebookSectionPageContent" +"POST","/groups/{param}/onenote/notebooks/getNotebookFromWebUrl","rename","GroupOnenoteNotebookFromWebUrl","Invoke-MgGroupOnenoteNotebookGetNotebookFromWebUrl","Get-MgGroupOnenoteNotebookFromWebUrl" +"POST","/groups/{param}/onenote/operations","keep",,"New-MgGroupOnenoteOperation","New-MgGroupOnenoteOperation" +"POST","/groups/{param}/onenote/pages","keep",,"New-MgGroupOnenotePage","New-MgGroupOnenotePage" +"POST","/groups/{param}/onenote/pages/{param}/copyToSection","rename","GroupOnenotePageToSection","Invoke-MgGroupOnenotePageCopyToSection","Copy-MgGroupOnenotePageToSection" +"POST","/groups/{param}/onenote/pages/{param}/onenotePatchContent","rename","GroupOnenotePageContent","Invoke-MgGroupOnenotePageOnenotePatchContent","Update-MgGroupOnenotePageContent" +"POST","/groups/{param}/onenote/resources","keep",,"New-MgGroupOnenoteResource","New-MgGroupOnenoteResource" +"POST","/groups/{param}/onenote/sectionGroups","keep",,"New-MgGroupOnenoteSectionGroup","New-MgGroupOnenoteSectionGroup" +"POST","/groups/{param}/onenote/sectionGroups/{param}/sections","keep",,"New-MgGroupOnenoteSectionGroupSection","New-MgGroupOnenoteSectionGroupSection" +"POST","/groups/{param}/onenote/sectionGroups/{param}/sections/{param}/copyToNotebook","rename","GroupOnenoteSectionGroupSectionToNotebook","Invoke-MgGroupOnenoteSectionGroupSectionCopyToNotebook","Copy-MgGroupOnenoteSectionGroupSectionToNotebook" +"POST","/groups/{param}/onenote/sectionGroups/{param}/sections/{param}/copyToSectionGroup","rename","GroupOnenoteSectionGroupSectionToSectionGroup","Invoke-MgGroupOnenoteSectionGroupSectionCopyToSectionGroup","Copy-MgGroupOnenoteSectionGroupSectionToSectionGroup" +"POST","/groups/{param}/onenote/sectionGroups/{param}/sections/{param}/pages","keep",,"New-MgGroupOnenoteSectionGroupSectionPage","New-MgGroupOnenoteSectionGroupSectionPage" +"POST","/groups/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}/copyToSection","rename","GroupOnenoteSectionGroupSectionPageToSection","Invoke-MgGroupOnenoteSectionGroupSectionPageCopyToSection","Copy-MgGroupOnenoteSectionGroupSectionPageToSection" +"POST","/groups/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}/onenotePatchContent","rename","GroupOnenoteSectionGroupSectionPageContent","Invoke-MgGroupOnenoteSectionGroupSectionPageOnenotePatchContent","Update-MgGroupOnenoteSectionGroupSectionPageContent" +"POST","/groups/{param}/onenote/sections","keep",,"New-MgGroupOnenoteSection","New-MgGroupOnenoteSection" +"POST","/groups/{param}/onenote/sections/{param}/copyToNotebook","rename","GroupOnenoteSectionToNotebook","Invoke-MgGroupOnenoteSectionCopyToNotebook","Copy-MgGroupOnenoteSectionToNotebook" +"POST","/groups/{param}/onenote/sections/{param}/copyToSectionGroup","rename","GroupOnenoteSectionToSectionGroup","Invoke-MgGroupOnenoteSectionCopyToSectionGroup","Copy-MgGroupOnenoteSectionToSectionGroup" +"POST","/groups/{param}/onenote/sections/{param}/pages","keep",,"New-MgGroupOnenoteSectionPage","New-MgGroupOnenoteSectionPage" +"POST","/groups/{param}/onenote/sections/{param}/pages/{param}/copyToSection","rename","GroupOnenoteSectionPageToSection","Invoke-MgGroupOnenoteSectionPageCopyToSection","Copy-MgGroupOnenoteSectionPageToSection" +"POST","/groups/{param}/onenote/sections/{param}/pages/{param}/onenotePatchContent","rename","GroupOnenoteSectionPageContent","Invoke-MgGroupOnenoteSectionPageOnenotePatchContent","Update-MgGroupOnenoteSectionPageContent" +"POST","/groups/{param}/owners/$ref","keep",,"New-MgGroupOwnerByRef","New-MgGroupOwnerByRef" +"POST","/groups/{param}/permissionGrants","keep",,"New-MgGroupPermissionGrant","New-MgGroupPermissionGrant" +"POST","/groups/{param}/planner/plans","suppress",,"New-MgGroupPlannerPlan","no oracle row for POST /groups/{param}/planner/plans and 'New-MgGroupPlannerPlan' unshipped" +"POST","/groups/{param}/planner/plans/{param}/buckets","suppress",,"New-MgGroupPlannerPlanBucket","no oracle row for POST /groups/{param}/planner/plans/{param}/buckets and 'New-MgGroupPlannerPlanBucket' unshipped" +"POST","/groups/{param}/planner/plans/{param}/buckets/{param}/tasks","suppress",,"New-MgGroupPlannerPlanBucketTask","no oracle row for POST /groups/{param}/planner/plans/{param}/buckets/{param}/tasks and 'New-MgGroupPlannerPlanBucketTask' unshipped" +"POST","/groups/{param}/planner/plans/{param}/tasks","suppress",,"New-MgGroupPlannerPlanTask","no oracle row for POST /groups/{param}/planner/plans/{param}/tasks and 'New-MgGroupPlannerPlanTask' unshipped" +"POST","/groups/{param}/rejectedSenders/$ref","keep",,"New-MgGroupRejectedSenderByRef","New-MgGroupRejectedSenderByRef" +"POST","/groups/{param}/removeFavorite","rename","GroupFavorite","Invoke-MgGroupRemoveFavorite","Remove-MgGroupFavorite" +"POST","/groups/{param}/renew","rename","RenewGroup","Invoke-MgGroupRenew","Invoke-MgRenewGroup" +"POST","/groups/{param}/resetUnseenCount","rename","GroupUnseenCount","Invoke-MgGroupResetUnseenCount","Reset-MgGroupUnseenCount" +"POST","/groups/{param}/restore","suppress",,"Invoke-MgGroupRestore","no oracle row for POST /groups/{param}/restore and 'Invoke-MgGroupRestore' unshipped" +"POST","/groups/{param}/retryServiceProvisioning","rename","RetryGroupServiceProvisioning","Invoke-MgGroupRetryServiceProvisioning","Invoke-MgRetryGroupServiceProvisioning" +"POST","/groups/{param}/settings","keep",,"New-MgGroupSetting","New-MgGroupSetting" +"POST","/groups/{param}/sites/{param}/analytics/itemActivityStats","keep",,"New-MgGroupSiteAnalyticItemActivityStat","New-MgGroupSiteAnalyticItemActivityStat" +"POST","/groups/{param}/sites/{param}/analytics/itemActivityStats/{param}/activities","keep",,"New-MgGroupSiteAnalyticItemActivityStatActivity","New-MgGroupSiteAnalyticItemActivityStatActivity" +"POST","/groups/{param}/sites/{param}/columns","keep",,"New-MgGroupSiteColumn","New-MgGroupSiteColumn" +"POST","/groups/{param}/sites/{param}/contentTypes","keep",,"New-MgGroupSiteContentType","New-MgGroupSiteContentType" +"POST","/groups/{param}/sites/{param}/contentTypes/{param}/associateWithHubSites","rename","GroupSiteContentTypeWithHubSite","Invoke-MgGroupSiteContentTypeAssociateWithHubSites","Join-MgGroupSiteContentTypeWithHubSite" +"POST","/groups/{param}/sites/{param}/contentTypes/{param}/columnLinks","keep",,"New-MgGroupSiteContentTypeColumnLink","New-MgGroupSiteContentTypeColumnLink" +"POST","/groups/{param}/sites/{param}/contentTypes/{param}/columns","keep",,"New-MgGroupSiteContentTypeColumn","New-MgGroupSiteContentTypeColumn" +"POST","/groups/{param}/sites/{param}/contentTypes/{param}/copyToDefaultContentLocation","rename","GroupSiteContentTypeToDefaultContentLocation","Invoke-MgGroupSiteContentTypeCopyToDefaultContentLocation","Copy-MgGroupSiteContentTypeToDefaultContentLocation" +"POST","/groups/{param}/sites/{param}/contentTypes/{param}/publish","rename","GroupSiteContentType","Invoke-MgGroupSiteContentTypePublish","Publish-MgGroupSiteContentType" +"POST","/groups/{param}/sites/{param}/contentTypes/{param}/unpublish","rename","GroupSiteContentType","Invoke-MgGroupSiteContentTypeUnpublish","Unpublish-MgGroupSiteContentType" +"POST","/groups/{param}/sites/{param}/contentTypes/addCopy","rename","GroupSiteContentTypeCopy","Invoke-MgGroupSiteContentTypeAddCopy","Add-MgGroupSiteContentTypeCopy" +"POST","/groups/{param}/sites/{param}/contentTypes/addCopyFromContentTypeHub","rename","GroupSiteContentTypeCopyFromContentTypeHub","Invoke-MgGroupSiteContentTypeAddCopyFromContentTypeHub","Add-MgGroupSiteContentTypeCopyFromContentTypeHub" +"POST","/groups/{param}/sites/{param}/lists","keep",,"New-MgGroupSiteList","New-MgGroupSiteList" +"POST","/groups/{param}/sites/{param}/lists/{param}/columns","keep",,"New-MgGroupSiteListColumn","New-MgGroupSiteListColumn" +"POST","/groups/{param}/sites/{param}/lists/{param}/contentTypes","keep",,"New-MgGroupSiteListContentType","New-MgGroupSiteListContentType" +"POST","/groups/{param}/sites/{param}/lists/{param}/contentTypes/{param}/associateWithHubSites","rename","GroupSiteListContentTypeWithHubSite","Invoke-MgGroupSiteListContentTypeAssociateWithHubSites","Join-MgGroupSiteListContentTypeWithHubSite" +"POST","/groups/{param}/sites/{param}/lists/{param}/contentTypes/{param}/columnLinks","keep",,"New-MgGroupSiteListContentTypeColumnLink","New-MgGroupSiteListContentTypeColumnLink" +"POST","/groups/{param}/sites/{param}/lists/{param}/contentTypes/{param}/columns","keep",,"New-MgGroupSiteListContentTypeColumn","New-MgGroupSiteListContentTypeColumn" +"POST","/groups/{param}/sites/{param}/lists/{param}/contentTypes/{param}/copyToDefaultContentLocation","rename","GroupSiteListContentTypeToDefaultContentLocation","Invoke-MgGroupSiteListContentTypeCopyToDefaultContentLocation","Copy-MgGroupSiteListContentTypeToDefaultContentLocation" +"POST","/groups/{param}/sites/{param}/lists/{param}/contentTypes/{param}/publish","rename","GroupSiteListContentType","Invoke-MgGroupSiteListContentTypePublish","Publish-MgGroupSiteListContentType" +"POST","/groups/{param}/sites/{param}/lists/{param}/contentTypes/{param}/unpublish","rename","GroupSiteListContentType","Invoke-MgGroupSiteListContentTypeUnpublish","Unpublish-MgGroupSiteListContentType" +"POST","/groups/{param}/sites/{param}/lists/{param}/contentTypes/addCopy","rename","GroupSiteListContentTypeCopy","Invoke-MgGroupSiteListContentTypeAddCopy","Add-MgGroupSiteListContentTypeCopy" +"POST","/groups/{param}/sites/{param}/lists/{param}/contentTypes/addCopyFromContentTypeHub","rename","GroupSiteListContentTypeCopyFromContentTypeHub","Invoke-MgGroupSiteListContentTypeAddCopyFromContentTypeHub","Add-MgGroupSiteListContentTypeCopyFromContentTypeHub" +"POST","/groups/{param}/sites/{param}/lists/{param}/items","keep",,"New-MgGroupSiteListItem","New-MgGroupSiteListItem" +"POST","/groups/{param}/sites/{param}/lists/{param}/items/{param}/createLink","rename","GroupSiteListItemLink","Invoke-MgGroupSiteListItemCreateLink","New-MgGroupSiteListItemLink" +"POST","/groups/{param}/sites/{param}/lists/{param}/items/{param}/documentSetVersions","keep",,"New-MgGroupSiteListItemDocumentSetVersion","New-MgGroupSiteListItemDocumentSetVersion" +"POST","/groups/{param}/sites/{param}/lists/{param}/items/{param}/documentSetVersions/{param}/restore","rename","GroupSiteListItemDocumentSetVersion","Invoke-MgGroupSiteListItemDocumentSetVersionRestore","Restore-MgGroupSiteListItemDocumentSetVersion" +"POST","/groups/{param}/sites/{param}/lists/{param}/items/{param}/permissions","keep",,"New-MgGroupSiteListItemPermission","New-MgGroupSiteListItemPermission" +"POST","/groups/{param}/sites/{param}/lists/{param}/items/{param}/permissions/{param}/grant","rename","GroupSiteListItemPermission","Invoke-MgGroupSiteListItemPermissionGrant","Grant-MgGroupSiteListItemPermission" +"POST","/groups/{param}/sites/{param}/lists/{param}/items/{param}/versions","keep",,"New-MgGroupSiteListItemVersion","New-MgGroupSiteListItemVersion" +"POST","/groups/{param}/sites/{param}/lists/{param}/items/{param}/versions/{param}/restoreVersion","rename","GroupSiteListItemVersion","Invoke-MgGroupSiteListItemVersionRestoreVersion","Restore-MgGroupSiteListItemVersion" +"POST","/groups/{param}/sites/{param}/lists/{param}/operations","keep",,"New-MgGroupSiteListOperation","New-MgGroupSiteListOperation" +"POST","/groups/{param}/sites/{param}/lists/{param}/permissions","keep",,"New-MgGroupSiteListPermission","New-MgGroupSiteListPermission" +"POST","/groups/{param}/sites/{param}/lists/{param}/permissions/{param}/grant","rename","GroupSiteListPermission","Invoke-MgGroupSiteListPermissionGrant","Grant-MgGroupSiteListPermission" +"POST","/groups/{param}/sites/{param}/lists/{param}/subscriptions","keep",,"New-MgGroupSiteListSubscription","New-MgGroupSiteListSubscription" +"POST","/groups/{param}/sites/{param}/lists/{param}/subscriptions/{param}/reauthorize","rename","ReauthorizeGroupSiteListSubscription","Invoke-MgGroupSiteListSubscriptionReauthorize","Invoke-MgReauthorizeGroupSiteListSubscription" +"POST","/groups/{param}/sites/{param}/onenote/notebooks","keep",,"New-MgGroupSiteOnenoteNotebook","New-MgGroupSiteOnenoteNotebook" +"POST","/groups/{param}/sites/{param}/onenote/notebooks/{param}/copyNotebook","rename","GroupSiteOnenoteNotebook","Invoke-MgGroupSiteOnenoteNotebookCopyNotebook","Copy-MgGroupSiteOnenoteNotebook" +"POST","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sectionGroups","keep",,"New-MgGroupSiteOnenoteNotebookSectionGroup","New-MgGroupSiteOnenoteNotebookSectionGroup" +"POST","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections","keep",,"New-MgGroupSiteOnenoteNotebookSectionGroupSection","New-MgGroupSiteOnenoteNotebookSectionGroupSection" +"POST","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/copyToNotebook","rename","GroupSiteOnenoteNotebookSectionGroupSectionToNotebook","Invoke-MgGroupSiteOnenoteNotebookSectionGroupSectionCopyToNotebook","Copy-MgGroupSiteOnenoteNotebookSectionGroupSectionToNotebook" +"POST","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/copyToSectionGroup","rename","GroupSiteOnenoteNotebookSectionGroupSectionToSectionGroup","Invoke-MgGroupSiteOnenoteNotebookSectionGroupSectionCopyToSectionGroup","Copy-MgGroupSiteOnenoteNotebookSectionGroupSectionToSectionGroup" +"POST","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages","keep",,"New-MgGroupSiteOnenoteNotebookSectionGroupSectionPage","New-MgGroupSiteOnenoteNotebookSectionGroupSectionPage" +"POST","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}/copyToSection","rename","GroupSiteOnenoteNotebookSectionGroupSectionPageToSection","Invoke-MgGroupSiteOnenoteNotebookSectionGroupSectionPageCopyToSection","Copy-MgGroupSiteOnenoteNotebookSectionGroupSectionPageToSection" +"POST","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}/onenotePatchContent","suppress",,"Invoke-MgGroupSiteOnenoteNotebookSectionGroupSectionPageOnenotePatchContent","no oracle row for POST /groups/{param}/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}/onenotePatchContent and 'Invoke-MgGroupSiteOnenoteNotebookSectionGroupSectionPageOnenotePatchContent' unshipped" +"POST","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sections","keep",,"New-MgGroupSiteOnenoteNotebookSection","New-MgGroupSiteOnenoteNotebookSection" +"POST","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sections/{param}/copyToNotebook","rename","GroupSiteOnenoteNotebookSectionToNotebook","Invoke-MgGroupSiteOnenoteNotebookSectionCopyToNotebook","Copy-MgGroupSiteOnenoteNotebookSectionToNotebook" +"POST","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sections/{param}/copyToSectionGroup","rename","GroupSiteOnenoteNotebookSectionToSectionGroup","Invoke-MgGroupSiteOnenoteNotebookSectionCopyToSectionGroup","Copy-MgGroupSiteOnenoteNotebookSectionToSectionGroup" +"POST","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sections/{param}/pages","keep",,"New-MgGroupSiteOnenoteNotebookSectionPage","New-MgGroupSiteOnenoteNotebookSectionPage" +"POST","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}/copyToSection","rename","GroupSiteOnenoteNotebookSectionPageToSection","Invoke-MgGroupSiteOnenoteNotebookSectionPageCopyToSection","Copy-MgGroupSiteOnenoteNotebookSectionPageToSection" +"POST","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}/onenotePatchContent","suppress",,"Invoke-MgGroupSiteOnenoteNotebookSectionPageOnenotePatchContent","no oracle row for POST /groups/{param}/sites/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}/onenotePatchContent and 'Invoke-MgGroupSiteOnenoteNotebookSectionPageOnenotePatchContent' unshipped" +"POST","/groups/{param}/sites/{param}/onenote/notebooks/getNotebookFromWebUrl","rename","GroupSiteOnenoteNotebookFromWebUrl","Invoke-MgGroupSiteOnenoteNotebookGetNotebookFromWebUrl","Get-MgGroupSiteOnenoteNotebookFromWebUrl" +"POST","/groups/{param}/sites/{param}/onenote/operations","keep",,"New-MgGroupSiteOnenoteOperation","New-MgGroupSiteOnenoteOperation" +"POST","/groups/{param}/sites/{param}/onenote/pages","keep",,"New-MgGroupSiteOnenotePage","New-MgGroupSiteOnenotePage" +"POST","/groups/{param}/sites/{param}/onenote/pages/{param}/copyToSection","rename","GroupSiteOnenotePageToSection","Invoke-MgGroupSiteOnenotePageCopyToSection","Copy-MgGroupSiteOnenotePageToSection" +"POST","/groups/{param}/sites/{param}/onenote/pages/{param}/onenotePatchContent","suppress",,"Invoke-MgGroupSiteOnenotePageOnenotePatchContent","no oracle row for POST /groups/{param}/sites/{param}/onenote/pages/{param}/onenotePatchContent and 'Invoke-MgGroupSiteOnenotePageOnenotePatchContent' unshipped" +"POST","/groups/{param}/sites/{param}/onenote/resources","keep",,"New-MgGroupSiteOnenoteResource","New-MgGroupSiteOnenoteResource" +"POST","/groups/{param}/sites/{param}/onenote/sectionGroups","keep",,"New-MgGroupSiteOnenoteSectionGroup","New-MgGroupSiteOnenoteSectionGroup" +"POST","/groups/{param}/sites/{param}/onenote/sectionGroups/{param}/sections","keep",,"New-MgGroupSiteOnenoteSectionGroupSection","New-MgGroupSiteOnenoteSectionGroupSection" +"POST","/groups/{param}/sites/{param}/onenote/sectionGroups/{param}/sections/{param}/copyToNotebook","rename","GroupSiteOnenoteSectionGroupSectionToNotebook","Invoke-MgGroupSiteOnenoteSectionGroupSectionCopyToNotebook","Copy-MgGroupSiteOnenoteSectionGroupSectionToNotebook" +"POST","/groups/{param}/sites/{param}/onenote/sectionGroups/{param}/sections/{param}/copyToSectionGroup","rename","GroupSiteOnenoteSectionGroupSectionToSectionGroup","Invoke-MgGroupSiteOnenoteSectionGroupSectionCopyToSectionGroup","Copy-MgGroupSiteOnenoteSectionGroupSectionToSectionGroup" +"POST","/groups/{param}/sites/{param}/onenote/sectionGroups/{param}/sections/{param}/pages","keep",,"New-MgGroupSiteOnenoteSectionGroupSectionPage","New-MgGroupSiteOnenoteSectionGroupSectionPage" +"POST","/groups/{param}/sites/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}/copyToSection","rename","GroupSiteOnenoteSectionGroupSectionPageToSection","Invoke-MgGroupSiteOnenoteSectionGroupSectionPageCopyToSection","Copy-MgGroupSiteOnenoteSectionGroupSectionPageToSection" +"POST","/groups/{param}/sites/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}/onenotePatchContent","suppress",,"Invoke-MgGroupSiteOnenoteSectionGroupSectionPageOnenotePatchContent","no oracle row for POST /groups/{param}/sites/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}/onenotePatchContent and 'Invoke-MgGroupSiteOnenoteSectionGroupSectionPageOnenotePatchContent' unshipped" +"POST","/groups/{param}/sites/{param}/onenote/sections","keep",,"New-MgGroupSiteOnenoteSection","New-MgGroupSiteOnenoteSection" +"POST","/groups/{param}/sites/{param}/onenote/sections/{param}/copyToNotebook","rename","GroupSiteOnenoteSectionToNotebook","Invoke-MgGroupSiteOnenoteSectionCopyToNotebook","Copy-MgGroupSiteOnenoteSectionToNotebook" +"POST","/groups/{param}/sites/{param}/onenote/sections/{param}/copyToSectionGroup","rename","GroupSiteOnenoteSectionToSectionGroup","Invoke-MgGroupSiteOnenoteSectionCopyToSectionGroup","Copy-MgGroupSiteOnenoteSectionToSectionGroup" +"POST","/groups/{param}/sites/{param}/onenote/sections/{param}/pages","keep",,"New-MgGroupSiteOnenoteSectionPage","New-MgGroupSiteOnenoteSectionPage" +"POST","/groups/{param}/sites/{param}/onenote/sections/{param}/pages/{param}/copyToSection","rename","GroupSiteOnenoteSectionPageToSection","Invoke-MgGroupSiteOnenoteSectionPageCopyToSection","Copy-MgGroupSiteOnenoteSectionPageToSection" +"POST","/groups/{param}/sites/{param}/onenote/sections/{param}/pages/{param}/onenotePatchContent","suppress",,"Invoke-MgGroupSiteOnenoteSectionPageOnenotePatchContent","no oracle row for POST /groups/{param}/sites/{param}/onenote/sections/{param}/pages/{param}/onenotePatchContent and 'Invoke-MgGroupSiteOnenoteSectionPageOnenotePatchContent' unshipped" +"POST","/groups/{param}/sites/{param}/operations","keep",,"New-MgGroupSiteOperation","New-MgGroupSiteOperation" +"POST","/groups/{param}/sites/{param}/pages","keep",,"New-MgGroupSitePage","New-MgGroupSitePage" +"POST","/groups/{param}/sites/{param}/permissions","keep",,"New-MgGroupSitePermission","New-MgGroupSitePermission" +"POST","/groups/{param}/sites/{param}/permissions/{param}/grant","rename","GroupSitePermission","Invoke-MgGroupSitePermissionGrant","Grant-MgGroupSitePermission" +"POST","/groups/{param}/sites/{param}/termStore/groups","keep",,"New-MgGroupSiteTermStoreGroup","New-MgGroupSiteTermStoreGroup" +"POST","/groups/{param}/sites/{param}/termStore/groups/{param}/sets","keep",,"New-MgGroupSiteTermStoreGroupSet","New-MgGroupSiteTermStoreGroupSet" +"POST","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/children","keep",,"New-MgGroupSiteTermStoreGroupSetChild","New-MgGroupSiteTermStoreGroupSetChild" +"POST","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/children/{param}/children/{param}/relations","keep",,"New-MgGroupSiteTermStoreGroupSetChildRelation","New-MgGroupSiteTermStoreGroupSetChildRelation" +"POST","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/relations","keep",,"New-MgGroupSiteTermStoreGroupSetRelation","New-MgGroupSiteTermStoreGroupSetRelation" +"POST","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/terms","keep",,"New-MgGroupSiteTermStoreGroupSetTerm","New-MgGroupSiteTermStoreGroupSetTerm" +"POST","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/children","keep",,"New-MgGroupSiteTermStoreGroupSetTermChild","New-MgGroupSiteTermStoreGroupSetTermChild" +"POST","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/children/{param}/relations","keep",,"New-MgGroupSiteTermStoreGroupSetTermChildRelation","New-MgGroupSiteTermStoreGroupSetTermChildRelation" +"POST","/groups/{param}/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/relations","keep",,"New-MgGroupSiteTermStoreGroupSetTermRelation","New-MgGroupSiteTermStoreGroupSetTermRelation" +"POST","/groups/{param}/sites/{param}/termStore/sets","keep",,"New-MgGroupSiteTermStoreSet","New-MgGroupSiteTermStoreSet" +"POST","/groups/{param}/sites/{param}/termStore/sets/{param}/children","keep",,"New-MgGroupSiteTermStoreSetChild","New-MgGroupSiteTermStoreSetChild" +"POST","/groups/{param}/sites/{param}/termStore/sets/{param}/children/{param}/children/{param}/relations","keep",,"New-MgGroupSiteTermStoreSetChildRelation","New-MgGroupSiteTermStoreSetChildRelation" +"POST","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets","keep",,"New-MgGroupSiteTermStoreSetParentGroupSet","New-MgGroupSiteTermStoreSetParentGroupSet" +"POST","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/children","keep",,"New-MgGroupSiteTermStoreSetParentGroupSetChild","New-MgGroupSiteTermStoreSetParentGroupSetChild" +"POST","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/children/{param}/children/{param}/relations","keep",,"New-MgGroupSiteTermStoreSetParentGroupSetChildRelation","New-MgGroupSiteTermStoreSetParentGroupSetChildRelation" +"POST","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/relations","keep",,"New-MgGroupSiteTermStoreSetParentGroupSetRelation","New-MgGroupSiteTermStoreSetParentGroupSetRelation" +"POST","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms","keep",,"New-MgGroupSiteTermStoreSetParentGroupSetTerm","New-MgGroupSiteTermStoreSetParentGroupSetTerm" +"POST","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/children","keep",,"New-MgGroupSiteTermStoreSetParentGroupSetTermChild","New-MgGroupSiteTermStoreSetParentGroupSetTermChild" +"POST","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/children/{param}/relations","keep",,"New-MgGroupSiteTermStoreSetParentGroupSetTermChildRelation","New-MgGroupSiteTermStoreSetParentGroupSetTermChildRelation" +"POST","/groups/{param}/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/relations","keep",,"New-MgGroupSiteTermStoreSetParentGroupSetTermRelation","New-MgGroupSiteTermStoreSetParentGroupSetTermRelation" +"POST","/groups/{param}/sites/{param}/termStore/sets/{param}/relations","keep",,"New-MgGroupSiteTermStoreSetRelation","New-MgGroupSiteTermStoreSetRelation" +"POST","/groups/{param}/sites/{param}/termStore/sets/{param}/terms","keep",,"New-MgGroupSiteTermStoreSetTerm","New-MgGroupSiteTermStoreSetTerm" +"POST","/groups/{param}/sites/{param}/termStore/sets/{param}/terms/{param}/children","keep",,"New-MgGroupSiteTermStoreSetTermChild","New-MgGroupSiteTermStoreSetTermChild" +"POST","/groups/{param}/sites/{param}/termStore/sets/{param}/terms/{param}/children/{param}/relations","keep",,"New-MgGroupSiteTermStoreSetTermChildRelation","New-MgGroupSiteTermStoreSetTermChildRelation" +"POST","/groups/{param}/sites/{param}/termStore/sets/{param}/terms/{param}/relations","keep",,"New-MgGroupSiteTermStoreSetTermRelation","New-MgGroupSiteTermStoreSetTermRelation" +"POST","/groups/{param}/sites/{param}/termStores","keep",,"New-MgGroupSiteTermStore","New-MgGroupSiteTermStore" +"POST","/groups/{param}/sites/add","rename","GroupSite","Invoke-MgGroupSiteAdd","Add-MgGroupSite" +"POST","/groups/{param}/sites/remove","rename","GroupSite","Invoke-MgGroupSiteRemove","Remove-MgGroupSite" +"POST","/groups/{param}/subscribeByMail","rename","SubscribeGroupByMail","Invoke-MgGroupSubscribeByMail","Invoke-MgSubscribeGroupByMail" +"POST","/groups/{param}/team/archive","rename","ArchiveGroupTeam","Invoke-MgGroupTeamArchive","Invoke-MgArchiveGroupTeam" +"POST","/groups/{param}/team/channels","keep",,"New-MgGroupTeamChannel","New-MgGroupTeamChannel" +"POST","/groups/{param}/team/channels/{param}/allMembers","rename","GroupTeamChannelMember","New-MgGroupTeamChannelAllMember","New-MgGroupTeamChannelMember" +"POST","/groups/{param}/team/channels/{param}/allMembers/add","rename","GroupTeamChannelAllMember","Invoke-MgGroupTeamChannelAllMemberAdd","Add-MgGroupTeamChannelAllMember" +"POST","/groups/{param}/team/channels/{param}/allMembers/remove","rename","GroupTeamChannelAllMember","Invoke-MgGroupTeamChannelAllMemberRemove","Remove-MgGroupTeamChannelAllMember" +"POST","/groups/{param}/team/channels/{param}/archive","rename","ArchiveGroupTeamChannel","Invoke-MgGroupTeamChannelArchive","Invoke-MgArchiveGroupTeamChannel" +"POST","/groups/{param}/team/channels/{param}/completeMigration","rename","GroupTeamChannelMigration","Invoke-MgGroupTeamChannelCompleteMigration","Complete-MgGroupTeamChannelMigration" +"POST","/groups/{param}/team/channels/{param}/members","suppress",,"New-MgGroupTeamChannelMember","no oracle row; 'New-MgGroupTeamChannelMember' ships from sibling family (see rename entries for this noun)" +"POST","/groups/{param}/team/channels/{param}/members/add","rename","GroupTeamChannelMember","Invoke-MgGroupTeamChannelMemberAdd","Add-MgGroupTeamChannelMember" +"POST","/groups/{param}/team/channels/{param}/members/remove","suppress",,"Invoke-MgGroupTeamChannelMemberRemove","no oracle row for POST /groups/{param}/team/channels/{param}/members/remove and 'Invoke-MgGroupTeamChannelMemberRemove' unshipped" +"POST","/groups/{param}/team/channels/{param}/messages","keep",,"New-MgGroupTeamChannelMessage","New-MgGroupTeamChannelMessage" +"POST","/groups/{param}/team/channels/{param}/messages/{param}/hostedContents","keep",,"New-MgGroupTeamChannelMessageHostedContent","New-MgGroupTeamChannelMessageHostedContent" +"POST","/groups/{param}/team/channels/{param}/messages/{param}/replies","keep",,"New-MgGroupTeamChannelMessageReply","New-MgGroupTeamChannelMessageReply" +"POST","/groups/{param}/team/channels/{param}/messages/{param}/replies/{param}/hostedContents","keep",,"New-MgGroupTeamChannelMessageReplyHostedContent","New-MgGroupTeamChannelMessageReplyHostedContent" +"POST","/groups/{param}/team/channels/{param}/messages/{param}/replies/{param}/setReaction","rename","GroupTeamChannelMessageReplyReaction","Invoke-MgGroupTeamChannelMessageReplySetReaction","Set-MgGroupTeamChannelMessageReplyReaction" +"POST","/groups/{param}/team/channels/{param}/messages/{param}/replies/{param}/softDelete","rename","SoftGroupTeamChannelMessageReplyDelete","Invoke-MgGroupTeamChannelMessageReplySoftDelete","Invoke-MgSoftGroupTeamChannelMessageReplyDelete" +"POST","/groups/{param}/team/channels/{param}/messages/{param}/replies/{param}/undoSoftDelete","rename","GroupTeamChannelMessageReplySoftDelete","Invoke-MgGroupTeamChannelMessageReplyUndoSoftDelete","Undo-MgGroupTeamChannelMessageReplySoftDelete" +"POST","/groups/{param}/team/channels/{param}/messages/{param}/replies/{param}/unsetReaction","rename","GroupTeamChannelMessageReplyReaction","Invoke-MgGroupTeamChannelMessageReplyUnsetReaction","Clear-MgGroupTeamChannelMessageReplyReaction" +"POST","/groups/{param}/team/channels/{param}/messages/{param}/replies/replyWithQuote","rename","GraphGroupTeamChannelMessageReply","Invoke-MgGroupTeamChannelMessageReplyReplyWithQuote","Invoke-MgGraphGroupTeamChannelMessageReply" +"POST","/groups/{param}/team/channels/{param}/messages/{param}/setReaction","rename","GroupTeamChannelMessageReaction","Invoke-MgGroupTeamChannelMessageSetReaction","Set-MgGroupTeamChannelMessageReaction" +"POST","/groups/{param}/team/channels/{param}/messages/{param}/softDelete","rename","SoftGroupTeamChannelMessageDelete","Invoke-MgGroupTeamChannelMessageSoftDelete","Invoke-MgSoftGroupTeamChannelMessageDelete" +"POST","/groups/{param}/team/channels/{param}/messages/{param}/undoSoftDelete","rename","GroupTeamChannelMessageSoftDelete","Invoke-MgGroupTeamChannelMessageUndoSoftDelete","Undo-MgGroupTeamChannelMessageSoftDelete" +"POST","/groups/{param}/team/channels/{param}/messages/{param}/unsetReaction","rename","GroupTeamChannelMessageReaction","Invoke-MgGroupTeamChannelMessageUnsetReaction","Clear-MgGroupTeamChannelMessageReaction" +"POST","/groups/{param}/team/channels/{param}/messages/replyWithQuote","rename","GraphGroupTeamChannelMessage","Invoke-MgGroupTeamChannelMessageReplyWithQuote","Invoke-MgGraphGroupTeamChannelMessage" +"POST","/groups/{param}/team/channels/{param}/provisionEmail","rename","GroupTeamChannelEmail","Invoke-MgGroupTeamChannelProvisionEmail","New-MgGroupTeamChannelEmail" +"POST","/groups/{param}/team/channels/{param}/removeEmail","rename","GroupTeamChannelEmail","Invoke-MgGroupTeamChannelRemoveEmail","Remove-MgGroupTeamChannelEmail" +"POST","/groups/{param}/team/channels/{param}/sharedWithTeams","keep",,"New-MgGroupTeamChannelSharedWithTeam","New-MgGroupTeamChannelSharedWithTeam" +"POST","/groups/{param}/team/channels/{param}/startMigration","rename","GroupTeamChannelMigration","Invoke-MgGroupTeamChannelStartMigration","Start-MgGroupTeamChannelMigration" +"POST","/groups/{param}/team/channels/{param}/tabs","keep",,"New-MgGroupTeamChannelTab","New-MgGroupTeamChannelTab" +"POST","/groups/{param}/team/channels/{param}/unarchive","rename","UnarchiveGroupTeamChannel","Invoke-MgGroupTeamChannelUnarchive","Invoke-MgUnarchiveGroupTeamChannel" +"POST","/groups/{param}/team/clone","rename","GroupTeam","Invoke-MgGroupTeamClone","Copy-MgGroupTeam" +"POST","/groups/{param}/team/completeMigration","rename","GroupTeamMigration","Invoke-MgGroupTeamCompleteMigration","Complete-MgGroupTeamMigration" +"POST","/groups/{param}/team/installedApps","keep",,"New-MgGroupTeamInstalledApp","New-MgGroupTeamInstalledApp" +"POST","/groups/{param}/team/installedApps/{param}/upgrade","rename","GroupTeamInstalledApp","Invoke-MgGroupTeamInstalledAppUpgrade","Update-MgGroupTeamInstalledApp" +"POST","/groups/{param}/team/members","keep",,"New-MgGroupTeamMember","New-MgGroupTeamMember" +"POST","/groups/{param}/team/members/add","rename","GroupTeamMember","Invoke-MgGroupTeamMemberAdd","Add-MgGroupTeamMember" +"POST","/groups/{param}/team/members/remove","suppress",,"Invoke-MgGroupTeamMemberRemove","no oracle row for POST /groups/{param}/team/members/remove and 'Invoke-MgGroupTeamMemberRemove' unshipped" +"POST","/groups/{param}/team/operations","keep",,"New-MgGroupTeamOperation","New-MgGroupTeamOperation" +"POST","/groups/{param}/team/permissionGrants","keep",,"New-MgGroupTeamPermissionGrant","New-MgGroupTeamPermissionGrant" +"POST","/groups/{param}/team/primaryChannel/allMembers","rename","GroupTeamPrimaryChannelMember","New-MgGroupTeamPrimaryChannelAllMember","New-MgGroupTeamPrimaryChannelMember" +"POST","/groups/{param}/team/primaryChannel/allMembers/add","rename","GroupTeamPrimaryChannelAllMember","Invoke-MgGroupTeamPrimaryChannelAllMemberAdd","Add-MgGroupTeamPrimaryChannelAllMember" +"POST","/groups/{param}/team/primaryChannel/allMembers/remove","rename","GroupTeamPrimaryChannelAllMember","Invoke-MgGroupTeamPrimaryChannelAllMemberRemove","Remove-MgGroupTeamPrimaryChannelAllMember" +"POST","/groups/{param}/team/primaryChannel/archive","rename","ArchiveGroupTeamPrimaryChannel","Invoke-MgGroupTeamPrimaryChannelArchive","Invoke-MgArchiveGroupTeamPrimaryChannel" +"POST","/groups/{param}/team/primaryChannel/completeMigration","rename","GroupTeamPrimaryChannelMigration","Invoke-MgGroupTeamPrimaryChannelCompleteMigration","Complete-MgGroupTeamPrimaryChannelMigration" +"POST","/groups/{param}/team/primaryChannel/members","suppress",,"New-MgGroupTeamPrimaryChannelMember","no oracle row; 'New-MgGroupTeamPrimaryChannelMember' ships from sibling family (see rename entries for this noun)" +"POST","/groups/{param}/team/primaryChannel/members/add","rename","GroupTeamPrimaryChannelMember","Invoke-MgGroupTeamPrimaryChannelMemberAdd","Add-MgGroupTeamPrimaryChannelMember" +"POST","/groups/{param}/team/primaryChannel/members/remove","suppress",,"Invoke-MgGroupTeamPrimaryChannelMemberRemove","no oracle row for POST /groups/{param}/team/primaryChannel/members/remove and 'Invoke-MgGroupTeamPrimaryChannelMemberRemove' unshipped" +"POST","/groups/{param}/team/primaryChannel/messages","keep",,"New-MgGroupTeamPrimaryChannelMessage","New-MgGroupTeamPrimaryChannelMessage" +"POST","/groups/{param}/team/primaryChannel/messages/{param}/hostedContents","keep",,"New-MgGroupTeamPrimaryChannelMessageHostedContent","New-MgGroupTeamPrimaryChannelMessageHostedContent" +"POST","/groups/{param}/team/primaryChannel/messages/{param}/replies","keep",,"New-MgGroupTeamPrimaryChannelMessageReply","New-MgGroupTeamPrimaryChannelMessageReply" +"POST","/groups/{param}/team/primaryChannel/messages/{param}/replies/{param}/hostedContents","keep",,"New-MgGroupTeamPrimaryChannelMessageReplyHostedContent","New-MgGroupTeamPrimaryChannelMessageReplyHostedContent" +"POST","/groups/{param}/team/primaryChannel/messages/{param}/replies/{param}/setReaction","rename","GroupTeamPrimaryChannelMessageReplyReaction","Invoke-MgGroupTeamPrimaryChannelMessageReplySetReaction","Set-MgGroupTeamPrimaryChannelMessageReplyReaction" +"POST","/groups/{param}/team/primaryChannel/messages/{param}/replies/{param}/softDelete","rename","SoftGroupTeamPrimaryChannelMessageReplyDelete","Invoke-MgGroupTeamPrimaryChannelMessageReplySoftDelete","Invoke-MgSoftGroupTeamPrimaryChannelMessageReplyDelete" +"POST","/groups/{param}/team/primaryChannel/messages/{param}/replies/{param}/undoSoftDelete","rename","GroupTeamPrimaryChannelMessageReplySoftDelete","Invoke-MgGroupTeamPrimaryChannelMessageReplyUndoSoftDelete","Undo-MgGroupTeamPrimaryChannelMessageReplySoftDelete" +"POST","/groups/{param}/team/primaryChannel/messages/{param}/replies/{param}/unsetReaction","rename","GroupTeamPrimaryChannelMessageReplyReaction","Invoke-MgGroupTeamPrimaryChannelMessageReplyUnsetReaction","Clear-MgGroupTeamPrimaryChannelMessageReplyReaction" +"POST","/groups/{param}/team/primaryChannel/messages/{param}/replies/replyWithQuote","rename","GraphGroupTeamPrimaryChannelMessageReply","Invoke-MgGroupTeamPrimaryChannelMessageReplyReplyWithQuote","Invoke-MgGraphGroupTeamPrimaryChannelMessageReply" +"POST","/groups/{param}/team/primaryChannel/messages/{param}/setReaction","rename","GroupTeamPrimaryChannelMessageReaction","Invoke-MgGroupTeamPrimaryChannelMessageSetReaction","Set-MgGroupTeamPrimaryChannelMessageReaction" +"POST","/groups/{param}/team/primaryChannel/messages/{param}/softDelete","rename","SoftGroupTeamPrimaryChannelMessageDelete","Invoke-MgGroupTeamPrimaryChannelMessageSoftDelete","Invoke-MgSoftGroupTeamPrimaryChannelMessageDelete" +"POST","/groups/{param}/team/primaryChannel/messages/{param}/undoSoftDelete","rename","GroupTeamPrimaryChannelMessageSoftDelete","Invoke-MgGroupTeamPrimaryChannelMessageUndoSoftDelete","Undo-MgGroupTeamPrimaryChannelMessageSoftDelete" +"POST","/groups/{param}/team/primaryChannel/messages/{param}/unsetReaction","rename","GroupTeamPrimaryChannelMessageReaction","Invoke-MgGroupTeamPrimaryChannelMessageUnsetReaction","Clear-MgGroupTeamPrimaryChannelMessageReaction" +"POST","/groups/{param}/team/primaryChannel/messages/replyWithQuote","rename","GraphGroupTeamPrimaryChannelMessage","Invoke-MgGroupTeamPrimaryChannelMessageReplyWithQuote","Invoke-MgGraphGroupTeamPrimaryChannelMessage" +"POST","/groups/{param}/team/primaryChannel/provisionEmail","rename","GroupTeamPrimaryChannelEmail","Invoke-MgGroupTeamPrimaryChannelProvisionEmail","New-MgGroupTeamPrimaryChannelEmail" +"POST","/groups/{param}/team/primaryChannel/removeEmail","rename","GroupTeamPrimaryChannelEmail","Invoke-MgGroupTeamPrimaryChannelRemoveEmail","Remove-MgGroupTeamPrimaryChannelEmail" +"POST","/groups/{param}/team/primaryChannel/sharedWithTeams","keep",,"New-MgGroupTeamPrimaryChannelSharedWithTeam","New-MgGroupTeamPrimaryChannelSharedWithTeam" +"POST","/groups/{param}/team/primaryChannel/startMigration","rename","GroupTeamPrimaryChannelMigration","Invoke-MgGroupTeamPrimaryChannelStartMigration","Start-MgGroupTeamPrimaryChannelMigration" +"POST","/groups/{param}/team/primaryChannel/tabs","keep",,"New-MgGroupTeamPrimaryChannelTab","New-MgGroupTeamPrimaryChannelTab" +"POST","/groups/{param}/team/primaryChannel/unarchive","rename","UnarchiveGroupTeamPrimaryChannel","Invoke-MgGroupTeamPrimaryChannelUnarchive","Invoke-MgUnarchiveGroupTeamPrimaryChannel" +"POST","/groups/{param}/team/schedule/dayNotes","keep",,"New-MgGroupTeamScheduleDayNote","New-MgGroupTeamScheduleDayNote" +"POST","/groups/{param}/team/schedule/offerShiftRequests","keep",,"New-MgGroupTeamScheduleOfferShiftRequest","New-MgGroupTeamScheduleOfferShiftRequest" +"POST","/groups/{param}/team/schedule/openShiftChangeRequests","keep",,"New-MgGroupTeamScheduleOpenShiftChangeRequest","New-MgGroupTeamScheduleOpenShiftChangeRequest" +"POST","/groups/{param}/team/schedule/openShifts","keep",,"New-MgGroupTeamScheduleOpenShift","New-MgGroupTeamScheduleOpenShift" +"POST","/groups/{param}/team/schedule/schedulingGroups","keep",,"New-MgGroupTeamScheduleSchedulingGroup","New-MgGroupTeamScheduleSchedulingGroup" +"POST","/groups/{param}/team/schedule/share","rename","ShareGroupTeamSchedule","Invoke-MgGroupTeamScheduleShare","Invoke-MgShareGroupTeamSchedule" +"POST","/groups/{param}/team/schedule/shifts","keep",,"New-MgGroupTeamScheduleShift","New-MgGroupTeamScheduleShift" +"POST","/groups/{param}/team/schedule/swapShiftsChangeRequests","keep",,"New-MgGroupTeamScheduleSwapShiftChangeRequest","New-MgGroupTeamScheduleSwapShiftChangeRequest" +"POST","/groups/{param}/team/schedule/timeCards","keep",,"New-MgGroupTeamScheduleTimeCard","New-MgGroupTeamScheduleTimeCard" +"POST","/groups/{param}/team/schedule/timeCards/{param}/clockOut","rename","ClockGroupTeamScheduleTimeCardOut","Invoke-MgGroupTeamScheduleTimeCardClockOut","Invoke-MgClockGroupTeamScheduleTimeCardOut" +"POST","/groups/{param}/team/schedule/timeCards/{param}/confirm","rename","GroupTeamScheduleTimeCard","Invoke-MgGroupTeamScheduleTimeCardConfirm","Confirm-MgGroupTeamScheduleTimeCard" +"POST","/groups/{param}/team/schedule/timeCards/{param}/endBreak","rename","GroupTeamScheduleTimeCardBreak","Invoke-MgGroupTeamScheduleTimeCardEndBreak","Stop-MgGroupTeamScheduleTimeCardBreak" +"POST","/groups/{param}/team/schedule/timeCards/{param}/startBreak","rename","GroupTeamScheduleTimeCardBreak","Invoke-MgGroupTeamScheduleTimeCardStartBreak","Start-MgGroupTeamScheduleTimeCardBreak" +"POST","/groups/{param}/team/schedule/timeCards/clockIn","rename","ClockGroupTeamScheduleTimeCardIn","Invoke-MgGroupTeamScheduleTimeCardClockIn","Invoke-MgClockGroupTeamScheduleTimeCardIn" +"POST","/groups/{param}/team/schedule/timeOffReasons","keep",,"New-MgGroupTeamScheduleTimeOffReason","New-MgGroupTeamScheduleTimeOffReason" +"POST","/groups/{param}/team/schedule/timeOffRequests","keep",,"New-MgGroupTeamScheduleTimeOffRequest","New-MgGroupTeamScheduleTimeOffRequest" +"POST","/groups/{param}/team/schedule/timesOff","keep",,"New-MgGroupTeamScheduleTimeOff","New-MgGroupTeamScheduleTimeOff" +"POST","/groups/{param}/team/sendActivityNotification","rename","GroupTeamActivityNotification","Invoke-MgGroupTeamSendActivityNotification","Send-MgGroupTeamActivityNotification" +"POST","/groups/{param}/team/tags","keep",,"New-MgGroupTeamTag","New-MgGroupTeamTag" +"POST","/groups/{param}/team/tags/{param}/members","keep",,"New-MgGroupTeamTagMember","New-MgGroupTeamTagMember" +"POST","/groups/{param}/team/unarchive","rename","UnarchiveGroupTeam","Invoke-MgGroupTeamUnarchive","Invoke-MgUnarchiveGroupTeam" +"POST","/groups/{param}/threads","keep",,"New-MgGroupThread","New-MgGroupThread" +"POST","/groups/{param}/threads/{param}/posts/{param}/attachments","keep",,"New-MgGroupThreadPostAttachment","New-MgGroupThreadPostAttachment" +"POST","/groups/{param}/threads/{param}/posts/{param}/attachments/createUploadSession","rename","GroupThreadPostAttachmentUploadSession","Invoke-MgGroupThreadPostAttachmentCreateUploadSession","New-MgGroupThreadPostAttachmentUploadSession" +"POST","/groups/{param}/threads/{param}/posts/{param}/extensions","keep",,"New-MgGroupThreadPostExtension","New-MgGroupThreadPostExtension" +"POST","/groups/{param}/threads/{param}/posts/{param}/forward","rename","ForwardGroupThreadPost","Invoke-MgGroupThreadPostForward","Invoke-MgForwardGroupThreadPost" +"POST","/groups/{param}/threads/{param}/posts/{param}/inReplyTo/attachments","keep",,"New-MgGroupThreadPostInReplyToAttachment","New-MgGroupThreadPostInReplyToAttachment" +"POST","/groups/{param}/threads/{param}/posts/{param}/inReplyTo/attachments/createUploadSession","rename","GroupThreadPostInReplyToAttachmentUploadSession","Invoke-MgGroupThreadPostInReplyToAttachmentCreateUploadSession","New-MgGroupThreadPostInReplyToAttachmentUploadSession" +"POST","/groups/{param}/threads/{param}/posts/{param}/inReplyTo/extensions","keep",,"New-MgGroupThreadPostInReplyToExtension","New-MgGroupThreadPostInReplyToExtension" +"POST","/groups/{param}/threads/{param}/posts/{param}/inReplyTo/forward","rename","ForwardGroupThreadPostInReplyTo","Invoke-MgGroupThreadPostInReplyToForward","Invoke-MgForwardGroupThreadPostInReplyTo" +"POST","/groups/{param}/threads/{param}/posts/{param}/inReplyTo/reply","rename","ReplyGroupThreadPostInReplyTo","Invoke-MgGroupThreadPostInReplyToReply","Invoke-MgReplyGroupThreadPostInReplyTo" +"POST","/groups/{param}/threads/{param}/posts/{param}/reply","rename","ReplyGroupThreadPost","Invoke-MgGroupThreadPostReply","Invoke-MgReplyGroupThreadPost" +"POST","/groups/{param}/threads/{param}/reply","rename","ReplyGroupThread","Invoke-MgGroupThreadReply","Invoke-MgReplyGroupThread" +"POST","/groups/{param}/unsubscribeByMail","rename","GraphGroup","Invoke-MgGroupUnsubscribeByMail","Invoke-MgGraphGroup" +"POST","/groups/{param}/validateProperties","rename","GroupProperty","Invoke-MgGroupValidateProperties","Test-MgGroupProperty" +"POST","/groups/getAvailableExtensionProperties","suppress",,"Invoke-MgGroupGetAvailableExtensionProperties","no oracle row for POST /groups/getAvailableExtensionProperties and 'Invoke-MgGroupGetAvailableExtensionProperties' unshipped" +"POST","/groups/getByIds","rename","GroupById","Invoke-MgGroupGetByIds","Get-MgGroupById" +"POST","/groupSettingTemplates","keep",,"New-MgGroupSettingTemplate","New-MgGroupSettingTemplateGroupSettingTemplate" +"POST","/groupSettingTemplates/{param}/checkMemberGroups","rename","GroupSettingTemplateMemberGroup","Invoke-MgGroupSettingTemplateCheckMemberGroups","Confirm-MgGroupSettingTemplateMemberGroup" +"POST","/groupSettingTemplates/{param}/checkMemberObjects","rename","GroupSettingTemplateMemberObject","Invoke-MgGroupSettingTemplateCheckMemberObjects","Confirm-MgGroupSettingTemplateMemberObject" +"POST","/groupSettingTemplates/{param}/getMemberGroups","rename","GroupSettingTemplateMemberGroup","Invoke-MgGroupSettingTemplateGetMemberGroups","Get-MgGroupSettingTemplateMemberGroup" +"POST","/groupSettingTemplates/{param}/getMemberObjects","rename","GroupSettingTemplateMemberObject","Invoke-MgGroupSettingTemplateGetMemberObjects","Get-MgGroupSettingTemplateMemberObject" +"POST","/groupSettingTemplates/{param}/restore","rename","GroupSettingTemplate","Invoke-MgGroupSettingTemplateRestore","Restore-MgGroupSettingTemplate" +"POST","/groupSettingTemplates/getAvailableExtensionProperties","suppress",,"Invoke-MgGroupSettingTemplateGetAvailableExtensionProperties","no oracle row for POST /groupSettingTemplates/getAvailableExtensionProperties and 'Invoke-MgGroupSettingTemplateGetAvailableExtensionProperties' unshipped" +"POST","/groupSettingTemplates/getByIds","rename","GroupSettingTemplateById","Invoke-MgGroupSettingTemplateGetByIds","Get-MgGroupSettingTemplateById" +"POST","/groupSettingTemplates/validateProperties","rename","GroupSettingTemplateProperty","Invoke-MgGroupSettingTemplateValidateProperties","Test-MgGroupSettingTemplateProperty" +"POST","/identity/apiConnectors","keep",,"New-MgIdentityApiConnector","New-MgIdentityApiConnector" +"POST","/identity/apiConnectors/{param}/uploadClientCertificate","rename","UploadIdentityApiConnectorClientCertificate","Invoke-MgIdentityApiConnectorUploadClientCertificate","Invoke-MgUploadIdentityApiConnectorClientCertificate" +"POST","/identity/authenticationEventListeners","keep",,"New-MgIdentityAuthenticationEventListener","New-MgIdentityAuthenticationEventListener" +"POST","/identity/authenticationEventsFlows","keep",,"New-MgIdentityAuthenticationEventFlow","New-MgIdentityAuthenticationEventFlow" +"POST","/identity/authenticationEventsFlows/{param}/conditions/applications/includeApplications","rename","IdentityAuthenticationEventFlowIncludeApplication","New-MgIdentityAuthenticationEventFlowConditionApplicationIncludeApplication","New-MgIdentityAuthenticationEventFlowIncludeApplication" +"POST","/identity/b2xUserFlows","rename","IdentityB2XUserFlow","New-MgIdentityB2xUserFlow","New-MgIdentityB2XUserFlow" +"POST","/identity/b2xUserFlows/{param}/apiConnectorConfiguration/postAttributeCollection/uploadClientCertificate","rename","UploadIdentityB2XUserFlowApiConnectorConfigurationPostAttributeCollectionClientCertificate","Invoke-MgIdentityB2xUserFlowApiConnectorConfigurationPostAttributeCollectionUploadClientCertificate","Invoke-MgUploadIdentityB2XUserFlowApiConnectorConfigurationPostAttributeCollectionClientCertificate" +"POST","/identity/b2xUserFlows/{param}/apiConnectorConfiguration/postFederationSignup/uploadClientCertificate","rename","UploadIdentityB2XUserFlowApiConnectorConfigurationPostFederationSignupClientCertificate","Invoke-MgIdentityB2xUserFlowApiConnectorConfigurationPostFederationSignupUploadClientCertificate","Invoke-MgUploadIdentityB2XUserFlowApiConnectorConfigurationPostFederationSignupClientCertificate" +"POST","/identity/b2xUserFlows/{param}/languages","rename","IdentityB2XUserFlowLanguage","New-MgIdentityB2xUserFlowLanguage","New-MgIdentityB2XUserFlowLanguage" +"POST","/identity/b2xUserFlows/{param}/languages/{param}/defaultPages","rename","IdentityB2XUserFlowLanguageDefaultPage","New-MgIdentityB2xUserFlowLanguageDefaultPage","New-MgIdentityB2XUserFlowLanguageDefaultPage" +"POST","/identity/b2xUserFlows/{param}/languages/{param}/overridesPages","rename","IdentityB2XUserFlowLanguageOverridePage","New-MgIdentityB2xUserFlowLanguageOverridePage","New-MgIdentityB2XUserFlowLanguageOverridePage" +"POST","/identity/b2xUserFlows/{param}/userAttributeAssignments","rename","IdentityB2XUserFlowUserAttributeAssignment","New-MgIdentityB2xUserFlowUserAttributeAssignment","New-MgIdentityB2XUserFlowUserAttributeAssignment" +"POST","/identity/b2xUserFlows/{param}/userAttributeAssignments/setOrder","rename","IdentityB2XUserFlowUserAttributeAssignmentOrder","Invoke-MgIdentityB2xUserFlowUserAttributeAssignmentSetOrder","Set-MgIdentityB2XUserFlowUserAttributeAssignmentOrder" +"POST","/identity/b2xUserFlows/{param}/userFlowIdentityProviders/$ref","rename","IdentityB2XUserFlowIdentityProviderByRef","New-MgIdentityB2xUserFlowUserFlowIdentityProviderByRef","New-MgIdentityB2XUserFlowIdentityProviderByRef" +"POST","/identity/conditionalAccess/authenticationContextClassReferences","keep",,"New-MgIdentityConditionalAccessAuthenticationContextClassReference","New-MgIdentityConditionalAccessAuthenticationContextClassReference" +"POST","/identity/conditionalAccess/authenticationStrength/authenticationMethodModes","suppress",,"New-MgIdentityConditionalAccessAuthenticationStrengthAuthenticationMethodMode","no oracle row for POST /identity/conditionalAccess/authenticationStrength/authenticationMethodModes and 'New-MgIdentityConditionalAccessAuthenticationStrengthAuthenticationMethodMode' unshipped" +"POST","/identity/conditionalAccess/authenticationStrength/policies","suppress",,"New-MgIdentityConditionalAccessAuthenticationStrengthPolicy","no oracle row for POST /identity/conditionalAccess/authenticationStrength/policies and 'New-MgIdentityConditionalAccessAuthenticationStrengthPolicy' unshipped" +"POST","/identity/conditionalAccess/authenticationStrength/policies/{param}/combinationConfigurations","keep",,"New-MgIdentityConditionalAccessAuthenticationStrengthPolicyCombinationConfiguration","New-MgIdentityConditionalAccessAuthenticationStrengthPolicyCombinationConfiguration" +"POST","/identity/conditionalAccess/authenticationStrength/policies/{param}/updateAllowedCombinations","suppress",,"Invoke-MgIdentityConditionalAccessAuthenticationStrengthPolicyUpdateAllowedCombinations","no oracle row for POST /identity/conditionalAccess/authenticationStrength/policies/{param}/updateAllowedCombinations and 'Invoke-MgIdentityConditionalAccessAuthenticationStrengthPolicyUpdateAllowedCombinations' unshipped" +"POST","/identity/conditionalAccess/deletedItems/namedLocations","keep",,"New-MgIdentityConditionalAccessDeletedItemNamedLocation","New-MgIdentityConditionalAccessDeletedItemNamedLocation" +"POST","/identity/conditionalAccess/deletedItems/namedLocations/{param}/restore","rename","IdentityConditionalAccessDeletedItemNamedLocation","Invoke-MgIdentityConditionalAccessDeletedItemNamedLocationRestore","Restore-MgIdentityConditionalAccessDeletedItemNamedLocation" +"POST","/identity/conditionalAccess/deletedItems/policies","keep",,"New-MgIdentityConditionalAccessDeletedItemPolicy","New-MgIdentityConditionalAccessDeletedItemPolicy" +"POST","/identity/conditionalAccess/deletedItems/policies/{param}/restore","rename","IdentityConditionalAccessDeletedItemPolicy","Invoke-MgIdentityConditionalAccessDeletedItemPolicyRestore","Restore-MgIdentityConditionalAccessDeletedItemPolicy" +"POST","/identity/conditionalAccess/evaluate","rename","IdentityConditionalAccess","Invoke-MgIdentityConditionalAccessEvaluate","Test-MgIdentityConditionalAccess" +"POST","/identity/conditionalAccess/namedLocations","keep",,"New-MgIdentityConditionalAccessNamedLocation","New-MgIdentityConditionalAccessNamedLocation" +"POST","/identity/conditionalAccess/namedLocations/{param}/restore","rename","IdentityConditionalAccessNamedLocation","Invoke-MgIdentityConditionalAccessNamedLocationRestore","Restore-MgIdentityConditionalAccessNamedLocation" +"POST","/identity/conditionalAccess/policies","keep",,"New-MgIdentityConditionalAccessPolicy","New-MgIdentityConditionalAccessPolicy" +"POST","/identity/conditionalAccess/policies/{param}/restore","rename","IdentityConditionalAccessPolicy","Invoke-MgIdentityConditionalAccessPolicyRestore","Restore-MgIdentityConditionalAccessPolicy" +"POST","/identity/customAuthenticationExtensions","keep",,"New-MgIdentityCustomAuthenticationExtension","New-MgIdentityCustomAuthenticationExtension" +"POST","/identity/customAuthenticationExtensions/{param}/validateAuthenticationConfiguration","rename","IdentityCustomAuthenticationExtensionAuthenticationConfiguration","Invoke-MgIdentityCustomAuthenticationExtensionValidateAuthenticationConfiguration","Test-MgIdentityCustomAuthenticationExtensionAuthenticationConfiguration" +"POST","/identity/identityProviders","keep",,"New-MgIdentityProvider","New-MgIdentityProvider" +"POST","/identity/riskPrevention/fraudProtectionProviders","keep",,"New-MgIdentityRiskPreventionFraudProtectionProvider","New-MgIdentityRiskPreventionFraudProtectionProvider" +"POST","/identity/riskPrevention/webApplicationFirewallProviders","keep",,"New-MgIdentityRiskPreventionWebApplicationFirewallProvider","New-MgIdentityRiskPreventionWebApplicationFirewallProvider" +"POST","/identity/riskPrevention/webApplicationFirewallProviders/{param}/verify","rename","IdentityRiskPreventionWebApplicationFirewallProvider","Invoke-MgIdentityRiskPreventionWebApplicationFirewallProviderVerify","Confirm-MgIdentityRiskPreventionWebApplicationFirewallProvider" +"POST","/identity/riskPrevention/webApplicationFirewallVerifications","keep",,"New-MgIdentityRiskPreventionWebApplicationFirewallVerification","New-MgIdentityRiskPreventionWebApplicationFirewallVerification" +"POST","/identity/userFlowAttributes","keep",,"New-MgIdentityUserFlowAttribute","New-MgIdentityUserFlowAttribute" +"POST","/identity/verifiedId/profiles","keep",,"New-MgIdentityVerifiedIdProfile","New-MgIdentityVerifiedIdProfile" +"POST","/identityGovernance/accessReviews/definitions","keep",,"New-MgIdentityGovernanceAccessReviewDefinition","New-MgIdentityGovernanceAccessReviewDefinition" +"POST","/identityGovernance/accessReviews/definitions/{param}/instances","keep",,"New-MgIdentityGovernanceAccessReviewDefinitionInstance","New-MgIdentityGovernanceAccessReviewDefinitionInstance" +"POST","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/acceptRecommendations","rename","AcceptIdentityGovernanceAccessReviewDefinitionInstanceRecommendation","Invoke-MgIdentityGovernanceAccessReviewDefinitionInstanceAcceptRecommendations","Invoke-MgAcceptIdentityGovernanceAccessReviewDefinitionInstanceRecommendation" +"POST","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/applyDecisions","rename","IdentityGovernanceAccessReviewDefinitionInstanceDecision","Invoke-MgIdentityGovernanceAccessReviewDefinitionInstanceApplyDecisions","Add-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision" +"POST","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/batchRecordDecisions","rename","BatchIdentityGovernanceAccessReviewDefinitionInstanceRecordDecision","Invoke-MgIdentityGovernanceAccessReviewDefinitionInstanceBatchRecordDecisions","Invoke-MgBatchIdentityGovernanceAccessReviewDefinitionInstanceRecordDecision" +"POST","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/contactedReviewers","keep",,"New-MgIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewer","New-MgIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewer" +"POST","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/decisions","keep",,"New-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision","New-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision" +"POST","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/decisions/{param}/insights","keep",,"New-MgIdentityGovernanceAccessReviewDefinitionInstanceDecisionInsight","New-MgIdentityGovernanceAccessReviewDefinitionInstanceDecisionInsight" +"POST","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/resetDecisions","rename","IdentityGovernanceAccessReviewDefinitionInstanceDecision","Invoke-MgIdentityGovernanceAccessReviewDefinitionInstanceResetDecisions","Reset-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision" +"POST","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/sendReminder","rename","IdentityGovernanceAccessReviewDefinitionInstanceReminder","Invoke-MgIdentityGovernanceAccessReviewDefinitionInstanceSendReminder","Send-MgIdentityGovernanceAccessReviewDefinitionInstanceReminder" +"POST","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/stages","keep",,"New-MgIdentityGovernanceAccessReviewDefinitionInstanceStage","New-MgIdentityGovernanceAccessReviewDefinitionInstanceStage" +"POST","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/stages/{param}/decisions","keep",,"New-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision","New-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision" +"POST","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/stages/{param}/decisions/{param}/insights","keep",,"New-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionInsight","New-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionInsight" +"POST","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/stages/{param}/stop","rename","IdentityGovernanceAccessReviewDefinitionInstanceStage","Invoke-MgIdentityGovernanceAccessReviewDefinitionInstanceStageStop","Stop-MgIdentityGovernanceAccessReviewDefinitionInstanceStage" +"POST","/identityGovernance/accessReviews/definitions/{param}/instances/{param}/stop","rename","IdentityGovernanceAccessReviewDefinitionInstance","Invoke-MgIdentityGovernanceAccessReviewDefinitionInstanceStop","Stop-MgIdentityGovernanceAccessReviewDefinitionInstance" +"POST","/identityGovernance/accessReviews/definitions/{param}/stop","rename","IdentityGovernanceAccessReviewDefinition","Invoke-MgIdentityGovernanceAccessReviewDefinitionStop","Stop-MgIdentityGovernanceAccessReviewDefinition" +"POST","/identityGovernance/accessReviews/historyDefinitions","keep",,"New-MgIdentityGovernanceAccessReviewHistoryDefinition","New-MgIdentityGovernanceAccessReviewHistoryDefinition" +"POST","/identityGovernance/accessReviews/historyDefinitions/{param}/instances","keep",,"New-MgIdentityGovernanceAccessReviewHistoryDefinitionInstance","New-MgIdentityGovernanceAccessReviewHistoryDefinitionInstance" +"POST","/identityGovernance/accessReviews/historyDefinitions/{param}/instances/{param}/generateDownloadUri","rename","IdentityGovernanceAccessReviewHistoryDefinitionInstanceDownloadUri","Invoke-MgIdentityGovernanceAccessReviewHistoryDefinitionInstanceGenerateDownloadUri","New-MgIdentityGovernanceAccessReviewHistoryDefinitionInstanceDownloadUri" +"POST","/identityGovernance/appConsent/appConsentRequests","rename","IdentityGovernanceAppConsentRequest","New-MgIdentityGovernanceAppConsentAppConsentRequest","New-MgIdentityGovernanceAppConsentRequest" +"POST","/identityGovernance/appConsent/appConsentRequests/{param}/userConsentRequests","rename","IdentityGovernanceAppConsentRequestUserConsentRequest","New-MgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequest","New-MgIdentityGovernanceAppConsentRequestUserConsentRequest" +"POST","/identityGovernance/appConsent/appConsentRequests/{param}/userConsentRequests/{param}/approval/stages","rename","IdentityGovernanceAppConsentRequestUserConsentRequestApprovalStage","New-MgIdentityGovernanceAppConsentAppConsentRequestUserConsentRequestApprovalStage","New-MgIdentityGovernanceAppConsentRequestUserConsentRequestApprovalStage" +"POST","/identityGovernance/entitlementManagement/accessPackageAssignmentApprovals","suppress",,"New-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentApproval","no oracle row for POST /identityGovernance/entitlementManagement/accessPackageAssignmentApprovals and 'New-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentApproval' unshipped" +"POST","/identityGovernance/entitlementManagement/accessPackageAssignmentApprovals/{param}/stages","rename","EntitlementManagementAccessPackageAssignmentApprovalStage","New-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentApprovalStage","New-MgEntitlementManagementAccessPackageAssignmentApprovalStage" +"POST","/identityGovernance/entitlementManagement/accessPackages","rename","EntitlementManagementAccessPackage","New-MgIdentityGovernanceEntitlementManagementAccessPackage","New-MgEntitlementManagementAccessPackage" +"POST","/identityGovernance/entitlementManagement/accessPackages/{param}/assignmentPolicies","rename","EntitlementManagementAccessPackageAssignmentPolicy","New-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicy","New-MgEntitlementManagementAccessPackageAssignmentPolicy" +"POST","/identityGovernance/entitlementManagement/accessPackages/{param}/assignmentPolicies/{param}/customExtensionStageSettings","suppress",,"New-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyCustomExtensionStageSetting","no oracle row for POST /identityGovernance/entitlementManagement/accessPackages/{param}/assignmentPolicies/{param}/customExtensionStageSettings and 'New-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyCustomExtensionStageSetting' unshipped" +"POST","/identityGovernance/entitlementManagement/accessPackages/{param}/assignmentPolicies/{param}/questions","suppress",,"New-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyQuestion","no oracle row for POST /identityGovernance/entitlementManagement/accessPackages/{param}/assignmentPolicies/{param}/questions and 'New-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyQuestion' unshipped" +"POST","/identityGovernance/entitlementManagement/accessPackages/{param}/getApplicablePolicyRequirements","rename","EntitlementManagementAccessPackageApplicablePolicyRequirement","Invoke-MgIdentityGovernanceEntitlementManagementAccessPackageGetApplicablePolicyRequirements","Get-MgEntitlementManagementAccessPackageApplicablePolicyRequirement" +"POST","/identityGovernance/entitlementManagement/accessPackages/{param}/incompatibleAccessPackages/$ref","rename","EntitlementManagementAccessPackageIncompatibleAccessPackageByRef","New-MgIdentityGovernanceEntitlementManagementAccessPackageIncompatibleAccessPackageByRef","New-MgEntitlementManagementAccessPackageIncompatibleAccessPackageByRef" +"POST","/identityGovernance/entitlementManagement/accessPackages/{param}/incompatibleGroups/$ref","rename","EntitlementManagementAccessPackageIncompatibleGroupByRef","New-MgIdentityGovernanceEntitlementManagementAccessPackageIncompatibleGroupByRef","New-MgEntitlementManagementAccessPackageIncompatibleGroupByRef" +"POST","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes","rename","EntitlementManagementAccessPackageResourceRoleScope","New-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScope","New-MgEntitlementManagementAccessPackageResourceRoleScope" +"POST","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/refresh","suppress",,"Invoke-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceRefresh","no oracle row for POST /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/refresh and 'Invoke-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceRefresh' unshipped" +"POST","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/roles","suppress",,"New-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceRole","no oracle row for POST /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/roles and 'New-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceRole' unshipped" +"POST","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/scopes","suppress",,"New-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScope","no oracle row for POST /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/scopes and 'New-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScope' unshipped" +"POST","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/scopes/{param}/resource/refresh","suppress",,"Invoke-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScopeResourceRefresh","no oracle row for POST /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/scopes/{param}/resource/refresh and 'Invoke-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScopeResourceRefresh' unshipped" +"POST","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/scopes/{param}/resource/roles","suppress",,"New-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScopeResourceRole","no oracle row for POST /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/scopes/{param}/resource/roles and 'New-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScopeResourceRole' unshipped" +"POST","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/refresh","suppress",,"Invoke-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRefresh","no oracle row for POST /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/refresh and 'Invoke-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRefresh' unshipped" +"POST","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/roles","suppress",,"New-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRole","no oracle row for POST /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/roles and 'New-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRole' unshipped" +"POST","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/roles/{param}/resource/refresh","suppress",,"Invoke-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRoleResourceRefresh","no oracle row for POST /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/roles/{param}/resource/refresh and 'Invoke-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRoleResourceRefresh' unshipped" +"POST","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/roles/{param}/resource/scopes","suppress",,"New-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRoleResourceScope","no oracle row for POST /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/roles/{param}/resource/scopes and 'New-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRoleResourceScope' unshipped" +"POST","/identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/scopes","suppress",,"New-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceScope","no oracle row for POST /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/scopes and 'New-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceScope' unshipped" +"POST","/identityGovernance/entitlementManagement/accessPackageSuggestions","rename","EntitlementManagementAccessPackageSuggestion","New-MgIdentityGovernanceEntitlementManagementAccessPackageSuggestion","New-MgEntitlementManagementAccessPackageSuggestion" +"POST","/identityGovernance/entitlementManagement/assignmentPolicies","rename","EntitlementManagementAssignmentPolicy","New-MgIdentityGovernanceEntitlementManagementAssignmentPolicy","New-MgEntitlementManagementAssignmentPolicy" +"POST","/identityGovernance/entitlementManagement/assignmentPolicies/{param}/customExtensionStageSettings","rename","EntitlementManagementAssignmentPolicyCustomExtensionStageSetting","New-MgIdentityGovernanceEntitlementManagementAssignmentPolicyCustomExtensionStageSetting","New-MgEntitlementManagementAssignmentPolicyCustomExtensionStageSetting" +"POST","/identityGovernance/entitlementManagement/assignmentPolicies/{param}/questions","rename","EntitlementManagementAssignmentPolicyQuestion","New-MgIdentityGovernanceEntitlementManagementAssignmentPolicyQuestion","New-MgEntitlementManagementAssignmentPolicyQuestion" +"POST","/identityGovernance/entitlementManagement/assignmentRequests","rename","EntitlementManagementAssignmentRequest","New-MgIdentityGovernanceEntitlementManagementAssignmentRequest","New-MgEntitlementManagementAssignmentRequest" +"POST","/identityGovernance/entitlementManagement/assignmentRequests/{param}/cancel","rename","EntitlementManagementAssignmentRequest","Invoke-MgIdentityGovernanceEntitlementManagementAssignmentRequestCancel","Stop-MgEntitlementManagementAssignmentRequest" +"POST","/identityGovernance/entitlementManagement/assignmentRequests/{param}/reprocess","rename","EntitlementManagementAssignmentRequest","Invoke-MgIdentityGovernanceEntitlementManagementAssignmentRequestReprocess","Update-MgEntitlementManagementAssignmentRequest" +"POST","/identityGovernance/entitlementManagement/assignmentRequests/{param}/resume","rename","EntitlementManagementAssignmentRequest","Invoke-MgIdentityGovernanceEntitlementManagementAssignmentRequestResume","Resume-MgEntitlementManagementAssignmentRequest" +"POST","/identityGovernance/entitlementManagement/assignments","rename","EntitlementManagementAssignment","New-MgIdentityGovernanceEntitlementManagementAssignment","New-MgEntitlementManagementAssignment" +"POST","/identityGovernance/entitlementManagement/assignments/{param}/reprocess","rename","EntitlementManagementAssignment","Invoke-MgIdentityGovernanceEntitlementManagementAssignmentReprocess","Update-MgEntitlementManagementAssignment" +"POST","/identityGovernance/entitlementManagement/availableAccessPackages","rename","EntitlementManagementAvailableAccessPackage","New-MgIdentityGovernanceEntitlementManagementAvailableAccessPackage","New-MgEntitlementManagementAvailableAccessPackage" +"POST","/identityGovernance/entitlementManagement/catalogs","rename","EntitlementManagementCatalog","New-MgIdentityGovernanceEntitlementManagementCatalog","New-MgEntitlementManagementCatalog" +"POST","/identityGovernance/entitlementManagement/catalogs/{param}/customWorkflowExtensions","rename","EntitlementManagementCatalogCustomWorkflowExtension","New-MgIdentityGovernanceEntitlementManagementCatalogCustomWorkflowExtension","New-MgEntitlementManagementCatalogCustomWorkflowExtension" +"POST","/identityGovernance/entitlementManagement/catalogs/{param}/resourceRoles","rename","EntitlementManagementCatalogResourceRole","New-MgIdentityGovernanceEntitlementManagementCatalogResourceRole","New-MgEntitlementManagementCatalogResourceRole" +"POST","/identityGovernance/entitlementManagement/catalogs/{param}/resourceRoles/{param}/resource/refresh","rename","EntitlementManagementCatalogResourceRoleResource","Invoke-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceRefresh","Update-MgEntitlementManagementCatalogResourceRoleResource" +"POST","/identityGovernance/entitlementManagement/catalogs/{param}/resourceRoles/{param}/resource/roles","suppress",,"New-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceRole","no oracle row for POST /identityGovernance/entitlementManagement/catalogs/{param}/resourceRoles/{param}/resource/roles and 'New-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceRole' unshipped" +"POST","/identityGovernance/entitlementManagement/catalogs/{param}/resourceRoles/{param}/resource/scopes","rename","EntitlementManagementCatalogResourceRoleResourceScope","New-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScope","New-MgEntitlementManagementCatalogResourceRoleResourceScope" +"POST","/identityGovernance/entitlementManagement/catalogs/{param}/resourceRoles/{param}/resource/scopes/{param}/resource/refresh","rename","EntitlementManagementCatalogResourceRoleResourceScopeResource","Invoke-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResourceRefresh","Update-MgEntitlementManagementCatalogResourceRoleResourceScopeResource" +"POST","/identityGovernance/entitlementManagement/catalogs/{param}/resourceRoles/{param}/resource/scopes/{param}/resource/roles","rename","EntitlementManagementCatalogResourceRoleResourceScopeResourceRole","New-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResourceRole","New-MgEntitlementManagementCatalogResourceRoleResourceScopeResourceRole" +"POST","/identityGovernance/entitlementManagement/catalogs/{param}/resources","rename","EntitlementManagementCatalogResource","New-MgIdentityGovernanceEntitlementManagementCatalogResource","New-MgEntitlementManagementCatalogResource" +"POST","/identityGovernance/entitlementManagement/catalogs/{param}/resources/{param}/refresh","rename","EntitlementManagementCatalogResource","Invoke-MgIdentityGovernanceEntitlementManagementCatalogResourceRefresh","Update-MgEntitlementManagementCatalogResource" +"POST","/identityGovernance/entitlementManagement/catalogs/{param}/resources/{param}/scopes","suppress",,"New-MgIdentityGovernanceEntitlementManagementCatalogResourceScope","no oracle row for POST /identityGovernance/entitlementManagement/catalogs/{param}/resources/{param}/scopes and 'New-MgIdentityGovernanceEntitlementManagementCatalogResourceScope' unshipped" +"POST","/identityGovernance/entitlementManagement/catalogs/{param}/resources/{param}/scopes/{param}/resource/refresh","rename","EntitlementManagementCatalogResourceScopeResource","Invoke-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRefresh","Update-MgEntitlementManagementCatalogResourceScopeResource" +"POST","/identityGovernance/entitlementManagement/catalogs/{param}/resources/{param}/scopes/{param}/resource/roles","rename","EntitlementManagementCatalogResourceScopeResourceRole","New-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRole","New-MgEntitlementManagementCatalogResourceScopeResourceRole" +"POST","/identityGovernance/entitlementManagement/catalogs/{param}/resources/{param}/scopes/{param}/resource/roles/{param}/resource/refresh","rename","EntitlementManagementCatalogResourceScopeResourceRoleResource","Invoke-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResourceRefresh","Update-MgEntitlementManagementCatalogResourceScopeResourceRoleResource" +"POST","/identityGovernance/entitlementManagement/catalogs/{param}/resourceScopes/{param}/resource/roles/{param}/resource/scopes","rename","EntitlementManagementCatalogResourceScopeResourceRoleResourceScope","New-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResourceScope","New-MgEntitlementManagementCatalogResourceScopeResourceRoleResourceScope" +"POST","/identityGovernance/entitlementManagement/catalogs/{param}/resourceScopes/{param}/resource/scopes","suppress",,"New-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceScope","no oracle row for POST /identityGovernance/entitlementManagement/catalogs/{param}/resourceScopes/{param}/resource/scopes and 'New-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceScope' unshipped" +"POST","/identityGovernance/entitlementManagement/connectedOrganizations","rename","EntitlementManagementConnectedOrganization","New-MgIdentityGovernanceEntitlementManagementConnectedOrganization","New-MgEntitlementManagementConnectedOrganization" +"POST","/identityGovernance/entitlementManagement/connectedOrganizations/{param}/externalSponsors/$ref","rename","EntitlementManagementConnectedOrganizationExternalSponsorByRef","New-MgIdentityGovernanceEntitlementManagementConnectedOrganizationExternalSponsorByRef","New-MgEntitlementManagementConnectedOrganizationExternalSponsorByRef" +"POST","/identityGovernance/entitlementManagement/connectedOrganizations/{param}/internalSponsors/$ref","rename","EntitlementManagementConnectedOrganizationInternalSponsorByRef","New-MgIdentityGovernanceEntitlementManagementConnectedOrganizationInternalSponsorByRef","New-MgEntitlementManagementConnectedOrganizationInternalSponsorByRef" +"POST","/identityGovernance/entitlementManagement/controlConfigurations","rename","EntitlementManagementControlConfiguration","New-MgIdentityGovernanceEntitlementManagementControlConfiguration","New-MgEntitlementManagementControlConfiguration" +"POST","/identityGovernance/entitlementManagement/resourceEnvironments","rename","EntitlementManagementResourceEnvironment","New-MgIdentityGovernanceEntitlementManagementResourceEnvironment","New-MgEntitlementManagementResourceEnvironment" +"POST","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources","rename","EntitlementManagementResourceEnvironmentResource","New-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResource","New-MgEntitlementManagementResourceEnvironmentResource" +"POST","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/refresh","rename","EntitlementManagementResourceEnvironmentResource","Invoke-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRefresh","Update-MgEntitlementManagementResourceEnvironmentResource" +"POST","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/roles","rename","EntitlementManagementResourceEnvironmentResourceRole","New-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRole","New-MgEntitlementManagementResourceEnvironmentResourceRole" +"POST","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/roles/{param}/resource/refresh","rename","EntitlementManagementResourceEnvironmentResourceRoleResource","Invoke-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResourceRefresh","Update-MgEntitlementManagementResourceEnvironmentResourceRoleResource" +"POST","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/roles/{param}/resource/scopes","rename","EntitlementManagementResourceEnvironmentResourceRoleResourceScope","New-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResourceScope","New-MgEntitlementManagementResourceEnvironmentResourceRoleResourceScope" +"POST","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/roles/{param}/resource/scopes/{param}/resource/refresh","rename","EntitlementManagementResourceEnvironmentResourceRoleResourceScopeResource","Invoke-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResourceScopeResourceRefresh","Update-MgEntitlementManagementResourceEnvironmentResourceRoleResourceScopeResource" +"POST","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/scopes","rename","EntitlementManagementResourceEnvironmentResourceScope","New-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScope","New-MgEntitlementManagementResourceEnvironmentResourceScope" +"POST","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/scopes/{param}/resource/refresh","rename","EntitlementManagementResourceEnvironmentResourceScopeResource","Invoke-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResourceRefresh","Update-MgEntitlementManagementResourceEnvironmentResourceScopeResource" +"POST","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/scopes/{param}/resource/roles","rename","EntitlementManagementResourceEnvironmentResourceScopeResourceRole","New-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResourceRole","New-MgEntitlementManagementResourceEnvironmentResourceScopeResourceRole" +"POST","/identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/scopes/{param}/resource/roles/{param}/resource/refresh","rename","EntitlementManagementResourceEnvironmentResourceScopeResourceRoleResource","Invoke-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResourceRoleResourceRefresh","Update-MgEntitlementManagementResourceEnvironmentResourceScopeResourceRoleResource" +"POST","/identityGovernance/entitlementManagement/resourceRequests","rename","EntitlementManagementResourceRequest","New-MgIdentityGovernanceEntitlementManagementResourceRequest","New-MgEntitlementManagementResourceRequest" +"POST","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/customWorkflowExtensions","rename","EntitlementManagementResourceRequestCatalogCustomWorkflowExtension","New-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogCustomWorkflowExtension","New-MgEntitlementManagementResourceRequestCatalogCustomWorkflowExtension" +"POST","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceRoles","rename","EntitlementManagementResourceRequestCatalogResourceRole","New-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRole","New-MgEntitlementManagementResourceRequestCatalogResourceRole" +"POST","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceRoles/{param}/resource/refresh","rename","EntitlementManagementResourceRequestCatalogResourceRoleResource","Invoke-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceRefresh","Update-MgEntitlementManagementResourceRequestCatalogResourceRoleResource" +"POST","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceRoles/{param}/resource/roles","suppress",,"New-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceRole","no oracle row for POST /identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceRoles/{param}/resource/roles and 'New-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceRole' unshipped" +"POST","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceRoles/{param}/resource/scopes","rename","EntitlementManagementResourceRequestCatalogResourceRoleResourceScope","New-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScope","New-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScope" +"POST","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceRoles/{param}/resource/scopes/{param}/resource/refresh","rename","EntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResource","Invoke-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRefresh","Update-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResource" +"POST","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceRoles/{param}/resource/scopes/{param}/resource/roles","rename","EntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRole","New-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRole","New-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRole" +"POST","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resources","rename","EntitlementManagementResourceRequestCatalogResource","New-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResource","New-MgEntitlementManagementResourceRequestCatalogResource" +"POST","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resources/{param}/refresh","rename","EntitlementManagementResourceRequestCatalogResource","Invoke-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRefresh","Update-MgEntitlementManagementResourceRequestCatalogResource" +"POST","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resources/{param}/scopes","suppress",,"New-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScope","no oracle row for POST /identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resources/{param}/scopes and 'New-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScope' unshipped" +"POST","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resources/{param}/scopes/{param}/resource/refresh","rename","EntitlementManagementResourceRequestCatalogResourceScopeResource","Invoke-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRefresh","Update-MgEntitlementManagementResourceRequestCatalogResourceScopeResource" +"POST","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resources/{param}/scopes/{param}/resource/roles","rename","EntitlementManagementResourceRequestCatalogResourceScopeResourceRole","New-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRole","New-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRole" +"POST","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resources/{param}/scopes/{param}/resource/roles/{param}/resource/refresh","rename","EntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResource","Invoke-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceRefresh","Update-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResource" +"POST","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceScopes/{param}/resource/roles/{param}/resource/scopes","rename","EntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceScope","New-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceScope","New-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceScope" +"POST","/identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceScopes/{param}/resource/scopes","suppress",,"New-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceScope","no oracle row for POST /identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceScopes/{param}/resource/scopes and 'New-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceScope' unshipped" +"POST","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/refresh","rename","EntitlementManagementResourceRequestResource","Invoke-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRefresh","Update-MgEntitlementManagementResourceRequestResource" +"POST","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/roles","rename","EntitlementManagementResourceRequestResourceRole","New-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRole","New-MgEntitlementManagementResourceRequestResourceRole" +"POST","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/roles/{param}/resource/refresh","rename","EntitlementManagementResourceRequestResourceRoleResource","Invoke-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResourceRefresh","Update-MgEntitlementManagementResourceRequestResourceRoleResource" +"POST","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/roles/{param}/resource/scopes","rename","EntitlementManagementResourceRequestResourceRoleResourceScope","New-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResourceScope","New-MgEntitlementManagementResourceRequestResourceRoleResourceScope" +"POST","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/roles/{param}/resource/scopes/{param}/resource/refresh","rename","EntitlementManagementResourceRequestResourceRoleResourceScopeResource","Invoke-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResourceScopeResourceRefresh","Update-MgEntitlementManagementResourceRequestResourceRoleResourceScopeResource" +"POST","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/scopes","rename","EntitlementManagementResourceRequestResourceScope","New-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScope","New-MgEntitlementManagementResourceRequestResourceScope" +"POST","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/scopes/{param}/resource/refresh","rename","EntitlementManagementResourceRequestResourceScopeResource","Invoke-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResourceRefresh","Update-MgEntitlementManagementResourceRequestResourceScopeResource" +"POST","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/scopes/{param}/resource/roles","rename","EntitlementManagementResourceRequestResourceScopeResourceRole","New-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResourceRole","New-MgEntitlementManagementResourceRequestResourceScopeResourceRole" +"POST","/identityGovernance/entitlementManagement/resourceRequests/{param}/resource/scopes/{param}/resource/roles/{param}/resource/refresh","rename","EntitlementManagementResourceRequestResourceScopeResourceRoleResource","Invoke-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResourceRoleResourceRefresh","Update-MgEntitlementManagementResourceRequestResourceScopeResourceRoleResource" +"POST","/identityGovernance/entitlementManagement/resourceRoleScopes","rename","EntitlementManagementResourceRoleScope","New-MgIdentityGovernanceEntitlementManagementResourceRoleScope","New-MgEntitlementManagementResourceRoleScope" +"POST","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/role/resource/refresh","rename","EntitlementManagementResourceRoleScopeRoleResource","Invoke-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceRefresh","Update-MgEntitlementManagementResourceRoleScopeRoleResource" +"POST","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/role/resource/roles","rename","EntitlementManagementResourceRoleScopeRoleResourceRole","New-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceRole","New-MgEntitlementManagementResourceRoleScopeRoleResourceRole" +"POST","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/role/resource/scopes","rename","EntitlementManagementResourceRoleScopeRoleResourceScope","New-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScope","New-MgEntitlementManagementResourceRoleScopeRoleResourceScope" +"POST","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/role/resource/scopes/{param}/resource/refresh","rename","EntitlementManagementResourceRoleScopeRoleResourceScopeResource","Invoke-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScopeResourceRefresh","Update-MgEntitlementManagementResourceRoleScopeRoleResourceScopeResource" +"POST","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/role/resource/scopes/{param}/resource/roles","rename","EntitlementManagementResourceRoleScopeRoleResourceScopeResourceRole","New-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScopeResourceRole","New-MgEntitlementManagementResourceRoleScopeRoleResourceScopeResourceRole" +"POST","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/scope/resource/refresh","rename","EntitlementManagementResourceRoleScopeResource","Invoke-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRefresh","Update-MgEntitlementManagementResourceRoleScopeResource" +"POST","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/scope/resource/roles","rename","EntitlementManagementResourceRoleScopeResourceRole","New-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRole","New-MgEntitlementManagementResourceRoleScopeResourceRole" +"POST","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/scope/resource/roles/{param}/resource/refresh","rename","EntitlementManagementResourceRoleScopeResourceRoleResource","Invoke-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRoleResourceRefresh","Update-MgEntitlementManagementResourceRoleScopeResourceRoleResource" +"POST","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/scope/resource/roles/{param}/resource/scopes","rename","EntitlementManagementResourceRoleScopeResourceRoleResourceScope","New-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRoleResourceScope","New-MgEntitlementManagementResourceRoleScopeResourceRoleResourceScope" +"POST","/identityGovernance/entitlementManagement/resourceRoleScopes/{param}/scope/resource/scopes","rename","EntitlementManagementResourceRoleScopeResourceScope","New-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceScope","New-MgEntitlementManagementResourceRoleScopeResourceScope" +"POST","/identityGovernance/entitlementManagement/resources","rename","EntitlementManagementResource","New-MgIdentityGovernanceEntitlementManagementResource","New-MgEntitlementManagementResource" +"POST","/identityGovernance/entitlementManagement/resources/{param}/refresh","rename","EntitlementManagementResource","Invoke-MgIdentityGovernanceEntitlementManagementResourceRefresh","Update-MgEntitlementManagementResource" +"POST","/identityGovernance/entitlementManagement/resources/{param}/roles","rename","EntitlementManagementResourceRole","New-MgIdentityGovernanceEntitlementManagementResourceRole","New-MgEntitlementManagementResourceRole" +"POST","/identityGovernance/entitlementManagement/resources/{param}/roles/{param}/resource/refresh","rename","EntitlementManagementResourceRoleResource","Invoke-MgIdentityGovernanceEntitlementManagementResourceRoleResourceRefresh","Update-MgEntitlementManagementResourceRoleResource" +"POST","/identityGovernance/entitlementManagement/resources/{param}/roles/{param}/resource/scopes","rename","EntitlementManagementResourceRoleResourceScope","New-MgIdentityGovernanceEntitlementManagementResourceRoleResourceScope","New-MgEntitlementManagementResourceRoleResourceScope" +"POST","/identityGovernance/entitlementManagement/resources/{param}/roles/{param}/resource/scopes/{param}/resource/refresh","rename","EntitlementManagementResourceRoleResourceScopeResource","Invoke-MgIdentityGovernanceEntitlementManagementResourceRoleResourceScopeResourceRefresh","Update-MgEntitlementManagementResourceRoleResourceScopeResource" +"POST","/identityGovernance/entitlementManagement/resources/{param}/scopes","rename","EntitlementManagementResourceScope","New-MgIdentityGovernanceEntitlementManagementResourceScope","New-MgEntitlementManagementResourceScope" +"POST","/identityGovernance/entitlementManagement/resources/{param}/scopes/{param}/resource/refresh","rename","EntitlementManagementResourceScopeResource","Invoke-MgIdentityGovernanceEntitlementManagementResourceScopeResourceRefresh","Update-MgEntitlementManagementResourceScopeResource" +"POST","/identityGovernance/entitlementManagement/resources/{param}/scopes/{param}/resource/roles","rename","EntitlementManagementResourceScopeResourceRole","New-MgIdentityGovernanceEntitlementManagementResourceScopeResourceRole","New-MgEntitlementManagementResourceScopeResourceRole" +"POST","/identityGovernance/entitlementManagement/resources/{param}/scopes/{param}/resource/roles/{param}/resource/refresh","rename","EntitlementManagementResourceScopeResourceRoleResource","Invoke-MgIdentityGovernanceEntitlementManagementResourceScopeResourceRoleResourceRefresh","Update-MgEntitlementManagementResourceScopeResourceRoleResource" +"POST","/identityGovernance/entitlementManagement/subjects","rename","EntitlementManagementSubject","New-MgIdentityGovernanceEntitlementManagementSubject","New-MgEntitlementManagementSubject" +"POST","/identityGovernance/lifecycleWorkflows/customTaskExtensions","keep",,"New-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtension","New-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtension" +"POST","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/tasks","keep",,"New-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTask","New-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTask" +"POST","/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/tasks","suppress",,"New-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTask","no oracle row for POST /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/tasks and 'New-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTask' unshipped" +"POST","/identityGovernance/lifecycleWorkflows/workflows","keep",,"New-MgIdentityGovernanceLifecycleWorkflow","New-MgIdentityGovernanceLifecycleWorkflow" +"POST","/identityGovernance/lifecycleWorkflows/workflows/{param}/tasks","keep",,"New-MgIdentityGovernanceLifecycleWorkflowTask","New-MgIdentityGovernanceLifecycleWorkflowTask" +"POST","/identityGovernance/lifecycleWorkflows/workflows/{param}/versions/{param}/tasks","keep",,"New-MgIdentityGovernanceLifecycleWorkflowVersionTask","New-MgIdentityGovernanceLifecycleWorkflowVersionTask" +"POST","/identityGovernance/privilegedAccess/group/assignmentApprovals","keep",,"New-MgIdentityGovernancePrivilegedAccessGroupAssignmentApproval","New-MgIdentityGovernancePrivilegedAccessGroupAssignmentApproval" +"POST","/identityGovernance/privilegedAccess/group/assignmentApprovals/{param}/stages","keep",,"New-MgIdentityGovernancePrivilegedAccessGroupAssignmentApprovalStage","New-MgIdentityGovernancePrivilegedAccessGroupAssignmentApprovalStage" +"POST","/identityGovernance/privilegedAccess/group/assignmentScheduleInstances","keep",,"New-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstance","New-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstance" +"POST","/identityGovernance/privilegedAccess/group/assignmentScheduleRequests","keep",,"New-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequest","New-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequest" +"POST","/identityGovernance/privilegedAccess/group/assignmentScheduleRequests/{param}/cancel","rename","IdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequest","Invoke-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestCancel","Stop-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequest" +"POST","/identityGovernance/privilegedAccess/group/assignmentSchedules","keep",,"New-MgIdentityGovernancePrivilegedAccessGroupAssignmentSchedule","New-MgIdentityGovernancePrivilegedAccessGroupAssignmentSchedule" +"POST","/identityGovernance/privilegedAccess/group/eligibilityScheduleInstances","keep",,"New-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstance","New-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstance" +"POST","/identityGovernance/privilegedAccess/group/eligibilityScheduleRequests","keep",,"New-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequest","New-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequest" +"POST","/identityGovernance/privilegedAccess/group/eligibilityScheduleRequests/{param}/cancel","rename","IdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequest","Invoke-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequestCancel","Stop-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequest" +"POST","/identityGovernance/privilegedAccess/group/eligibilitySchedules","keep",,"New-MgIdentityGovernancePrivilegedAccessGroupEligibilitySchedule","New-MgIdentityGovernancePrivilegedAccessGroupEligibilitySchedule" +"POST","/identityGovernance/termsOfUse/agreementAcceptances","rename","IdentityGovernanceTermsOfUseAgreementAcceptance","New-MgIdentityGovernanceTermOfUseAgreementAcceptance","New-MgIdentityGovernanceTermsOfUseAgreementAcceptance" +"POST","/identityGovernance/termsOfUse/agreements","rename","IdentityGovernanceTermsOfUseAgreement","New-MgIdentityGovernanceTermOfUseAgreement","New-MgIdentityGovernanceTermsOfUseAgreement" +"POST","/identityGovernance/termsOfUse/agreements/{param}/file/localizations","rename","IdentityGovernanceTermsOfUseAgreementFileLocalization","New-MgIdentityGovernanceTermOfUseAgreementFileLocalization","New-MgIdentityGovernanceTermsOfUseAgreementFileLocalization" +"POST","/identityGovernance/termsOfUse/agreements/{param}/file/localizations/{param}/versions","rename","IdentityGovernanceTermsOfUseAgreementFileLocalizationVersion","New-MgIdentityGovernanceTermOfUseAgreementFileLocalizationVersion","New-MgIdentityGovernanceTermsOfUseAgreementFileLocalizationVersion" +"POST","/identityGovernance/termsOfUse/agreements/{param}/files","rename","IdentityGovernanceTermsOfUseAgreementFile","New-MgIdentityGovernanceTermOfUseAgreementFile","New-MgIdentityGovernanceTermsOfUseAgreementFile" +"POST","/identityGovernance/termsOfUse/agreements/{param}/files/{param}/versions","rename","IdentityGovernanceTermsOfUseAgreementFileVersion","New-MgIdentityGovernanceTermOfUseAgreementFileVersion","New-MgIdentityGovernanceTermsOfUseAgreementFileVersion" +"POST","/identityProtection/riskDetections","rename","RiskDetection","New-MgIdentityProtectionRiskDetection","New-MgRiskDetection" +"POST","/identityProtection/riskyServicePrincipals","rename","RiskyServicePrincipal","New-MgIdentityProtectionRiskyServicePrincipal","New-MgRiskyServicePrincipal" +"POST","/identityProtection/riskyServicePrincipals/{param}/history","rename","RiskyServicePrincipalHistory","New-MgIdentityProtectionRiskyServicePrincipalHistory","New-MgRiskyServicePrincipalHistory" +"POST","/identityProtection/riskyServicePrincipals/confirmCompromised","rename","RiskyServicePrincipalCompromised","Invoke-MgIdentityProtectionRiskyServicePrincipalConfirmCompromised","Confirm-MgRiskyServicePrincipalCompromised" +"POST","/identityProtection/riskyServicePrincipals/dismiss","rename","DismissRiskyServicePrincipal","Invoke-MgIdentityProtectionRiskyServicePrincipalDismiss","Invoke-MgDismissRiskyServicePrincipal" +"POST","/identityProtection/riskyUsers","rename","RiskyUser","New-MgIdentityProtectionRiskyUser","New-MgRiskyUser" +"POST","/identityProtection/riskyUsers/{param}/history","rename","RiskyUserHistory","New-MgIdentityProtectionRiskyUserHistory","New-MgRiskyUserHistory" +"POST","/identityProtection/riskyUsers/confirmCompromised","rename","RiskyUserCompromised","Invoke-MgIdentityProtectionRiskyUserConfirmCompromised","Confirm-MgRiskyUserCompromised" +"POST","/identityProtection/riskyUsers/confirmSafe","rename","RiskyUserSafe","Invoke-MgIdentityProtectionRiskyUserConfirmSafe","Confirm-MgRiskyUserSafe" +"POST","/identityProtection/riskyUsers/dismiss","rename","DismissRiskyUser","Invoke-MgIdentityProtectionRiskyUserDismiss","Invoke-MgDismissRiskyUser" +"POST","/identityProtection/servicePrincipalRiskDetections","rename","ServicePrincipalRiskDetection","New-MgIdentityProtectionServicePrincipalRiskDetection","New-MgServicePrincipalRiskDetection" +"POST","/informationProtection/threatAssessmentRequests","keep",,"New-MgInformationProtectionThreatAssessmentRequest","New-MgInformationProtectionThreatAssessmentRequest" +"POST","/informationProtection/threatAssessmentRequests/{param}/results","keep",,"New-MgInformationProtectionThreatAssessmentRequestResult","New-MgInformationProtectionThreatAssessmentRequestResult" +"POST","/invitations","keep",,"New-MgInvitation","New-MgInvitation" +"POST","/oauth2PermissionGrants","keep",,"New-MgOauth2PermissionGrant","New-MgOauth2PermissionGrant" +"POST","/organization","keep",,"New-MgOrganization","New-MgOrganization" +"POST","/organization/{param}/branding/localizations","keep",,"New-MgOrganizationBrandingLocalization","New-MgOrganizationBrandingLocalization" +"POST","/organization/{param}/certificateBasedAuthConfiguration","keep",,"New-MgOrganizationCertificateBasedAuthConfiguration","New-MgOrganizationCertificateBasedAuthConfiguration" +"POST","/organization/{param}/checkMemberGroups","rename","OrganizationMemberGroup","Invoke-MgOrganizationCheckMemberGroups","Confirm-MgOrganizationMemberGroup" +"POST","/organization/{param}/checkMemberObjects","rename","OrganizationMemberObject","Invoke-MgOrganizationCheckMemberObjects","Confirm-MgOrganizationMemberObject" +"POST","/organization/{param}/extensions","keep",,"New-MgOrganizationExtension","New-MgOrganizationExtension" +"POST","/organization/{param}/getMemberGroups","rename","OrganizationMemberGroup","Invoke-MgOrganizationGetMemberGroups","Get-MgOrganizationMemberGroup" +"POST","/organization/{param}/getMemberObjects","rename","OrganizationMemberObject","Invoke-MgOrganizationGetMemberObjects","Get-MgOrganizationMemberObject" +"POST","/organization/{param}/restore","suppress",,"Invoke-MgOrganizationRestore","no oracle row for POST /organization/{param}/restore and 'Invoke-MgOrganizationRestore' unshipped" +"POST","/organization/{param}/setMobileDeviceManagementAuthority","rename","OrganizationMobileDeviceManagementAuthority","Invoke-MgOrganizationSetMobileDeviceManagementAuthority","Set-MgOrganizationMobileDeviceManagementAuthority" +"POST","/organization/getAvailableExtensionProperties","suppress",,"Invoke-MgOrganizationGetAvailableExtensionProperties","no oracle row for POST /organization/getAvailableExtensionProperties and 'Invoke-MgOrganizationGetAvailableExtensionProperties' unshipped" +"POST","/organization/getByIds","rename","OrganizationById","Invoke-MgOrganizationGetByIds","Get-MgOrganizationById" +"POST","/organization/validateProperties","rename","OrganizationProperty","Invoke-MgOrganizationValidateProperties","Test-MgOrganizationProperty" +"POST","/places","keep",,"New-MgPlace","New-MgPlace" +"POST","/places/{param}/checkIns","keep",,"New-MgPlaceCheckIn","deliberate correction; oracle ships New-MgPlaceCheck" +"POST","/planner/buckets","keep",,"New-MgPlannerBucket","New-MgPlannerBucket" +"POST","/planner/buckets/{param}/tasks","suppress",,"New-MgPlannerBucketTask","no oracle row for POST /planner/buckets/{param}/tasks and 'New-MgPlannerBucketTask' unshipped" +"POST","/planner/plans","keep",,"New-MgPlannerPlan","New-MgPlannerPlan" +"POST","/planner/plans/{param}/buckets","suppress",,"New-MgPlannerPlanBucket","no oracle row for POST /planner/plans/{param}/buckets and 'New-MgPlannerPlanBucket' unshipped" +"POST","/planner/plans/{param}/buckets/{param}/tasks","suppress",,"New-MgPlannerPlanBucketTask","no oracle row for POST /planner/plans/{param}/buckets/{param}/tasks and 'New-MgPlannerPlanBucketTask' unshipped" +"POST","/planner/plans/{param}/tasks","suppress",,"New-MgPlannerPlanTask","no oracle row for POST /planner/plans/{param}/tasks and 'New-MgPlannerPlanTask' unshipped" +"POST","/planner/tasks","keep",,"New-MgPlannerTask","New-MgPlannerTask" +"POST","/policies/activityBasedTimeoutPolicies","keep",,"New-MgPolicyActivityBasedTimeoutPolicy","New-MgPolicyActivityBasedTimeoutPolicy" +"POST","/policies/appManagementPolicies","keep",,"New-MgPolicyAppManagementPolicy","New-MgPolicyAppManagementPolicy" +"POST","/policies/authenticationMethodsPolicy/authenticationMethodConfigurations","keep",,"New-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration","New-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration" +"POST","/policies/authenticationStrengthPolicies","keep",,"New-MgPolicyAuthenticationStrengthPolicy","New-MgPolicyAuthenticationStrengthPolicy" +"POST","/policies/authenticationStrengthPolicies/{param}/combinationConfigurations","keep",,"New-MgPolicyAuthenticationStrengthPolicyCombinationConfiguration","New-MgPolicyAuthenticationStrengthPolicyCombinationConfiguration" +"POST","/policies/authenticationStrengthPolicies/{param}/updateAllowedCombinations","rename","PolicyAuthenticationStrengthPolicyAllowedCombination","Invoke-MgPolicyAuthenticationStrengthPolicyUpdateAllowedCombinations","Update-MgPolicyAuthenticationStrengthPolicyAllowedCombination" +"POST","/policies/claimsMappingPolicies","keep",,"New-MgPolicyClaimMappingPolicy","New-MgPolicyClaimMappingPolicy" +"POST","/policies/conditionalAccessPolicies","suppress",,"New-MgPolicyConditionalAccessPolicy","no oracle row for POST /policies/conditionalAccessPolicies and 'New-MgPolicyConditionalAccessPolicy' unshipped" +"POST","/policies/conditionalAccessPolicies/{param}/restore","rename","PolicyConditionalAccessPolicy","Invoke-MgPolicyConditionalAccessPolicyRestore","Restore-MgPolicyConditionalAccessPolicy" +"POST","/policies/crossTenantAccessPolicy/default/resetToSystemDefault","rename","PolicyCrossTenantAccessPolicyDefaultToSystemDefault","Invoke-MgPolicyCrossTenantAccessPolicyDefaultResetToSystemDefault","Reset-MgPolicyCrossTenantAccessPolicyDefaultToSystemDefault" +"POST","/policies/crossTenantAccessPolicy/partners","keep",,"New-MgPolicyCrossTenantAccessPolicyPartner","New-MgPolicyCrossTenantAccessPolicyPartner" +"POST","/policies/featureRolloutPolicies","keep",,"New-MgPolicyFeatureRolloutPolicy","New-MgPolicyFeatureRolloutPolicy" +"POST","/policies/featureRolloutPolicies/{param}/appliesTo","keep",,"New-MgPolicyFeatureRolloutPolicyApplyTo","New-MgPolicyFeatureRolloutPolicyApplyTo" +"POST","/policies/featureRolloutPolicies/{param}/appliesTo/$ref","keep",,"New-MgPolicyFeatureRolloutPolicyApplyToByRef","New-MgPolicyFeatureRolloutPolicyApplyToByRef" +"POST","/policies/homeRealmDiscoveryPolicies","keep",,"New-MgPolicyHomeRealmDiscoveryPolicy","New-MgPolicyHomeRealmDiscoveryPolicy" +"POST","/policies/permissionGrantPolicies","keep",,"New-MgPolicyPermissionGrantPolicy","New-MgPolicyPermissionGrantPolicy" +"POST","/policies/permissionGrantPolicies/{param}/excludes","keep",,"New-MgPolicyPermissionGrantPolicyExclude","New-MgPolicyPermissionGrantPolicyExclude" +"POST","/policies/permissionGrantPolicies/{param}/includes","keep",,"New-MgPolicyPermissionGrantPolicyInclude","New-MgPolicyPermissionGrantPolicyInclude" +"POST","/policies/roleManagementPolicies","keep",,"New-MgPolicyRoleManagementPolicy","New-MgPolicyRoleManagementPolicy" +"POST","/policies/roleManagementPolicies/{param}/effectiveRules","keep",,"New-MgPolicyRoleManagementPolicyEffectiveRule","New-MgPolicyRoleManagementPolicyEffectiveRule" +"POST","/policies/roleManagementPolicies/{param}/rules","keep",,"New-MgPolicyRoleManagementPolicyRule","New-MgPolicyRoleManagementPolicyRule" +"POST","/policies/roleManagementPolicyAssignments","keep",,"New-MgPolicyRoleManagementPolicyAssignment","New-MgPolicyRoleManagementPolicyAssignment" +"POST","/policies/tokenIssuancePolicies","keep",,"New-MgPolicyTokenIssuancePolicy","New-MgPolicyTokenIssuancePolicy" +"POST","/policies/tokenLifetimePolicies","keep",,"New-MgPolicyTokenLifetimePolicy","New-MgPolicyTokenLifetimePolicy" +"POST","/print/connectors","keep",,"New-MgPrintConnector","New-MgPrintConnector" +"POST","/print/operations","keep",,"New-MgPrintOperation","New-MgPrintOperation" +"POST","/print/printers","suppress",,"New-MgPrinter","no oracle row for POST /print/printers and 'New-MgPrinter' unshipped" +"POST","/print/printers/{param}/jobs","rename","PrintPrinterJob","New-MgPrinterJob","New-MgPrintPrinterJob" +"POST","/print/printers/{param}/jobs/{param}/abort","rename","AbortPrintPrinterJob","Invoke-MgPrinterJobAbort","Invoke-MgAbortPrintPrinterJob" +"POST","/print/printers/{param}/jobs/{param}/cancel","rename","PrintPrinterJob","Invoke-MgPrinterJobCancel","Stop-MgPrintPrinterJob" +"POST","/print/printers/{param}/jobs/{param}/documents","rename","PrintPrinterJobDocument","New-MgPrinterJobDocument","New-MgPrintPrinterJobDocument" +"POST","/print/printers/{param}/jobs/{param}/documents/{param}/createUploadSession","rename","PrintPrinterJobDocumentUploadSession","Invoke-MgPrinterJobDocumentCreateUploadSession","New-MgPrintPrinterJobDocumentUploadSession" +"POST","/print/printers/{param}/jobs/{param}/redirect","rename","RedirectPrintPrinterJob","Invoke-MgPrinterJobRedirect","Invoke-MgRedirectPrintPrinterJob" +"POST","/print/printers/{param}/jobs/{param}/start","rename","PrintPrinterJob","Invoke-MgPrinterJobStart","Start-MgPrintPrinterJob" +"POST","/print/printers/{param}/jobs/{param}/tasks","rename","PrintPrinterJobTask","New-MgPrinterJobTask","New-MgPrintPrinterJobTask" +"POST","/print/printers/{param}/restoreFactoryDefaults","rename","PrintPrinterFactoryDefault","Invoke-MgPrinterRestoreFactoryDefaults","Restore-MgPrintPrinterFactoryDefault" +"POST","/print/printers/{param}/taskTriggers","rename","PrintPrinterTaskTrigger","New-MgPrinterTaskTrigger","New-MgPrintPrinterTaskTrigger" +"POST","/print/printers/create","rename","PrintPrinter","Invoke-MgPrinterCreate","New-MgPrintPrinter" +"POST","/print/services","keep",,"New-MgPrintService","New-MgPrintService" +"POST","/print/services/{param}/endpoints","keep",,"New-MgPrintServiceEndpoint","New-MgPrintServiceEndpoint" +"POST","/print/shares","keep",,"New-MgPrintShare","New-MgPrintShare" +"POST","/print/shares/{param}/allowedGroups/$ref","keep",,"New-MgPrintShareAllowedGroupByRef","New-MgPrintShareAllowedGroupByRef" +"POST","/print/shares/{param}/allowedUsers/$ref","keep",,"New-MgPrintShareAllowedUserByRef","New-MgPrintShareAllowedUserByRef" +"POST","/print/shares/{param}/jobs","keep",,"New-MgPrintShareJob","New-MgPrintShareJob" +"POST","/print/shares/{param}/jobs/{param}/abort","rename","AbortPrintShareJob","Invoke-MgPrintShareJobAbort","Invoke-MgAbortPrintShareJob" +"POST","/print/shares/{param}/jobs/{param}/cancel","rename","PrintShareJob","Invoke-MgPrintShareJobCancel","Stop-MgPrintShareJob" +"POST","/print/shares/{param}/jobs/{param}/documents","keep",,"New-MgPrintShareJobDocument","New-MgPrintShareJobDocument" +"POST","/print/shares/{param}/jobs/{param}/documents/{param}/createUploadSession","rename","PrintShareJobDocumentUploadSession","Invoke-MgPrintShareJobDocumentCreateUploadSession","New-MgPrintShareJobDocumentUploadSession" +"POST","/print/shares/{param}/jobs/{param}/redirect","rename","RedirectPrintShareJob","Invoke-MgPrintShareJobRedirect","Invoke-MgRedirectPrintShareJob" +"POST","/print/shares/{param}/jobs/{param}/start","rename","PrintShareJob","Invoke-MgPrintShareJobStart","Start-MgPrintShareJob" +"POST","/print/shares/{param}/jobs/{param}/tasks","keep",,"New-MgPrintShareJobTask","New-MgPrintShareJobTask" +"POST","/print/taskDefinitions","keep",,"New-MgPrintTaskDefinition","New-MgPrintTaskDefinition" +"POST","/print/taskDefinitions/{param}/tasks","keep",,"New-MgPrintTaskDefinitionTask","New-MgPrintTaskDefinitionTask" +"POST","/privacy/subjectRightsRequests","keep",,"New-MgPrivacySubjectRightsRequest","New-MgPrivacySubjectRightsRequest" +"POST","/privacy/subjectRightsRequests/{param}/notes","keep",,"New-MgPrivacySubjectRightsRequestNote","New-MgPrivacySubjectRightsRequestNote" +"POST","/reports/authenticationMethods/userRegistrationDetails","keep",,"New-MgReportAuthenticationMethodUserRegistrationDetail","New-MgReportAuthenticationMethodUserRegistrationDetail" +"POST","/reports/dailyPrintUsageByPrinter","suppress",,"New-MgReportDailyPrintUsageByPrinter","no oracle row for POST /reports/dailyPrintUsageByPrinter and 'New-MgReportDailyPrintUsageByPrinter' unshipped" +"POST","/reports/dailyPrintUsageByUser","suppress",,"New-MgReportDailyPrintUsageByUser","no oracle row for POST /reports/dailyPrintUsageByUser and 'New-MgReportDailyPrintUsageByUser' unshipped" +"POST","/reports/monthlyPrintUsageByPrinter","suppress",,"New-MgReportMonthlyPrintUsageByPrinter","no oracle row for POST /reports/monthlyPrintUsageByPrinter and 'New-MgReportMonthlyPrintUsageByPrinter' unshipped" +"POST","/reports/monthlyPrintUsageByUser","suppress",,"New-MgReportMonthlyPrintUsageByUser","no oracle row for POST /reports/monthlyPrintUsageByUser and 'New-MgReportMonthlyPrintUsageByUser' unshipped" +"POST","/reports/partners/billing/manifests","keep",,"New-MgReportPartnerBillingManifest","New-MgReportPartnerBillingManifest" +"POST","/reports/partners/billing/operations","keep",,"New-MgReportPartnerBillingOperation","New-MgReportPartnerBillingOperation" +"POST","/roleManagement/directory/resourceNamespaces","keep",,"New-MgRoleManagementDirectoryResourceNamespace","New-MgRoleManagementDirectoryResourceNamespace" +"POST","/roleManagement/directory/resourceNamespaces/{param}/resourceActions","keep",,"New-MgRoleManagementDirectoryResourceNamespaceResourceAction","New-MgRoleManagementDirectoryResourceNamespaceResourceAction" +"POST","/roleManagement/directory/roleAssignments","keep",,"New-MgRoleManagementDirectoryRoleAssignment","New-MgRoleManagementDirectoryRoleAssignment" +"POST","/roleManagement/directory/roleAssignmentScheduleInstances","keep",,"New-MgRoleManagementDirectoryRoleAssignmentScheduleInstance","New-MgRoleManagementDirectoryRoleAssignmentScheduleInstance" +"POST","/roleManagement/directory/roleAssignmentScheduleRequests","keep",,"New-MgRoleManagementDirectoryRoleAssignmentScheduleRequest","New-MgRoleManagementDirectoryRoleAssignmentScheduleRequest" +"POST","/roleManagement/directory/roleAssignmentScheduleRequests/{param}/cancel","rename","RoleManagementDirectoryRoleAssignmentScheduleRequest","Invoke-MgRoleManagementDirectoryRoleAssignmentScheduleRequestCancel","Stop-MgRoleManagementDirectoryRoleAssignmentScheduleRequest" +"POST","/roleManagement/directory/roleAssignmentSchedules","keep",,"New-MgRoleManagementDirectoryRoleAssignmentSchedule","New-MgRoleManagementDirectoryRoleAssignmentSchedule" +"POST","/roleManagement/directory/roleDefinitions","keep",,"New-MgRoleManagementDirectoryRoleDefinition","New-MgRoleManagementDirectoryRoleDefinition" +"POST","/roleManagement/directory/roleDefinitions/{param}/inheritsPermissionsFrom","keep",,"New-MgRoleManagementDirectoryRoleDefinitionInheritPermissionFrom","New-MgRoleManagementDirectoryRoleDefinitionInheritPermissionFrom" +"POST","/roleManagement/directory/roleEligibilityScheduleInstances","keep",,"New-MgRoleManagementDirectoryRoleEligibilityScheduleInstance","New-MgRoleManagementDirectoryRoleEligibilityScheduleInstance" +"POST","/roleManagement/directory/roleEligibilityScheduleRequests","keep",,"New-MgRoleManagementDirectoryRoleEligibilityScheduleRequest","New-MgRoleManagementDirectoryRoleEligibilityScheduleRequest" +"POST","/roleManagement/directory/roleEligibilityScheduleRequests/{param}/cancel","rename","RoleManagementDirectoryRoleEligibilityScheduleRequest","Invoke-MgRoleManagementDirectoryRoleEligibilityScheduleRequestCancel","Stop-MgRoleManagementDirectoryRoleEligibilityScheduleRequest" +"POST","/roleManagement/directory/roleEligibilitySchedules","keep",,"New-MgRoleManagementDirectoryRoleEligibilitySchedule","New-MgRoleManagementDirectoryRoleEligibilitySchedule" +"POST","/roleManagement/entitlementManagement/resourceNamespaces","keep",,"New-MgRoleManagementEntitlementManagementResourceNamespace","New-MgRoleManagementEntitlementManagementResourceNamespace" +"POST","/roleManagement/entitlementManagement/resourceNamespaces/{param}/resourceActions","keep",,"New-MgRoleManagementEntitlementManagementResourceNamespaceResourceAction","New-MgRoleManagementEntitlementManagementResourceNamespaceResourceAction" +"POST","/roleManagement/entitlementManagement/roleAssignments","keep",,"New-MgRoleManagementEntitlementManagementRoleAssignment","New-MgRoleManagementEntitlementManagementRoleAssignment" +"POST","/roleManagement/entitlementManagement/roleAssignmentScheduleInstances","keep",,"New-MgRoleManagementEntitlementManagementRoleAssignmentScheduleInstance","New-MgRoleManagementEntitlementManagementRoleAssignmentScheduleInstance" +"POST","/roleManagement/entitlementManagement/roleAssignmentScheduleRequests","keep",,"New-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequest","New-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequest" +"POST","/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{param}/cancel","rename","RoleManagementEntitlementManagementRoleAssignmentScheduleRequest","Invoke-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestCancel","Stop-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequest" +"POST","/roleManagement/entitlementManagement/roleAssignmentSchedules","keep",,"New-MgRoleManagementEntitlementManagementRoleAssignmentSchedule","New-MgRoleManagementEntitlementManagementRoleAssignmentSchedule" +"POST","/roleManagement/entitlementManagement/roleDefinitions","keep",,"New-MgRoleManagementEntitlementManagementRoleDefinition","New-MgRoleManagementEntitlementManagementRoleDefinition" +"POST","/roleManagement/entitlementManagement/roleDefinitions/{param}/inheritsPermissionsFrom","keep",,"New-MgRoleManagementEntitlementManagementRoleDefinitionInheritPermissionFrom","New-MgRoleManagementEntitlementManagementRoleDefinitionInheritPermissionFrom" +"POST","/roleManagement/entitlementManagement/roleEligibilityScheduleInstances","keep",,"New-MgRoleManagementEntitlementManagementRoleEligibilityScheduleInstance","New-MgRoleManagementEntitlementManagementRoleEligibilityScheduleInstance" +"POST","/roleManagement/entitlementManagement/roleEligibilityScheduleRequests","keep",,"New-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequest","New-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequest" +"POST","/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{param}/cancel","rename","RoleManagementEntitlementManagementRoleEligibilityScheduleRequest","Invoke-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequestCancel","Stop-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequest" +"POST","/roleManagement/entitlementManagement/roleEligibilitySchedules","keep",,"New-MgRoleManagementEntitlementManagementRoleEligibilitySchedule","New-MgRoleManagementEntitlementManagementRoleEligibilitySchedule" +"POST","/schemaExtensions","keep",,"New-MgSchemaExtension","New-MgSchemaExtension" +"POST","/search/acronyms","keep",,"New-MgSearchAcronym","New-MgSearchAcronym" +"POST","/search/bookmarks","keep",,"New-MgSearchBookmark","New-MgSearchBookmark" +"POST","/search/qnas","keep",,"New-MgSearchQna","New-MgSearchQna" +"POST","/search/query","rename","QuerySearch","Invoke-MgSearchQuery","Invoke-MgQuerySearch" +"POST","/security/alerts","keep",,"New-MgSecurityAlert","New-MgSecurityAlert" +"POST","/security/attackSimulation/endUserNotifications","keep",,"New-MgSecurityAttackSimulationEndUserNotification","New-MgSecurityAttackSimulationEndUserNotification" +"POST","/security/attackSimulation/endUserNotifications/{param}/details","keep",,"New-MgSecurityAttackSimulationEndUserNotificationDetail","New-MgSecurityAttackSimulationEndUserNotificationDetail" +"POST","/security/attackSimulation/landingPages","keep",,"New-MgSecurityAttackSimulationLandingPage","New-MgSecurityAttackSimulationLandingPage" +"POST","/security/attackSimulation/landingPages/{param}/details","keep",,"New-MgSecurityAttackSimulationLandingPageDetail","New-MgSecurityAttackSimulationLandingPageDetail" +"POST","/security/attackSimulation/loginPages","keep",,"New-MgSecurityAttackSimulationLoginPage","New-MgSecurityAttackSimulationLoginPage" +"POST","/security/attackSimulation/operations","keep",,"New-MgSecurityAttackSimulationOperation","New-MgSecurityAttackSimulationOperation" +"POST","/security/attackSimulation/payloads","keep",,"New-MgSecurityAttackSimulationPayload","New-MgSecurityAttackSimulationPayload" +"POST","/security/attackSimulation/simulationAutomations","keep",,"New-MgSecurityAttackSimulationAutomation","New-MgSecurityAttackSimulationAutomation" +"POST","/security/attackSimulation/simulationAutomations/{param}/runs","keep",,"New-MgSecurityAttackSimulationAutomationRun","New-MgSecurityAttackSimulationAutomationRun" +"POST","/security/attackSimulation/simulations","keep",,"New-MgSecurityAttackSimulation","New-MgSecurityAttackSimulation" +"POST","/security/attackSimulation/trainings","keep",,"New-MgSecurityAttackSimulationTraining","New-MgSecurityAttackSimulationTraining" +"POST","/security/attackSimulation/trainings/{param}/languageDetails","keep",,"New-MgSecurityAttackSimulationTrainingLanguageDetail","New-MgSecurityAttackSimulationTrainingLanguageDetail" +"POST","/security/auditLog/queries","keep",,"New-MgSecurityAuditLogQuery","New-MgSecurityAuditLogQuery" +"POST","/security/cases/ediscoveryCases","keep",,"New-MgSecurityCaseEdiscoveryCase","New-MgSecurityCaseEdiscoveryCase" +"POST","/security/cases/ediscoveryCases/{param}/caseMembers","keep",,"New-MgSecurityCaseEdiscoveryCaseMember","New-MgSecurityCaseEdiscoveryCaseMember" +"POST","/security/cases/ediscoveryCases/{param}/custodians","keep",,"New-MgSecurityCaseEdiscoveryCaseCustodian","New-MgSecurityCaseEdiscoveryCaseCustodian" +"POST","/security/cases/ediscoveryCases/{param}/custodians/{param}/siteSources","keep",,"New-MgSecurityCaseEdiscoveryCaseCustodianSiteSource","New-MgSecurityCaseEdiscoveryCaseCustodianSiteSource" +"POST","/security/cases/ediscoveryCases/{param}/custodians/{param}/unifiedGroupSources","keep",,"New-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource","New-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource" +"POST","/security/cases/ediscoveryCases/{param}/custodians/{param}/userSources","keep",,"New-MgSecurityCaseEdiscoveryCaseCustodianUserSource","New-MgSecurityCaseEdiscoveryCaseCustodianUserSource" +"POST","/security/cases/ediscoveryCases/{param}/noncustodialDataSources","keep",,"New-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource","New-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource" +"POST","/security/cases/ediscoveryCases/{param}/operations","keep",,"New-MgSecurityCaseEdiscoveryCaseOperation","New-MgSecurityCaseEdiscoveryCaseOperation" +"POST","/security/cases/ediscoveryCases/{param}/reviewSets","keep",,"New-MgSecurityCaseEdiscoveryCaseReviewSet","New-MgSecurityCaseEdiscoveryCaseReviewSet" +"POST","/security/cases/ediscoveryCases/{param}/reviewSets/{param}/queries","keep",,"New-MgSecurityCaseEdiscoveryCaseReviewSetQuery","New-MgSecurityCaseEdiscoveryCaseReviewSetQuery" +"POST","/security/cases/ediscoveryCases/{param}/searches","keep",,"New-MgSecurityCaseEdiscoveryCaseSearch","New-MgSecurityCaseEdiscoveryCaseSearch" +"POST","/security/cases/ediscoveryCases/{param}/searches/{param}/additionalSources","keep",,"New-MgSecurityCaseEdiscoveryCaseSearchAdditionalSource","New-MgSecurityCaseEdiscoveryCaseSearchAdditionalSource" +"POST","/security/cases/ediscoveryCases/{param}/tags","keep",,"New-MgSecurityCaseEdiscoveryCaseTag","New-MgSecurityCaseEdiscoveryCaseTag" +"POST","/security/collaboration/analyzedEmails","keep",,"New-MgSecurityCollaborationAnalyzedEmail","New-MgSecurityCollaborationAnalyzedEmail" +"POST","/security/dataSecurityAndGovernance/processContentAsync","rename","ProcessSecurityDataSecurityAndGovernanceContentAsync","Invoke-MgSecurityDataSecurityAndGovernanceProcessContentAsync","Invoke-MgProcessSecurityDataSecurityAndGovernanceContentAsync" +"POST","/security/dataSecurityAndGovernance/protectionScopes/compute","rename","ComputeSecurityDataSecurityAndGovernanceProtectionScope","Invoke-MgSecurityDataSecurityAndGovernanceProtectionScopeCompute","Invoke-MgComputeSecurityDataSecurityAndGovernanceProtectionScope" +"POST","/security/dataSecurityAndGovernance/sensitivityLabels","keep",,"New-MgSecurityDataSecurityAndGovernanceSensitivityLabel","New-MgSecurityDataSecurityAndGovernanceSensitivityLabel" +"POST","/security/dataSecurityAndGovernance/sensitivityLabels/{param}/sublabels","keep",,"New-MgSecurityDataSecurityAndGovernanceSensitivityLabelSublabel","New-MgSecurityDataSecurityAndGovernanceSensitivityLabelSublabel" +"POST","/security/dataSecurityAndGovernance/sensitivityLabels/{param}/sublabels/computeRightsAndInheritance","rename","AndSecurityDataSecurityAndGovernanceSensitivityLabelSublabel","Invoke-MgSecurityDataSecurityAndGovernanceSensitivityLabelSublabelComputeRightsAndInheritance","Invoke-MgAndSecurityDataSecurityAndGovernanceSensitivityLabelSublabel" +"POST","/security/dataSecurityAndGovernance/sensitivityLabels/computeRightsAndInheritance","rename","AndSecurityDataSecurityAndGovernanceSensitivityLabel","Invoke-MgSecurityDataSecurityAndGovernanceSensitivityLabelComputeRightsAndInheritance","Invoke-MgAndSecurityDataSecurityAndGovernanceSensitivityLabel" +"POST","/security/identities/healthIssues","keep",,"New-MgSecurityIdentityHealthIssue","New-MgSecurityIdentityHealthIssue" +"POST","/security/identities/identityAccounts","keep",,"New-MgSecurityIdentityAccount","New-MgSecurityIdentityAccount" +"POST","/security/identities/sensorCandidates","keep",,"New-MgSecurityIdentitySensorCandidate","New-MgSecurityIdentitySensorCandidate" +"POST","/security/identities/sensors","keep",,"New-MgSecurityIdentitySensor","New-MgSecurityIdentitySensor" +"POST","/security/incidents","keep",,"New-MgSecurityIncident","New-MgSecurityIncident" +"POST","/security/labels/authorities","keep",,"New-MgSecurityLabelAuthority","New-MgSecurityLabelAuthority" +"POST","/security/labels/categories","keep",,"New-MgSecurityLabelCategory","New-MgSecurityLabelCategory" +"POST","/security/labels/categories/{param}/subcategories","keep",,"New-MgSecurityLabelCategorySubcategory","New-MgSecurityLabelCategorySubcategory" +"POST","/security/labels/citations","keep",,"New-MgSecurityLabelCitation","New-MgSecurityLabelCitation" +"POST","/security/labels/departments","keep",,"New-MgSecurityLabelDepartment","New-MgSecurityLabelDepartment" +"POST","/security/labels/filePlanReferences","keep",,"New-MgSecurityLabelFilePlanReference","New-MgSecurityLabelFilePlanReference" +"POST","/security/labels/retentionLabels","keep",,"New-MgSecurityLabelRetentionLabel","New-MgSecurityLabelRetentionLabel" +"POST","/security/labels/retentionLabels/{param}/dispositionReviewStages","keep",,"New-MgSecurityLabelRetentionLabelDispositionReviewStage","New-MgSecurityLabelRetentionLabelDispositionReviewStage" +"POST","/security/secureScoreControlProfiles","keep",,"New-MgSecuritySecureScoreControlProfile","New-MgSecuritySecureScoreControlProfile" +"POST","/security/secureScores","keep",,"New-MgSecuritySecureScore","New-MgSecuritySecureScore" +"POST","/security/subjectRightsRequests","keep",,"New-MgSecuritySubjectRightsRequest","New-MgSecuritySubjectRightsRequest" +"POST","/security/subjectRightsRequests/{param}/notes","keep",,"New-MgSecuritySubjectRightsRequestNote","New-MgSecuritySubjectRightsRequestNote" +"POST","/security/threatIntelligence/articleIndicators","keep",,"New-MgSecurityThreatIntelligenceArticleIndicator","New-MgSecurityThreatIntelligenceArticleIndicator" +"POST","/security/threatIntelligence/articles","keep",,"New-MgSecurityThreatIntelligenceArticle","New-MgSecurityThreatIntelligenceArticle" +"POST","/security/threatIntelligence/hostComponents","keep",,"New-MgSecurityThreatIntelligenceHostComponent","New-MgSecurityThreatIntelligenceHostComponent" +"POST","/security/threatIntelligence/hostCookies","keep",,"New-MgSecurityThreatIntelligenceHostCookie","New-MgSecurityThreatIntelligenceHostCookie" +"POST","/security/threatIntelligence/hostPairs","keep",,"New-MgSecurityThreatIntelligenceHostPair","New-MgSecurityThreatIntelligenceHostPair" +"POST","/security/threatIntelligence/hostPorts","keep",,"New-MgSecurityThreatIntelligenceHostPort","New-MgSecurityThreatIntelligenceHostPort" +"POST","/security/threatIntelligence/hosts","keep",,"New-MgSecurityThreatIntelligenceHost","New-MgSecurityThreatIntelligenceHost" +"POST","/security/threatIntelligence/hostSslCertificates","keep",,"New-MgSecurityThreatIntelligenceHostSslCertificate","New-MgSecurityThreatIntelligenceHostSslCertificate" +"POST","/security/threatIntelligence/hostTrackers","keep",,"New-MgSecurityThreatIntelligenceHostTracker","New-MgSecurityThreatIntelligenceHostTracker" +"POST","/security/threatIntelligence/intelligenceProfileIndicators","keep",,"New-MgSecurityThreatIntelligenceProfileIndicator","New-MgSecurityThreatIntelligenceProfileIndicator" +"POST","/security/threatIntelligence/intelProfiles","keep",,"New-MgSecurityThreatIntelligenceIntelProfile","New-MgSecurityThreatIntelligenceIntelProfile" +"POST","/security/threatIntelligence/passiveDnsRecords","keep",,"New-MgSecurityThreatIntelligencePassiveDnsRecord","New-MgSecurityThreatIntelligencePassiveDnsRecord" +"POST","/security/threatIntelligence/sslCertificates","keep",,"New-MgSecurityThreatIntelligenceSslCertificate","New-MgSecurityThreatIntelligenceSslCertificate" +"POST","/security/threatIntelligence/subdomains","keep",,"New-MgSecurityThreatIntelligenceSubdomain","New-MgSecurityThreatIntelligenceSubdomain" +"POST","/security/threatIntelligence/vulnerabilities","keep",,"New-MgSecurityThreatIntelligenceVulnerability","New-MgSecurityThreatIntelligenceVulnerability" +"POST","/security/threatIntelligence/vulnerabilities/{param}/components","keep",,"New-MgSecurityThreatIntelligenceVulnerabilityComponent","New-MgSecurityThreatIntelligenceVulnerabilityComponent" +"POST","/security/threatIntelligence/whoisHistoryRecords","keep",,"New-MgSecurityThreatIntelligenceWhoisHistoryRecord","New-MgSecurityThreatIntelligenceWhoisHistoryRecord" +"POST","/security/threatIntelligence/whoisRecords","keep",,"New-MgSecurityThreatIntelligenceWhoisRecord","New-MgSecurityThreatIntelligenceWhoisRecord" +"POST","/security/triggers/retentionEvents","keep",,"New-MgSecurityTriggerRetentionEvent","New-MgSecurityTriggerRetentionEvent" +"POST","/security/triggerTypes/retentionEventTypes","keep",,"New-MgSecurityTriggerTypeRetentionEventType","New-MgSecurityTriggerTypeRetentionEventType" +"POST","/servicePrincipals","keep",,"New-MgServicePrincipal","New-MgServicePrincipal" +"POST","/servicePrincipals/{param}/addKey","rename","ServicePrincipalKey","Invoke-MgServicePrincipalAddKey","Add-MgServicePrincipalKey" +"POST","/servicePrincipals/{param}/addPassword","rename","ServicePrincipalPassword","Invoke-MgServicePrincipalAddPassword","Add-MgServicePrincipalPassword" +"POST","/servicePrincipals/{param}/addTokenSigningCertificate","rename","ServicePrincipalTokenSigningCertificate","Invoke-MgServicePrincipalAddTokenSigningCertificate","Add-MgServicePrincipalTokenSigningCertificate" +"POST","/servicePrincipals/{param}/appRoleAssignedTo","keep",,"New-MgServicePrincipalAppRoleAssignedTo","New-MgServicePrincipalAppRoleAssignedTo" +"POST","/servicePrincipals/{param}/appRoleAssignments","keep",,"New-MgServicePrincipalAppRoleAssignment","New-MgServicePrincipalAppRoleAssignment" +"POST","/servicePrincipals/{param}/checkMemberGroups","rename","ServicePrincipalMemberGroup","Invoke-MgServicePrincipalCheckMemberGroups","Confirm-MgServicePrincipalMemberGroup" +"POST","/servicePrincipals/{param}/checkMemberObjects","rename","ServicePrincipalMemberObject","Invoke-MgServicePrincipalCheckMemberObjects","Confirm-MgServicePrincipalMemberObject" +"POST","/servicePrincipals/{param}/claimsMappingPolicies/$ref","keep",,"New-MgServicePrincipalClaimMappingPolicyByRef","New-MgServicePrincipalClaimMappingPolicyByRef" +"POST","/servicePrincipals/{param}/delegatedPermissionClassifications","keep",,"New-MgServicePrincipalDelegatedPermissionClassification","New-MgServicePrincipalDelegatedPermissionClassification" +"POST","/servicePrincipals/{param}/endpoints","keep",,"New-MgServicePrincipalEndpoint","New-MgServicePrincipalEndpoint" +"POST","/servicePrincipals/{param}/federatedIdentityCredentials","suppress",,"New-MgServicePrincipalFederatedIdentityCredential","no oracle row for POST /servicePrincipals/{param}/federatedIdentityCredentials and 'New-MgServicePrincipalFederatedIdentityCredential' unshipped" +"POST","/servicePrincipals/{param}/getMemberGroups","rename","ServicePrincipalMemberGroup","Invoke-MgServicePrincipalGetMemberGroups","Get-MgServicePrincipalMemberGroup" +"POST","/servicePrincipals/{param}/getMemberObjects","rename","ServicePrincipalMemberObject","Invoke-MgServicePrincipalGetMemberObjects","Get-MgServicePrincipalMemberObject" +"POST","/servicePrincipals/{param}/homeRealmDiscoveryPolicies/$ref","keep",,"New-MgServicePrincipalHomeRealmDiscoveryPolicyByRef","New-MgServicePrincipalHomeRealmDiscoveryPolicyByRef" +"POST","/servicePrincipals/{param}/owners/$ref","keep",,"New-MgServicePrincipalOwnerByRef","New-MgServicePrincipalOwnerByRef" +"POST","/servicePrincipals/{param}/remoteDesktopSecurityConfiguration/approvedClientApps","keep",,"New-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp","New-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp" +"POST","/servicePrincipals/{param}/remoteDesktopSecurityConfiguration/targetDeviceGroups","keep",,"New-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup","New-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup" +"POST","/servicePrincipals/{param}/removeKey","rename","ServicePrincipalKey","Invoke-MgServicePrincipalRemoveKey","Remove-MgServicePrincipalKey" +"POST","/servicePrincipals/{param}/removePassword","rename","ServicePrincipalPassword","Invoke-MgServicePrincipalRemovePassword","Remove-MgServicePrincipalPassword" +"POST","/servicePrincipals/{param}/restore","suppress",,"Invoke-MgServicePrincipalRestore","no oracle row for POST /servicePrincipals/{param}/restore and 'Invoke-MgServicePrincipalRestore' unshipped" +"POST","/servicePrincipals/{param}/synchronization/acquireAccessToken","rename","ServicePrincipalSynchronizationAccessToken","Invoke-MgServicePrincipalSynchronizationAcquireAccessToken","Get-MgServicePrincipalSynchronizationAccessToken" +"POST","/servicePrincipals/{param}/synchronization/jobs","keep",,"New-MgServicePrincipalSynchronizationJob","New-MgServicePrincipalSynchronizationJob" +"POST","/servicePrincipals/{param}/synchronization/jobs/{param}/pause","rename","ServicePrincipalSynchronizationJob","Invoke-MgServicePrincipalSynchronizationJobPause","Suspend-MgServicePrincipalSynchronizationJob" +"POST","/servicePrincipals/{param}/synchronization/jobs/{param}/provisionOnDemand","rename","ServicePrincipalSynchronizationJobOnDemand","Invoke-MgServicePrincipalSynchronizationJobProvisionOnDemand","New-MgServicePrincipalSynchronizationJobOnDemand" +"POST","/servicePrincipals/{param}/synchronization/jobs/{param}/restart","rename","ServicePrincipalSynchronizationJob","Invoke-MgServicePrincipalSynchronizationJobRestart","Restart-MgServicePrincipalSynchronizationJob" +"POST","/servicePrincipals/{param}/synchronization/jobs/{param}/schema/directories","keep",,"New-MgServicePrincipalSynchronizationJobSchemaDirectory","New-MgServicePrincipalSynchronizationJobSchemaDirectory" +"POST","/servicePrincipals/{param}/synchronization/jobs/{param}/schema/directories/{param}/discover","rename","ServicePrincipalSynchronizationJobSchemaDirectory","Invoke-MgServicePrincipalSynchronizationJobSchemaDirectoryDiscover","Find-MgServicePrincipalSynchronizationJobSchemaDirectory" +"POST","/servicePrincipals/{param}/synchronization/jobs/{param}/schema/parseExpression","rename","ParseServicePrincipalSynchronizationJobSchemaExpression","Invoke-MgServicePrincipalSynchronizationJobSchemaParseExpression","Invoke-MgParseServicePrincipalSynchronizationJobSchemaExpression" +"POST","/servicePrincipals/{param}/synchronization/jobs/{param}/start","rename","ServicePrincipalSynchronizationJob","Invoke-MgServicePrincipalSynchronizationJobStart","Start-MgServicePrincipalSynchronizationJob" +"POST","/servicePrincipals/{param}/synchronization/jobs/{param}/validateCredentials","rename","ServicePrincipalSynchronizationJobCredential","Invoke-MgServicePrincipalSynchronizationJobValidateCredentials","Test-MgServicePrincipalSynchronizationJobCredential" +"POST","/servicePrincipals/{param}/synchronization/templates","keep",,"New-MgServicePrincipalSynchronizationTemplate","New-MgServicePrincipalSynchronizationTemplate" +"POST","/servicePrincipals/{param}/synchronization/templates/{param}/schema/directories","keep",,"New-MgServicePrincipalSynchronizationTemplateSchemaDirectory","New-MgServicePrincipalSynchronizationTemplateSchemaDirectory" +"POST","/servicePrincipals/{param}/synchronization/templates/{param}/schema/directories/{param}/discover","rename","ServicePrincipalSynchronizationTemplateSchemaDirectory","Invoke-MgServicePrincipalSynchronizationTemplateSchemaDirectoryDiscover","Find-MgServicePrincipalSynchronizationTemplateSchemaDirectory" +"POST","/servicePrincipals/{param}/synchronization/templates/{param}/schema/parseExpression","rename","ParseServicePrincipalSynchronizationTemplateSchemaExpression","Invoke-MgServicePrincipalSynchronizationTemplateSchemaParseExpression","Invoke-MgParseServicePrincipalSynchronizationTemplateSchemaExpression" +"POST","/servicePrincipals/{param}/tokenIssuancePolicies/$ref","keep",,"New-MgServicePrincipalTokenIssuancePolicyByRef","New-MgServicePrincipalTokenIssuancePolicyByRef" +"POST","/servicePrincipals/{param}/tokenLifetimePolicies/$ref","keep",,"New-MgServicePrincipalTokenLifetimePolicyByRef","New-MgServicePrincipalTokenLifetimePolicyByRef" +"POST","/servicePrincipals/getAvailableExtensionProperties","suppress",,"Invoke-MgServicePrincipalGetAvailableExtensionProperties","no oracle row for POST /servicePrincipals/getAvailableExtensionProperties and 'Invoke-MgServicePrincipalGetAvailableExtensionProperties' unshipped" +"POST","/servicePrincipals/getByIds","rename","ServicePrincipalById","Invoke-MgServicePrincipalGetByIds","Get-MgServicePrincipalById" +"POST","/servicePrincipals/validateProperties","rename","ServicePrincipalProperty","Invoke-MgServicePrincipalValidateProperties","Test-MgServicePrincipalProperty" +"POST","/shares","keep",,"New-MgShare","New-MgShareSharedDriveItemSharedDriveItem" +"POST","/shares/{param}/list/columns","keep",,"New-MgShareListColumn","New-MgShareListColumn" +"POST","/shares/{param}/list/contentTypes","keep",,"New-MgShareListContentType","New-MgShareListContentType" +"POST","/shares/{param}/list/contentTypes/{param}/associateWithHubSites","rename","ShareListContentTypeWithHubSite","Invoke-MgShareListContentTypeAssociateWithHubSites","Join-MgShareListContentTypeWithHubSite" +"POST","/shares/{param}/list/contentTypes/{param}/columnLinks","keep",,"New-MgShareListContentTypeColumnLink","New-MgShareListContentTypeColumnLink" +"POST","/shares/{param}/list/contentTypes/{param}/columns","keep",,"New-MgShareListContentTypeColumn","New-MgShareListContentTypeColumn" +"POST","/shares/{param}/list/contentTypes/{param}/copyToDefaultContentLocation","rename","ShareListContentTypeToDefaultContentLocation","Invoke-MgShareListContentTypeCopyToDefaultContentLocation","Copy-MgShareListContentTypeToDefaultContentLocation" +"POST","/shares/{param}/list/contentTypes/{param}/publish","rename","ShareListContentType","Invoke-MgShareListContentTypePublish","Publish-MgShareListContentType" +"POST","/shares/{param}/list/contentTypes/{param}/unpublish","rename","ShareListContentType","Invoke-MgShareListContentTypeUnpublish","Unpublish-MgShareListContentType" +"POST","/shares/{param}/list/contentTypes/addCopy","rename","ShareListContentTypeCopy","Invoke-MgShareListContentTypeAddCopy","Add-MgShareListContentTypeCopy" +"POST","/shares/{param}/list/contentTypes/addCopyFromContentTypeHub","rename","ShareListContentTypeCopyFromContentTypeHub","Invoke-MgShareListContentTypeAddCopyFromContentTypeHub","Add-MgShareListContentTypeCopyFromContentTypeHub" +"POST","/shares/{param}/list/items","keep",,"New-MgShareListItem","New-MgShareListItem" +"POST","/shares/{param}/list/items/{param}/createLink","suppress",,"Invoke-MgShareListItemCreateLink","no oracle row for POST /shares/{param}/list/items/{param}/createLink and 'Invoke-MgShareListItemCreateLink' unshipped" +"POST","/shares/{param}/list/items/{param}/documentSetVersions","keep",,"New-MgShareListItemDocumentSetVersion","New-MgShareListItemDocumentSetVersion" +"POST","/shares/{param}/list/items/{param}/documentSetVersions/{param}/restore","rename","ShareListItemDocumentSetVersion","Invoke-MgShareListItemDocumentSetVersionRestore","Restore-MgShareListItemDocumentSetVersion" +"POST","/shares/{param}/list/items/{param}/permissions","suppress",,"New-MgShareListItemPermission","no oracle row for POST /shares/{param}/list/items/{param}/permissions and 'New-MgShareListItemPermission' unshipped" +"POST","/shares/{param}/list/items/{param}/permissions/{param}/grant","suppress",,"Invoke-MgShareListItemPermissionGrant","no oracle row for POST /shares/{param}/list/items/{param}/permissions/{param}/grant and 'Invoke-MgShareListItemPermissionGrant' unshipped" +"POST","/shares/{param}/list/items/{param}/versions","keep",,"New-MgShareListItemVersion","New-MgShareListItemVersion" +"POST","/shares/{param}/list/items/{param}/versions/{param}/restoreVersion","rename","ShareListItemVersion","Invoke-MgShareListItemVersionRestoreVersion","Restore-MgShareListItemVersion" +"POST","/shares/{param}/list/operations","keep",,"New-MgShareListOperation","New-MgShareListOperation" +"POST","/shares/{param}/list/permissions","suppress",,"New-MgShareListPermission","no oracle row for POST /shares/{param}/list/permissions and 'New-MgShareListPermission' unshipped" +"POST","/shares/{param}/list/permissions/{param}/grant","suppress",,"Invoke-MgShareListPermissionGrant","no oracle row for POST /shares/{param}/list/permissions/{param}/grant and 'Invoke-MgShareListPermissionGrant' unshipped" +"POST","/shares/{param}/list/subscriptions","keep",,"New-MgShareListSubscription","New-MgShareListSubscription" +"POST","/shares/{param}/list/subscriptions/{param}/reauthorize","rename","ReauthorizeShareListSubscription","Invoke-MgShareListSubscriptionReauthorize","Invoke-MgReauthorizeShareListSubscription" +"POST","/shares/{param}/permission/grant","rename","SharePermission","Invoke-MgSharePermissionGrant","Grant-MgSharePermission" +"POST","/sites/{param}/analytics/itemActivityStats","keep",,"New-MgSiteAnalyticItemActivityStat","New-MgSiteAnalyticItemActivityStat" +"POST","/sites/{param}/analytics/itemActivityStats/{param}/activities","keep",,"New-MgSiteAnalyticItemActivityStatActivity","New-MgSiteAnalyticItemActivityStatActivity" +"POST","/sites/{param}/columns","keep",,"New-MgSiteColumn","New-MgSiteColumn" +"POST","/sites/{param}/contentTypes","keep",,"New-MgSiteContentType","New-MgSiteContentType" +"POST","/sites/{param}/contentTypes/{param}/associateWithHubSites","rename","SiteContentTypeWithHubSite","Invoke-MgSiteContentTypeAssociateWithHubSites","Join-MgSiteContentTypeWithHubSite" +"POST","/sites/{param}/contentTypes/{param}/columnLinks","keep",,"New-MgSiteContentTypeColumnLink","New-MgSiteContentTypeColumnLink" +"POST","/sites/{param}/contentTypes/{param}/columns","keep",,"New-MgSiteContentTypeColumn","New-MgSiteContentTypeColumn" +"POST","/sites/{param}/contentTypes/{param}/copyToDefaultContentLocation","rename","SiteContentTypeToDefaultContentLocation","Invoke-MgSiteContentTypeCopyToDefaultContentLocation","Copy-MgSiteContentTypeToDefaultContentLocation" +"POST","/sites/{param}/contentTypes/{param}/publish","rename","SiteContentType","Invoke-MgSiteContentTypePublish","Publish-MgSiteContentType" +"POST","/sites/{param}/contentTypes/{param}/unpublish","rename","SiteContentType","Invoke-MgSiteContentTypeUnpublish","Unpublish-MgSiteContentType" +"POST","/sites/{param}/contentTypes/addCopy","rename","SiteContentTypeCopy","Invoke-MgSiteContentTypeAddCopy","Add-MgSiteContentTypeCopy" +"POST","/sites/{param}/contentTypes/addCopyFromContentTypeHub","rename","SiteContentTypeCopyFromContentTypeHub","Invoke-MgSiteContentTypeAddCopyFromContentTypeHub","Add-MgSiteContentTypeCopyFromContentTypeHub" +"POST","/sites/{param}/lists","keep",,"New-MgSiteList","New-MgSiteList" +"POST","/sites/{param}/lists/{param}/columns","keep",,"New-MgSiteListColumn","New-MgSiteListColumn" +"POST","/sites/{param}/lists/{param}/contentTypes","keep",,"New-MgSiteListContentType","New-MgSiteListContentType" +"POST","/sites/{param}/lists/{param}/contentTypes/{param}/associateWithHubSites","rename","SiteListContentTypeWithHubSite","Invoke-MgSiteListContentTypeAssociateWithHubSites","Join-MgSiteListContentTypeWithHubSite" +"POST","/sites/{param}/lists/{param}/contentTypes/{param}/columnLinks","keep",,"New-MgSiteListContentTypeColumnLink","New-MgSiteListContentTypeColumnLink" +"POST","/sites/{param}/lists/{param}/contentTypes/{param}/columns","keep",,"New-MgSiteListContentTypeColumn","New-MgSiteListContentTypeColumn" +"POST","/sites/{param}/lists/{param}/contentTypes/{param}/copyToDefaultContentLocation","rename","SiteListContentTypeToDefaultContentLocation","Invoke-MgSiteListContentTypeCopyToDefaultContentLocation","Copy-MgSiteListContentTypeToDefaultContentLocation" +"POST","/sites/{param}/lists/{param}/contentTypes/{param}/publish","rename","SiteListContentType","Invoke-MgSiteListContentTypePublish","Publish-MgSiteListContentType" +"POST","/sites/{param}/lists/{param}/contentTypes/{param}/unpublish","rename","SiteListContentType","Invoke-MgSiteListContentTypeUnpublish","Unpublish-MgSiteListContentType" +"POST","/sites/{param}/lists/{param}/contentTypes/addCopy","rename","SiteListContentTypeCopy","Invoke-MgSiteListContentTypeAddCopy","Add-MgSiteListContentTypeCopy" +"POST","/sites/{param}/lists/{param}/contentTypes/addCopyFromContentTypeHub","rename","SiteListContentTypeCopyFromContentTypeHub","Invoke-MgSiteListContentTypeAddCopyFromContentTypeHub","Add-MgSiteListContentTypeCopyFromContentTypeHub" +"POST","/sites/{param}/lists/{param}/items","keep",,"New-MgSiteListItem","New-MgSiteListItem" +"POST","/sites/{param}/lists/{param}/items/{param}/createLink","rename","SiteListItemLink","Invoke-MgSiteListItemCreateLink","New-MgSiteListItemLink" +"POST","/sites/{param}/lists/{param}/items/{param}/documentSetVersions","keep",,"New-MgSiteListItemDocumentSetVersion","New-MgSiteListItemDocumentSetVersion" +"POST","/sites/{param}/lists/{param}/items/{param}/documentSetVersions/{param}/restore","rename","SiteListItemDocumentSetVersion","Invoke-MgSiteListItemDocumentSetVersionRestore","Restore-MgSiteListItemDocumentSetVersion" +"POST","/sites/{param}/lists/{param}/items/{param}/permissions","keep",,"New-MgSiteListItemPermission","New-MgSiteListItemPermission" +"POST","/sites/{param}/lists/{param}/items/{param}/permissions/{param}/grant","rename","SiteListItemPermission","Invoke-MgSiteListItemPermissionGrant","Grant-MgSiteListItemPermission" +"POST","/sites/{param}/lists/{param}/items/{param}/versions","keep",,"New-MgSiteListItemVersion","New-MgSiteListItemVersion" +"POST","/sites/{param}/lists/{param}/items/{param}/versions/{param}/restoreVersion","rename","SiteListItemVersion","Invoke-MgSiteListItemVersionRestoreVersion","Restore-MgSiteListItemVersion" +"POST","/sites/{param}/lists/{param}/operations","keep",,"New-MgSiteListOperation","New-MgSiteListOperation" +"POST","/sites/{param}/lists/{param}/permissions","keep",,"New-MgSiteListPermission","New-MgSiteListPermission" +"POST","/sites/{param}/lists/{param}/permissions/{param}/grant","rename","SiteListPermission","Invoke-MgSiteListPermissionGrant","Grant-MgSiteListPermission" +"POST","/sites/{param}/lists/{param}/subscriptions","keep",,"New-MgSiteListSubscription","New-MgSiteListSubscription" +"POST","/sites/{param}/lists/{param}/subscriptions/{param}/reauthorize","rename","ReauthorizeSiteListSubscription","Invoke-MgSiteListSubscriptionReauthorize","Invoke-MgReauthorizeSiteListSubscription" +"POST","/sites/{param}/onenote/notebooks","keep",,"New-MgSiteOnenoteNotebook","New-MgSiteOnenoteNotebook" +"POST","/sites/{param}/onenote/notebooks/{param}/copyNotebook","rename","SiteOnenoteNotebook","Invoke-MgSiteOnenoteNotebookCopyNotebook","Copy-MgSiteOnenoteNotebook" +"POST","/sites/{param}/onenote/notebooks/{param}/sectionGroups","keep",,"New-MgSiteOnenoteNotebookSectionGroup","New-MgSiteOnenoteNotebookSectionGroup" +"POST","/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections","keep",,"New-MgSiteOnenoteNotebookSectionGroupSection","New-MgSiteOnenoteNotebookSectionGroupSection" +"POST","/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/copyToNotebook","rename","SiteOnenoteNotebookSectionGroupSectionToNotebook","Invoke-MgSiteOnenoteNotebookSectionGroupSectionCopyToNotebook","Copy-MgSiteOnenoteNotebookSectionGroupSectionToNotebook" +"POST","/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/copyToSectionGroup","rename","SiteOnenoteNotebookSectionGroupSectionToSectionGroup","Invoke-MgSiteOnenoteNotebookSectionGroupSectionCopyToSectionGroup","Copy-MgSiteOnenoteNotebookSectionGroupSectionToSectionGroup" +"POST","/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages","keep",,"New-MgSiteOnenoteNotebookSectionGroupSectionPage","New-MgSiteOnenoteNotebookSectionGroupSectionPage" +"POST","/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}/copyToSection","rename","SiteOnenoteNotebookSectionGroupSectionPageToSection","Invoke-MgSiteOnenoteNotebookSectionGroupSectionPageCopyToSection","Copy-MgSiteOnenoteNotebookSectionGroupSectionPageToSection" +"POST","/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}/onenotePatchContent","rename","SiteOnenoteNotebookSectionGroupSectionPageContent","Invoke-MgSiteOnenoteNotebookSectionGroupSectionPageOnenotePatchContent","Update-MgSiteOnenoteNotebookSectionGroupSectionPageContent" +"POST","/sites/{param}/onenote/notebooks/{param}/sections","keep",,"New-MgSiteOnenoteNotebookSection","New-MgSiteOnenoteNotebookSection" +"POST","/sites/{param}/onenote/notebooks/{param}/sections/{param}/copyToNotebook","rename","SiteOnenoteNotebookSectionToNotebook","Invoke-MgSiteOnenoteNotebookSectionCopyToNotebook","Copy-MgSiteOnenoteNotebookSectionToNotebook" +"POST","/sites/{param}/onenote/notebooks/{param}/sections/{param}/copyToSectionGroup","rename","SiteOnenoteNotebookSectionToSectionGroup","Invoke-MgSiteOnenoteNotebookSectionCopyToSectionGroup","Copy-MgSiteOnenoteNotebookSectionToSectionGroup" +"POST","/sites/{param}/onenote/notebooks/{param}/sections/{param}/pages","keep",,"New-MgSiteOnenoteNotebookSectionPage","New-MgSiteOnenoteNotebookSectionPage" +"POST","/sites/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}/copyToSection","rename","SiteOnenoteNotebookSectionPageToSection","Invoke-MgSiteOnenoteNotebookSectionPageCopyToSection","Copy-MgSiteOnenoteNotebookSectionPageToSection" +"POST","/sites/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}/onenotePatchContent","rename","SiteOnenoteNotebookSectionPageContent","Invoke-MgSiteOnenoteNotebookSectionPageOnenotePatchContent","Update-MgSiteOnenoteNotebookSectionPageContent" +"POST","/sites/{param}/onenote/notebooks/getNotebookFromWebUrl","rename","SiteOnenoteNotebookFromWebUrl","Invoke-MgSiteOnenoteNotebookGetNotebookFromWebUrl","Get-MgSiteOnenoteNotebookFromWebUrl" +"POST","/sites/{param}/onenote/operations","keep",,"New-MgSiteOnenoteOperation","New-MgSiteOnenoteOperation" +"POST","/sites/{param}/onenote/pages","keep",,"New-MgSiteOnenotePage","New-MgSiteOnenotePage" +"POST","/sites/{param}/onenote/pages/{param}/copyToSection","rename","SiteOnenotePageToSection","Invoke-MgSiteOnenotePageCopyToSection","Copy-MgSiteOnenotePageToSection" +"POST","/sites/{param}/onenote/pages/{param}/onenotePatchContent","rename","SiteOnenotePageContent","Invoke-MgSiteOnenotePageOnenotePatchContent","Update-MgSiteOnenotePageContent" +"POST","/sites/{param}/onenote/resources","keep",,"New-MgSiteOnenoteResource","New-MgSiteOnenoteResource" +"POST","/sites/{param}/onenote/sectionGroups","keep",,"New-MgSiteOnenoteSectionGroup","New-MgSiteOnenoteSectionGroup" +"POST","/sites/{param}/onenote/sectionGroups/{param}/sections","keep",,"New-MgSiteOnenoteSectionGroupSection","New-MgSiteOnenoteSectionGroupSection" +"POST","/sites/{param}/onenote/sectionGroups/{param}/sections/{param}/copyToNotebook","rename","SiteOnenoteSectionGroupSectionToNotebook","Invoke-MgSiteOnenoteSectionGroupSectionCopyToNotebook","Copy-MgSiteOnenoteSectionGroupSectionToNotebook" +"POST","/sites/{param}/onenote/sectionGroups/{param}/sections/{param}/copyToSectionGroup","rename","SiteOnenoteSectionGroupSectionToSectionGroup","Invoke-MgSiteOnenoteSectionGroupSectionCopyToSectionGroup","Copy-MgSiteOnenoteSectionGroupSectionToSectionGroup" +"POST","/sites/{param}/onenote/sectionGroups/{param}/sections/{param}/pages","keep",,"New-MgSiteOnenoteSectionGroupSectionPage","New-MgSiteOnenoteSectionGroupSectionPage" +"POST","/sites/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}/copyToSection","rename","SiteOnenoteSectionGroupSectionPageToSection","Invoke-MgSiteOnenoteSectionGroupSectionPageCopyToSection","Copy-MgSiteOnenoteSectionGroupSectionPageToSection" +"POST","/sites/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}/onenotePatchContent","rename","SiteOnenoteSectionGroupSectionPageContent","Invoke-MgSiteOnenoteSectionGroupSectionPageOnenotePatchContent","Update-MgSiteOnenoteSectionGroupSectionPageContent" +"POST","/sites/{param}/onenote/sections","keep",,"New-MgSiteOnenoteSection","New-MgSiteOnenoteSection" +"POST","/sites/{param}/onenote/sections/{param}/copyToNotebook","rename","SiteOnenoteSectionToNotebook","Invoke-MgSiteOnenoteSectionCopyToNotebook","Copy-MgSiteOnenoteSectionToNotebook" +"POST","/sites/{param}/onenote/sections/{param}/copyToSectionGroup","rename","SiteOnenoteSectionToSectionGroup","Invoke-MgSiteOnenoteSectionCopyToSectionGroup","Copy-MgSiteOnenoteSectionToSectionGroup" +"POST","/sites/{param}/onenote/sections/{param}/pages","keep",,"New-MgSiteOnenoteSectionPage","New-MgSiteOnenoteSectionPage" +"POST","/sites/{param}/onenote/sections/{param}/pages/{param}/copyToSection","rename","SiteOnenoteSectionPageToSection","Invoke-MgSiteOnenoteSectionPageCopyToSection","Copy-MgSiteOnenoteSectionPageToSection" +"POST","/sites/{param}/onenote/sections/{param}/pages/{param}/onenotePatchContent","rename","SiteOnenoteSectionPageContent","Invoke-MgSiteOnenoteSectionPageOnenotePatchContent","Update-MgSiteOnenoteSectionPageContent" +"POST","/sites/{param}/operations","keep",,"New-MgSiteOperation","New-MgSiteOperation" +"POST","/sites/{param}/pages","keep",,"New-MgSitePage","New-MgSitePage" +"POST","/sites/{param}/permissions","keep",,"New-MgSitePermission","New-MgSitePermission" +"POST","/sites/{param}/permissions/{param}/grant","rename","SitePermission","Invoke-MgSitePermissionGrant","Grant-MgSitePermission" +"POST","/sites/{param}/termStore/groups","keep",,"New-MgSiteTermStoreGroup","New-MgSiteTermStoreGroup" +"POST","/sites/{param}/termStore/groups/{param}/sets","keep",,"New-MgSiteTermStoreGroupSet","New-MgSiteTermStoreGroupSet" +"POST","/sites/{param}/termStore/groups/{param}/sets/{param}/children","keep",,"New-MgSiteTermStoreGroupSetChild","New-MgSiteTermStoreGroupSetChild" +"POST","/sites/{param}/termStore/groups/{param}/sets/{param}/children/{param}/children/{param}/relations","keep",,"New-MgSiteTermStoreGroupSetChildRelation","New-MgSiteTermStoreGroupSetChildRelation" +"POST","/sites/{param}/termStore/groups/{param}/sets/{param}/relations","keep",,"New-MgSiteTermStoreGroupSetRelation","New-MgSiteTermStoreGroupSetRelation" +"POST","/sites/{param}/termStore/groups/{param}/sets/{param}/terms","keep",,"New-MgSiteTermStoreGroupSetTerm","New-MgSiteTermStoreGroupSetTerm" +"POST","/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/children","keep",,"New-MgSiteTermStoreGroupSetTermChild","New-MgSiteTermStoreGroupSetTermChild" +"POST","/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/children/{param}/relations","keep",,"New-MgSiteTermStoreGroupSetTermChildRelation","New-MgSiteTermStoreGroupSetTermChildRelation" +"POST","/sites/{param}/termStore/groups/{param}/sets/{param}/terms/{param}/relations","keep",,"New-MgSiteTermStoreGroupSetTermRelation","New-MgSiteTermStoreGroupSetTermRelation" +"POST","/sites/{param}/termStore/sets","keep",,"New-MgSiteTermStoreSet","New-MgSiteTermStoreSet" +"POST","/sites/{param}/termStore/sets/{param}/children","keep",,"New-MgSiteTermStoreSetChild","New-MgSiteTermStoreSetChild" +"POST","/sites/{param}/termStore/sets/{param}/children/{param}/children/{param}/relations","keep",,"New-MgSiteTermStoreSetChildRelation","New-MgSiteTermStoreSetChildRelation" +"POST","/sites/{param}/termStore/sets/{param}/parentGroup/sets","keep",,"New-MgSiteTermStoreSetParentGroupSet","New-MgSiteTermStoreSetParentGroupSet" +"POST","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/children","keep",,"New-MgSiteTermStoreSetParentGroupSetChild","New-MgSiteTermStoreSetParentGroupSetChild" +"POST","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/children/{param}/children/{param}/relations","keep",,"New-MgSiteTermStoreSetParentGroupSetChildRelation","New-MgSiteTermStoreSetParentGroupSetChildRelation" +"POST","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/relations","keep",,"New-MgSiteTermStoreSetParentGroupSetRelation","New-MgSiteTermStoreSetParentGroupSetRelation" +"POST","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms","keep",,"New-MgSiteTermStoreSetParentGroupSetTerm","New-MgSiteTermStoreSetParentGroupSetTerm" +"POST","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/children","keep",,"New-MgSiteTermStoreSetParentGroupSetTermChild","New-MgSiteTermStoreSetParentGroupSetTermChild" +"POST","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/children/{param}/relations","keep",,"New-MgSiteTermStoreSetParentGroupSetTermChildRelation","New-MgSiteTermStoreSetParentGroupSetTermChildRelation" +"POST","/sites/{param}/termStore/sets/{param}/parentGroup/sets/{param}/terms/{param}/relations","keep",,"New-MgSiteTermStoreSetParentGroupSetTermRelation","New-MgSiteTermStoreSetParentGroupSetTermRelation" +"POST","/sites/{param}/termStore/sets/{param}/relations","keep",,"New-MgSiteTermStoreSetRelation","New-MgSiteTermStoreSetRelation" +"POST","/sites/{param}/termStore/sets/{param}/terms","keep",,"New-MgSiteTermStoreSetTerm","New-MgSiteTermStoreSetTerm" +"POST","/sites/{param}/termStore/sets/{param}/terms/{param}/children","keep",,"New-MgSiteTermStoreSetTermChild","New-MgSiteTermStoreSetTermChild" +"POST","/sites/{param}/termStore/sets/{param}/terms/{param}/children/{param}/relations","keep",,"New-MgSiteTermStoreSetTermChildRelation","New-MgSiteTermStoreSetTermChildRelation" +"POST","/sites/{param}/termStore/sets/{param}/terms/{param}/relations","keep",,"New-MgSiteTermStoreSetTermRelation","New-MgSiteTermStoreSetTermRelation" +"POST","/sites/{param}/termStores","keep",,"New-MgSiteTermStore","New-MgSiteTermStore" +"POST","/sites/add","rename","Site","Invoke-MgSiteAdd","Add-MgSite" +"POST","/sites/remove","suppress",,"Invoke-MgSiteRemove","no oracle row for POST /sites/remove and 'Invoke-MgSiteRemove' unshipped" +"POST","/solutions/backupRestore/browseSessions","keep",,"New-MgSolutionBackupRestoreBrowseSession","New-MgSolutionBackupRestoreBrowseSession" +"POST","/solutions/backupRestore/browseSessions/{param}/browse","rename","BrowseSolutionBackupRestoreBrowseSession","Invoke-MgSolutionBackupRestoreBrowseSessionBrowse","Invoke-MgBrowseSolutionBackupRestoreBrowseSession" +"POST","/solutions/backupRestore/driveInclusionRules","keep",,"New-MgSolutionBackupRestoreDriveInclusionRule","New-MgSolutionBackupRestoreDriveInclusionRule" +"POST","/solutions/backupRestore/driveProtectionUnits","keep",,"New-MgSolutionBackupRestoreDriveProtectionUnit","New-MgSolutionBackupRestoreDriveProtectionUnit" +"POST","/solutions/backupRestore/driveProtectionUnitsBulkAdditionJobs","keep",,"New-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob","New-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob" +"POST","/solutions/backupRestore/enable","rename","SolutionBackupRestore","Invoke-MgSolutionBackupRestoreEnable","Enable-MgSolutionBackupRestore" +"POST","/solutions/backupRestore/exchangeProtectionPolicies","keep",,"New-MgSolutionBackupRestoreExchangeProtectionPolicy","New-MgSolutionBackupRestoreExchangeProtectionPolicy" +"POST","/solutions/backupRestore/exchangeRestoreSessions","keep",,"New-MgSolutionBackupRestoreExchangeRestoreSession","New-MgSolutionBackupRestoreExchangeRestoreSession" +"POST","/solutions/backupRestore/exchangeRestoreSessions/{param}/granularMailboxRestoreArtifacts","keep",,"New-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact","New-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact" +"POST","/solutions/backupRestore/exchangeRestoreSessions/{param}/mailboxRestoreArtifacts","keep",,"New-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact","New-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact" +"POST","/solutions/backupRestore/exchangeRestoreSessions/{param}/mailboxRestoreArtifactsBulkAdditionRequests","keep",,"New-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest","New-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest" +"POST","/solutions/backupRestore/mailboxInclusionRules","keep",,"New-MgSolutionBackupRestoreMailboxInclusionRule","New-MgSolutionBackupRestoreMailboxInclusionRule" +"POST","/solutions/backupRestore/mailboxProtectionUnits","keep",,"New-MgSolutionBackupRestoreMailboxProtectionUnit","New-MgSolutionBackupRestoreMailboxProtectionUnit" +"POST","/solutions/backupRestore/mailboxProtectionUnitsBulkAdditionJobs","keep",,"New-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob","New-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob" +"POST","/solutions/backupRestore/oneDriveForBusinessBrowseSessions","keep",,"New-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession","New-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession" +"POST","/solutions/backupRestore/oneDriveForBusinessProtectionPolicies","keep",,"New-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy","New-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy" +"POST","/solutions/backupRestore/oneDriveForBusinessRestoreSessions","keep",,"New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession","New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession" +"POST","/solutions/backupRestore/oneDriveForBusinessRestoreSessions/{param}/driveRestoreArtifacts","keep",,"New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact","New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact" +"POST","/solutions/backupRestore/oneDriveForBusinessRestoreSessions/{param}/driveRestoreArtifactsBulkAdditionRequests","keep",,"New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest","New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest" +"POST","/solutions/backupRestore/oneDriveForBusinessRestoreSessions/{param}/granularDriveRestoreArtifacts","keep",,"New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact","New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact" +"POST","/solutions/backupRestore/protectionPolicies","keep",,"New-MgSolutionBackupRestoreProtectionPolicy","New-MgSolutionBackupRestoreProtectionPolicy" +"POST","/solutions/backupRestore/protectionPolicies/{param}/activate","rename","SolutionBackupRestoreProtectionPolicy","Invoke-MgSolutionBackupRestoreProtectionPolicyActivate","Initialize-MgSolutionBackupRestoreProtectionPolicy" +"POST","/solutions/backupRestore/protectionPolicies/{param}/deactivate","rename","DeactivateSolutionBackupRestoreProtectionPolicy","Invoke-MgSolutionBackupRestoreProtectionPolicyDeactivate","Invoke-MgDeactivateSolutionBackupRestoreProtectionPolicy" +"POST","/solutions/backupRestore/protectionUnits/{param}/cancelOffboard","rename","SolutionBackupRestoreProtectionUnitOffboard","Invoke-MgSolutionBackupRestoreProtectionUnitCancelOffboard","Stop-MgSolutionBackupRestoreProtectionUnitOffboard" +"POST","/solutions/backupRestore/protectionUnits/{param}/offboard","rename","OffboardSolutionBackupRestoreProtectionUnit","Invoke-MgSolutionBackupRestoreProtectionUnitOffboard","Invoke-MgOffboardSolutionBackupRestoreProtectionUnit" +"POST","/solutions/backupRestore/restorePoints","keep",,"New-MgSolutionBackupRestorePoint","New-MgSolutionBackupRestorePoint" +"POST","/solutions/backupRestore/restorePoints/search","rename","SolutionBackupRestorePoint","Invoke-MgSolutionBackupRestorePointSearch","Search-MgSolutionBackupRestorePoint" +"POST","/solutions/backupRestore/restoreSessions","keep",,"New-MgSolutionBackupRestoreSession","New-MgSolutionBackupRestoreSession" +"POST","/solutions/backupRestore/restoreSessions/{param}/activate","rename","SolutionBackupRestoreSession","Invoke-MgSolutionBackupRestoreSessionActivate","Initialize-MgSolutionBackupRestoreSession" +"POST","/solutions/backupRestore/serviceApps","keep",,"New-MgSolutionBackupRestoreServiceApp","New-MgSolutionBackupRestoreServiceApp" +"POST","/solutions/backupRestore/serviceApps/{param}/activate","rename","SolutionBackupRestoreServiceApp","Invoke-MgSolutionBackupRestoreServiceAppActivate","Initialize-MgSolutionBackupRestoreServiceApp" +"POST","/solutions/backupRestore/serviceApps/{param}/deactivate","rename","DeactivateSolutionBackupRestoreServiceApp","Invoke-MgSolutionBackupRestoreServiceAppDeactivate","Invoke-MgDeactivateSolutionBackupRestoreServiceApp" +"POST","/solutions/backupRestore/sharePointBrowseSessions","keep",,"New-MgSolutionBackupRestoreSharePointBrowseSession","New-MgSolutionBackupRestoreSharePointBrowseSession" +"POST","/solutions/backupRestore/sharePointProtectionPolicies","keep",,"New-MgSolutionBackupRestoreSharePointProtectionPolicy","New-MgSolutionBackupRestoreSharePointProtectionPolicy" +"POST","/solutions/backupRestore/sharePointRestoreSessions","keep",,"New-MgSolutionBackupRestoreSharePointRestoreSession","New-MgSolutionBackupRestoreSharePointRestoreSession" +"POST","/solutions/backupRestore/sharePointRestoreSessions/{param}/granularSiteRestoreArtifacts","keep",,"New-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact","New-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact" +"POST","/solutions/backupRestore/sharePointRestoreSessions/{param}/siteRestoreArtifacts","keep",,"New-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact","New-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact" +"POST","/solutions/backupRestore/sharePointRestoreSessions/{param}/siteRestoreArtifactsBulkAdditionRequests","keep",,"New-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest","New-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest" +"POST","/solutions/backupRestore/siteInclusionRules","keep",,"New-MgSolutionBackupRestoreSiteInclusionRule","New-MgSolutionBackupRestoreSiteInclusionRule" +"POST","/solutions/backupRestore/siteProtectionUnits","keep",,"New-MgSolutionBackupRestoreSiteProtectionUnit","New-MgSolutionBackupRestoreSiteProtectionUnit" +"POST","/solutions/backupRestore/siteProtectionUnitsBulkAdditionJobs","keep",,"New-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob","New-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob" +"POST","/solutions/bookingBusinesses","keep",,"New-MgBookingBusiness","New-MgBookingBusiness" +"POST","/solutions/bookingBusinesses/{param}/appointments","keep",,"New-MgBookingBusinessAppointment","New-MgBookingBusinessAppointment" +"POST","/solutions/bookingBusinesses/{param}/appointments/{param}/cancel","rename","BookingBusinessAppointment","Invoke-MgBookingBusinessAppointmentCancel","Stop-MgBookingBusinessAppointment" +"POST","/solutions/bookingBusinesses/{param}/calendarView","keep",,"New-MgBookingBusinessCalendarView","New-MgBookingBusinessCalendarView" +"POST","/solutions/bookingBusinesses/{param}/calendarView/{param}/cancel","rename","BookingBusinessCalendarView","Invoke-MgBookingBusinessCalendarViewCancel","Stop-MgBookingBusinessCalendarView" +"POST","/solutions/bookingBusinesses/{param}/customers","keep",,"New-MgBookingBusinessCustomer","New-MgBookingBusinessCustomer" +"POST","/solutions/bookingBusinesses/{param}/customQuestions","keep",,"New-MgBookingBusinessCustomQuestion","New-MgBookingBusinessCustomQuestion" +"POST","/solutions/bookingBusinesses/{param}/getStaffAvailability","rename","BookingBusinessStaffAvailability","Invoke-MgBookingBusinessGetStaffAvailability","Get-MgBookingBusinessStaffAvailability" +"POST","/solutions/bookingBusinesses/{param}/publish","rename","BookingBusiness","Invoke-MgBookingBusinessPublish","Publish-MgBookingBusiness" +"POST","/solutions/bookingBusinesses/{param}/services","keep",,"New-MgBookingBusinessService","New-MgBookingBusinessService" +"POST","/solutions/bookingBusinesses/{param}/staffMembers","keep",,"New-MgBookingBusinessStaffMember","New-MgBookingBusinessStaffMember" +"POST","/solutions/bookingBusinesses/{param}/unpublish","rename","BookingBusiness","Invoke-MgBookingBusinessUnpublish","Unpublish-MgBookingBusiness" +"POST","/solutions/bookingCurrencies","keep",,"New-MgBookingCurrency","New-MgBookingCurrency" +"POST","/solutions/virtualEvents/events","keep",,"New-MgVirtualEvent","New-MgVirtualEvent" +"POST","/solutions/virtualEvents/events/{param}/cancel","rename","VirtualEvent","Invoke-MgVirtualEventCancel","Stop-MgVirtualEvent" +"POST","/solutions/virtualEvents/events/{param}/presenters","keep",,"New-MgVirtualEventPresenter","New-MgVirtualEventPresenter" +"POST","/solutions/virtualEvents/events/{param}/publish","rename","VirtualEvent","Invoke-MgVirtualEventPublish","Publish-MgVirtualEvent" +"POST","/solutions/virtualEvents/events/{param}/sessions","keep",,"New-MgVirtualEventSession","New-MgVirtualEventSession" +"POST","/solutions/virtualEvents/events/{param}/sessions/{param}/attendanceReports","keep",,"New-MgVirtualEventSessionAttendanceReport","New-MgVirtualEventSessionAttendanceReport" +"POST","/solutions/virtualEvents/events/{param}/sessions/{param}/attendanceReports/{param}/attendanceRecords","keep",,"New-MgVirtualEventSessionAttendanceReportAttendanceRecord","New-MgVirtualEventSessionAttendanceReportAttendanceRecord" +"POST","/solutions/virtualEvents/events/{param}/setExternalEventInformation","rename","VirtualEventExternalEventInformation","Invoke-MgVirtualEventSetExternalEventInformation","Set-MgVirtualEventExternalEventInformation" +"POST","/solutions/virtualEvents/townhalls","keep",,"New-MgVirtualEventTownhall","New-MgVirtualEventTownhall" +"POST","/solutions/virtualEvents/townhalls/{param}/presenters","keep",,"New-MgVirtualEventTownhallPresenter","New-MgVirtualEventTownhallPresenter" +"POST","/solutions/virtualEvents/townhalls/{param}/sessions","keep",,"New-MgVirtualEventTownhallSession","New-MgVirtualEventTownhallSession" +"POST","/solutions/virtualEvents/townhalls/{param}/sessions/{param}/attendanceReports","keep",,"New-MgVirtualEventTownhallSessionAttendanceReport","New-MgVirtualEventTownhallSessionAttendanceReport" +"POST","/solutions/virtualEvents/townhalls/{param}/sessions/{param}/attendanceReports/{param}/attendanceRecords","keep",,"New-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord","New-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord" +"POST","/solutions/virtualEvents/webinars","keep",,"New-MgVirtualEventWebinar","New-MgVirtualEventWebinar" +"POST","/solutions/virtualEvents/webinars/{param}/presenters","keep",,"New-MgVirtualEventWebinarPresenter","New-MgVirtualEventWebinarPresenter" +"POST","/solutions/virtualEvents/webinars/{param}/registrationConfiguration/questions","keep",,"New-MgVirtualEventWebinarRegistrationConfigurationQuestion","New-MgVirtualEventWebinarRegistrationConfigurationQuestion" +"POST","/solutions/virtualEvents/webinars/{param}/registrations","keep",,"New-MgVirtualEventWebinarRegistration","New-MgVirtualEventWebinarRegistration" +"POST","/solutions/virtualEvents/webinars/{param}/registrations/{param}/cancel","rename","VirtualEventWebinarRegistration","Invoke-MgVirtualEventWebinarRegistrationCancel","Stop-MgVirtualEventWebinarRegistration" +"POST","/solutions/virtualEvents/webinars/{param}/sessions","keep",,"New-MgVirtualEventWebinarSession","New-MgVirtualEventWebinarSession" +"POST","/solutions/virtualEvents/webinars/{param}/sessions/{param}/attendanceReports","keep",,"New-MgVirtualEventWebinarSessionAttendanceReport","New-MgVirtualEventWebinarSessionAttendanceReport" +"POST","/solutions/virtualEvents/webinars/{param}/sessions/{param}/attendanceReports/{param}/attendanceRecords","keep",,"New-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord","New-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord" +"POST","/subscribedSkus","keep",,"New-MgSubscribedSku","New-MgSubscribedSku" +"POST","/subscriptions","keep",,"New-MgSubscription","New-MgSubscription" +"POST","/subscriptions/{param}/reauthorize","rename","ReauthorizeSubscription","Invoke-MgSubscriptionReauthorize","Invoke-MgReauthorizeSubscription" +"POST","/teams","keep",,"New-MgTeam","New-MgTeam" +"POST","/teams/{param}/archive","rename","ArchiveTeam","Invoke-MgTeamArchive","Invoke-MgArchiveTeam" +"POST","/teams/{param}/channels","keep",,"New-MgTeamChannel","New-MgTeamChannel" +"POST","/teams/{param}/channels/{param}/allMembers","rename","TeamChannelMember","New-MgTeamChannelAllMember","New-MgTeamChannelMember" +"POST","/teams/{param}/channels/{param}/allMembers/add","rename","TeamChannelAllMember","Invoke-MgTeamChannelAllMemberAdd","Add-MgTeamChannelAllMember" +"POST","/teams/{param}/channels/{param}/allMembers/remove","rename","TeamChannelAllMember","Invoke-MgTeamChannelAllMemberRemove","Remove-MgTeamChannelAllMember" +"POST","/teams/{param}/channels/{param}/archive","rename","ArchiveTeamChannel","Invoke-MgTeamChannelArchive","Invoke-MgArchiveTeamChannel" +"POST","/teams/{param}/channels/{param}/completeMigration","rename","TeamChannelMigration","Invoke-MgTeamChannelCompleteMigration","Complete-MgTeamChannelMigration" +"POST","/teams/{param}/channels/{param}/members","suppress",,"New-MgTeamChannelMember","no oracle row; 'New-MgTeamChannelMember' ships from sibling family (see rename entries for this noun)" +"POST","/teams/{param}/channels/{param}/members/add","rename","TeamChannelMember","Invoke-MgTeamChannelMemberAdd","Add-MgTeamChannelMember" +"POST","/teams/{param}/channels/{param}/members/remove","suppress",,"Invoke-MgTeamChannelMemberRemove","no oracle row for POST /teams/{param}/channels/{param}/members/remove and 'Invoke-MgTeamChannelMemberRemove' unshipped" +"POST","/teams/{param}/channels/{param}/messages","keep",,"New-MgTeamChannelMessage","New-MgTeamChannelMessage" +"POST","/teams/{param}/channels/{param}/messages/{param}/hostedContents","keep",,"New-MgTeamChannelMessageHostedContent","New-MgTeamChannelMessageHostedContent" +"POST","/teams/{param}/channels/{param}/messages/{param}/replies","keep",,"New-MgTeamChannelMessageReply","New-MgTeamChannelMessageReply" +"POST","/teams/{param}/channels/{param}/messages/{param}/replies/{param}/hostedContents","keep",,"New-MgTeamChannelMessageReplyHostedContent","New-MgTeamChannelMessageReplyHostedContent" +"POST","/teams/{param}/channels/{param}/messages/{param}/replies/{param}/setReaction","rename","TeamChannelMessageReplyReaction","Invoke-MgTeamChannelMessageReplySetReaction","Set-MgTeamChannelMessageReplyReaction" +"POST","/teams/{param}/channels/{param}/messages/{param}/replies/{param}/softDelete","rename","SoftTeamChannelMessageReplyDelete","Invoke-MgTeamChannelMessageReplySoftDelete","Invoke-MgSoftTeamChannelMessageReplyDelete" +"POST","/teams/{param}/channels/{param}/messages/{param}/replies/{param}/undoSoftDelete","rename","TeamChannelMessageReplySoftDelete","Invoke-MgTeamChannelMessageReplyUndoSoftDelete","Undo-MgTeamChannelMessageReplySoftDelete" +"POST","/teams/{param}/channels/{param}/messages/{param}/replies/{param}/unsetReaction","rename","TeamChannelMessageReplyReaction","Invoke-MgTeamChannelMessageReplyUnsetReaction","Clear-MgTeamChannelMessageReplyReaction" +"POST","/teams/{param}/channels/{param}/messages/{param}/replies/replyWithQuote","rename","GraphTeamChannelMessageReply","Invoke-MgTeamChannelMessageReplyReplyWithQuote","Invoke-MgGraphTeamChannelMessageReply" +"POST","/teams/{param}/channels/{param}/messages/{param}/setReaction","rename","TeamChannelMessageReaction","Invoke-MgTeamChannelMessageSetReaction","Set-MgTeamChannelMessageReaction" +"POST","/teams/{param}/channels/{param}/messages/{param}/softDelete","rename","SoftTeamChannelMessageDelete","Invoke-MgTeamChannelMessageSoftDelete","Invoke-MgSoftTeamChannelMessageDelete" +"POST","/teams/{param}/channels/{param}/messages/{param}/undoSoftDelete","rename","TeamChannelMessageSoftDelete","Invoke-MgTeamChannelMessageUndoSoftDelete","Undo-MgTeamChannelMessageSoftDelete" +"POST","/teams/{param}/channels/{param}/messages/{param}/unsetReaction","rename","TeamChannelMessageReaction","Invoke-MgTeamChannelMessageUnsetReaction","Clear-MgTeamChannelMessageReaction" +"POST","/teams/{param}/channels/{param}/messages/replyWithQuote","rename","GraphTeamChannelMessage","Invoke-MgTeamChannelMessageReplyWithQuote","Invoke-MgGraphTeamChannelMessage" +"POST","/teams/{param}/channels/{param}/provisionEmail","rename","TeamChannelEmail","Invoke-MgTeamChannelProvisionEmail","New-MgTeamChannelEmail" +"POST","/teams/{param}/channels/{param}/removeEmail","rename","TeamChannelEmail","Invoke-MgTeamChannelRemoveEmail","Remove-MgTeamChannelEmail" +"POST","/teams/{param}/channels/{param}/sharedWithTeams","keep",,"New-MgTeamChannelSharedWithTeam","New-MgTeamChannelSharedWithTeam" +"POST","/teams/{param}/channels/{param}/startMigration","rename","TeamChannelMigration","Invoke-MgTeamChannelStartMigration","Start-MgTeamChannelMigration" +"POST","/teams/{param}/channels/{param}/tabs","keep",,"New-MgTeamChannelTab","New-MgTeamChannelTab" +"POST","/teams/{param}/channels/{param}/unarchive","rename","UnarchiveTeamChannel","Invoke-MgTeamChannelUnarchive","Invoke-MgUnarchiveTeamChannel" +"POST","/teams/{param}/clone","rename","Team","Invoke-MgTeamClone","Copy-MgTeam" +"POST","/teams/{param}/completeMigration","rename","TeamMigration","Invoke-MgTeamCompleteMigration","Complete-MgTeamMigration" +"POST","/teams/{param}/installedApps","keep",,"New-MgTeamInstalledApp","New-MgTeamInstalledApp" +"POST","/teams/{param}/installedApps/{param}/upgrade","rename","TeamInstalledApp","Invoke-MgTeamInstalledAppUpgrade","Update-MgTeamInstalledApp" +"POST","/teams/{param}/members","keep",,"New-MgTeamMember","New-MgTeamMember" +"POST","/teams/{param}/members/add","rename","TeamMember","Invoke-MgTeamMemberAdd","Add-MgTeamMember" +"POST","/teams/{param}/members/remove","suppress",,"Invoke-MgTeamMemberRemove","no oracle row for POST /teams/{param}/members/remove and 'Invoke-MgTeamMemberRemove' unshipped" +"POST","/teams/{param}/operations","keep",,"New-MgTeamOperation","New-MgTeamOperation" +"POST","/teams/{param}/permissionGrants","keep",,"New-MgTeamPermissionGrant","New-MgTeamPermissionGrant" +"POST","/teams/{param}/primaryChannel/allMembers","rename","TeamPrimaryChannelMember","New-MgTeamPrimaryChannelAllMember","New-MgTeamPrimaryChannelMember" +"POST","/teams/{param}/primaryChannel/allMembers/add","rename","TeamPrimaryChannelAllMember","Invoke-MgTeamPrimaryChannelAllMemberAdd","Add-MgTeamPrimaryChannelAllMember" +"POST","/teams/{param}/primaryChannel/allMembers/remove","rename","TeamPrimaryChannelAllMember","Invoke-MgTeamPrimaryChannelAllMemberRemove","Remove-MgTeamPrimaryChannelAllMember" +"POST","/teams/{param}/primaryChannel/archive","rename","ArchiveTeamPrimaryChannel","Invoke-MgTeamPrimaryChannelArchive","Invoke-MgArchiveTeamPrimaryChannel" +"POST","/teams/{param}/primaryChannel/completeMigration","rename","TeamPrimaryChannelMigration","Invoke-MgTeamPrimaryChannelCompleteMigration","Complete-MgTeamPrimaryChannelMigration" +"POST","/teams/{param}/primaryChannel/members","suppress",,"New-MgTeamPrimaryChannelMember","no oracle row; 'New-MgTeamPrimaryChannelMember' ships from sibling family (see rename entries for this noun)" +"POST","/teams/{param}/primaryChannel/members/add","rename","TeamPrimaryChannelMember","Invoke-MgTeamPrimaryChannelMemberAdd","Add-MgTeamPrimaryChannelMember" +"POST","/teams/{param}/primaryChannel/members/remove","suppress",,"Invoke-MgTeamPrimaryChannelMemberRemove","no oracle row for POST /teams/{param}/primaryChannel/members/remove and 'Invoke-MgTeamPrimaryChannelMemberRemove' unshipped" +"POST","/teams/{param}/primaryChannel/messages","keep",,"New-MgTeamPrimaryChannelMessage","New-MgTeamPrimaryChannelMessage" +"POST","/teams/{param}/primaryChannel/messages/{param}/hostedContents","keep",,"New-MgTeamPrimaryChannelMessageHostedContent","New-MgTeamPrimaryChannelMessageHostedContent" +"POST","/teams/{param}/primaryChannel/messages/{param}/replies","keep",,"New-MgTeamPrimaryChannelMessageReply","New-MgTeamPrimaryChannelMessageReply" +"POST","/teams/{param}/primaryChannel/messages/{param}/replies/{param}/hostedContents","keep",,"New-MgTeamPrimaryChannelMessageReplyHostedContent","New-MgTeamPrimaryChannelMessageReplyHostedContent" +"POST","/teams/{param}/primaryChannel/messages/{param}/replies/{param}/setReaction","rename","TeamPrimaryChannelMessageReplyReaction","Invoke-MgTeamPrimaryChannelMessageReplySetReaction","Set-MgTeamPrimaryChannelMessageReplyReaction" +"POST","/teams/{param}/primaryChannel/messages/{param}/replies/{param}/softDelete","rename","SoftTeamPrimaryChannelMessageReplyDelete","Invoke-MgTeamPrimaryChannelMessageReplySoftDelete","Invoke-MgSoftTeamPrimaryChannelMessageReplyDelete" +"POST","/teams/{param}/primaryChannel/messages/{param}/replies/{param}/undoSoftDelete","rename","TeamPrimaryChannelMessageReplySoftDelete","Invoke-MgTeamPrimaryChannelMessageReplyUndoSoftDelete","Undo-MgTeamPrimaryChannelMessageReplySoftDelete" +"POST","/teams/{param}/primaryChannel/messages/{param}/replies/{param}/unsetReaction","rename","TeamPrimaryChannelMessageReplyReaction","Invoke-MgTeamPrimaryChannelMessageReplyUnsetReaction","Clear-MgTeamPrimaryChannelMessageReplyReaction" +"POST","/teams/{param}/primaryChannel/messages/{param}/replies/replyWithQuote","rename","GraphTeamPrimaryChannelMessageReply","Invoke-MgTeamPrimaryChannelMessageReplyReplyWithQuote","Invoke-MgGraphTeamPrimaryChannelMessageReply" +"POST","/teams/{param}/primaryChannel/messages/{param}/setReaction","rename","TeamPrimaryChannelMessageReaction","Invoke-MgTeamPrimaryChannelMessageSetReaction","Set-MgTeamPrimaryChannelMessageReaction" +"POST","/teams/{param}/primaryChannel/messages/{param}/softDelete","rename","SoftTeamPrimaryChannelMessageDelete","Invoke-MgTeamPrimaryChannelMessageSoftDelete","Invoke-MgSoftTeamPrimaryChannelMessageDelete" +"POST","/teams/{param}/primaryChannel/messages/{param}/undoSoftDelete","rename","TeamPrimaryChannelMessageSoftDelete","Invoke-MgTeamPrimaryChannelMessageUndoSoftDelete","Undo-MgTeamPrimaryChannelMessageSoftDelete" +"POST","/teams/{param}/primaryChannel/messages/{param}/unsetReaction","rename","TeamPrimaryChannelMessageReaction","Invoke-MgTeamPrimaryChannelMessageUnsetReaction","Clear-MgTeamPrimaryChannelMessageReaction" +"POST","/teams/{param}/primaryChannel/messages/replyWithQuote","rename","GraphTeamPrimaryChannelMessage","Invoke-MgTeamPrimaryChannelMessageReplyWithQuote","Invoke-MgGraphTeamPrimaryChannelMessage" +"POST","/teams/{param}/primaryChannel/provisionEmail","rename","TeamPrimaryChannelEmail","Invoke-MgTeamPrimaryChannelProvisionEmail","New-MgTeamPrimaryChannelEmail" +"POST","/teams/{param}/primaryChannel/removeEmail","rename","TeamPrimaryChannelEmail","Invoke-MgTeamPrimaryChannelRemoveEmail","Remove-MgTeamPrimaryChannelEmail" +"POST","/teams/{param}/primaryChannel/sharedWithTeams","keep",,"New-MgTeamPrimaryChannelSharedWithTeam","New-MgTeamPrimaryChannelSharedWithTeam" +"POST","/teams/{param}/primaryChannel/startMigration","rename","TeamPrimaryChannelMigration","Invoke-MgTeamPrimaryChannelStartMigration","Start-MgTeamPrimaryChannelMigration" +"POST","/teams/{param}/primaryChannel/tabs","keep",,"New-MgTeamPrimaryChannelTab","New-MgTeamPrimaryChannelTab" +"POST","/teams/{param}/primaryChannel/unarchive","rename","UnarchiveTeamPrimaryChannel","Invoke-MgTeamPrimaryChannelUnarchive","Invoke-MgUnarchiveTeamPrimaryChannel" +"POST","/teams/{param}/schedule/dayNotes","keep",,"New-MgTeamScheduleDayNote","New-MgTeamScheduleDayNote" +"POST","/teams/{param}/schedule/offerShiftRequests","keep",,"New-MgTeamScheduleOfferShiftRequest","New-MgTeamScheduleOfferShiftRequest" +"POST","/teams/{param}/schedule/openShiftChangeRequests","keep",,"New-MgTeamScheduleOpenShiftChangeRequest","New-MgTeamScheduleOpenShiftChangeRequest" +"POST","/teams/{param}/schedule/openShifts","keep",,"New-MgTeamScheduleOpenShift","New-MgTeamScheduleOpenShift" +"POST","/teams/{param}/schedule/schedulingGroups","keep",,"New-MgTeamScheduleSchedulingGroup","New-MgTeamScheduleSchedulingGroup" +"POST","/teams/{param}/schedule/share","rename","ShareTeamSchedule","Invoke-MgTeamScheduleShare","Invoke-MgShareTeamSchedule" +"POST","/teams/{param}/schedule/shifts","keep",,"New-MgTeamScheduleShift","New-MgTeamScheduleShift" +"POST","/teams/{param}/schedule/swapShiftsChangeRequests","keep",,"New-MgTeamScheduleSwapShiftChangeRequest","New-MgTeamScheduleSwapShiftChangeRequest" +"POST","/teams/{param}/schedule/timeCards","keep",,"New-MgTeamScheduleTimeCard","New-MgTeamScheduleTimeCard" +"POST","/teams/{param}/schedule/timeCards/{param}/clockOut","rename","ClockTeamScheduleTimeCardOut","Invoke-MgTeamScheduleTimeCardClockOut","Invoke-MgClockTeamScheduleTimeCardOut" +"POST","/teams/{param}/schedule/timeCards/{param}/confirm","rename","TeamScheduleTimeCard","Invoke-MgTeamScheduleTimeCardConfirm","Confirm-MgTeamScheduleTimeCard" +"POST","/teams/{param}/schedule/timeCards/{param}/endBreak","rename","TeamScheduleTimeCardBreak","Invoke-MgTeamScheduleTimeCardEndBreak","Stop-MgTeamScheduleTimeCardBreak" +"POST","/teams/{param}/schedule/timeCards/{param}/startBreak","rename","TeamScheduleTimeCardBreak","Invoke-MgTeamScheduleTimeCardStartBreak","Start-MgTeamScheduleTimeCardBreak" +"POST","/teams/{param}/schedule/timeCards/clockIn","rename","ClockTeamScheduleTimeCardIn","Invoke-MgTeamScheduleTimeCardClockIn","Invoke-MgClockTeamScheduleTimeCardIn" +"POST","/teams/{param}/schedule/timeOffReasons","keep",,"New-MgTeamScheduleTimeOffReason","New-MgTeamScheduleTimeOffReason" +"POST","/teams/{param}/schedule/timeOffRequests","keep",,"New-MgTeamScheduleTimeOffRequest","New-MgTeamScheduleTimeOffRequest" +"POST","/teams/{param}/schedule/timesOff","keep",,"New-MgTeamScheduleTimeOff","New-MgTeamScheduleTimeOff" +"POST","/teams/{param}/sendActivityNotification","rename","TeamActivityNotification","Invoke-MgTeamSendActivityNotification","Send-MgTeamActivityNotification" +"POST","/teams/{param}/tags","keep",,"New-MgTeamTag","New-MgTeamTag" +"POST","/teams/{param}/tags/{param}/members","keep",,"New-MgTeamTagMember","New-MgTeamTagMember" +"POST","/teams/{param}/unarchive","rename","UnarchiveTeam","Invoke-MgTeamUnarchive","Invoke-MgUnarchiveTeam" +"POST","/teamwork/deletedChats","keep",,"New-MgTeamworkDeletedChat","New-MgTeamworkDeletedChat" +"POST","/teamwork/deletedChats/{param}/undoDelete","rename","TeamworkDeletedChatDelete","Invoke-MgTeamworkDeletedChatUndoDelete","Undo-MgTeamworkDeletedChatDelete" +"POST","/teamwork/deletedTeams","keep",,"New-MgTeamworkDeletedTeam","New-MgTeamworkDeletedTeam" +"POST","/teamwork/deletedTeams/{param}/channels","keep",,"New-MgTeamworkDeletedTeamChannel","New-MgTeamworkDeletedTeamChannel" +"POST","/teamwork/deletedTeams/{param}/channels/{param}/allMembers","rename","TeamworkDeletedTeamChannelMember","New-MgTeamworkDeletedTeamChannelAllMember","New-MgTeamworkDeletedTeamChannelMember" +"POST","/teamwork/deletedTeams/{param}/channels/{param}/allMembers/add","rename","TeamworkDeletedTeamChannelAllMember","Invoke-MgTeamworkDeletedTeamChannelAllMemberAdd","Add-MgTeamworkDeletedTeamChannelAllMember" +"POST","/teamwork/deletedTeams/{param}/channels/{param}/allMembers/remove","rename","TeamworkDeletedTeamChannelAllMember","Invoke-MgTeamworkDeletedTeamChannelAllMemberRemove","Remove-MgTeamworkDeletedTeamChannelAllMember" +"POST","/teamwork/deletedTeams/{param}/channels/{param}/archive","rename","ArchiveTeamworkDeletedTeamChannel","Invoke-MgTeamworkDeletedTeamChannelArchive","Invoke-MgArchiveTeamworkDeletedTeamChannel" +"POST","/teamwork/deletedTeams/{param}/channels/{param}/completeMigration","rename","TeamworkDeletedTeamChannelMigration","Invoke-MgTeamworkDeletedTeamChannelCompleteMigration","Complete-MgTeamworkDeletedTeamChannelMigration" +"POST","/teamwork/deletedTeams/{param}/channels/{param}/members","suppress",,"New-MgTeamworkDeletedTeamChannelMember","no oracle row; 'New-MgTeamworkDeletedTeamChannelMember' ships from sibling family (see rename entries for this noun)" +"POST","/teamwork/deletedTeams/{param}/channels/{param}/members/add","rename","TeamworkDeletedTeamChannelMember","Invoke-MgTeamworkDeletedTeamChannelMemberAdd","Add-MgTeamworkDeletedTeamChannelMember" +"POST","/teamwork/deletedTeams/{param}/channels/{param}/members/remove","suppress",,"Invoke-MgTeamworkDeletedTeamChannelMemberRemove","no oracle row for POST /teamwork/deletedTeams/{param}/channels/{param}/members/remove and 'Invoke-MgTeamworkDeletedTeamChannelMemberRemove' unshipped" +"POST","/teamwork/deletedTeams/{param}/channels/{param}/messages","keep",,"New-MgTeamworkDeletedTeamChannelMessage","New-MgTeamworkDeletedTeamChannelMessage" +"POST","/teamwork/deletedTeams/{param}/channels/{param}/messages/{param}/hostedContents","keep",,"New-MgTeamworkDeletedTeamChannelMessageHostedContent","New-MgTeamworkDeletedTeamChannelMessageHostedContent" +"POST","/teamwork/deletedTeams/{param}/channels/{param}/messages/{param}/replies","keep",,"New-MgTeamworkDeletedTeamChannelMessageReply","New-MgTeamworkDeletedTeamChannelMessageReply" +"POST","/teamwork/deletedTeams/{param}/channels/{param}/messages/{param}/replies/{param}/hostedContents","keep",,"New-MgTeamworkDeletedTeamChannelMessageReplyHostedContent","New-MgTeamworkDeletedTeamChannelMessageReplyHostedContent" +"POST","/teamwork/deletedTeams/{param}/channels/{param}/messages/{param}/replies/{param}/setReaction","rename","TeamworkDeletedTeamChannelMessageReplyReaction","Invoke-MgTeamworkDeletedTeamChannelMessageReplySetReaction","Set-MgTeamworkDeletedTeamChannelMessageReplyReaction" +"POST","/teamwork/deletedTeams/{param}/channels/{param}/messages/{param}/replies/{param}/softDelete","rename","SoftTeamworkDeletedTeamChannelMessageReplyDelete","Invoke-MgTeamworkDeletedTeamChannelMessageReplySoftDelete","Invoke-MgSoftTeamworkDeletedTeamChannelMessageReplyDelete" +"POST","/teamwork/deletedTeams/{param}/channels/{param}/messages/{param}/replies/{param}/undoSoftDelete","rename","TeamworkDeletedTeamChannelMessageReplySoftDelete","Invoke-MgTeamworkDeletedTeamChannelMessageReplyUndoSoftDelete","Undo-MgTeamworkDeletedTeamChannelMessageReplySoftDelete" +"POST","/teamwork/deletedTeams/{param}/channels/{param}/messages/{param}/replies/{param}/unsetReaction","rename","TeamworkDeletedTeamChannelMessageReplyReaction","Invoke-MgTeamworkDeletedTeamChannelMessageReplyUnsetReaction","Clear-MgTeamworkDeletedTeamChannelMessageReplyReaction" +"POST","/teamwork/deletedTeams/{param}/channels/{param}/messages/{param}/replies/replyWithQuote","rename","GraphTeamworkDeletedTeamChannelMessageReply","Invoke-MgTeamworkDeletedTeamChannelMessageReplyReplyWithQuote","Invoke-MgGraphTeamworkDeletedTeamChannelMessageReply" +"POST","/teamwork/deletedTeams/{param}/channels/{param}/messages/{param}/setReaction","rename","TeamworkDeletedTeamChannelMessageReaction","Invoke-MgTeamworkDeletedTeamChannelMessageSetReaction","Set-MgTeamworkDeletedTeamChannelMessageReaction" +"POST","/teamwork/deletedTeams/{param}/channels/{param}/messages/{param}/softDelete","rename","SoftTeamworkDeletedTeamChannelMessageDelete","Invoke-MgTeamworkDeletedTeamChannelMessageSoftDelete","Invoke-MgSoftTeamworkDeletedTeamChannelMessageDelete" +"POST","/teamwork/deletedTeams/{param}/channels/{param}/messages/{param}/undoSoftDelete","rename","TeamworkDeletedTeamChannelMessageSoftDelete","Invoke-MgTeamworkDeletedTeamChannelMessageUndoSoftDelete","Undo-MgTeamworkDeletedTeamChannelMessageSoftDelete" +"POST","/teamwork/deletedTeams/{param}/channels/{param}/messages/{param}/unsetReaction","rename","TeamworkDeletedTeamChannelMessageReaction","Invoke-MgTeamworkDeletedTeamChannelMessageUnsetReaction","Clear-MgTeamworkDeletedTeamChannelMessageReaction" +"POST","/teamwork/deletedTeams/{param}/channels/{param}/messages/replyWithQuote","rename","GraphTeamworkDeletedTeamChannelMessage","Invoke-MgTeamworkDeletedTeamChannelMessageReplyWithQuote","Invoke-MgGraphTeamworkDeletedTeamChannelMessage" +"POST","/teamwork/deletedTeams/{param}/channels/{param}/provisionEmail","rename","TeamworkDeletedTeamChannelEmail","Invoke-MgTeamworkDeletedTeamChannelProvisionEmail","New-MgTeamworkDeletedTeamChannelEmail" +"POST","/teamwork/deletedTeams/{param}/channels/{param}/removeEmail","rename","TeamworkDeletedTeamChannelEmail","Invoke-MgTeamworkDeletedTeamChannelRemoveEmail","Remove-MgTeamworkDeletedTeamChannelEmail" +"POST","/teamwork/deletedTeams/{param}/channels/{param}/sharedWithTeams","keep",,"New-MgTeamworkDeletedTeamChannelSharedWithTeam","New-MgTeamworkDeletedTeamChannelSharedWithTeam" +"POST","/teamwork/deletedTeams/{param}/channels/{param}/startMigration","rename","TeamworkDeletedTeamChannelMigration","Invoke-MgTeamworkDeletedTeamChannelStartMigration","Start-MgTeamworkDeletedTeamChannelMigration" +"POST","/teamwork/deletedTeams/{param}/channels/{param}/tabs","keep",,"New-MgTeamworkDeletedTeamChannelTab","New-MgTeamworkDeletedTeamChannelTab" +"POST","/teamwork/deletedTeams/{param}/channels/{param}/unarchive","rename","UnarchiveTeamworkDeletedTeamChannel","Invoke-MgTeamworkDeletedTeamChannelUnarchive","Invoke-MgUnarchiveTeamworkDeletedTeamChannel" +"POST","/teamwork/sendActivityNotificationToRecipients","rename","TeamworkActivityNotificationToRecipient","Invoke-MgTeamworkSendActivityNotificationToRecipients","Send-MgTeamworkActivityNotificationToRecipient" +"POST","/teamwork/workforceIntegrations","keep",,"New-MgTeamworkWorkforceIntegration","New-MgTeamworkWorkforceIntegration" +"POST","/tenantRelationships/delegatedAdminCustomers","keep",,"New-MgTenantRelationshipDelegatedAdminCustomer","New-MgTenantRelationshipDelegatedAdminCustomer" +"POST","/tenantRelationships/delegatedAdminCustomers/{param}/serviceManagementDetails","keep",,"New-MgTenantRelationshipDelegatedAdminCustomerServiceManagementDetail","New-MgTenantRelationshipDelegatedAdminCustomerServiceManagementDetail" +"POST","/tenantRelationships/delegatedAdminRelationships","keep",,"New-MgTenantRelationshipDelegatedAdminRelationship","New-MgTenantRelationshipDelegatedAdminRelationship" +"POST","/tenantRelationships/delegatedAdminRelationships/{param}/accessAssignments","keep",,"New-MgTenantRelationshipDelegatedAdminRelationshipAccessAssignment","New-MgTenantRelationshipDelegatedAdminRelationshipAccessAssignment" +"POST","/tenantRelationships/delegatedAdminRelationships/{param}/operations","keep",,"New-MgTenantRelationshipDelegatedAdminRelationshipOperation","New-MgTenantRelationshipDelegatedAdminRelationshipOperation" +"POST","/tenantRelationships/delegatedAdminRelationships/{param}/requests","keep",,"New-MgTenantRelationshipDelegatedAdminRelationshipRequest","New-MgTenantRelationshipDelegatedAdminRelationshipRequest" +"POST","/tenantRelationships/multiTenantOrganization/tenants","keep",,"New-MgTenantRelationshipMultiTenantOrganizationTenant","New-MgTenantRelationshipMultiTenantOrganizationTenant" +"POST","/users","keep",,"New-MgUser","New-MgUser" +"POST","/users/{param}/activities","keep",,"New-MgUserActivity","New-MgUserActivity" +"POST","/users/{param}/activities/{param}/historyItems","keep",,"New-MgUserActivityHistoryItem","New-MgUserActivityHistoryItem" +"POST","/users/{param}/appRoleAssignments","keep",,"New-MgUserAppRoleAssignment","New-MgUserAppRoleAssignment" +"POST","/users/{param}/assignLicense","rename","UserLicense","Invoke-MgUserAssignLicense","Set-MgUserLicense" +"POST","/users/{param}/authentication/emailMethods","keep",,"New-MgUserAuthenticationEmailMethod","New-MgUserAuthenticationEmailMethod" +"POST","/users/{param}/authentication/externalAuthenticationMethods","keep",,"New-MgUserAuthenticationExternalAuthenticationMethod","New-MgUserAuthenticationExternalAuthenticationMethod" +"POST","/users/{param}/authentication/methods","keep",,"New-MgUserAuthenticationMethod","New-MgUserAuthenticationMethod" +"POST","/users/{param}/authentication/methods/{param}/resetPassword","rename","UserAuthenticationMethodPassword","Invoke-MgUserAuthenticationMethodResetPassword","Reset-MgUserAuthenticationMethodPassword" +"POST","/users/{param}/authentication/operations","keep",,"New-MgUserAuthenticationOperation","New-MgUserAuthenticationOperation" +"POST","/users/{param}/authentication/passwordMethods","suppress",,"New-MgUserAuthenticationPasswordMethod","no oracle row for POST /users/{param}/authentication/passwordMethods and 'New-MgUserAuthenticationPasswordMethod' unshipped" +"POST","/users/{param}/authentication/phoneMethods","keep",,"New-MgUserAuthenticationPhoneMethod","New-MgUserAuthenticationPhoneMethod" +"POST","/users/{param}/authentication/phoneMethods/{param}/disableSmsSignIn","rename","UserAuthenticationPhoneMethodSmsSignIn","Invoke-MgUserAuthenticationPhoneMethodDisableSmsSignIn","Disable-MgUserAuthenticationPhoneMethodSmsSignIn" +"POST","/users/{param}/authentication/phoneMethods/{param}/enableSmsSignIn","rename","UserAuthenticationPhoneMethodSmsSignIn","Invoke-MgUserAuthenticationPhoneMethodEnableSmsSignIn","Enable-MgUserAuthenticationPhoneMethodSmsSignIn" +"POST","/users/{param}/authentication/temporaryAccessPassMethods","keep",,"New-MgUserAuthenticationTemporaryAccessPassMethod","New-MgUserAuthenticationTemporaryAccessPassMethod" +"POST","/users/{param}/calendar/calendarPermissions","keep",,"New-MgUserCalendarPermission","New-MgUserCalendarPermission" +"POST","/users/{param}/calendar/events","keep",,"New-MgUserDefaultCalendarEvent","New-MgUserDefaultCalendarEvent" +"POST","/users/{param}/calendar/getSchedule","suppress",,"Invoke-MgUserCalendarGetSchedule","no oracle row for POST /users/{param}/calendar/getSchedule and 'Invoke-MgUserCalendarGetSchedule' unshipped" +"POST","/users/{param}/calendar/permanentDelete","rename","UserCalendarPermanent","Invoke-MgUserCalendarPermanentDelete","Remove-MgUserCalendarPermanent" +"POST","/users/{param}/calendarGroups","keep",,"New-MgUserCalendarGroup","New-MgUserCalendarGroup" +"POST","/users/{param}/calendarGroups/{param}/calendars","keep",,"New-MgUserCalendarGroupCalendar","New-MgUserCalendarGroupCalendar" +"POST","/users/{param}/calendarGroups/{param}/calendars/{param}/calendarPermissions","suppress",,"New-MgUserCalendarGroupCalendarPermission","no oracle row for POST /users/{param}/calendarGroups/{param}/calendars/{param}/calendarPermissions and 'New-MgUserCalendarGroupCalendarPermission' unshipped" +"POST","/users/{param}/calendarGroups/{param}/calendars/{param}/events","suppress",,"New-MgUserCalendarGroupCalendarEvent","no oracle row for POST /users/{param}/calendarGroups/{param}/calendars/{param}/events and 'New-MgUserCalendarGroupCalendarEvent' unshipped" +"POST","/users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/accept","suppress",,"Invoke-MgUserCalendarGroupCalendarEventAccept","no oracle row for POST /users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/accept and 'Invoke-MgUserCalendarGroupCalendarEventAccept' unshipped" +"POST","/users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/attachments","suppress",,"New-MgUserCalendarGroupCalendarEventAttachment","no oracle row for POST /users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/attachments and 'New-MgUserCalendarGroupCalendarEventAttachment' unshipped" +"POST","/users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/attachments/createUploadSession","suppress",,"Invoke-MgUserCalendarGroupCalendarEventAttachmentCreateUploadSession","no oracle row for POST /users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/attachments/createUploadSession and 'Invoke-MgUserCalendarGroupCalendarEventAttachmentCreateUploadSession' unshipped" +"POST","/users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/cancel","suppress",,"Invoke-MgUserCalendarGroupCalendarEventCancel","no oracle row for POST /users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/cancel and 'Invoke-MgUserCalendarGroupCalendarEventCancel' unshipped" +"POST","/users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/decline","suppress",,"Invoke-MgUserCalendarGroupCalendarEventDecline","no oracle row for POST /users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/decline and 'Invoke-MgUserCalendarGroupCalendarEventDecline' unshipped" +"POST","/users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/dismissReminder","suppress",,"Invoke-MgUserCalendarGroupCalendarEventDismissReminder","no oracle row for POST /users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/dismissReminder and 'Invoke-MgUserCalendarGroupCalendarEventDismissReminder' unshipped" +"POST","/users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/extensions","suppress",,"New-MgUserCalendarGroupCalendarEventExtension","no oracle row for POST /users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/extensions and 'New-MgUserCalendarGroupCalendarEventExtension' unshipped" +"POST","/users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/forward","suppress",,"Invoke-MgUserCalendarGroupCalendarEventForward","no oracle row for POST /users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/forward and 'Invoke-MgUserCalendarGroupCalendarEventForward' unshipped" +"POST","/users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/permanentDelete","suppress",,"Invoke-MgUserCalendarGroupCalendarEventPermanentDelete","no oracle row for POST /users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/permanentDelete and 'Invoke-MgUserCalendarGroupCalendarEventPermanentDelete' unshipped" +"POST","/users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/snoozeReminder","suppress",,"Invoke-MgUserCalendarGroupCalendarEventSnoozeReminder","no oracle row for POST /users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/snoozeReminder and 'Invoke-MgUserCalendarGroupCalendarEventSnoozeReminder' unshipped" +"POST","/users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/tentativelyAccept","suppress",,"Invoke-MgUserCalendarGroupCalendarEventTentativelyAccept","no oracle row for POST /users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/tentativelyAccept and 'Invoke-MgUserCalendarGroupCalendarEventTentativelyAccept' unshipped" +"POST","/users/{param}/calendarGroups/{param}/calendars/{param}/getSchedule","suppress",,"Invoke-MgUserCalendarGroupCalendarGetSchedule","no oracle row for POST /users/{param}/calendarGroups/{param}/calendars/{param}/getSchedule and 'Invoke-MgUserCalendarGroupCalendarGetSchedule' unshipped" +"POST","/users/{param}/calendarGroups/{param}/calendars/{param}/permanentDelete","suppress",,"Invoke-MgUserCalendarGroupCalendarPermanentDelete","no oracle row for POST /users/{param}/calendarGroups/{param}/calendars/{param}/permanentDelete and 'Invoke-MgUserCalendarGroupCalendarPermanentDelete' unshipped" +"POST","/users/{param}/calendars","keep",,"New-MgUserCalendar","New-MgUserCalendar" +"POST","/users/{param}/calendars/{param}/events","keep",,"New-MgUserCalendarEvent","New-MgUserCalendarEvent" +"POST","/users/{param}/changePassword","rename","UserPassword","Invoke-MgUserChangePassword","Update-MgUserPassword" +"POST","/users/{param}/chats","keep",,"New-MgUserChat","New-MgUserChat" +"POST","/users/{param}/chats/{param}/completeMigration","rename","UserChatMigration","Invoke-MgUserChatCompleteMigration","Complete-MgUserChatMigration" +"POST","/users/{param}/chats/{param}/hideForUser","rename","UserChatForUser","Invoke-MgUserChatHideForUser","Hide-MgUserChatForUser" +"POST","/users/{param}/chats/{param}/installedApps","keep",,"New-MgUserChatInstalledApp","New-MgUserChatInstalledApp" +"POST","/users/{param}/chats/{param}/installedApps/{param}/upgrade","rename","UserChatInstalledApp","Invoke-MgUserChatInstalledAppUpgrade","Update-MgUserChatInstalledApp" +"POST","/users/{param}/chats/{param}/markChatReadForUser","rename","MarkUserChatReadForUser","Invoke-MgUserChatMarkChatReadForUser","Invoke-MgMarkUserChatReadForUser" +"POST","/users/{param}/chats/{param}/markChatUnreadForUser","rename","MarkUserChatUnreadForUser","Invoke-MgUserChatMarkChatUnreadForUser","Invoke-MgMarkUserChatUnreadForUser" +"POST","/users/{param}/chats/{param}/members","keep",,"New-MgUserChatMember","New-MgUserChatMember" +"POST","/users/{param}/chats/{param}/members/add","rename","UserChatMember","Invoke-MgUserChatMemberAdd","Add-MgUserChatMember" +"POST","/users/{param}/chats/{param}/members/remove","suppress",,"Invoke-MgUserChatMemberRemove","no oracle row for POST /users/{param}/chats/{param}/members/remove and 'Invoke-MgUserChatMemberRemove' unshipped" +"POST","/users/{param}/chats/{param}/messages","keep",,"New-MgUserChatMessage","New-MgUserChatMessage" +"POST","/users/{param}/chats/{param}/messages/{param}/hostedContents","keep",,"New-MgUserChatMessageHostedContent","New-MgUserChatMessageHostedContent" +"POST","/users/{param}/chats/{param}/messages/{param}/replies","keep",,"New-MgUserChatMessageReply","New-MgUserChatMessageReply" +"POST","/users/{param}/chats/{param}/messages/{param}/replies/{param}/hostedContents","keep",,"New-MgUserChatMessageReplyHostedContent","New-MgUserChatMessageReplyHostedContent" +"POST","/users/{param}/chats/{param}/messages/{param}/replies/{param}/setReaction","rename","UserChatMessageReplyReaction","Invoke-MgUserChatMessageReplySetReaction","Set-MgUserChatMessageReplyReaction" +"POST","/users/{param}/chats/{param}/messages/{param}/replies/{param}/softDelete","rename","SoftUserChatMessageReplyDelete","Invoke-MgUserChatMessageReplySoftDelete","Invoke-MgSoftUserChatMessageReplyDelete" +"POST","/users/{param}/chats/{param}/messages/{param}/replies/{param}/undoSoftDelete","rename","UserChatMessageReplySoftDelete","Invoke-MgUserChatMessageReplyUndoSoftDelete","Undo-MgUserChatMessageReplySoftDelete" +"POST","/users/{param}/chats/{param}/messages/{param}/replies/{param}/unsetReaction","rename","UserChatMessageReplyReaction","Invoke-MgUserChatMessageReplyUnsetReaction","Clear-MgUserChatMessageReplyReaction" +"POST","/users/{param}/chats/{param}/messages/{param}/replies/replyWithQuote","rename","GraphUserChatMessageReply","Invoke-MgUserChatMessageReplyReplyWithQuote","Invoke-MgGraphUserChatMessageReply" +"POST","/users/{param}/chats/{param}/messages/{param}/setReaction","rename","UserChatMessageReaction","Invoke-MgUserChatMessageSetReaction","Set-MgUserChatMessageReaction" +"POST","/users/{param}/chats/{param}/messages/{param}/softDelete","rename","SoftUserChatMessageDelete","Invoke-MgUserChatMessageSoftDelete","Invoke-MgSoftUserChatMessageDelete" +"POST","/users/{param}/chats/{param}/messages/{param}/undoSoftDelete","rename","UserChatMessageSoftDelete","Invoke-MgUserChatMessageUndoSoftDelete","Undo-MgUserChatMessageSoftDelete" +"POST","/users/{param}/chats/{param}/messages/{param}/unsetReaction","rename","UserChatMessageReaction","Invoke-MgUserChatMessageUnsetReaction","Clear-MgUserChatMessageReaction" +"POST","/users/{param}/chats/{param}/messages/replyWithQuote","rename","GraphUserChatMessage","Invoke-MgUserChatMessageReplyWithQuote","Invoke-MgGraphUserChatMessage" +"POST","/users/{param}/chats/{param}/permissionGrants","keep",,"New-MgUserChatPermissionGrant","New-MgUserChatPermissionGrant" +"POST","/users/{param}/chats/{param}/pinnedMessages","keep",,"New-MgUserChatPinnedMessage","New-MgUserChatPinnedMessage" +"POST","/users/{param}/chats/{param}/removeAllAccessForUser","rename","UserChatAccessForUser","Invoke-MgUserChatRemoveAllAccessForUser","Remove-MgUserChatAccessForUser" +"POST","/users/{param}/chats/{param}/sendActivityNotification","rename","UserChatActivityNotification","Invoke-MgUserChatSendActivityNotification","Send-MgUserChatActivityNotification" +"POST","/users/{param}/chats/{param}/startMigration","rename","UserChatMigration","Invoke-MgUserChatStartMigration","Start-MgUserChatMigration" +"POST","/users/{param}/chats/{param}/tabs","keep",,"New-MgUserChatTab","New-MgUserChatTab" +"POST","/users/{param}/chats/{param}/targetedMessages","keep",,"New-MgUserChatTargetedMessage","New-MgUserChatTargetedMessage" +"POST","/users/{param}/chats/{param}/targetedMessages/{param}/hostedContents","keep",,"New-MgUserChatTargetedMessageHostedContent","New-MgUserChatTargetedMessageHostedContent" +"POST","/users/{param}/chats/{param}/targetedMessages/{param}/replies","keep",,"New-MgUserChatTargetedMessageReply","New-MgUserChatTargetedMessageReply" +"POST","/users/{param}/chats/{param}/targetedMessages/{param}/replies/{param}/hostedContents","keep",,"New-MgUserChatTargetedMessageReplyHostedContent","New-MgUserChatTargetedMessageReplyHostedContent" +"POST","/users/{param}/chats/{param}/targetedMessages/{param}/replies/{param}/setReaction","rename","UserChatTargetedMessageReplyReaction","Invoke-MgUserChatTargetedMessageReplySetReaction","Set-MgUserChatTargetedMessageReplyReaction" +"POST","/users/{param}/chats/{param}/targetedMessages/{param}/replies/{param}/softDelete","rename","SoftUserChatTargetedMessageReplyDelete","Invoke-MgUserChatTargetedMessageReplySoftDelete","Invoke-MgSoftUserChatTargetedMessageReplyDelete" +"POST","/users/{param}/chats/{param}/targetedMessages/{param}/replies/{param}/undoSoftDelete","rename","UserChatTargetedMessageReplySoftDelete","Invoke-MgUserChatTargetedMessageReplyUndoSoftDelete","Undo-MgUserChatTargetedMessageReplySoftDelete" +"POST","/users/{param}/chats/{param}/targetedMessages/{param}/replies/{param}/unsetReaction","rename","UserChatTargetedMessageReplyReaction","Invoke-MgUserChatTargetedMessageReplyUnsetReaction","Clear-MgUserChatTargetedMessageReplyReaction" +"POST","/users/{param}/chats/{param}/targetedMessages/{param}/replies/replyWithQuote","rename","GraphUserChatTargetedMessageReply","Invoke-MgUserChatTargetedMessageReplyReplyWithQuote","Invoke-MgGraphUserChatTargetedMessageReply" +"POST","/users/{param}/chats/{param}/unhideForUser","rename","GraphUserChat","Invoke-MgUserChatUnhideForUser","Invoke-MgGraphUserChat" +"POST","/users/{param}/checkMemberGroups","rename","UserMemberGroup","Invoke-MgUserCheckMemberGroups","Confirm-MgUserMemberGroup" +"POST","/users/{param}/checkMemberObjects","rename","UserMemberObject","Invoke-MgUserCheckMemberObjects","Confirm-MgUserMemberObject" +"POST","/users/{param}/contactFolders","keep",,"New-MgUserContactFolder","New-MgUserContactFolder" +"POST","/users/{param}/contactFolders/{param}/childFolders","keep",,"New-MgUserContactFolderChildFolder","New-MgUserContactFolderChildFolder" +"POST","/users/{param}/contactFolders/{param}/childFolders/{param}/contacts","keep",,"New-MgUserContactFolderChildFolderContact","New-MgUserContactFolderChildFolderContact" +"POST","/users/{param}/contactFolders/{param}/childFolders/{param}/contacts/{param}/extensions","keep",,"New-MgUserContactFolderChildFolderContactExtension","New-MgUserContactFolderChildFolderContactExtension" +"POST","/users/{param}/contactFolders/{param}/childFolders/{param}/contacts/{param}/permanentDelete","rename","UserContactFolderChildFolderContactPermanent","Invoke-MgUserContactFolderChildFolderContactPermanentDelete","Remove-MgUserContactFolderChildFolderContactPermanent" +"POST","/users/{param}/contactFolders/{param}/childFolders/{param}/permanentDelete","rename","UserContactFolderChildFolderPermanent","Invoke-MgUserContactFolderChildFolderPermanentDelete","Remove-MgUserContactFolderChildFolderPermanent" +"POST","/users/{param}/contactFolders/{param}/contacts","keep",,"New-MgUserContactFolderContact","New-MgUserContactFolderContact" +"POST","/users/{param}/contactFolders/{param}/contacts/{param}/extensions","keep",,"New-MgUserContactFolderContactExtension","New-MgUserContactFolderContactExtension" +"POST","/users/{param}/contactFolders/{param}/contacts/{param}/permanentDelete","rename","UserContactFolderContactPermanent","Invoke-MgUserContactFolderContactPermanentDelete","Remove-MgUserContactFolderContactPermanent" +"POST","/users/{param}/contactFolders/{param}/permanentDelete","rename","UserContactFolderPermanent","Invoke-MgUserContactFolderPermanentDelete","Remove-MgUserContactFolderPermanent" +"POST","/users/{param}/contacts","keep",,"New-MgUserContact","New-MgUserContact" +"POST","/users/{param}/contacts/{param}/extensions","keep",,"New-MgUserContactExtension","New-MgUserContactExtension" +"POST","/users/{param}/contacts/{param}/permanentDelete","rename","UserContactPermanent","Invoke-MgUserContactPermanentDelete","Remove-MgUserContactPermanent" +"POST","/users/{param}/deviceManagementTroubleshootingEvents","keep",,"New-MgUserDeviceManagementTroubleshootingEvent","New-MgUserDeviceManagementTroubleshootingEvent" +"POST","/users/{param}/events","keep",,"New-MgUserEvent","New-MgUserEvent" +"POST","/users/{param}/events/{param}/accept","rename","AcceptUserEvent","Invoke-MgUserEventAccept","Invoke-MgAcceptUserEvent" +"POST","/users/{param}/events/{param}/attachments","keep",,"New-MgUserEventAttachment","New-MgUserEventAttachment" +"POST","/users/{param}/events/{param}/attachments/createUploadSession","rename","UserEventAttachmentUploadSession","Invoke-MgUserEventAttachmentCreateUploadSession","New-MgUserEventAttachmentUploadSession" +"POST","/users/{param}/events/{param}/cancel","rename","UserEvent","Invoke-MgUserEventCancel","Stop-MgUserEvent" +"POST","/users/{param}/events/{param}/decline","rename","DeclineUserEvent","Invoke-MgUserEventDecline","Invoke-MgDeclineUserEvent" +"POST","/users/{param}/events/{param}/dismissReminder","rename","DismissUserEventReminder","Invoke-MgUserEventDismissReminder","Invoke-MgDismissUserEventReminder" +"POST","/users/{param}/events/{param}/extensions","keep",,"New-MgUserEventExtension","New-MgUserEventExtension" +"POST","/users/{param}/events/{param}/forward","rename","ForwardUserEvent","Invoke-MgUserEventForward","Invoke-MgForwardUserEvent" +"POST","/users/{param}/events/{param}/permanentDelete","rename","UserEventPermanent","Invoke-MgUserEventPermanentDelete","Remove-MgUserEventPermanent" +"POST","/users/{param}/events/{param}/snoozeReminder","rename","SnoozeUserEventReminder","Invoke-MgUserEventSnoozeReminder","Invoke-MgSnoozeUserEventReminder" +"POST","/users/{param}/events/{param}/tentativelyAccept","rename","AcceptUserEventTentatively","Invoke-MgUserEventTentativelyAccept","Invoke-MgAcceptUserEventTentatively" +"POST","/users/{param}/exportPersonalData","rename","UserPersonalData","Invoke-MgUserExportPersonalData","Export-MgUserPersonalData" +"POST","/users/{param}/extensions","keep",,"New-MgUserExtension","New-MgUserExtension" +"POST","/users/{param}/findMeetingTimes","rename","UserMeetingTime","Invoke-MgUserFindMeetingTimes","Find-MgUserMeetingTime" +"POST","/users/{param}/followedSites/add","rename","UserFollowedSite","Invoke-MgUserFollowedSiteAdd","Add-MgUserFollowedSite" +"POST","/users/{param}/followedSites/remove","rename","UserFollowedSite","Invoke-MgUserFollowedSiteRemove","Remove-MgUserFollowedSite" +"POST","/users/{param}/getMailTips","rename","UserMailTip","Invoke-MgUserGetMailTips","Get-MgUserMailTip" +"POST","/users/{param}/getMemberGroups","rename","UserMemberGroup","Invoke-MgUserGetMemberGroups","Get-MgUserMemberGroup" +"POST","/users/{param}/getMemberObjects","rename","UserMemberObject","Invoke-MgUserGetMemberObjects","Get-MgUserMemberObject" +"POST","/users/{param}/inferenceClassification/overrides","keep",,"New-MgUserInferenceClassificationOverride","New-MgUserInferenceClassificationOverride" +"POST","/users/{param}/insights/shared","keep",,"New-MgUserInsightShared","New-MgUserInsightShared" +"POST","/users/{param}/insights/trending","keep",,"New-MgUserInsightTrending","New-MgUserInsightTrending" +"POST","/users/{param}/insights/used","keep",,"New-MgUserInsightUsed","New-MgUserInsightUsed" +"POST","/users/{param}/joinedTeams","suppress",,"New-MgUserJoinedTeam","no oracle row for POST /users/{param}/joinedTeams and 'New-MgUserJoinedTeam' unshipped" +"POST","/users/{param}/joinedTeams/{param}/archive","suppress",,"Invoke-MgUserJoinedTeamArchive","no oracle row for POST /users/{param}/joinedTeams/{param}/archive and 'Invoke-MgUserJoinedTeamArchive' unshipped" +"POST","/users/{param}/joinedTeams/{param}/channels","suppress",,"New-MgUserJoinedTeamChannel","no oracle row for POST /users/{param}/joinedTeams/{param}/channels and 'New-MgUserJoinedTeamChannel' unshipped" +"POST","/users/{param}/joinedTeams/{param}/channels/{param}/allMembers","suppress",,"New-MgUserJoinedTeamChannelAllMember","no oracle row for POST /users/{param}/joinedTeams/{param}/channels/{param}/allMembers and 'New-MgUserJoinedTeamChannelAllMember' unshipped" +"POST","/users/{param}/joinedTeams/{param}/channels/{param}/allMembers/add","suppress",,"Invoke-MgUserJoinedTeamChannelAllMemberAdd","no oracle row for POST /users/{param}/joinedTeams/{param}/channels/{param}/allMembers/add and 'Invoke-MgUserJoinedTeamChannelAllMemberAdd' unshipped" +"POST","/users/{param}/joinedTeams/{param}/channels/{param}/allMembers/remove","suppress",,"Invoke-MgUserJoinedTeamChannelAllMemberRemove","no oracle row for POST /users/{param}/joinedTeams/{param}/channels/{param}/allMembers/remove and 'Invoke-MgUserJoinedTeamChannelAllMemberRemove' unshipped" +"POST","/users/{param}/joinedTeams/{param}/channels/{param}/archive","suppress",,"Invoke-MgUserJoinedTeamChannelArchive","no oracle row for POST /users/{param}/joinedTeams/{param}/channels/{param}/archive and 'Invoke-MgUserJoinedTeamChannelArchive' unshipped" +"POST","/users/{param}/joinedTeams/{param}/channels/{param}/completeMigration","suppress",,"Invoke-MgUserJoinedTeamChannelCompleteMigration","no oracle row for POST /users/{param}/joinedTeams/{param}/channels/{param}/completeMigration and 'Invoke-MgUserJoinedTeamChannelCompleteMigration' unshipped" +"POST","/users/{param}/joinedTeams/{param}/channels/{param}/members","suppress",,"New-MgUserJoinedTeamChannelMember","no oracle row for POST /users/{param}/joinedTeams/{param}/channels/{param}/members and 'New-MgUserJoinedTeamChannelMember' unshipped" +"POST","/users/{param}/joinedTeams/{param}/channels/{param}/members/add","suppress",,"Invoke-MgUserJoinedTeamChannelMemberAdd","no oracle row for POST /users/{param}/joinedTeams/{param}/channels/{param}/members/add and 'Invoke-MgUserJoinedTeamChannelMemberAdd' unshipped" +"POST","/users/{param}/joinedTeams/{param}/channels/{param}/members/remove","suppress",,"Invoke-MgUserJoinedTeamChannelMemberRemove","no oracle row for POST /users/{param}/joinedTeams/{param}/channels/{param}/members/remove and 'Invoke-MgUserJoinedTeamChannelMemberRemove' unshipped" +"POST","/users/{param}/joinedTeams/{param}/channels/{param}/messages","suppress",,"New-MgUserJoinedTeamChannelMessage","no oracle row for POST /users/{param}/joinedTeams/{param}/channels/{param}/messages and 'New-MgUserJoinedTeamChannelMessage' unshipped" +"POST","/users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/hostedContents","suppress",,"New-MgUserJoinedTeamChannelMessageHostedContent","no oracle row for POST /users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/hostedContents and 'New-MgUserJoinedTeamChannelMessageHostedContent' unshipped" +"POST","/users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/replies","suppress",,"New-MgUserJoinedTeamChannelMessageReply","no oracle row for POST /users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/replies and 'New-MgUserJoinedTeamChannelMessageReply' unshipped" +"POST","/users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/replies/{param}/hostedContents","suppress",,"New-MgUserJoinedTeamChannelMessageReplyHostedContent","no oracle row for POST /users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/replies/{param}/hostedContents and 'New-MgUserJoinedTeamChannelMessageReplyHostedContent' unshipped" +"POST","/users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/replies/{param}/setReaction","suppress",,"Invoke-MgUserJoinedTeamChannelMessageReplySetReaction","no oracle row for POST /users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/replies/{param}/setReaction and 'Invoke-MgUserJoinedTeamChannelMessageReplySetReaction' unshipped" +"POST","/users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/replies/{param}/softDelete","suppress",,"Invoke-MgUserJoinedTeamChannelMessageReplySoftDelete","no oracle row for POST /users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/replies/{param}/softDelete and 'Invoke-MgUserJoinedTeamChannelMessageReplySoftDelete' unshipped" +"POST","/users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/replies/{param}/undoSoftDelete","suppress",,"Invoke-MgUserJoinedTeamChannelMessageReplyUndoSoftDelete","no oracle row for POST /users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/replies/{param}/undoSoftDelete and 'Invoke-MgUserJoinedTeamChannelMessageReplyUndoSoftDelete' unshipped" +"POST","/users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/replies/{param}/unsetReaction","suppress",,"Invoke-MgUserJoinedTeamChannelMessageReplyUnsetReaction","no oracle row for POST /users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/replies/{param}/unsetReaction and 'Invoke-MgUserJoinedTeamChannelMessageReplyUnsetReaction' unshipped" +"POST","/users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/replies/replyWithQuote","suppress",,"Invoke-MgUserJoinedTeamChannelMessageReplyReplyWithQuote","no oracle row for POST /users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/replies/replyWithQuote and 'Invoke-MgUserJoinedTeamChannelMessageReplyReplyWithQuote' unshipped" +"POST","/users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/setReaction","suppress",,"Invoke-MgUserJoinedTeamChannelMessageSetReaction","no oracle row for POST /users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/setReaction and 'Invoke-MgUserJoinedTeamChannelMessageSetReaction' unshipped" +"POST","/users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/softDelete","suppress",,"Invoke-MgUserJoinedTeamChannelMessageSoftDelete","no oracle row for POST /users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/softDelete and 'Invoke-MgUserJoinedTeamChannelMessageSoftDelete' unshipped" +"POST","/users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/undoSoftDelete","suppress",,"Invoke-MgUserJoinedTeamChannelMessageUndoSoftDelete","no oracle row for POST /users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/undoSoftDelete and 'Invoke-MgUserJoinedTeamChannelMessageUndoSoftDelete' unshipped" +"POST","/users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/unsetReaction","suppress",,"Invoke-MgUserJoinedTeamChannelMessageUnsetReaction","no oracle row for POST /users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/unsetReaction and 'Invoke-MgUserJoinedTeamChannelMessageUnsetReaction' unshipped" +"POST","/users/{param}/joinedTeams/{param}/channels/{param}/messages/replyWithQuote","suppress",,"Invoke-MgUserJoinedTeamChannelMessageReplyWithQuote","no oracle row for POST /users/{param}/joinedTeams/{param}/channels/{param}/messages/replyWithQuote and 'Invoke-MgUserJoinedTeamChannelMessageReplyWithQuote' unshipped" +"POST","/users/{param}/joinedTeams/{param}/channels/{param}/provisionEmail","suppress",,"Invoke-MgUserJoinedTeamChannelProvisionEmail","no oracle row for POST /users/{param}/joinedTeams/{param}/channels/{param}/provisionEmail and 'Invoke-MgUserJoinedTeamChannelProvisionEmail' unshipped" +"POST","/users/{param}/joinedTeams/{param}/channels/{param}/removeEmail","suppress",,"Invoke-MgUserJoinedTeamChannelRemoveEmail","no oracle row for POST /users/{param}/joinedTeams/{param}/channels/{param}/removeEmail and 'Invoke-MgUserJoinedTeamChannelRemoveEmail' unshipped" +"POST","/users/{param}/joinedTeams/{param}/channels/{param}/sharedWithTeams","suppress",,"New-MgUserJoinedTeamChannelSharedWithTeam","no oracle row for POST /users/{param}/joinedTeams/{param}/channels/{param}/sharedWithTeams and 'New-MgUserJoinedTeamChannelSharedWithTeam' unshipped" +"POST","/users/{param}/joinedTeams/{param}/channels/{param}/startMigration","suppress",,"Invoke-MgUserJoinedTeamChannelStartMigration","no oracle row for POST /users/{param}/joinedTeams/{param}/channels/{param}/startMigration and 'Invoke-MgUserJoinedTeamChannelStartMigration' unshipped" +"POST","/users/{param}/joinedTeams/{param}/channels/{param}/tabs","suppress",,"New-MgUserJoinedTeamChannelTab","no oracle row for POST /users/{param}/joinedTeams/{param}/channels/{param}/tabs and 'New-MgUserJoinedTeamChannelTab' unshipped" +"POST","/users/{param}/joinedTeams/{param}/channels/{param}/unarchive","suppress",,"Invoke-MgUserJoinedTeamChannelUnarchive","no oracle row for POST /users/{param}/joinedTeams/{param}/channels/{param}/unarchive and 'Invoke-MgUserJoinedTeamChannelUnarchive' unshipped" +"POST","/users/{param}/joinedTeams/{param}/clone","suppress",,"Invoke-MgUserJoinedTeamClone","no oracle row for POST /users/{param}/joinedTeams/{param}/clone and 'Invoke-MgUserJoinedTeamClone' unshipped" +"POST","/users/{param}/joinedTeams/{param}/completeMigration","suppress",,"Invoke-MgUserJoinedTeamCompleteMigration","no oracle row for POST /users/{param}/joinedTeams/{param}/completeMigration and 'Invoke-MgUserJoinedTeamCompleteMigration' unshipped" +"POST","/users/{param}/joinedTeams/{param}/installedApps","suppress",,"New-MgUserJoinedTeamInstalledApp","no oracle row for POST /users/{param}/joinedTeams/{param}/installedApps and 'New-MgUserJoinedTeamInstalledApp' unshipped" +"POST","/users/{param}/joinedTeams/{param}/installedApps/{param}/upgrade","suppress",,"Invoke-MgUserJoinedTeamInstalledAppUpgrade","no oracle row for POST /users/{param}/joinedTeams/{param}/installedApps/{param}/upgrade and 'Invoke-MgUserJoinedTeamInstalledAppUpgrade' unshipped" +"POST","/users/{param}/joinedTeams/{param}/members","suppress",,"New-MgUserJoinedTeamMember","no oracle row for POST /users/{param}/joinedTeams/{param}/members and 'New-MgUserJoinedTeamMember' unshipped" +"POST","/users/{param}/joinedTeams/{param}/members/add","suppress",,"Invoke-MgUserJoinedTeamMemberAdd","no oracle row for POST /users/{param}/joinedTeams/{param}/members/add and 'Invoke-MgUserJoinedTeamMemberAdd' unshipped" +"POST","/users/{param}/joinedTeams/{param}/members/remove","suppress",,"Invoke-MgUserJoinedTeamMemberRemove","no oracle row for POST /users/{param}/joinedTeams/{param}/members/remove and 'Invoke-MgUserJoinedTeamMemberRemove' unshipped" +"POST","/users/{param}/joinedTeams/{param}/operations","suppress",,"New-MgUserJoinedTeamOperation","no oracle row for POST /users/{param}/joinedTeams/{param}/operations and 'New-MgUserJoinedTeamOperation' unshipped" +"POST","/users/{param}/joinedTeams/{param}/permissionGrants","suppress",,"New-MgUserJoinedTeamPermissionGrant","no oracle row for POST /users/{param}/joinedTeams/{param}/permissionGrants and 'New-MgUserJoinedTeamPermissionGrant' unshipped" +"POST","/users/{param}/joinedTeams/{param}/primaryChannel/allMembers","suppress",,"New-MgUserJoinedTeamPrimaryChannelAllMember","no oracle row for POST /users/{param}/joinedTeams/{param}/primaryChannel/allMembers and 'New-MgUserJoinedTeamPrimaryChannelAllMember' unshipped" +"POST","/users/{param}/joinedTeams/{param}/primaryChannel/allMembers/add","suppress",,"Invoke-MgUserJoinedTeamPrimaryChannelAllMemberAdd","no oracle row for POST /users/{param}/joinedTeams/{param}/primaryChannel/allMembers/add and 'Invoke-MgUserJoinedTeamPrimaryChannelAllMemberAdd' unshipped" +"POST","/users/{param}/joinedTeams/{param}/primaryChannel/allMembers/remove","suppress",,"Invoke-MgUserJoinedTeamPrimaryChannelAllMemberRemove","no oracle row for POST /users/{param}/joinedTeams/{param}/primaryChannel/allMembers/remove and 'Invoke-MgUserJoinedTeamPrimaryChannelAllMemberRemove' unshipped" +"POST","/users/{param}/joinedTeams/{param}/primaryChannel/archive","suppress",,"Invoke-MgUserJoinedTeamPrimaryChannelArchive","no oracle row for POST /users/{param}/joinedTeams/{param}/primaryChannel/archive and 'Invoke-MgUserJoinedTeamPrimaryChannelArchive' unshipped" +"POST","/users/{param}/joinedTeams/{param}/primaryChannel/completeMigration","suppress",,"Invoke-MgUserJoinedTeamPrimaryChannelCompleteMigration","no oracle row for POST /users/{param}/joinedTeams/{param}/primaryChannel/completeMigration and 'Invoke-MgUserJoinedTeamPrimaryChannelCompleteMigration' unshipped" +"POST","/users/{param}/joinedTeams/{param}/primaryChannel/members","suppress",,"New-MgUserJoinedTeamPrimaryChannelMember","no oracle row for POST /users/{param}/joinedTeams/{param}/primaryChannel/members and 'New-MgUserJoinedTeamPrimaryChannelMember' unshipped" +"POST","/users/{param}/joinedTeams/{param}/primaryChannel/members/add","suppress",,"Invoke-MgUserJoinedTeamPrimaryChannelMemberAdd","no oracle row for POST /users/{param}/joinedTeams/{param}/primaryChannel/members/add and 'Invoke-MgUserJoinedTeamPrimaryChannelMemberAdd' unshipped" +"POST","/users/{param}/joinedTeams/{param}/primaryChannel/members/remove","suppress",,"Invoke-MgUserJoinedTeamPrimaryChannelMemberRemove","no oracle row for POST /users/{param}/joinedTeams/{param}/primaryChannel/members/remove and 'Invoke-MgUserJoinedTeamPrimaryChannelMemberRemove' unshipped" +"POST","/users/{param}/joinedTeams/{param}/primaryChannel/messages","suppress",,"New-MgUserJoinedTeamPrimaryChannelMessage","no oracle row for POST /users/{param}/joinedTeams/{param}/primaryChannel/messages and 'New-MgUserJoinedTeamPrimaryChannelMessage' unshipped" +"POST","/users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/hostedContents","suppress",,"New-MgUserJoinedTeamPrimaryChannelMessageHostedContent","no oracle row for POST /users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/hostedContents and 'New-MgUserJoinedTeamPrimaryChannelMessageHostedContent' unshipped" +"POST","/users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/replies","suppress",,"New-MgUserJoinedTeamPrimaryChannelMessageReply","no oracle row for POST /users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/replies and 'New-MgUserJoinedTeamPrimaryChannelMessageReply' unshipped" +"POST","/users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/replies/{param}/hostedContents","suppress",,"New-MgUserJoinedTeamPrimaryChannelMessageReplyHostedContent","no oracle row for POST /users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/replies/{param}/hostedContents and 'New-MgUserJoinedTeamPrimaryChannelMessageReplyHostedContent' unshipped" +"POST","/users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/replies/{param}/setReaction","suppress",,"Invoke-MgUserJoinedTeamPrimaryChannelMessageReplySetReaction","no oracle row for POST /users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/replies/{param}/setReaction and 'Invoke-MgUserJoinedTeamPrimaryChannelMessageReplySetReaction' unshipped" +"POST","/users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/replies/{param}/softDelete","suppress",,"Invoke-MgUserJoinedTeamPrimaryChannelMessageReplySoftDelete","no oracle row for POST /users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/replies/{param}/softDelete and 'Invoke-MgUserJoinedTeamPrimaryChannelMessageReplySoftDelete' unshipped" +"POST","/users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/replies/{param}/undoSoftDelete","suppress",,"Invoke-MgUserJoinedTeamPrimaryChannelMessageReplyUndoSoftDelete","no oracle row for POST /users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/replies/{param}/undoSoftDelete and 'Invoke-MgUserJoinedTeamPrimaryChannelMessageReplyUndoSoftDelete' unshipped" +"POST","/users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/replies/{param}/unsetReaction","suppress",,"Invoke-MgUserJoinedTeamPrimaryChannelMessageReplyUnsetReaction","no oracle row for POST /users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/replies/{param}/unsetReaction and 'Invoke-MgUserJoinedTeamPrimaryChannelMessageReplyUnsetReaction' unshipped" +"POST","/users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/replies/replyWithQuote","suppress",,"Invoke-MgUserJoinedTeamPrimaryChannelMessageReplyReplyWithQuote","no oracle row for POST /users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/replies/replyWithQuote and 'Invoke-MgUserJoinedTeamPrimaryChannelMessageReplyReplyWithQuote' unshipped" +"POST","/users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/setReaction","suppress",,"Invoke-MgUserJoinedTeamPrimaryChannelMessageSetReaction","no oracle row for POST /users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/setReaction and 'Invoke-MgUserJoinedTeamPrimaryChannelMessageSetReaction' unshipped" +"POST","/users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/softDelete","suppress",,"Invoke-MgUserJoinedTeamPrimaryChannelMessageSoftDelete","no oracle row for POST /users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/softDelete and 'Invoke-MgUserJoinedTeamPrimaryChannelMessageSoftDelete' unshipped" +"POST","/users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/undoSoftDelete","suppress",,"Invoke-MgUserJoinedTeamPrimaryChannelMessageUndoSoftDelete","no oracle row for POST /users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/undoSoftDelete and 'Invoke-MgUserJoinedTeamPrimaryChannelMessageUndoSoftDelete' unshipped" +"POST","/users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/unsetReaction","suppress",,"Invoke-MgUserJoinedTeamPrimaryChannelMessageUnsetReaction","no oracle row for POST /users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/unsetReaction and 'Invoke-MgUserJoinedTeamPrimaryChannelMessageUnsetReaction' unshipped" +"POST","/users/{param}/joinedTeams/{param}/primaryChannel/messages/replyWithQuote","suppress",,"Invoke-MgUserJoinedTeamPrimaryChannelMessageReplyWithQuote","no oracle row for POST /users/{param}/joinedTeams/{param}/primaryChannel/messages/replyWithQuote and 'Invoke-MgUserJoinedTeamPrimaryChannelMessageReplyWithQuote' unshipped" +"POST","/users/{param}/joinedTeams/{param}/primaryChannel/provisionEmail","suppress",,"Invoke-MgUserJoinedTeamPrimaryChannelProvisionEmail","no oracle row for POST /users/{param}/joinedTeams/{param}/primaryChannel/provisionEmail and 'Invoke-MgUserJoinedTeamPrimaryChannelProvisionEmail' unshipped" +"POST","/users/{param}/joinedTeams/{param}/primaryChannel/removeEmail","suppress",,"Invoke-MgUserJoinedTeamPrimaryChannelRemoveEmail","no oracle row for POST /users/{param}/joinedTeams/{param}/primaryChannel/removeEmail and 'Invoke-MgUserJoinedTeamPrimaryChannelRemoveEmail' unshipped" +"POST","/users/{param}/joinedTeams/{param}/primaryChannel/sharedWithTeams","suppress",,"New-MgUserJoinedTeamPrimaryChannelSharedWithTeam","no oracle row for POST /users/{param}/joinedTeams/{param}/primaryChannel/sharedWithTeams and 'New-MgUserJoinedTeamPrimaryChannelSharedWithTeam' unshipped" +"POST","/users/{param}/joinedTeams/{param}/primaryChannel/startMigration","suppress",,"Invoke-MgUserJoinedTeamPrimaryChannelStartMigration","no oracle row for POST /users/{param}/joinedTeams/{param}/primaryChannel/startMigration and 'Invoke-MgUserJoinedTeamPrimaryChannelStartMigration' unshipped" +"POST","/users/{param}/joinedTeams/{param}/primaryChannel/tabs","suppress",,"New-MgUserJoinedTeamPrimaryChannelTab","no oracle row for POST /users/{param}/joinedTeams/{param}/primaryChannel/tabs and 'New-MgUserJoinedTeamPrimaryChannelTab' unshipped" +"POST","/users/{param}/joinedTeams/{param}/primaryChannel/unarchive","suppress",,"Invoke-MgUserJoinedTeamPrimaryChannelUnarchive","no oracle row for POST /users/{param}/joinedTeams/{param}/primaryChannel/unarchive and 'Invoke-MgUserJoinedTeamPrimaryChannelUnarchive' unshipped" +"POST","/users/{param}/joinedTeams/{param}/schedule/dayNotes","suppress",,"New-MgUserJoinedTeamScheduleDayNote","no oracle row for POST /users/{param}/joinedTeams/{param}/schedule/dayNotes and 'New-MgUserJoinedTeamScheduleDayNote' unshipped" +"POST","/users/{param}/joinedTeams/{param}/schedule/offerShiftRequests","suppress",,"New-MgUserJoinedTeamScheduleOfferShiftRequest","no oracle row for POST /users/{param}/joinedTeams/{param}/schedule/offerShiftRequests and 'New-MgUserJoinedTeamScheduleOfferShiftRequest' unshipped" +"POST","/users/{param}/joinedTeams/{param}/schedule/openShiftChangeRequests","suppress",,"New-MgUserJoinedTeamScheduleOpenShiftChangeRequest","no oracle row for POST /users/{param}/joinedTeams/{param}/schedule/openShiftChangeRequests and 'New-MgUserJoinedTeamScheduleOpenShiftChangeRequest' unshipped" +"POST","/users/{param}/joinedTeams/{param}/schedule/openShifts","suppress",,"New-MgUserJoinedTeamScheduleOpenShift","no oracle row for POST /users/{param}/joinedTeams/{param}/schedule/openShifts and 'New-MgUserJoinedTeamScheduleOpenShift' unshipped" +"POST","/users/{param}/joinedTeams/{param}/schedule/schedulingGroups","suppress",,"New-MgUserJoinedTeamScheduleSchedulingGroup","no oracle row for POST /users/{param}/joinedTeams/{param}/schedule/schedulingGroups and 'New-MgUserJoinedTeamScheduleSchedulingGroup' unshipped" +"POST","/users/{param}/joinedTeams/{param}/schedule/share","suppress",,"Invoke-MgUserJoinedTeamScheduleShare","no oracle row for POST /users/{param}/joinedTeams/{param}/schedule/share and 'Invoke-MgUserJoinedTeamScheduleShare' unshipped" +"POST","/users/{param}/joinedTeams/{param}/schedule/shifts","suppress",,"New-MgUserJoinedTeamScheduleShift","no oracle row for POST /users/{param}/joinedTeams/{param}/schedule/shifts and 'New-MgUserJoinedTeamScheduleShift' unshipped" +"POST","/users/{param}/joinedTeams/{param}/schedule/swapShiftsChangeRequests","suppress",,"New-MgUserJoinedTeamScheduleSwapShiftChangeRequest","no oracle row for POST /users/{param}/joinedTeams/{param}/schedule/swapShiftsChangeRequests and 'New-MgUserJoinedTeamScheduleSwapShiftChangeRequest' unshipped" +"POST","/users/{param}/joinedTeams/{param}/schedule/timeCards","suppress",,"New-MgUserJoinedTeamScheduleTimeCard","no oracle row for POST /users/{param}/joinedTeams/{param}/schedule/timeCards and 'New-MgUserJoinedTeamScheduleTimeCard' unshipped" +"POST","/users/{param}/joinedTeams/{param}/schedule/timeCards/{param}/clockOut","suppress",,"Invoke-MgUserJoinedTeamScheduleTimeCardClockOut","no oracle row for POST /users/{param}/joinedTeams/{param}/schedule/timeCards/{param}/clockOut and 'Invoke-MgUserJoinedTeamScheduleTimeCardClockOut' unshipped" +"POST","/users/{param}/joinedTeams/{param}/schedule/timeCards/{param}/confirm","suppress",,"Invoke-MgUserJoinedTeamScheduleTimeCardConfirm","no oracle row for POST /users/{param}/joinedTeams/{param}/schedule/timeCards/{param}/confirm and 'Invoke-MgUserJoinedTeamScheduleTimeCardConfirm' unshipped" +"POST","/users/{param}/joinedTeams/{param}/schedule/timeCards/{param}/endBreak","suppress",,"Invoke-MgUserJoinedTeamScheduleTimeCardEndBreak","no oracle row for POST /users/{param}/joinedTeams/{param}/schedule/timeCards/{param}/endBreak and 'Invoke-MgUserJoinedTeamScheduleTimeCardEndBreak' unshipped" +"POST","/users/{param}/joinedTeams/{param}/schedule/timeCards/{param}/startBreak","suppress",,"Invoke-MgUserJoinedTeamScheduleTimeCardStartBreak","no oracle row for POST /users/{param}/joinedTeams/{param}/schedule/timeCards/{param}/startBreak and 'Invoke-MgUserJoinedTeamScheduleTimeCardStartBreak' unshipped" +"POST","/users/{param}/joinedTeams/{param}/schedule/timeCards/clockIn","suppress",,"Invoke-MgUserJoinedTeamScheduleTimeCardClockIn","no oracle row for POST /users/{param}/joinedTeams/{param}/schedule/timeCards/clockIn and 'Invoke-MgUserJoinedTeamScheduleTimeCardClockIn' unshipped" +"POST","/users/{param}/joinedTeams/{param}/schedule/timeOffReasons","suppress",,"New-MgUserJoinedTeamScheduleTimeOffReason","no oracle row for POST /users/{param}/joinedTeams/{param}/schedule/timeOffReasons and 'New-MgUserJoinedTeamScheduleTimeOffReason' unshipped" +"POST","/users/{param}/joinedTeams/{param}/schedule/timeOffRequests","suppress",,"New-MgUserJoinedTeamScheduleTimeOffRequest","no oracle row for POST /users/{param}/joinedTeams/{param}/schedule/timeOffRequests and 'New-MgUserJoinedTeamScheduleTimeOffRequest' unshipped" +"POST","/users/{param}/joinedTeams/{param}/schedule/timesOff","suppress",,"New-MgUserJoinedTeamScheduleTimeOff","no oracle row for POST /users/{param}/joinedTeams/{param}/schedule/timesOff and 'New-MgUserJoinedTeamScheduleTimeOff' unshipped" +"POST","/users/{param}/joinedTeams/{param}/sendActivityNotification","suppress",,"Invoke-MgUserJoinedTeamSendActivityNotification","no oracle row for POST /users/{param}/joinedTeams/{param}/sendActivityNotification and 'Invoke-MgUserJoinedTeamSendActivityNotification' unshipped" +"POST","/users/{param}/joinedTeams/{param}/tags","suppress",,"New-MgUserJoinedTeamTag","no oracle row for POST /users/{param}/joinedTeams/{param}/tags and 'New-MgUserJoinedTeamTag' unshipped" +"POST","/users/{param}/joinedTeams/{param}/tags/{param}/members","suppress",,"New-MgUserJoinedTeamTagMember","no oracle row for POST /users/{param}/joinedTeams/{param}/tags/{param}/members and 'New-MgUserJoinedTeamTagMember' unshipped" +"POST","/users/{param}/joinedTeams/{param}/unarchive","suppress",,"Invoke-MgUserJoinedTeamUnarchive","no oracle row for POST /users/{param}/joinedTeams/{param}/unarchive and 'Invoke-MgUserJoinedTeamUnarchive' unshipped" +"POST","/users/{param}/licenseDetails","suppress",,"New-MgUserLicenseDetail","no oracle row for POST /users/{param}/licenseDetails and 'New-MgUserLicenseDetail' unshipped" +"POST","/users/{param}/mailFolders","keep",,"New-MgUserMailFolder","New-MgUserMailFolder" +"POST","/users/{param}/mailFolders/{param}/childFolders","keep",,"New-MgUserMailFolderChildFolder","New-MgUserMailFolderChildFolder" +"POST","/users/{param}/mailFolders/{param}/childFolders/{param}/copy","rename","UserMailFolderChildFolder","Invoke-MgUserMailFolderChildFolderCopy","Copy-MgUserMailFolderChildFolder" +"POST","/users/{param}/mailFolders/{param}/childFolders/{param}/messageRules","keep",,"New-MgUserMailFolderChildFolderMessageRule","New-MgUserMailFolderChildFolderMessageRule" +"POST","/users/{param}/mailFolders/{param}/childFolders/{param}/messages","keep",,"New-MgUserMailFolderChildFolderMessage","New-MgUserMailFolderChildFolderMessage" +"POST","/users/{param}/mailFolders/{param}/childFolders/{param}/messages/{param}/attachments","keep",,"New-MgUserMailFolderChildFolderMessageAttachment","New-MgUserMailFolderChildFolderMessageAttachment" +"POST","/users/{param}/mailFolders/{param}/childFolders/{param}/messages/{param}/attachments/createUploadSession","rename","UserMailFolderChildFolderMessageAttachmentUploadSession","Invoke-MgUserMailFolderChildFolderMessageAttachmentCreateUploadSession","New-MgUserMailFolderChildFolderMessageAttachmentUploadSession" +"POST","/users/{param}/mailFolders/{param}/childFolders/{param}/messages/{param}/copy","rename","UserMailFolderChildFolderMessage","Invoke-MgUserMailFolderChildFolderMessageCopy","Copy-MgUserMailFolderChildFolderMessage" +"POST","/users/{param}/mailFolders/{param}/childFolders/{param}/messages/{param}/createForward","rename","UserMailFolderChildFolderMessageForward","Invoke-MgUserMailFolderChildFolderMessageCreateForward","New-MgUserMailFolderChildFolderMessageForward" +"POST","/users/{param}/mailFolders/{param}/childFolders/{param}/messages/{param}/createReply","rename","UserMailFolderChildFolderMessageReply","Invoke-MgUserMailFolderChildFolderMessageCreateReply","New-MgUserMailFolderChildFolderMessageReply" +"POST","/users/{param}/mailFolders/{param}/childFolders/{param}/messages/{param}/createReplyAll","rename","UserMailFolderChildFolderMessageReplyAll","Invoke-MgUserMailFolderChildFolderMessageCreateReplyAll","New-MgUserMailFolderChildFolderMessageReplyAll" +"POST","/users/{param}/mailFolders/{param}/childFolders/{param}/messages/{param}/extensions","keep",,"New-MgUserMailFolderChildFolderMessageExtension","New-MgUserMailFolderChildFolderMessageExtension" +"POST","/users/{param}/mailFolders/{param}/childFolders/{param}/messages/{param}/forward","rename","ForwardUserMailFolderChildFolderMessage","Invoke-MgUserMailFolderChildFolderMessageForward","Invoke-MgForwardUserMailFolderChildFolderMessage" +"POST","/users/{param}/mailFolders/{param}/childFolders/{param}/messages/{param}/move","rename","UserMailFolderChildFolderMessage","Invoke-MgUserMailFolderChildFolderMessageMove","Move-MgUserMailFolderChildFolderMessage" +"POST","/users/{param}/mailFolders/{param}/childFolders/{param}/messages/{param}/permanentDelete","rename","UserMailFolderChildFolderMessagePermanent","Invoke-MgUserMailFolderChildFolderMessagePermanentDelete","Remove-MgUserMailFolderChildFolderMessagePermanent" +"POST","/users/{param}/mailFolders/{param}/childFolders/{param}/messages/{param}/reply","rename","ReplyUserMailFolderChildFolderMessage","Invoke-MgUserMailFolderChildFolderMessageReply","Invoke-MgReplyUserMailFolderChildFolderMessage" +"POST","/users/{param}/mailFolders/{param}/childFolders/{param}/messages/{param}/replyAll","rename","ReplyAllUserMailFolderChildFolderMessage","Invoke-MgUserMailFolderChildFolderMessageReplyAll","Invoke-MgReplyAllUserMailFolderChildFolderMessage" +"POST","/users/{param}/mailFolders/{param}/childFolders/{param}/messages/{param}/send","rename","UserMailFolderChildFolderMessage","Invoke-MgUserMailFolderChildFolderMessageSend","Send-MgUserMailFolderChildFolderMessage" +"POST","/users/{param}/mailFolders/{param}/childFolders/{param}/move","rename","UserMailFolderChildFolder","Invoke-MgUserMailFolderChildFolderMove","Move-MgUserMailFolderChildFolder" +"POST","/users/{param}/mailFolders/{param}/childFolders/{param}/permanentDelete","rename","UserMailFolderChildFolderPermanent","Invoke-MgUserMailFolderChildFolderPermanentDelete","Remove-MgUserMailFolderChildFolderPermanent" +"POST","/users/{param}/mailFolders/{param}/copy","rename","UserMailFolder","Invoke-MgUserMailFolderCopy","Copy-MgUserMailFolder" +"POST","/users/{param}/mailFolders/{param}/messageRules","keep",,"New-MgUserMailFolderMessageRule","New-MgUserMailFolderMessageRule" +"POST","/users/{param}/mailFolders/{param}/messages","keep",,"New-MgUserMailFolderMessage","New-MgUserMailFolderMessage" +"POST","/users/{param}/mailFolders/{param}/messages/{param}/attachments","keep",,"New-MgUserMailFolderMessageAttachment","New-MgUserMailFolderMessageAttachment" +"POST","/users/{param}/mailFolders/{param}/messages/{param}/attachments/createUploadSession","rename","UserMailFolderMessageAttachmentUploadSession","Invoke-MgUserMailFolderMessageAttachmentCreateUploadSession","New-MgUserMailFolderMessageAttachmentUploadSession" +"POST","/users/{param}/mailFolders/{param}/messages/{param}/copy","rename","UserMailFolderMessage","Invoke-MgUserMailFolderMessageCopy","Copy-MgUserMailFolderMessage" +"POST","/users/{param}/mailFolders/{param}/messages/{param}/createForward","rename","UserMailFolderMessageForward","Invoke-MgUserMailFolderMessageCreateForward","New-MgUserMailFolderMessageForward" +"POST","/users/{param}/mailFolders/{param}/messages/{param}/createReply","rename","UserMailFolderMessageReply","Invoke-MgUserMailFolderMessageCreateReply","New-MgUserMailFolderMessageReply" +"POST","/users/{param}/mailFolders/{param}/messages/{param}/createReplyAll","rename","UserMailFolderMessageReplyAll","Invoke-MgUserMailFolderMessageCreateReplyAll","New-MgUserMailFolderMessageReplyAll" +"POST","/users/{param}/mailFolders/{param}/messages/{param}/extensions","keep",,"New-MgUserMailFolderMessageExtension","New-MgUserMailFolderMessageExtension" +"POST","/users/{param}/mailFolders/{param}/messages/{param}/forward","rename","ForwardUserMailFolderMessage","Invoke-MgUserMailFolderMessageForward","Invoke-MgForwardUserMailFolderMessage" +"POST","/users/{param}/mailFolders/{param}/messages/{param}/move","rename","UserMailFolderMessage","Invoke-MgUserMailFolderMessageMove","Move-MgUserMailFolderMessage" +"POST","/users/{param}/mailFolders/{param}/messages/{param}/permanentDelete","rename","UserMailFolderMessagePermanent","Invoke-MgUserMailFolderMessagePermanentDelete","Remove-MgUserMailFolderMessagePermanent" +"POST","/users/{param}/mailFolders/{param}/messages/{param}/reply","rename","ReplyUserMailFolderMessage","Invoke-MgUserMailFolderMessageReply","Invoke-MgReplyUserMailFolderMessage" +"POST","/users/{param}/mailFolders/{param}/messages/{param}/replyAll","rename","ReplyAllUserMailFolderMessage","Invoke-MgUserMailFolderMessageReplyAll","Invoke-MgReplyAllUserMailFolderMessage" +"POST","/users/{param}/mailFolders/{param}/messages/{param}/send","rename","UserMailFolderMessage","Invoke-MgUserMailFolderMessageSend","Send-MgUserMailFolderMessage" +"POST","/users/{param}/mailFolders/{param}/move","rename","UserMailFolder","Invoke-MgUserMailFolderMove","Move-MgUserMailFolder" +"POST","/users/{param}/mailFolders/{param}/permanentDelete","rename","UserMailFolderPermanent","Invoke-MgUserMailFolderPermanentDelete","Remove-MgUserMailFolderPermanent" +"POST","/users/{param}/managedDevices","keep",,"New-MgUserManagedDevice","New-MgUserManagedDevice" +"POST","/users/{param}/managedDevices/{param}/bypassActivationLock","rename","UserManagedDeviceActivationLock","Invoke-MgUserManagedDeviceBypassActivationLock","Skip-MgUserManagedDeviceActivationLock" +"POST","/users/{param}/managedDevices/{param}/cleanWindowsDevice","rename","CleanUserManagedDeviceWindowsDevice","Invoke-MgUserManagedDeviceCleanWindowsDevice","Invoke-MgCleanUserManagedDeviceWindowsDevice" +"POST","/users/{param}/managedDevices/{param}/deleteUserFromSharedAppleDevice","rename","UserManagedDeviceUserFromSharedAppleDevice","Invoke-MgUserManagedDeviceDeleteUserFromSharedAppleDevice","Remove-MgUserManagedDeviceUserFromSharedAppleDevice" +"POST","/users/{param}/managedDevices/{param}/deviceCompliancePolicyStates","keep",,"New-MgUserManagedDeviceCompliancePolicyState","New-MgUserManagedDeviceCompliancePolicyState" +"POST","/users/{param}/managedDevices/{param}/deviceConfigurationStates","keep",,"New-MgUserManagedDeviceConfigurationState","New-MgUserManagedDeviceConfigurationState" +"POST","/users/{param}/managedDevices/{param}/disableLostMode","rename","UserManagedDeviceLostMode","Invoke-MgUserManagedDeviceDisableLostMode","Disable-MgUserManagedDeviceLostMode" +"POST","/users/{param}/managedDevices/{param}/locateDevice","rename","UserManagedDevice","Invoke-MgUserManagedDeviceLocateDevice","Find-MgUserManagedDevice" +"POST","/users/{param}/managedDevices/{param}/logCollectionRequests","rename","UserManagedDeviceLogCollectionResponse","New-MgUserManagedDeviceLogCollectionRequest","New-MgUserManagedDeviceLogCollectionResponse" +"POST","/users/{param}/managedDevices/{param}/logCollectionRequests/{param}/createDownloadUrl","rename","UserManagedDeviceLogCollectionRequestDownloadUrl","Invoke-MgUserManagedDeviceLogCollectionRequestCreateDownloadUrl","New-MgUserManagedDeviceLogCollectionRequestDownloadUrl" +"POST","/users/{param}/managedDevices/{param}/logoutSharedAppleDeviceActiveUser","rename","LogoutUserManagedDeviceSharedAppleDeviceActiveUser","Invoke-MgUserManagedDeviceLogoutSharedAppleDeviceActiveUser","Invoke-MgLogoutUserManagedDeviceSharedAppleDeviceActiveUser" +"POST","/users/{param}/managedDevices/{param}/rebootNow","rename","UserManagedDeviceNow","Invoke-MgUserManagedDeviceRebootNow","Restart-MgUserManagedDeviceNow" +"POST","/users/{param}/managedDevices/{param}/recoverPasscode","rename","UserManagedDevicePasscode","Invoke-MgUserManagedDeviceRecoverPasscode","Restore-MgUserManagedDevicePasscode" +"POST","/users/{param}/managedDevices/{param}/remoteLock","rename","UserManagedDeviceRemote","Invoke-MgUserManagedDeviceRemoteLock","Lock-MgUserManagedDeviceRemote" +"POST","/users/{param}/managedDevices/{param}/requestRemoteAssistance","rename","UserManagedDeviceRemoteAssistance","Invoke-MgUserManagedDeviceRequestRemoteAssistance","Request-MgUserManagedDeviceRemoteAssistance" +"POST","/users/{param}/managedDevices/{param}/resetPasscode","rename","UserManagedDevicePasscode","Invoke-MgUserManagedDeviceResetPasscode","Reset-MgUserManagedDevicePasscode" +"POST","/users/{param}/managedDevices/{param}/retire","rename","RetireUserManagedDevice","Invoke-MgUserManagedDeviceRetire","Invoke-MgRetireUserManagedDevice" +"POST","/users/{param}/managedDevices/{param}/shutDown","rename","DownUserManagedDeviceShut","Invoke-MgUserManagedDeviceShutDown","Invoke-MgDownUserManagedDeviceShut" +"POST","/users/{param}/managedDevices/{param}/syncDevice","rename","UserManagedDevice","Invoke-MgUserManagedDeviceSyncDevice","Sync-MgUserManagedDevice" +"POST","/users/{param}/managedDevices/{param}/updateWindowsDeviceAccount","rename","UserManagedDeviceWindowsDeviceAccount","Invoke-MgUserManagedDeviceUpdateWindowsDeviceAccount","Update-MgUserManagedDeviceWindowsDeviceAccount" +"POST","/users/{param}/managedDevices/{param}/windowsDefenderScan","rename","ScanUserManagedDeviceWindowsDefender","Invoke-MgUserManagedDeviceWindowsDefenderScan","Invoke-MgScanUserManagedDeviceWindowsDefender" +"POST","/users/{param}/managedDevices/{param}/windowsDefenderUpdateSignatures","suppress",,"Invoke-MgUserManagedDeviceWindowsDefenderUpdateSignatures","no oracle row for POST /users/{param}/managedDevices/{param}/windowsDefenderUpdateSignatures and 'Invoke-MgUserManagedDeviceWindowsDefenderUpdateSignatures' unshipped" +"POST","/users/{param}/managedDevices/{param}/windowsProtectionState/detectedMalwareState","keep",,"New-MgUserManagedDeviceWindowsProtectionStateDetectedMalwareState","New-MgUserManagedDeviceWindowsProtectionStateDetectedMalwareState" +"POST","/users/{param}/managedDevices/{param}/wipe","rename","UserManagedDevice","Invoke-MgUserManagedDeviceWipe","Clear-MgUserManagedDevice" +"POST","/users/{param}/messages","keep",,"New-MgUserMessage","New-MgUserMessage" +"POST","/users/{param}/messages/{param}/attachments","keep",,"New-MgUserMessageAttachment","New-MgUserMessageAttachment" +"POST","/users/{param}/messages/{param}/attachments/createUploadSession","rename","UserMessageAttachmentUploadSession","Invoke-MgUserMessageAttachmentCreateUploadSession","New-MgUserMessageAttachmentUploadSession" +"POST","/users/{param}/messages/{param}/copy","rename","UserMessage","Invoke-MgUserMessageCopy","Copy-MgUserMessage" +"POST","/users/{param}/messages/{param}/createForward","rename","UserMessageForward","Invoke-MgUserMessageCreateForward","New-MgUserMessageForward" +"POST","/users/{param}/messages/{param}/createReply","rename","UserMessageReply","Invoke-MgUserMessageCreateReply","New-MgUserMessageReply" +"POST","/users/{param}/messages/{param}/createReplyAll","rename","UserMessageReplyAll","Invoke-MgUserMessageCreateReplyAll","New-MgUserMessageReplyAll" +"POST","/users/{param}/messages/{param}/extensions","keep",,"New-MgUserMessageExtension","New-MgUserMessageExtension" +"POST","/users/{param}/messages/{param}/forward","rename","ForwardUserMessage","Invoke-MgUserMessageForward","Invoke-MgForwardUserMessage" +"POST","/users/{param}/messages/{param}/move","rename","UserMessage","Invoke-MgUserMessageMove","Move-MgUserMessage" +"POST","/users/{param}/messages/{param}/permanentDelete","rename","UserMessagePermanent","Invoke-MgUserMessagePermanentDelete","Remove-MgUserMessagePermanent" +"POST","/users/{param}/messages/{param}/reply","rename","ReplyUserMessage","Invoke-MgUserMessageReply","Invoke-MgReplyUserMessage" +"POST","/users/{param}/messages/{param}/replyAll","rename","ReplyAllUserMessage","Invoke-MgUserMessageReplyAll","Invoke-MgReplyAllUserMessage" +"POST","/users/{param}/messages/{param}/send","rename","UserMessage","Invoke-MgUserMessageSend","Send-MgUserMessage" +"POST","/users/{param}/onenote/notebooks","keep",,"New-MgUserOnenoteNotebook","New-MgUserOnenoteNotebook" +"POST","/users/{param}/onenote/notebooks/{param}/copyNotebook","rename","UserOnenoteNotebook","Invoke-MgUserOnenoteNotebookCopyNotebook","Copy-MgUserOnenoteNotebook" +"POST","/users/{param}/onenote/notebooks/{param}/sectionGroups","keep",,"New-MgUserOnenoteNotebookSectionGroup","New-MgUserOnenoteNotebookSectionGroup" +"POST","/users/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections","keep",,"New-MgUserOnenoteNotebookSectionGroupSection","New-MgUserOnenoteNotebookSectionGroupSection" +"POST","/users/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/copyToNotebook","rename","UserOnenoteNotebookSectionGroupSectionToNotebook","Invoke-MgUserOnenoteNotebookSectionGroupSectionCopyToNotebook","Copy-MgUserOnenoteNotebookSectionGroupSectionToNotebook" +"POST","/users/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/copyToSectionGroup","rename","UserOnenoteNotebookSectionGroupSectionToSectionGroup","Invoke-MgUserOnenoteNotebookSectionGroupSectionCopyToSectionGroup","Copy-MgUserOnenoteNotebookSectionGroupSectionToSectionGroup" +"POST","/users/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages","keep",,"New-MgUserOnenoteNotebookSectionGroupSectionPage","New-MgUserOnenoteNotebookSectionGroupSectionPage" +"POST","/users/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}/copyToSection","rename","UserOnenoteNotebookSectionGroupSectionPageToSection","Invoke-MgUserOnenoteNotebookSectionGroupSectionPageCopyToSection","Copy-MgUserOnenoteNotebookSectionGroupSectionPageToSection" +"POST","/users/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}/onenotePatchContent","rename","UserOnenoteNotebookSectionGroupSectionPage","Invoke-MgUserOnenoteNotebookSectionGroupSectionPageOnenotePatchContent","Update-MgUserOnenoteNotebookSectionGroupSectionPage" +"POST","/users/{param}/onenote/notebooks/{param}/sections","keep",,"New-MgUserOnenoteNotebookSection","New-MgUserOnenoteNotebookSection" +"POST","/users/{param}/onenote/notebooks/{param}/sections/{param}/copyToNotebook","rename","UserOnenoteNotebookSectionToNotebook","Invoke-MgUserOnenoteNotebookSectionCopyToNotebook","Copy-MgUserOnenoteNotebookSectionToNotebook" +"POST","/users/{param}/onenote/notebooks/{param}/sections/{param}/copyToSectionGroup","rename","UserOnenoteNotebookSectionToSectionGroup","Invoke-MgUserOnenoteNotebookSectionCopyToSectionGroup","Copy-MgUserOnenoteNotebookSectionToSectionGroup" +"POST","/users/{param}/onenote/notebooks/{param}/sections/{param}/pages","keep",,"New-MgUserOnenoteNotebookSectionPage","New-MgUserOnenoteNotebookSectionPage" +"POST","/users/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}/copyToSection","rename","UserOnenoteNotebookSectionPageToSection","Invoke-MgUserOnenoteNotebookSectionPageCopyToSection","Copy-MgUserOnenoteNotebookSectionPageToSection" +"POST","/users/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}/onenotePatchContent","rename","UserOnenoteNotebookSectionPage","Invoke-MgUserOnenoteNotebookSectionPageOnenotePatchContent","Update-MgUserOnenoteNotebookSectionPage" +"POST","/users/{param}/onenote/notebooks/getNotebookFromWebUrl","rename","UserOnenoteNotebookFromWebUrl","Invoke-MgUserOnenoteNotebookGetNotebookFromWebUrl","Get-MgUserOnenoteNotebookFromWebUrl" +"POST","/users/{param}/onenote/operations","keep",,"New-MgUserOnenoteOperation","New-MgUserOnenoteOperation" +"POST","/users/{param}/onenote/pages","keep",,"New-MgUserOnenotePage","New-MgUserOnenotePage" +"POST","/users/{param}/onenote/pages/{param}/copyToSection","rename","UserOnenotePageToSection","Invoke-MgUserOnenotePageCopyToSection","Copy-MgUserOnenotePageToSection" +"POST","/users/{param}/onenote/pages/{param}/onenotePatchContent","rename","UserOnenotePage","Invoke-MgUserOnenotePageOnenotePatchContent","Update-MgUserOnenotePage" +"POST","/users/{param}/onenote/resources","keep",,"New-MgUserOnenoteResource","New-MgUserOnenoteResource" +"POST","/users/{param}/onenote/sectionGroups","keep",,"New-MgUserOnenoteSectionGroup","New-MgUserOnenoteSectionGroup" +"POST","/users/{param}/onenote/sectionGroups/{param}/sections","keep",,"New-MgUserOnenoteSectionGroupSection","New-MgUserOnenoteSectionGroupSection" +"POST","/users/{param}/onenote/sectionGroups/{param}/sections/{param}/copyToNotebook","rename","UserOnenoteSectionGroupSectionToNotebook","Invoke-MgUserOnenoteSectionGroupSectionCopyToNotebook","Copy-MgUserOnenoteSectionGroupSectionToNotebook" +"POST","/users/{param}/onenote/sectionGroups/{param}/sections/{param}/copyToSectionGroup","rename","UserOnenoteSectionGroupSectionToSectionGroup","Invoke-MgUserOnenoteSectionGroupSectionCopyToSectionGroup","Copy-MgUserOnenoteSectionGroupSectionToSectionGroup" +"POST","/users/{param}/onenote/sectionGroups/{param}/sections/{param}/pages","keep",,"New-MgUserOnenoteSectionGroupSectionPage","New-MgUserOnenoteSectionGroupSectionPage" +"POST","/users/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}/copyToSection","rename","UserOnenoteSectionGroupSectionPageToSection","Invoke-MgUserOnenoteSectionGroupSectionPageCopyToSection","Copy-MgUserOnenoteSectionGroupSectionPageToSection" +"POST","/users/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}/onenotePatchContent","rename","UserOnenoteSectionGroupSectionPage","Invoke-MgUserOnenoteSectionGroupSectionPageOnenotePatchContent","Update-MgUserOnenoteSectionGroupSectionPage" +"POST","/users/{param}/onenote/sections","keep",,"New-MgUserOnenoteSection","New-MgUserOnenoteSection" +"POST","/users/{param}/onenote/sections/{param}/copyToNotebook","rename","UserOnenoteSectionToNotebook","Invoke-MgUserOnenoteSectionCopyToNotebook","Copy-MgUserOnenoteSectionToNotebook" +"POST","/users/{param}/onenote/sections/{param}/copyToSectionGroup","rename","UserOnenoteSectionToSectionGroup","Invoke-MgUserOnenoteSectionCopyToSectionGroup","Copy-MgUserOnenoteSectionToSectionGroup" +"POST","/users/{param}/onenote/sections/{param}/pages","keep",,"New-MgUserOnenoteSectionPage","New-MgUserOnenoteSectionPage" +"POST","/users/{param}/onenote/sections/{param}/pages/{param}/copyToSection","rename","UserOnenoteSectionPageToSection","Invoke-MgUserOnenoteSectionPageCopyToSection","Copy-MgUserOnenoteSectionPageToSection" +"POST","/users/{param}/onenote/sections/{param}/pages/{param}/onenotePatchContent","rename","UserOnenoteSectionPage","Invoke-MgUserOnenoteSectionPageOnenotePatchContent","Update-MgUserOnenoteSectionPage" +"POST","/users/{param}/onlineMeetings","keep",,"New-MgUserOnlineMeeting","New-MgUserOnlineMeeting" +"POST","/users/{param}/onlineMeetings/{param}/attendanceReports","keep",,"New-MgUserOnlineMeetingAttendanceReport","New-MgUserOnlineMeetingAttendanceReport" +"POST","/users/{param}/onlineMeetings/{param}/attendanceReports/{param}/attendanceRecords","keep",,"New-MgUserOnlineMeetingAttendanceReportAttendanceRecord","New-MgUserOnlineMeetingAttendanceReportAttendanceRecord" +"POST","/users/{param}/onlineMeetings/{param}/recordings","keep",,"New-MgUserOnlineMeetingRecording","New-MgUserOnlineMeetingRecording" +"POST","/users/{param}/onlineMeetings/{param}/sendVirtualAppointmentReminderSms","rename","UserOnlineMeetingVirtualAppointmentReminderSm","Invoke-MgUserOnlineMeetingSendVirtualAppointmentReminderSms","Send-MgUserOnlineMeetingVirtualAppointmentReminderSm" +"POST","/users/{param}/onlineMeetings/{param}/sendVirtualAppointmentSms","rename","UserOnlineMeetingVirtualAppointmentSm","Invoke-MgUserOnlineMeetingSendVirtualAppointmentSms","Send-MgUserOnlineMeetingVirtualAppointmentSm" +"POST","/users/{param}/onlineMeetings/{param}/transcripts","keep",,"New-MgUserOnlineMeetingTranscript","New-MgUserOnlineMeetingTranscript" +"POST","/users/{param}/onlineMeetings/createOrGet","suppress",,"Invoke-MgUserOnlineMeetingCreateOrGet","no oracle row for POST /users/{param}/onlineMeetings/createOrGet and 'Invoke-MgUserOnlineMeetingCreateOrGet' unshipped" +"POST","/users/{param}/outlook/masterCategories","keep",,"New-MgUserOutlookMasterCategory","New-MgUserOutlookMasterCategory" +"POST","/users/{param}/planner/plans","suppress",,"New-MgUserPlannerPlan","no oracle row for POST /users/{param}/planner/plans and 'New-MgUserPlannerPlan' unshipped" +"POST","/users/{param}/planner/plans/{param}/buckets","suppress",,"New-MgUserPlannerPlanBucket","no oracle row for POST /users/{param}/planner/plans/{param}/buckets and 'New-MgUserPlannerPlanBucket' unshipped" +"POST","/users/{param}/planner/plans/{param}/buckets/{param}/tasks","suppress",,"New-MgUserPlannerPlanBucketTask","no oracle row for POST /users/{param}/planner/plans/{param}/buckets/{param}/tasks and 'New-MgUserPlannerPlanBucketTask' unshipped" +"POST","/users/{param}/planner/plans/{param}/tasks","suppress",,"New-MgUserPlannerPlanTask","no oracle row for POST /users/{param}/planner/plans/{param}/tasks and 'New-MgUserPlannerPlanTask' unshipped" +"POST","/users/{param}/planner/tasks","suppress",,"New-MgUserPlannerTask","no oracle row for POST /users/{param}/planner/tasks and 'New-MgUserPlannerTask' unshipped" +"POST","/users/{param}/presence/clearAutomaticLocation","rename","UserPresenceAutomaticLocation","Invoke-MgUserPresenceClearAutomaticLocation","Clear-MgUserPresenceAutomaticLocation" +"POST","/users/{param}/presence/clearLocation","rename","UserPresenceLocation","Invoke-MgUserPresenceClearLocation","Clear-MgUserPresenceLocation" +"POST","/users/{param}/presence/clearPresence","rename","UserPresence","Invoke-MgUserPresenceClearPresence","Clear-MgUserPresence" +"POST","/users/{param}/presence/clearUserPreferredPresence","rename","UserPresenceUserPreferredPresence","Invoke-MgUserPresenceClearUserPreferredPresence","Clear-MgUserPresenceUserPreferredPresence" +"POST","/users/{param}/presence/setAutomaticLocation","rename","UserPresenceAutomaticLocation","Invoke-MgUserPresenceSetAutomaticLocation","Set-MgUserPresenceAutomaticLocation" +"POST","/users/{param}/presence/setManualLocation","rename","UserPresenceManualLocation","Invoke-MgUserPresenceSetManualLocation","Set-MgUserPresenceManualLocation" +"POST","/users/{param}/presence/setPresence","rename","UserPresence","Invoke-MgUserPresenceSetPresence","Set-MgUserPresence" +"POST","/users/{param}/presence/setStatusMessage","rename","UserPresenceStatusMessage","Invoke-MgUserPresenceSetStatusMessage","Set-MgUserPresenceStatusMessage" +"POST","/users/{param}/presence/setUserPreferredPresence","rename","UserPresenceUserPreferredPresence","Invoke-MgUserPresenceSetUserPreferredPresence","Set-MgUserPresenceUserPreferredPresence" +"POST","/users/{param}/removeAllDevicesFromManagement","rename","AllUserDeviceFromManagement","Invoke-MgUserRemoveAllDevicesFromManagement","Remove-MgAllUserDeviceFromManagement" +"POST","/users/{param}/reprocessLicenseAssignment","rename","LicenseUser","Invoke-MgUserReprocessLicenseAssignment","Invoke-MgLicenseUser" +"POST","/users/{param}/restore","suppress",,"Invoke-MgUserRestore","no oracle row for POST /users/{param}/restore and 'Invoke-MgUserRestore' unshipped" +"POST","/users/{param}/retryServiceProvisioning","rename","RetryUserServiceProvisioning","Invoke-MgUserRetryServiceProvisioning","Invoke-MgRetryUserServiceProvisioning" +"POST","/users/{param}/revokeSignInSessions","rename","UserSignInSession","Invoke-MgUserRevokeSignInSessions","Revoke-MgUserSignInSession" +"POST","/users/{param}/scopedRoleMemberOf","keep",,"New-MgUserScopedRoleMemberOf","New-MgUserScopedRoleMemberOf" +"POST","/users/{param}/sendMail","rename","UserMail","Invoke-MgUserSendMail","Send-MgUserMail" +"POST","/users/{param}/settings/storage/quota/services","keep",,"New-MgUserSettingStorageQuotaService","New-MgUserSettingStorageQuotaService" +"POST","/users/{param}/settings/windows","keep",,"New-MgUserSettingWindows","New-MgUserSettingWindows" +"POST","/users/{param}/settings/windows/{param}/instances","keep",,"New-MgUserSettingWindowsInstance","New-MgUserSettingWindowsInstance" +"POST","/users/{param}/settings/workHoursAndLocations/occurrences","keep",,"New-MgUserSettingWorkHourAndLocationOccurrence","New-MgUserSettingWorkHourAndLocationOccurrence" +"POST","/users/{param}/settings/workHoursAndLocations/occurrences/setCurrentLocation","rename","UserSettingWorkHourAndLocationOccurrenceCurrentLocation","Invoke-MgUserSettingWorkHourAndLocationOccurrenceSetCurrentLocation","Set-MgUserSettingWorkHourAndLocationOccurrenceCurrentLocation" +"POST","/users/{param}/settings/workHoursAndLocations/recurrences","keep",,"New-MgUserSettingWorkHourAndLocationRecurrence","New-MgUserSettingWorkHourAndLocationRecurrence" +"POST","/users/{param}/sponsors/$ref","keep",,"New-MgUserSponsorByRef","New-MgUserSponsorByRef" +"POST","/users/{param}/teamwork/associatedTeams","keep",,"New-MgUserTeamworkAssociatedTeam","New-MgUserTeamworkAssociatedTeam" +"POST","/users/{param}/teamwork/deleteTargetedMessage","rename","UserTeamworkTargetedMessage","Invoke-MgUserTeamworkDeleteTargetedMessage","Remove-MgUserTeamworkTargetedMessage" +"POST","/users/{param}/teamwork/installedApps","keep",,"New-MgUserTeamworkInstalledApp","New-MgUserTeamworkInstalledApp" +"POST","/users/{param}/teamwork/sendActivityNotification","rename","UserTeamworkActivityNotification","Invoke-MgUserTeamworkSendActivityNotification","Send-MgUserTeamworkActivityNotification" +"POST","/users/{param}/todo/lists","keep",,"New-MgUserTodoList","New-MgUserTodoList" +"POST","/users/{param}/todo/lists/{param}/extensions","keep",,"New-MgUserTodoListExtension","New-MgUserTodoListExtension" +"POST","/users/{param}/todo/lists/{param}/tasks","keep",,"New-MgUserTodoListTask","New-MgUserTodoListTask" +"POST","/users/{param}/todo/lists/{param}/tasks/{param}/attachments","keep",,"New-MgUserTodoListTaskAttachment","New-MgUserTodoListTaskAttachment" +"POST","/users/{param}/todo/lists/{param}/tasks/{param}/attachments/createUploadSession","rename","UserTodoListTaskAttachmentUploadSession","Invoke-MgUserTodoListTaskAttachmentCreateUploadSession","New-MgUserTodoListTaskAttachmentUploadSession" +"POST","/users/{param}/todo/lists/{param}/tasks/{param}/checklistItems","keep",,"New-MgUserTodoListTaskChecklistItem","New-MgUserTodoListTaskChecklistItem" +"POST","/users/{param}/todo/lists/{param}/tasks/{param}/extensions","keep",,"New-MgUserTodoListTaskExtension","New-MgUserTodoListTaskExtension" +"POST","/users/{param}/todo/lists/{param}/tasks/{param}/linkedResources","keep",,"New-MgUserTodoListTaskLinkedResource","New-MgUserTodoListTaskLinkedResource" +"POST","/users/{param}/translateExchangeIds","rename","TranslateUserExchangeId","Invoke-MgUserTranslateExchangeIds","Invoke-MgTranslateUserExchangeId" +"POST","/users/{param}/wipeManagedAppRegistrationsByDeviceTag","suppress",,"Invoke-MgUserWipeManagedAppRegistrationsByDeviceTag","no oracle row for POST /users/{param}/wipeManagedAppRegistrationsByDeviceTag and 'Invoke-MgUserWipeManagedAppRegistrationsByDeviceTag' unshipped" +"POST","/users/getAvailableExtensionProperties","suppress",,"Invoke-MgUserGetAvailableExtensionProperties","no oracle row for POST /users/getAvailableExtensionProperties and 'Invoke-MgUserGetAvailableExtensionProperties' unshipped" +"POST","/users/getByIds","rename","UserById","Invoke-MgUserGetByIds","Get-MgUserById" +"POST","/users/validateProperties","rename","UserProperty","Invoke-MgUserValidateProperties","Test-MgUserProperty" +"PUT","/admin/serviceAnnouncement/messages/{param}/attachments/{param}/$value","suppress",,"Set-MgAdminServiceAnnouncementMessageAttachmentContent","no oracle row for PUT /admin/serviceAnnouncement/messages/{param}/attachments/{param}/$value and 'Set-MgAdminServiceAnnouncementMessageAttachmentContent' unshipped" +"PUT","/applications/{param}/synchronization","keep",,"Set-MgApplicationSynchronization","Set-MgApplicationSynchronization" +"PUT","/communications/adhocCalls/{param}/recordings/{param}/$value","keep",,"Set-MgCommunicationAdhocCallRecordingContent","Set-MgCommunicationAdhocCallRecordingContent" +"PUT","/communications/adhocCalls/{param}/transcripts/{param}/$value","keep",,"Set-MgCommunicationAdhocCallTranscriptContent","Set-MgCommunicationAdhocCallTranscriptContent" +"PUT","/communications/onlineMeetings/{param}/recordings/{param}/$value","keep",,"Set-MgCommunicationOnlineMeetingRecordingContent","Set-MgCommunicationOnlineMeetingRecordingContent" +"PUT","/communications/onlineMeetings/{param}/transcripts/{param}/$value","keep",,"Set-MgCommunicationOnlineMeetingTranscriptContent","Set-MgCommunicationOnlineMeetingTranscriptContent" +"PUT","/deviceManagement/managedDevices/{param}/deviceCategory/$ref","keep",,"Set-MgDeviceManagementManagedDeviceCategoryByRef","Set-MgDeviceManagementManagedDeviceCategoryByRef" +"PUT","/drives/{param}/bundles/{param}/$value","keep",,"Set-MgDriveBundleContent","Set-MgDriveBundleContent" +"PUT","/drives/{param}/following/{param}/$value","keep",,"Set-MgDriveFollowingContent","Set-MgDriveFollowingContent" +"PUT","/drives/{param}/items/{param}/$value","keep",,"Set-MgDriveItemContent","Set-MgDriveItemContent" +"PUT","/drives/{param}/items/{param}/analytics/itemActivityStats/{param}/activities/{param}/driveItem/$value","suppress",,"Set-MgDriveItemAnalyticItemActivityStatActivityDriveItemContent","no oracle row for PUT /drives/{param}/items/{param}/analytics/itemActivityStats/{param}/activities/{param}/driveItem/$value and 'Set-MgDriveItemAnalyticItemActivityStatActivityDriveItemContent' unshipped" +"PUT","/drives/{param}/items/{param}/children/{param}/$value","keep",,"Set-MgDriveItemChildContent","Set-MgDriveItemChildContent" +"PUT","/drives/{param}/items/{param}/versions/{param}/$value","keep",,"Set-MgDriveItemVersionContent","Set-MgDriveItemVersionContent" +"PUT","/drives/{param}/list/items/{param}/driveItem/$value","keep",,"Set-MgDriveListItemDriveItemContent","Set-MgDriveListItemDriveItemContent" +"PUT","/drives/{param}/root/$value","keep",,"Set-MgDriveRootContent","Set-MgDriveRootContent" +"PUT","/drives/{param}/special/{param}/$value","keep",,"Set-MgDriveSpecialContent","Set-MgDriveSpecialContent" +"PUT","/education/classes/{param}/assignments/{param}/rubric/$ref","keep",,"Set-MgEducationClassAssignmentRubricByRef","Set-MgEducationClassAssignmentRubricByRef" +"PUT","/education/me/assignments/{param}/rubric/$ref","keep",,"Set-MgEducationMeAssignmentRubricByRef","Set-MgEducationMeAssignmentRubricByRef" +"PUT","/education/users/{param}/assignments/{param}/rubric/$ref","keep",,"Set-MgEducationUserAssignmentRubricByRef","Set-MgEducationUserAssignmentRubricByRef" +"PUT","/external/connections/{param}/items/{param}","keep",,"Set-MgExternalConnectionItem","Set-MgExternalConnectionItem" +"PUT","/groups/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}/$value","keep",,"Set-MgGroupOnenoteNotebookSectionGroupSectionPageContent","Set-MgGroupOnenoteNotebookSectionGroupSectionPageContent" +"PUT","/groups/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}/$value","keep",,"Set-MgGroupOnenoteNotebookSectionPageContent","Set-MgGroupOnenoteNotebookSectionPageContent" +"PUT","/groups/{param}/onenote/pages/{param}/$value","keep",,"Set-MgGroupOnenotePageContent","Set-MgGroupOnenotePageContent" +"PUT","/groups/{param}/onenote/resources/{param}/$value","keep",,"Set-MgGroupOnenoteResourceContent","Set-MgGroupOnenoteResourceContent" +"PUT","/groups/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}/$value","keep",,"Set-MgGroupOnenoteSectionGroupSectionPageContent","Set-MgGroupOnenoteSectionGroupSectionPageContent" +"PUT","/groups/{param}/onenote/sections/{param}/pages/{param}/$value","keep",,"Set-MgGroupOnenoteSectionPageContent","Set-MgGroupOnenoteSectionPageContent" +"PUT","/groups/{param}/sites/{param}/analytics/itemActivityStats/{param}/activities/{param}/driveItem/$value","keep",,"Set-MgGroupSiteAnalyticItemActivityStatActivityDriveItemContent","Set-MgGroupSiteAnalyticItemActivityStatActivityDriveItemContent" +"PUT","/groups/{param}/sites/{param}/lists/{param}/items/{param}/driveItem/$value","keep",,"Set-MgGroupSiteListItemDriveItemContent","Set-MgGroupSiteListItemDriveItemContent" +"PUT","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}/$value","keep",,"Set-MgGroupSiteOnenoteNotebookSectionGroupSectionPageContent","Set-MgGroupSiteOnenoteNotebookSectionGroupSectionPageContent" +"PUT","/groups/{param}/sites/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}/$value","keep",,"Set-MgGroupSiteOnenoteNotebookSectionPageContent","Set-MgGroupSiteOnenoteNotebookSectionPageContent" +"PUT","/groups/{param}/sites/{param}/onenote/pages/{param}/$value","keep",,"Set-MgGroupSiteOnenotePageContent","Set-MgGroupSiteOnenotePageContent" +"PUT","/groups/{param}/sites/{param}/onenote/resources/{param}/$value","keep",,"Set-MgGroupSiteOnenoteResourceContent","Set-MgGroupSiteOnenoteResourceContent" +"PUT","/groups/{param}/sites/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}/$value","keep",,"Set-MgGroupSiteOnenoteSectionGroupSectionPageContent","Set-MgGroupSiteOnenoteSectionGroupSectionPageContent" +"PUT","/groups/{param}/sites/{param}/onenote/sections/{param}/pages/{param}/$value","keep",,"Set-MgGroupSiteOnenoteSectionPageContent","Set-MgGroupSiteOnenoteSectionPageContent" +"PUT","/groups/{param}/team","keep",,"Set-MgGroupTeam","Set-MgGroupTeam" +"PUT","/groups/{param}/team/channels/{param}/filesFolder/$value","keep",,"Set-MgGroupTeamChannelFileFolderContent","Set-MgGroupTeamChannelFileFolderContent" +"PUT","/groups/{param}/team/primaryChannel/filesFolder/$value","keep",,"Set-MgGroupTeamPrimaryChannelFileFolderContent","Set-MgGroupTeamPrimaryChannelFileFolderContent" +"PUT","/groups/{param}/team/schedule","keep",,"Set-MgGroupTeamSchedule","Set-MgGroupTeamSchedule" +"PUT","/identity/b2xUserFlows/{param}/apiConnectorConfiguration/postAttributeCollection/$ref","rename","IdentityB2XUserFlowPostAttributeCollectionByRef","Set-MgIdentityB2xUserFlowApiConnectorConfigurationPostAttributeCollectionByRef","Set-MgIdentityB2XUserFlowPostAttributeCollectionByRef" +"PUT","/identity/b2xUserFlows/{param}/apiConnectorConfiguration/postFederationSignup/$ref","rename","IdentityB2XUserFlowPostFederationSignupByRef","Set-MgIdentityB2xUserFlowApiConnectorConfigurationPostFederationSignupByRef","Set-MgIdentityB2XUserFlowPostFederationSignupByRef" +"PUT","/identityGovernance/accessReviews/definitions/{param}","keep",,"Set-MgIdentityGovernanceAccessReviewDefinition","Set-MgIdentityGovernanceAccessReviewDefinition" +"PUT","/identityGovernance/entitlementManagement/assignmentPolicies/{param}","rename","EntitlementManagementAssignmentPolicy","Set-MgIdentityGovernanceEntitlementManagementAssignmentPolicy","Set-MgEntitlementManagementAssignmentPolicy" +"PUT","/identityGovernance/entitlementManagement/controlConfigurations/{param}","rename","EntitlementManagementControlConfiguration","Set-MgIdentityGovernanceEntitlementManagementControlConfiguration","Set-MgEntitlementManagementControlConfiguration" +"PUT","/policies/crossTenantAccessPolicy/partners/{param}/identitySynchronization","keep",,"Set-MgPolicyCrossTenantAccessPolicyPartnerIdentitySynchronization","Set-MgPolicyCrossTenantAccessPolicyPartnerIdentitySynchronization" +"PUT","/servicePrincipals/{param}/synchronization","keep",,"Set-MgServicePrincipalSynchronization","Set-MgServicePrincipalSynchronization" +"PUT","/shares/{param}/driveItem/$value","keep",,"Set-MgShareDriveItemContent","Set-MgShareDriveItemContent" +"PUT","/shares/{param}/items/{param}/$value","keep",,"Set-MgShareItemContent","Set-MgShareItemContent" +"PUT","/shares/{param}/list/items/{param}/driveItem/$value","keep",,"Set-MgShareListItemDriveItemContent","Set-MgShareListItemDriveItemContent" +"PUT","/shares/{param}/root/$value","keep",,"Set-MgShareRootContent","Set-MgShareRootContent" +"PUT","/sites/{param}/analytics/itemActivityStats/{param}/activities/{param}/driveItem/$value","keep",,"Set-MgSiteAnalyticItemActivityStatActivityDriveItemContent","Set-MgSiteAnalyticItemActivityStatActivityDriveItemContent" +"PUT","/sites/{param}/lists/{param}/items/{param}/driveItem/$value","keep",,"Set-MgSiteListItemDriveItemContent","Set-MgSiteListItemDriveItemContent" +"PUT","/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}/$value","keep",,"Set-MgSiteOnenoteNotebookSectionGroupSectionPageContent","Set-MgSiteOnenoteNotebookSectionGroupSectionPageContent" +"PUT","/sites/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}/$value","keep",,"Set-MgSiteOnenoteNotebookSectionPageContent","Set-MgSiteOnenoteNotebookSectionPageContent" +"PUT","/sites/{param}/onenote/pages/{param}/$value","keep",,"Set-MgSiteOnenotePageContent","Set-MgSiteOnenotePageContent" +"PUT","/sites/{param}/onenote/resources/{param}/$value","keep",,"Set-MgSiteOnenoteResourceContent","Set-MgSiteOnenoteResourceContent" +"PUT","/sites/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}/$value","keep",,"Set-MgSiteOnenoteSectionGroupSectionPageContent","Set-MgSiteOnenoteSectionGroupSectionPageContent" +"PUT","/sites/{param}/onenote/sections/{param}/pages/{param}/$value","keep",,"Set-MgSiteOnenoteSectionPageContent","Set-MgSiteOnenoteSectionPageContent" +"PUT","/teams/{param}/channels/{param}/filesFolder/$value","keep",,"Set-MgTeamChannelFileFolderContent","Set-MgTeamChannelFileFolderContent" +"PUT","/teams/{param}/primaryChannel/filesFolder/$value","keep",,"Set-MgTeamPrimaryChannelFileFolderContent","Set-MgTeamPrimaryChannelFileFolderContent" +"PUT","/teams/{param}/schedule","keep",,"Set-MgTeamSchedule","Set-MgTeamSchedule" +"PUT","/teamwork/deletedTeams/{param}/channels/{param}/filesFolder/$value","keep",,"Set-MgTeamworkDeletedTeamChannelFileFolderContent","Set-MgTeamworkDeletedTeamChannelFileFolderContent" +"PUT","/users/{param}/joinedTeams/{param}/channels/{param}/filesFolder/$value","suppress",,"Set-MgUserJoinedTeamChannelFileFolderContent","no oracle row for PUT /users/{param}/joinedTeams/{param}/channels/{param}/filesFolder/$value and 'Set-MgUserJoinedTeamChannelFileFolderContent' unshipped" +"PUT","/users/{param}/joinedTeams/{param}/primaryChannel/filesFolder/$value","suppress",,"Set-MgUserJoinedTeamPrimaryChannelFileFolderContent","no oracle row for PUT /users/{param}/joinedTeams/{param}/primaryChannel/filesFolder/$value and 'Set-MgUserJoinedTeamPrimaryChannelFileFolderContent' unshipped" +"PUT","/users/{param}/joinedTeams/{param}/schedule","suppress",,"Set-MgUserJoinedTeamSchedule","no oracle row for PUT /users/{param}/joinedTeams/{param}/schedule and 'Set-MgUserJoinedTeamSchedule' unshipped" +"PUT","/users/{param}/managedDevices/{param}/deviceCategory/$ref","keep",,"Set-MgUserManagedDeviceCategoryByRef","Set-MgUserManagedDeviceCategoryByRef" +"PUT","/users/{param}/manager/$ref","keep",,"Set-MgUserManagerByRef","Set-MgUserManagerByRef" +"PUT","/users/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}/$value","keep",,"Set-MgUserOnenoteNotebookSectionGroupSectionPageContent","Set-MgUserOnenoteNotebookSectionGroupSectionPageContent" +"PUT","/users/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}/$value","keep",,"Set-MgUserOnenoteNotebookSectionPageContent","Set-MgUserOnenoteNotebookSectionPageContent" +"PUT","/users/{param}/onenote/pages/{param}/$value","keep",,"Set-MgUserOnenotePageContent","Set-MgUserOnenotePageContent" +"PUT","/users/{param}/onenote/resources/{param}/$value","keep",,"Set-MgUserOnenoteResourceContent","Set-MgUserOnenoteResourceContent" +"PUT","/users/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}/$value","keep",,"Set-MgUserOnenoteSectionGroupSectionPageContent","Set-MgUserOnenoteSectionGroupSectionPageContent" +"PUT","/users/{param}/onenote/sections/{param}/pages/{param}/$value","keep",,"Set-MgUserOnenoteSectionPageContent","Set-MgUserOnenoteSectionPageContent" +"PUT","/users/{param}/onlineMeetings/{param}/recordings/{param}/$value","keep",,"Set-MgUserOnlineMeetingRecordingContent","Set-MgUserOnlineMeetingRecordingContent" +"PUT","/users/{param}/onlineMeetings/{param}/transcripts/{param}/$value","keep",,"Set-MgUserOnlineMeetingTranscriptContent","Set-MgUserOnlineMeetingTranscriptContent" +"PUT","/users/{param}/settings/workHoursAndLocations/occurrences/{param}","keep",,"Set-MgUserSettingWorkHourAndLocationOccurrence","Set-MgUserSettingWorkHourAndLocationOccurrence" +"PUT","/users/{param}/settings/workHoursAndLocations/recurrences/{param}","keep",,"Set-MgUserSettingWorkHourAndLocationRecurrence","Set-MgUserSettingWorkHourAndLocationRecurrence" +"PUT","/users/{param}/todo/lists/{param}/tasks/{param}/attachmentSessions/{param}/$value","keep",,"Set-MgUserTodoListTaskAttachmentSessionContent","Set-MgUserTodoListTaskAttachmentSessionContent" diff --git a/tools/WrapperGenerator/data/parity-suppressions.v1.0.json b/tools/WrapperGenerator/data/parity-suppressions.v1.0.json new file mode 100644 index 00000000000..adb7b8888b2 --- /dev/null +++ b/tools/WrapperGenerator/data/parity-suppressions.v1.0.json @@ -0,0 +1,22682 @@ +[ + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/admin/serviceannouncement", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgAdminServiceAnnouncement", + "oracle": "no oracle row for DELETE /admin/serviceAnnouncement and 'Remove-MgAdminServiceAnnouncement' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/admin/serviceannouncement/healthoverviews/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgAdminServiceAnnouncementHealthOverview", + "oracle": "no oracle row for DELETE /admin/serviceAnnouncement/healthOverviews/{param} and 'Remove-MgAdminServiceAnnouncementHealthOverview' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/admin/serviceannouncement/healthoverviews/{}/issues/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgAdminServiceAnnouncementHealthOverviewIssue", + "oracle": "no oracle row for DELETE /admin/serviceAnnouncement/healthOverviews/{param}/issues/{param} and 'Remove-MgAdminServiceAnnouncementHealthOverviewIssue' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/admin/serviceannouncement/issues/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgAdminServiceAnnouncementIssue", + "oracle": "no oracle row for DELETE /admin/serviceAnnouncement/issues/{param} and 'Remove-MgAdminServiceAnnouncementIssue' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/admin/serviceannouncement/messages/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgAdminServiceAnnouncementMessage", + "oracle": "no oracle row for DELETE /admin/serviceAnnouncement/messages/{param} and 'Remove-MgAdminServiceAnnouncementMessage' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/admin/serviceannouncement/messages/{}/attachments/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgAdminServiceAnnouncementMessageAttachment", + "oracle": "no oracle row for DELETE /admin/serviceAnnouncement/messages/{param}/attachments/{param} and 'Remove-MgAdminServiceAnnouncementMessageAttachment' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/admin/serviceannouncement/messages/{}/attachments/{}/$value", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgAdminServiceAnnouncementMessageAttachmentContent", + "oracle": "no oracle row for DELETE /admin/serviceAnnouncement/messages/{param}/attachments/{param}/$value and 'Remove-MgAdminServiceAnnouncementMessageAttachmentContent' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/admin/serviceannouncement/messages/{}/attachmentsarchive", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgAdminServiceAnnouncementMessageAttachmentArchive", + "oracle": "no oracle row for DELETE /admin/serviceAnnouncement/messages/{param}/attachmentsArchive and 'Remove-MgAdminServiceAnnouncementMessageAttachmentArchive' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/auditlogs/directoryaudits/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgAuditLogDirectoryAudit", + "oracle": "no oracle row for DELETE /auditLogs/directoryAudits/{param} and 'Remove-MgAuditLogDirectoryAudit' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/auditlogs/provisioning/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgAuditLogProvisioning", + "oracle": "no oracle row for DELETE /auditLogs/provisioning/{param} and 'Remove-MgAuditLogProvisioning' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/auditlogs/signins/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgAuditLogSignIn", + "oracle": "no oracle row for DELETE /auditLogs/signIns/{param} and 'Remove-MgAuditLogSignIn' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/chats/{}/messages/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgChatMessage", + "oracle": "no oracle row for DELETE /chats/{param}/messages/{param} and 'Remove-MgChatMessage' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/chats/{}/messages/{}/hostedcontents/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgChatMessageHostedContent", + "oracle": "no oracle row for DELETE /chats/{param}/messages/{param}/hostedContents/{param} and 'Remove-MgChatMessageHostedContent' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/chats/{}/messages/{}/hostedcontents/{}/$value", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgChatMessageHostedContentContent", + "oracle": "no oracle row for DELETE /chats/{param}/messages/{param}/hostedContents/{param}/$value and 'Remove-MgChatMessageHostedContentContent' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/chats/{}/messages/{}/replies/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgChatMessageReply", + "oracle": "no oracle row for DELETE /chats/{param}/messages/{param}/replies/{param} and 'Remove-MgChatMessageReply' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/chats/{}/messages/{}/replies/{}/hostedcontents/{}/$value", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgChatMessageReplyHostedContentContent", + "oracle": "no oracle row for DELETE /chats/{param}/messages/{param}/replies/{param}/hostedContents/{param}/$value and 'Remove-MgChatMessageReplyHostedContentContent' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/chats/{}/targetedmessages/{}/hostedcontents/{}/$value", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgChatTargetedMessageHostedContentContent", + "oracle": "no oracle row for DELETE /chats/{param}/targetedMessages/{param}/hostedContents/{param}/$value and 'Remove-MgChatTargetedMessageHostedContentContent' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/chats/{}/targetedmessages/{}/replies/{}/hostedcontents/{}/$value", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgChatTargetedMessageReplyHostedContentContent", + "oracle": "no oracle row for DELETE /chats/{param}/targetedMessages/{param}/replies/{param}/hostedContents/{param}/$value and 'Remove-MgChatTargetedMessageReplyHostedContentContent' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/communications/callrecords/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgCommunicationCallRecord", + "oracle": "no oracle row for DELETE /communications/callRecords/{param} and 'Remove-MgCommunicationCallRecord' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/communications/callrecords/{}/sessions/{}/segments/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgCommunicationCallRecordSessionSegment", + "oracle": "no oracle row for DELETE /communications/callRecords/{param}/sessions/{param}/segments/{param} and 'Remove-MgCommunicationCallRecordSessionSegment' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/devicemanagement/reports/exportjobs/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgDeviceManagementReportExportJob", + "oracle": "no oracle row for DELETE /deviceManagement/reports/exportJobs/{param} and 'Remove-MgDeviceManagementReportExportJob' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/devicemanagement/virtualendpoint", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgDeviceManagementVirtualEndpoint", + "oracle": "no oracle row for DELETE /deviceManagement/virtualEndpoint and 'Remove-MgDeviceManagementVirtualEndpoint' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/devicemanagement/virtualendpoint/auditevents/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgDeviceManagementVirtualEndpointAuditEvent", + "oracle": "no oracle row for DELETE /deviceManagement/virtualEndpoint/auditEvents/{param} and 'Remove-MgDeviceManagementVirtualEndpointAuditEvent' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/devicemanagement/virtualendpoint/cloudpcs/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgDeviceManagementVirtualEndpointCloudPCs", + "oracle": "no oracle row for DELETE /deviceManagement/virtualEndpoint/cloudPCs/{param} and 'Remove-MgDeviceManagementVirtualEndpointCloudPCs' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/drives/{}/items/{}/analytics/itemactivitystats/{}/activities/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgDriveItemAnalyticItemActivityStatActivity", + "oracle": "no oracle row for DELETE /drives/{param}/items/{param}/analytics/itemActivityStats/{param}/activities/{param} and 'Remove-MgDriveItemAnalyticItemActivityStatActivity' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/drives/{}/items/{}/analytics/itemactivitystats/{}/activities/{}/driveitem/$value", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgDriveItemAnalyticItemActivityStatActivityDriveItemContent", + "oracle": "no oracle row for DELETE /drives/{param}/items/{param}/analytics/itemActivityStats/{param}/activities/{param}/driveItem/$value and 'Remove-MgDriveItemAnalyticItemActivityStatActivityDriveItemContent' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/drives/{}/items/{}/workbook", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgDriveItemWorkbook", + "oracle": "no oracle row for DELETE /drives/{param}/items/{param}/workbook and 'Remove-MgDriveItemWorkbook' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/drives/{}/items/{}/workbook/application", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgDriveItemWorkbookApplication", + "oracle": "no oracle row for DELETE /drives/{param}/items/{param}/workbook/application and 'Remove-MgDriveItemWorkbookApplication' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/drives/{}/items/{}/workbook/comments/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgDriveItemWorkbookComment", + "oracle": "no oracle row for DELETE /drives/{param}/items/{param}/workbook/comments/{param} and 'Remove-MgDriveItemWorkbookComment' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/drives/{}/items/{}/workbook/comments/{}/replies/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgDriveItemWorkbookCommentReply", + "oracle": "no oracle row for DELETE /drives/{param}/items/{param}/workbook/comments/{param}/replies/{param} and 'Remove-MgDriveItemWorkbookCommentReply' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/drives/{}/items/{}/workbook/functions", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgDriveItemWorkbookFunction", + "oracle": "no oracle row for DELETE /drives/{param}/items/{param}/workbook/functions and 'Remove-MgDriveItemWorkbookFunction' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/drives/{}/items/{}/workbook/names/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgDriveItemWorkbookName", + "oracle": "no oracle row for DELETE /drives/{param}/items/{param}/workbook/names/{param} and 'Remove-MgDriveItemWorkbookName' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/drives/{}/items/{}/workbook/operations/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgDriveItemWorkbookOperation", + "oracle": "no oracle row for DELETE /drives/{param}/items/{param}/workbook/operations/{param} and 'Remove-MgDriveItemWorkbookOperation' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/drives/{}/items/{}/workbook/tables/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgDriveItemWorkbookTable", + "oracle": "no oracle row for DELETE /drives/{param}/items/{param}/workbook/tables/{param} and 'Remove-MgDriveItemWorkbookTable' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgDriveItemWorkbookTableColumn", + "oracle": "no oracle row for DELETE /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param} and 'Remove-MgDriveItemWorkbookTableColumn' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/filter", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgDriveItemWorkbookTableColumnFilter", + "oracle": "no oracle row for DELETE /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/filter and 'Remove-MgDriveItemWorkbookTableColumnFilter' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/drives/{}/items/{}/workbook/tables/{}/rows/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgDriveItemWorkbookTableRow", + "oracle": "no oracle row for DELETE /drives/{param}/items/{param}/workbook/tables/{param}/rows/{param} and 'Remove-MgDriveItemWorkbookTableRow' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/drives/{}/items/{}/workbook/tables/{}/sort", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgDriveItemWorkbookTableSort", + "oracle": "no oracle row for DELETE /drives/{param}/items/{param}/workbook/tables/{param}/sort and 'Remove-MgDriveItemWorkbookTableSort' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgDriveItemWorkbookWorksheet", + "oracle": "no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param} and 'Remove-MgDriveItemWorkbookWorksheet' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgDriveItemWorkbookWorksheetChart", + "oracle": "no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param} and 'Remove-MgDriveItemWorkbookWorksheetChart' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgDriveItemWorkbookWorksheetChartAx", + "oracle": "no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes and 'Remove-MgDriveItemWorkbookWorksheetChartAx' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/categoryaxis", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgDriveItemWorkbookWorksheetChartAxCategoryAxis", + "oracle": "no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis and 'Remove-MgDriveItemWorkbookWorksheetChartAxCategoryAxis' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/categoryaxis/format", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgDriveItemWorkbookWorksheetChartAxCategoryAxisFormat", + "oracle": "no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/format and 'Remove-MgDriveItemWorkbookWorksheetChartAxCategoryAxisFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/categoryaxis/format/font", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgDriveItemWorkbookWorksheetChartAxCategoryAxisFormatFont", + "oracle": "no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/format/font and 'Remove-MgDriveItemWorkbookWorksheetChartAxCategoryAxisFormatFont' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/categoryaxis/format/line", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgDriveItemWorkbookWorksheetChartAxCategoryAxisFormatLine", + "oracle": "no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/format/line and 'Remove-MgDriveItemWorkbookWorksheetChartAxCategoryAxisFormatLine' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/categoryaxis/majorgridlines", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMajorGridline", + "oracle": "no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/majorGridlines and 'Remove-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMajorGridline' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/categoryaxis/majorgridlines/format", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMajorGridlineFormat", + "oracle": "no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/majorGridlines/format and 'Remove-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMajorGridlineFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/categoryaxis/majorgridlines/format/line", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMajorGridlineFormatLine", + "oracle": "no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/majorGridlines/format/line and 'Remove-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMajorGridlineFormatLine' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/categoryaxis/minorgridlines", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMinorGridline", + "oracle": "no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/minorGridlines and 'Remove-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMinorGridline' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/categoryaxis/minorgridlines/format", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMinorGridlineFormat", + "oracle": "no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/minorGridlines/format and 'Remove-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMinorGridlineFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/categoryaxis/minorgridlines/format/line", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMinorGridlineFormatLine", + "oracle": "no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/minorGridlines/format/line and 'Remove-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMinorGridlineFormatLine' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/categoryaxis/title", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgDriveItemWorkbookWorksheetChartAxCategoryAxisTitle", + "oracle": "no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/title and 'Remove-MgDriveItemWorkbookWorksheetChartAxCategoryAxisTitle' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/categoryaxis/title/format", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgDriveItemWorkbookWorksheetChartAxCategoryAxisTitleFormat", + "oracle": "no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/title/format and 'Remove-MgDriveItemWorkbookWorksheetChartAxCategoryAxisTitleFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/categoryaxis/title/format/font", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgDriveItemWorkbookWorksheetChartAxCategoryAxisTitleFormatFont", + "oracle": "no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/title/format/font and 'Remove-MgDriveItemWorkbookWorksheetChartAxCategoryAxisTitleFormatFont' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/seriesaxis", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgDriveItemWorkbookWorksheetChartAxSeryAxis", + "oracle": "no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis and 'Remove-MgDriveItemWorkbookWorksheetChartAxSeryAxis' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/seriesaxis/format", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgDriveItemWorkbookWorksheetChartAxSeryAxisFormat", + "oracle": "no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/format and 'Remove-MgDriveItemWorkbookWorksheetChartAxSeryAxisFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/seriesaxis/format/font", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgDriveItemWorkbookWorksheetChartAxSeryAxisFormatFont", + "oracle": "no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/format/font and 'Remove-MgDriveItemWorkbookWorksheetChartAxSeryAxisFormatFont' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/seriesaxis/format/line", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgDriveItemWorkbookWorksheetChartAxSeryAxisFormatLine", + "oracle": "no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/format/line and 'Remove-MgDriveItemWorkbookWorksheetChartAxSeryAxisFormatLine' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/seriesaxis/majorgridlines", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgDriveItemWorkbookWorksheetChartAxSeryAxisMajorGridline", + "oracle": "no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/majorGridlines and 'Remove-MgDriveItemWorkbookWorksheetChartAxSeryAxisMajorGridline' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/seriesaxis/majorgridlines/format", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgDriveItemWorkbookWorksheetChartAxSeryAxisMajorGridlineFormat", + "oracle": "no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/majorGridlines/format and 'Remove-MgDriveItemWorkbookWorksheetChartAxSeryAxisMajorGridlineFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/seriesaxis/majorgridlines/format/line", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgDriveItemWorkbookWorksheetChartAxSeryAxisMajorGridlineFormatLine", + "oracle": "no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/majorGridlines/format/line and 'Remove-MgDriveItemWorkbookWorksheetChartAxSeryAxisMajorGridlineFormatLine' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/seriesaxis/minorgridlines", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgDriveItemWorkbookWorksheetChartAxSeryAxisMinorGridline", + "oracle": "no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/minorGridlines and 'Remove-MgDriveItemWorkbookWorksheetChartAxSeryAxisMinorGridline' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/seriesaxis/minorgridlines/format", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgDriveItemWorkbookWorksheetChartAxSeryAxisMinorGridlineFormat", + "oracle": "no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/minorGridlines/format and 'Remove-MgDriveItemWorkbookWorksheetChartAxSeryAxisMinorGridlineFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/seriesaxis/minorgridlines/format/line", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgDriveItemWorkbookWorksheetChartAxSeryAxisMinorGridlineFormatLine", + "oracle": "no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/minorGridlines/format/line and 'Remove-MgDriveItemWorkbookWorksheetChartAxSeryAxisMinorGridlineFormatLine' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/seriesaxis/title", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgDriveItemWorkbookWorksheetChartAxSeryAxisTitle", + "oracle": "no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/title and 'Remove-MgDriveItemWorkbookWorksheetChartAxSeryAxisTitle' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/seriesaxis/title/format", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgDriveItemWorkbookWorksheetChartAxSeryAxisTitleFormat", + "oracle": "no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/title/format and 'Remove-MgDriveItemWorkbookWorksheetChartAxSeryAxisTitleFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/seriesaxis/title/format/font", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgDriveItemWorkbookWorksheetChartAxSeryAxisTitleFormatFont", + "oracle": "no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/title/format/font and 'Remove-MgDriveItemWorkbookWorksheetChartAxSeryAxisTitleFormatFont' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/valueaxis", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgDriveItemWorkbookWorksheetChartAxValueAxis", + "oracle": "no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis and 'Remove-MgDriveItemWorkbookWorksheetChartAxValueAxis' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/valueaxis/format", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgDriveItemWorkbookWorksheetChartAxValueAxisFormat", + "oracle": "no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/format and 'Remove-MgDriveItemWorkbookWorksheetChartAxValueAxisFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/valueaxis/format/font", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgDriveItemWorkbookWorksheetChartAxValueAxisFormatFont", + "oracle": "no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/format/font and 'Remove-MgDriveItemWorkbookWorksheetChartAxValueAxisFormatFont' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/valueaxis/format/line", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgDriveItemWorkbookWorksheetChartAxValueAxisFormatLine", + "oracle": "no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/format/line and 'Remove-MgDriveItemWorkbookWorksheetChartAxValueAxisFormatLine' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/valueaxis/majorgridlines", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgDriveItemWorkbookWorksheetChartAxValueAxisMajorGridline", + "oracle": "no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/majorGridlines and 'Remove-MgDriveItemWorkbookWorksheetChartAxValueAxisMajorGridline' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/valueaxis/majorgridlines/format", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgDriveItemWorkbookWorksheetChartAxValueAxisMajorGridlineFormat", + "oracle": "no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/majorGridlines/format and 'Remove-MgDriveItemWorkbookWorksheetChartAxValueAxisMajorGridlineFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/valueaxis/majorgridlines/format/line", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgDriveItemWorkbookWorksheetChartAxValueAxisMajorGridlineFormatLine", + "oracle": "no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/majorGridlines/format/line and 'Remove-MgDriveItemWorkbookWorksheetChartAxValueAxisMajorGridlineFormatLine' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/valueaxis/minorgridlines", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgDriveItemWorkbookWorksheetChartAxValueAxisMinorGridline", + "oracle": "no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/minorGridlines and 'Remove-MgDriveItemWorkbookWorksheetChartAxValueAxisMinorGridline' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/valueaxis/minorgridlines/format", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgDriveItemWorkbookWorksheetChartAxValueAxisMinorGridlineFormat", + "oracle": "no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/minorGridlines/format and 'Remove-MgDriveItemWorkbookWorksheetChartAxValueAxisMinorGridlineFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/valueaxis/minorgridlines/format/line", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgDriveItemWorkbookWorksheetChartAxValueAxisMinorGridlineFormatLine", + "oracle": "no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/minorGridlines/format/line and 'Remove-MgDriveItemWorkbookWorksheetChartAxValueAxisMinorGridlineFormatLine' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/valueaxis/title", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgDriveItemWorkbookWorksheetChartAxValueAxisTitle", + "oracle": "no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/title and 'Remove-MgDriveItemWorkbookWorksheetChartAxValueAxisTitle' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/valueaxis/title/format", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgDriveItemWorkbookWorksheetChartAxValueAxisTitleFormat", + "oracle": "no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/title/format and 'Remove-MgDriveItemWorkbookWorksheetChartAxValueAxisTitleFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/valueaxis/title/format/font", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgDriveItemWorkbookWorksheetChartAxValueAxisTitleFormatFont", + "oracle": "no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/title/format/font and 'Remove-MgDriveItemWorkbookWorksheetChartAxValueAxisTitleFormatFont' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/datalabels", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgDriveItemWorkbookWorksheetChartDataLabel", + "oracle": "no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/dataLabels and 'Remove-MgDriveItemWorkbookWorksheetChartDataLabel' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/datalabels/format", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgDriveItemWorkbookWorksheetChartDataLabelFormat", + "oracle": "no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/dataLabels/format and 'Remove-MgDriveItemWorkbookWorksheetChartDataLabelFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/datalabels/format/fill", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgDriveItemWorkbookWorksheetChartDataLabelFormatFill", + "oracle": "no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/dataLabels/format/fill and 'Remove-MgDriveItemWorkbookWorksheetChartDataLabelFormatFill' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/datalabels/format/font", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgDriveItemWorkbookWorksheetChartDataLabelFormatFont", + "oracle": "no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/dataLabels/format/font and 'Remove-MgDriveItemWorkbookWorksheetChartDataLabelFormatFont' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/format", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgDriveItemWorkbookWorksheetChartFormat", + "oracle": "no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/format and 'Remove-MgDriveItemWorkbookWorksheetChartFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/format/fill", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgDriveItemWorkbookWorksheetChartFormatFill", + "oracle": "no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/format/fill and 'Remove-MgDriveItemWorkbookWorksheetChartFormatFill' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/format/font", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgDriveItemWorkbookWorksheetChartFormatFont", + "oracle": "no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/format/font and 'Remove-MgDriveItemWorkbookWorksheetChartFormatFont' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/legend", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgDriveItemWorkbookWorksheetChartLegend", + "oracle": "no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/legend and 'Remove-MgDriveItemWorkbookWorksheetChartLegend' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/legend/format", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgDriveItemWorkbookWorksheetChartLegendFormat", + "oracle": "no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/legend/format and 'Remove-MgDriveItemWorkbookWorksheetChartLegendFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/legend/format/fill", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgDriveItemWorkbookWorksheetChartLegendFormatFill", + "oracle": "no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/legend/format/fill and 'Remove-MgDriveItemWorkbookWorksheetChartLegendFormatFill' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/legend/format/font", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgDriveItemWorkbookWorksheetChartLegendFormatFont", + "oracle": "no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/legend/format/font and 'Remove-MgDriveItemWorkbookWorksheetChartLegendFormatFont' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/series/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgDriveItemWorkbookWorksheetChartSery", + "oracle": "no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param} and 'Remove-MgDriveItemWorkbookWorksheetChartSery' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/series/{}/format", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgDriveItemWorkbookWorksheetChartSeryFormat", + "oracle": "no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/format and 'Remove-MgDriveItemWorkbookWorksheetChartSeryFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/series/{}/format/fill", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgDriveItemWorkbookWorksheetChartSeryFormatFill", + "oracle": "no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/format/fill and 'Remove-MgDriveItemWorkbookWorksheetChartSeryFormatFill' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/series/{}/format/line", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgDriveItemWorkbookWorksheetChartSeryFormatLine", + "oracle": "no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/format/line and 'Remove-MgDriveItemWorkbookWorksheetChartSeryFormatLine' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/series/{}/points/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgDriveItemWorkbookWorksheetChartSeryPoint", + "oracle": "no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/points/{param} and 'Remove-MgDriveItemWorkbookWorksheetChartSeryPoint' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/series/{}/points/{}/format", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgDriveItemWorkbookWorksheetChartSeryPointFormat", + "oracle": "no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/points/{param}/format and 'Remove-MgDriveItemWorkbookWorksheetChartSeryPointFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/series/{}/points/{}/format/fill", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgDriveItemWorkbookWorksheetChartSeryPointFormatFill", + "oracle": "no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/points/{param}/format/fill and 'Remove-MgDriveItemWorkbookWorksheetChartSeryPointFormatFill' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/title", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgDriveItemWorkbookWorksheetChartTitle", + "oracle": "no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/title and 'Remove-MgDriveItemWorkbookWorksheetChartTitle' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/title/format", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgDriveItemWorkbookWorksheetChartTitleFormat", + "oracle": "no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/title/format and 'Remove-MgDriveItemWorkbookWorksheetChartTitleFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/title/format/fill", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgDriveItemWorkbookWorksheetChartTitleFormatFill", + "oracle": "no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/title/format/fill and 'Remove-MgDriveItemWorkbookWorksheetChartTitleFormatFill' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/title/format/font", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgDriveItemWorkbookWorksheetChartTitleFormatFont", + "oracle": "no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/title/format/font and 'Remove-MgDriveItemWorkbookWorksheetChartTitleFormatFont' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/names/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgDriveItemWorkbookWorksheetName", + "oracle": "no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param} and 'Remove-MgDriveItemWorkbookWorksheetName' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/pivottables/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgDriveItemWorkbookWorksheetPivotTable", + "oracle": "no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/pivotTables/{param} and 'Remove-MgDriveItemWorkbookWorksheetPivotTable' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/protection", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgDriveItemWorkbookWorksheetProtection", + "oracle": "no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/protection and 'Remove-MgDriveItemWorkbookWorksheetProtection' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgDriveItemWorkbookWorksheetTable", + "oracle": "no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param} and 'Remove-MgDriveItemWorkbookWorksheetTable' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgDriveItemWorkbookWorksheetTableColumn", + "oracle": "no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param} and 'Remove-MgDriveItemWorkbookWorksheetTableColumn' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/filter", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgDriveItemWorkbookWorksheetTableColumnFilter", + "oracle": "no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/filter and 'Remove-MgDriveItemWorkbookWorksheetTableColumnFilter' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/rows/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgDriveItemWorkbookWorksheetTableRow", + "oracle": "no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param} and 'Remove-MgDriveItemWorkbookWorksheetTableRow' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/sort", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgDriveItemWorkbookWorksheetTableSort", + "oracle": "no oracle row for DELETE /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/sort and 'Remove-MgDriveItemWorkbookWorksheetTableSort' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/drives/{}/list/items/{}/permissions/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgDriveListItemPermission", + "oracle": "no oracle row for DELETE /drives/{param}/list/items/{param}/permissions/{param} and 'Remove-MgDriveListItemPermission' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/drives/{}/list/permissions/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgDriveListPermission", + "oracle": "no oracle row for DELETE /drives/{param}/list/permissions/{param} and 'Remove-MgDriveListPermission' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/groups/{}/calendar/events/{}/attachments/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgGroupCalendarEventAttachment", + "oracle": "no oracle row for DELETE /groups/{param}/calendar/events/{param}/attachments/{param} and 'Remove-MgGroupCalendarEventAttachment' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/groups/{}/calendar/events/{}/extensions/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgGroupCalendarEventExtension", + "oracle": "no oracle row for DELETE /groups/{param}/calendar/events/{param}/extensions/{param} and 'Remove-MgGroupCalendarEventExtension' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/groups/{}/planner", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgGroupPlanner", + "oracle": "no oracle row for DELETE /groups/{param}/planner and 'Remove-MgGroupPlanner' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/groups/{}/planner/plans/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgGroupPlannerPlan", + "oracle": "no oracle row for DELETE /groups/{param}/planner/plans/{param} and 'Remove-MgGroupPlannerPlan' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/groups/{}/planner/plans/{}/buckets/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgGroupPlannerPlanBucket", + "oracle": "no oracle row for DELETE /groups/{param}/planner/plans/{param}/buckets/{param} and 'Remove-MgGroupPlannerPlanBucket' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/groups/{}/planner/plans/{}/buckets/{}/tasks/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgGroupPlannerPlanBucketTask", + "oracle": "no oracle row for DELETE /groups/{param}/planner/plans/{param}/buckets/{param}/tasks/{param} and 'Remove-MgGroupPlannerPlanBucketTask' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/groups/{}/planner/plans/{}/buckets/{}/tasks/{}/assignedtotaskboardformat", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgGroupPlannerPlanBucketTaskAssignedToTaskBoardFormat", + "oracle": "no oracle row for DELETE /groups/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/assignedToTaskBoardFormat and 'Remove-MgGroupPlannerPlanBucketTaskAssignedToTaskBoardFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/groups/{}/planner/plans/{}/buckets/{}/tasks/{}/buckettaskboardformat", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgGroupPlannerPlanBucketTaskBucketTaskBoardFormat", + "oracle": "no oracle row for DELETE /groups/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/bucketTaskBoardFormat and 'Remove-MgGroupPlannerPlanBucketTaskBucketTaskBoardFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/groups/{}/planner/plans/{}/buckets/{}/tasks/{}/details", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgGroupPlannerPlanBucketTaskDetail", + "oracle": "no oracle row for DELETE /groups/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/details and 'Remove-MgGroupPlannerPlanBucketTaskDetail' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/groups/{}/planner/plans/{}/buckets/{}/tasks/{}/progresstaskboardformat", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgGroupPlannerPlanBucketTaskProgressTaskBoardFormat", + "oracle": "no oracle row for DELETE /groups/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/progressTaskBoardFormat and 'Remove-MgGroupPlannerPlanBucketTaskProgressTaskBoardFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/groups/{}/planner/plans/{}/tasks/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgGroupPlannerPlanTask", + "oracle": "no oracle row for DELETE /groups/{param}/planner/plans/{param}/tasks/{param} and 'Remove-MgGroupPlannerPlanTask' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/groups/{}/planner/plans/{}/tasks/{}/assignedtotaskboardformat", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgGroupPlannerPlanTaskAssignedToTaskBoardFormat", + "oracle": "no oracle row for DELETE /groups/{param}/planner/plans/{param}/tasks/{param}/assignedToTaskBoardFormat and 'Remove-MgGroupPlannerPlanTaskAssignedToTaskBoardFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/groups/{}/planner/plans/{}/tasks/{}/buckettaskboardformat", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgGroupPlannerPlanTaskBucketTaskBoardFormat", + "oracle": "no oracle row for DELETE /groups/{param}/planner/plans/{param}/tasks/{param}/bucketTaskBoardFormat and 'Remove-MgGroupPlannerPlanTaskBucketTaskBoardFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/groups/{}/planner/plans/{}/tasks/{}/details", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgGroupPlannerPlanTaskDetail", + "oracle": "no oracle row for DELETE /groups/{param}/planner/plans/{param}/tasks/{param}/details and 'Remove-MgGroupPlannerPlanTaskDetail' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/groups/{}/planner/plans/{}/tasks/{}/progresstaskboardformat", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgGroupPlannerPlanTaskProgressTaskBoardFormat", + "oracle": "no oracle row for DELETE /groups/{param}/planner/plans/{param}/tasks/{param}/progressTaskBoardFormat and 'Remove-MgGroupPlannerPlanTaskProgressTaskBoardFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/groups/{}/team/channels/{}/members/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgGroupTeamChannelMember", + "oracle": "no oracle row; 'Remove-MgGroupTeamChannelMember' ships from sibling family (see rename entries for this noun)" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/groups/{}/team/channels/{}/messages/{}/hostedcontents/{}/$value", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgGroupTeamChannelMessageHostedContentContent", + "oracle": "no oracle row for DELETE /groups/{param}/team/channels/{param}/messages/{param}/hostedContents/{param}/$value and 'Remove-MgGroupTeamChannelMessageHostedContentContent' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/groups/{}/team/channels/{}/messages/{}/replies/{}/hostedcontents/{}/$value", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgGroupTeamChannelMessageReplyHostedContentContent", + "oracle": "no oracle row for DELETE /groups/{param}/team/channels/{param}/messages/{param}/replies/{param}/hostedContents/{param}/$value and 'Remove-MgGroupTeamChannelMessageReplyHostedContentContent' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/groups/{}/team/primarychannel/members/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgGroupTeamPrimaryChannelMember", + "oracle": "no oracle row; 'Remove-MgGroupTeamPrimaryChannelMember' ships from sibling family (see rename entries for this noun)" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/groups/{}/team/primarychannel/messages/{}/hostedcontents/{}/$value", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgGroupTeamPrimaryChannelMessageHostedContentContent", + "oracle": "no oracle row for DELETE /groups/{param}/team/primaryChannel/messages/{param}/hostedContents/{param}/$value and 'Remove-MgGroupTeamPrimaryChannelMessageHostedContentContent' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/groups/{}/team/primarychannel/messages/{}/replies/{}/hostedcontents/{}/$value", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgGroupTeamPrimaryChannelMessageReplyHostedContentContent", + "oracle": "no oracle row for DELETE /groups/{param}/team/primaryChannel/messages/{param}/replies/{param}/hostedContents/{param}/$value and 'Remove-MgGroupTeamPrimaryChannelMessageReplyHostedContentContent' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identity/conditionalaccess/authenticationstrength", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgIdentityConditionalAccessAuthenticationStrength", + "oracle": "no oracle row for DELETE /identity/conditionalAccess/authenticationStrength and 'Remove-MgIdentityConditionalAccessAuthenticationStrength' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identity/conditionalaccess/authenticationstrength/authenticationmethodmodes/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgIdentityConditionalAccessAuthenticationStrengthAuthenticationMethodMode", + "oracle": "no oracle row for DELETE /identity/conditionalAccess/authenticationStrength/authenticationMethodModes/{param} and 'Remove-MgIdentityConditionalAccessAuthenticationStrengthAuthenticationMethodMode' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identity/conditionalaccess/authenticationstrength/policies/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgIdentityConditionalAccessAuthenticationStrengthPolicy", + "oracle": "no oracle row for DELETE /identity/conditionalAccess/authenticationStrength/policies/{param} and 'Remove-MgIdentityConditionalAccessAuthenticationStrengthPolicy' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identity/conditionalaccess/authenticationstrength/policies/{}/combinationconfigurations/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgIdentityConditionalAccessAuthenticationStrengthPolicyCombinationConfiguration", + "oracle": "no oracle row for DELETE /identity/conditionalAccess/authenticationStrength/policies/{param}/combinationConfigurations/{param} and 'Remove-MgIdentityConditionalAccessAuthenticationStrengthPolicyCombinationConfiguration' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/accessreviews", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceAccessReview", + "oracle": "no oracle row for DELETE /identityGovernance/accessReviews and 'Remove-MgIdentityGovernanceAccessReview' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/appconsent", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceAppConsent", + "oracle": "no oracle row for DELETE /identityGovernance/appConsent and 'Remove-MgIdentityGovernanceAppConsent' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceEntitlementManagement", + "oracle": "no oracle row for DELETE /identityGovernance/entitlementManagement and 'Remove-MgIdentityGovernanceEntitlementManagement' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/assignmentpolicies/{}/customextensionstagesettings/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyCustomExtensionStageSetting", + "oracle": "no oracle row for DELETE /identityGovernance/entitlementManagement/accessPackages/{param}/assignmentPolicies/{param}/customExtensionStageSettings/{param} and 'Remove-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyCustomExtensionStageSetting' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/assignmentpolicies/{}/questions/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyQuestion", + "oracle": "no oracle row for DELETE /identityGovernance/entitlementManagement/accessPackages/{param}/assignmentPolicies/{param}/questions/{param} and 'Remove-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyQuestion' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/incompatibleaccesspackages/{}/$ref", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceEntitlementManagementAccessPackageIncompatibleAccessPackageByRef", + "oracle": "no oracle row for DELETE /identityGovernance/entitlementManagement/accessPackages/{param}/incompatibleAccessPackages/{param}/$ref and 'Remove-MgIdentityGovernanceEntitlementManagementAccessPackageIncompatibleAccessPackageByRef' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/incompatiblegroups/{}/$ref", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceEntitlementManagementAccessPackageIncompatibleGroupByRef", + "oracle": "no oracle row for DELETE /identityGovernance/entitlementManagement/accessPackages/{param}/incompatibleGroups/{param}/$ref and 'Remove-MgIdentityGovernanceEntitlementManagementAccessPackageIncompatibleGroupByRef' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/resourcerolescopes/{}/role", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRole", + "oracle": "no oracle row for DELETE /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role and 'Remove-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRole' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/resourcerolescopes/{}/role/resource", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResource", + "oracle": "no oracle row for DELETE /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource and 'Remove-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResource' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/resourcerolescopes/{}/role/resource/roles/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceRole", + "oracle": "no oracle row for DELETE /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/roles/{param} and 'Remove-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceRole' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/resourcerolescopes/{}/role/resource/scopes/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScope", + "oracle": "no oracle row for DELETE /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/scopes/{param} and 'Remove-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScope' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/resourcerolescopes/{}/role/resource/scopes/{}/resource", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScopeResource", + "oracle": "no oracle row for DELETE /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/scopes/{param}/resource and 'Remove-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScopeResource' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/resourcerolescopes/{}/role/resource/scopes/{}/resource/roles/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScopeResourceRole", + "oracle": "no oracle row for DELETE /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/scopes/{param}/resource/roles/{param} and 'Remove-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScopeResourceRole' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/resourcerolescopes/{}/scope/resource", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResource", + "oracle": "no oracle row for DELETE /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource and 'Remove-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResource' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/resourcerolescopes/{}/scope/resource/roles/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRole", + "oracle": "no oracle row for DELETE /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/roles/{param} and 'Remove-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRole' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/resourcerolescopes/{}/scope/resource/roles/{}/resource", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRoleResource", + "oracle": "no oracle row for DELETE /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/roles/{param}/resource and 'Remove-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRoleResource' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/resourcerolescopes/{}/scope/resource/roles/{}/resource/scopes/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRoleResourceScope", + "oracle": "no oracle row for DELETE /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/roles/{param}/resource/scopes/{param} and 'Remove-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRoleResourceScope' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/resourcerolescopes/{}/scope/resource/scopes/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceScope", + "oracle": "no oracle row for DELETE /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/scopes/{param} and 'Remove-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceScope' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/roles/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceRole", + "oracle": "no oracle row for DELETE /identityGovernance/entitlementManagement/catalogs/{param}/resourceRoles/{param}/resource/roles/{param} and 'Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceRole' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceScope", + "oracle": "no oracle row for DELETE /identityGovernance/entitlementManagement/catalogs/{param}/resources/{param}/scopes/{param} and 'Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceScope' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/scopes/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceScope", + "oracle": "no oracle row for DELETE /identityGovernance/entitlementManagement/catalogs/{param}/resourceScopes/{param}/resource/scopes/{param} and 'Remove-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceScope' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/roles/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceRole", + "oracle": "no oracle row for DELETE /identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceRoles/{param}/resource/roles/{param} and 'Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceRole' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScope", + "oracle": "no oracle row for DELETE /identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resources/{param}/scopes/{param} and 'Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScope' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/scopes/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceScope", + "oracle": "no oracle row for DELETE /identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceScopes/{param}/resource/scopes/{param} and 'Remove-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceScope' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/entitlementmanagement/settings", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceEntitlementManagementSetting", + "oracle": "no oracle row for DELETE /identityGovernance/entitlementManagement/settings and 'Remove-MgIdentityGovernanceEntitlementManagementSetting' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/versions/{}/tasks/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTask", + "oracle": "no oracle row for DELETE /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/tasks/{param} and 'Remove-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTask' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/identitygovernance/termsofuse", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgIdentityGovernanceTermOfUse", + "oracle": "no oracle row for DELETE /identityGovernance/termsOfUse and 'Remove-MgIdentityGovernanceTermOfUse' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/planner/buckets/{}/tasks/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgPlannerBucketTask", + "oracle": "no oracle row for DELETE /planner/buckets/{param}/tasks/{param} and 'Remove-MgPlannerBucketTask' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/planner/buckets/{}/tasks/{}/assignedtotaskboardformat", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgPlannerBucketTaskAssignedToTaskBoardFormat", + "oracle": "no oracle row for DELETE /planner/buckets/{param}/tasks/{param}/assignedToTaskBoardFormat and 'Remove-MgPlannerBucketTaskAssignedToTaskBoardFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/planner/buckets/{}/tasks/{}/buckettaskboardformat", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgPlannerBucketTaskBucketTaskBoardFormat", + "oracle": "no oracle row for DELETE /planner/buckets/{param}/tasks/{param}/bucketTaskBoardFormat and 'Remove-MgPlannerBucketTaskBucketTaskBoardFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/planner/buckets/{}/tasks/{}/details", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgPlannerBucketTaskDetail", + "oracle": "no oracle row for DELETE /planner/buckets/{param}/tasks/{param}/details and 'Remove-MgPlannerBucketTaskDetail' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/planner/buckets/{}/tasks/{}/progresstaskboardformat", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgPlannerBucketTaskProgressTaskBoardFormat", + "oracle": "no oracle row for DELETE /planner/buckets/{param}/tasks/{param}/progressTaskBoardFormat and 'Remove-MgPlannerBucketTaskProgressTaskBoardFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/planner/plans/{}/buckets/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgPlannerPlanBucket", + "oracle": "no oracle row for DELETE /planner/plans/{param}/buckets/{param} and 'Remove-MgPlannerPlanBucket' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/planner/plans/{}/buckets/{}/tasks/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgPlannerPlanBucketTask", + "oracle": "no oracle row for DELETE /planner/plans/{param}/buckets/{param}/tasks/{param} and 'Remove-MgPlannerPlanBucketTask' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/planner/plans/{}/buckets/{}/tasks/{}/assignedtotaskboardformat", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgPlannerPlanBucketTaskAssignedToTaskBoardFormat", + "oracle": "no oracle row for DELETE /planner/plans/{param}/buckets/{param}/tasks/{param}/assignedToTaskBoardFormat and 'Remove-MgPlannerPlanBucketTaskAssignedToTaskBoardFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/planner/plans/{}/buckets/{}/tasks/{}/buckettaskboardformat", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgPlannerPlanBucketTaskBucketTaskBoardFormat", + "oracle": "no oracle row for DELETE /planner/plans/{param}/buckets/{param}/tasks/{param}/bucketTaskBoardFormat and 'Remove-MgPlannerPlanBucketTaskBucketTaskBoardFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/planner/plans/{}/buckets/{}/tasks/{}/details", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgPlannerPlanBucketTaskDetail", + "oracle": "no oracle row for DELETE /planner/plans/{param}/buckets/{param}/tasks/{param}/details and 'Remove-MgPlannerPlanBucketTaskDetail' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/planner/plans/{}/buckets/{}/tasks/{}/progresstaskboardformat", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgPlannerPlanBucketTaskProgressTaskBoardFormat", + "oracle": "no oracle row for DELETE /planner/plans/{param}/buckets/{param}/tasks/{param}/progressTaskBoardFormat and 'Remove-MgPlannerPlanBucketTaskProgressTaskBoardFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/planner/plans/{}/details", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgPlannerPlanDetail", + "oracle": "no oracle row for DELETE /planner/plans/{param}/details and 'Remove-MgPlannerPlanDetail' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/planner/plans/{}/tasks/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgPlannerPlanTask", + "oracle": "no oracle row for DELETE /planner/plans/{param}/tasks/{param} and 'Remove-MgPlannerPlanTask' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/planner/plans/{}/tasks/{}/assignedtotaskboardformat", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgPlannerPlanTaskAssignedToTaskBoardFormat", + "oracle": "no oracle row for DELETE /planner/plans/{param}/tasks/{param}/assignedToTaskBoardFormat and 'Remove-MgPlannerPlanTaskAssignedToTaskBoardFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/planner/plans/{}/tasks/{}/buckettaskboardformat", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgPlannerPlanTaskBucketTaskBoardFormat", + "oracle": "no oracle row for DELETE /planner/plans/{param}/tasks/{param}/bucketTaskBoardFormat and 'Remove-MgPlannerPlanTaskBucketTaskBoardFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/planner/plans/{}/tasks/{}/details", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgPlannerPlanTaskDetail", + "oracle": "no oracle row for DELETE /planner/plans/{param}/tasks/{param}/details and 'Remove-MgPlannerPlanTaskDetail' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/planner/plans/{}/tasks/{}/progresstaskboardformat", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgPlannerPlanTaskProgressTaskBoardFormat", + "oracle": "no oracle row for DELETE /planner/plans/{param}/tasks/{param}/progressTaskBoardFormat and 'Remove-MgPlannerPlanTaskProgressTaskBoardFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/planner/tasks/{}/details", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgPlannerTaskDetail", + "oracle": "no oracle row for DELETE /planner/tasks/{param}/details and 'Remove-MgPlannerTaskDetail' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/policies/conditionalaccesspolicies/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgPolicyConditionalAccessPolicy", + "oracle": "no oracle row for DELETE /policies/conditionalAccessPolicies/{param} and 'Remove-MgPolicyConditionalAccessPolicy' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/reports/authenticationmethods", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgReportAuthenticationMethod", + "oracle": "no oracle row for DELETE /reports/authenticationMethods and 'Remove-MgReportAuthenticationMethod' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/reports/dailyprintusagebyprinter/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgReportDailyPrintUsageByPrinter", + "oracle": "no oracle row for DELETE /reports/dailyPrintUsageByPrinter/{param} and 'Remove-MgReportDailyPrintUsageByPrinter' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/reports/dailyprintusagebyuser/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgReportDailyPrintUsageByUser", + "oracle": "no oracle row for DELETE /reports/dailyPrintUsageByUser/{param} and 'Remove-MgReportDailyPrintUsageByUser' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/reports/monthlyprintusagebyprinter/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgReportMonthlyPrintUsageByPrinter", + "oracle": "no oracle row for DELETE /reports/monthlyPrintUsageByPrinter/{param} and 'Remove-MgReportMonthlyPrintUsageByPrinter' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/reports/monthlyprintusagebyuser/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgReportMonthlyPrintUsageByUser", + "oracle": "no oracle row for DELETE /reports/monthlyPrintUsageByUser/{param} and 'Remove-MgReportMonthlyPrintUsageByUser' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/reports/partners", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgReportPartner", + "oracle": "no oracle row for DELETE /reports/partners and 'Remove-MgReportPartner' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/reports/security", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgReportSecurity", + "oracle": "no oracle row for DELETE /reports/security and 'Remove-MgReportSecurity' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/security/cases/ediscoverycases/{}/noncustodialdatasources/{}/datasource", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceDataSource", + "oracle": "no oracle row for DELETE /security/cases/ediscoveryCases/{param}/noncustodialDataSources/{param}/dataSource and 'Remove-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceDataSource' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/serviceprincipals/{}/federatedidentitycredentials/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgServicePrincipalFederatedIdentityCredential", + "oracle": "no oracle row for DELETE /servicePrincipals/{param}/federatedIdentityCredentials/{param} and 'Remove-MgServicePrincipalFederatedIdentityCredential' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/shares/{}/list/items/{}/permissions/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgShareListItemPermission", + "oracle": "no oracle row for DELETE /shares/{param}/list/items/{param}/permissions/{param} and 'Remove-MgShareListItemPermission' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/shares/{}/list/permissions/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgShareListPermission", + "oracle": "no oracle row for DELETE /shares/{param}/list/permissions/{param} and 'Remove-MgShareListPermission' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/teams/{}/channels/{}/members/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgTeamChannelMember", + "oracle": "no oracle row; 'Remove-MgTeamChannelMember' ships from sibling family (see rename entries for this noun)" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/teams/{}/channels/{}/messages/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgTeamChannelMessage", + "oracle": "no oracle row for DELETE /teams/{param}/channels/{param}/messages/{param} and 'Remove-MgTeamChannelMessage' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/teams/{}/channels/{}/messages/{}/hostedcontents/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgTeamChannelMessageHostedContent", + "oracle": "no oracle row for DELETE /teams/{param}/channels/{param}/messages/{param}/hostedContents/{param} and 'Remove-MgTeamChannelMessageHostedContent' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/teams/{}/channels/{}/messages/{}/hostedcontents/{}/$value", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgTeamChannelMessageHostedContentContent", + "oracle": "no oracle row for DELETE /teams/{param}/channels/{param}/messages/{param}/hostedContents/{param}/$value and 'Remove-MgTeamChannelMessageHostedContentContent' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/teams/{}/channels/{}/messages/{}/replies/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgTeamChannelMessageReply", + "oracle": "no oracle row for DELETE /teams/{param}/channels/{param}/messages/{param}/replies/{param} and 'Remove-MgTeamChannelMessageReply' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/teams/{}/channels/{}/messages/{}/replies/{}/hostedcontents/{}/$value", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgTeamChannelMessageReplyHostedContentContent", + "oracle": "no oracle row for DELETE /teams/{param}/channels/{param}/messages/{param}/replies/{param}/hostedContents/{param}/$value and 'Remove-MgTeamChannelMessageReplyHostedContentContent' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/teams/{}/primarychannel/members/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgTeamPrimaryChannelMember", + "oracle": "no oracle row; 'Remove-MgTeamPrimaryChannelMember' ships from sibling family (see rename entries for this noun)" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/teams/{}/primarychannel/messages/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgTeamPrimaryChannelMessage", + "oracle": "no oracle row for DELETE /teams/{param}/primaryChannel/messages/{param} and 'Remove-MgTeamPrimaryChannelMessage' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/teams/{}/primarychannel/messages/{}/hostedcontents/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgTeamPrimaryChannelMessageHostedContent", + "oracle": "no oracle row for DELETE /teams/{param}/primaryChannel/messages/{param}/hostedContents/{param} and 'Remove-MgTeamPrimaryChannelMessageHostedContent' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/teams/{}/primarychannel/messages/{}/hostedcontents/{}/$value", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgTeamPrimaryChannelMessageHostedContentContent", + "oracle": "no oracle row for DELETE /teams/{param}/primaryChannel/messages/{param}/hostedContents/{param}/$value and 'Remove-MgTeamPrimaryChannelMessageHostedContentContent' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/teams/{}/primarychannel/messages/{}/replies/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgTeamPrimaryChannelMessageReply", + "oracle": "no oracle row for DELETE /teams/{param}/primaryChannel/messages/{param}/replies/{param} and 'Remove-MgTeamPrimaryChannelMessageReply' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/teams/{}/primarychannel/messages/{}/replies/{}/hostedcontents/{}/$value", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgTeamPrimaryChannelMessageReplyHostedContentContent", + "oracle": "no oracle row for DELETE /teams/{param}/primaryChannel/messages/{param}/replies/{param}/hostedContents/{param}/$value and 'Remove-MgTeamPrimaryChannelMessageReplyHostedContentContent' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/teamwork/deletedteams/{}/channels/{}/members/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgTeamworkDeletedTeamChannelMember", + "oracle": "no oracle row; 'Remove-MgTeamworkDeletedTeamChannelMember' ships from sibling family (see rename entries for this noun)" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/teamwork/deletedteams/{}/channels/{}/messages/{}/hostedcontents/{}/$value", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgTeamworkDeletedTeamChannelMessageHostedContentContent", + "oracle": "no oracle row for DELETE /teamwork/deletedTeams/{param}/channels/{param}/messages/{param}/hostedContents/{param}/$value and 'Remove-MgTeamworkDeletedTeamChannelMessageHostedContentContent' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/teamwork/deletedteams/{}/channels/{}/messages/{}/replies/{}/hostedcontents/{}/$value", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgTeamworkDeletedTeamChannelMessageReplyHostedContentContent", + "oracle": "no oracle row for DELETE /teamwork/deletedTeams/{param}/channels/{param}/messages/{param}/replies/{param}/hostedContents/{param}/$value and 'Remove-MgTeamworkDeletedTeamChannelMessageReplyHostedContentContent' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/users/{}/authentication", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgUserAuthentication", + "oracle": "no oracle row for DELETE /users/{param}/authentication and 'Remove-MgUserAuthentication' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/users/{}/calendargroups/{}/calendars/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgUserCalendarGroupCalendar", + "oracle": "no oracle row for DELETE /users/{param}/calendarGroups/{param}/calendars/{param} and 'Remove-MgUserCalendarGroupCalendar' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/users/{}/calendargroups/{}/calendars/{}/calendarpermissions/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgUserCalendarGroupCalendarPermission", + "oracle": "no oracle row for DELETE /users/{param}/calendarGroups/{param}/calendars/{param}/calendarPermissions/{param} and 'Remove-MgUserCalendarGroupCalendarPermission' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/users/{}/calendargroups/{}/calendars/{}/events/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgUserCalendarGroupCalendarEvent", + "oracle": "no oracle row for DELETE /users/{param}/calendarGroups/{param}/calendars/{param}/events/{param} and 'Remove-MgUserCalendarGroupCalendarEvent' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/users/{}/calendargroups/{}/calendars/{}/events/{}/attachments/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgUserCalendarGroupCalendarEventAttachment", + "oracle": "no oracle row for DELETE /users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/attachments/{param} and 'Remove-MgUserCalendarGroupCalendarEventAttachment' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/users/{}/calendargroups/{}/calendars/{}/events/{}/extensions/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgUserCalendarGroupCalendarEventExtension", + "oracle": "no oracle row for DELETE /users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/extensions/{param} and 'Remove-MgUserCalendarGroupCalendarEventExtension' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/users/{}/calendars/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgUserCalendar", + "oracle": "no oracle row for DELETE /users/{param}/calendars/{param} and 'Remove-MgUserCalendar' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/users/{}/chats/{}/messages/{}/hostedcontents/{}/$value", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgUserChatMessageHostedContentContent", + "oracle": "no oracle row for DELETE /users/{param}/chats/{param}/messages/{param}/hostedContents/{param}/$value and 'Remove-MgUserChatMessageHostedContentContent' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/users/{}/chats/{}/messages/{}/replies/{}/hostedcontents/{}/$value", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgUserChatMessageReplyHostedContentContent", + "oracle": "no oracle row for DELETE /users/{param}/chats/{param}/messages/{param}/replies/{param}/hostedContents/{param}/$value and 'Remove-MgUserChatMessageReplyHostedContentContent' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/users/{}/chats/{}/targetedmessages/{}/hostedcontents/{}/$value", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgUserChatTargetedMessageHostedContentContent", + "oracle": "no oracle row for DELETE /users/{param}/chats/{param}/targetedMessages/{param}/hostedContents/{param}/$value and 'Remove-MgUserChatTargetedMessageHostedContentContent' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/users/{}/chats/{}/targetedmessages/{}/replies/{}/hostedcontents/{}/$value", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgUserChatTargetedMessageReplyHostedContentContent", + "oracle": "no oracle row for DELETE /users/{param}/chats/{param}/targetedMessages/{param}/replies/{param}/hostedContents/{param}/$value and 'Remove-MgUserChatTargetedMessageReplyHostedContentContent' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/users/{}/joinedteams/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgUserJoinedTeam", + "oracle": "no oracle row for DELETE /users/{param}/joinedTeams/{param} and 'Remove-MgUserJoinedTeam' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/users/{}/joinedteams/{}/channels/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgUserJoinedTeamChannel", + "oracle": "no oracle row for DELETE /users/{param}/joinedTeams/{param}/channels/{param} and 'Remove-MgUserJoinedTeamChannel' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/users/{}/joinedteams/{}/channels/{}/allmembers/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgUserJoinedTeamChannelAllMember", + "oracle": "no oracle row for DELETE /users/{param}/joinedTeams/{param}/channels/{param}/allMembers/{param} and 'Remove-MgUserJoinedTeamChannelAllMember' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/users/{}/joinedteams/{}/channels/{}/filesfolder/$value", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgUserJoinedTeamChannelFileFolderContent", + "oracle": "no oracle row for DELETE /users/{param}/joinedTeams/{param}/channels/{param}/filesFolder/$value and 'Remove-MgUserJoinedTeamChannelFileFolderContent' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/users/{}/joinedteams/{}/channels/{}/members/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgUserJoinedTeamChannelMember", + "oracle": "no oracle row for DELETE /users/{param}/joinedTeams/{param}/channels/{param}/members/{param} and 'Remove-MgUserJoinedTeamChannelMember' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/users/{}/joinedteams/{}/channels/{}/messages/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgUserJoinedTeamChannelMessage", + "oracle": "no oracle row for DELETE /users/{param}/joinedTeams/{param}/channels/{param}/messages/{param} and 'Remove-MgUserJoinedTeamChannelMessage' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/users/{}/joinedteams/{}/channels/{}/messages/{}/hostedcontents/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgUserJoinedTeamChannelMessageHostedContent", + "oracle": "no oracle row for DELETE /users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/hostedContents/{param} and 'Remove-MgUserJoinedTeamChannelMessageHostedContent' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/users/{}/joinedteams/{}/channels/{}/messages/{}/hostedcontents/{}/$value", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgUserJoinedTeamChannelMessageHostedContentContent", + "oracle": "no oracle row for DELETE /users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/hostedContents/{param}/$value and 'Remove-MgUserJoinedTeamChannelMessageHostedContentContent' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/users/{}/joinedteams/{}/channels/{}/messages/{}/replies/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgUserJoinedTeamChannelMessageReply", + "oracle": "no oracle row for DELETE /users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/replies/{param} and 'Remove-MgUserJoinedTeamChannelMessageReply' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/users/{}/joinedteams/{}/channels/{}/messages/{}/replies/{}/hostedcontents/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgUserJoinedTeamChannelMessageReplyHostedContent", + "oracle": "no oracle row for DELETE /users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/replies/{param}/hostedContents/{param} and 'Remove-MgUserJoinedTeamChannelMessageReplyHostedContent' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/users/{}/joinedteams/{}/channels/{}/messages/{}/replies/{}/hostedcontents/{}/$value", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgUserJoinedTeamChannelMessageReplyHostedContentContent", + "oracle": "no oracle row for DELETE /users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/replies/{param}/hostedContents/{param}/$value and 'Remove-MgUserJoinedTeamChannelMessageReplyHostedContentContent' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/users/{}/joinedteams/{}/channels/{}/sharedwithteams/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgUserJoinedTeamChannelSharedWithTeam", + "oracle": "no oracle row for DELETE /users/{param}/joinedTeams/{param}/channels/{param}/sharedWithTeams/{param} and 'Remove-MgUserJoinedTeamChannelSharedWithTeam' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/users/{}/joinedteams/{}/channels/{}/tabs/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgUserJoinedTeamChannelTab", + "oracle": "no oracle row for DELETE /users/{param}/joinedTeams/{param}/channels/{param}/tabs/{param} and 'Remove-MgUserJoinedTeamChannelTab' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/users/{}/joinedteams/{}/installedapps/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgUserJoinedTeamInstalledApp", + "oracle": "no oracle row for DELETE /users/{param}/joinedTeams/{param}/installedApps/{param} and 'Remove-MgUserJoinedTeamInstalledApp' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/users/{}/joinedteams/{}/members/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgUserJoinedTeamMember", + "oracle": "no oracle row for DELETE /users/{param}/joinedTeams/{param}/members/{param} and 'Remove-MgUserJoinedTeamMember' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/users/{}/joinedteams/{}/operations/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgUserJoinedTeamOperation", + "oracle": "no oracle row for DELETE /users/{param}/joinedTeams/{param}/operations/{param} and 'Remove-MgUserJoinedTeamOperation' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/users/{}/joinedteams/{}/permissiongrants/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgUserJoinedTeamPermissionGrant", + "oracle": "no oracle row for DELETE /users/{param}/joinedTeams/{param}/permissionGrants/{param} and 'Remove-MgUserJoinedTeamPermissionGrant' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/users/{}/joinedteams/{}/photo/$value", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgUserJoinedTeamPhotoContent", + "oracle": "no oracle row for DELETE /users/{param}/joinedTeams/{param}/photo/$value and 'Remove-MgUserJoinedTeamPhotoContent' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/users/{}/joinedteams/{}/primarychannel", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgUserJoinedTeamPrimaryChannel", + "oracle": "no oracle row for DELETE /users/{param}/joinedTeams/{param}/primaryChannel and 'Remove-MgUserJoinedTeamPrimaryChannel' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/users/{}/joinedteams/{}/primarychannel/allmembers/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgUserJoinedTeamPrimaryChannelAllMember", + "oracle": "no oracle row for DELETE /users/{param}/joinedTeams/{param}/primaryChannel/allMembers/{param} and 'Remove-MgUserJoinedTeamPrimaryChannelAllMember' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/users/{}/joinedteams/{}/primarychannel/filesfolder/$value", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgUserJoinedTeamPrimaryChannelFileFolderContent", + "oracle": "no oracle row for DELETE /users/{param}/joinedTeams/{param}/primaryChannel/filesFolder/$value and 'Remove-MgUserJoinedTeamPrimaryChannelFileFolderContent' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/users/{}/joinedteams/{}/primarychannel/members/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgUserJoinedTeamPrimaryChannelMember", + "oracle": "no oracle row for DELETE /users/{param}/joinedTeams/{param}/primaryChannel/members/{param} and 'Remove-MgUserJoinedTeamPrimaryChannelMember' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/users/{}/joinedteams/{}/primarychannel/messages/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgUserJoinedTeamPrimaryChannelMessage", + "oracle": "no oracle row for DELETE /users/{param}/joinedTeams/{param}/primaryChannel/messages/{param} and 'Remove-MgUserJoinedTeamPrimaryChannelMessage' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/users/{}/joinedteams/{}/primarychannel/messages/{}/hostedcontents/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgUserJoinedTeamPrimaryChannelMessageHostedContent", + "oracle": "no oracle row for DELETE /users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/hostedContents/{param} and 'Remove-MgUserJoinedTeamPrimaryChannelMessageHostedContent' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/users/{}/joinedteams/{}/primarychannel/messages/{}/hostedcontents/{}/$value", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgUserJoinedTeamPrimaryChannelMessageHostedContentContent", + "oracle": "no oracle row for DELETE /users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/hostedContents/{param}/$value and 'Remove-MgUserJoinedTeamPrimaryChannelMessageHostedContentContent' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/users/{}/joinedteams/{}/primarychannel/messages/{}/replies/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgUserJoinedTeamPrimaryChannelMessageReply", + "oracle": "no oracle row for DELETE /users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/replies/{param} and 'Remove-MgUserJoinedTeamPrimaryChannelMessageReply' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/users/{}/joinedteams/{}/primarychannel/messages/{}/replies/{}/hostedcontents/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgUserJoinedTeamPrimaryChannelMessageReplyHostedContent", + "oracle": "no oracle row for DELETE /users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/replies/{param}/hostedContents/{param} and 'Remove-MgUserJoinedTeamPrimaryChannelMessageReplyHostedContent' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/users/{}/joinedteams/{}/primarychannel/messages/{}/replies/{}/hostedcontents/{}/$value", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgUserJoinedTeamPrimaryChannelMessageReplyHostedContentContent", + "oracle": "no oracle row for DELETE /users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/replies/{param}/hostedContents/{param}/$value and 'Remove-MgUserJoinedTeamPrimaryChannelMessageReplyHostedContentContent' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/users/{}/joinedteams/{}/primarychannel/sharedwithteams/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgUserJoinedTeamPrimaryChannelSharedWithTeam", + "oracle": "no oracle row for DELETE /users/{param}/joinedTeams/{param}/primaryChannel/sharedWithTeams/{param} and 'Remove-MgUserJoinedTeamPrimaryChannelSharedWithTeam' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/users/{}/joinedteams/{}/primarychannel/tabs/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgUserJoinedTeamPrimaryChannelTab", + "oracle": "no oracle row for DELETE /users/{param}/joinedTeams/{param}/primaryChannel/tabs/{param} and 'Remove-MgUserJoinedTeamPrimaryChannelTab' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/users/{}/joinedteams/{}/schedule", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgUserJoinedTeamSchedule", + "oracle": "no oracle row for DELETE /users/{param}/joinedTeams/{param}/schedule and 'Remove-MgUserJoinedTeamSchedule' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/users/{}/joinedteams/{}/schedule/daynotes/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgUserJoinedTeamScheduleDayNote", + "oracle": "no oracle row for DELETE /users/{param}/joinedTeams/{param}/schedule/dayNotes/{param} and 'Remove-MgUserJoinedTeamScheduleDayNote' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/users/{}/joinedteams/{}/schedule/offershiftrequests/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgUserJoinedTeamScheduleOfferShiftRequest", + "oracle": "no oracle row for DELETE /users/{param}/joinedTeams/{param}/schedule/offerShiftRequests/{param} and 'Remove-MgUserJoinedTeamScheduleOfferShiftRequest' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/users/{}/joinedteams/{}/schedule/openshiftchangerequests/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgUserJoinedTeamScheduleOpenShiftChangeRequest", + "oracle": "no oracle row for DELETE /users/{param}/joinedTeams/{param}/schedule/openShiftChangeRequests/{param} and 'Remove-MgUserJoinedTeamScheduleOpenShiftChangeRequest' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/users/{}/joinedteams/{}/schedule/openshifts/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgUserJoinedTeamScheduleOpenShift", + "oracle": "no oracle row for DELETE /users/{param}/joinedTeams/{param}/schedule/openShifts/{param} and 'Remove-MgUserJoinedTeamScheduleOpenShift' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/users/{}/joinedteams/{}/schedule/schedulinggroups/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgUserJoinedTeamScheduleSchedulingGroup", + "oracle": "no oracle row for DELETE /users/{param}/joinedTeams/{param}/schedule/schedulingGroups/{param} and 'Remove-MgUserJoinedTeamScheduleSchedulingGroup' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/users/{}/joinedteams/{}/schedule/shifts/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgUserJoinedTeamScheduleShift", + "oracle": "no oracle row for DELETE /users/{param}/joinedTeams/{param}/schedule/shifts/{param} and 'Remove-MgUserJoinedTeamScheduleShift' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/users/{}/joinedteams/{}/schedule/swapshiftschangerequests/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgUserJoinedTeamScheduleSwapShiftChangeRequest", + "oracle": "no oracle row for DELETE /users/{param}/joinedTeams/{param}/schedule/swapShiftsChangeRequests/{param} and 'Remove-MgUserJoinedTeamScheduleSwapShiftChangeRequest' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/users/{}/joinedteams/{}/schedule/timecards/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgUserJoinedTeamScheduleTimeCard", + "oracle": "no oracle row for DELETE /users/{param}/joinedTeams/{param}/schedule/timeCards/{param} and 'Remove-MgUserJoinedTeamScheduleTimeCard' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/users/{}/joinedteams/{}/schedule/timeoffreasons/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgUserJoinedTeamScheduleTimeOffReason", + "oracle": "no oracle row for DELETE /users/{param}/joinedTeams/{param}/schedule/timeOffReasons/{param} and 'Remove-MgUserJoinedTeamScheduleTimeOffReason' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/users/{}/joinedteams/{}/schedule/timeoffrequests/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgUserJoinedTeamScheduleTimeOffRequest", + "oracle": "no oracle row for DELETE /users/{param}/joinedTeams/{param}/schedule/timeOffRequests/{param} and 'Remove-MgUserJoinedTeamScheduleTimeOffRequest' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/users/{}/joinedteams/{}/schedule/timesoff/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgUserJoinedTeamScheduleTimeOff", + "oracle": "no oracle row for DELETE /users/{param}/joinedTeams/{param}/schedule/timesOff/{param} and 'Remove-MgUserJoinedTeamScheduleTimeOff' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/users/{}/joinedteams/{}/tags/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgUserJoinedTeamTag", + "oracle": "no oracle row for DELETE /users/{param}/joinedTeams/{param}/tags/{param} and 'Remove-MgUserJoinedTeamTag' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/users/{}/joinedteams/{}/tags/{}/members/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgUserJoinedTeamTagMember", + "oracle": "no oracle row for DELETE /users/{param}/joinedTeams/{param}/tags/{param}/members/{param} and 'Remove-MgUserJoinedTeamTagMember' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/users/{}/planner", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgUserPlanner", + "oracle": "no oracle row for DELETE /users/{param}/planner and 'Remove-MgUserPlanner' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/users/{}/planner/plans/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgUserPlannerPlan", + "oracle": "no oracle row for DELETE /users/{param}/planner/plans/{param} and 'Remove-MgUserPlannerPlan' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/users/{}/planner/plans/{}/buckets/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgUserPlannerPlanBucket", + "oracle": "no oracle row for DELETE /users/{param}/planner/plans/{param}/buckets/{param} and 'Remove-MgUserPlannerPlanBucket' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/users/{}/planner/plans/{}/buckets/{}/tasks/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgUserPlannerPlanBucketTask", + "oracle": "no oracle row for DELETE /users/{param}/planner/plans/{param}/buckets/{param}/tasks/{param} and 'Remove-MgUserPlannerPlanBucketTask' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/users/{}/planner/plans/{}/buckets/{}/tasks/{}/assignedtotaskboardformat", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgUserPlannerPlanBucketTaskAssignedToTaskBoardFormat", + "oracle": "no oracle row for DELETE /users/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/assignedToTaskBoardFormat and 'Remove-MgUserPlannerPlanBucketTaskAssignedToTaskBoardFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/users/{}/planner/plans/{}/buckets/{}/tasks/{}/buckettaskboardformat", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgUserPlannerPlanBucketTaskBucketTaskBoardFormat", + "oracle": "no oracle row for DELETE /users/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/bucketTaskBoardFormat and 'Remove-MgUserPlannerPlanBucketTaskBucketTaskBoardFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/users/{}/planner/plans/{}/buckets/{}/tasks/{}/details", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgUserPlannerPlanBucketTaskDetail", + "oracle": "no oracle row for DELETE /users/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/details and 'Remove-MgUserPlannerPlanBucketTaskDetail' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/users/{}/planner/plans/{}/buckets/{}/tasks/{}/progresstaskboardformat", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgUserPlannerPlanBucketTaskProgressTaskBoardFormat", + "oracle": "no oracle row for DELETE /users/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/progressTaskBoardFormat and 'Remove-MgUserPlannerPlanBucketTaskProgressTaskBoardFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/users/{}/planner/plans/{}/details", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgUserPlannerPlanDetail", + "oracle": "no oracle row for DELETE /users/{param}/planner/plans/{param}/details and 'Remove-MgUserPlannerPlanDetail' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/users/{}/planner/plans/{}/tasks/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgUserPlannerPlanTask", + "oracle": "no oracle row for DELETE /users/{param}/planner/plans/{param}/tasks/{param} and 'Remove-MgUserPlannerPlanTask' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/users/{}/planner/plans/{}/tasks/{}/assignedtotaskboardformat", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgUserPlannerPlanTaskAssignedToTaskBoardFormat", + "oracle": "no oracle row for DELETE /users/{param}/planner/plans/{param}/tasks/{param}/assignedToTaskBoardFormat and 'Remove-MgUserPlannerPlanTaskAssignedToTaskBoardFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/users/{}/planner/plans/{}/tasks/{}/buckettaskboardformat", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgUserPlannerPlanTaskBucketTaskBoardFormat", + "oracle": "no oracle row for DELETE /users/{param}/planner/plans/{param}/tasks/{param}/bucketTaskBoardFormat and 'Remove-MgUserPlannerPlanTaskBucketTaskBoardFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/users/{}/planner/plans/{}/tasks/{}/details", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgUserPlannerPlanTaskDetail", + "oracle": "no oracle row for DELETE /users/{param}/planner/plans/{param}/tasks/{param}/details and 'Remove-MgUserPlannerPlanTaskDetail' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/users/{}/planner/plans/{}/tasks/{}/progresstaskboardformat", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgUserPlannerPlanTaskProgressTaskBoardFormat", + "oracle": "no oracle row for DELETE /users/{param}/planner/plans/{param}/tasks/{param}/progressTaskBoardFormat and 'Remove-MgUserPlannerPlanTaskProgressTaskBoardFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/users/{}/planner/tasks/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgUserPlannerTask", + "oracle": "no oracle row for DELETE /users/{param}/planner/tasks/{param} and 'Remove-MgUserPlannerTask' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/users/{}/planner/tasks/{}/assignedtotaskboardformat", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgUserPlannerTaskAssignedToTaskBoardFormat", + "oracle": "no oracle row for DELETE /users/{param}/planner/tasks/{param}/assignedToTaskBoardFormat and 'Remove-MgUserPlannerTaskAssignedToTaskBoardFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/users/{}/planner/tasks/{}/buckettaskboardformat", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgUserPlannerTaskBucketTaskBoardFormat", + "oracle": "no oracle row for DELETE /users/{param}/planner/tasks/{param}/bucketTaskBoardFormat and 'Remove-MgUserPlannerTaskBucketTaskBoardFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/users/{}/planner/tasks/{}/details", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgUserPlannerTaskDetail", + "oracle": "no oracle row for DELETE /users/{param}/planner/tasks/{param}/details and 'Remove-MgUserPlannerTaskDetail' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/users/{}/planner/tasks/{}/progresstaskboardformat", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgUserPlannerTaskProgressTaskBoardFormat", + "oracle": "no oracle row for DELETE /users/{param}/planner/tasks/{param}/progressTaskBoardFormat and 'Remove-MgUserPlannerTaskProgressTaskBoardFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "DELETE", + "uri": "/users/{}/todo", + "action": "suppress", + "evidence": { + "ourCommand": "Remove-MgUserTodo", + "oracle": "no oracle row for DELETE /users/{param}/todo and 'Remove-MgUserTodo' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/admin/serviceannouncement", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgAdminServiceAnnouncement", + "oracle": "no oracle row for GET /admin/serviceAnnouncement and 'Get-MgAdminServiceAnnouncement' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/auditlogs", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgAuditLog", + "oracle": "no oracle row for GET /auditLogs and 'Get-MgAuditLog' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/chats/{}/messages/{}/hostedcontents/{}/$value", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgChatMessageHostedContentContent", + "oracle": "no oracle row for GET /chats/{param}/messages/{param}/hostedContents/{param}/$value and 'Get-MgChatMessageHostedContentContent' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/chats/{}/messages/{}/replies/{}/hostedcontents/{}/$value", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgChatMessageReplyHostedContentContent", + "oracle": "no oracle row for GET /chats/{param}/messages/{param}/replies/{param}/hostedContents/{param}/$value and 'Get-MgChatMessageReplyHostedContentContent' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/chats/{}/targetedmessages/{}/hostedcontents/{}/$value", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgChatTargetedMessageHostedContentContent", + "oracle": "no oracle row for GET /chats/{param}/targetedMessages/{param}/hostedContents/{param}/$value and 'Get-MgChatTargetedMessageHostedContentContent' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/chats/{}/targetedmessages/{}/replies/{}/hostedcontents/{}/$value", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgChatTargetedMessageReplyHostedContentContent", + "oracle": "no oracle row for GET /chats/{param}/targetedMessages/{param}/replies/{param}/hostedContents/{param}/$value and 'Get-MgChatTargetedMessageReplyHostedContentContent' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/chats/getallmessages", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgChatGetAllMessages", + "oracle": "no oracle row for GET /chats/getAllMessages and 'Get-MgChatGetAllMessages' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/communications", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgCommunication", + "oracle": "no oracle row for GET /communications and 'Get-MgCommunication' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/communications/callrecords/{}/sessions/{}/segments", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgCommunicationCallRecordSessionSegment", + "oracle": "no oracle row for GET /communications/callRecords/{param}/sessions/{param}/segments and 'Get-MgCommunicationCallRecordSessionSegment' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/communications/callrecords/{}/sessions/{}/segments/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgCommunicationCallRecordSessionSegment", + "oracle": "no oracle row for GET /communications/callRecords/{param}/sessions/{param}/segments/{param} and 'Get-MgCommunicationCallRecordSessionSegment' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/directory/deleteditems/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDirectoryDeletedItemCount", + "oracle": "no oracle row for GET /directory/deletedItems/$count and 'Get-MgDirectoryDeletedItemCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/analytics/itemactivitystats/{}/activities/{}/driveitem", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemAnalyticItemActivityStatActivityDriveItem", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/analytics/itemActivityStats/{param}/activities/{param}/driveItem and 'Get-MgDriveItemAnalyticItemActivityStatActivityDriveItem' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/analytics/itemactivitystats/{}/activities/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemAnalyticItemActivityStatActivityCount", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/analytics/itemActivityStats/{param}/activities/$count and 'Get-MgDriveItemAnalyticItemActivityStatActivityCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbook", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook and 'Get-MgDriveItemWorkbook' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/application", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookApplication", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/application and 'Get-MgDriveItemWorkbookApplication' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/comments", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookComment", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/comments and 'Get-MgDriveItemWorkbookComment' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/comments/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookComment", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/comments/{param} and 'Get-MgDriveItemWorkbookComment' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/comments/{}/replies", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookCommentReply", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/comments/{param}/replies and 'Get-MgDriveItemWorkbookCommentReply' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/comments/{}/replies/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookCommentReply", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/comments/{param}/replies/{param} and 'Get-MgDriveItemWorkbookCommentReply' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/comments/{}/replies/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookCommentReplyCount", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/comments/{param}/replies/$count and 'Get-MgDriveItemWorkbookCommentReplyCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/comments/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookCommentCount", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/comments/$count and 'Get-MgDriveItemWorkbookCommentCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/functions", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookFunction", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/functions and 'Get-MgDriveItemWorkbookFunction' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/names", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookName", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/names and 'Get-MgDriveItemWorkbookName' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/names/{}/range", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookNameRange", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/names/{param}/range and 'Get-MgDriveItemWorkbookNameRange' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/names/{}/range/columnsafter", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookNameRangeColumnsAfter", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/names/{param}/range/columnsAfter and 'Get-MgDriveItemWorkbookNameRangeColumnsAfter' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/names/{}/range/columnsbefore", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookNameRangeColumnsBefore", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/names/{param}/range/columnsBefore and 'Get-MgDriveItemWorkbookNameRangeColumnsBefore' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/names/{}/range/entirecolumn", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookNameRangeEntireColumn", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/names/{param}/range/entireColumn and 'Get-MgDriveItemWorkbookNameRangeEntireColumn' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/names/{}/range/entirerow", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookNameRangeEntireRow", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/names/{param}/range/entireRow and 'Get-MgDriveItemWorkbookNameRangeEntireRow' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/names/{}/range/lastcell", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookNameRangeLastCell", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/names/{param}/range/lastCell and 'Get-MgDriveItemWorkbookNameRangeLastCell' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/names/{}/range/lastcolumn", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookNameRangeLastColumn", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/names/{param}/range/lastColumn and 'Get-MgDriveItemWorkbookNameRangeLastColumn' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/names/{}/range/lastrow", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookNameRangeLastRow", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/names/{param}/range/lastRow and 'Get-MgDriveItemWorkbookNameRangeLastRow' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/names/{}/range/rowsabove", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookNameRangeRowsAbove", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/names/{param}/range/rowsAbove and 'Get-MgDriveItemWorkbookNameRangeRowsAbove' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/names/{}/range/rowsbelow", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookNameRangeRowsBelow", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/names/{param}/range/rowsBelow and 'Get-MgDriveItemWorkbookNameRangeRowsBelow' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/names/{}/range/usedrange", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookNameRangeUsedRange", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/names/{param}/range/usedRange and 'Get-MgDriveItemWorkbookNameRangeUsedRange' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/names/{}/range/visibleview", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookNameRangeVisibleView", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/names/{param}/range/visibleView and 'Get-MgDriveItemWorkbookNameRangeVisibleView' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/names/{}/worksheet", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookNameWorksheet", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/names/{param}/worksheet and 'Get-MgDriveItemWorkbookNameWorksheet' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/names/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookNameCount", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/names/$count and 'Get-MgDriveItemWorkbookNameCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/operations", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookOperation", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/operations and 'Get-MgDriveItemWorkbookOperation' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/operations/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookOperation", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/operations/{param} and 'Get-MgDriveItemWorkbookOperation' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/operations/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookOperationCount", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/operations/$count and 'Get-MgDriveItemWorkbookOperationCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTable", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables and 'Get-MgDriveItemWorkbookTable' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTable", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param} and 'Get-MgDriveItemWorkbookTable' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableColumn", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns and 'Get-MgDriveItemWorkbookTableColumn' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableColumn", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param} and 'Get-MgDriveItemWorkbookTableColumn' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/databodyrange", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableColumnDataBodyRange", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange and 'Get-MgDriveItemWorkbookTableColumnDataBodyRange' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/databodyrange/columnsafter", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableColumnDataBodyRangeColumnsAfter", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/columnsAfter and 'Get-MgDriveItemWorkbookTableColumnDataBodyRangeColumnsAfter' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/databodyrange/columnsbefore", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableColumnDataBodyRangeColumnsBefore", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/columnsBefore and 'Get-MgDriveItemWorkbookTableColumnDataBodyRangeColumnsBefore' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/databodyrange/entirecolumn", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableColumnDataBodyRangeEntireColumn", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/entireColumn and 'Get-MgDriveItemWorkbookTableColumnDataBodyRangeEntireColumn' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/databodyrange/entirerow", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableColumnDataBodyRangeEntireRow", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/entireRow and 'Get-MgDriveItemWorkbookTableColumnDataBodyRangeEntireRow' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/databodyrange/lastcell", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableColumnDataBodyRangeLastCell", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/lastCell and 'Get-MgDriveItemWorkbookTableColumnDataBodyRangeLastCell' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/databodyrange/lastcolumn", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableColumnDataBodyRangeLastColumn", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/lastColumn and 'Get-MgDriveItemWorkbookTableColumnDataBodyRangeLastColumn' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/databodyrange/lastrow", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableColumnDataBodyRangeLastRow", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/lastRow and 'Get-MgDriveItemWorkbookTableColumnDataBodyRangeLastRow' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/databodyrange/rowsabove", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableColumnDataBodyRangeRowsAbove", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/rowsAbove and 'Get-MgDriveItemWorkbookTableColumnDataBodyRangeRowsAbove' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/databodyrange/rowsbelow", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableColumnDataBodyRangeRowsBelow", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/rowsBelow and 'Get-MgDriveItemWorkbookTableColumnDataBodyRangeRowsBelow' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/databodyrange/usedrange", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableColumnDataBodyRangeUsedRange", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/usedRange and 'Get-MgDriveItemWorkbookTableColumnDataBodyRangeUsedRange' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/databodyrange/visibleview", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableColumnDataBodyRangeVisibleView", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/visibleView and 'Get-MgDriveItemWorkbookTableColumnDataBodyRangeVisibleView' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/filter", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableColumnFilter", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/filter and 'Get-MgDriveItemWorkbookTableColumnFilter' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/headerrowrange", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableColumnHeaderRowRange", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange and 'Get-MgDriveItemWorkbookTableColumnHeaderRowRange' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/headerrowrange/columnsafter", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableColumnHeaderRowRangeColumnsAfter", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/columnsAfter and 'Get-MgDriveItemWorkbookTableColumnHeaderRowRangeColumnsAfter' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/headerrowrange/columnsbefore", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableColumnHeaderRowRangeColumnsBefore", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/columnsBefore and 'Get-MgDriveItemWorkbookTableColumnHeaderRowRangeColumnsBefore' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/headerrowrange/entirecolumn", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableColumnHeaderRowRangeEntireColumn", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/entireColumn and 'Get-MgDriveItemWorkbookTableColumnHeaderRowRangeEntireColumn' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/headerrowrange/entirerow", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableColumnHeaderRowRangeEntireRow", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/entireRow and 'Get-MgDriveItemWorkbookTableColumnHeaderRowRangeEntireRow' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/headerrowrange/lastcell", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableColumnHeaderRowRangeLastCell", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/lastCell and 'Get-MgDriveItemWorkbookTableColumnHeaderRowRangeLastCell' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/headerrowrange/lastcolumn", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableColumnHeaderRowRangeLastColumn", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/lastColumn and 'Get-MgDriveItemWorkbookTableColumnHeaderRowRangeLastColumn' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/headerrowrange/lastrow", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableColumnHeaderRowRangeLastRow", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/lastRow and 'Get-MgDriveItemWorkbookTableColumnHeaderRowRangeLastRow' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/headerrowrange/rowsabove", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableColumnHeaderRowRangeRowsAbove", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/rowsAbove and 'Get-MgDriveItemWorkbookTableColumnHeaderRowRangeRowsAbove' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/headerrowrange/rowsbelow", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableColumnHeaderRowRangeRowsBelow", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/rowsBelow and 'Get-MgDriveItemWorkbookTableColumnHeaderRowRangeRowsBelow' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/headerrowrange/usedrange", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableColumnHeaderRowRangeUsedRange", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/usedRange and 'Get-MgDriveItemWorkbookTableColumnHeaderRowRangeUsedRange' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/headerrowrange/visibleview", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableColumnHeaderRowRangeVisibleView", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/visibleView and 'Get-MgDriveItemWorkbookTableColumnHeaderRowRangeVisibleView' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/range", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableColumnRange", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range and 'Get-MgDriveItemWorkbookTableColumnRange' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/range/columnsafter", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableColumnRangeColumnsAfter", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/columnsAfter and 'Get-MgDriveItemWorkbookTableColumnRangeColumnsAfter' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/range/columnsbefore", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableColumnRangeColumnsBefore", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/columnsBefore and 'Get-MgDriveItemWorkbookTableColumnRangeColumnsBefore' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/range/entirecolumn", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableColumnRangeEntireColumn", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/entireColumn and 'Get-MgDriveItemWorkbookTableColumnRangeEntireColumn' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/range/entirerow", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableColumnRangeEntireRow", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/entireRow and 'Get-MgDriveItemWorkbookTableColumnRangeEntireRow' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/range/lastcell", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableColumnRangeLastCell", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/lastCell and 'Get-MgDriveItemWorkbookTableColumnRangeLastCell' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/range/lastcolumn", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableColumnRangeLastColumn", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/lastColumn and 'Get-MgDriveItemWorkbookTableColumnRangeLastColumn' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/range/lastrow", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableColumnRangeLastRow", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/lastRow and 'Get-MgDriveItemWorkbookTableColumnRangeLastRow' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/range/rowsabove", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableColumnRangeRowsAbove", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/rowsAbove and 'Get-MgDriveItemWorkbookTableColumnRangeRowsAbove' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/range/rowsbelow", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableColumnRangeRowsBelow", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/rowsBelow and 'Get-MgDriveItemWorkbookTableColumnRangeRowsBelow' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/range/usedrange", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableColumnRangeUsedRange", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/usedRange and 'Get-MgDriveItemWorkbookTableColumnRangeUsedRange' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/range/visibleview", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableColumnRangeVisibleView", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/visibleView and 'Get-MgDriveItemWorkbookTableColumnRangeVisibleView' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/totalrowrange", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableColumnTotalRowRange", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange and 'Get-MgDriveItemWorkbookTableColumnTotalRowRange' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/totalrowrange/columnsafter", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableColumnTotalRowRangeColumnsAfter", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/columnsAfter and 'Get-MgDriveItemWorkbookTableColumnTotalRowRangeColumnsAfter' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/totalrowrange/columnsbefore", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableColumnTotalRowRangeColumnsBefore", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/columnsBefore and 'Get-MgDriveItemWorkbookTableColumnTotalRowRangeColumnsBefore' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/totalrowrange/entirecolumn", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableColumnTotalRowRangeEntireColumn", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/entireColumn and 'Get-MgDriveItemWorkbookTableColumnTotalRowRangeEntireColumn' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/totalrowrange/entirerow", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableColumnTotalRowRangeEntireRow", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/entireRow and 'Get-MgDriveItemWorkbookTableColumnTotalRowRangeEntireRow' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/totalrowrange/lastcell", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableColumnTotalRowRangeLastCell", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/lastCell and 'Get-MgDriveItemWorkbookTableColumnTotalRowRangeLastCell' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/totalrowrange/lastcolumn", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableColumnTotalRowRangeLastColumn", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/lastColumn and 'Get-MgDriveItemWorkbookTableColumnTotalRowRangeLastColumn' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/totalrowrange/lastrow", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableColumnTotalRowRangeLastRow", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/lastRow and 'Get-MgDriveItemWorkbookTableColumnTotalRowRangeLastRow' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/totalrowrange/rowsabove", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableColumnTotalRowRangeRowsAbove", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/rowsAbove and 'Get-MgDriveItemWorkbookTableColumnTotalRowRangeRowsAbove' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/totalrowrange/rowsbelow", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableColumnTotalRowRangeRowsBelow", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/rowsBelow and 'Get-MgDriveItemWorkbookTableColumnTotalRowRangeRowsBelow' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/totalrowrange/usedrange", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableColumnTotalRowRangeUsedRange", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/usedRange and 'Get-MgDriveItemWorkbookTableColumnTotalRowRangeUsedRange' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/totalrowrange/visibleview", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableColumnTotalRowRangeVisibleView", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/visibleView and 'Get-MgDriveItemWorkbookTableColumnTotalRowRangeVisibleView' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableColumnCount", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/columns/$count and 'Get-MgDriveItemWorkbookTableColumnCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/databodyrange", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableDataBodyRange", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange and 'Get-MgDriveItemWorkbookTableDataBodyRange' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/databodyrange/columnsafter", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableDataBodyRangeColumnsAfter", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/columnsAfter and 'Get-MgDriveItemWorkbookTableDataBodyRangeColumnsAfter' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/databodyrange/columnsbefore", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableDataBodyRangeColumnsBefore", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/columnsBefore and 'Get-MgDriveItemWorkbookTableDataBodyRangeColumnsBefore' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/databodyrange/entirecolumn", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableDataBodyRangeEntireColumn", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/entireColumn and 'Get-MgDriveItemWorkbookTableDataBodyRangeEntireColumn' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/databodyrange/entirerow", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableDataBodyRangeEntireRow", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/entireRow and 'Get-MgDriveItemWorkbookTableDataBodyRangeEntireRow' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/databodyrange/lastcell", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableDataBodyRangeLastCell", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/lastCell and 'Get-MgDriveItemWorkbookTableDataBodyRangeLastCell' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/databodyrange/lastcolumn", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableDataBodyRangeLastColumn", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/lastColumn and 'Get-MgDriveItemWorkbookTableDataBodyRangeLastColumn' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/databodyrange/lastrow", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableDataBodyRangeLastRow", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/lastRow and 'Get-MgDriveItemWorkbookTableDataBodyRangeLastRow' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/databodyrange/rowsabove", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableDataBodyRangeRowsAbove", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/rowsAbove and 'Get-MgDriveItemWorkbookTableDataBodyRangeRowsAbove' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/databodyrange/rowsbelow", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableDataBodyRangeRowsBelow", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/rowsBelow and 'Get-MgDriveItemWorkbookTableDataBodyRangeRowsBelow' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/databodyrange/usedrange", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableDataBodyRangeUsedRange", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/usedRange and 'Get-MgDriveItemWorkbookTableDataBodyRangeUsedRange' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/databodyrange/visibleview", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableDataBodyRangeVisibleView", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/visibleView and 'Get-MgDriveItemWorkbookTableDataBodyRangeVisibleView' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/headerrowrange", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableHeaderRowRange", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange and 'Get-MgDriveItemWorkbookTableHeaderRowRange' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/headerrowrange/columnsafter", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableHeaderRowRangeColumnsAfter", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/columnsAfter and 'Get-MgDriveItemWorkbookTableHeaderRowRangeColumnsAfter' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/headerrowrange/columnsbefore", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableHeaderRowRangeColumnsBefore", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/columnsBefore and 'Get-MgDriveItemWorkbookTableHeaderRowRangeColumnsBefore' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/headerrowrange/entirecolumn", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableHeaderRowRangeEntireColumn", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/entireColumn and 'Get-MgDriveItemWorkbookTableHeaderRowRangeEntireColumn' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/headerrowrange/entirerow", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableHeaderRowRangeEntireRow", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/entireRow and 'Get-MgDriveItemWorkbookTableHeaderRowRangeEntireRow' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/headerrowrange/lastcell", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableHeaderRowRangeLastCell", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/lastCell and 'Get-MgDriveItemWorkbookTableHeaderRowRangeLastCell' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/headerrowrange/lastcolumn", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableHeaderRowRangeLastColumn", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/lastColumn and 'Get-MgDriveItemWorkbookTableHeaderRowRangeLastColumn' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/headerrowrange/lastrow", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableHeaderRowRangeLastRow", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/lastRow and 'Get-MgDriveItemWorkbookTableHeaderRowRangeLastRow' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/headerrowrange/rowsabove", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableHeaderRowRangeRowsAbove", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/rowsAbove and 'Get-MgDriveItemWorkbookTableHeaderRowRangeRowsAbove' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/headerrowrange/rowsbelow", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableHeaderRowRangeRowsBelow", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/rowsBelow and 'Get-MgDriveItemWorkbookTableHeaderRowRangeRowsBelow' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/headerrowrange/usedrange", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableHeaderRowRangeUsedRange", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/usedRange and 'Get-MgDriveItemWorkbookTableHeaderRowRangeUsedRange' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/headerrowrange/visibleview", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableHeaderRowRangeVisibleView", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/visibleView and 'Get-MgDriveItemWorkbookTableHeaderRowRangeVisibleView' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/range", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableRange", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/range and 'Get-MgDriveItemWorkbookTableRange' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/range/columnsafter", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableRangeColumnsAfter", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/range/columnsAfter and 'Get-MgDriveItemWorkbookTableRangeColumnsAfter' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/range/columnsbefore", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableRangeColumnsBefore", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/range/columnsBefore and 'Get-MgDriveItemWorkbookTableRangeColumnsBefore' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/range/entirecolumn", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableRangeEntireColumn", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/range/entireColumn and 'Get-MgDriveItemWorkbookTableRangeEntireColumn' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/range/entirerow", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableRangeEntireRow", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/range/entireRow and 'Get-MgDriveItemWorkbookTableRangeEntireRow' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/range/lastcell", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableRangeLastCell", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/range/lastCell and 'Get-MgDriveItemWorkbookTableRangeLastCell' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/range/lastcolumn", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableRangeLastColumn", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/range/lastColumn and 'Get-MgDriveItemWorkbookTableRangeLastColumn' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/range/lastrow", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableRangeLastRow", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/range/lastRow and 'Get-MgDriveItemWorkbookTableRangeLastRow' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/range/rowsabove", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableRangeRowsAbove", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/range/rowsAbove and 'Get-MgDriveItemWorkbookTableRangeRowsAbove' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/range/rowsbelow", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableRangeRowsBelow", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/range/rowsBelow and 'Get-MgDriveItemWorkbookTableRangeRowsBelow' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/range/usedrange", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableRangeUsedRange", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/range/usedRange and 'Get-MgDriveItemWorkbookTableRangeUsedRange' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/range/visibleview", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableRangeVisibleView", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/range/visibleView and 'Get-MgDriveItemWorkbookTableRangeVisibleView' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/rows", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableRow", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/rows and 'Get-MgDriveItemWorkbookTableRow' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/rows/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableRow", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/rows/{param} and 'Get-MgDriveItemWorkbookTableRow' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/rows/{}/range", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableRowRange", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range and 'Get-MgDriveItemWorkbookTableRowRange' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/rows/{}/range/columnsafter", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableRowRangeColumnsAfter", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/columnsAfter and 'Get-MgDriveItemWorkbookTableRowRangeColumnsAfter' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/rows/{}/range/columnsbefore", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableRowRangeColumnsBefore", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/columnsBefore and 'Get-MgDriveItemWorkbookTableRowRangeColumnsBefore' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/rows/{}/range/entirecolumn", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableRowRangeEntireColumn", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/entireColumn and 'Get-MgDriveItemWorkbookTableRowRangeEntireColumn' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/rows/{}/range/entirerow", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableRowRangeEntireRow", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/entireRow and 'Get-MgDriveItemWorkbookTableRowRangeEntireRow' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/rows/{}/range/lastcell", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableRowRangeLastCell", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/lastCell and 'Get-MgDriveItemWorkbookTableRowRangeLastCell' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/rows/{}/range/lastcolumn", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableRowRangeLastColumn", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/lastColumn and 'Get-MgDriveItemWorkbookTableRowRangeLastColumn' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/rows/{}/range/lastrow", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableRowRangeLastRow", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/lastRow and 'Get-MgDriveItemWorkbookTableRowRangeLastRow' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/rows/{}/range/rowsabove", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableRowRangeRowsAbove", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/rowsAbove and 'Get-MgDriveItemWorkbookTableRowRangeRowsAbove' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/rows/{}/range/rowsbelow", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableRowRangeRowsBelow", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/rowsBelow and 'Get-MgDriveItemWorkbookTableRowRangeRowsBelow' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/rows/{}/range/usedrange", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableRowRangeUsedRange", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/usedRange and 'Get-MgDriveItemWorkbookTableRowRangeUsedRange' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/rows/{}/range/visibleview", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableRowRangeVisibleView", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/visibleView and 'Get-MgDriveItemWorkbookTableRowRangeVisibleView' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/rows/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableRowCount", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/rows/$count and 'Get-MgDriveItemWorkbookTableRowCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/sort", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableSort", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/sort and 'Get-MgDriveItemWorkbookTableSort' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/totalrowrange", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableTotalRowRange", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange and 'Get-MgDriveItemWorkbookTableTotalRowRange' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/totalrowrange/columnsafter", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableTotalRowRangeColumnsAfter", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/columnsAfter and 'Get-MgDriveItemWorkbookTableTotalRowRangeColumnsAfter' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/totalrowrange/columnsbefore", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableTotalRowRangeColumnsBefore", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/columnsBefore and 'Get-MgDriveItemWorkbookTableTotalRowRangeColumnsBefore' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/totalrowrange/entirecolumn", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableTotalRowRangeEntireColumn", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/entireColumn and 'Get-MgDriveItemWorkbookTableTotalRowRangeEntireColumn' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/totalrowrange/entirerow", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableTotalRowRangeEntireRow", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/entireRow and 'Get-MgDriveItemWorkbookTableTotalRowRangeEntireRow' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/totalrowrange/lastcell", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableTotalRowRangeLastCell", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/lastCell and 'Get-MgDriveItemWorkbookTableTotalRowRangeLastCell' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/totalrowrange/lastcolumn", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableTotalRowRangeLastColumn", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/lastColumn and 'Get-MgDriveItemWorkbookTableTotalRowRangeLastColumn' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/totalrowrange/lastrow", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableTotalRowRangeLastRow", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/lastRow and 'Get-MgDriveItemWorkbookTableTotalRowRangeLastRow' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/totalrowrange/rowsabove", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableTotalRowRangeRowsAbove", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/rowsAbove and 'Get-MgDriveItemWorkbookTableTotalRowRangeRowsAbove' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/totalrowrange/rowsbelow", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableTotalRowRangeRowsBelow", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/rowsBelow and 'Get-MgDriveItemWorkbookTableTotalRowRangeRowsBelow' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/totalrowrange/usedrange", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableTotalRowRangeUsedRange", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/usedRange and 'Get-MgDriveItemWorkbookTableTotalRowRangeUsedRange' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/totalrowrange/visibleview", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableTotalRowRangeVisibleView", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/visibleView and 'Get-MgDriveItemWorkbookTableTotalRowRangeVisibleView' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/{}/worksheet", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableWorksheet", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/{param}/worksheet and 'Get-MgDriveItemWorkbookTableWorksheet' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/tables/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookTableCount", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/tables/$count and 'Get-MgDriveItemWorkbookTableCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheet", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets and 'Get-MgDriveItemWorkbookWorksheet' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheet", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param} and 'Get-MgDriveItemWorkbookWorksheet' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetChart", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts and 'Get-MgDriveItemWorkbookWorksheetChart' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetChart", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param} and 'Get-MgDriveItemWorkbookWorksheetChart' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetChartAx", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes and 'Get-MgDriveItemWorkbookWorksheetChartAx' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/categoryaxis", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetChartAxCategoryAxis", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis and 'Get-MgDriveItemWorkbookWorksheetChartAxCategoryAxis' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/categoryaxis/format", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetChartAxCategoryAxisFormat", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/format and 'Get-MgDriveItemWorkbookWorksheetChartAxCategoryAxisFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/categoryaxis/format/font", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetChartAxCategoryAxisFormatFont", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/format/font and 'Get-MgDriveItemWorkbookWorksheetChartAxCategoryAxisFormatFont' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/categoryaxis/format/line", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetChartAxCategoryAxisFormatLine", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/format/line and 'Get-MgDriveItemWorkbookWorksheetChartAxCategoryAxisFormatLine' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/categoryaxis/majorgridlines", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMajorGridline", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/majorGridlines and 'Get-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMajorGridline' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/categoryaxis/majorgridlines/format", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMajorGridlineFormat", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/majorGridlines/format and 'Get-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMajorGridlineFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/categoryaxis/majorgridlines/format/line", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMajorGridlineFormatLine", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/majorGridlines/format/line and 'Get-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMajorGridlineFormatLine' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/categoryaxis/minorgridlines", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMinorGridline", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/minorGridlines and 'Get-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMinorGridline' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/categoryaxis/minorgridlines/format", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMinorGridlineFormat", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/minorGridlines/format and 'Get-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMinorGridlineFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/categoryaxis/minorgridlines/format/line", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMinorGridlineFormatLine", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/minorGridlines/format/line and 'Get-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMinorGridlineFormatLine' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/categoryaxis/title", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetChartAxCategoryAxisTitle", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/title and 'Get-MgDriveItemWorkbookWorksheetChartAxCategoryAxisTitle' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/categoryaxis/title/format", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetChartAxCategoryAxisTitleFormat", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/title/format and 'Get-MgDriveItemWorkbookWorksheetChartAxCategoryAxisTitleFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/categoryaxis/title/format/font", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetChartAxCategoryAxisTitleFormatFont", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/title/format/font and 'Get-MgDriveItemWorkbookWorksheetChartAxCategoryAxisTitleFormatFont' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/seriesaxis", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetChartAxSeryAxis", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis and 'Get-MgDriveItemWorkbookWorksheetChartAxSeryAxis' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/seriesaxis/format", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetChartAxSeryAxisFormat", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/format and 'Get-MgDriveItemWorkbookWorksheetChartAxSeryAxisFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/seriesaxis/format/font", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetChartAxSeryAxisFormatFont", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/format/font and 'Get-MgDriveItemWorkbookWorksheetChartAxSeryAxisFormatFont' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/seriesaxis/format/line", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetChartAxSeryAxisFormatLine", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/format/line and 'Get-MgDriveItemWorkbookWorksheetChartAxSeryAxisFormatLine' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/seriesaxis/majorgridlines", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetChartAxSeryAxisMajorGridline", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/majorGridlines and 'Get-MgDriveItemWorkbookWorksheetChartAxSeryAxisMajorGridline' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/seriesaxis/majorgridlines/format", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetChartAxSeryAxisMajorGridlineFormat", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/majorGridlines/format and 'Get-MgDriveItemWorkbookWorksheetChartAxSeryAxisMajorGridlineFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/seriesaxis/majorgridlines/format/line", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetChartAxSeryAxisMajorGridlineFormatLine", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/majorGridlines/format/line and 'Get-MgDriveItemWorkbookWorksheetChartAxSeryAxisMajorGridlineFormatLine' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/seriesaxis/minorgridlines", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetChartAxSeryAxisMinorGridline", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/minorGridlines and 'Get-MgDriveItemWorkbookWorksheetChartAxSeryAxisMinorGridline' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/seriesaxis/minorgridlines/format", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetChartAxSeryAxisMinorGridlineFormat", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/minorGridlines/format and 'Get-MgDriveItemWorkbookWorksheetChartAxSeryAxisMinorGridlineFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/seriesaxis/minorgridlines/format/line", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetChartAxSeryAxisMinorGridlineFormatLine", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/minorGridlines/format/line and 'Get-MgDriveItemWorkbookWorksheetChartAxSeryAxisMinorGridlineFormatLine' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/seriesaxis/title", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetChartAxSeryAxisTitle", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/title and 'Get-MgDriveItemWorkbookWorksheetChartAxSeryAxisTitle' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/seriesaxis/title/format", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetChartAxSeryAxisTitleFormat", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/title/format and 'Get-MgDriveItemWorkbookWorksheetChartAxSeryAxisTitleFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/seriesaxis/title/format/font", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetChartAxSeryAxisTitleFormatFont", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/title/format/font and 'Get-MgDriveItemWorkbookWorksheetChartAxSeryAxisTitleFormatFont' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/valueaxis", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetChartAxValueAxis", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis and 'Get-MgDriveItemWorkbookWorksheetChartAxValueAxis' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/valueaxis/format", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetChartAxValueAxisFormat", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/format and 'Get-MgDriveItemWorkbookWorksheetChartAxValueAxisFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/valueaxis/format/font", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetChartAxValueAxisFormatFont", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/format/font and 'Get-MgDriveItemWorkbookWorksheetChartAxValueAxisFormatFont' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/valueaxis/format/line", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetChartAxValueAxisFormatLine", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/format/line and 'Get-MgDriveItemWorkbookWorksheetChartAxValueAxisFormatLine' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/valueaxis/majorgridlines", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetChartAxValueAxisMajorGridline", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/majorGridlines and 'Get-MgDriveItemWorkbookWorksheetChartAxValueAxisMajorGridline' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/valueaxis/majorgridlines/format", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetChartAxValueAxisMajorGridlineFormat", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/majorGridlines/format and 'Get-MgDriveItemWorkbookWorksheetChartAxValueAxisMajorGridlineFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/valueaxis/majorgridlines/format/line", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetChartAxValueAxisMajorGridlineFormatLine", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/majorGridlines/format/line and 'Get-MgDriveItemWorkbookWorksheetChartAxValueAxisMajorGridlineFormatLine' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/valueaxis/minorgridlines", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetChartAxValueAxisMinorGridline", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/minorGridlines and 'Get-MgDriveItemWorkbookWorksheetChartAxValueAxisMinorGridline' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/valueaxis/minorgridlines/format", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetChartAxValueAxisMinorGridlineFormat", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/minorGridlines/format and 'Get-MgDriveItemWorkbookWorksheetChartAxValueAxisMinorGridlineFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/valueaxis/minorgridlines/format/line", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetChartAxValueAxisMinorGridlineFormatLine", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/minorGridlines/format/line and 'Get-MgDriveItemWorkbookWorksheetChartAxValueAxisMinorGridlineFormatLine' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/valueaxis/title", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetChartAxValueAxisTitle", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/title and 'Get-MgDriveItemWorkbookWorksheetChartAxValueAxisTitle' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/valueaxis/title/format", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetChartAxValueAxisTitleFormat", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/title/format and 'Get-MgDriveItemWorkbookWorksheetChartAxValueAxisTitleFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/valueaxis/title/format/font", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetChartAxValueAxisTitleFormatFont", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/title/format/font and 'Get-MgDriveItemWorkbookWorksheetChartAxValueAxisTitleFormatFont' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/datalabels", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetChartDataLabel", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/dataLabels and 'Get-MgDriveItemWorkbookWorksheetChartDataLabel' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/datalabels/format", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetChartDataLabelFormat", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/dataLabels/format and 'Get-MgDriveItemWorkbookWorksheetChartDataLabelFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/datalabels/format/fill", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetChartDataLabelFormatFill", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/dataLabels/format/fill and 'Get-MgDriveItemWorkbookWorksheetChartDataLabelFormatFill' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/datalabels/format/font", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetChartDataLabelFormatFont", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/dataLabels/format/font and 'Get-MgDriveItemWorkbookWorksheetChartDataLabelFormatFont' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/format", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetChartFormat", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/format and 'Get-MgDriveItemWorkbookWorksheetChartFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/format/fill", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetChartFormatFill", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/format/fill and 'Get-MgDriveItemWorkbookWorksheetChartFormatFill' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/format/font", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetChartFormatFont", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/format/font and 'Get-MgDriveItemWorkbookWorksheetChartFormatFont' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/image", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetChartImage", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/image and 'Get-MgDriveItemWorkbookWorksheetChartImage' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/legend", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetChartLegend", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/legend and 'Get-MgDriveItemWorkbookWorksheetChartLegend' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/legend/format", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetChartLegendFormat", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/legend/format and 'Get-MgDriveItemWorkbookWorksheetChartLegendFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/legend/format/fill", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetChartLegendFormatFill", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/legend/format/fill and 'Get-MgDriveItemWorkbookWorksheetChartLegendFormatFill' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/legend/format/font", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetChartLegendFormatFont", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/legend/format/font and 'Get-MgDriveItemWorkbookWorksheetChartLegendFormatFont' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/series", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetChartSery", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series and 'Get-MgDriveItemWorkbookWorksheetChartSery' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/series/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetChartSery", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param} and 'Get-MgDriveItemWorkbookWorksheetChartSery' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/series/{}/format", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetChartSeryFormat", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/format and 'Get-MgDriveItemWorkbookWorksheetChartSeryFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/series/{}/format/fill", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetChartSeryFormatFill", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/format/fill and 'Get-MgDriveItemWorkbookWorksheetChartSeryFormatFill' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/series/{}/format/line", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetChartSeryFormatLine", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/format/line and 'Get-MgDriveItemWorkbookWorksheetChartSeryFormatLine' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/series/{}/points", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetChartSeryPoint", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/points and 'Get-MgDriveItemWorkbookWorksheetChartSeryPoint' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/series/{}/points/{}/format", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetChartSeryPointFormat", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/points/{param}/format and 'Get-MgDriveItemWorkbookWorksheetChartSeryPointFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/series/{}/points/{}/format/fill", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetChartSeryPointFormatFill", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/points/{param}/format/fill and 'Get-MgDriveItemWorkbookWorksheetChartSeryPointFormatFill' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/series/{}/points/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetChartSeryPointCount", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/points/$count and 'Get-MgDriveItemWorkbookWorksheetChartSeryPointCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/series/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetChartSeryCount", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/$count and 'Get-MgDriveItemWorkbookWorksheetChartSeryCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/title", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetChartTitle", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/title and 'Get-MgDriveItemWorkbookWorksheetChartTitle' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/title/format", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetChartTitleFormat", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/title/format and 'Get-MgDriveItemWorkbookWorksheetChartTitleFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/title/format/fill", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetChartTitleFormatFill", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/title/format/fill and 'Get-MgDriveItemWorkbookWorksheetChartTitleFormatFill' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/title/format/font", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetChartTitleFormatFont", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/title/format/font and 'Get-MgDriveItemWorkbookWorksheetChartTitleFormatFont' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/worksheet", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetChartWorksheet", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/worksheet and 'Get-MgDriveItemWorkbookWorksheetChartWorksheet' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetChartCount", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/$count and 'Get-MgDriveItemWorkbookWorksheetChartCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/names", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetName", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/names and 'Get-MgDriveItemWorkbookWorksheetName' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/names/{}/range", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetNameRange", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range and 'Get-MgDriveItemWorkbookWorksheetNameRange' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/names/{}/range/columnsafter", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetNameRangeColumnsAfter", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/columnsAfter and 'Get-MgDriveItemWorkbookWorksheetNameRangeColumnsAfter' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/names/{}/range/columnsbefore", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetNameRangeColumnsBefore", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/columnsBefore and 'Get-MgDriveItemWorkbookWorksheetNameRangeColumnsBefore' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/names/{}/range/entirecolumn", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetNameRangeEntireColumn", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/entireColumn and 'Get-MgDriveItemWorkbookWorksheetNameRangeEntireColumn' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/names/{}/range/entirerow", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetNameRangeEntireRow", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/entireRow and 'Get-MgDriveItemWorkbookWorksheetNameRangeEntireRow' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/names/{}/range/lastcell", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetNameRangeLastCell", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/lastCell and 'Get-MgDriveItemWorkbookWorksheetNameRangeLastCell' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/names/{}/range/lastcolumn", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetNameRangeLastColumn", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/lastColumn and 'Get-MgDriveItemWorkbookWorksheetNameRangeLastColumn' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/names/{}/range/lastrow", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetNameRangeLastRow", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/lastRow and 'Get-MgDriveItemWorkbookWorksheetNameRangeLastRow' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/names/{}/range/rowsabove", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetNameRangeRowsAbove", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/rowsAbove and 'Get-MgDriveItemWorkbookWorksheetNameRangeRowsAbove' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/names/{}/range/rowsbelow", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetNameRangeRowsBelow", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/rowsBelow and 'Get-MgDriveItemWorkbookWorksheetNameRangeRowsBelow' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/names/{}/range/usedrange", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetNameRangeUsedRange", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/usedRange and 'Get-MgDriveItemWorkbookWorksheetNameRangeUsedRange' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/names/{}/range/visibleview", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetNameRangeVisibleView", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/visibleView and 'Get-MgDriveItemWorkbookWorksheetNameRangeVisibleView' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/names/{}/worksheet", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetNameWorksheet", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/worksheet and 'Get-MgDriveItemWorkbookWorksheetNameWorksheet' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/names/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetNameCount", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/names/$count and 'Get-MgDriveItemWorkbookWorksheetNameCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/pivottables", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetPivotTable", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/pivotTables and 'Get-MgDriveItemWorkbookWorksheetPivotTable' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/pivottables/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetPivotTable", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/pivotTables/{param} and 'Get-MgDriveItemWorkbookWorksheetPivotTable' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/pivottables/{}/worksheet", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetPivotTableWorksheet", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/pivotTables/{param}/worksheet and 'Get-MgDriveItemWorkbookWorksheetPivotTableWorksheet' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/pivottables/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetPivotTableCount", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/pivotTables/$count and 'Get-MgDriveItemWorkbookWorksheetPivotTableCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/protection", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetProtection", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/protection and 'Get-MgDriveItemWorkbookWorksheetProtection' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/range", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetRange", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/range and 'Get-MgDriveItemWorkbookWorksheetRange' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/range/columnsafter", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetRangeColumnsAfter", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/range/columnsAfter and 'Get-MgDriveItemWorkbookWorksheetRangeColumnsAfter' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/range/columnsbefore", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetRangeColumnsBefore", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/range/columnsBefore and 'Get-MgDriveItemWorkbookWorksheetRangeColumnsBefore' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/range/entirecolumn", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetRangeEntireColumn", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/range/entireColumn and 'Get-MgDriveItemWorkbookWorksheetRangeEntireColumn' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/range/entirerow", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetRangeEntireRow", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/range/entireRow and 'Get-MgDriveItemWorkbookWorksheetRangeEntireRow' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/range/lastcell", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetRangeLastCell", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/range/lastCell and 'Get-MgDriveItemWorkbookWorksheetRangeLastCell' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/range/lastcolumn", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetRangeLastColumn", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/range/lastColumn and 'Get-MgDriveItemWorkbookWorksheetRangeLastColumn' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/range/lastrow", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetRangeLastRow", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/range/lastRow and 'Get-MgDriveItemWorkbookWorksheetRangeLastRow' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/range/rowsabove", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetRangeRowsAbove", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/range/rowsAbove and 'Get-MgDriveItemWorkbookWorksheetRangeRowsAbove' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/range/rowsbelow", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetRangeRowsBelow", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/range/rowsBelow and 'Get-MgDriveItemWorkbookWorksheetRangeRowsBelow' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/range/usedrange", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetRangeUsedRange", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/range/usedRange and 'Get-MgDriveItemWorkbookWorksheetRangeUsedRange' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/range/visibleview", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetRangeVisibleView", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/range/visibleView and 'Get-MgDriveItemWorkbookWorksheetRangeVisibleView' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTable", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables and 'Get-MgDriveItemWorkbookWorksheetTable' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTable", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param} and 'Get-MgDriveItemWorkbookWorksheetTable' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableColumn", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns and 'Get-MgDriveItemWorkbookWorksheetTableColumn' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableColumn", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param} and 'Get-MgDriveItemWorkbookWorksheetTableColumn' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/databodyrange", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRange", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange and 'Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRange' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/databodyrange/columnsafter", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeColumnsAfter", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/columnsAfter and 'Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeColumnsAfter' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/databodyrange/columnsbefore", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeColumnsBefore", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/columnsBefore and 'Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeColumnsBefore' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/databodyrange/entirecolumn", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeEntireColumn", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/entireColumn and 'Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeEntireColumn' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/databodyrange/entirerow", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeEntireRow", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/entireRow and 'Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeEntireRow' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/databodyrange/lastcell", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeLastCell", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/lastCell and 'Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeLastCell' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/databodyrange/lastcolumn", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeLastColumn", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/lastColumn and 'Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeLastColumn' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/databodyrange/lastrow", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeLastRow", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/lastRow and 'Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeLastRow' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/databodyrange/rowsabove", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeRowsAbove", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/rowsAbove and 'Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeRowsAbove' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/databodyrange/rowsbelow", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeRowsBelow", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/rowsBelow and 'Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeRowsBelow' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/databodyrange/usedrange", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeUsedRange", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/usedRange and 'Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeUsedRange' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/databodyrange/visibleview", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeVisibleView", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/visibleView and 'Get-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeVisibleView' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/filter", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableColumnFilter", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/filter and 'Get-MgDriveItemWorkbookWorksheetTableColumnFilter' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/headerrowrange", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRange", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange and 'Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRange' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/headerrowrange/columnsafter", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeColumnsAfter", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/columnsAfter and 'Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeColumnsAfter' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/headerrowrange/columnsbefore", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeColumnsBefore", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/columnsBefore and 'Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeColumnsBefore' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/headerrowrange/entirecolumn", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeEntireColumn", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/entireColumn and 'Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeEntireColumn' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/headerrowrange/entirerow", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeEntireRow", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/entireRow and 'Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeEntireRow' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/headerrowrange/lastcell", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeLastCell", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/lastCell and 'Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeLastCell' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/headerrowrange/lastcolumn", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeLastColumn", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/lastColumn and 'Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeLastColumn' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/headerrowrange/lastrow", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeLastRow", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/lastRow and 'Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeLastRow' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/headerrowrange/rowsabove", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeRowsAbove", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/rowsAbove and 'Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeRowsAbove' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/headerrowrange/rowsbelow", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeRowsBelow", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/rowsBelow and 'Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeRowsBelow' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/headerrowrange/usedrange", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeUsedRange", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/usedRange and 'Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeUsedRange' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/headerrowrange/visibleview", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeVisibleView", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/visibleView and 'Get-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeVisibleView' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/range", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableColumnRange", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range and 'Get-MgDriveItemWorkbookWorksheetTableColumnRange' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/range/columnsafter", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableColumnRangeColumnsAfter", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/columnsAfter and 'Get-MgDriveItemWorkbookWorksheetTableColumnRangeColumnsAfter' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/range/columnsbefore", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableColumnRangeColumnsBefore", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/columnsBefore and 'Get-MgDriveItemWorkbookWorksheetTableColumnRangeColumnsBefore' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/range/entirecolumn", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableColumnRangeEntireColumn", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/entireColumn and 'Get-MgDriveItemWorkbookWorksheetTableColumnRangeEntireColumn' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/range/entirerow", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableColumnRangeEntireRow", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/entireRow and 'Get-MgDriveItemWorkbookWorksheetTableColumnRangeEntireRow' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/range/lastcell", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableColumnRangeLastCell", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/lastCell and 'Get-MgDriveItemWorkbookWorksheetTableColumnRangeLastCell' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/range/lastcolumn", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableColumnRangeLastColumn", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/lastColumn and 'Get-MgDriveItemWorkbookWorksheetTableColumnRangeLastColumn' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/range/lastrow", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableColumnRangeLastRow", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/lastRow and 'Get-MgDriveItemWorkbookWorksheetTableColumnRangeLastRow' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/range/rowsabove", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableColumnRangeRowsAbove", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/rowsAbove and 'Get-MgDriveItemWorkbookWorksheetTableColumnRangeRowsAbove' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/range/rowsbelow", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableColumnRangeRowsBelow", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/rowsBelow and 'Get-MgDriveItemWorkbookWorksheetTableColumnRangeRowsBelow' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/range/usedrange", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableColumnRangeUsedRange", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/usedRange and 'Get-MgDriveItemWorkbookWorksheetTableColumnRangeUsedRange' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/range/visibleview", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableColumnRangeVisibleView", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/visibleView and 'Get-MgDriveItemWorkbookWorksheetTableColumnRangeVisibleView' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/totalrowrange", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRange", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange and 'Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRange' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/totalrowrange/columnsafter", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeColumnsAfter", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/columnsAfter and 'Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeColumnsAfter' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/totalrowrange/columnsbefore", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeColumnsBefore", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/columnsBefore and 'Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeColumnsBefore' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/totalrowrange/entirecolumn", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeEntireColumn", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/entireColumn and 'Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeEntireColumn' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/totalrowrange/entirerow", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeEntireRow", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/entireRow and 'Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeEntireRow' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/totalrowrange/lastcell", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeLastCell", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/lastCell and 'Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeLastCell' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/totalrowrange/lastcolumn", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeLastColumn", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/lastColumn and 'Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeLastColumn' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/totalrowrange/lastrow", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeLastRow", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/lastRow and 'Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeLastRow' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/totalrowrange/rowsabove", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeRowsAbove", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/rowsAbove and 'Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeRowsAbove' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/totalrowrange/rowsbelow", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeRowsBelow", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/rowsBelow and 'Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeRowsBelow' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/totalrowrange/usedrange", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeUsedRange", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/usedRange and 'Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeUsedRange' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/totalrowrange/visibleview", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeVisibleView", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/visibleView and 'Get-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeVisibleView' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableColumnCount", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/$count and 'Get-MgDriveItemWorkbookWorksheetTableColumnCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/databodyrange", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableDataBodyRange", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange and 'Get-MgDriveItemWorkbookWorksheetTableDataBodyRange' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/databodyrange/columnsafter", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeColumnsAfter", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/columnsAfter and 'Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeColumnsAfter' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/databodyrange/columnsbefore", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeColumnsBefore", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/columnsBefore and 'Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeColumnsBefore' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/databodyrange/entirecolumn", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeEntireColumn", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/entireColumn and 'Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeEntireColumn' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/databodyrange/entirerow", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeEntireRow", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/entireRow and 'Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeEntireRow' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/databodyrange/lastcell", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeLastCell", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/lastCell and 'Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeLastCell' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/databodyrange/lastcolumn", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeLastColumn", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/lastColumn and 'Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeLastColumn' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/databodyrange/lastrow", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeLastRow", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/lastRow and 'Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeLastRow' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/databodyrange/rowsabove", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeRowsAbove", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/rowsAbove and 'Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeRowsAbove' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/databodyrange/rowsbelow", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeRowsBelow", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/rowsBelow and 'Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeRowsBelow' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/databodyrange/usedrange", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeUsedRange", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/usedRange and 'Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeUsedRange' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/databodyrange/visibleview", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeVisibleView", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/visibleView and 'Get-MgDriveItemWorkbookWorksheetTableDataBodyRangeVisibleView' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/headerrowrange", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableHeaderRowRange", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange and 'Get-MgDriveItemWorkbookWorksheetTableHeaderRowRange' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/headerrowrange/columnsafter", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeColumnsAfter", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/columnsAfter and 'Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeColumnsAfter' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/headerrowrange/columnsbefore", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeColumnsBefore", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/columnsBefore and 'Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeColumnsBefore' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/headerrowrange/entirecolumn", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeEntireColumn", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/entireColumn and 'Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeEntireColumn' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/headerrowrange/entirerow", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeEntireRow", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/entireRow and 'Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeEntireRow' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/headerrowrange/lastcell", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeLastCell", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/lastCell and 'Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeLastCell' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/headerrowrange/lastcolumn", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeLastColumn", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/lastColumn and 'Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeLastColumn' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/headerrowrange/lastrow", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeLastRow", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/lastRow and 'Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeLastRow' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/headerrowrange/rowsabove", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeRowsAbove", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/rowsAbove and 'Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeRowsAbove' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/headerrowrange/rowsbelow", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeRowsBelow", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/rowsBelow and 'Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeRowsBelow' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/headerrowrange/usedrange", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeUsedRange", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/usedRange and 'Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeUsedRange' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/headerrowrange/visibleview", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeVisibleView", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/visibleView and 'Get-MgDriveItemWorkbookWorksheetTableHeaderRowRangeVisibleView' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/range", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableRange", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range and 'Get-MgDriveItemWorkbookWorksheetTableRange' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/range/columnsafter", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableRangeColumnsAfter", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/columnsAfter and 'Get-MgDriveItemWorkbookWorksheetTableRangeColumnsAfter' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/range/columnsbefore", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableRangeColumnsBefore", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/columnsBefore and 'Get-MgDriveItemWorkbookWorksheetTableRangeColumnsBefore' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/range/entirecolumn", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableRangeEntireColumn", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/entireColumn and 'Get-MgDriveItemWorkbookWorksheetTableRangeEntireColumn' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/range/entirerow", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableRangeEntireRow", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/entireRow and 'Get-MgDriveItemWorkbookWorksheetTableRangeEntireRow' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/range/lastcell", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableRangeLastCell", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/lastCell and 'Get-MgDriveItemWorkbookWorksheetTableRangeLastCell' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/range/lastcolumn", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableRangeLastColumn", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/lastColumn and 'Get-MgDriveItemWorkbookWorksheetTableRangeLastColumn' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/range/lastrow", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableRangeLastRow", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/lastRow and 'Get-MgDriveItemWorkbookWorksheetTableRangeLastRow' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/range/rowsabove", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableRangeRowsAbove", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/rowsAbove and 'Get-MgDriveItemWorkbookWorksheetTableRangeRowsAbove' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/range/rowsbelow", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableRangeRowsBelow", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/rowsBelow and 'Get-MgDriveItemWorkbookWorksheetTableRangeRowsBelow' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/range/usedrange", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableRangeUsedRange", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/usedRange and 'Get-MgDriveItemWorkbookWorksheetTableRangeUsedRange' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/range/visibleview", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableRangeVisibleView", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/visibleView and 'Get-MgDriveItemWorkbookWorksheetTableRangeVisibleView' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/rows", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableRow", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows and 'Get-MgDriveItemWorkbookWorksheetTableRow' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/rows/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableRow", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param} and 'Get-MgDriveItemWorkbookWorksheetTableRow' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/rows/{}/range", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableRowRange", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range and 'Get-MgDriveItemWorkbookWorksheetTableRowRange' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/rows/{}/range/columnsafter", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableRowRangeColumnsAfter", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/columnsAfter and 'Get-MgDriveItemWorkbookWorksheetTableRowRangeColumnsAfter' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/rows/{}/range/columnsbefore", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableRowRangeColumnsBefore", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/columnsBefore and 'Get-MgDriveItemWorkbookWorksheetTableRowRangeColumnsBefore' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/rows/{}/range/entirecolumn", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableRowRangeEntireColumn", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/entireColumn and 'Get-MgDriveItemWorkbookWorksheetTableRowRangeEntireColumn' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/rows/{}/range/entirerow", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableRowRangeEntireRow", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/entireRow and 'Get-MgDriveItemWorkbookWorksheetTableRowRangeEntireRow' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/rows/{}/range/lastcell", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableRowRangeLastCell", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/lastCell and 'Get-MgDriveItemWorkbookWorksheetTableRowRangeLastCell' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/rows/{}/range/lastcolumn", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableRowRangeLastColumn", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/lastColumn and 'Get-MgDriveItemWorkbookWorksheetTableRowRangeLastColumn' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/rows/{}/range/lastrow", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableRowRangeLastRow", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/lastRow and 'Get-MgDriveItemWorkbookWorksheetTableRowRangeLastRow' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/rows/{}/range/rowsabove", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableRowRangeRowsAbove", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/rowsAbove and 'Get-MgDriveItemWorkbookWorksheetTableRowRangeRowsAbove' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/rows/{}/range/rowsbelow", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableRowRangeRowsBelow", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/rowsBelow and 'Get-MgDriveItemWorkbookWorksheetTableRowRangeRowsBelow' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/rows/{}/range/usedrange", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableRowRangeUsedRange", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/usedRange and 'Get-MgDriveItemWorkbookWorksheetTableRowRangeUsedRange' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/rows/{}/range/visibleview", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableRowRangeVisibleView", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/visibleView and 'Get-MgDriveItemWorkbookWorksheetTableRowRangeVisibleView' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/rows/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableRowCount", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/$count and 'Get-MgDriveItemWorkbookWorksheetTableRowCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/sort", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableSort", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/sort and 'Get-MgDriveItemWorkbookWorksheetTableSort' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/totalrowrange", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableTotalRowRange", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange and 'Get-MgDriveItemWorkbookWorksheetTableTotalRowRange' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/totalrowrange/columnsafter", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeColumnsAfter", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/columnsAfter and 'Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeColumnsAfter' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/totalrowrange/columnsbefore", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeColumnsBefore", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/columnsBefore and 'Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeColumnsBefore' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/totalrowrange/entirecolumn", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeEntireColumn", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/entireColumn and 'Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeEntireColumn' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/totalrowrange/entirerow", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeEntireRow", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/entireRow and 'Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeEntireRow' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/totalrowrange/lastcell", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeLastCell", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/lastCell and 'Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeLastCell' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/totalrowrange/lastcolumn", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeLastColumn", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/lastColumn and 'Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeLastColumn' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/totalrowrange/lastrow", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeLastRow", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/lastRow and 'Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeLastRow' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/totalrowrange/rowsabove", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeRowsAbove", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/rowsAbove and 'Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeRowsAbove' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/totalrowrange/rowsbelow", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeRowsBelow", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/rowsBelow and 'Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeRowsBelow' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/totalrowrange/usedrange", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeUsedRange", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/usedRange and 'Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeUsedRange' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/totalrowrange/visibleview", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeVisibleView", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/visibleView and 'Get-MgDriveItemWorkbookWorksheetTableTotalRowRangeVisibleView' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/worksheet", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableWorksheet", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/worksheet and 'Get-MgDriveItemWorkbookWorksheetTableWorksheet' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetTableCount", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/$count and 'Get-MgDriveItemWorkbookWorksheetTableCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/usedrange", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetUsedRange", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange and 'Get-MgDriveItemWorkbookWorksheetUsedRange' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/usedrange/columnsafter", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetUsedRangeColumnsAfter", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange/columnsAfter and 'Get-MgDriveItemWorkbookWorksheetUsedRangeColumnsAfter' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/usedrange/columnsbefore", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetUsedRangeColumnsBefore", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange/columnsBefore and 'Get-MgDriveItemWorkbookWorksheetUsedRangeColumnsBefore' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/usedrange/entirecolumn", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetUsedRangeEntireColumn", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange/entireColumn and 'Get-MgDriveItemWorkbookWorksheetUsedRangeEntireColumn' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/usedrange/entirerow", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetUsedRangeEntireRow", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange/entireRow and 'Get-MgDriveItemWorkbookWorksheetUsedRangeEntireRow' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/usedrange/lastcell", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetUsedRangeLastCell", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange/lastCell and 'Get-MgDriveItemWorkbookWorksheetUsedRangeLastCell' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/usedrange/lastcolumn", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetUsedRangeLastColumn", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange/lastColumn and 'Get-MgDriveItemWorkbookWorksheetUsedRangeLastColumn' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/usedrange/lastrow", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetUsedRangeLastRow", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange/lastRow and 'Get-MgDriveItemWorkbookWorksheetUsedRangeLastRow' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/usedrange/rowsabove", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetUsedRangeRowsAbove", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange/rowsAbove and 'Get-MgDriveItemWorkbookWorksheetUsedRangeRowsAbove' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/usedrange/rowsbelow", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetUsedRangeRowsBelow", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange/rowsBelow and 'Get-MgDriveItemWorkbookWorksheetUsedRangeRowsBelow' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/usedrange/visibleview", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetUsedRangeVisibleView", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange/visibleView and 'Get-MgDriveItemWorkbookWorksheetUsedRangeVisibleView' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/items/{}/workbook/worksheets/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveItemWorkbookWorksheetCount", + "oracle": "no oracle row for GET /drives/{param}/items/{param}/workbook/worksheets/$count and 'Get-MgDriveItemWorkbookWorksheetCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/list/items/{}/lastmodifiedbyuser", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveListItemLastModifiedByUser", + "oracle": "no oracle row for GET /drives/{param}/list/items/{param}/lastModifiedByUser and 'Get-MgDriveListItemLastModifiedByUser' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/list/items/{}/lastmodifiedbyuser/mailboxsettings", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveListItemLastModifiedByUserMailboxSetting", + "oracle": "no oracle row for GET /drives/{param}/list/items/{param}/lastModifiedByUser/mailboxSettings and 'Get-MgDriveListItemLastModifiedByUserMailboxSetting' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/list/items/{}/lastmodifiedbyuser/serviceprovisioningerrors", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveListItemLastModifiedByUserServiceProvisioningError", + "oracle": "no oracle row for GET /drives/{param}/list/items/{param}/lastModifiedByUser/serviceProvisioningErrors and 'Get-MgDriveListItemLastModifiedByUserServiceProvisioningError' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/list/items/{}/lastmodifiedbyuser/serviceprovisioningerrors/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveListItemLastModifiedByUserServiceProvisioningErrorCount", + "oracle": "no oracle row for GET /drives/{param}/list/items/{param}/lastModifiedByUser/serviceProvisioningErrors/$count and 'Get-MgDriveListItemLastModifiedByUserServiceProvisioningErrorCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/list/items/{}/permissions", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveListItemPermission", + "oracle": "no oracle row for GET /drives/{param}/list/items/{param}/permissions and 'Get-MgDriveListItemPermission' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/list/items/{}/permissions/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveListItemPermission", + "oracle": "no oracle row for GET /drives/{param}/list/items/{param}/permissions/{param} and 'Get-MgDriveListItemPermission' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/list/items/{}/permissions/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveListItemPermissionCount", + "oracle": "no oracle row for GET /drives/{param}/list/items/{param}/permissions/$count and 'Get-MgDriveListItemPermissionCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/list/lastmodifiedbyuser", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveListLastModifiedByUser", + "oracle": "no oracle row for GET /drives/{param}/list/lastModifiedByUser and 'Get-MgDriveListLastModifiedByUser' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/list/lastmodifiedbyuser/mailboxsettings", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveListLastModifiedByUserMailboxSetting", + "oracle": "no oracle row for GET /drives/{param}/list/lastModifiedByUser/mailboxSettings and 'Get-MgDriveListLastModifiedByUserMailboxSetting' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/list/lastmodifiedbyuser/serviceprovisioningerrors", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveListLastModifiedByUserServiceProvisioningError", + "oracle": "no oracle row for GET /drives/{param}/list/lastModifiedByUser/serviceProvisioningErrors and 'Get-MgDriveListLastModifiedByUserServiceProvisioningError' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/list/lastmodifiedbyuser/serviceprovisioningerrors/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveListLastModifiedByUserServiceProvisioningErrorCount", + "oracle": "no oracle row for GET /drives/{param}/list/lastModifiedByUser/serviceProvisioningErrors/$count and 'Get-MgDriveListLastModifiedByUserServiceProvisioningErrorCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/list/permissions", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveListPermission", + "oracle": "no oracle row for GET /drives/{param}/list/permissions and 'Get-MgDriveListPermission' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/list/permissions/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveListPermission", + "oracle": "no oracle row for GET /drives/{param}/list/permissions/{param} and 'Get-MgDriveListPermission' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/drives/{}/list/permissions/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgDriveListPermissionCount", + "oracle": "no oracle row for GET /drives/{param}/list/permissions/$count and 'Get-MgDriveListPermissionCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/groups/{}/calendar/calendarview/delta", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgGroupCalendarViewDelta", + "oracle": "no oracle row for GET /groups/{param}/calendar/calendarView/delta and 'Get-MgGroupCalendarViewDelta' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/groups/{}/calendar/events/{}/attachments", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgGroupCalendarEventAttachment", + "oracle": "no oracle row for GET /groups/{param}/calendar/events/{param}/attachments and 'Get-MgGroupCalendarEventAttachment' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/groups/{}/calendar/events/{}/attachments/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgGroupCalendarEventAttachment", + "oracle": "no oracle row for GET /groups/{param}/calendar/events/{param}/attachments/{param} and 'Get-MgGroupCalendarEventAttachment' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/groups/{}/calendar/events/{}/attachments/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgGroupCalendarEventAttachmentCount", + "oracle": "no oracle row for GET /groups/{param}/calendar/events/{param}/attachments/$count and 'Get-MgGroupCalendarEventAttachmentCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/groups/{}/calendar/events/{}/calendar", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgGroupCalendarEventCalendar", + "oracle": "no oracle row for GET /groups/{param}/calendar/events/{param}/calendar and 'Get-MgGroupCalendarEventCalendar' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/groups/{}/calendar/events/{}/extensions", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgGroupCalendarEventExtension", + "oracle": "no oracle row for GET /groups/{param}/calendar/events/{param}/extensions and 'Get-MgGroupCalendarEventExtension' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/groups/{}/calendar/events/{}/extensions/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgGroupCalendarEventExtension", + "oracle": "no oracle row for GET /groups/{param}/calendar/events/{param}/extensions/{param} and 'Get-MgGroupCalendarEventExtension' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/groups/{}/calendar/events/{}/extensions/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgGroupCalendarEventExtensionCount", + "oracle": "no oracle row for GET /groups/{param}/calendar/events/{param}/extensions/$count and 'Get-MgGroupCalendarEventExtensionCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/groups/{}/calendar/events/{}/instances", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgGroupCalendarEventInstance", + "oracle": "no oracle row for GET /groups/{param}/calendar/events/{param}/instances and 'Get-MgGroupCalendarEventInstance' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/groups/{}/calendar/events/{}/instances/delta", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgGroupCalendarEventInstanceDelta", + "oracle": "no oracle row for GET /groups/{param}/calendar/events/{param}/instances/delta and 'Get-MgGroupCalendarEventInstanceDelta' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/groups/{}/calendar/events/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgGroupCalendarEventCount", + "oracle": "no oracle row for GET /groups/{param}/calendar/events/$count and 'Get-MgGroupCalendarEventCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/groups/{}/calendar/events/delta", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgGroupCalendarEventDelta", + "oracle": "no oracle row for GET /groups/{param}/calendar/events/delta and 'Get-MgGroupCalendarEventDelta' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/groups/{}/conversations/{}/threads/{}/posts/{}/inreplyto", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgGroupConversationThreadPostInReplyTo", + "oracle": "no oracle row for GET /groups/{param}/conversations/{param}/threads/{param}/posts/{param}/inReplyTo and 'Get-MgGroupConversationThreadPostInReplyTo' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/groups/{}/planner/plans/{}/buckets/{}/tasks", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgGroupPlannerPlanBucketTask", + "oracle": "no oracle row for GET /groups/{param}/planner/plans/{param}/buckets/{param}/tasks and 'Get-MgGroupPlannerPlanBucketTask' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/groups/{}/planner/plans/{}/buckets/{}/tasks/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgGroupPlannerPlanBucketTask", + "oracle": "no oracle row for GET /groups/{param}/planner/plans/{param}/buckets/{param}/tasks/{param} and 'Get-MgGroupPlannerPlanBucketTask' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/groups/{}/planner/plans/{}/buckets/{}/tasks/{}/assignedtotaskboardformat", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgGroupPlannerPlanBucketTaskAssignedToTaskBoardFormat", + "oracle": "no oracle row for GET /groups/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/assignedToTaskBoardFormat and 'Get-MgGroupPlannerPlanBucketTaskAssignedToTaskBoardFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/groups/{}/planner/plans/{}/buckets/{}/tasks/{}/buckettaskboardformat", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgGroupPlannerPlanBucketTaskBucketTaskBoardFormat", + "oracle": "no oracle row for GET /groups/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/bucketTaskBoardFormat and 'Get-MgGroupPlannerPlanBucketTaskBucketTaskBoardFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/groups/{}/planner/plans/{}/buckets/{}/tasks/{}/details", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgGroupPlannerPlanBucketTaskDetail", + "oracle": "no oracle row for GET /groups/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/details and 'Get-MgGroupPlannerPlanBucketTaskDetail' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/groups/{}/planner/plans/{}/buckets/{}/tasks/{}/progresstaskboardformat", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgGroupPlannerPlanBucketTaskProgressTaskBoardFormat", + "oracle": "no oracle row for GET /groups/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/progressTaskBoardFormat and 'Get-MgGroupPlannerPlanBucketTaskProgressTaskBoardFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/groups/{}/planner/plans/{}/buckets/{}/tasks/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgGroupPlannerPlanBucketTaskCount", + "oracle": "no oracle row for GET /groups/{param}/planner/plans/{param}/buckets/{param}/tasks/$count and 'Get-MgGroupPlannerPlanBucketTaskCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/groups/{}/planner/plans/{}/buckets/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgGroupPlannerPlanBucketCount", + "oracle": "no oracle row for GET /groups/{param}/planner/plans/{param}/buckets/$count and 'Get-MgGroupPlannerPlanBucketCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/groups/{}/planner/plans/{}/tasks/{}/assignedtotaskboardformat", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgGroupPlannerPlanTaskAssignedToTaskBoardFormat", + "oracle": "no oracle row for GET /groups/{param}/planner/plans/{param}/tasks/{param}/assignedToTaskBoardFormat and 'Get-MgGroupPlannerPlanTaskAssignedToTaskBoardFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/groups/{}/planner/plans/{}/tasks/{}/buckettaskboardformat", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgGroupPlannerPlanTaskBucketTaskBoardFormat", + "oracle": "no oracle row for GET /groups/{param}/planner/plans/{param}/tasks/{param}/bucketTaskBoardFormat and 'Get-MgGroupPlannerPlanTaskBucketTaskBoardFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/groups/{}/planner/plans/{}/tasks/{}/details", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgGroupPlannerPlanTaskDetail", + "oracle": "no oracle row for GET /groups/{param}/planner/plans/{param}/tasks/{param}/details and 'Get-MgGroupPlannerPlanTaskDetail' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/groups/{}/planner/plans/{}/tasks/{}/progresstaskboardformat", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgGroupPlannerPlanTaskProgressTaskBoardFormat", + "oracle": "no oracle row for GET /groups/{param}/planner/plans/{param}/tasks/{param}/progressTaskBoardFormat and 'Get-MgGroupPlannerPlanTaskProgressTaskBoardFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/groups/{}/planner/plans/{}/tasks/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgGroupPlannerPlanTaskCount", + "oracle": "no oracle row for GET /groups/{param}/planner/plans/{param}/tasks/$count and 'Get-MgGroupPlannerPlanTaskCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/groups/{}/sites/{}/lists/{}/contenttypes/{}/base", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgGroupSiteListContentTypeBase", + "oracle": "no oracle row for GET /groups/{param}/sites/{param}/lists/{param}/contentTypes/{param}/base and 'Get-MgGroupSiteListContentTypeBase' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/groups/{}/sites/{}/lists/{}/contenttypes/{}/basetypes", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgGroupSiteListContentTypeBaseType", + "oracle": "no oracle row for GET /groups/{param}/sites/{param}/lists/{param}/contentTypes/{param}/baseTypes and 'Get-MgGroupSiteListContentTypeBaseType' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/groups/{}/sites/{}/lists/{}/contenttypes/{}/basetypes/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgGroupSiteListContentTypeBaseType", + "oracle": "no oracle row for GET /groups/{param}/sites/{param}/lists/{param}/contentTypes/{param}/baseTypes/{param} and 'Get-MgGroupSiteListContentTypeBaseType' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/groups/{}/sites/{}/lists/{}/contenttypes/{}/basetypes/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgGroupSiteListContentTypeBaseTypeCount", + "oracle": "no oracle row for GET /groups/{param}/sites/{param}/lists/{param}/contentTypes/{param}/baseTypes/$count and 'Get-MgGroupSiteListContentTypeBaseTypeCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/groups/{}/sites/{}/lists/{}/lastmodifiedbyuser", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgGroupSiteListLastModifiedByUser", + "oracle": "no oracle row for GET /groups/{param}/sites/{param}/lists/{param}/lastModifiedByUser and 'Get-MgGroupSiteListLastModifiedByUser' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/groups/{}/sites/{}/lists/{}/lastmodifiedbyuser/mailboxsettings", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgGroupSiteListLastModifiedByUserMailboxSetting", + "oracle": "no oracle row for GET /groups/{param}/sites/{param}/lists/{param}/lastModifiedByUser/mailboxSettings and 'Get-MgGroupSiteListLastModifiedByUserMailboxSetting' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/groups/{}/sites/{}/lists/{}/lastmodifiedbyuser/serviceprovisioningerrors", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgGroupSiteListLastModifiedByUserServiceProvisioningError", + "oracle": "no oracle row for GET /groups/{param}/sites/{param}/lists/{param}/lastModifiedByUser/serviceProvisioningErrors and 'Get-MgGroupSiteListLastModifiedByUserServiceProvisioningError' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/groups/{}/sites/{}/lists/{}/lastmodifiedbyuser/serviceprovisioningerrors/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgGroupSiteListLastModifiedByUserServiceProvisioningErrorCount", + "oracle": "no oracle row for GET /groups/{param}/sites/{param}/lists/{param}/lastModifiedByUser/serviceProvisioningErrors/$count and 'Get-MgGroupSiteListLastModifiedByUserServiceProvisioningErrorCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/groups/{}/sites/getallsites", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgGroupSiteGetAllSites", + "oracle": "no oracle row for GET /groups/{param}/sites/getAllSites and 'Get-MgGroupSiteGetAllSites' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/groups/{}/team/channels/{}/members", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgGroupTeamChannelMember", + "oracle": "no oracle row; 'Get-MgGroupTeamChannelMember' ships from sibling family (see rename entries for this noun)" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/groups/{}/team/channels/{}/members/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgGroupTeamChannelMember", + "oracle": "no oracle row; 'Get-MgGroupTeamChannelMember' ships from sibling family (see rename entries for this noun)" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/groups/{}/team/channels/{}/messages/{}/hostedcontents/{}/$value", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgGroupTeamChannelMessageHostedContentContent", + "oracle": "no oracle row for GET /groups/{param}/team/channels/{param}/messages/{param}/hostedContents/{param}/$value and 'Get-MgGroupTeamChannelMessageHostedContentContent' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/groups/{}/team/channels/{}/messages/{}/replies/{}/hostedcontents/{}/$value", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgGroupTeamChannelMessageReplyHostedContentContent", + "oracle": "no oracle row for GET /groups/{param}/team/channels/{param}/messages/{param}/replies/{param}/hostedContents/{param}/$value and 'Get-MgGroupTeamChannelMessageReplyHostedContentContent' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/groups/{}/team/channels/getallmessages", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgGroupTeamChannelGetAllMessages", + "oracle": "no oracle row for GET /groups/{param}/team/channels/getAllMessages and 'Get-MgGroupTeamChannelGetAllMessages' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/groups/{}/team/primarychannel/members", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgGroupTeamPrimaryChannelMember", + "oracle": "no oracle row; 'Get-MgGroupTeamPrimaryChannelMember' ships from sibling family (see rename entries for this noun)" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/groups/{}/team/primarychannel/members/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgGroupTeamPrimaryChannelMember", + "oracle": "no oracle row; 'Get-MgGroupTeamPrimaryChannelMember' ships from sibling family (see rename entries for this noun)" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/groups/{}/team/primarychannel/messages/{}/hostedcontents/{}/$value", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgGroupTeamPrimaryChannelMessageHostedContentContent", + "oracle": "no oracle row for GET /groups/{param}/team/primaryChannel/messages/{param}/hostedContents/{param}/$value and 'Get-MgGroupTeamPrimaryChannelMessageHostedContentContent' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/groups/{}/team/primarychannel/messages/{}/replies/{}/hostedcontents/{}/$value", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgGroupTeamPrimaryChannelMessageReplyHostedContentContent", + "oracle": "no oracle row for GET /groups/{param}/team/primaryChannel/messages/{param}/replies/{param}/hostedContents/{param}/$value and 'Get-MgGroupTeamPrimaryChannelMessageReplyHostedContentContent' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/groups/{}/threads/{}/posts/{}/inreplyto", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgGroupThreadPostInReplyTo", + "oracle": "no oracle row for GET /groups/{param}/threads/{param}/posts/{param}/inReplyTo and 'Get-MgGroupThreadPostInReplyTo' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identity", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentity", + "oracle": "no oracle row for GET /identity and 'Get-MgIdentity' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identity/b2xuserflows/{}/userflowidentityproviders", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityB2xUserFlowUserFlowIdentityProvider", + "oracle": "no oracle row for GET /identity/b2xUserFlows/{param}/userFlowIdentityProviders and 'Get-MgIdentityB2xUserFlowUserFlowIdentityProvider' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identity/b2xuserflows/{}/userflowidentityproviders/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityB2xUserFlowUserFlowIdentityProviderCount", + "oracle": "no oracle row for GET /identity/b2xUserFlows/{param}/userFlowIdentityProviders/$count and 'Get-MgIdentityB2xUserFlowUserFlowIdentityProviderCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identity/conditionalaccess/authenticationstrength", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityConditionalAccessAuthenticationStrength", + "oracle": "no oracle row for GET /identity/conditionalAccess/authenticationStrength and 'Get-MgIdentityConditionalAccessAuthenticationStrength' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identity/conditionalaccess/authenticationstrength/authenticationmethodmodes", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityConditionalAccessAuthenticationStrengthAuthenticationMethodMode", + "oracle": "no oracle row for GET /identity/conditionalAccess/authenticationStrength/authenticationMethodModes and 'Get-MgIdentityConditionalAccessAuthenticationStrengthAuthenticationMethodMode' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identity/conditionalaccess/authenticationstrength/authenticationmethodmodes/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityConditionalAccessAuthenticationStrengthAuthenticationMethodMode", + "oracle": "no oracle row for GET /identity/conditionalAccess/authenticationStrength/authenticationMethodModes/{param} and 'Get-MgIdentityConditionalAccessAuthenticationStrengthAuthenticationMethodMode' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identity/conditionalaccess/authenticationstrength/authenticationmethodmodes/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityConditionalAccessAuthenticationStrengthAuthenticationMethodModeCount", + "oracle": "no oracle row for GET /identity/conditionalAccess/authenticationStrength/authenticationMethodModes/$count and 'Get-MgIdentityConditionalAccessAuthenticationStrengthAuthenticationMethodModeCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identity/conditionalaccess/authenticationstrength/policies", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityConditionalAccessAuthenticationStrengthPolicy", + "oracle": "no oracle row for GET /identity/conditionalAccess/authenticationStrength/policies and 'Get-MgIdentityConditionalAccessAuthenticationStrengthPolicy' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identity/conditionalaccess/authenticationstrength/policies/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityConditionalAccessAuthenticationStrengthPolicy", + "oracle": "no oracle row for GET /identity/conditionalAccess/authenticationStrength/policies/{param} and 'Get-MgIdentityConditionalAccessAuthenticationStrengthPolicy' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identity/conditionalaccess/authenticationstrength/policies/{}/combinationconfigurations", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityConditionalAccessAuthenticationStrengthPolicyCombinationConfiguration", + "oracle": "no oracle row for GET /identity/conditionalAccess/authenticationStrength/policies/{param}/combinationConfigurations and 'Get-MgIdentityConditionalAccessAuthenticationStrengthPolicyCombinationConfiguration' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identity/conditionalaccess/authenticationstrength/policies/{}/combinationconfigurations/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityConditionalAccessAuthenticationStrengthPolicyCombinationConfiguration", + "oracle": "no oracle row for GET /identity/conditionalAccess/authenticationStrength/policies/{param}/combinationConfigurations/{param} and 'Get-MgIdentityConditionalAccessAuthenticationStrengthPolicyCombinationConfiguration' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identity/conditionalaccess/authenticationstrength/policies/{}/combinationconfigurations/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityConditionalAccessAuthenticationStrengthPolicyCombinationConfigurationCount", + "oracle": "no oracle row for GET /identity/conditionalAccess/authenticationStrength/policies/{param}/combinationConfigurations/$count and 'Get-MgIdentityConditionalAccessAuthenticationStrengthPolicyCombinationConfigurationCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identity/conditionalaccess/authenticationstrength/policies/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityConditionalAccessAuthenticationStrengthPolicyCount", + "oracle": "no oracle row for GET /identity/conditionalAccess/authenticationStrength/policies/$count and 'Get-MgIdentityConditionalAccessAuthenticationStrengthPolicyCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernance", + "oracle": "no oracle row for GET /identityGovernance and 'Get-MgIdentityGovernance' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/accessreviews", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceAccessReview", + "oracle": "no oracle row for GET /identityGovernance/accessReviews and 'Get-MgIdentityGovernanceAccessReview' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/accessreviews/definitions/{}/instances/{}/stages/{}/decisions/{}/insights/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionInsightCount", + "oracle": "no oracle row for GET /identityGovernance/accessReviews/definitions/{param}/instances/{param}/stages/{param}/decisions/{param}/insights/$count and 'Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionInsightCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/appconsent", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceAppConsent", + "oracle": "no oracle row for GET /identityGovernance/appConsent and 'Get-MgIdentityGovernanceAppConsent' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagement", + "oracle": "no oracle row for GET /identityGovernance/entitlementManagement and 'Get-MgIdentityGovernanceEntitlementManagement' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/accesspackageassignmentapprovals", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentApproval", + "oracle": "no oracle row for GET /identityGovernance/entitlementManagement/accessPackageAssignmentApprovals and 'Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentApproval' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/accesspackageassignmentapprovals/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentApproval", + "oracle": "no oracle row for GET /identityGovernance/entitlementManagement/accessPackageAssignmentApprovals/{param} and 'Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentApproval' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/accesspackagesincompatiblewith/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAccessPackageAccessPackageIncompatibleWithCount", + "oracle": "no oracle row for GET /identityGovernance/entitlementManagement/accessPackages/{param}/accessPackagesIncompatibleWith/$count and 'Get-MgIdentityGovernanceEntitlementManagementAccessPackageAccessPackageIncompatibleWithCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/assignmentpolicies/{}/accesspackage", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyAccessPackage", + "oracle": "no oracle row for GET /identityGovernance/entitlementManagement/accessPackages/{param}/assignmentPolicies/{param}/accessPackage and 'Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyAccessPackage' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/assignmentpolicies/{}/catalog", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyCatalog", + "oracle": "no oracle row for GET /identityGovernance/entitlementManagement/accessPackages/{param}/assignmentPolicies/{param}/catalog and 'Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyCatalog' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/assignmentpolicies/{}/customextensionstagesettings", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyCustomExtensionStageSetting", + "oracle": "no oracle row for GET /identityGovernance/entitlementManagement/accessPackages/{param}/assignmentPolicies/{param}/customExtensionStageSettings and 'Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyCustomExtensionStageSetting' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/assignmentpolicies/{}/customextensionstagesettings/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyCustomExtensionStageSetting", + "oracle": "no oracle row for GET /identityGovernance/entitlementManagement/accessPackages/{param}/assignmentPolicies/{param}/customExtensionStageSettings/{param} and 'Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyCustomExtensionStageSetting' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/assignmentpolicies/{}/customextensionstagesettings/{}/customextension", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyCustomExtensionStageSettingCustomExtension", + "oracle": "no oracle row for GET /identityGovernance/entitlementManagement/accessPackages/{param}/assignmentPolicies/{param}/customExtensionStageSettings/{param}/customExtension and 'Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyCustomExtensionStageSettingCustomExtension' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/assignmentpolicies/{}/customextensionstagesettings/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyCustomExtensionStageSettingCount", + "oracle": "no oracle row for GET /identityGovernance/entitlementManagement/accessPackages/{param}/assignmentPolicies/{param}/customExtensionStageSettings/$count and 'Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyCustomExtensionStageSettingCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/assignmentpolicies/{}/questions", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyQuestion", + "oracle": "no oracle row for GET /identityGovernance/entitlementManagement/accessPackages/{param}/assignmentPolicies/{param}/questions and 'Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyQuestion' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/assignmentpolicies/{}/questions/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyQuestion", + "oracle": "no oracle row for GET /identityGovernance/entitlementManagement/accessPackages/{param}/assignmentPolicies/{param}/questions/{param} and 'Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyQuestion' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/assignmentpolicies/{}/questions/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyQuestionCount", + "oracle": "no oracle row for GET /identityGovernance/entitlementManagement/accessPackages/{param}/assignmentPolicies/{param}/questions/$count and 'Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyQuestionCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/assignmentpolicies/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyCount", + "oracle": "no oracle row for GET /identityGovernance/entitlementManagement/accessPackages/{param}/assignmentPolicies/$count and 'Get-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/incompatibleaccesspackages/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAccessPackageIncompatibleAccessPackageCount", + "oracle": "no oracle row for GET /identityGovernance/entitlementManagement/accessPackages/{param}/incompatibleAccessPackages/$count and 'Get-MgIdentityGovernanceEntitlementManagementAccessPackageIncompatibleAccessPackageCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/incompatiblegroups/{}/serviceprovisioningerrors", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAccessPackageIncompatibleGroupServiceProvisioningError", + "oracle": "no oracle row for GET /identityGovernance/entitlementManagement/accessPackages/{param}/incompatibleGroups/{param}/serviceProvisioningErrors and 'Get-MgIdentityGovernanceEntitlementManagementAccessPackageIncompatibleGroupServiceProvisioningError' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/incompatiblegroups/{}/serviceprovisioningerrors/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAccessPackageIncompatibleGroupServiceProvisioningErrorCount", + "oracle": "no oracle row for GET /identityGovernance/entitlementManagement/accessPackages/{param}/incompatibleGroups/{param}/serviceProvisioningErrors/$count and 'Get-MgIdentityGovernanceEntitlementManagementAccessPackageIncompatibleGroupServiceProvisioningErrorCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/incompatiblegroups/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAccessPackageIncompatibleGroupCount", + "oracle": "no oracle row for GET /identityGovernance/entitlementManagement/accessPackages/{param}/incompatibleGroups/$count and 'Get-MgIdentityGovernanceEntitlementManagementAccessPackageIncompatibleGroupCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/resourcerolescopes", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScope", + "oracle": "no oracle row for GET /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes and 'Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScope' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/resourcerolescopes/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScope", + "oracle": "no oracle row for GET /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param} and 'Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScope' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/resourcerolescopes/{}/role", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRole", + "oracle": "no oracle row for GET /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role and 'Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRole' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/resourcerolescopes/{}/role/resource", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResource", + "oracle": "no oracle row for GET /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource and 'Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResource' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/resourcerolescopes/{}/role/resource/environment", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceEnvironment", + "oracle": "no oracle row for GET /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/environment and 'Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceEnvironment' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/resourcerolescopes/{}/role/resource/roles", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceRole", + "oracle": "no oracle row for GET /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/roles and 'Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceRole' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/resourcerolescopes/{}/role/resource/roles/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceRole", + "oracle": "no oracle row for GET /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/roles/{param} and 'Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceRole' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/resourcerolescopes/{}/role/resource/roles/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceRoleCount", + "oracle": "no oracle row for GET /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/roles/$count and 'Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceRoleCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/resourcerolescopes/{}/role/resource/scopes", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScope", + "oracle": "no oracle row for GET /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/scopes and 'Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScope' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/resourcerolescopes/{}/role/resource/scopes/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScope", + "oracle": "no oracle row for GET /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/scopes/{param} and 'Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScope' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/resourcerolescopes/{}/role/resource/scopes/{}/resource", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScopeResource", + "oracle": "no oracle row for GET /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/scopes/{param}/resource and 'Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScopeResource' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/resourcerolescopes/{}/role/resource/scopes/{}/resource/environment", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScopeResourceEnvironment", + "oracle": "no oracle row for GET /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/scopes/{param}/resource/environment and 'Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScopeResourceEnvironment' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/resourcerolescopes/{}/role/resource/scopes/{}/resource/roles", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScopeResourceRole", + "oracle": "no oracle row for GET /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/scopes/{param}/resource/roles and 'Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScopeResourceRole' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/resourcerolescopes/{}/role/resource/scopes/{}/resource/roles/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScopeResourceRole", + "oracle": "no oracle row for GET /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/scopes/{param}/resource/roles/{param} and 'Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScopeResourceRole' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/resourcerolescopes/{}/role/resource/scopes/{}/resource/roles/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScopeResourceRoleCount", + "oracle": "no oracle row for GET /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/scopes/{param}/resource/roles/$count and 'Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScopeResourceRoleCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/resourcerolescopes/{}/role/resource/scopes/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScopeCount", + "oracle": "no oracle row for GET /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/scopes/$count and 'Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScopeCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/resourcerolescopes/{}/scope/resource", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResource", + "oracle": "no oracle row for GET /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource and 'Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResource' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/resourcerolescopes/{}/scope/resource/environment", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceEnvironment", + "oracle": "no oracle row for GET /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/environment and 'Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceEnvironment' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/resourcerolescopes/{}/scope/resource/roles", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRole", + "oracle": "no oracle row for GET /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/roles and 'Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRole' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/resourcerolescopes/{}/scope/resource/roles/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRole", + "oracle": "no oracle row for GET /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/roles/{param} and 'Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRole' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/resourcerolescopes/{}/scope/resource/roles/{}/resource", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRoleResource", + "oracle": "no oracle row for GET /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/roles/{param}/resource and 'Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRoleResource' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/resourcerolescopes/{}/scope/resource/roles/{}/resource/environment", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRoleResourceEnvironment", + "oracle": "no oracle row for GET /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/roles/{param}/resource/environment and 'Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRoleResourceEnvironment' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/resourcerolescopes/{}/scope/resource/roles/{}/resource/scopes", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRoleResourceScope", + "oracle": "no oracle row for GET /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/roles/{param}/resource/scopes and 'Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRoleResourceScope' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/resourcerolescopes/{}/scope/resource/roles/{}/resource/scopes/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRoleResourceScope", + "oracle": "no oracle row for GET /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/roles/{param}/resource/scopes/{param} and 'Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRoleResourceScope' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/resourcerolescopes/{}/scope/resource/roles/{}/resource/scopes/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRoleResourceScopeCount", + "oracle": "no oracle row for GET /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/roles/{param}/resource/scopes/$count and 'Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRoleResourceScopeCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/resourcerolescopes/{}/scope/resource/roles/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRoleCount", + "oracle": "no oracle row for GET /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/roles/$count and 'Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRoleCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/resourcerolescopes/{}/scope/resource/scopes", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceScope", + "oracle": "no oracle row for GET /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/scopes and 'Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceScope' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/resourcerolescopes/{}/scope/resource/scopes/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceScope", + "oracle": "no oracle row for GET /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/scopes/{param} and 'Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceScope' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/resourcerolescopes/{}/scope/resource/scopes/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceScopeCount", + "oracle": "no oracle row for GET /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/scopes/$count and 'Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceScopeCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/resourcerolescopes/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeCount", + "oracle": "no oracle row for GET /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/$count and 'Get-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/assignmentrequests/{}/accesspackage", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAssignmentRequestAccessPackage", + "oracle": "no oracle row for GET /identityGovernance/entitlementManagement/assignmentRequests/{param}/accessPackage and 'Get-MgIdentityGovernanceEntitlementManagementAssignmentRequestAccessPackage' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/assignmentrequests/{}/assignment", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAssignmentRequestAssignment", + "oracle": "no oracle row for GET /identityGovernance/entitlementManagement/assignmentRequests/{param}/assignment and 'Get-MgIdentityGovernanceEntitlementManagementAssignmentRequestAssignment' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/assignmentrequests/{}/requestor", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAssignmentRequestor", + "oracle": "no oracle row for GET /identityGovernance/entitlementManagement/assignmentRequests/{param}/requestor and 'Get-MgIdentityGovernanceEntitlementManagementAssignmentRequestor' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/assignments/{}/accesspackage", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAssignmentAccessPackage", + "oracle": "no oracle row for GET /identityGovernance/entitlementManagement/assignments/{param}/accessPackage and 'Get-MgIdentityGovernanceEntitlementManagementAssignmentAccessPackage' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/assignments/{}/target", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementAssignmentTarget", + "oracle": "no oracle row for GET /identityGovernance/entitlementManagement/assignments/{param}/target and 'Get-MgIdentityGovernanceEntitlementManagementAssignmentTarget' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/accesspackages", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementCatalogAccessPackage", + "oracle": "no oracle row for GET /identityGovernance/entitlementManagement/catalogs/{param}/accessPackages and 'Get-MgIdentityGovernanceEntitlementManagementCatalogAccessPackage' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/accesspackages/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementCatalogAccessPackage", + "oracle": "no oracle row for GET /identityGovernance/entitlementManagement/catalogs/{param}/accessPackages/{param} and 'Get-MgIdentityGovernanceEntitlementManagementCatalogAccessPackage' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/roles", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceRole", + "oracle": "no oracle row for GET /identityGovernance/entitlementManagement/catalogs/{param}/resourceRoles/{param}/resource/roles and 'Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceRole' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/roles/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceRole", + "oracle": "no oracle row for GET /identityGovernance/entitlementManagement/catalogs/{param}/resourceRoles/{param}/resource/roles/{param} and 'Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceRole' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/roles/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceRoleCount", + "oracle": "no oracle row for GET /identityGovernance/entitlementManagement/catalogs/{param}/resourceRoles/{param}/resource/roles/$count and 'Get-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceRoleCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScope", + "oracle": "no oracle row for GET /identityGovernance/entitlementManagement/catalogs/{param}/resources/{param}/scopes and 'Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScope' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/scopes", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceScope", + "oracle": "no oracle row for GET /identityGovernance/entitlementManagement/catalogs/{param}/resourceScopes/{param}/resource/scopes and 'Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceScope' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/scopes/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceScope", + "oracle": "no oracle row for GET /identityGovernance/entitlementManagement/catalogs/{param}/resourceScopes/{param}/resource/scopes/{param} and 'Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceScope' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/scopes/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceScopeCount", + "oracle": "no oracle row for GET /identityGovernance/entitlementManagement/catalogs/{param}/resourceScopes/{param}/resource/scopes/$count and 'Get-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceScopeCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/{}/environment", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceEnvironment", + "oracle": "no oracle row for GET /identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/environment and 'Get-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceEnvironment' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/roles", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceRole", + "oracle": "no oracle row for GET /identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceRoles/{param}/resource/roles and 'Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceRole' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/roles/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceRole", + "oracle": "no oracle row for GET /identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceRoles/{param}/resource/roles/{param} and 'Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceRole' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/roles/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceRoleCount", + "oracle": "no oracle row for GET /identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceRoles/{param}/resource/roles/$count and 'Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceRoleCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScope", + "oracle": "no oracle row for GET /identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resources/{param}/scopes and 'Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScope' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/scopes", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceScope", + "oracle": "no oracle row for GET /identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceScopes/{param}/resource/scopes and 'Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceScope' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/scopes/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceScope", + "oracle": "no oracle row for GET /identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceScopes/{param}/resource/scopes/{param} and 'Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceScope' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/scopes/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceScopeCount", + "oracle": "no oracle row for GET /identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceScopes/{param}/resource/scopes/$count and 'Get-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceScopeCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/administrationscopetargets/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowAdministrationScopeTargetCount", + "oracle": "no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/administrationScopeTargets/$count and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowAdministrationScopeTargetCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/createdby/mailboxsettings", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowCreatedByMailboxSetting", + "oracle": "no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/createdBy/mailboxSettings and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowCreatedByMailboxSetting' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/createdby/serviceprovisioningerrors", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowCreatedByServiceProvisioningError", + "oracle": "no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/createdBy/serviceProvisioningErrors and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowCreatedByServiceProvisioningError' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/createdby/serviceprovisioningerrors/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowCreatedByServiceProvisioningErrorCount", + "oracle": "no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/createdBy/serviceProvisioningErrors/$count and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowCreatedByServiceProvisioningErrorCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/executionscope/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowExecutionScopeCount", + "oracle": "no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/executionScope/$count and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowExecutionScopeCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/lastmodifiedby/mailboxsettings", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowLastModifiedByMailboxSetting", + "oracle": "no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/lastModifiedBy/mailboxSettings and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowLastModifiedByMailboxSetting' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/lastmodifiedby/serviceprovisioningerrors", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowLastModifiedByServiceProvisioningError", + "oracle": "no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/lastModifiedBy/serviceProvisioningErrors and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowLastModifiedByServiceProvisioningError' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/lastmodifiedby/serviceprovisioningerrors/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowLastModifiedByServiceProvisioningErrorCount", + "oracle": "no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/lastModifiedBy/serviceProvisioningErrors/$count and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowLastModifiedByServiceProvisioningErrorCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/previewscope/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowPreviewScopeCount", + "oracle": "no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/previewScope/$count and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowPreviewScopeCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/runs/{}/reprocessedruns", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunReprocessedRun", + "oracle": "no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/reprocessedRuns and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunReprocessedRun' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/runs/{}/reprocessedruns/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunReprocessedRun", + "oracle": "no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/reprocessedRuns/{param} and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunReprocessedRun' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/runs/{}/reprocessedruns/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunReprocessedRunCount", + "oracle": "no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/reprocessedRuns/$count and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunReprocessedRunCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/runs/{}/taskprocessingresults", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunTaskProcessingResult", + "oracle": "no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/taskProcessingResults and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunTaskProcessingResult' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/runs/{}/taskprocessingresults/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunTaskProcessingResult", + "oracle": "no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/taskProcessingResults/{param} and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunTaskProcessingResult' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/runs/{}/taskprocessingresults/{}/subject", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunTaskProcessingResultSubject", + "oracle": "no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/taskProcessingResults/{param}/subject and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunTaskProcessingResultSubject' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/runs/{}/taskprocessingresults/{}/subject/mailboxsettings", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunTaskProcessingResultSubjectMailboxSetting", + "oracle": "no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/taskProcessingResults/{param}/subject/mailboxSettings and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunTaskProcessingResultSubjectMailboxSetting' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/runs/{}/taskprocessingresults/{}/subject/serviceprovisioningerrors", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunTaskProcessingResultSubjectServiceProvisioningError", + "oracle": "no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/taskProcessingResults/{param}/subject/serviceProvisioningErrors and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunTaskProcessingResultSubjectServiceProvisioningError' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/runs/{}/taskprocessingresults/{}/subject/serviceprovisioningerrors/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunTaskProcessingResultSubjectServiceProvisioningErrorCount", + "oracle": "no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/taskProcessingResults/{param}/subject/serviceProvisioningErrors/$count and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunTaskProcessingResultSubjectServiceProvisioningErrorCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/runs/{}/taskprocessingresults/{}/task", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunTaskProcessingResultTask", + "oracle": "no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/taskProcessingResults/{param}/task and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunTaskProcessingResultTask' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/runs/{}/taskprocessingresults/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunTaskProcessingResultCount", + "oracle": "no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/taskProcessingResults/$count and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunTaskProcessingResultCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/runs/{}/userprocessingresults", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResult", + "oracle": "no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/userProcessingResults and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResult' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/runs/{}/userprocessingresults/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResult", + "oracle": "no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/userProcessingResults/{param} and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResult' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/runs/{}/userprocessingresults/{}/reprocessedruns", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultReprocessedRun", + "oracle": "no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/userProcessingResults/{param}/reprocessedRuns and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultReprocessedRun' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/runs/{}/userprocessingresults/{}/reprocessedruns/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultReprocessedRun", + "oracle": "no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/userProcessingResults/{param}/reprocessedRuns/{param} and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultReprocessedRun' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/runs/{}/userprocessingresults/{}/reprocessedruns/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultReprocessedRunCount", + "oracle": "no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/userProcessingResults/{param}/reprocessedRuns/$count and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultReprocessedRunCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/runs/{}/userprocessingresults/{}/subject", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultSubject", + "oracle": "no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/userProcessingResults/{param}/subject and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultSubject' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/runs/{}/userprocessingresults/{}/subject/mailboxsettings", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultSubjectMailboxSetting", + "oracle": "no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/userProcessingResults/{param}/subject/mailboxSettings and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultSubjectMailboxSetting' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/runs/{}/userprocessingresults/{}/subject/serviceprovisioningerrors", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultSubjectServiceProvisioningError", + "oracle": "no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/userProcessingResults/{param}/subject/serviceProvisioningErrors and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultSubjectServiceProvisioningError' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/runs/{}/userprocessingresults/{}/subject/serviceprovisioningerrors/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultSubjectServiceProvisioningErrorCount", + "oracle": "no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/userProcessingResults/{param}/subject/serviceProvisioningErrors/$count and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultSubjectServiceProvisioningErrorCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/runs/{}/userprocessingresults/{}/taskprocessingresults", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultTaskProcessingResult", + "oracle": "no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/userProcessingResults/{param}/taskProcessingResults and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultTaskProcessingResult' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/runs/{}/userprocessingresults/{}/taskprocessingresults/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultTaskProcessingResult", + "oracle": "no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/userProcessingResults/{param}/taskProcessingResults/{param} and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultTaskProcessingResult' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/runs/{}/userprocessingresults/{}/taskprocessingresults/{}/subject", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultTaskProcessingResultSubject", + "oracle": "no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/subject and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultTaskProcessingResultSubject' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/runs/{}/userprocessingresults/{}/taskprocessingresults/{}/subject/mailboxsettings", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultTaskProcessingResultSubjectMailboxSetting", + "oracle": "no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/subject/mailboxSettings and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultTaskProcessingResultSubjectMailboxSetting' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/runs/{}/userprocessingresults/{}/taskprocessingresults/{}/subject/serviceprovisioningerrors", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultTaskProcessingResultSubjectServiceProvisioningError", + "oracle": "no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/subject/serviceProvisioningErrors and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultTaskProcessingResultSubjectServiceProvisioningError' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/runs/{}/userprocessingresults/{}/taskprocessingresults/{}/subject/serviceprovisioningerrors/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultTaskProcessingResultSubjectServiceProvisioningErrorCount", + "oracle": "no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/subject/serviceProvisioningErrors/$count and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultTaskProcessingResultSubjectServiceProvisioningErrorCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/runs/{}/userprocessingresults/{}/taskprocessingresults/{}/task", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultTaskProcessingResultTask", + "oracle": "no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/task and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultTaskProcessingResultTask' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/runs/{}/userprocessingresults/{}/taskprocessingresults/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultTaskProcessingResultCount", + "oracle": "no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/userProcessingResults/{param}/taskProcessingResults/$count and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultTaskProcessingResultCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/runs/{}/userprocessingresults/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultCount", + "oracle": "no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/userProcessingResults/$count and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/runs/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunCount", + "oracle": "no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/$count and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/taskreports/{}/task", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportTask", + "oracle": "no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/taskReports/{param}/task and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportTask' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/taskreports/{}/taskdefinition", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportTaskDefinition", + "oracle": "no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/taskReports/{param}/taskDefinition and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportTaskDefinition' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/taskreports/{}/taskprocessingresults", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportTaskProcessingResult", + "oracle": "no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/taskReports/{param}/taskProcessingResults and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportTaskProcessingResult' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/taskreports/{}/taskprocessingresults/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportTaskProcessingResult", + "oracle": "no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/taskReports/{param}/taskProcessingResults/{param} and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportTaskProcessingResult' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/taskreports/{}/taskprocessingresults/{}/subject", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportTaskProcessingResultSubject", + "oracle": "no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/taskReports/{param}/taskProcessingResults/{param}/subject and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportTaskProcessingResultSubject' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/taskreports/{}/taskprocessingresults/{}/subject/mailboxsettings", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportTaskProcessingResultSubjectMailboxSetting", + "oracle": "no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/taskReports/{param}/taskProcessingResults/{param}/subject/mailboxSettings and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportTaskProcessingResultSubjectMailboxSetting' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/taskreports/{}/taskprocessingresults/{}/subject/serviceprovisioningerrors", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportTaskProcessingResultSubjectServiceProvisioningError", + "oracle": "no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/taskReports/{param}/taskProcessingResults/{param}/subject/serviceProvisioningErrors and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportTaskProcessingResultSubjectServiceProvisioningError' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/taskreports/{}/taskprocessingresults/{}/subject/serviceprovisioningerrors/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportTaskProcessingResultSubjectServiceProvisioningErrorCount", + "oracle": "no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/taskReports/{param}/taskProcessingResults/{param}/subject/serviceProvisioningErrors/$count and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportTaskProcessingResultSubjectServiceProvisioningErrorCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/taskreports/{}/taskprocessingresults/{}/task", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportTaskProcessingResultTask", + "oracle": "no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/taskReports/{param}/taskProcessingResults/{param}/task and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportTaskProcessingResultTask' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/taskreports/{}/taskprocessingresults/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportTaskProcessingResultCount", + "oracle": "no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/taskReports/{param}/taskProcessingResults/$count and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportTaskProcessingResultCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/taskreports/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportCount", + "oracle": "no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/taskReports/$count and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/tasks/{}/taskprocessingresults", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskProcessingResult", + "oracle": "no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/tasks/{param}/taskProcessingResults and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskProcessingResult' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/tasks/{}/taskprocessingresults/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskProcessingResult", + "oracle": "no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/tasks/{param}/taskProcessingResults/{param} and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskProcessingResult' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/tasks/{}/taskprocessingresults/{}/subject", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskProcessingResultSubject", + "oracle": "no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/tasks/{param}/taskProcessingResults/{param}/subject and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskProcessingResultSubject' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/tasks/{}/taskprocessingresults/{}/subject/mailboxsettings", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskProcessingResultSubjectMailboxSetting", + "oracle": "no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/tasks/{param}/taskProcessingResults/{param}/subject/mailboxSettings and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskProcessingResultSubjectMailboxSetting' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/tasks/{}/taskprocessingresults/{}/subject/serviceprovisioningerrors", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskProcessingResultSubjectServiceProvisioningError", + "oracle": "no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/tasks/{param}/taskProcessingResults/{param}/subject/serviceProvisioningErrors and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskProcessingResultSubjectServiceProvisioningError' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/tasks/{}/taskprocessingresults/{}/subject/serviceprovisioningerrors/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskProcessingResultSubjectServiceProvisioningErrorCount", + "oracle": "no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/tasks/{param}/taskProcessingResults/{param}/subject/serviceProvisioningErrors/$count and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskProcessingResultSubjectServiceProvisioningErrorCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/tasks/{}/taskprocessingresults/{}/task", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskProcessingResultTask", + "oracle": "no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/tasks/{param}/taskProcessingResults/{param}/task and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskProcessingResultTask' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/tasks/{}/taskprocessingresults/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskProcessingResultCount", + "oracle": "no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/tasks/{param}/taskProcessingResults/$count and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskProcessingResultCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/tasks/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskCount", + "oracle": "no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/tasks/$count and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/userprocessingresults/{}/reprocessedruns", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultReprocessedRun", + "oracle": "no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/userProcessingResults/{param}/reprocessedRuns and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultReprocessedRun' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/userprocessingresults/{}/reprocessedruns/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultReprocessedRun", + "oracle": "no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/userProcessingResults/{param}/reprocessedRuns/{param} and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultReprocessedRun' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/userprocessingresults/{}/reprocessedruns/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultReprocessedRunCount", + "oracle": "no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/userProcessingResults/{param}/reprocessedRuns/$count and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultReprocessedRunCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/userprocessingresults/{}/subject", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultSubject", + "oracle": "no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/userProcessingResults/{param}/subject and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultSubject' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/userprocessingresults/{}/subject/mailboxsettings", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultSubjectMailboxSetting", + "oracle": "no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/userProcessingResults/{param}/subject/mailboxSettings and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultSubjectMailboxSetting' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/userprocessingresults/{}/subject/serviceprovisioningerrors", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultSubjectServiceProvisioningError", + "oracle": "no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/userProcessingResults/{param}/subject/serviceProvisioningErrors and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultSubjectServiceProvisioningError' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/userprocessingresults/{}/subject/serviceprovisioningerrors/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultSubjectServiceProvisioningErrorCount", + "oracle": "no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/userProcessingResults/{param}/subject/serviceProvisioningErrors/$count and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultSubjectServiceProvisioningErrorCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/userprocessingresults/{}/taskprocessingresults", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultTaskProcessingResult", + "oracle": "no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/userProcessingResults/{param}/taskProcessingResults and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultTaskProcessingResult' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/userprocessingresults/{}/taskprocessingresults/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultTaskProcessingResult", + "oracle": "no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/userProcessingResults/{param}/taskProcessingResults/{param} and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultTaskProcessingResult' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/userprocessingresults/{}/taskprocessingresults/{}/subject", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultTaskProcessingResultSubject", + "oracle": "no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/subject and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultTaskProcessingResultSubject' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/userprocessingresults/{}/taskprocessingresults/{}/subject/mailboxsettings", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultTaskProcessingResultSubjectMailboxSetting", + "oracle": "no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/subject/mailboxSettings and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultTaskProcessingResultSubjectMailboxSetting' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/userprocessingresults/{}/taskprocessingresults/{}/subject/serviceprovisioningerrors", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultTaskProcessingResultSubjectServiceProvisioningError", + "oracle": "no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/subject/serviceProvisioningErrors and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultTaskProcessingResultSubjectServiceProvisioningError' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/userprocessingresults/{}/taskprocessingresults/{}/subject/serviceprovisioningerrors/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultTaskProcessingResultSubjectServiceProvisioningErrorCount", + "oracle": "no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/subject/serviceProvisioningErrors/$count and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultTaskProcessingResultSubjectServiceProvisioningErrorCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/userprocessingresults/{}/taskprocessingresults/{}/task", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultTaskProcessingResultTask", + "oracle": "no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/task and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultTaskProcessingResultTask' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/userprocessingresults/{}/taskprocessingresults/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultTaskProcessingResultCount", + "oracle": "no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/userProcessingResults/{param}/taskProcessingResults/$count and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultTaskProcessingResultCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/userprocessingresults/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultCount", + "oracle": "no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/userProcessingResults/$count and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/versions/{}/administrationscopetargets", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionAdministrationScopeTarget", + "oracle": "no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/administrationScopeTargets and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionAdministrationScopeTarget' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/versions/{}/administrationscopetargets/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionAdministrationScopeTarget", + "oracle": "no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/administrationScopeTargets/{param} and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionAdministrationScopeTarget' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/versions/{}/administrationscopetargets/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionAdministrationScopeTargetCount", + "oracle": "no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/administrationScopeTargets/$count and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionAdministrationScopeTargetCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/versions/{}/createdby", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionCreatedBy", + "oracle": "no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/createdBy and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionCreatedBy' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/versions/{}/createdby/mailboxsettings", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionCreatedByMailboxSetting", + "oracle": "no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/createdBy/mailboxSettings and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionCreatedByMailboxSetting' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/versions/{}/createdby/serviceprovisioningerrors", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionCreatedByServiceProvisioningError", + "oracle": "no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/createdBy/serviceProvisioningErrors and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionCreatedByServiceProvisioningError' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/versions/{}/createdby/serviceprovisioningerrors/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionCreatedByServiceProvisioningErrorCount", + "oracle": "no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/createdBy/serviceProvisioningErrors/$count and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionCreatedByServiceProvisioningErrorCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/versions/{}/lastmodifiedby", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionLastModifiedBy", + "oracle": "no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/lastModifiedBy and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionLastModifiedBy' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/versions/{}/lastmodifiedby/mailboxsettings", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionLastModifiedByMailboxSetting", + "oracle": "no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/lastModifiedBy/mailboxSettings and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionLastModifiedByMailboxSetting' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/versions/{}/lastmodifiedby/serviceprovisioningerrors", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionLastModifiedByServiceProvisioningError", + "oracle": "no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/lastModifiedBy/serviceProvisioningErrors and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionLastModifiedByServiceProvisioningError' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/versions/{}/lastmodifiedby/serviceprovisioningerrors/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionLastModifiedByServiceProvisioningErrorCount", + "oracle": "no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/lastModifiedBy/serviceProvisioningErrors/$count and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionLastModifiedByServiceProvisioningErrorCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/versions/{}/tasks", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTask", + "oracle": "no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/tasks and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTask' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/versions/{}/tasks/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTask", + "oracle": "no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/tasks/{param} and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTask' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/versions/{}/tasks/{}/taskprocessingresults", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTaskProcessingResult", + "oracle": "no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/tasks/{param}/taskProcessingResults and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTaskProcessingResult' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/versions/{}/tasks/{}/taskprocessingresults/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTaskProcessingResult", + "oracle": "no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/tasks/{param}/taskProcessingResults/{param} and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTaskProcessingResult' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/versions/{}/tasks/{}/taskprocessingresults/{}/subject", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTaskProcessingResultSubject", + "oracle": "no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/tasks/{param}/taskProcessingResults/{param}/subject and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTaskProcessingResultSubject' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/versions/{}/tasks/{}/taskprocessingresults/{}/subject/mailboxsettings", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTaskProcessingResultSubjectMailboxSetting", + "oracle": "no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/tasks/{param}/taskProcessingResults/{param}/subject/mailboxSettings and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTaskProcessingResultSubjectMailboxSetting' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/versions/{}/tasks/{}/taskprocessingresults/{}/subject/serviceprovisioningerrors", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTaskProcessingResultSubjectServiceProvisioningError", + "oracle": "no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/tasks/{param}/taskProcessingResults/{param}/subject/serviceProvisioningErrors and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTaskProcessingResultSubjectServiceProvisioningError' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/versions/{}/tasks/{}/taskprocessingresults/{}/subject/serviceprovisioningerrors/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTaskProcessingResultSubjectServiceProvisioningErrorCount", + "oracle": "no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/tasks/{param}/taskProcessingResults/{param}/subject/serviceProvisioningErrors/$count and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTaskProcessingResultSubjectServiceProvisioningErrorCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/versions/{}/tasks/{}/taskprocessingresults/{}/task", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTaskProcessingResultTask", + "oracle": "no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/tasks/{param}/taskProcessingResults/{param}/task and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTaskProcessingResultTask' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/versions/{}/tasks/{}/taskprocessingresults/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTaskProcessingResultCount", + "oracle": "no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/tasks/{param}/taskProcessingResults/$count and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTaskProcessingResultCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/versions/{}/tasks/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTaskCount", + "oracle": "no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/tasks/$count and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTaskCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/versions/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionCount", + "oracle": "no oracle row for GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/$count and 'Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/lifecycleworkflows/workflows/{}/runs/{}/userprocessingresults/{}/taskprocessingresults/{}/subject", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultTaskProcessingResultSubject", + "oracle": "no oracle row for GET /identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/subject and 'Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultTaskProcessingResultSubject' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/lifecycleworkflows/workflows/{}/runs/{}/userprocessingresults/{}/taskprocessingresults/{}/subject/mailboxsettings", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultTaskProcessingResultSubjectMailboxSetting", + "oracle": "no oracle row for GET /identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/subject/mailboxSettings and 'Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultTaskProcessingResultSubjectMailboxSetting' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/lifecycleworkflows/workflows/{}/runs/{}/userprocessingresults/{}/taskprocessingresults/{}/subject/serviceprovisioningerrors", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultTaskProcessingResultSubjectServiceProvisioningError", + "oracle": "no oracle row for GET /identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/subject/serviceProvisioningErrors and 'Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultTaskProcessingResultSubjectServiceProvisioningError' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/lifecycleworkflows/workflows/{}/runs/{}/userprocessingresults/{}/taskprocessingresults/{}/subject/serviceprovisioningerrors/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultTaskProcessingResultSubjectServiceProvisioningErrorCount", + "oracle": "no oracle row for GET /identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/subject/serviceProvisioningErrors/$count and 'Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultTaskProcessingResultSubjectServiceProvisioningErrorCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/lifecycleworkflows/workflows/{}/runs/{}/userprocessingresults/{}/taskprocessingresults/{}/task", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultTaskProcessingResultTask", + "oracle": "no oracle row for GET /identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/task and 'Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultTaskProcessingResultTask' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/lifecycleworkflows/workflows/{}/runs/{}/userprocessingresults/{}/taskprocessingresults/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultTaskProcessingResultCount", + "oracle": "no oracle row for GET /identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/userProcessingResults/{param}/taskProcessingResults/$count and 'Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultTaskProcessingResultCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/lifecycleworkflows/workflows/{}/userprocessingresults/{}/taskprocessingresults/{}/subject", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultTaskProcessingResultSubject", + "oracle": "no oracle row for GET /identityGovernance/lifecycleWorkflows/workflows/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/subject and 'Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultTaskProcessingResultSubject' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/lifecycleworkflows/workflows/{}/userprocessingresults/{}/taskprocessingresults/{}/subject/mailboxsettings", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultTaskProcessingResultSubjectMailboxSetting", + "oracle": "no oracle row for GET /identityGovernance/lifecycleWorkflows/workflows/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/subject/mailboxSettings and 'Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultTaskProcessingResultSubjectMailboxSetting' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/lifecycleworkflows/workflows/{}/userprocessingresults/{}/taskprocessingresults/{}/subject/serviceprovisioningerrors", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultTaskProcessingResultSubjectServiceProvisioningError", + "oracle": "no oracle row for GET /identityGovernance/lifecycleWorkflows/workflows/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/subject/serviceProvisioningErrors and 'Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultTaskProcessingResultSubjectServiceProvisioningError' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/lifecycleworkflows/workflows/{}/userprocessingresults/{}/taskprocessingresults/{}/subject/serviceprovisioningerrors/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultTaskProcessingResultSubjectServiceProvisioningErrorCount", + "oracle": "no oracle row for GET /identityGovernance/lifecycleWorkflows/workflows/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/subject/serviceProvisioningErrors/$count and 'Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultTaskProcessingResultSubjectServiceProvisioningErrorCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/lifecycleworkflows/workflows/{}/userprocessingresults/{}/taskprocessingresults/{}/task", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultTaskProcessingResultTask", + "oracle": "no oracle row for GET /identityGovernance/lifecycleWorkflows/workflows/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/task and 'Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultTaskProcessingResultTask' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/lifecycleworkflows/workflows/{}/userprocessingresults/{}/taskprocessingresults/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultTaskProcessingResultCount", + "oracle": "no oracle row for GET /identityGovernance/lifecycleWorkflows/workflows/{param}/userProcessingResults/{param}/taskProcessingResults/$count and 'Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultTaskProcessingResultCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identitygovernance/termsofuse", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityGovernanceTermOfUse", + "oracle": "no oracle row for GET /identityGovernance/termsOfUse and 'Get-MgIdentityGovernanceTermOfUse' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/identityprotection", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgIdentityProtection", + "oracle": "no oracle row for GET /identityProtection and 'Get-MgIdentityProtection' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/invitations/inviteduser", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgInvitationInvitedUser", + "oracle": "no oracle row for GET /invitations/invitedUser and 'Get-MgInvitationInvitedUser' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/planner/buckets/{}/tasks/{}/assignedtotaskboardformat", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgPlannerBucketTaskAssignedToTaskBoardFormat", + "oracle": "no oracle row for GET /planner/buckets/{param}/tasks/{param}/assignedToTaskBoardFormat and 'Get-MgPlannerBucketTaskAssignedToTaskBoardFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/planner/buckets/{}/tasks/{}/buckettaskboardformat", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgPlannerBucketTaskBucketTaskBoardFormat", + "oracle": "no oracle row for GET /planner/buckets/{param}/tasks/{param}/bucketTaskBoardFormat and 'Get-MgPlannerBucketTaskBucketTaskBoardFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/planner/buckets/{}/tasks/{}/details", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgPlannerBucketTaskDetail", + "oracle": "no oracle row for GET /planner/buckets/{param}/tasks/{param}/details and 'Get-MgPlannerBucketTaskDetail' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/planner/buckets/{}/tasks/{}/progresstaskboardformat", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgPlannerBucketTaskProgressTaskBoardFormat", + "oracle": "no oracle row for GET /planner/buckets/{param}/tasks/{param}/progressTaskBoardFormat and 'Get-MgPlannerBucketTaskProgressTaskBoardFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/planner/buckets/{}/tasks/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgPlannerBucketTaskCount", + "oracle": "no oracle row for GET /planner/buckets/{param}/tasks/$count and 'Get-MgPlannerBucketTaskCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/planner/plans/{}/buckets/{}/tasks", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgPlannerPlanBucketTask", + "oracle": "no oracle row for GET /planner/plans/{param}/buckets/{param}/tasks and 'Get-MgPlannerPlanBucketTask' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/planner/plans/{}/buckets/{}/tasks/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgPlannerPlanBucketTask", + "oracle": "no oracle row for GET /planner/plans/{param}/buckets/{param}/tasks/{param} and 'Get-MgPlannerPlanBucketTask' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/planner/plans/{}/buckets/{}/tasks/{}/assignedtotaskboardformat", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgPlannerPlanBucketTaskAssignedToTaskBoardFormat", + "oracle": "no oracle row for GET /planner/plans/{param}/buckets/{param}/tasks/{param}/assignedToTaskBoardFormat and 'Get-MgPlannerPlanBucketTaskAssignedToTaskBoardFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/planner/plans/{}/buckets/{}/tasks/{}/buckettaskboardformat", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgPlannerPlanBucketTaskBucketTaskBoardFormat", + "oracle": "no oracle row for GET /planner/plans/{param}/buckets/{param}/tasks/{param}/bucketTaskBoardFormat and 'Get-MgPlannerPlanBucketTaskBucketTaskBoardFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/planner/plans/{}/buckets/{}/tasks/{}/details", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgPlannerPlanBucketTaskDetail", + "oracle": "no oracle row for GET /planner/plans/{param}/buckets/{param}/tasks/{param}/details and 'Get-MgPlannerPlanBucketTaskDetail' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/planner/plans/{}/buckets/{}/tasks/{}/progresstaskboardformat", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgPlannerPlanBucketTaskProgressTaskBoardFormat", + "oracle": "no oracle row for GET /planner/plans/{param}/buckets/{param}/tasks/{param}/progressTaskBoardFormat and 'Get-MgPlannerPlanBucketTaskProgressTaskBoardFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/planner/plans/{}/buckets/{}/tasks/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgPlannerPlanBucketTaskCount", + "oracle": "no oracle row for GET /planner/plans/{param}/buckets/{param}/tasks/$count and 'Get-MgPlannerPlanBucketTaskCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/planner/plans/{}/buckets/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgPlannerPlanBucketCount", + "oracle": "no oracle row for GET /planner/plans/{param}/buckets/$count and 'Get-MgPlannerPlanBucketCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/planner/plans/{}/tasks/{}/assignedtotaskboardformat", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgPlannerPlanTaskAssignedToTaskBoardFormat", + "oracle": "no oracle row for GET /planner/plans/{param}/tasks/{param}/assignedToTaskBoardFormat and 'Get-MgPlannerPlanTaskAssignedToTaskBoardFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/planner/plans/{}/tasks/{}/buckettaskboardformat", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgPlannerPlanTaskBucketTaskBoardFormat", + "oracle": "no oracle row for GET /planner/plans/{param}/tasks/{param}/bucketTaskBoardFormat and 'Get-MgPlannerPlanTaskBucketTaskBoardFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/planner/plans/{}/tasks/{}/details", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgPlannerPlanTaskDetail", + "oracle": "no oracle row for GET /planner/plans/{param}/tasks/{param}/details and 'Get-MgPlannerPlanTaskDetail' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/planner/plans/{}/tasks/{}/progresstaskboardformat", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgPlannerPlanTaskProgressTaskBoardFormat", + "oracle": "no oracle row for GET /planner/plans/{param}/tasks/{param}/progressTaskBoardFormat and 'Get-MgPlannerPlanTaskProgressTaskBoardFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/planner/plans/{}/tasks/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgPlannerPlanTaskCount", + "oracle": "no oracle row for GET /planner/plans/{param}/tasks/$count and 'Get-MgPlannerPlanTaskCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/policies", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgPolicy", + "oracle": "no oracle row for GET /policies and 'Get-MgPolicy' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/policies/conditionalaccesspolicies", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgPolicyConditionalAccessPolicy", + "oracle": "no oracle row for GET /policies/conditionalAccessPolicies and 'Get-MgPolicyConditionalAccessPolicy' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/policies/conditionalaccesspolicies/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgPolicyConditionalAccessPolicy", + "oracle": "no oracle row for GET /policies/conditionalAccessPolicies/{param} and 'Get-MgPolicyConditionalAccessPolicy' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/print/taskdefinitions/{}/tasks/{}/definition", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgPrintTaskDefinitionTaskDefinition", + "oracle": "no oracle row for GET /print/taskDefinitions/{param}/tasks/{param}/definition and 'Get-MgPrintTaskDefinitionTaskDefinition' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/reports", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgReport", + "oracle": "no oracle row for GET /reports and 'Get-MgReport' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/reports/authenticationmethods/usersregisteredbymethod", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgReportAuthenticationMethodUsersRegisteredByMethod", + "oracle": "no oracle row for GET /reports/authenticationMethods/usersRegisteredByMethod and 'Get-MgReportAuthenticationMethodUsersRegisteredByMethod' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/security", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgSecurity", + "oracle": "no oracle row for GET /security and 'Get-MgSecurity' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/security/cases/ediscoverycases/{}/noncustodialdatasources/{}/datasource", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceDataSource", + "oracle": "no oracle row for GET /security/cases/ediscoveryCases/{param}/noncustodialDataSources/{param}/dataSource and 'Get-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceDataSource' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/security/threatintelligence/hostsslcertificates/{}/sslcertificate", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgSecurityThreatIntelligenceHostSslCertificateSslCertificate", + "oracle": "no oracle row for GET /security/threatIntelligence/hostSslCertificates/{param}/sslCertificate and 'Get-MgSecurityThreatIntelligenceHostSslCertificateSslCertificate' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/serviceprincipals/{}/federatedidentitycredentials", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgServicePrincipalFederatedIdentityCredential", + "oracle": "no oracle row for GET /servicePrincipals/{param}/federatedIdentityCredentials and 'Get-MgServicePrincipalFederatedIdentityCredential' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/serviceprincipals/{}/federatedidentitycredentials/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgServicePrincipalFederatedIdentityCredential", + "oracle": "no oracle row for GET /servicePrincipals/{param}/federatedIdentityCredentials/{param} and 'Get-MgServicePrincipalFederatedIdentityCredential' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/serviceprincipals/{}/federatedidentitycredentials/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgServicePrincipalFederatedIdentityCredentialCount", + "oracle": "no oracle row for GET /servicePrincipals/{param}/federatedIdentityCredentials/$count and 'Get-MgServicePrincipalFederatedIdentityCredentialCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/shares/{}/list/items/{}/permissions", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgShareListItemPermission", + "oracle": "no oracle row for GET /shares/{param}/list/items/{param}/permissions and 'Get-MgShareListItemPermission' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/shares/{}/list/items/{}/permissions/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgShareListItemPermission", + "oracle": "no oracle row for GET /shares/{param}/list/items/{param}/permissions/{param} and 'Get-MgShareListItemPermission' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/shares/{}/list/items/{}/permissions/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgShareListItemPermissionCount", + "oracle": "no oracle row for GET /shares/{param}/list/items/{param}/permissions/$count and 'Get-MgShareListItemPermissionCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/shares/{}/list/lastmodifiedbyuser", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgShareListLastModifiedByUser", + "oracle": "no oracle row for GET /shares/{param}/list/lastModifiedByUser and 'Get-MgShareListLastModifiedByUser' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/shares/{}/list/lastmodifiedbyuser/mailboxsettings", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgShareListLastModifiedByUserMailboxSetting", + "oracle": "no oracle row for GET /shares/{param}/list/lastModifiedByUser/mailboxSettings and 'Get-MgShareListLastModifiedByUserMailboxSetting' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/shares/{}/list/lastmodifiedbyuser/serviceprovisioningerrors", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgShareListLastModifiedByUserServiceProvisioningError", + "oracle": "no oracle row for GET /shares/{param}/list/lastModifiedByUser/serviceProvisioningErrors and 'Get-MgShareListLastModifiedByUserServiceProvisioningError' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/shares/{}/list/lastmodifiedbyuser/serviceprovisioningerrors/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgShareListLastModifiedByUserServiceProvisioningErrorCount", + "oracle": "no oracle row for GET /shares/{param}/list/lastModifiedByUser/serviceProvisioningErrors/$count and 'Get-MgShareListLastModifiedByUserServiceProvisioningErrorCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/shares/{}/list/permissions", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgShareListPermission", + "oracle": "no oracle row for GET /shares/{param}/list/permissions and 'Get-MgShareListPermission' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/shares/{}/list/permissions/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgShareListPermission", + "oracle": "no oracle row for GET /shares/{param}/list/permissions/{param} and 'Get-MgShareListPermission' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/shares/{}/list/permissions/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgShareListPermissionCount", + "oracle": "no oracle row for GET /shares/{param}/list/permissions/$count and 'Get-MgShareListPermissionCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/sites/{}/lists/{}/contenttypes/{}/base", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgSiteListContentTypeBase", + "oracle": "no oracle row for GET /sites/{param}/lists/{param}/contentTypes/{param}/base and 'Get-MgSiteListContentTypeBase' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/sites/{}/lists/{}/contenttypes/{}/basetypes", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgSiteListContentTypeBaseType", + "oracle": "no oracle row for GET /sites/{param}/lists/{param}/contentTypes/{param}/baseTypes and 'Get-MgSiteListContentTypeBaseType' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/sites/{}/lists/{}/contenttypes/{}/basetypes/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgSiteListContentTypeBaseType", + "oracle": "no oracle row for GET /sites/{param}/lists/{param}/contentTypes/{param}/baseTypes/{param} and 'Get-MgSiteListContentTypeBaseType' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/sites/{}/lists/{}/contenttypes/{}/basetypes/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgSiteListContentTypeBaseTypeCount", + "oracle": "no oracle row for GET /sites/{param}/lists/{param}/contentTypes/{param}/baseTypes/$count and 'Get-MgSiteListContentTypeBaseTypeCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/teams/{}/channels/{}/members", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgTeamChannelMember", + "oracle": "no oracle row; 'Get-MgTeamChannelMember' ships from sibling family (see rename entries for this noun)" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/teams/{}/channels/{}/members/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgTeamChannelMember", + "oracle": "no oracle row; 'Get-MgTeamChannelMember' ships from sibling family (see rename entries for this noun)" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/teams/{}/channels/{}/messages/{}/hostedcontents/{}/$value", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgTeamChannelMessageHostedContentContent", + "oracle": "no oracle row for GET /teams/{param}/channels/{param}/messages/{param}/hostedContents/{param}/$value and 'Get-MgTeamChannelMessageHostedContentContent' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/teams/{}/channels/{}/messages/{}/replies/{}/hostedcontents/{}/$value", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgTeamChannelMessageReplyHostedContentContent", + "oracle": "no oracle row for GET /teams/{param}/channels/{param}/messages/{param}/replies/{param}/hostedContents/{param}/$value and 'Get-MgTeamChannelMessageReplyHostedContentContent' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/teams/{}/channels/getallmessages", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgTeamChannelGetAllMessages", + "oracle": "no oracle row for GET /teams/{param}/channels/getAllMessages and 'Get-MgTeamChannelGetAllMessages' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/teams/{}/group", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgTeamGroup", + "oracle": "no oracle row for GET /teams/{param}/group and 'Get-MgTeamGroup' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/teams/{}/primarychannel/members", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgTeamPrimaryChannelMember", + "oracle": "no oracle row; 'Get-MgTeamPrimaryChannelMember' ships from sibling family (see rename entries for this noun)" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/teams/{}/primarychannel/members/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgTeamPrimaryChannelMember", + "oracle": "no oracle row; 'Get-MgTeamPrimaryChannelMember' ships from sibling family (see rename entries for this noun)" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/teams/{}/primarychannel/messages/{}/hostedcontents/{}/$value", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgTeamPrimaryChannelMessageHostedContentContent", + "oracle": "no oracle row for GET /teams/{param}/primaryChannel/messages/{param}/hostedContents/{param}/$value and 'Get-MgTeamPrimaryChannelMessageHostedContentContent' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/teams/{}/primarychannel/messages/{}/replies/{}/hostedcontents/{}/$value", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgTeamPrimaryChannelMessageReplyHostedContentContent", + "oracle": "no oracle row for GET /teams/{param}/primaryChannel/messages/{param}/replies/{param}/hostedContents/{param}/$value and 'Get-MgTeamPrimaryChannelMessageReplyHostedContentContent' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/teamwork/deletedteams/{}/channels/{}/members", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgTeamworkDeletedTeamChannelMember", + "oracle": "no oracle row; 'Get-MgTeamworkDeletedTeamChannelMember' ships from sibling family (see rename entries for this noun)" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/teamwork/deletedteams/{}/channels/{}/members/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgTeamworkDeletedTeamChannelMember", + "oracle": "no oracle row; 'Get-MgTeamworkDeletedTeamChannelMember' ships from sibling family (see rename entries for this noun)" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/teamwork/deletedteams/{}/channels/{}/messages/{}/hostedcontents/{}/$value", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgTeamworkDeletedTeamChannelMessageHostedContentContent", + "oracle": "no oracle row for GET /teamwork/deletedTeams/{param}/channels/{param}/messages/{param}/hostedContents/{param}/$value and 'Get-MgTeamworkDeletedTeamChannelMessageHostedContentContent' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/teamwork/deletedteams/{}/channels/{}/messages/{}/replies/{}/hostedcontents/{}/$value", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgTeamworkDeletedTeamChannelMessageReplyHostedContentContent", + "oracle": "no oracle row for GET /teamwork/deletedTeams/{param}/channels/{param}/messages/{param}/replies/{param}/hostedContents/{param}/$value and 'Get-MgTeamworkDeletedTeamChannelMessageReplyHostedContentContent' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/teamwork/deletedteams/{}/channels/getallmessages", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgTeamworkDeletedTeamChannelGetAllMessages", + "oracle": "no oracle row for GET /teamwork/deletedTeams/{param}/channels/getAllMessages and 'Get-MgTeamworkDeletedTeamChannelGetAllMessages' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/authentication", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserAuthentication", + "oracle": "no oracle row for GET /users/{param}/authentication and 'Get-MgUserAuthentication' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/calendar/calendarview/delta", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserCalendarViewDelta", + "oracle": "no oracle row for GET /users/{param}/calendar/calendarView/delta and 'Get-MgUserCalendarViewDelta' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/calendar/events/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserCalendarEventCount", + "oracle": "no oracle row for GET /users/{param}/calendar/events/$count and 'Get-MgUserCalendarEventCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/calendar/events/delta", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserCalendarEventDelta", + "oracle": "no oracle row for GET /users/{param}/calendar/events/delta and 'Get-MgUserCalendarEventDelta' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/calendargroups/{}/calendars/{}/calendarpermissions", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserCalendarGroupCalendarPermission", + "oracle": "no oracle row for GET /users/{param}/calendarGroups/{param}/calendars/{param}/calendarPermissions and 'Get-MgUserCalendarGroupCalendarPermission' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/calendargroups/{}/calendars/{}/calendarpermissions/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserCalendarGroupCalendarPermission", + "oracle": "no oracle row for GET /users/{param}/calendarGroups/{param}/calendars/{param}/calendarPermissions/{param} and 'Get-MgUserCalendarGroupCalendarPermission' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/calendargroups/{}/calendars/{}/calendarpermissions/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserCalendarGroupCalendarPermissionCount", + "oracle": "no oracle row for GET /users/{param}/calendarGroups/{param}/calendars/{param}/calendarPermissions/$count and 'Get-MgUserCalendarGroupCalendarPermissionCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/calendargroups/{}/calendars/{}/calendarview", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserCalendarGroupCalendarView", + "oracle": "no oracle row for GET /users/{param}/calendarGroups/{param}/calendars/{param}/calendarView and 'Get-MgUserCalendarGroupCalendarView' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/calendargroups/{}/calendars/{}/calendarview/delta", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserCalendarGroupCalendarViewDelta", + "oracle": "no oracle row for GET /users/{param}/calendarGroups/{param}/calendars/{param}/calendarView/delta and 'Get-MgUserCalendarGroupCalendarViewDelta' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/calendargroups/{}/calendars/{}/events", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserCalendarGroupCalendarEvent", + "oracle": "no oracle row for GET /users/{param}/calendarGroups/{param}/calendars/{param}/events and 'Get-MgUserCalendarGroupCalendarEvent' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/calendargroups/{}/calendars/{}/events/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserCalendarGroupCalendarEvent", + "oracle": "no oracle row for GET /users/{param}/calendarGroups/{param}/calendars/{param}/events/{param} and 'Get-MgUserCalendarGroupCalendarEvent' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/calendargroups/{}/calendars/{}/events/{}/attachments", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserCalendarGroupCalendarEventAttachment", + "oracle": "no oracle row for GET /users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/attachments and 'Get-MgUserCalendarGroupCalendarEventAttachment' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/calendargroups/{}/calendars/{}/events/{}/attachments/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserCalendarGroupCalendarEventAttachment", + "oracle": "no oracle row for GET /users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/attachments/{param} and 'Get-MgUserCalendarGroupCalendarEventAttachment' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/calendargroups/{}/calendars/{}/events/{}/attachments/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserCalendarGroupCalendarEventAttachmentCount", + "oracle": "no oracle row for GET /users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/attachments/$count and 'Get-MgUserCalendarGroupCalendarEventAttachmentCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/calendargroups/{}/calendars/{}/events/{}/calendar", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserCalendarGroupCalendarEventCalendar", + "oracle": "no oracle row for GET /users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/calendar and 'Get-MgUserCalendarGroupCalendarEventCalendar' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/calendargroups/{}/calendars/{}/events/{}/extensions", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserCalendarGroupCalendarEventExtension", + "oracle": "no oracle row for GET /users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/extensions and 'Get-MgUserCalendarGroupCalendarEventExtension' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/calendargroups/{}/calendars/{}/events/{}/extensions/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserCalendarGroupCalendarEventExtension", + "oracle": "no oracle row for GET /users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/extensions/{param} and 'Get-MgUserCalendarGroupCalendarEventExtension' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/calendargroups/{}/calendars/{}/events/{}/extensions/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserCalendarGroupCalendarEventExtensionCount", + "oracle": "no oracle row for GET /users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/extensions/$count and 'Get-MgUserCalendarGroupCalendarEventExtensionCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/calendargroups/{}/calendars/{}/events/{}/instances", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserCalendarGroupCalendarEventInstance", + "oracle": "no oracle row for GET /users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/instances and 'Get-MgUserCalendarGroupCalendarEventInstance' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/calendargroups/{}/calendars/{}/events/{}/instances/delta", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserCalendarGroupCalendarEventInstanceDelta", + "oracle": "no oracle row for GET /users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/instances/delta and 'Get-MgUserCalendarGroupCalendarEventInstanceDelta' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/calendargroups/{}/calendars/{}/events/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserCalendarGroupCalendarEventCount", + "oracle": "no oracle row for GET /users/{param}/calendarGroups/{param}/calendars/{param}/events/$count and 'Get-MgUserCalendarGroupCalendarEventCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/calendargroups/{}/calendars/{}/events/delta", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserCalendarGroupCalendarEventDelta", + "oracle": "no oracle row for GET /users/{param}/calendarGroups/{param}/calendars/{param}/events/delta and 'Get-MgUserCalendarGroupCalendarEventDelta' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/calendargroups/{}/calendars/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserCalendarGroupCalendarCount", + "oracle": "no oracle row for GET /users/{param}/calendarGroups/{param}/calendars/$count and 'Get-MgUserCalendarGroupCalendarCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/chats/{}/messages/{}/hostedcontents/{}/$value", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserChatMessageHostedContentContent", + "oracle": "no oracle row for GET /users/{param}/chats/{param}/messages/{param}/hostedContents/{param}/$value and 'Get-MgUserChatMessageHostedContentContent' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/chats/{}/messages/{}/replies/{}/hostedcontents/{}/$value", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserChatMessageReplyHostedContentContent", + "oracle": "no oracle row for GET /users/{param}/chats/{param}/messages/{param}/replies/{param}/hostedContents/{param}/$value and 'Get-MgUserChatMessageReplyHostedContentContent' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/chats/{}/targetedmessages/{}/hostedcontents/{}/$value", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserChatTargetedMessageHostedContentContent", + "oracle": "no oracle row for GET /users/{param}/chats/{param}/targetedMessages/{param}/hostedContents/{param}/$value and 'Get-MgUserChatTargetedMessageHostedContentContent' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/chats/{}/targetedmessages/{}/replies/{}/hostedcontents/{}/$value", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserChatTargetedMessageReplyHostedContentContent", + "oracle": "no oracle row for GET /users/{param}/chats/{param}/targetedMessages/{param}/replies/{param}/hostedContents/{param}/$value and 'Get-MgUserChatTargetedMessageReplyHostedContentContent' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/chats/getallmessages", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserChatGetAllMessages", + "oracle": "no oracle row for GET /users/{param}/chats/getAllMessages and 'Get-MgUserChatGetAllMessages' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/allchannels", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamAllChannel", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/allChannels and 'Get-MgUserJoinedTeamAllChannel' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/allchannels/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamAllChannel", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/allChannels/{param} and 'Get-MgUserJoinedTeamAllChannel' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/allchannels/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamAllChannelCount", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/allChannels/$count and 'Get-MgUserJoinedTeamAllChannelCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/channels", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamChannel", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/channels and 'Get-MgUserJoinedTeamChannel' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/channels/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamChannel", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/channels/{param} and 'Get-MgUserJoinedTeamChannel' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/channels/{}/allmembers", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamChannelAllMember", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/channels/{param}/allMembers and 'Get-MgUserJoinedTeamChannelAllMember' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/channels/{}/allmembers/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamChannelAllMember", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/channels/{param}/allMembers/{param} and 'Get-MgUserJoinedTeamChannelAllMember' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/channels/{}/allmembers/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamChannelAllMemberCount", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/channels/{param}/allMembers/$count and 'Get-MgUserJoinedTeamChannelAllMemberCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/channels/{}/enabledapps", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamChannelEnabledApp", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/channels/{param}/enabledApps and 'Get-MgUserJoinedTeamChannelEnabledApp' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/channels/{}/enabledapps/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamChannelEnabledApp", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/channels/{param}/enabledApps/{param} and 'Get-MgUserJoinedTeamChannelEnabledApp' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/channels/{}/enabledapps/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamChannelEnabledAppCount", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/channels/{param}/enabledApps/$count and 'Get-MgUserJoinedTeamChannelEnabledAppCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/channels/{}/filesfolder", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamChannelFileFolder", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/channels/{param}/filesFolder and 'Get-MgUserJoinedTeamChannelFileFolder' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/channels/{}/members", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamChannelMember", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/channels/{param}/members and 'Get-MgUserJoinedTeamChannelMember' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/channels/{}/members/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamChannelMember", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/channels/{param}/members/{param} and 'Get-MgUserJoinedTeamChannelMember' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/channels/{}/members/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamChannelMemberCount", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/channels/{param}/members/$count and 'Get-MgUserJoinedTeamChannelMemberCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/channels/{}/messages", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamChannelMessage", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/channels/{param}/messages and 'Get-MgUserJoinedTeamChannelMessage' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/channels/{}/messages/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamChannelMessage", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/channels/{param}/messages/{param} and 'Get-MgUserJoinedTeamChannelMessage' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/channels/{}/messages/{}/hostedcontents", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamChannelMessageHostedContent", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/hostedContents and 'Get-MgUserJoinedTeamChannelMessageHostedContent' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/channels/{}/messages/{}/hostedcontents/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamChannelMessageHostedContent", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/hostedContents/{param} and 'Get-MgUserJoinedTeamChannelMessageHostedContent' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/channels/{}/messages/{}/hostedcontents/{}/$value", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamChannelMessageHostedContentContent", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/hostedContents/{param}/$value and 'Get-MgUserJoinedTeamChannelMessageHostedContentContent' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/channels/{}/messages/{}/hostedcontents/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamChannelMessageHostedContentCount", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/hostedContents/$count and 'Get-MgUserJoinedTeamChannelMessageHostedContentCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/channels/{}/messages/{}/replies", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamChannelMessageReply", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/replies and 'Get-MgUserJoinedTeamChannelMessageReply' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/channels/{}/messages/{}/replies/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamChannelMessageReply", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/replies/{param} and 'Get-MgUserJoinedTeamChannelMessageReply' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/channels/{}/messages/{}/replies/{}/hostedcontents", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamChannelMessageReplyHostedContent", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/replies/{param}/hostedContents and 'Get-MgUserJoinedTeamChannelMessageReplyHostedContent' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/channels/{}/messages/{}/replies/{}/hostedcontents/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamChannelMessageReplyHostedContent", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/replies/{param}/hostedContents/{param} and 'Get-MgUserJoinedTeamChannelMessageReplyHostedContent' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/channels/{}/messages/{}/replies/{}/hostedcontents/{}/$value", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamChannelMessageReplyHostedContentContent", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/replies/{param}/hostedContents/{param}/$value and 'Get-MgUserJoinedTeamChannelMessageReplyHostedContentContent' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/channels/{}/messages/{}/replies/{}/hostedcontents/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamChannelMessageReplyHostedContentCount", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/replies/{param}/hostedContents/$count and 'Get-MgUserJoinedTeamChannelMessageReplyHostedContentCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/channels/{}/messages/{}/replies/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamChannelMessageReplyCount", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/replies/$count and 'Get-MgUserJoinedTeamChannelMessageReplyCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/channels/{}/messages/{}/replies/delta", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamChannelMessageReplyDelta", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/replies/delta and 'Get-MgUserJoinedTeamChannelMessageReplyDelta' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/channels/{}/messages/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamChannelMessageCount", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/channels/{param}/messages/$count and 'Get-MgUserJoinedTeamChannelMessageCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/channels/{}/messages/delta", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamChannelMessageDelta", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/channels/{param}/messages/delta and 'Get-MgUserJoinedTeamChannelMessageDelta' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/channels/{}/sharedwithteams", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamChannelSharedWithTeam", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/channels/{param}/sharedWithTeams and 'Get-MgUserJoinedTeamChannelSharedWithTeam' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/channels/{}/sharedwithteams/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamChannelSharedWithTeam", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/channels/{param}/sharedWithTeams/{param} and 'Get-MgUserJoinedTeamChannelSharedWithTeam' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/channels/{}/sharedwithteams/{}/allowedmembers", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamChannelSharedWithTeamAllowedMember", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/channels/{param}/sharedWithTeams/{param}/allowedMembers and 'Get-MgUserJoinedTeamChannelSharedWithTeamAllowedMember' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/channels/{}/sharedwithteams/{}/allowedmembers/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamChannelSharedWithTeamAllowedMember", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/channels/{param}/sharedWithTeams/{param}/allowedMembers/{param} and 'Get-MgUserJoinedTeamChannelSharedWithTeamAllowedMember' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/channels/{}/sharedwithteams/{}/allowedmembers/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamChannelSharedWithTeamAllowedMemberCount", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/channels/{param}/sharedWithTeams/{param}/allowedMembers/$count and 'Get-MgUserJoinedTeamChannelSharedWithTeamAllowedMemberCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/channels/{}/sharedwithteams/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamChannelSharedWithTeamCount", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/channels/{param}/sharedWithTeams/$count and 'Get-MgUserJoinedTeamChannelSharedWithTeamCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/channels/{}/tabs", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamChannelTab", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/channels/{param}/tabs and 'Get-MgUserJoinedTeamChannelTab' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/channels/{}/tabs/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamChannelTab", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/channels/{param}/tabs/{param} and 'Get-MgUserJoinedTeamChannelTab' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/channels/{}/tabs/{}/teamsapp", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamChannelTabTeamApp", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/channels/{param}/tabs/{param}/teamsApp and 'Get-MgUserJoinedTeamChannelTabTeamApp' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/channels/{}/tabs/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamChannelTabCount", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/channels/{param}/tabs/$count and 'Get-MgUserJoinedTeamChannelTabCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/channels/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamChannelCount", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/channels/$count and 'Get-MgUserJoinedTeamChannelCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/channels/getallmessages", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamChannelGetAllMessages", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/channels/getAllMessages and 'Get-MgUserJoinedTeamChannelGetAllMessages' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/channels/getallretainedmessages", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamChannelGetAllRetainedMessages", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/channels/getAllRetainedMessages and 'Get-MgUserJoinedTeamChannelGetAllRetainedMessages' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/group", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamGroup", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/group and 'Get-MgUserJoinedTeamGroup' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/group/serviceprovisioningerrors", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamGroupServiceProvisioningError", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/group/serviceProvisioningErrors and 'Get-MgUserJoinedTeamGroupServiceProvisioningError' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/group/serviceprovisioningerrors/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamGroupServiceProvisioningErrorCount", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/group/serviceProvisioningErrors/$count and 'Get-MgUserJoinedTeamGroupServiceProvisioningErrorCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/incomingchannels", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamIncomingChannel", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/incomingChannels and 'Get-MgUserJoinedTeamIncomingChannel' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/incomingchannels/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamIncomingChannel", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/incomingChannels/{param} and 'Get-MgUserJoinedTeamIncomingChannel' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/incomingchannels/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamIncomingChannelCount", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/incomingChannels/$count and 'Get-MgUserJoinedTeamIncomingChannelCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/installedapps", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamInstalledApp", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/installedApps and 'Get-MgUserJoinedTeamInstalledApp' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/installedapps/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamInstalledApp", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/installedApps/{param} and 'Get-MgUserJoinedTeamInstalledApp' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/installedapps/{}/teamsapp", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamInstalledAppTeamApp", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/installedApps/{param}/teamsApp and 'Get-MgUserJoinedTeamInstalledAppTeamApp' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/installedapps/{}/teamsappdefinition", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamInstalledAppTeamAppDefinition", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/installedApps/{param}/teamsAppDefinition and 'Get-MgUserJoinedTeamInstalledAppTeamAppDefinition' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/installedapps/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamInstalledAppCount", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/installedApps/$count and 'Get-MgUserJoinedTeamInstalledAppCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/members", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamMember", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/members and 'Get-MgUserJoinedTeamMember' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/members/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamMember", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/members/{param} and 'Get-MgUserJoinedTeamMember' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/members/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamMemberCount", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/members/$count and 'Get-MgUserJoinedTeamMemberCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/operations", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamOperation", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/operations and 'Get-MgUserJoinedTeamOperation' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/operations/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamOperation", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/operations/{param} and 'Get-MgUserJoinedTeamOperation' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/operations/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamOperationCount", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/operations/$count and 'Get-MgUserJoinedTeamOperationCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/permissiongrants", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamPermissionGrant", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/permissionGrants and 'Get-MgUserJoinedTeamPermissionGrant' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/permissiongrants/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamPermissionGrant", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/permissionGrants/{param} and 'Get-MgUserJoinedTeamPermissionGrant' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/permissiongrants/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamPermissionGrantCount", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/permissionGrants/$count and 'Get-MgUserJoinedTeamPermissionGrantCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/photo", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamPhoto", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/photo and 'Get-MgUserJoinedTeamPhoto' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/photo/$value", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamPhotoContent", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/photo/$value and 'Get-MgUserJoinedTeamPhotoContent' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/primarychannel", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamPrimaryChannel", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/primaryChannel and 'Get-MgUserJoinedTeamPrimaryChannel' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/primarychannel/allmembers", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamPrimaryChannelAllMember", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/primaryChannel/allMembers and 'Get-MgUserJoinedTeamPrimaryChannelAllMember' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/primarychannel/allmembers/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamPrimaryChannelAllMember", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/primaryChannel/allMembers/{param} and 'Get-MgUserJoinedTeamPrimaryChannelAllMember' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/primarychannel/allmembers/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamPrimaryChannelAllMemberCount", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/primaryChannel/allMembers/$count and 'Get-MgUserJoinedTeamPrimaryChannelAllMemberCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/primarychannel/enabledapps", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamPrimaryChannelEnabledApp", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/primaryChannel/enabledApps and 'Get-MgUserJoinedTeamPrimaryChannelEnabledApp' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/primarychannel/enabledapps/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamPrimaryChannelEnabledApp", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/primaryChannel/enabledApps/{param} and 'Get-MgUserJoinedTeamPrimaryChannelEnabledApp' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/primarychannel/enabledapps/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamPrimaryChannelEnabledAppCount", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/primaryChannel/enabledApps/$count and 'Get-MgUserJoinedTeamPrimaryChannelEnabledAppCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/primarychannel/filesfolder", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamPrimaryChannelFileFolder", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/primaryChannel/filesFolder and 'Get-MgUserJoinedTeamPrimaryChannelFileFolder' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/primarychannel/members", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamPrimaryChannelMember", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/primaryChannel/members and 'Get-MgUserJoinedTeamPrimaryChannelMember' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/primarychannel/members/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamPrimaryChannelMember", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/primaryChannel/members/{param} and 'Get-MgUserJoinedTeamPrimaryChannelMember' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/primarychannel/members/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamPrimaryChannelMemberCount", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/primaryChannel/members/$count and 'Get-MgUserJoinedTeamPrimaryChannelMemberCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/primarychannel/messages", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamPrimaryChannelMessage", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/primaryChannel/messages and 'Get-MgUserJoinedTeamPrimaryChannelMessage' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/primarychannel/messages/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamPrimaryChannelMessage", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/primaryChannel/messages/{param} and 'Get-MgUserJoinedTeamPrimaryChannelMessage' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/primarychannel/messages/{}/hostedcontents", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamPrimaryChannelMessageHostedContent", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/hostedContents and 'Get-MgUserJoinedTeamPrimaryChannelMessageHostedContent' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/primarychannel/messages/{}/hostedcontents/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamPrimaryChannelMessageHostedContent", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/hostedContents/{param} and 'Get-MgUserJoinedTeamPrimaryChannelMessageHostedContent' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/primarychannel/messages/{}/hostedcontents/{}/$value", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamPrimaryChannelMessageHostedContentContent", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/hostedContents/{param}/$value and 'Get-MgUserJoinedTeamPrimaryChannelMessageHostedContentContent' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/primarychannel/messages/{}/hostedcontents/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamPrimaryChannelMessageHostedContentCount", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/hostedContents/$count and 'Get-MgUserJoinedTeamPrimaryChannelMessageHostedContentCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/primarychannel/messages/{}/replies", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamPrimaryChannelMessageReply", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/replies and 'Get-MgUserJoinedTeamPrimaryChannelMessageReply' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/primarychannel/messages/{}/replies/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamPrimaryChannelMessageReply", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/replies/{param} and 'Get-MgUserJoinedTeamPrimaryChannelMessageReply' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/primarychannel/messages/{}/replies/{}/hostedcontents", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamPrimaryChannelMessageReplyHostedContent", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/replies/{param}/hostedContents and 'Get-MgUserJoinedTeamPrimaryChannelMessageReplyHostedContent' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/primarychannel/messages/{}/replies/{}/hostedcontents/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamPrimaryChannelMessageReplyHostedContent", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/replies/{param}/hostedContents/{param} and 'Get-MgUserJoinedTeamPrimaryChannelMessageReplyHostedContent' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/primarychannel/messages/{}/replies/{}/hostedcontents/{}/$value", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamPrimaryChannelMessageReplyHostedContentContent", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/replies/{param}/hostedContents/{param}/$value and 'Get-MgUserJoinedTeamPrimaryChannelMessageReplyHostedContentContent' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/primarychannel/messages/{}/replies/{}/hostedcontents/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamPrimaryChannelMessageReplyHostedContentCount", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/replies/{param}/hostedContents/$count and 'Get-MgUserJoinedTeamPrimaryChannelMessageReplyHostedContentCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/primarychannel/messages/{}/replies/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamPrimaryChannelMessageReplyCount", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/replies/$count and 'Get-MgUserJoinedTeamPrimaryChannelMessageReplyCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/primarychannel/messages/{}/replies/delta", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamPrimaryChannelMessageReplyDelta", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/replies/delta and 'Get-MgUserJoinedTeamPrimaryChannelMessageReplyDelta' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/primarychannel/messages/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamPrimaryChannelMessageCount", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/primaryChannel/messages/$count and 'Get-MgUserJoinedTeamPrimaryChannelMessageCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/primarychannel/messages/delta", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamPrimaryChannelMessageDelta", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/primaryChannel/messages/delta and 'Get-MgUserJoinedTeamPrimaryChannelMessageDelta' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/primarychannel/sharedwithteams", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamPrimaryChannelSharedWithTeam", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/primaryChannel/sharedWithTeams and 'Get-MgUserJoinedTeamPrimaryChannelSharedWithTeam' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/primarychannel/sharedwithteams/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamPrimaryChannelSharedWithTeam", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/primaryChannel/sharedWithTeams/{param} and 'Get-MgUserJoinedTeamPrimaryChannelSharedWithTeam' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/primarychannel/sharedwithteams/{}/allowedmembers", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamPrimaryChannelSharedWithTeamAllowedMember", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/primaryChannel/sharedWithTeams/{param}/allowedMembers and 'Get-MgUserJoinedTeamPrimaryChannelSharedWithTeamAllowedMember' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/primarychannel/sharedwithteams/{}/allowedmembers/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamPrimaryChannelSharedWithTeamAllowedMember", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/primaryChannel/sharedWithTeams/{param}/allowedMembers/{param} and 'Get-MgUserJoinedTeamPrimaryChannelSharedWithTeamAllowedMember' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/primarychannel/sharedwithteams/{}/allowedmembers/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamPrimaryChannelSharedWithTeamAllowedMemberCount", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/primaryChannel/sharedWithTeams/{param}/allowedMembers/$count and 'Get-MgUserJoinedTeamPrimaryChannelSharedWithTeamAllowedMemberCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/primarychannel/sharedwithteams/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamPrimaryChannelSharedWithTeamCount", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/primaryChannel/sharedWithTeams/$count and 'Get-MgUserJoinedTeamPrimaryChannelSharedWithTeamCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/primarychannel/tabs", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamPrimaryChannelTab", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/primaryChannel/tabs and 'Get-MgUserJoinedTeamPrimaryChannelTab' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/primarychannel/tabs/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamPrimaryChannelTab", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/primaryChannel/tabs/{param} and 'Get-MgUserJoinedTeamPrimaryChannelTab' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/primarychannel/tabs/{}/teamsapp", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamPrimaryChannelTabTeamApp", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/primaryChannel/tabs/{param}/teamsApp and 'Get-MgUserJoinedTeamPrimaryChannelTabTeamApp' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/primarychannel/tabs/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamPrimaryChannelTabCount", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/primaryChannel/tabs/$count and 'Get-MgUserJoinedTeamPrimaryChannelTabCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/schedule", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamSchedule", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/schedule and 'Get-MgUserJoinedTeamSchedule' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/schedule/daynotes", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamScheduleDayNote", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/schedule/dayNotes and 'Get-MgUserJoinedTeamScheduleDayNote' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/schedule/daynotes/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamScheduleDayNote", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/schedule/dayNotes/{param} and 'Get-MgUserJoinedTeamScheduleDayNote' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/schedule/daynotes/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamScheduleDayNoteCount", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/schedule/dayNotes/$count and 'Get-MgUserJoinedTeamScheduleDayNoteCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/schedule/offershiftrequests", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamScheduleOfferShiftRequest", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/schedule/offerShiftRequests and 'Get-MgUserJoinedTeamScheduleOfferShiftRequest' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/schedule/offershiftrequests/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamScheduleOfferShiftRequest", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/schedule/offerShiftRequests/{param} and 'Get-MgUserJoinedTeamScheduleOfferShiftRequest' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/schedule/offershiftrequests/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamScheduleOfferShiftRequestCount", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/schedule/offerShiftRequests/$count and 'Get-MgUserJoinedTeamScheduleOfferShiftRequestCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/schedule/openshiftchangerequests", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamScheduleOpenShiftChangeRequest", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/schedule/openShiftChangeRequests and 'Get-MgUserJoinedTeamScheduleOpenShiftChangeRequest' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/schedule/openshiftchangerequests/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamScheduleOpenShiftChangeRequest", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/schedule/openShiftChangeRequests/{param} and 'Get-MgUserJoinedTeamScheduleOpenShiftChangeRequest' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/schedule/openshiftchangerequests/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamScheduleOpenShiftChangeRequestCount", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/schedule/openShiftChangeRequests/$count and 'Get-MgUserJoinedTeamScheduleOpenShiftChangeRequestCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/schedule/openshifts", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamScheduleOpenShift", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/schedule/openShifts and 'Get-MgUserJoinedTeamScheduleOpenShift' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/schedule/openshifts/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamScheduleOpenShift", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/schedule/openShifts/{param} and 'Get-MgUserJoinedTeamScheduleOpenShift' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/schedule/openshifts/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamScheduleOpenShiftCount", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/schedule/openShifts/$count and 'Get-MgUserJoinedTeamScheduleOpenShiftCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/schedule/schedulinggroups", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamScheduleSchedulingGroup", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/schedule/schedulingGroups and 'Get-MgUserJoinedTeamScheduleSchedulingGroup' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/schedule/schedulinggroups/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamScheduleSchedulingGroup", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/schedule/schedulingGroups/{param} and 'Get-MgUserJoinedTeamScheduleSchedulingGroup' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/schedule/schedulinggroups/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamScheduleSchedulingGroupCount", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/schedule/schedulingGroups/$count and 'Get-MgUserJoinedTeamScheduleSchedulingGroupCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/schedule/shifts", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamScheduleShift", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/schedule/shifts and 'Get-MgUserJoinedTeamScheduleShift' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/schedule/shifts/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamScheduleShift", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/schedule/shifts/{param} and 'Get-MgUserJoinedTeamScheduleShift' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/schedule/shifts/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamScheduleShiftCount", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/schedule/shifts/$count and 'Get-MgUserJoinedTeamScheduleShiftCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/schedule/swapshiftschangerequests", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamScheduleSwapShiftChangeRequest", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/schedule/swapShiftsChangeRequests and 'Get-MgUserJoinedTeamScheduleSwapShiftChangeRequest' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/schedule/swapshiftschangerequests/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamScheduleSwapShiftChangeRequest", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/schedule/swapShiftsChangeRequests/{param} and 'Get-MgUserJoinedTeamScheduleSwapShiftChangeRequest' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/schedule/swapshiftschangerequests/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamScheduleSwapShiftChangeRequestCount", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/schedule/swapShiftsChangeRequests/$count and 'Get-MgUserJoinedTeamScheduleSwapShiftChangeRequestCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/schedule/timecards", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamScheduleTimeCard", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/schedule/timeCards and 'Get-MgUserJoinedTeamScheduleTimeCard' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/schedule/timecards/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamScheduleTimeCard", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/schedule/timeCards/{param} and 'Get-MgUserJoinedTeamScheduleTimeCard' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/schedule/timecards/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamScheduleTimeCardCount", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/schedule/timeCards/$count and 'Get-MgUserJoinedTeamScheduleTimeCardCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/schedule/timeoffreasons", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamScheduleTimeOffReason", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/schedule/timeOffReasons and 'Get-MgUserJoinedTeamScheduleTimeOffReason' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/schedule/timeoffreasons/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamScheduleTimeOffReason", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/schedule/timeOffReasons/{param} and 'Get-MgUserJoinedTeamScheduleTimeOffReason' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/schedule/timeoffreasons/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamScheduleTimeOffReasonCount", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/schedule/timeOffReasons/$count and 'Get-MgUserJoinedTeamScheduleTimeOffReasonCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/schedule/timeoffrequests", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamScheduleTimeOffRequest", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/schedule/timeOffRequests and 'Get-MgUserJoinedTeamScheduleTimeOffRequest' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/schedule/timeoffrequests/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamScheduleTimeOffRequest", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/schedule/timeOffRequests/{param} and 'Get-MgUserJoinedTeamScheduleTimeOffRequest' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/schedule/timeoffrequests/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamScheduleTimeOffRequestCount", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/schedule/timeOffRequests/$count and 'Get-MgUserJoinedTeamScheduleTimeOffRequestCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/schedule/timesoff", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamScheduleTimeOff", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/schedule/timesOff and 'Get-MgUserJoinedTeamScheduleTimeOff' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/schedule/timesoff/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamScheduleTimeOff", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/schedule/timesOff/{param} and 'Get-MgUserJoinedTeamScheduleTimeOff' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/schedule/timesoff/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamScheduleTimeOffCount", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/schedule/timesOff/$count and 'Get-MgUserJoinedTeamScheduleTimeOffCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/tags", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamTag", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/tags and 'Get-MgUserJoinedTeamTag' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/tags/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamTag", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/tags/{param} and 'Get-MgUserJoinedTeamTag' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/tags/{}/members", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamTagMember", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/tags/{param}/members and 'Get-MgUserJoinedTeamTagMember' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/tags/{}/members/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamTagMember", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/tags/{param}/members/{param} and 'Get-MgUserJoinedTeamTagMember' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/tags/{}/members/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamTagMemberCount", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/tags/{param}/members/$count and 'Get-MgUserJoinedTeamTagMemberCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/tags/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamTagCount", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/tags/$count and 'Get-MgUserJoinedTeamTagCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/{}/template", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamTemplate", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/{param}/template and 'Get-MgUserJoinedTeamTemplate' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamCount", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/$count and 'Get-MgUserJoinedTeamCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/joinedteams/getallmessages", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserJoinedTeamGetAllMessages", + "oracle": "no oracle row for GET /users/{param}/joinedTeams/getAllMessages and 'Get-MgUserJoinedTeamGetAllMessages' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/mailfolders/{}/messages/{}/$value", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserMailFolderMessageContent", + "oracle": "no oracle row for GET /users/{param}/mailFolders/{param}/messages/{param}/$value and 'Get-MgUserMailFolderMessageContent' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/outlook", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserOutlook", + "oracle": "no oracle row for GET /users/{param}/outlook and 'Get-MgUserOutlook' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/planner/plans/{}/buckets", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserPlannerPlanBucket", + "oracle": "no oracle row for GET /users/{param}/planner/plans/{param}/buckets and 'Get-MgUserPlannerPlanBucket' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/planner/plans/{}/buckets/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserPlannerPlanBucket", + "oracle": "no oracle row for GET /users/{param}/planner/plans/{param}/buckets/{param} and 'Get-MgUserPlannerPlanBucket' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/planner/plans/{}/buckets/{}/tasks", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserPlannerPlanBucketTask", + "oracle": "no oracle row for GET /users/{param}/planner/plans/{param}/buckets/{param}/tasks and 'Get-MgUserPlannerPlanBucketTask' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/planner/plans/{}/buckets/{}/tasks/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserPlannerPlanBucketTask", + "oracle": "no oracle row for GET /users/{param}/planner/plans/{param}/buckets/{param}/tasks/{param} and 'Get-MgUserPlannerPlanBucketTask' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/planner/plans/{}/buckets/{}/tasks/{}/assignedtotaskboardformat", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserPlannerPlanBucketTaskAssignedToTaskBoardFormat", + "oracle": "no oracle row for GET /users/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/assignedToTaskBoardFormat and 'Get-MgUserPlannerPlanBucketTaskAssignedToTaskBoardFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/planner/plans/{}/buckets/{}/tasks/{}/buckettaskboardformat", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserPlannerPlanBucketTaskBucketTaskBoardFormat", + "oracle": "no oracle row for GET /users/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/bucketTaskBoardFormat and 'Get-MgUserPlannerPlanBucketTaskBucketTaskBoardFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/planner/plans/{}/buckets/{}/tasks/{}/details", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserPlannerPlanBucketTaskDetail", + "oracle": "no oracle row for GET /users/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/details and 'Get-MgUserPlannerPlanBucketTaskDetail' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/planner/plans/{}/buckets/{}/tasks/{}/progresstaskboardformat", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserPlannerPlanBucketTaskProgressTaskBoardFormat", + "oracle": "no oracle row for GET /users/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/progressTaskBoardFormat and 'Get-MgUserPlannerPlanBucketTaskProgressTaskBoardFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/planner/plans/{}/buckets/{}/tasks/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserPlannerPlanBucketTaskCount", + "oracle": "no oracle row for GET /users/{param}/planner/plans/{param}/buckets/{param}/tasks/$count and 'Get-MgUserPlannerPlanBucketTaskCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/planner/plans/{}/buckets/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserPlannerPlanBucketCount", + "oracle": "no oracle row for GET /users/{param}/planner/plans/{param}/buckets/$count and 'Get-MgUserPlannerPlanBucketCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/planner/plans/{}/details", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserPlannerPlanDetail", + "oracle": "no oracle row for GET /users/{param}/planner/plans/{param}/details and 'Get-MgUserPlannerPlanDetail' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/planner/plans/{}/tasks", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserPlannerPlanTask", + "oracle": "no oracle row for GET /users/{param}/planner/plans/{param}/tasks and 'Get-MgUserPlannerPlanTask' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/planner/plans/{}/tasks/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserPlannerPlanTask", + "oracle": "no oracle row for GET /users/{param}/planner/plans/{param}/tasks/{param} and 'Get-MgUserPlannerPlanTask' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/planner/plans/{}/tasks/{}/assignedtotaskboardformat", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserPlannerPlanTaskAssignedToTaskBoardFormat", + "oracle": "no oracle row for GET /users/{param}/planner/plans/{param}/tasks/{param}/assignedToTaskBoardFormat and 'Get-MgUserPlannerPlanTaskAssignedToTaskBoardFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/planner/plans/{}/tasks/{}/buckettaskboardformat", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserPlannerPlanTaskBucketTaskBoardFormat", + "oracle": "no oracle row for GET /users/{param}/planner/plans/{param}/tasks/{param}/bucketTaskBoardFormat and 'Get-MgUserPlannerPlanTaskBucketTaskBoardFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/planner/plans/{}/tasks/{}/details", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserPlannerPlanTaskDetail", + "oracle": "no oracle row for GET /users/{param}/planner/plans/{param}/tasks/{param}/details and 'Get-MgUserPlannerPlanTaskDetail' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/planner/plans/{}/tasks/{}/progresstaskboardformat", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserPlannerPlanTaskProgressTaskBoardFormat", + "oracle": "no oracle row for GET /users/{param}/planner/plans/{param}/tasks/{param}/progressTaskBoardFormat and 'Get-MgUserPlannerPlanTaskProgressTaskBoardFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/planner/plans/{}/tasks/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserPlannerPlanTaskCount", + "oracle": "no oracle row for GET /users/{param}/planner/plans/{param}/tasks/$count and 'Get-MgUserPlannerPlanTaskCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/planner/plans/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserPlannerPlanCount", + "oracle": "no oracle row for GET /users/{param}/planner/plans/$count and 'Get-MgUserPlannerPlanCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/planner/tasks/{}/assignedtotaskboardformat", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserPlannerTaskAssignedToTaskBoardFormat", + "oracle": "no oracle row for GET /users/{param}/planner/tasks/{param}/assignedToTaskBoardFormat and 'Get-MgUserPlannerTaskAssignedToTaskBoardFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/planner/tasks/{}/buckettaskboardformat", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserPlannerTaskBucketTaskBoardFormat", + "oracle": "no oracle row for GET /users/{param}/planner/tasks/{param}/bucketTaskBoardFormat and 'Get-MgUserPlannerTaskBucketTaskBoardFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/planner/tasks/{}/details", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserPlannerTaskDetail", + "oracle": "no oracle row for GET /users/{param}/planner/tasks/{param}/details and 'Get-MgUserPlannerTaskDetail' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/planner/tasks/{}/progresstaskboardformat", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserPlannerTaskProgressTaskBoardFormat", + "oracle": "no oracle row for GET /users/{param}/planner/tasks/{param}/progressTaskBoardFormat and 'Get-MgUserPlannerTaskProgressTaskBoardFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/planner/tasks/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserPlannerTaskCount", + "oracle": "no oracle row for GET /users/{param}/planner/tasks/$count and 'Get-MgUserPlannerTaskCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "GET", + "uri": "/users/{}/todo", + "action": "suppress", + "evidence": { + "ourCommand": "Get-MgUserTodo", + "oracle": "no oracle row for GET /users/{param}/todo and 'Get-MgUserTodo' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/admin/serviceannouncement", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgAdminServiceAnnouncement", + "oracle": "no oracle row for PATCH /admin/serviceAnnouncement and 'Update-MgAdminServiceAnnouncement' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/admin/serviceannouncement/healthoverviews/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgAdminServiceAnnouncementHealthOverview", + "oracle": "no oracle row for PATCH /admin/serviceAnnouncement/healthOverviews/{param} and 'Update-MgAdminServiceAnnouncementHealthOverview' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/admin/serviceannouncement/healthoverviews/{}/issues/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgAdminServiceAnnouncementHealthOverviewIssue", + "oracle": "no oracle row for PATCH /admin/serviceAnnouncement/healthOverviews/{param}/issues/{param} and 'Update-MgAdminServiceAnnouncementHealthOverviewIssue' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/admin/serviceannouncement/issues/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgAdminServiceAnnouncementIssue", + "oracle": "no oracle row for PATCH /admin/serviceAnnouncement/issues/{param} and 'Update-MgAdminServiceAnnouncementIssue' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/admin/serviceannouncement/messages/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgAdminServiceAnnouncementMessage", + "oracle": "no oracle row for PATCH /admin/serviceAnnouncement/messages/{param} and 'Update-MgAdminServiceAnnouncementMessage' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/admin/serviceannouncement/messages/{}/attachments/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgAdminServiceAnnouncementMessageAttachment", + "oracle": "no oracle row for PATCH /admin/serviceAnnouncement/messages/{param}/attachments/{param} and 'Update-MgAdminServiceAnnouncementMessageAttachment' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/auditlogs", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgAuditLog", + "oracle": "no oracle row for PATCH /auditLogs and 'Update-MgAuditLog' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/auditlogs/directoryaudits/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgAuditLogDirectoryAudit", + "oracle": "no oracle row for PATCH /auditLogs/directoryAudits/{param} and 'Update-MgAuditLogDirectoryAudit' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/auditlogs/provisioning/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgAuditLogProvisioning", + "oracle": "no oracle row for PATCH /auditLogs/provisioning/{param} and 'Update-MgAuditLogProvisioning' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/auditlogs/signins/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgAuditLogSignIn", + "oracle": "no oracle row for PATCH /auditLogs/signIns/{param} and 'Update-MgAuditLogSignIn' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/chats/{}/installedapps/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgChatInstalledApp", + "oracle": "no oracle row; 'Update-MgChatInstalledApp' ships from sibling family (see rename entries for this noun)" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/chats/{}/messages/{}/hostedcontents/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgChatMessageHostedContent", + "oracle": "no oracle row for PATCH /chats/{param}/messages/{param}/hostedContents/{param} and 'Update-MgChatMessageHostedContent' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/communications", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgCommunication", + "oracle": "no oracle row for PATCH /communications and 'Update-MgCommunication' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/communications/callrecords/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgCommunicationCallRecord", + "oracle": "no oracle row for PATCH /communications/callRecords/{param} and 'Update-MgCommunicationCallRecord' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/communications/callrecords/{}/sessions/{}/segments/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgCommunicationCallRecordSessionSegment", + "oracle": "no oracle row for PATCH /communications/callRecords/{param}/sessions/{param}/segments/{param} and 'Update-MgCommunicationCallRecordSessionSegment' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/communications/calls/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgCommunicationCall", + "oracle": "no oracle row for PATCH /communications/calls/{param} and 'Update-MgCommunicationCall' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/devicemanagement/reports/exportjobs/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgDeviceManagementReportExportJob", + "oracle": "no oracle row for PATCH /deviceManagement/reports/exportJobs/{param} and 'Update-MgDeviceManagementReportExportJob' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/devicemanagement/virtualendpoint", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgDeviceManagementVirtualEndpoint", + "oracle": "no oracle row for PATCH /deviceManagement/virtualEndpoint and 'Update-MgDeviceManagementVirtualEndpoint' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/devicemanagement/virtualendpoint/auditevents/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgDeviceManagementVirtualEndpointAuditEvent", + "oracle": "no oracle row for PATCH /deviceManagement/virtualEndpoint/auditEvents/{param} and 'Update-MgDeviceManagementVirtualEndpointAuditEvent' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/devicemanagement/virtualendpoint/cloudpcs/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgDeviceManagementVirtualEndpointCloudPCs", + "oracle": "no oracle row for PATCH /deviceManagement/virtualEndpoint/cloudPCs/{param} and 'Update-MgDeviceManagementVirtualEndpointCloudPCs' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/devicemanagement/windowsautopilotdeviceidentities/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgDeviceManagementWindowsAutopilotDeviceIdentity", + "oracle": "no oracle row for PATCH /deviceManagement/windowsAutopilotDeviceIdentities/{param} and 'Update-MgDeviceManagementWindowsAutopilotDeviceIdentity' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/drives/{}/items/{}/analytics/itemactivitystats/{}/activities/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgDriveItemAnalyticItemActivityStatActivity", + "oracle": "no oracle row for PATCH /drives/{param}/items/{param}/analytics/itemActivityStats/{param}/activities/{param} and 'Update-MgDriveItemAnalyticItemActivityStatActivity' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/drives/{}/items/{}/workbook", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgDriveItemWorkbook", + "oracle": "no oracle row for PATCH /drives/{param}/items/{param}/workbook and 'Update-MgDriveItemWorkbook' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/drives/{}/items/{}/workbook/application", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgDriveItemWorkbookApplication", + "oracle": "no oracle row for PATCH /drives/{param}/items/{param}/workbook/application and 'Update-MgDriveItemWorkbookApplication' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/drives/{}/items/{}/workbook/comments/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgDriveItemWorkbookComment", + "oracle": "no oracle row for PATCH /drives/{param}/items/{param}/workbook/comments/{param} and 'Update-MgDriveItemWorkbookComment' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/drives/{}/items/{}/workbook/comments/{}/replies/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgDriveItemWorkbookCommentReply", + "oracle": "no oracle row for PATCH /drives/{param}/items/{param}/workbook/comments/{param}/replies/{param} and 'Update-MgDriveItemWorkbookCommentReply' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/drives/{}/items/{}/workbook/functions", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgDriveItemWorkbookFunction", + "oracle": "no oracle row for PATCH /drives/{param}/items/{param}/workbook/functions and 'Update-MgDriveItemWorkbookFunction' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/drives/{}/items/{}/workbook/names/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgDriveItemWorkbookName", + "oracle": "no oracle row for PATCH /drives/{param}/items/{param}/workbook/names/{param} and 'Update-MgDriveItemWorkbookName' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/drives/{}/items/{}/workbook/operations/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgDriveItemWorkbookOperation", + "oracle": "no oracle row for PATCH /drives/{param}/items/{param}/workbook/operations/{param} and 'Update-MgDriveItemWorkbookOperation' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/drives/{}/items/{}/workbook/tables/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgDriveItemWorkbookTable", + "oracle": "no oracle row for PATCH /drives/{param}/items/{param}/workbook/tables/{param} and 'Update-MgDriveItemWorkbookTable' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgDriveItemWorkbookTableColumn", + "oracle": "no oracle row for PATCH /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param} and 'Update-MgDriveItemWorkbookTableColumn' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/filter", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgDriveItemWorkbookTableColumnFilter", + "oracle": "no oracle row for PATCH /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/filter and 'Update-MgDriveItemWorkbookTableColumnFilter' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/drives/{}/items/{}/workbook/tables/{}/rows/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgDriveItemWorkbookTableRow", + "oracle": "no oracle row for PATCH /drives/{param}/items/{param}/workbook/tables/{param}/rows/{param} and 'Update-MgDriveItemWorkbookTableRow' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/drives/{}/items/{}/workbook/tables/{}/sort", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgDriveItemWorkbookTableSort", + "oracle": "no oracle row for PATCH /drives/{param}/items/{param}/workbook/tables/{param}/sort and 'Update-MgDriveItemWorkbookTableSort' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgDriveItemWorkbookWorksheet", + "oracle": "no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param} and 'Update-MgDriveItemWorkbookWorksheet' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgDriveItemWorkbookWorksheetChart", + "oracle": "no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param} and 'Update-MgDriveItemWorkbookWorksheetChart' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgDriveItemWorkbookWorksheetChartAx", + "oracle": "no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes and 'Update-MgDriveItemWorkbookWorksheetChartAx' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/categoryaxis", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgDriveItemWorkbookWorksheetChartAxCategoryAxis", + "oracle": "no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis and 'Update-MgDriveItemWorkbookWorksheetChartAxCategoryAxis' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/categoryaxis/format", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgDriveItemWorkbookWorksheetChartAxCategoryAxisFormat", + "oracle": "no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/format and 'Update-MgDriveItemWorkbookWorksheetChartAxCategoryAxisFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/categoryaxis/format/font", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgDriveItemWorkbookWorksheetChartAxCategoryAxisFormatFont", + "oracle": "no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/format/font and 'Update-MgDriveItemWorkbookWorksheetChartAxCategoryAxisFormatFont' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/categoryaxis/format/line", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgDriveItemWorkbookWorksheetChartAxCategoryAxisFormatLine", + "oracle": "no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/format/line and 'Update-MgDriveItemWorkbookWorksheetChartAxCategoryAxisFormatLine' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/categoryaxis/majorgridlines", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMajorGridline", + "oracle": "no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/majorGridlines and 'Update-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMajorGridline' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/categoryaxis/majorgridlines/format", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMajorGridlineFormat", + "oracle": "no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/majorGridlines/format and 'Update-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMajorGridlineFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/categoryaxis/majorgridlines/format/line", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMajorGridlineFormatLine", + "oracle": "no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/majorGridlines/format/line and 'Update-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMajorGridlineFormatLine' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/categoryaxis/minorgridlines", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMinorGridline", + "oracle": "no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/minorGridlines and 'Update-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMinorGridline' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/categoryaxis/minorgridlines/format", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMinorGridlineFormat", + "oracle": "no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/minorGridlines/format and 'Update-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMinorGridlineFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/categoryaxis/minorgridlines/format/line", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMinorGridlineFormatLine", + "oracle": "no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/minorGridlines/format/line and 'Update-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMinorGridlineFormatLine' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/categoryaxis/title", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgDriveItemWorkbookWorksheetChartAxCategoryAxisTitle", + "oracle": "no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/title and 'Update-MgDriveItemWorkbookWorksheetChartAxCategoryAxisTitle' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/categoryaxis/title/format", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgDriveItemWorkbookWorksheetChartAxCategoryAxisTitleFormat", + "oracle": "no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/title/format and 'Update-MgDriveItemWorkbookWorksheetChartAxCategoryAxisTitleFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/categoryaxis/title/format/font", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgDriveItemWorkbookWorksheetChartAxCategoryAxisTitleFormatFont", + "oracle": "no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/title/format/font and 'Update-MgDriveItemWorkbookWorksheetChartAxCategoryAxisTitleFormatFont' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/seriesaxis", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgDriveItemWorkbookWorksheetChartAxSeryAxis", + "oracle": "no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis and 'Update-MgDriveItemWorkbookWorksheetChartAxSeryAxis' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/seriesaxis/format", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgDriveItemWorkbookWorksheetChartAxSeryAxisFormat", + "oracle": "no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/format and 'Update-MgDriveItemWorkbookWorksheetChartAxSeryAxisFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/seriesaxis/format/font", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgDriveItemWorkbookWorksheetChartAxSeryAxisFormatFont", + "oracle": "no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/format/font and 'Update-MgDriveItemWorkbookWorksheetChartAxSeryAxisFormatFont' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/seriesaxis/format/line", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgDriveItemWorkbookWorksheetChartAxSeryAxisFormatLine", + "oracle": "no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/format/line and 'Update-MgDriveItemWorkbookWorksheetChartAxSeryAxisFormatLine' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/seriesaxis/majorgridlines", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgDriveItemWorkbookWorksheetChartAxSeryAxisMajorGridline", + "oracle": "no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/majorGridlines and 'Update-MgDriveItemWorkbookWorksheetChartAxSeryAxisMajorGridline' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/seriesaxis/majorgridlines/format", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgDriveItemWorkbookWorksheetChartAxSeryAxisMajorGridlineFormat", + "oracle": "no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/majorGridlines/format and 'Update-MgDriveItemWorkbookWorksheetChartAxSeryAxisMajorGridlineFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/seriesaxis/majorgridlines/format/line", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgDriveItemWorkbookWorksheetChartAxSeryAxisMajorGridlineFormatLine", + "oracle": "no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/majorGridlines/format/line and 'Update-MgDriveItemWorkbookWorksheetChartAxSeryAxisMajorGridlineFormatLine' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/seriesaxis/minorgridlines", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgDriveItemWorkbookWorksheetChartAxSeryAxisMinorGridline", + "oracle": "no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/minorGridlines and 'Update-MgDriveItemWorkbookWorksheetChartAxSeryAxisMinorGridline' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/seriesaxis/minorgridlines/format", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgDriveItemWorkbookWorksheetChartAxSeryAxisMinorGridlineFormat", + "oracle": "no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/minorGridlines/format and 'Update-MgDriveItemWorkbookWorksheetChartAxSeryAxisMinorGridlineFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/seriesaxis/minorgridlines/format/line", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgDriveItemWorkbookWorksheetChartAxSeryAxisMinorGridlineFormatLine", + "oracle": "no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/minorGridlines/format/line and 'Update-MgDriveItemWorkbookWorksheetChartAxSeryAxisMinorGridlineFormatLine' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/seriesaxis/title", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgDriveItemWorkbookWorksheetChartAxSeryAxisTitle", + "oracle": "no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/title and 'Update-MgDriveItemWorkbookWorksheetChartAxSeryAxisTitle' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/seriesaxis/title/format", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgDriveItemWorkbookWorksheetChartAxSeryAxisTitleFormat", + "oracle": "no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/title/format and 'Update-MgDriveItemWorkbookWorksheetChartAxSeryAxisTitleFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/seriesaxis/title/format/font", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgDriveItemWorkbookWorksheetChartAxSeryAxisTitleFormatFont", + "oracle": "no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/title/format/font and 'Update-MgDriveItemWorkbookWorksheetChartAxSeryAxisTitleFormatFont' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/valueaxis", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgDriveItemWorkbookWorksheetChartAxValueAxis", + "oracle": "no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis and 'Update-MgDriveItemWorkbookWorksheetChartAxValueAxis' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/valueaxis/format", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgDriveItemWorkbookWorksheetChartAxValueAxisFormat", + "oracle": "no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/format and 'Update-MgDriveItemWorkbookWorksheetChartAxValueAxisFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/valueaxis/format/font", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgDriveItemWorkbookWorksheetChartAxValueAxisFormatFont", + "oracle": "no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/format/font and 'Update-MgDriveItemWorkbookWorksheetChartAxValueAxisFormatFont' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/valueaxis/format/line", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgDriveItemWorkbookWorksheetChartAxValueAxisFormatLine", + "oracle": "no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/format/line and 'Update-MgDriveItemWorkbookWorksheetChartAxValueAxisFormatLine' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/valueaxis/majorgridlines", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgDriveItemWorkbookWorksheetChartAxValueAxisMajorGridline", + "oracle": "no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/majorGridlines and 'Update-MgDriveItemWorkbookWorksheetChartAxValueAxisMajorGridline' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/valueaxis/majorgridlines/format", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgDriveItemWorkbookWorksheetChartAxValueAxisMajorGridlineFormat", + "oracle": "no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/majorGridlines/format and 'Update-MgDriveItemWorkbookWorksheetChartAxValueAxisMajorGridlineFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/valueaxis/majorgridlines/format/line", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgDriveItemWorkbookWorksheetChartAxValueAxisMajorGridlineFormatLine", + "oracle": "no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/majorGridlines/format/line and 'Update-MgDriveItemWorkbookWorksheetChartAxValueAxisMajorGridlineFormatLine' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/valueaxis/minorgridlines", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgDriveItemWorkbookWorksheetChartAxValueAxisMinorGridline", + "oracle": "no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/minorGridlines and 'Update-MgDriveItemWorkbookWorksheetChartAxValueAxisMinorGridline' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/valueaxis/minorgridlines/format", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgDriveItemWorkbookWorksheetChartAxValueAxisMinorGridlineFormat", + "oracle": "no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/minorGridlines/format and 'Update-MgDriveItemWorkbookWorksheetChartAxValueAxisMinorGridlineFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/valueaxis/minorgridlines/format/line", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgDriveItemWorkbookWorksheetChartAxValueAxisMinorGridlineFormatLine", + "oracle": "no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/minorGridlines/format/line and 'Update-MgDriveItemWorkbookWorksheetChartAxValueAxisMinorGridlineFormatLine' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/valueaxis/title", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgDriveItemWorkbookWorksheetChartAxValueAxisTitle", + "oracle": "no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/title and 'Update-MgDriveItemWorkbookWorksheetChartAxValueAxisTitle' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/valueaxis/title/format", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgDriveItemWorkbookWorksheetChartAxValueAxisTitleFormat", + "oracle": "no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/title/format and 'Update-MgDriveItemWorkbookWorksheetChartAxValueAxisTitleFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/valueaxis/title/format/font", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgDriveItemWorkbookWorksheetChartAxValueAxisTitleFormatFont", + "oracle": "no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/title/format/font and 'Update-MgDriveItemWorkbookWorksheetChartAxValueAxisTitleFormatFont' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/datalabels", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgDriveItemWorkbookWorksheetChartDataLabel", + "oracle": "no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/dataLabels and 'Update-MgDriveItemWorkbookWorksheetChartDataLabel' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/datalabels/format", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgDriveItemWorkbookWorksheetChartDataLabelFormat", + "oracle": "no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/dataLabels/format and 'Update-MgDriveItemWorkbookWorksheetChartDataLabelFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/datalabels/format/fill", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgDriveItemWorkbookWorksheetChartDataLabelFormatFill", + "oracle": "no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/dataLabels/format/fill and 'Update-MgDriveItemWorkbookWorksheetChartDataLabelFormatFill' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/datalabels/format/font", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgDriveItemWorkbookWorksheetChartDataLabelFormatFont", + "oracle": "no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/dataLabels/format/font and 'Update-MgDriveItemWorkbookWorksheetChartDataLabelFormatFont' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/format", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgDriveItemWorkbookWorksheetChartFormat", + "oracle": "no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/format and 'Update-MgDriveItemWorkbookWorksheetChartFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/format/fill", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgDriveItemWorkbookWorksheetChartFormatFill", + "oracle": "no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/format/fill and 'Update-MgDriveItemWorkbookWorksheetChartFormatFill' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/format/font", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgDriveItemWorkbookWorksheetChartFormatFont", + "oracle": "no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/format/font and 'Update-MgDriveItemWorkbookWorksheetChartFormatFont' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/legend", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgDriveItemWorkbookWorksheetChartLegend", + "oracle": "no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/legend and 'Update-MgDriveItemWorkbookWorksheetChartLegend' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/legend/format", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgDriveItemWorkbookWorksheetChartLegendFormat", + "oracle": "no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/legend/format and 'Update-MgDriveItemWorkbookWorksheetChartLegendFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/legend/format/fill", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgDriveItemWorkbookWorksheetChartLegendFormatFill", + "oracle": "no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/legend/format/fill and 'Update-MgDriveItemWorkbookWorksheetChartLegendFormatFill' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/legend/format/font", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgDriveItemWorkbookWorksheetChartLegendFormatFont", + "oracle": "no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/legend/format/font and 'Update-MgDriveItemWorkbookWorksheetChartLegendFormatFont' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/series/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgDriveItemWorkbookWorksheetChartSery", + "oracle": "no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param} and 'Update-MgDriveItemWorkbookWorksheetChartSery' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/series/{}/format", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgDriveItemWorkbookWorksheetChartSeryFormat", + "oracle": "no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/format and 'Update-MgDriveItemWorkbookWorksheetChartSeryFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/series/{}/format/fill", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgDriveItemWorkbookWorksheetChartSeryFormatFill", + "oracle": "no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/format/fill and 'Update-MgDriveItemWorkbookWorksheetChartSeryFormatFill' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/series/{}/format/line", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgDriveItemWorkbookWorksheetChartSeryFormatLine", + "oracle": "no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/format/line and 'Update-MgDriveItemWorkbookWorksheetChartSeryFormatLine' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/series/{}/points/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgDriveItemWorkbookWorksheetChartSeryPoint", + "oracle": "no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/points/{param} and 'Update-MgDriveItemWorkbookWorksheetChartSeryPoint' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/series/{}/points/{}/format", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgDriveItemWorkbookWorksheetChartSeryPointFormat", + "oracle": "no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/points/{param}/format and 'Update-MgDriveItemWorkbookWorksheetChartSeryPointFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/series/{}/points/{}/format/fill", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgDriveItemWorkbookWorksheetChartSeryPointFormatFill", + "oracle": "no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/points/{param}/format/fill and 'Update-MgDriveItemWorkbookWorksheetChartSeryPointFormatFill' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/title", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgDriveItemWorkbookWorksheetChartTitle", + "oracle": "no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/title and 'Update-MgDriveItemWorkbookWorksheetChartTitle' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/title/format", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgDriveItemWorkbookWorksheetChartTitleFormat", + "oracle": "no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/title/format and 'Update-MgDriveItemWorkbookWorksheetChartTitleFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/title/format/fill", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgDriveItemWorkbookWorksheetChartTitleFormatFill", + "oracle": "no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/title/format/fill and 'Update-MgDriveItemWorkbookWorksheetChartTitleFormatFill' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/title/format/font", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgDriveItemWorkbookWorksheetChartTitleFormatFont", + "oracle": "no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/title/format/font and 'Update-MgDriveItemWorkbookWorksheetChartTitleFormatFont' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/names/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgDriveItemWorkbookWorksheetName", + "oracle": "no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param} and 'Update-MgDriveItemWorkbookWorksheetName' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/pivottables/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgDriveItemWorkbookWorksheetPivotTable", + "oracle": "no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/pivotTables/{param} and 'Update-MgDriveItemWorkbookWorksheetPivotTable' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/protection", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgDriveItemWorkbookWorksheetProtection", + "oracle": "no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/protection and 'Update-MgDriveItemWorkbookWorksheetProtection' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgDriveItemWorkbookWorksheetTable", + "oracle": "no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param} and 'Update-MgDriveItemWorkbookWorksheetTable' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgDriveItemWorkbookWorksheetTableColumn", + "oracle": "no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param} and 'Update-MgDriveItemWorkbookWorksheetTableColumn' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/filter", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgDriveItemWorkbookWorksheetTableColumnFilter", + "oracle": "no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/filter and 'Update-MgDriveItemWorkbookWorksheetTableColumnFilter' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/rows/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgDriveItemWorkbookWorksheetTableRow", + "oracle": "no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param} and 'Update-MgDriveItemWorkbookWorksheetTableRow' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/sort", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgDriveItemWorkbookWorksheetTableSort", + "oracle": "no oracle row for PATCH /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/sort and 'Update-MgDriveItemWorkbookWorksheetTableSort' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/drives/{}/list/items/{}/permissions/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgDriveListItemPermission", + "oracle": "no oracle row for PATCH /drives/{param}/list/items/{param}/permissions/{param} and 'Update-MgDriveListItemPermission' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/drives/{}/list/permissions/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgDriveListPermission", + "oracle": "no oracle row for PATCH /drives/{param}/list/permissions/{param} and 'Update-MgDriveListPermission' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/groups/{}/calendar/events/{}/extensions/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgGroupCalendarEventExtension", + "oracle": "no oracle row for PATCH /groups/{param}/calendar/events/{param}/extensions/{param} and 'Update-MgGroupCalendarEventExtension' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/groups/{}/onenote/notebooks/{}/sectiongroups/{}/sections/{}/pages/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgGroupOnenoteNotebookSectionGroupSectionPage", + "oracle": "no oracle row for PATCH /groups/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param} and 'Update-MgGroupOnenoteNotebookSectionGroupSectionPage' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/groups/{}/onenote/notebooks/{}/sections/{}/pages/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgGroupOnenoteNotebookSectionPage", + "oracle": "no oracle row for PATCH /groups/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param} and 'Update-MgGroupOnenoteNotebookSectionPage' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/groups/{}/onenote/pages/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgGroupOnenotePage", + "oracle": "no oracle row for PATCH /groups/{param}/onenote/pages/{param} and 'Update-MgGroupOnenotePage' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/groups/{}/onenote/sectiongroups/{}/sections/{}/pages/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgGroupOnenoteSectionGroupSectionPage", + "oracle": "no oracle row for PATCH /groups/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param} and 'Update-MgGroupOnenoteSectionGroupSectionPage' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/groups/{}/onenote/sections/{}/pages/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgGroupOnenoteSectionPage", + "oracle": "no oracle row for PATCH /groups/{param}/onenote/sections/{param}/pages/{param} and 'Update-MgGroupOnenoteSectionPage' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/groups/{}/photo", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgGroupPhoto", + "oracle": "no oracle row for PATCH /groups/{param}/photo and 'Update-MgGroupPhoto' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/groups/{}/planner/plans/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgGroupPlannerPlan", + "oracle": "no oracle row for PATCH /groups/{param}/planner/plans/{param} and 'Update-MgGroupPlannerPlan' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/groups/{}/planner/plans/{}/buckets/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgGroupPlannerPlanBucket", + "oracle": "no oracle row for PATCH /groups/{param}/planner/plans/{param}/buckets/{param} and 'Update-MgGroupPlannerPlanBucket' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/groups/{}/planner/plans/{}/buckets/{}/tasks/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgGroupPlannerPlanBucketTask", + "oracle": "no oracle row for PATCH /groups/{param}/planner/plans/{param}/buckets/{param}/tasks/{param} and 'Update-MgGroupPlannerPlanBucketTask' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/groups/{}/planner/plans/{}/buckets/{}/tasks/{}/assignedtotaskboardformat", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgGroupPlannerPlanBucketTaskAssignedToTaskBoardFormat", + "oracle": "no oracle row for PATCH /groups/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/assignedToTaskBoardFormat and 'Update-MgGroupPlannerPlanBucketTaskAssignedToTaskBoardFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/groups/{}/planner/plans/{}/buckets/{}/tasks/{}/buckettaskboardformat", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgGroupPlannerPlanBucketTaskBucketTaskBoardFormat", + "oracle": "no oracle row for PATCH /groups/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/bucketTaskBoardFormat and 'Update-MgGroupPlannerPlanBucketTaskBucketTaskBoardFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/groups/{}/planner/plans/{}/buckets/{}/tasks/{}/details", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgGroupPlannerPlanBucketTaskDetail", + "oracle": "no oracle row for PATCH /groups/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/details and 'Update-MgGroupPlannerPlanBucketTaskDetail' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/groups/{}/planner/plans/{}/buckets/{}/tasks/{}/progresstaskboardformat", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgGroupPlannerPlanBucketTaskProgressTaskBoardFormat", + "oracle": "no oracle row for PATCH /groups/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/progressTaskBoardFormat and 'Update-MgGroupPlannerPlanBucketTaskProgressTaskBoardFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/groups/{}/planner/plans/{}/tasks/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgGroupPlannerPlanTask", + "oracle": "no oracle row for PATCH /groups/{param}/planner/plans/{param}/tasks/{param} and 'Update-MgGroupPlannerPlanTask' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/groups/{}/planner/plans/{}/tasks/{}/assignedtotaskboardformat", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgGroupPlannerPlanTaskAssignedToTaskBoardFormat", + "oracle": "no oracle row for PATCH /groups/{param}/planner/plans/{param}/tasks/{param}/assignedToTaskBoardFormat and 'Update-MgGroupPlannerPlanTaskAssignedToTaskBoardFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/groups/{}/planner/plans/{}/tasks/{}/buckettaskboardformat", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgGroupPlannerPlanTaskBucketTaskBoardFormat", + "oracle": "no oracle row for PATCH /groups/{param}/planner/plans/{param}/tasks/{param}/bucketTaskBoardFormat and 'Update-MgGroupPlannerPlanTaskBucketTaskBoardFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/groups/{}/planner/plans/{}/tasks/{}/details", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgGroupPlannerPlanTaskDetail", + "oracle": "no oracle row for PATCH /groups/{param}/planner/plans/{param}/tasks/{param}/details and 'Update-MgGroupPlannerPlanTaskDetail' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/groups/{}/planner/plans/{}/tasks/{}/progresstaskboardformat", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgGroupPlannerPlanTaskProgressTaskBoardFormat", + "oracle": "no oracle row for PATCH /groups/{param}/planner/plans/{param}/tasks/{param}/progressTaskBoardFormat and 'Update-MgGroupPlannerPlanTaskProgressTaskBoardFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/groups/{}/team/channels/{}/members/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgGroupTeamChannelMember", + "oracle": "no oracle row; 'Update-MgGroupTeamChannelMember' ships from sibling family (see rename entries for this noun)" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/groups/{}/team/installedapps/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgGroupTeamInstalledApp", + "oracle": "no oracle row; 'Update-MgGroupTeamInstalledApp' ships from sibling family (see rename entries for this noun)" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/groups/{}/team/primarychannel/members/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgGroupTeamPrimaryChannelMember", + "oracle": "no oracle row; 'Update-MgGroupTeamPrimaryChannelMember' ships from sibling family (see rename entries for this noun)" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identity", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgIdentity", + "oracle": "no oracle row for PATCH /identity and 'Update-MgIdentity' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identity/conditionalaccess/authenticationstrength", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgIdentityConditionalAccessAuthenticationStrength", + "oracle": "no oracle row for PATCH /identity/conditionalAccess/authenticationStrength and 'Update-MgIdentityConditionalAccessAuthenticationStrength' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identity/conditionalaccess/authenticationstrength/authenticationmethodmodes/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgIdentityConditionalAccessAuthenticationStrengthAuthenticationMethodMode", + "oracle": "no oracle row for PATCH /identity/conditionalAccess/authenticationStrength/authenticationMethodModes/{param} and 'Update-MgIdentityConditionalAccessAuthenticationStrengthAuthenticationMethodMode' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identity/conditionalaccess/authenticationstrength/policies/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgIdentityConditionalAccessAuthenticationStrengthPolicy", + "oracle": "no oracle row for PATCH /identity/conditionalAccess/authenticationStrength/policies/{param} and 'Update-MgIdentityConditionalAccessAuthenticationStrengthPolicy' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identity/conditionalaccess/authenticationstrength/policies/{}/combinationconfigurations/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgIdentityConditionalAccessAuthenticationStrengthPolicyCombinationConfiguration", + "oracle": "no oracle row for PATCH /identity/conditionalAccess/authenticationStrength/policies/{param}/combinationConfigurations/{param} and 'Update-MgIdentityConditionalAccessAuthenticationStrengthPolicyCombinationConfiguration' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgIdentityGovernance", + "oracle": "no oracle row for PATCH /identityGovernance and 'Update-MgIdentityGovernance' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/accessreviews", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceAccessReview", + "oracle": "no oracle row for PATCH /identityGovernance/accessReviews and 'Update-MgIdentityGovernanceAccessReview' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/appconsent", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceAppConsent", + "oracle": "no oracle row for PATCH /identityGovernance/appConsent and 'Update-MgIdentityGovernanceAppConsent' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceEntitlementManagement", + "oracle": "no oracle row for PATCH /identityGovernance/entitlementManagement and 'Update-MgIdentityGovernanceEntitlementManagement' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/assignmentpolicies/{}/customextensionstagesettings/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyCustomExtensionStageSetting", + "oracle": "no oracle row for PATCH /identityGovernance/entitlementManagement/accessPackages/{param}/assignmentPolicies/{param}/customExtensionStageSettings/{param} and 'Update-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyCustomExtensionStageSetting' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/assignmentpolicies/{}/questions/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyQuestion", + "oracle": "no oracle row for PATCH /identityGovernance/entitlementManagement/accessPackages/{param}/assignmentPolicies/{param}/questions/{param} and 'Update-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyQuestion' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/resourcerolescopes/{}/role", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRole", + "oracle": "no oracle row for PATCH /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role and 'Update-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRole' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/resourcerolescopes/{}/role/resource", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResource", + "oracle": "no oracle row for PATCH /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource and 'Update-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResource' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/resourcerolescopes/{}/role/resource/roles/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceRole", + "oracle": "no oracle row for PATCH /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/roles/{param} and 'Update-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceRole' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/resourcerolescopes/{}/role/resource/scopes/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScope", + "oracle": "no oracle row for PATCH /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/scopes/{param} and 'Update-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScope' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/resourcerolescopes/{}/role/resource/scopes/{}/resource", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScopeResource", + "oracle": "no oracle row for PATCH /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/scopes/{param}/resource and 'Update-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScopeResource' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/resourcerolescopes/{}/role/resource/scopes/{}/resource/roles/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScopeResourceRole", + "oracle": "no oracle row for PATCH /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/scopes/{param}/resource/roles/{param} and 'Update-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScopeResourceRole' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/resourcerolescopes/{}/scope/resource", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResource", + "oracle": "no oracle row for PATCH /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource and 'Update-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResource' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/resourcerolescopes/{}/scope/resource/roles/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRole", + "oracle": "no oracle row for PATCH /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/roles/{param} and 'Update-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRole' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/resourcerolescopes/{}/scope/resource/roles/{}/resource", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRoleResource", + "oracle": "no oracle row for PATCH /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/roles/{param}/resource and 'Update-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRoleResource' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/resourcerolescopes/{}/scope/resource/roles/{}/resource/scopes/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRoleResourceScope", + "oracle": "no oracle row for PATCH /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/roles/{param}/resource/scopes/{param} and 'Update-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRoleResourceScope' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/resourcerolescopes/{}/scope/resource/scopes/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceScope", + "oracle": "no oracle row for PATCH /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/scopes/{param} and 'Update-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceScope' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/assignmentrequests/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementAssignmentRequest", + "oracle": "no oracle row for PATCH /identityGovernance/entitlementManagement/assignmentRequests/{param} and 'Update-MgIdentityGovernanceEntitlementManagementAssignmentRequest' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/assignments/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementAssignment", + "oracle": "no oracle row for PATCH /identityGovernance/entitlementManagement/assignments/{param} and 'Update-MgIdentityGovernanceEntitlementManagementAssignment' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResource", + "oracle": "no oracle row for PATCH /identityGovernance/entitlementManagement/catalogs/{param}/resourceRoles/{param}/resource and 'Update-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResource' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/roles/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceRole", + "oracle": "no oracle row for PATCH /identityGovernance/entitlementManagement/catalogs/{param}/resourceRoles/{param}/resource/roles/{param} and 'Update-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceRole' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/scopes/{}/resource", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResource", + "oracle": "no oracle row for PATCH /identityGovernance/entitlementManagement/catalogs/{param}/resourceRoles/{param}/resource/scopes/{param}/resource and 'Update-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceScopeResource' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementCatalogResource", + "oracle": "no oracle row for PATCH /identityGovernance/entitlementManagement/catalogs/{param}/resources/{param} and 'Update-MgIdentityGovernanceEntitlementManagementCatalogResource' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementCatalogResourceScope", + "oracle": "no oracle row for PATCH /identityGovernance/entitlementManagement/catalogs/{param}/resources/{param}/scopes/{param} and 'Update-MgIdentityGovernanceEntitlementManagementCatalogResourceScope' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResource", + "oracle": "no oracle row for PATCH /identityGovernance/entitlementManagement/catalogs/{param}/resources/{param}/scopes/{param}/resource and 'Update-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResource' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes/{}/resource/roles/{}/resource", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResource", + "oracle": "no oracle row for PATCH /identityGovernance/entitlementManagement/catalogs/{param}/resources/{param}/scopes/{param}/resource/roles/{param}/resource and 'Update-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceRoleResource' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/scopes/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceScope", + "oracle": "no oracle row for PATCH /identityGovernance/entitlementManagement/catalogs/{param}/resourceScopes/{param}/resource/scopes/{param} and 'Update-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceScope' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResource", + "oracle": "no oracle row for PATCH /identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param} and 'Update-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResource' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/{}/roles/{}/resource", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResource", + "oracle": "no oracle row for PATCH /identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/roles/{param}/resource and 'Update-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResource' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/{}/roles/{}/resource/scopes/{}/resource", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResourceScopeResource", + "oracle": "no oracle row for PATCH /identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/roles/{param}/resource/scopes/{param}/resource and 'Update-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceRoleResourceScopeResource' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/{}/scopes/{}/resource", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResource", + "oracle": "no oracle row for PATCH /identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/scopes/{param}/resource and 'Update-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResource' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/resourceenvironments/{}/resources/{}/scopes/{}/resource/roles/{}/resource", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResourceRoleResource", + "oracle": "no oracle row for PATCH /identityGovernance/entitlementManagement/resourceEnvironments/{param}/resources/{param}/scopes/{param}/resource/roles/{param}/resource and 'Update-MgIdentityGovernanceEntitlementManagementResourceEnvironmentResourceScopeResourceRoleResource' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResource", + "oracle": "no oracle row for PATCH /identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceRoles/{param}/resource and 'Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResource' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/roles/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceRole", + "oracle": "no oracle row for PATCH /identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceRoles/{param}/resource/roles/{param} and 'Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceRole' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/scopes/{}/resource", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResource", + "oracle": "no oracle row for PATCH /identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceRoles/{param}/resource/scopes/{param}/resource and 'Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResource' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResource", + "oracle": "no oracle row for PATCH /identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resources/{param} and 'Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResource' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScope", + "oracle": "no oracle row for PATCH /identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resources/{param}/scopes/{param} and 'Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScope' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResource", + "oracle": "no oracle row for PATCH /identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resources/{param}/scopes/{param}/resource and 'Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResource' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes/{}/resource/roles/{}/resource", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResource", + "oracle": "no oracle row for PATCH /identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resources/{param}/scopes/{param}/resource/roles/{param}/resource and 'Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResource' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/scopes/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceScope", + "oracle": "no oracle row for PATCH /identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceScopes/{param}/resource/scopes/{param} and 'Update-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceScope' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementResourceRequestResource", + "oracle": "no oracle row for PATCH /identityGovernance/entitlementManagement/resourceRequests/{param}/resource and 'Update-MgIdentityGovernanceEntitlementManagementResourceRequestResource' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource/roles/{}/resource", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResource", + "oracle": "no oracle row for PATCH /identityGovernance/entitlementManagement/resourceRequests/{param}/resource/roles/{param}/resource and 'Update-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResource' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource/roles/{}/resource/scopes/{}/resource", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResourceScopeResource", + "oracle": "no oracle row for PATCH /identityGovernance/entitlementManagement/resourceRequests/{param}/resource/roles/{param}/resource/scopes/{param}/resource and 'Update-MgIdentityGovernanceEntitlementManagementResourceRequestResourceRoleResourceScopeResource' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource/scopes/{}/resource", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResource", + "oracle": "no oracle row for PATCH /identityGovernance/entitlementManagement/resourceRequests/{param}/resource/scopes/{param}/resource and 'Update-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResource' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/resource/scopes/{}/resource/roles/{}/resource", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResourceRoleResource", + "oracle": "no oracle row for PATCH /identityGovernance/entitlementManagement/resourceRequests/{param}/resource/scopes/{param}/resource/roles/{param}/resource and 'Update-MgIdentityGovernanceEntitlementManagementResourceRequestResourceScopeResourceRoleResource' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/role/resource", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResource", + "oracle": "no oracle row for PATCH /identityGovernance/entitlementManagement/resourceRoleScopes/{param}/role/resource and 'Update-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResource' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/role/resource/scopes/{}/resource", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScopeResource", + "oracle": "no oracle row for PATCH /identityGovernance/entitlementManagement/resourceRoleScopes/{param}/role/resource/scopes/{param}/resource and 'Update-MgIdentityGovernanceEntitlementManagementResourceRoleScopeRoleResourceScopeResource' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/scope/resource", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResource", + "oracle": "no oracle row for PATCH /identityGovernance/entitlementManagement/resourceRoleScopes/{param}/scope/resource and 'Update-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResource' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/resourcerolescopes/{}/scope/resource/roles/{}/resource", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRoleResource", + "oracle": "no oracle row for PATCH /identityGovernance/entitlementManagement/resourceRoleScopes/{param}/scope/resource/roles/{param}/resource and 'Update-MgIdentityGovernanceEntitlementManagementResourceRoleScopeResourceRoleResource' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/resources/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementResource", + "oracle": "no oracle row for PATCH /identityGovernance/entitlementManagement/resources/{param} and 'Update-MgIdentityGovernanceEntitlementManagementResource' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/resources/{}/roles/{}/resource", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementResourceRoleResource", + "oracle": "no oracle row for PATCH /identityGovernance/entitlementManagement/resources/{param}/roles/{param}/resource and 'Update-MgIdentityGovernanceEntitlementManagementResourceRoleResource' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/resources/{}/roles/{}/resource/scopes/{}/resource", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementResourceRoleResourceScopeResource", + "oracle": "no oracle row for PATCH /identityGovernance/entitlementManagement/resources/{param}/roles/{param}/resource/scopes/{param}/resource and 'Update-MgIdentityGovernanceEntitlementManagementResourceRoleResourceScopeResource' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/resources/{}/scopes/{}/resource", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementResourceScopeResource", + "oracle": "no oracle row for PATCH /identityGovernance/entitlementManagement/resources/{param}/scopes/{param}/resource and 'Update-MgIdentityGovernanceEntitlementManagementResourceScopeResource' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/entitlementmanagement/resources/{}/scopes/{}/resource/roles/{}/resource", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceEntitlementManagementResourceScopeResourceRoleResource", + "oracle": "no oracle row for PATCH /identityGovernance/entitlementManagement/resources/{param}/scopes/{param}/resource/roles/{param}/resource and 'Update-MgIdentityGovernanceEntitlementManagementResourceScopeResourceRoleResource' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/createdby/mailboxsettings", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowCreatedByMailboxSetting", + "oracle": "no oracle row for PATCH /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/createdBy/mailboxSettings and 'Update-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowCreatedByMailboxSetting' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/lastmodifiedby/mailboxsettings", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowLastModifiedByMailboxSetting", + "oracle": "no oracle row for PATCH /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/lastModifiedBy/mailboxSettings and 'Update-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowLastModifiedByMailboxSetting' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/runs/{}/taskprocessingresults/{}/subject/mailboxsettings", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunTaskProcessingResultSubjectMailboxSetting", + "oracle": "no oracle row for PATCH /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/taskProcessingResults/{param}/subject/mailboxSettings and 'Update-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunTaskProcessingResultSubjectMailboxSetting' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/runs/{}/userprocessingresults/{}/subject/mailboxsettings", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultSubjectMailboxSetting", + "oracle": "no oracle row for PATCH /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/userProcessingResults/{param}/subject/mailboxSettings and 'Update-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultSubjectMailboxSetting' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/runs/{}/userprocessingresults/{}/taskprocessingresults/{}/subject/mailboxsettings", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultTaskProcessingResultSubjectMailboxSetting", + "oracle": "no oracle row for PATCH /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/runs/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/subject/mailboxSettings and 'Update-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRunUserProcessingResultTaskProcessingResultSubjectMailboxSetting' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/taskreports/{}/taskprocessingresults/{}/subject/mailboxsettings", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportTaskProcessingResultSubjectMailboxSetting", + "oracle": "no oracle row for PATCH /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/taskReports/{param}/taskProcessingResults/{param}/subject/mailboxSettings and 'Update-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReportTaskProcessingResultSubjectMailboxSetting' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/tasks/{}/taskprocessingresults/{}/subject/mailboxsettings", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskProcessingResultSubjectMailboxSetting", + "oracle": "no oracle row for PATCH /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/tasks/{param}/taskProcessingResults/{param}/subject/mailboxSettings and 'Update-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskProcessingResultSubjectMailboxSetting' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/userprocessingresults/{}/subject/mailboxsettings", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultSubjectMailboxSetting", + "oracle": "no oracle row for PATCH /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/userProcessingResults/{param}/subject/mailboxSettings and 'Update-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultSubjectMailboxSetting' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/userprocessingresults/{}/taskprocessingresults/{}/subject/mailboxsettings", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultTaskProcessingResultSubjectMailboxSetting", + "oracle": "no oracle row for PATCH /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/subject/mailboxSettings and 'Update-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResultTaskProcessingResultSubjectMailboxSetting' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/versions/{}/createdby/mailboxsettings", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionCreatedByMailboxSetting", + "oracle": "no oracle row for PATCH /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/createdBy/mailboxSettings and 'Update-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionCreatedByMailboxSetting' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/versions/{}/lastmodifiedby/mailboxsettings", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionLastModifiedByMailboxSetting", + "oracle": "no oracle row for PATCH /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/lastModifiedBy/mailboxSettings and 'Update-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionLastModifiedByMailboxSetting' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/versions/{}/tasks/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTask", + "oracle": "no oracle row for PATCH /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/tasks/{param} and 'Update-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTask' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/versions/{}/tasks/{}/taskprocessingresults/{}/subject/mailboxsettings", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTaskProcessingResultSubjectMailboxSetting", + "oracle": "no oracle row for PATCH /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/tasks/{param}/taskProcessingResults/{param}/subject/mailboxSettings and 'Update-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTaskProcessingResultSubjectMailboxSetting' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/lifecycleworkflows/workflows/{}/runs/{}/userprocessingresults/{}/taskprocessingresults/{}/subject/mailboxsettings", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultTaskProcessingResultSubjectMailboxSetting", + "oracle": "no oracle row for PATCH /identityGovernance/lifecycleWorkflows/workflows/{param}/runs/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/subject/mailboxSettings and 'Update-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultTaskProcessingResultSubjectMailboxSetting' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/lifecycleworkflows/workflows/{}/userprocessingresults/{}/taskprocessingresults/{}/subject/mailboxsettings", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultTaskProcessingResultSubjectMailboxSetting", + "oracle": "no oracle row for PATCH /identityGovernance/lifecycleWorkflows/workflows/{param}/userProcessingResults/{param}/taskProcessingResults/{param}/subject/mailboxSettings and 'Update-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultTaskProcessingResultSubjectMailboxSetting' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identitygovernance/termsofuse", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgIdentityGovernanceTermOfUse", + "oracle": "no oracle row for PATCH /identityGovernance/termsOfUse and 'Update-MgIdentityGovernanceTermOfUse' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/identityprotection", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgIdentityProtection", + "oracle": "no oracle row for PATCH /identityProtection and 'Update-MgIdentityProtection' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/planner/buckets/{}/tasks/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgPlannerBucketTask", + "oracle": "no oracle row for PATCH /planner/buckets/{param}/tasks/{param} and 'Update-MgPlannerBucketTask' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/planner/buckets/{}/tasks/{}/assignedtotaskboardformat", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgPlannerBucketTaskAssignedToTaskBoardFormat", + "oracle": "no oracle row for PATCH /planner/buckets/{param}/tasks/{param}/assignedToTaskBoardFormat and 'Update-MgPlannerBucketTaskAssignedToTaskBoardFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/planner/buckets/{}/tasks/{}/buckettaskboardformat", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgPlannerBucketTaskBucketTaskBoardFormat", + "oracle": "no oracle row for PATCH /planner/buckets/{param}/tasks/{param}/bucketTaskBoardFormat and 'Update-MgPlannerBucketTaskBucketTaskBoardFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/planner/buckets/{}/tasks/{}/details", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgPlannerBucketTaskDetail", + "oracle": "no oracle row for PATCH /planner/buckets/{param}/tasks/{param}/details and 'Update-MgPlannerBucketTaskDetail' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/planner/buckets/{}/tasks/{}/progresstaskboardformat", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgPlannerBucketTaskProgressTaskBoardFormat", + "oracle": "no oracle row for PATCH /planner/buckets/{param}/tasks/{param}/progressTaskBoardFormat and 'Update-MgPlannerBucketTaskProgressTaskBoardFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/planner/plans/{}/buckets/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgPlannerPlanBucket", + "oracle": "no oracle row for PATCH /planner/plans/{param}/buckets/{param} and 'Update-MgPlannerPlanBucket' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/planner/plans/{}/buckets/{}/tasks/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgPlannerPlanBucketTask", + "oracle": "no oracle row for PATCH /planner/plans/{param}/buckets/{param}/tasks/{param} and 'Update-MgPlannerPlanBucketTask' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/planner/plans/{}/buckets/{}/tasks/{}/assignedtotaskboardformat", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgPlannerPlanBucketTaskAssignedToTaskBoardFormat", + "oracle": "no oracle row for PATCH /planner/plans/{param}/buckets/{param}/tasks/{param}/assignedToTaskBoardFormat and 'Update-MgPlannerPlanBucketTaskAssignedToTaskBoardFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/planner/plans/{}/buckets/{}/tasks/{}/buckettaskboardformat", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgPlannerPlanBucketTaskBucketTaskBoardFormat", + "oracle": "no oracle row for PATCH /planner/plans/{param}/buckets/{param}/tasks/{param}/bucketTaskBoardFormat and 'Update-MgPlannerPlanBucketTaskBucketTaskBoardFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/planner/plans/{}/buckets/{}/tasks/{}/details", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgPlannerPlanBucketTaskDetail", + "oracle": "no oracle row for PATCH /planner/plans/{param}/buckets/{param}/tasks/{param}/details and 'Update-MgPlannerPlanBucketTaskDetail' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/planner/plans/{}/buckets/{}/tasks/{}/progresstaskboardformat", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgPlannerPlanBucketTaskProgressTaskBoardFormat", + "oracle": "no oracle row for PATCH /planner/plans/{param}/buckets/{param}/tasks/{param}/progressTaskBoardFormat and 'Update-MgPlannerPlanBucketTaskProgressTaskBoardFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/planner/plans/{}/tasks/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgPlannerPlanTask", + "oracle": "no oracle row for PATCH /planner/plans/{param}/tasks/{param} and 'Update-MgPlannerPlanTask' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/planner/plans/{}/tasks/{}/assignedtotaskboardformat", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgPlannerPlanTaskAssignedToTaskBoardFormat", + "oracle": "no oracle row for PATCH /planner/plans/{param}/tasks/{param}/assignedToTaskBoardFormat and 'Update-MgPlannerPlanTaskAssignedToTaskBoardFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/planner/plans/{}/tasks/{}/buckettaskboardformat", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgPlannerPlanTaskBucketTaskBoardFormat", + "oracle": "no oracle row for PATCH /planner/plans/{param}/tasks/{param}/bucketTaskBoardFormat and 'Update-MgPlannerPlanTaskBucketTaskBoardFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/planner/plans/{}/tasks/{}/details", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgPlannerPlanTaskDetail", + "oracle": "no oracle row for PATCH /planner/plans/{param}/tasks/{param}/details and 'Update-MgPlannerPlanTaskDetail' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/planner/plans/{}/tasks/{}/progresstaskboardformat", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgPlannerPlanTaskProgressTaskBoardFormat", + "oracle": "no oracle row for PATCH /planner/plans/{param}/tasks/{param}/progressTaskBoardFormat and 'Update-MgPlannerPlanTaskProgressTaskBoardFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/policies", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgPolicy", + "oracle": "no oracle row for PATCH /policies and 'Update-MgPolicy' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/policies/conditionalaccesspolicies/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgPolicyConditionalAccessPolicy", + "oracle": "no oracle row for PATCH /policies/conditionalAccessPolicies/{param} and 'Update-MgPolicyConditionalAccessPolicy' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/reports", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgReport", + "oracle": "no oracle row for PATCH /reports and 'Update-MgReport' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/reports/authenticationmethods", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgReportAuthenticationMethod", + "oracle": "no oracle row for PATCH /reports/authenticationMethods and 'Update-MgReportAuthenticationMethod' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/reports/dailyprintusagebyprinter/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgReportDailyPrintUsageByPrinter", + "oracle": "no oracle row for PATCH /reports/dailyPrintUsageByPrinter/{param} and 'Update-MgReportDailyPrintUsageByPrinter' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/reports/dailyprintusagebyuser/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgReportDailyPrintUsageByUser", + "oracle": "no oracle row for PATCH /reports/dailyPrintUsageByUser/{param} and 'Update-MgReportDailyPrintUsageByUser' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/reports/monthlyprintusagebyprinter/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgReportMonthlyPrintUsageByPrinter", + "oracle": "no oracle row for PATCH /reports/monthlyPrintUsageByPrinter/{param} and 'Update-MgReportMonthlyPrintUsageByPrinter' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/reports/monthlyprintusagebyuser/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgReportMonthlyPrintUsageByUser", + "oracle": "no oracle row for PATCH /reports/monthlyPrintUsageByUser/{param} and 'Update-MgReportMonthlyPrintUsageByUser' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/reports/partners", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgReportPartner", + "oracle": "no oracle row for PATCH /reports/partners and 'Update-MgReportPartner' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/reports/security", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgReportSecurity", + "oracle": "no oracle row for PATCH /reports/security and 'Update-MgReportSecurity' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/security", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgSecurity", + "oracle": "no oracle row for PATCH /security and 'Update-MgSecurity' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/security/attacksimulation/simulations/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgSecurityAttackSimulation", + "oracle": "no oracle row for PATCH /security/attackSimulation/simulations/{param} and 'Update-MgSecurityAttackSimulation' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/security/cases/ediscoverycases/{}/noncustodialdatasources/{}/datasource", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceDataSource", + "oracle": "no oracle row for PATCH /security/cases/ediscoveryCases/{param}/noncustodialDataSources/{param}/dataSource and 'Update-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceDataSource' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/serviceprincipals/{}/federatedidentitycredentials/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgServicePrincipalFederatedIdentityCredential", + "oracle": "no oracle row for PATCH /servicePrincipals/{param}/federatedIdentityCredentials/{param} and 'Update-MgServicePrincipalFederatedIdentityCredential' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/shares/{}/list/items/{}/permissions/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgShareListItemPermission", + "oracle": "no oracle row for PATCH /shares/{param}/list/items/{param}/permissions/{param} and 'Update-MgShareListItemPermission' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/shares/{}/list/permissions/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgShareListPermission", + "oracle": "no oracle row for PATCH /shares/{param}/list/permissions/{param} and 'Update-MgShareListPermission' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/sites/{}/onenote/notebooks/{}/sectiongroups/{}/sections/{}/pages/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgSiteOnenoteNotebookSectionGroupSectionPage", + "oracle": "no oracle row for PATCH /sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param} and 'Update-MgSiteOnenoteNotebookSectionGroupSectionPage' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/sites/{}/onenote/notebooks/{}/sections/{}/pages/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgSiteOnenoteNotebookSectionPage", + "oracle": "no oracle row for PATCH /sites/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param} and 'Update-MgSiteOnenoteNotebookSectionPage' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/sites/{}/onenote/pages/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgSiteOnenotePage", + "oracle": "no oracle row for PATCH /sites/{param}/onenote/pages/{param} and 'Update-MgSiteOnenotePage' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/sites/{}/onenote/sectiongroups/{}/sections/{}/pages/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgSiteOnenoteSectionGroupSectionPage", + "oracle": "no oracle row for PATCH /sites/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param} and 'Update-MgSiteOnenoteSectionGroupSectionPage' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/sites/{}/onenote/sections/{}/pages/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgSiteOnenoteSectionPage", + "oracle": "no oracle row for PATCH /sites/{param}/onenote/sections/{param}/pages/{param} and 'Update-MgSiteOnenoteSectionPage' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/teams/{}/channels/{}/members/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgTeamChannelMember", + "oracle": "no oracle row; 'Update-MgTeamChannelMember' ships from sibling family (see rename entries for this noun)" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/teams/{}/channels/{}/messages/{}/hostedcontents/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgTeamChannelMessageHostedContent", + "oracle": "no oracle row for PATCH /teams/{param}/channels/{param}/messages/{param}/hostedContents/{param} and 'Update-MgTeamChannelMessageHostedContent' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/teams/{}/installedapps/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgTeamInstalledApp", + "oracle": "no oracle row; 'Update-MgTeamInstalledApp' ships from sibling family (see rename entries for this noun)" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/teams/{}/primarychannel/members/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgTeamPrimaryChannelMember", + "oracle": "no oracle row; 'Update-MgTeamPrimaryChannelMember' ships from sibling family (see rename entries for this noun)" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/teams/{}/primarychannel/messages/{}/hostedcontents/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgTeamPrimaryChannelMessageHostedContent", + "oracle": "no oracle row for PATCH /teams/{param}/primaryChannel/messages/{param}/hostedContents/{param} and 'Update-MgTeamPrimaryChannelMessageHostedContent' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/teamwork/deletedteams/{}/channels/{}/members/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgTeamworkDeletedTeamChannelMember", + "oracle": "no oracle row; 'Update-MgTeamworkDeletedTeamChannelMember' ships from sibling family (see rename entries for this noun)" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/users/{}/authentication", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgUserAuthentication", + "oracle": "no oracle row for PATCH /users/{param}/authentication and 'Update-MgUserAuthentication' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/users/{}/calendargroups/{}/calendars/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgUserCalendarGroupCalendar", + "oracle": "no oracle row for PATCH /users/{param}/calendarGroups/{param}/calendars/{param} and 'Update-MgUserCalendarGroupCalendar' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/users/{}/calendargroups/{}/calendars/{}/calendarpermissions/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgUserCalendarGroupCalendarPermission", + "oracle": "no oracle row for PATCH /users/{param}/calendarGroups/{param}/calendars/{param}/calendarPermissions/{param} and 'Update-MgUserCalendarGroupCalendarPermission' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/users/{}/calendargroups/{}/calendars/{}/events/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgUserCalendarGroupCalendarEvent", + "oracle": "no oracle row for PATCH /users/{param}/calendarGroups/{param}/calendars/{param}/events/{param} and 'Update-MgUserCalendarGroupCalendarEvent' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/users/{}/calendargroups/{}/calendars/{}/events/{}/extensions/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgUserCalendarGroupCalendarEventExtension", + "oracle": "no oracle row for PATCH /users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/extensions/{param} and 'Update-MgUserCalendarGroupCalendarEventExtension' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/users/{}/calendars/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgUserCalendar", + "oracle": "no oracle row for PATCH /users/{param}/calendars/{param} and 'Update-MgUserCalendar' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/users/{}/chats/{}/installedapps/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgUserChatInstalledApp", + "oracle": "no oracle row; 'Update-MgUserChatInstalledApp' ships from sibling family (see rename entries for this noun)" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/users/{}/joinedteams/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgUserJoinedTeam", + "oracle": "no oracle row for PATCH /users/{param}/joinedTeams/{param} and 'Update-MgUserJoinedTeam' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/users/{}/joinedteams/{}/channels/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgUserJoinedTeamChannel", + "oracle": "no oracle row for PATCH /users/{param}/joinedTeams/{param}/channels/{param} and 'Update-MgUserJoinedTeamChannel' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/users/{}/joinedteams/{}/channels/{}/allmembers/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgUserJoinedTeamChannelAllMember", + "oracle": "no oracle row for PATCH /users/{param}/joinedTeams/{param}/channels/{param}/allMembers/{param} and 'Update-MgUserJoinedTeamChannelAllMember' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/users/{}/joinedteams/{}/channels/{}/members/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgUserJoinedTeamChannelMember", + "oracle": "no oracle row for PATCH /users/{param}/joinedTeams/{param}/channels/{param}/members/{param} and 'Update-MgUserJoinedTeamChannelMember' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/users/{}/joinedteams/{}/channels/{}/messages/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgUserJoinedTeamChannelMessage", + "oracle": "no oracle row for PATCH /users/{param}/joinedTeams/{param}/channels/{param}/messages/{param} and 'Update-MgUserJoinedTeamChannelMessage' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/users/{}/joinedteams/{}/channels/{}/messages/{}/hostedcontents/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgUserJoinedTeamChannelMessageHostedContent", + "oracle": "no oracle row for PATCH /users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/hostedContents/{param} and 'Update-MgUserJoinedTeamChannelMessageHostedContent' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/users/{}/joinedteams/{}/channels/{}/messages/{}/replies/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgUserJoinedTeamChannelMessageReply", + "oracle": "no oracle row for PATCH /users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/replies/{param} and 'Update-MgUserJoinedTeamChannelMessageReply' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/users/{}/joinedteams/{}/channels/{}/messages/{}/replies/{}/hostedcontents/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgUserJoinedTeamChannelMessageReplyHostedContent", + "oracle": "no oracle row for PATCH /users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/replies/{param}/hostedContents/{param} and 'Update-MgUserJoinedTeamChannelMessageReplyHostedContent' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/users/{}/joinedteams/{}/channels/{}/sharedwithteams/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgUserJoinedTeamChannelSharedWithTeam", + "oracle": "no oracle row for PATCH /users/{param}/joinedTeams/{param}/channels/{param}/sharedWithTeams/{param} and 'Update-MgUserJoinedTeamChannelSharedWithTeam' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/users/{}/joinedteams/{}/channels/{}/tabs/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgUserJoinedTeamChannelTab", + "oracle": "no oracle row for PATCH /users/{param}/joinedTeams/{param}/channels/{param}/tabs/{param} and 'Update-MgUserJoinedTeamChannelTab' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/users/{}/joinedteams/{}/installedapps/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgUserJoinedTeamInstalledApp", + "oracle": "no oracle row for PATCH /users/{param}/joinedTeams/{param}/installedApps/{param} and 'Update-MgUserJoinedTeamInstalledApp' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/users/{}/joinedteams/{}/members/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgUserJoinedTeamMember", + "oracle": "no oracle row for PATCH /users/{param}/joinedTeams/{param}/members/{param} and 'Update-MgUserJoinedTeamMember' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/users/{}/joinedteams/{}/operations/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgUserJoinedTeamOperation", + "oracle": "no oracle row for PATCH /users/{param}/joinedTeams/{param}/operations/{param} and 'Update-MgUserJoinedTeamOperation' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/users/{}/joinedteams/{}/permissiongrants/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgUserJoinedTeamPermissionGrant", + "oracle": "no oracle row for PATCH /users/{param}/joinedTeams/{param}/permissionGrants/{param} and 'Update-MgUserJoinedTeamPermissionGrant' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/users/{}/joinedteams/{}/photo", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgUserJoinedTeamPhoto", + "oracle": "no oracle row for PATCH /users/{param}/joinedTeams/{param}/photo and 'Update-MgUserJoinedTeamPhoto' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/users/{}/joinedteams/{}/primarychannel", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgUserJoinedTeamPrimaryChannel", + "oracle": "no oracle row for PATCH /users/{param}/joinedTeams/{param}/primaryChannel and 'Update-MgUserJoinedTeamPrimaryChannel' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/users/{}/joinedteams/{}/primarychannel/allmembers/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgUserJoinedTeamPrimaryChannelAllMember", + "oracle": "no oracle row for PATCH /users/{param}/joinedTeams/{param}/primaryChannel/allMembers/{param} and 'Update-MgUserJoinedTeamPrimaryChannelAllMember' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/users/{}/joinedteams/{}/primarychannel/members/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgUserJoinedTeamPrimaryChannelMember", + "oracle": "no oracle row for PATCH /users/{param}/joinedTeams/{param}/primaryChannel/members/{param} and 'Update-MgUserJoinedTeamPrimaryChannelMember' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/users/{}/joinedteams/{}/primarychannel/messages/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgUserJoinedTeamPrimaryChannelMessage", + "oracle": "no oracle row for PATCH /users/{param}/joinedTeams/{param}/primaryChannel/messages/{param} and 'Update-MgUserJoinedTeamPrimaryChannelMessage' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/users/{}/joinedteams/{}/primarychannel/messages/{}/hostedcontents/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgUserJoinedTeamPrimaryChannelMessageHostedContent", + "oracle": "no oracle row for PATCH /users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/hostedContents/{param} and 'Update-MgUserJoinedTeamPrimaryChannelMessageHostedContent' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/users/{}/joinedteams/{}/primarychannel/messages/{}/replies/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgUserJoinedTeamPrimaryChannelMessageReply", + "oracle": "no oracle row for PATCH /users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/replies/{param} and 'Update-MgUserJoinedTeamPrimaryChannelMessageReply' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/users/{}/joinedteams/{}/primarychannel/messages/{}/replies/{}/hostedcontents/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgUserJoinedTeamPrimaryChannelMessageReplyHostedContent", + "oracle": "no oracle row for PATCH /users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/replies/{param}/hostedContents/{param} and 'Update-MgUserJoinedTeamPrimaryChannelMessageReplyHostedContent' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/users/{}/joinedteams/{}/primarychannel/sharedwithteams/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgUserJoinedTeamPrimaryChannelSharedWithTeam", + "oracle": "no oracle row for PATCH /users/{param}/joinedTeams/{param}/primaryChannel/sharedWithTeams/{param} and 'Update-MgUserJoinedTeamPrimaryChannelSharedWithTeam' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/users/{}/joinedteams/{}/primarychannel/tabs/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgUserJoinedTeamPrimaryChannelTab", + "oracle": "no oracle row for PATCH /users/{param}/joinedTeams/{param}/primaryChannel/tabs/{param} and 'Update-MgUserJoinedTeamPrimaryChannelTab' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/users/{}/joinedteams/{}/schedule/daynotes/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgUserJoinedTeamScheduleDayNote", + "oracle": "no oracle row for PATCH /users/{param}/joinedTeams/{param}/schedule/dayNotes/{param} and 'Update-MgUserJoinedTeamScheduleDayNote' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/users/{}/joinedteams/{}/schedule/offershiftrequests/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgUserJoinedTeamScheduleOfferShiftRequest", + "oracle": "no oracle row for PATCH /users/{param}/joinedTeams/{param}/schedule/offerShiftRequests/{param} and 'Update-MgUserJoinedTeamScheduleOfferShiftRequest' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/users/{}/joinedteams/{}/schedule/openshiftchangerequests/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgUserJoinedTeamScheduleOpenShiftChangeRequest", + "oracle": "no oracle row for PATCH /users/{param}/joinedTeams/{param}/schedule/openShiftChangeRequests/{param} and 'Update-MgUserJoinedTeamScheduleOpenShiftChangeRequest' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/users/{}/joinedteams/{}/schedule/openshifts/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgUserJoinedTeamScheduleOpenShift", + "oracle": "no oracle row for PATCH /users/{param}/joinedTeams/{param}/schedule/openShifts/{param} and 'Update-MgUserJoinedTeamScheduleOpenShift' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/users/{}/joinedteams/{}/schedule/schedulinggroups/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgUserJoinedTeamScheduleSchedulingGroup", + "oracle": "no oracle row for PATCH /users/{param}/joinedTeams/{param}/schedule/schedulingGroups/{param} and 'Update-MgUserJoinedTeamScheduleSchedulingGroup' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/users/{}/joinedteams/{}/schedule/shifts/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgUserJoinedTeamScheduleShift", + "oracle": "no oracle row for PATCH /users/{param}/joinedTeams/{param}/schedule/shifts/{param} and 'Update-MgUserJoinedTeamScheduleShift' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/users/{}/joinedteams/{}/schedule/swapshiftschangerequests/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgUserJoinedTeamScheduleSwapShiftChangeRequest", + "oracle": "no oracle row for PATCH /users/{param}/joinedTeams/{param}/schedule/swapShiftsChangeRequests/{param} and 'Update-MgUserJoinedTeamScheduleSwapShiftChangeRequest' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/users/{}/joinedteams/{}/schedule/timecards/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgUserJoinedTeamScheduleTimeCard", + "oracle": "no oracle row for PATCH /users/{param}/joinedTeams/{param}/schedule/timeCards/{param} and 'Update-MgUserJoinedTeamScheduleTimeCard' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/users/{}/joinedteams/{}/schedule/timeoffreasons/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgUserJoinedTeamScheduleTimeOffReason", + "oracle": "no oracle row for PATCH /users/{param}/joinedTeams/{param}/schedule/timeOffReasons/{param} and 'Update-MgUserJoinedTeamScheduleTimeOffReason' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/users/{}/joinedteams/{}/schedule/timeoffrequests/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgUserJoinedTeamScheduleTimeOffRequest", + "oracle": "no oracle row for PATCH /users/{param}/joinedTeams/{param}/schedule/timeOffRequests/{param} and 'Update-MgUserJoinedTeamScheduleTimeOffRequest' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/users/{}/joinedteams/{}/schedule/timesoff/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgUserJoinedTeamScheduleTimeOff", + "oracle": "no oracle row for PATCH /users/{param}/joinedTeams/{param}/schedule/timesOff/{param} and 'Update-MgUserJoinedTeamScheduleTimeOff' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/users/{}/joinedteams/{}/tags/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgUserJoinedTeamTag", + "oracle": "no oracle row for PATCH /users/{param}/joinedTeams/{param}/tags/{param} and 'Update-MgUserJoinedTeamTag' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/users/{}/joinedteams/{}/tags/{}/members/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgUserJoinedTeamTagMember", + "oracle": "no oracle row for PATCH /users/{param}/joinedTeams/{param}/tags/{param}/members/{param} and 'Update-MgUserJoinedTeamTagMember' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/users/{}/onenote/notebooks/{}/sectiongroups/{}/sections/{}/pages/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgUserOnenoteNotebookSectionGroupSectionPage", + "oracle": "no oracle row; 'Update-MgUserOnenoteNotebookSectionGroupSectionPage' ships from sibling family (see rename entries for this noun)" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/users/{}/onenote/notebooks/{}/sections/{}/pages/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgUserOnenoteNotebookSectionPage", + "oracle": "no oracle row; 'Update-MgUserOnenoteNotebookSectionPage' ships from sibling family (see rename entries for this noun)" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/users/{}/onenote/pages/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgUserOnenotePage", + "oracle": "no oracle row; 'Update-MgUserOnenotePage' ships from sibling family (see rename entries for this noun)" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/users/{}/onenote/sectiongroups/{}/sections/{}/pages/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgUserOnenoteSectionGroupSectionPage", + "oracle": "no oracle row; 'Update-MgUserOnenoteSectionGroupSectionPage' ships from sibling family (see rename entries for this noun)" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/users/{}/onenote/sections/{}/pages/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgUserOnenoteSectionPage", + "oracle": "no oracle row; 'Update-MgUserOnenoteSectionPage' ships from sibling family (see rename entries for this noun)" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/users/{}/photo", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgUserPhoto", + "oracle": "no oracle row for PATCH /users/{param}/photo and 'Update-MgUserPhoto' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/users/{}/planner/plans/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgUserPlannerPlan", + "oracle": "no oracle row for PATCH /users/{param}/planner/plans/{param} and 'Update-MgUserPlannerPlan' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/users/{}/planner/plans/{}/buckets/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgUserPlannerPlanBucket", + "oracle": "no oracle row for PATCH /users/{param}/planner/plans/{param}/buckets/{param} and 'Update-MgUserPlannerPlanBucket' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/users/{}/planner/plans/{}/buckets/{}/tasks/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgUserPlannerPlanBucketTask", + "oracle": "no oracle row for PATCH /users/{param}/planner/plans/{param}/buckets/{param}/tasks/{param} and 'Update-MgUserPlannerPlanBucketTask' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/users/{}/planner/plans/{}/buckets/{}/tasks/{}/assignedtotaskboardformat", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgUserPlannerPlanBucketTaskAssignedToTaskBoardFormat", + "oracle": "no oracle row for PATCH /users/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/assignedToTaskBoardFormat and 'Update-MgUserPlannerPlanBucketTaskAssignedToTaskBoardFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/users/{}/planner/plans/{}/buckets/{}/tasks/{}/buckettaskboardformat", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgUserPlannerPlanBucketTaskBucketTaskBoardFormat", + "oracle": "no oracle row for PATCH /users/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/bucketTaskBoardFormat and 'Update-MgUserPlannerPlanBucketTaskBucketTaskBoardFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/users/{}/planner/plans/{}/buckets/{}/tasks/{}/details", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgUserPlannerPlanBucketTaskDetail", + "oracle": "no oracle row for PATCH /users/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/details and 'Update-MgUserPlannerPlanBucketTaskDetail' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/users/{}/planner/plans/{}/buckets/{}/tasks/{}/progresstaskboardformat", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgUserPlannerPlanBucketTaskProgressTaskBoardFormat", + "oracle": "no oracle row for PATCH /users/{param}/planner/plans/{param}/buckets/{param}/tasks/{param}/progressTaskBoardFormat and 'Update-MgUserPlannerPlanBucketTaskProgressTaskBoardFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/users/{}/planner/plans/{}/details", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgUserPlannerPlanDetail", + "oracle": "no oracle row for PATCH /users/{param}/planner/plans/{param}/details and 'Update-MgUserPlannerPlanDetail' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/users/{}/planner/plans/{}/tasks/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgUserPlannerPlanTask", + "oracle": "no oracle row for PATCH /users/{param}/planner/plans/{param}/tasks/{param} and 'Update-MgUserPlannerPlanTask' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/users/{}/planner/plans/{}/tasks/{}/assignedtotaskboardformat", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgUserPlannerPlanTaskAssignedToTaskBoardFormat", + "oracle": "no oracle row for PATCH /users/{param}/planner/plans/{param}/tasks/{param}/assignedToTaskBoardFormat and 'Update-MgUserPlannerPlanTaskAssignedToTaskBoardFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/users/{}/planner/plans/{}/tasks/{}/buckettaskboardformat", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgUserPlannerPlanTaskBucketTaskBoardFormat", + "oracle": "no oracle row for PATCH /users/{param}/planner/plans/{param}/tasks/{param}/bucketTaskBoardFormat and 'Update-MgUserPlannerPlanTaskBucketTaskBoardFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/users/{}/planner/plans/{}/tasks/{}/details", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgUserPlannerPlanTaskDetail", + "oracle": "no oracle row for PATCH /users/{param}/planner/plans/{param}/tasks/{param}/details and 'Update-MgUserPlannerPlanTaskDetail' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/users/{}/planner/plans/{}/tasks/{}/progresstaskboardformat", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgUserPlannerPlanTaskProgressTaskBoardFormat", + "oracle": "no oracle row for PATCH /users/{param}/planner/plans/{param}/tasks/{param}/progressTaskBoardFormat and 'Update-MgUserPlannerPlanTaskProgressTaskBoardFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/users/{}/planner/tasks/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgUserPlannerTask", + "oracle": "no oracle row for PATCH /users/{param}/planner/tasks/{param} and 'Update-MgUserPlannerTask' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/users/{}/planner/tasks/{}/assignedtotaskboardformat", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgUserPlannerTaskAssignedToTaskBoardFormat", + "oracle": "no oracle row for PATCH /users/{param}/planner/tasks/{param}/assignedToTaskBoardFormat and 'Update-MgUserPlannerTaskAssignedToTaskBoardFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/users/{}/planner/tasks/{}/buckettaskboardformat", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgUserPlannerTaskBucketTaskBoardFormat", + "oracle": "no oracle row for PATCH /users/{param}/planner/tasks/{param}/bucketTaskBoardFormat and 'Update-MgUserPlannerTaskBucketTaskBoardFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/users/{}/planner/tasks/{}/details", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgUserPlannerTaskDetail", + "oracle": "no oracle row for PATCH /users/{param}/planner/tasks/{param}/details and 'Update-MgUserPlannerTaskDetail' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/users/{}/planner/tasks/{}/progresstaskboardformat", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgUserPlannerTaskProgressTaskBoardFormat", + "oracle": "no oracle row for PATCH /users/{param}/planner/tasks/{param}/progressTaskBoardFormat and 'Update-MgUserPlannerTaskProgressTaskBoardFormat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/users/{}/teamwork/installedapps/{}", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgUserTeamworkInstalledApp", + "oracle": "no oracle row for PATCH /users/{param}/teamwork/installedApps/{param} and 'Update-MgUserTeamworkInstalledApp' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PATCH", + "uri": "/users/{}/todo", + "action": "suppress", + "evidence": { + "ourCommand": "Update-MgUserTodo", + "oracle": "no oracle row for PATCH /users/{param}/todo and 'Update-MgUserTodo' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/admin/serviceannouncement/healthoverviews", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgAdminServiceAnnouncementHealthOverview", + "oracle": "no oracle row for POST /admin/serviceAnnouncement/healthOverviews and 'New-MgAdminServiceAnnouncementHealthOverview' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/admin/serviceannouncement/healthoverviews/{}/issues", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgAdminServiceAnnouncementHealthOverviewIssue", + "oracle": "no oracle row for POST /admin/serviceAnnouncement/healthOverviews/{param}/issues and 'New-MgAdminServiceAnnouncementHealthOverviewIssue' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/admin/serviceannouncement/issues", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgAdminServiceAnnouncementIssue", + "oracle": "no oracle row for POST /admin/serviceAnnouncement/issues and 'New-MgAdminServiceAnnouncementIssue' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/admin/serviceannouncement/messages", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgAdminServiceAnnouncementMessage", + "oracle": "no oracle row for POST /admin/serviceAnnouncement/messages and 'New-MgAdminServiceAnnouncementMessage' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/admin/serviceannouncement/messages/{}/attachments", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgAdminServiceAnnouncementMessageAttachment", + "oracle": "no oracle row for POST /admin/serviceAnnouncement/messages/{param}/attachments and 'New-MgAdminServiceAnnouncementMessageAttachment' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/applications/{}/restore", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgApplicationRestore", + "oracle": "no oracle row for POST /applications/{param}/restore and 'Invoke-MgApplicationRestore' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/applications/getavailableextensionproperties", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgApplicationGetAvailableExtensionProperties", + "oracle": "no oracle row for POST /applications/getAvailableExtensionProperties and 'Invoke-MgApplicationGetAvailableExtensionProperties' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/auditlogs/directoryaudits", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgAuditLogDirectoryAudit", + "oracle": "no oracle row for POST /auditLogs/directoryAudits and 'New-MgAuditLogDirectoryAudit' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/auditlogs/provisioning", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgAuditLogProvisioning", + "oracle": "no oracle row for POST /auditLogs/provisioning and 'New-MgAuditLogProvisioning' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/auditlogs/signins", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgAuditLogSignIn", + "oracle": "no oracle row for POST /auditLogs/signIns and 'New-MgAuditLogSignIn' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/chats/{}/members/remove", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgChatMemberRemove", + "oracle": "no oracle row for POST /chats/{param}/members/remove and 'Invoke-MgChatMemberRemove' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/communications/callrecords", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgCommunicationCallRecord", + "oracle": "no oracle row for POST /communications/callRecords and 'New-MgCommunicationCallRecord' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/communications/callrecords/{}/sessions/{}/segments", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgCommunicationCallRecordSessionSegment", + "oracle": "no oracle row for POST /communications/callRecords/{param}/sessions/{param}/segments and 'New-MgCommunicationCallRecordSessionSegment' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/contacts/{}/restore", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgContactRestore", + "oracle": "no oracle row for POST /contacts/{param}/restore and 'Invoke-MgContactRestore' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/contacts/getavailableextensionproperties", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgContactGetAvailableExtensionProperties", + "oracle": "no oracle row for POST /contacts/getAvailableExtensionProperties and 'Invoke-MgContactGetAvailableExtensionProperties' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/contracts/{}/restore", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgContractRestore", + "oracle": "no oracle row for POST /contracts/{param}/restore and 'Invoke-MgContractRestore' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/contracts/getavailableextensionproperties", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgContractGetAvailableExtensionProperties", + "oracle": "no oracle row for POST /contracts/getAvailableExtensionProperties and 'Invoke-MgContractGetAvailableExtensionProperties' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/devicemanagement/manageddevices/{}/logcollectionrequests", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgDeviceManagementManagedDeviceLogCollectionRequest", + "oracle": "no oracle row for POST /deviceManagement/managedDevices/{param}/logCollectionRequests and 'New-MgDeviceManagementManagedDeviceLogCollectionRequest' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/devicemanagement/manageddevices/{}/windowsdefenderupdatesignatures", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDeviceManagementManagedDeviceWindowsDefenderUpdateSignatures", + "oracle": "no oracle row for POST /deviceManagement/managedDevices/{param}/windowsDefenderUpdateSignatures and 'Invoke-MgDeviceManagementManagedDeviceWindowsDefenderUpdateSignatures' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/devicemanagement/reports/exportjobs", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgDeviceManagementReportExportJob", + "oracle": "no oracle row for POST /deviceManagement/reports/exportJobs and 'New-MgDeviceManagementReportExportJob' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/devicemanagement/virtualendpoint/auditevents", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgDeviceManagementVirtualEndpointAuditEvent", + "oracle": "no oracle row for POST /deviceManagement/virtualEndpoint/auditEvents and 'New-MgDeviceManagementVirtualEndpointAuditEvent' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/devicemanagement/virtualendpoint/cloudpcs", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgDeviceManagementVirtualEndpointCloudPCs", + "oracle": "no oracle row for POST /deviceManagement/virtualEndpoint/cloudPCs and 'New-MgDeviceManagementVirtualEndpointCloudPCs' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/devices/{}/restore", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDeviceRestore", + "oracle": "no oracle row for POST /devices/{param}/restore and 'Invoke-MgDeviceRestore' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/devices/getavailableextensionproperties", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDeviceGetAvailableExtensionProperties", + "oracle": "no oracle row for POST /devices/getAvailableExtensionProperties and 'Invoke-MgDeviceGetAvailableExtensionProperties' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/directory/deleteditems/getavailableextensionproperties", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDirectoryDeletedItemGetAvailableExtensionProperties", + "oracle": "no oracle row for POST /directory/deletedItems/getAvailableExtensionProperties and 'Invoke-MgDirectoryDeletedItemGetAvailableExtensionProperties' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/directoryobjects/{}/restore", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDirectoryObjectRestore", + "oracle": "no oracle row for POST /directoryObjects/{param}/restore and 'Invoke-MgDirectoryObjectRestore' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/directoryroles/{}/restore", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDirectoryRoleRestore", + "oracle": "no oracle row for POST /directoryRoles/{param}/restore and 'Invoke-MgDirectoryRoleRestore' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/directoryroles/getavailableextensionproperties", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDirectoryRoleGetAvailableExtensionProperties", + "oracle": "no oracle row for POST /directoryRoles/getAvailableExtensionProperties and 'Invoke-MgDirectoryRoleGetAvailableExtensionProperties' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/directoryroletemplates/{}/restore", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDirectoryRoleTemplateRestore", + "oracle": "no oracle row for POST /directoryRoleTemplates/{param}/restore and 'Invoke-MgDirectoryRoleTemplateRestore' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/directoryroletemplates/getavailableextensionproperties", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDirectoryRoleTemplateGetAvailableExtensionProperties", + "oracle": "no oracle row for POST /directoryRoleTemplates/getAvailableExtensionProperties and 'Invoke-MgDirectoryRoleTemplateGetAvailableExtensionProperties' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/analytics/itemactivitystats/{}/activities", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgDriveItemAnalyticItemActivityStatActivity", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/analytics/itemActivityStats/{param}/activities and 'New-MgDriveItemAnalyticItemActivityStatActivity' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/application/calculate", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookApplicationCalculate", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/application/calculate and 'Invoke-MgDriveItemWorkbookApplicationCalculate' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/closesession", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookCloseSession", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/closeSession and 'Invoke-MgDriveItemWorkbookCloseSession' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/comments", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgDriveItemWorkbookComment", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/comments and 'New-MgDriveItemWorkbookComment' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/comments/{}/replies", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgDriveItemWorkbookCommentReply", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/comments/{param}/replies and 'New-MgDriveItemWorkbookCommentReply' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/createsession", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookCreateSession", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/createSession and 'Invoke-MgDriveItemWorkbookCreateSession' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/$count", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionCount", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/$count and 'Invoke-MgDriveItemWorkbookFunctionCount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/abs", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionAbs", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/abs and 'Invoke-MgDriveItemWorkbookFunctionAbs' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/accrint", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionAccrInt", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/accrInt and 'Invoke-MgDriveItemWorkbookFunctionAccrInt' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/accrintm", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionAccrIntM", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/accrIntM and 'Invoke-MgDriveItemWorkbookFunctionAccrIntM' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/acos", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionAcos", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/acos and 'Invoke-MgDriveItemWorkbookFunctionAcos' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/acosh", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionAcosh", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/acosh and 'Invoke-MgDriveItemWorkbookFunctionAcosh' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/acot", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionAcot", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/acot and 'Invoke-MgDriveItemWorkbookFunctionAcot' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/acoth", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionAcoth", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/acoth and 'Invoke-MgDriveItemWorkbookFunctionAcoth' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/amordegrc", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionAmorDegrc", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/amorDegrc and 'Invoke-MgDriveItemWorkbookFunctionAmorDegrc' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/amorlinc", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionAmorLinc", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/amorLinc and 'Invoke-MgDriveItemWorkbookFunctionAmorLinc' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/and", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionAnd", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/and and 'Invoke-MgDriveItemWorkbookFunctionAnd' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/arabic", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionArabic", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/arabic and 'Invoke-MgDriveItemWorkbookFunctionArabic' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/areas", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionAreas", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/areas and 'Invoke-MgDriveItemWorkbookFunctionAreas' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/asc", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionAsc", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/asc and 'Invoke-MgDriveItemWorkbookFunctionAsc' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/asin", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionAsin", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/asin and 'Invoke-MgDriveItemWorkbookFunctionAsin' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/asinh", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionAsinh", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/asinh and 'Invoke-MgDriveItemWorkbookFunctionAsinh' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/atan", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionAtan", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/atan and 'Invoke-MgDriveItemWorkbookFunctionAtan' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/atan2", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionAtan2", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/atan2 and 'Invoke-MgDriveItemWorkbookFunctionAtan2' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/atanh", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionAtanh", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/atanh and 'Invoke-MgDriveItemWorkbookFunctionAtanh' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/avedev", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionAveDev", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/aveDev and 'Invoke-MgDriveItemWorkbookFunctionAveDev' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/average", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionAverage", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/average and 'Invoke-MgDriveItemWorkbookFunctionAverage' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/averagea", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionAverageA", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/averageA and 'Invoke-MgDriveItemWorkbookFunctionAverageA' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/averageif", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionAverageIf", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/averageIf and 'Invoke-MgDriveItemWorkbookFunctionAverageIf' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/averageifs", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionAverageIfs", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/averageIfs and 'Invoke-MgDriveItemWorkbookFunctionAverageIfs' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/bahttext", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionBahtText", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/bahtText and 'Invoke-MgDriveItemWorkbookFunctionBahtText' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/base", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionBase", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/base and 'Invoke-MgDriveItemWorkbookFunctionBase' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/besseli", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionBesselI", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/besselI and 'Invoke-MgDriveItemWorkbookFunctionBesselI' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/besselj", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionBesselJ", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/besselJ and 'Invoke-MgDriveItemWorkbookFunctionBesselJ' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/besselk", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionBesselK", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/besselK and 'Invoke-MgDriveItemWorkbookFunctionBesselK' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/bessely", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionBesselY", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/besselY and 'Invoke-MgDriveItemWorkbookFunctionBesselY' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/bin2dec", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionBin2Dec", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/bin2Dec and 'Invoke-MgDriveItemWorkbookFunctionBin2Dec' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/bin2hex", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionBin2Hex", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/bin2Hex and 'Invoke-MgDriveItemWorkbookFunctionBin2Hex' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/bin2oct", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionBin2Oct", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/bin2Oct and 'Invoke-MgDriveItemWorkbookFunctionBin2Oct' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/bitand", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionBitand", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/bitand and 'Invoke-MgDriveItemWorkbookFunctionBitand' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/bitlshift", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionBitlshift", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/bitlshift and 'Invoke-MgDriveItemWorkbookFunctionBitlshift' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/bitor", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionBitor", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/bitor and 'Invoke-MgDriveItemWorkbookFunctionBitor' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/bitrshift", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionBitrshift", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/bitrshift and 'Invoke-MgDriveItemWorkbookFunctionBitrshift' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/bitxor", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionBitxor", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/bitxor and 'Invoke-MgDriveItemWorkbookFunctionBitxor' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/char", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionChar", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/char and 'Invoke-MgDriveItemWorkbookFunctionChar' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/choose", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionChoose", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/choose and 'Invoke-MgDriveItemWorkbookFunctionChoose' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/clean", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionClean", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/clean and 'Invoke-MgDriveItemWorkbookFunctionClean' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/code", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionCode", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/code and 'Invoke-MgDriveItemWorkbookFunctionCode' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/columns", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionColumns", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/columns and 'Invoke-MgDriveItemWorkbookFunctionColumns' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/combin", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionCombin", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/combin and 'Invoke-MgDriveItemWorkbookFunctionCombin' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/combina", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionCombina", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/combina and 'Invoke-MgDriveItemWorkbookFunctionCombina' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/complex", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionComplex", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/complex and 'Invoke-MgDriveItemWorkbookFunctionComplex' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/concatenate", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionConcatenate", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/concatenate and 'Invoke-MgDriveItemWorkbookFunctionConcatenate' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/convert", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionConvert", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/convert and 'Invoke-MgDriveItemWorkbookFunctionConvert' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/cos", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionCos", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/cos and 'Invoke-MgDriveItemWorkbookFunctionCos' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/cosh", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionCosh", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/cosh and 'Invoke-MgDriveItemWorkbookFunctionCosh' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/cot", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionCot", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/cot and 'Invoke-MgDriveItemWorkbookFunctionCot' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/coth", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionCoth", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/coth and 'Invoke-MgDriveItemWorkbookFunctionCoth' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/counta", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionCountA", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/countA and 'Invoke-MgDriveItemWorkbookFunctionCountA' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/countblank", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionCountBlank", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/countBlank and 'Invoke-MgDriveItemWorkbookFunctionCountBlank' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/countif", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionCountIf", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/countIf and 'Invoke-MgDriveItemWorkbookFunctionCountIf' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/countifs", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionCountIfs", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/countIfs and 'Invoke-MgDriveItemWorkbookFunctionCountIfs' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/coupdaybs", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionCoupDayBs", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/coupDayBs and 'Invoke-MgDriveItemWorkbookFunctionCoupDayBs' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/coupdays", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionCoupDays", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/coupDays and 'Invoke-MgDriveItemWorkbookFunctionCoupDays' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/coupdaysnc", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionCoupDaysNc", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/coupDaysNc and 'Invoke-MgDriveItemWorkbookFunctionCoupDaysNc' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/coupncd", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionCoupNcd", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/coupNcd and 'Invoke-MgDriveItemWorkbookFunctionCoupNcd' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/coupnum", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionCoupNum", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/coupNum and 'Invoke-MgDriveItemWorkbookFunctionCoupNum' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/couppcd", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionCoupPcd", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/coupPcd and 'Invoke-MgDriveItemWorkbookFunctionCoupPcd' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/csc", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionCsc", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/csc and 'Invoke-MgDriveItemWorkbookFunctionCsc' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/csch", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionCsch", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/csch and 'Invoke-MgDriveItemWorkbookFunctionCsch' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/cumipmt", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionCumIPmt", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/cumIPmt and 'Invoke-MgDriveItemWorkbookFunctionCumIPmt' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/cumprinc", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionCumPrinc", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/cumPrinc and 'Invoke-MgDriveItemWorkbookFunctionCumPrinc' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/date", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionDate", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/date and 'Invoke-MgDriveItemWorkbookFunctionDate' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/datevalue", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionDatevalue", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/datevalue and 'Invoke-MgDriveItemWorkbookFunctionDatevalue' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/daverage", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionDaverage", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/daverage and 'Invoke-MgDriveItemWorkbookFunctionDaverage' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/day", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionDay", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/day and 'Invoke-MgDriveItemWorkbookFunctionDay' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/days", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionDays", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/days and 'Invoke-MgDriveItemWorkbookFunctionDays' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/days360", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionDays360", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/days360 and 'Invoke-MgDriveItemWorkbookFunctionDays360' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/db", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionDb", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/db and 'Invoke-MgDriveItemWorkbookFunctionDb' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/dbcs", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionDbcs", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/dbcs and 'Invoke-MgDriveItemWorkbookFunctionDbcs' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/dcount", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionDcount", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/dcount and 'Invoke-MgDriveItemWorkbookFunctionDcount' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/dcounta", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionDcountA", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/dcountA and 'Invoke-MgDriveItemWorkbookFunctionDcountA' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/ddb", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionDdb", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/ddb and 'Invoke-MgDriveItemWorkbookFunctionDdb' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/dec2bin", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionDec2Bin", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/dec2Bin and 'Invoke-MgDriveItemWorkbookFunctionDec2Bin' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/dec2hex", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionDec2Hex", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/dec2Hex and 'Invoke-MgDriveItemWorkbookFunctionDec2Hex' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/dec2oct", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionDec2Oct", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/dec2Oct and 'Invoke-MgDriveItemWorkbookFunctionDec2Oct' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/decimal", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionDecimal", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/decimal and 'Invoke-MgDriveItemWorkbookFunctionDecimal' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/degrees", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionDegrees", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/degrees and 'Invoke-MgDriveItemWorkbookFunctionDegrees' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/delta", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionDelta", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/delta and 'Invoke-MgDriveItemWorkbookFunctionDelta' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/devsq", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionDevSq", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/devSq and 'Invoke-MgDriveItemWorkbookFunctionDevSq' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/dget", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionDget", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/dget and 'Invoke-MgDriveItemWorkbookFunctionDget' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/disc", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionDisc", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/disc and 'Invoke-MgDriveItemWorkbookFunctionDisc' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/dmax", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionDmax", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/dmax and 'Invoke-MgDriveItemWorkbookFunctionDmax' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/dmin", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionDmin", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/dmin and 'Invoke-MgDriveItemWorkbookFunctionDmin' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/dollar", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionDollar", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/dollar and 'Invoke-MgDriveItemWorkbookFunctionDollar' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/dollarde", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionDollarDe", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/dollarDe and 'Invoke-MgDriveItemWorkbookFunctionDollarDe' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/dollarfr", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionDollarFr", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/dollarFr and 'Invoke-MgDriveItemWorkbookFunctionDollarFr' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/dproduct", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionDproduct", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/dproduct and 'Invoke-MgDriveItemWorkbookFunctionDproduct' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/dstdev", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionDstDev", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/dstDev and 'Invoke-MgDriveItemWorkbookFunctionDstDev' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/dstdevp", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionDstDevP", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/dstDevP and 'Invoke-MgDriveItemWorkbookFunctionDstDevP' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/dsum", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionDsum", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/dsum and 'Invoke-MgDriveItemWorkbookFunctionDsum' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/duration", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionDuration", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/duration and 'Invoke-MgDriveItemWorkbookFunctionDuration' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/dvar", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionDvar", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/dvar and 'Invoke-MgDriveItemWorkbookFunctionDvar' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/dvarp", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionDvarP", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/dvarP and 'Invoke-MgDriveItemWorkbookFunctionDvarP' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/edate", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionEdate", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/edate and 'Invoke-MgDriveItemWorkbookFunctionEdate' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/effect", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionEffect", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/effect and 'Invoke-MgDriveItemWorkbookFunctionEffect' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/eomonth", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionEoMonth", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/eoMonth and 'Invoke-MgDriveItemWorkbookFunctionEoMonth' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/erf", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionErf", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/erf and 'Invoke-MgDriveItemWorkbookFunctionErf' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/erfc", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionErfC", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/erfC and 'Invoke-MgDriveItemWorkbookFunctionErfC' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/even", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionEven", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/even and 'Invoke-MgDriveItemWorkbookFunctionEven' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/exact", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionExact", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/exact and 'Invoke-MgDriveItemWorkbookFunctionExact' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/exp", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionExp", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/exp and 'Invoke-MgDriveItemWorkbookFunctionExp' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/fact", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionFact", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/fact and 'Invoke-MgDriveItemWorkbookFunctionFact' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/factdouble", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionFactDouble", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/factDouble and 'Invoke-MgDriveItemWorkbookFunctionFactDouble' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/false", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionFalse", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/false and 'Invoke-MgDriveItemWorkbookFunctionFalse' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/find", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionFind", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/find and 'Invoke-MgDriveItemWorkbookFunctionFind' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/findb", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionFindB", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/findB and 'Invoke-MgDriveItemWorkbookFunctionFindB' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/fisher", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionFisher", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/fisher and 'Invoke-MgDriveItemWorkbookFunctionFisher' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/fisherinv", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionFisherInv", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/fisherInv and 'Invoke-MgDriveItemWorkbookFunctionFisherInv' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/fixed", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionFixed", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/fixed and 'Invoke-MgDriveItemWorkbookFunctionFixed' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/fv", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionFv", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/fv and 'Invoke-MgDriveItemWorkbookFunctionFv' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/fvschedule", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionFvschedule", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/fvschedule and 'Invoke-MgDriveItemWorkbookFunctionFvschedule' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/gamma", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionGamma", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/gamma and 'Invoke-MgDriveItemWorkbookFunctionGamma' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/gammaln", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionGammaLn", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/gammaLn and 'Invoke-MgDriveItemWorkbookFunctionGammaLn' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/gauss", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionGauss", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/gauss and 'Invoke-MgDriveItemWorkbookFunctionGauss' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/gcd", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionGcd", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/gcd and 'Invoke-MgDriveItemWorkbookFunctionGcd' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/geomean", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionGeoMean", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/geoMean and 'Invoke-MgDriveItemWorkbookFunctionGeoMean' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/gestep", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionGeStep", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/geStep and 'Invoke-MgDriveItemWorkbookFunctionGeStep' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/harmean", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionHarMean", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/harMean and 'Invoke-MgDriveItemWorkbookFunctionHarMean' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/hex2bin", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionHex2Bin", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/hex2Bin and 'Invoke-MgDriveItemWorkbookFunctionHex2Bin' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/hex2dec", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionHex2Dec", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/hex2Dec and 'Invoke-MgDriveItemWorkbookFunctionHex2Dec' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/hex2oct", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionHex2Oct", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/hex2Oct and 'Invoke-MgDriveItemWorkbookFunctionHex2Oct' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/hlookup", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionHlookup", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/hlookup and 'Invoke-MgDriveItemWorkbookFunctionHlookup' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/hour", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionHour", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/hour and 'Invoke-MgDriveItemWorkbookFunctionHour' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/hyperlink", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionHyperlink", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/hyperlink and 'Invoke-MgDriveItemWorkbookFunctionHyperlink' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/if", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionIf", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/if and 'Invoke-MgDriveItemWorkbookFunctionIf' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/imabs", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionImAbs", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/imAbs and 'Invoke-MgDriveItemWorkbookFunctionImAbs' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/imaginary", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionImaginary", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/imaginary and 'Invoke-MgDriveItemWorkbookFunctionImaginary' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/imargument", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionImArgument", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/imArgument and 'Invoke-MgDriveItemWorkbookFunctionImArgument' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/imconjugate", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionImConjugate", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/imConjugate and 'Invoke-MgDriveItemWorkbookFunctionImConjugate' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/imcos", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionImCos", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/imCos and 'Invoke-MgDriveItemWorkbookFunctionImCos' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/imcosh", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionImCosh", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/imCosh and 'Invoke-MgDriveItemWorkbookFunctionImCosh' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/imcot", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionImCot", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/imCot and 'Invoke-MgDriveItemWorkbookFunctionImCot' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/imcsc", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionImCsc", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/imCsc and 'Invoke-MgDriveItemWorkbookFunctionImCsc' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/imcsch", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionImCsch", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/imCsch and 'Invoke-MgDriveItemWorkbookFunctionImCsch' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/imdiv", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionImDiv", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/imDiv and 'Invoke-MgDriveItemWorkbookFunctionImDiv' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/imexp", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionImExp", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/imExp and 'Invoke-MgDriveItemWorkbookFunctionImExp' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/imln", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionImLn", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/imLn and 'Invoke-MgDriveItemWorkbookFunctionImLn' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/imlog10", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionImLog10", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/imLog10 and 'Invoke-MgDriveItemWorkbookFunctionImLog10' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/imlog2", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionImLog2", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/imLog2 and 'Invoke-MgDriveItemWorkbookFunctionImLog2' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/impower", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionImPower", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/imPower and 'Invoke-MgDriveItemWorkbookFunctionImPower' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/improduct", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionImProduct", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/imProduct and 'Invoke-MgDriveItemWorkbookFunctionImProduct' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/imreal", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionImReal", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/imReal and 'Invoke-MgDriveItemWorkbookFunctionImReal' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/imsec", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionImSec", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/imSec and 'Invoke-MgDriveItemWorkbookFunctionImSec' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/imsech", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionImSech", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/imSech and 'Invoke-MgDriveItemWorkbookFunctionImSech' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/imsin", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionImSin", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/imSin and 'Invoke-MgDriveItemWorkbookFunctionImSin' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/imsinh", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionImSinh", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/imSinh and 'Invoke-MgDriveItemWorkbookFunctionImSinh' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/imsqrt", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionImSqrt", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/imSqrt and 'Invoke-MgDriveItemWorkbookFunctionImSqrt' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/imsub", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionImSub", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/imSub and 'Invoke-MgDriveItemWorkbookFunctionImSub' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/imsum", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionImSum", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/imSum and 'Invoke-MgDriveItemWorkbookFunctionImSum' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/imtan", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionImTan", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/imTan and 'Invoke-MgDriveItemWorkbookFunctionImTan' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/int", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionInt", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/int and 'Invoke-MgDriveItemWorkbookFunctionInt' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/intrate", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionIntRate", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/intRate and 'Invoke-MgDriveItemWorkbookFunctionIntRate' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/ipmt", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionIpmt", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/ipmt and 'Invoke-MgDriveItemWorkbookFunctionIpmt' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/irr", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionIrr", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/irr and 'Invoke-MgDriveItemWorkbookFunctionIrr' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/iserr", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionIsErr", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/isErr and 'Invoke-MgDriveItemWorkbookFunctionIsErr' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/iserror", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionIsError", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/isError and 'Invoke-MgDriveItemWorkbookFunctionIsError' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/iseven", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionIsEven", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/isEven and 'Invoke-MgDriveItemWorkbookFunctionIsEven' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/isformula", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionIsFormula", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/isFormula and 'Invoke-MgDriveItemWorkbookFunctionIsFormula' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/islogical", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionIsLogical", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/isLogical and 'Invoke-MgDriveItemWorkbookFunctionIsLogical' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/isna", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionIsNA", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/isNA and 'Invoke-MgDriveItemWorkbookFunctionIsNA' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/isnontext", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionIsNonText", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/isNonText and 'Invoke-MgDriveItemWorkbookFunctionIsNonText' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/isnumber", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionIsNumber", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/isNumber and 'Invoke-MgDriveItemWorkbookFunctionIsNumber' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/isodd", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionIsOdd", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/isOdd and 'Invoke-MgDriveItemWorkbookFunctionIsOdd' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/isoweeknum", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionIsoWeekNum", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/isoWeekNum and 'Invoke-MgDriveItemWorkbookFunctionIsoWeekNum' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/ispmt", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionIspmt", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/ispmt and 'Invoke-MgDriveItemWorkbookFunctionIspmt' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/isref", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionIsref", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/isref and 'Invoke-MgDriveItemWorkbookFunctionIsref' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/istext", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionIsText", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/isText and 'Invoke-MgDriveItemWorkbookFunctionIsText' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/kurt", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionKurt", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/kurt and 'Invoke-MgDriveItemWorkbookFunctionKurt' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/large", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionLarge", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/large and 'Invoke-MgDriveItemWorkbookFunctionLarge' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/lcm", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionLcm", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/lcm and 'Invoke-MgDriveItemWorkbookFunctionLcm' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/left", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionLeft", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/left and 'Invoke-MgDriveItemWorkbookFunctionLeft' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/leftb", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionLeftb", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/leftb and 'Invoke-MgDriveItemWorkbookFunctionLeftb' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/len", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionLen", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/len and 'Invoke-MgDriveItemWorkbookFunctionLen' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/lenb", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionLenb", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/lenb and 'Invoke-MgDriveItemWorkbookFunctionLenb' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/ln", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionLn", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/ln and 'Invoke-MgDriveItemWorkbookFunctionLn' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/log", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionLog", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/log and 'Invoke-MgDriveItemWorkbookFunctionLog' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/log10", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionLog10", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/log10 and 'Invoke-MgDriveItemWorkbookFunctionLog10' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/lookup", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionLookup", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/lookup and 'Invoke-MgDriveItemWorkbookFunctionLookup' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/lower", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionLower", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/lower and 'Invoke-MgDriveItemWorkbookFunctionLower' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/match", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionMatch", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/match and 'Invoke-MgDriveItemWorkbookFunctionMatch' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/max", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionMax", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/max and 'Invoke-MgDriveItemWorkbookFunctionMax' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/maxa", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionMaxA", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/maxA and 'Invoke-MgDriveItemWorkbookFunctionMaxA' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/mduration", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionMduration", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/mduration and 'Invoke-MgDriveItemWorkbookFunctionMduration' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/median", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionMedian", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/median and 'Invoke-MgDriveItemWorkbookFunctionMedian' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/mid", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionMid", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/mid and 'Invoke-MgDriveItemWorkbookFunctionMid' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/midb", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionMidb", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/midb and 'Invoke-MgDriveItemWorkbookFunctionMidb' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/min", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionMin", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/min and 'Invoke-MgDriveItemWorkbookFunctionMin' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/mina", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionMinA", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/minA and 'Invoke-MgDriveItemWorkbookFunctionMinA' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/minute", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionMinute", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/minute and 'Invoke-MgDriveItemWorkbookFunctionMinute' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/mirr", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionMirr", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/mirr and 'Invoke-MgDriveItemWorkbookFunctionMirr' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/mod", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionMod", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/mod and 'Invoke-MgDriveItemWorkbookFunctionMod' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/month", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionMonth", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/month and 'Invoke-MgDriveItemWorkbookFunctionMonth' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/mround", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionMround", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/mround and 'Invoke-MgDriveItemWorkbookFunctionMround' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/multinomial", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionMultiNomial", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/multiNomial and 'Invoke-MgDriveItemWorkbookFunctionMultiNomial' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/n", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionN", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/n and 'Invoke-MgDriveItemWorkbookFunctionN' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/na", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionNa", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/na and 'Invoke-MgDriveItemWorkbookFunctionNa' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/networkdays", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionNetworkDays", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/networkDays and 'Invoke-MgDriveItemWorkbookFunctionNetworkDays' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/nominal", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionNominal", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/nominal and 'Invoke-MgDriveItemWorkbookFunctionNominal' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/not", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionNot", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/not and 'Invoke-MgDriveItemWorkbookFunctionNot' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/now", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionNow", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/now and 'Invoke-MgDriveItemWorkbookFunctionNow' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/nper", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionNper", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/nper and 'Invoke-MgDriveItemWorkbookFunctionNper' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/npv", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionNpv", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/npv and 'Invoke-MgDriveItemWorkbookFunctionNpv' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/numbervalue", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionNumberValue", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/numberValue and 'Invoke-MgDriveItemWorkbookFunctionNumberValue' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/oct2bin", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionOct2Bin", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/oct2Bin and 'Invoke-MgDriveItemWorkbookFunctionOct2Bin' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/oct2dec", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionOct2Dec", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/oct2Dec and 'Invoke-MgDriveItemWorkbookFunctionOct2Dec' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/oct2hex", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionOct2Hex", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/oct2Hex and 'Invoke-MgDriveItemWorkbookFunctionOct2Hex' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/odd", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionOdd", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/odd and 'Invoke-MgDriveItemWorkbookFunctionOdd' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/oddfprice", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionOddFPrice", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/oddFPrice and 'Invoke-MgDriveItemWorkbookFunctionOddFPrice' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/oddfyield", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionOddFYield", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/oddFYield and 'Invoke-MgDriveItemWorkbookFunctionOddFYield' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/oddlprice", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionOddLPrice", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/oddLPrice and 'Invoke-MgDriveItemWorkbookFunctionOddLPrice' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/oddlyield", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionOddLYield", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/oddLYield and 'Invoke-MgDriveItemWorkbookFunctionOddLYield' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/or", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionOr", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/or and 'Invoke-MgDriveItemWorkbookFunctionOr' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/pduration", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionPduration", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/pduration and 'Invoke-MgDriveItemWorkbookFunctionPduration' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/permut", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionPermut", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/permut and 'Invoke-MgDriveItemWorkbookFunctionPermut' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/permutationa", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionPermutationa", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/permutationa and 'Invoke-MgDriveItemWorkbookFunctionPermutationa' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/phi", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionPhi", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/phi and 'Invoke-MgDriveItemWorkbookFunctionPhi' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/pi", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionPi", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/pi and 'Invoke-MgDriveItemWorkbookFunctionPi' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/pmt", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionPmt", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/pmt and 'Invoke-MgDriveItemWorkbookFunctionPmt' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/power", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionPower", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/power and 'Invoke-MgDriveItemWorkbookFunctionPower' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/ppmt", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionPpmt", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/ppmt and 'Invoke-MgDriveItemWorkbookFunctionPpmt' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/price", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionPrice", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/price and 'Invoke-MgDriveItemWorkbookFunctionPrice' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/pricedisc", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionPriceDisc", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/priceDisc and 'Invoke-MgDriveItemWorkbookFunctionPriceDisc' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/pricemat", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionPriceMat", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/priceMat and 'Invoke-MgDriveItemWorkbookFunctionPriceMat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/product", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionProduct", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/product and 'Invoke-MgDriveItemWorkbookFunctionProduct' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/proper", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionProper", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/proper and 'Invoke-MgDriveItemWorkbookFunctionProper' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/pv", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionPv", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/pv and 'Invoke-MgDriveItemWorkbookFunctionPv' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/quotient", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionQuotient", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/quotient and 'Invoke-MgDriveItemWorkbookFunctionQuotient' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/radians", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionRadians", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/radians and 'Invoke-MgDriveItemWorkbookFunctionRadians' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/rand", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionRand", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/rand and 'Invoke-MgDriveItemWorkbookFunctionRand' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/randbetween", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionRandBetween", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/randBetween and 'Invoke-MgDriveItemWorkbookFunctionRandBetween' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/rate", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionRate", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/rate and 'Invoke-MgDriveItemWorkbookFunctionRate' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/received", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionReceived", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/received and 'Invoke-MgDriveItemWorkbookFunctionReceived' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/replace", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionReplace", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/replace and 'Invoke-MgDriveItemWorkbookFunctionReplace' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/replaceb", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionReplaceB", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/replaceB and 'Invoke-MgDriveItemWorkbookFunctionReplaceB' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/rept", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionRept", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/rept and 'Invoke-MgDriveItemWorkbookFunctionRept' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/right", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionRight", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/right and 'Invoke-MgDriveItemWorkbookFunctionRight' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/rightb", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionRightb", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/rightb and 'Invoke-MgDriveItemWorkbookFunctionRightb' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/roman", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionRoman", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/roman and 'Invoke-MgDriveItemWorkbookFunctionRoman' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/round", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionRound", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/round and 'Invoke-MgDriveItemWorkbookFunctionRound' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/rounddown", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionRoundDown", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/roundDown and 'Invoke-MgDriveItemWorkbookFunctionRoundDown' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/roundup", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionRoundUp", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/roundUp and 'Invoke-MgDriveItemWorkbookFunctionRoundUp' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/rows", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionRows", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/rows and 'Invoke-MgDriveItemWorkbookFunctionRows' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/rri", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionRri", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/rri and 'Invoke-MgDriveItemWorkbookFunctionRri' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/sec", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionSec", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/sec and 'Invoke-MgDriveItemWorkbookFunctionSec' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/sech", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionSech", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/sech and 'Invoke-MgDriveItemWorkbookFunctionSech' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/second", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionSecond", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/second and 'Invoke-MgDriveItemWorkbookFunctionSecond' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/seriessum", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionSeriesSum", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/seriesSum and 'Invoke-MgDriveItemWorkbookFunctionSeriesSum' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/sheet", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionSheet", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/sheet and 'Invoke-MgDriveItemWorkbookFunctionSheet' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/sheets", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionSheets", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/sheets and 'Invoke-MgDriveItemWorkbookFunctionSheets' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/sign", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionSign", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/sign and 'Invoke-MgDriveItemWorkbookFunctionSign' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/sin", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionSin", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/sin and 'Invoke-MgDriveItemWorkbookFunctionSin' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/sinh", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionSinh", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/sinh and 'Invoke-MgDriveItemWorkbookFunctionSinh' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/skew", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionSkew", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/skew and 'Invoke-MgDriveItemWorkbookFunctionSkew' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/sln", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionSln", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/sln and 'Invoke-MgDriveItemWorkbookFunctionSln' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/small", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionSmall", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/small and 'Invoke-MgDriveItemWorkbookFunctionSmall' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/sqrt", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionSqrt", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/sqrt and 'Invoke-MgDriveItemWorkbookFunctionSqrt' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/sqrtpi", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionSqrtPi", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/sqrtPi and 'Invoke-MgDriveItemWorkbookFunctionSqrtPi' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/standardize", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionStandardize", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/standardize and 'Invoke-MgDriveItemWorkbookFunctionStandardize' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/stdeva", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionStDevA", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/stDevA and 'Invoke-MgDriveItemWorkbookFunctionStDevA' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/stdevpa", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionStDevPA", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/stDevPA and 'Invoke-MgDriveItemWorkbookFunctionStDevPA' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/substitute", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionSubstitute", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/substitute and 'Invoke-MgDriveItemWorkbookFunctionSubstitute' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/subtotal", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionSubtotal", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/subtotal and 'Invoke-MgDriveItemWorkbookFunctionSubtotal' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/sum", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionSum", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/sum and 'Invoke-MgDriveItemWorkbookFunctionSum' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/sumif", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionSumIf", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/sumIf and 'Invoke-MgDriveItemWorkbookFunctionSumIf' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/sumifs", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionSumIfs", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/sumIfs and 'Invoke-MgDriveItemWorkbookFunctionSumIfs' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/sumsq", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionSumSq", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/sumSq and 'Invoke-MgDriveItemWorkbookFunctionSumSq' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/syd", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionSyd", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/syd and 'Invoke-MgDriveItemWorkbookFunctionSyd' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/t", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionT", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/t and 'Invoke-MgDriveItemWorkbookFunctionT' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/tan", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionTan", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/tan and 'Invoke-MgDriveItemWorkbookFunctionTan' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/tanh", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionTanh", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/tanh and 'Invoke-MgDriveItemWorkbookFunctionTanh' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/tbilleq", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionTbillEq", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/tbillEq and 'Invoke-MgDriveItemWorkbookFunctionTbillEq' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/tbillprice", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionTbillPrice", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/tbillPrice and 'Invoke-MgDriveItemWorkbookFunctionTbillPrice' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/tbillyield", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionTbillYield", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/tbillYield and 'Invoke-MgDriveItemWorkbookFunctionTbillYield' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/text", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionText", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/text and 'Invoke-MgDriveItemWorkbookFunctionText' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/time", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionTime", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/time and 'Invoke-MgDriveItemWorkbookFunctionTime' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/timevalue", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionTimevalue", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/timevalue and 'Invoke-MgDriveItemWorkbookFunctionTimevalue' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/today", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionToday", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/today and 'Invoke-MgDriveItemWorkbookFunctionToday' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/trim", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionTrim", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/trim and 'Invoke-MgDriveItemWorkbookFunctionTrim' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/trimmean", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionTrimMean", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/trimMean and 'Invoke-MgDriveItemWorkbookFunctionTrimMean' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/true", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionTrue", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/true and 'Invoke-MgDriveItemWorkbookFunctionTrue' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/trunc", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionTrunc", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/trunc and 'Invoke-MgDriveItemWorkbookFunctionTrunc' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/type", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionType", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/type and 'Invoke-MgDriveItemWorkbookFunctionType' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/unichar", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionUnichar", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/unichar and 'Invoke-MgDriveItemWorkbookFunctionUnichar' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/unicode", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionUnicode", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/unicode and 'Invoke-MgDriveItemWorkbookFunctionUnicode' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/upper", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionUpper", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/upper and 'Invoke-MgDriveItemWorkbookFunctionUpper' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/usdollar", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionUsdollar", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/usdollar and 'Invoke-MgDriveItemWorkbookFunctionUsdollar' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/value", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionValue", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/value and 'Invoke-MgDriveItemWorkbookFunctionValue' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/vara", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionVarA", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/varA and 'Invoke-MgDriveItemWorkbookFunctionVarA' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/varpa", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionVarPA", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/varPA and 'Invoke-MgDriveItemWorkbookFunctionVarPA' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/vdb", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionVdb", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/vdb and 'Invoke-MgDriveItemWorkbookFunctionVdb' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/vlookup", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionVlookup", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/vlookup and 'Invoke-MgDriveItemWorkbookFunctionVlookup' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/weekday", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionWeekday", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/weekday and 'Invoke-MgDriveItemWorkbookFunctionWeekday' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/weeknum", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionWeekNum", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/weekNum and 'Invoke-MgDriveItemWorkbookFunctionWeekNum' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/workday", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionWorkDay", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/workDay and 'Invoke-MgDriveItemWorkbookFunctionWorkDay' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/xirr", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionXirr", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/xirr and 'Invoke-MgDriveItemWorkbookFunctionXirr' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/xnpv", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionXnpv", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/xnpv and 'Invoke-MgDriveItemWorkbookFunctionXnpv' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/xor", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionXor", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/xor and 'Invoke-MgDriveItemWorkbookFunctionXor' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/year", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionYear", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/year and 'Invoke-MgDriveItemWorkbookFunctionYear' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/yearfrac", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionYearFrac", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/yearFrac and 'Invoke-MgDriveItemWorkbookFunctionYearFrac' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/yield", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionYield", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/yield and 'Invoke-MgDriveItemWorkbookFunctionYield' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/yielddisc", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionYieldDisc", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/yieldDisc and 'Invoke-MgDriveItemWorkbookFunctionYieldDisc' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/functions/yieldmat", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookFunctionYieldMat", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/functions/yieldMat and 'Invoke-MgDriveItemWorkbookFunctionYieldMat' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/names", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgDriveItemWorkbookName", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/names and 'New-MgDriveItemWorkbookName' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/names/{}/range/clear", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookNameRangeClear", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/names/{param}/range/clear and 'Invoke-MgDriveItemWorkbookNameRangeClear' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/names/{}/range/delete", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookNameRangeDelete", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/names/{param}/range/delete and 'Invoke-MgDriveItemWorkbookNameRangeDelete' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/names/{}/range/insert", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookNameRangeInsert", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/names/{param}/range/insert and 'Invoke-MgDriveItemWorkbookNameRangeInsert' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/names/{}/range/merge", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookNameRangeMerge", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/names/{param}/range/merge and 'Invoke-MgDriveItemWorkbookNameRangeMerge' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/names/{}/range/unmerge", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookNameRangeUnmerge", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/names/{param}/range/unmerge and 'Invoke-MgDriveItemWorkbookNameRangeUnmerge' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/names/add", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookNameAdd", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/names/add and 'Invoke-MgDriveItemWorkbookNameAdd' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/names/addformulalocal", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookNameAddFormulaLocal", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/names/addFormulaLocal and 'Invoke-MgDriveItemWorkbookNameAddFormulaLocal' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/operations", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgDriveItemWorkbookOperation", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/operations and 'New-MgDriveItemWorkbookOperation' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/refreshsession", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookRefreshSession", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/refreshSession and 'Invoke-MgDriveItemWorkbookRefreshSession' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/tables", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgDriveItemWorkbookTable", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/tables and 'New-MgDriveItemWorkbookTable' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/tables/{}/clearfilters", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookTableClearFilters", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/clearFilters and 'Invoke-MgDriveItemWorkbookTableClearFilters' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgDriveItemWorkbookTableColumn", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/columns and 'New-MgDriveItemWorkbookTableColumn' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/databodyrange/clear", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookTableColumnDataBodyRangeClear", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/clear and 'Invoke-MgDriveItemWorkbookTableColumnDataBodyRangeClear' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/databodyrange/delete", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookTableColumnDataBodyRangeDelete", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/delete and 'Invoke-MgDriveItemWorkbookTableColumnDataBodyRangeDelete' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/databodyrange/insert", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookTableColumnDataBodyRangeInsert", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/insert and 'Invoke-MgDriveItemWorkbookTableColumnDataBodyRangeInsert' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/databodyrange/merge", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookTableColumnDataBodyRangeMerge", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/merge and 'Invoke-MgDriveItemWorkbookTableColumnDataBodyRangeMerge' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/databodyrange/unmerge", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookTableColumnDataBodyRangeUnmerge", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/dataBodyRange/unmerge and 'Invoke-MgDriveItemWorkbookTableColumnDataBodyRangeUnmerge' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/filter/apply", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookTableColumnFilterApply", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/filter/apply and 'Invoke-MgDriveItemWorkbookTableColumnFilterApply' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/filter/applybottomitemsfilter", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookTableColumnFilterApplyBottomItemsFilter", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/filter/applyBottomItemsFilter and 'Invoke-MgDriveItemWorkbookTableColumnFilterApplyBottomItemsFilter' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/filter/applybottompercentfilter", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookTableColumnFilterApplyBottomPercentFilter", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/filter/applyBottomPercentFilter and 'Invoke-MgDriveItemWorkbookTableColumnFilterApplyBottomPercentFilter' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/filter/applycellcolorfilter", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookTableColumnFilterApplyCellColorFilter", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/filter/applyCellColorFilter and 'Invoke-MgDriveItemWorkbookTableColumnFilterApplyCellColorFilter' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/filter/applycustomfilter", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookTableColumnFilterApplyCustomFilter", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/filter/applyCustomFilter and 'Invoke-MgDriveItemWorkbookTableColumnFilterApplyCustomFilter' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/filter/applydynamicfilter", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookTableColumnFilterApplyDynamicFilter", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/filter/applyDynamicFilter and 'Invoke-MgDriveItemWorkbookTableColumnFilterApplyDynamicFilter' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/filter/applyfontcolorfilter", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookTableColumnFilterApplyFontColorFilter", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/filter/applyFontColorFilter and 'Invoke-MgDriveItemWorkbookTableColumnFilterApplyFontColorFilter' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/filter/applyiconfilter", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookTableColumnFilterApplyIconFilter", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/filter/applyIconFilter and 'Invoke-MgDriveItemWorkbookTableColumnFilterApplyIconFilter' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/filter/applytopitemsfilter", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookTableColumnFilterApplyTopItemsFilter", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/filter/applyTopItemsFilter and 'Invoke-MgDriveItemWorkbookTableColumnFilterApplyTopItemsFilter' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/filter/applytoppercentfilter", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookTableColumnFilterApplyTopPercentFilter", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/filter/applyTopPercentFilter and 'Invoke-MgDriveItemWorkbookTableColumnFilterApplyTopPercentFilter' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/filter/applyvaluesfilter", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookTableColumnFilterApplyValuesFilter", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/filter/applyValuesFilter and 'Invoke-MgDriveItemWorkbookTableColumnFilterApplyValuesFilter' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/filter/clear", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookTableColumnFilterClear", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/filter/clear and 'Invoke-MgDriveItemWorkbookTableColumnFilterClear' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/headerrowrange/clear", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookTableColumnHeaderRowRangeClear", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/clear and 'Invoke-MgDriveItemWorkbookTableColumnHeaderRowRangeClear' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/headerrowrange/delete", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookTableColumnHeaderRowRangeDelete", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/delete and 'Invoke-MgDriveItemWorkbookTableColumnHeaderRowRangeDelete' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/headerrowrange/insert", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookTableColumnHeaderRowRangeInsert", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/insert and 'Invoke-MgDriveItemWorkbookTableColumnHeaderRowRangeInsert' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/headerrowrange/merge", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookTableColumnHeaderRowRangeMerge", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/merge and 'Invoke-MgDriveItemWorkbookTableColumnHeaderRowRangeMerge' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/headerrowrange/unmerge", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookTableColumnHeaderRowRangeUnmerge", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/headerRowRange/unmerge and 'Invoke-MgDriveItemWorkbookTableColumnHeaderRowRangeUnmerge' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/range/clear", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookTableColumnRangeClear", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/clear and 'Invoke-MgDriveItemWorkbookTableColumnRangeClear' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/range/delete", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookTableColumnRangeDelete", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/delete and 'Invoke-MgDriveItemWorkbookTableColumnRangeDelete' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/range/insert", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookTableColumnRangeInsert", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/insert and 'Invoke-MgDriveItemWorkbookTableColumnRangeInsert' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/range/merge", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookTableColumnRangeMerge", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/merge and 'Invoke-MgDriveItemWorkbookTableColumnRangeMerge' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/range/unmerge", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookTableColumnRangeUnmerge", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/range/unmerge and 'Invoke-MgDriveItemWorkbookTableColumnRangeUnmerge' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/totalrowrange/clear", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookTableColumnTotalRowRangeClear", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/clear and 'Invoke-MgDriveItemWorkbookTableColumnTotalRowRangeClear' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/totalrowrange/delete", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookTableColumnTotalRowRangeDelete", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/delete and 'Invoke-MgDriveItemWorkbookTableColumnTotalRowRangeDelete' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/totalrowrange/insert", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookTableColumnTotalRowRangeInsert", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/insert and 'Invoke-MgDriveItemWorkbookTableColumnTotalRowRangeInsert' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/totalrowrange/merge", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookTableColumnTotalRowRangeMerge", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/merge and 'Invoke-MgDriveItemWorkbookTableColumnTotalRowRangeMerge' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/{}/totalrowrange/unmerge", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookTableColumnTotalRowRangeUnmerge", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/columns/{param}/totalRowRange/unmerge and 'Invoke-MgDriveItemWorkbookTableColumnTotalRowRangeUnmerge' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/tables/{}/columns/add", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookTableColumnAdd", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/columns/add and 'Invoke-MgDriveItemWorkbookTableColumnAdd' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/tables/{}/converttorange", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookTableConvertToRange", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/convertToRange and 'Invoke-MgDriveItemWorkbookTableConvertToRange' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/tables/{}/databodyrange/clear", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookTableDataBodyRangeClear", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/clear and 'Invoke-MgDriveItemWorkbookTableDataBodyRangeClear' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/tables/{}/databodyrange/delete", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookTableDataBodyRangeDelete", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/delete and 'Invoke-MgDriveItemWorkbookTableDataBodyRangeDelete' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/tables/{}/databodyrange/insert", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookTableDataBodyRangeInsert", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/insert and 'Invoke-MgDriveItemWorkbookTableDataBodyRangeInsert' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/tables/{}/databodyrange/merge", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookTableDataBodyRangeMerge", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/merge and 'Invoke-MgDriveItemWorkbookTableDataBodyRangeMerge' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/tables/{}/databodyrange/unmerge", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookTableDataBodyRangeUnmerge", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/dataBodyRange/unmerge and 'Invoke-MgDriveItemWorkbookTableDataBodyRangeUnmerge' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/tables/{}/headerrowrange/clear", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookTableHeaderRowRangeClear", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/clear and 'Invoke-MgDriveItemWorkbookTableHeaderRowRangeClear' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/tables/{}/headerrowrange/delete", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookTableHeaderRowRangeDelete", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/delete and 'Invoke-MgDriveItemWorkbookTableHeaderRowRangeDelete' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/tables/{}/headerrowrange/insert", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookTableHeaderRowRangeInsert", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/insert and 'Invoke-MgDriveItemWorkbookTableHeaderRowRangeInsert' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/tables/{}/headerrowrange/merge", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookTableHeaderRowRangeMerge", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/merge and 'Invoke-MgDriveItemWorkbookTableHeaderRowRangeMerge' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/tables/{}/headerrowrange/unmerge", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookTableHeaderRowRangeUnmerge", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/headerRowRange/unmerge and 'Invoke-MgDriveItemWorkbookTableHeaderRowRangeUnmerge' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/tables/{}/range/clear", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookTableRangeClear", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/range/clear and 'Invoke-MgDriveItemWorkbookTableRangeClear' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/tables/{}/range/delete", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookTableRangeDelete", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/range/delete and 'Invoke-MgDriveItemWorkbookTableRangeDelete' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/tables/{}/range/insert", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookTableRangeInsert", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/range/insert and 'Invoke-MgDriveItemWorkbookTableRangeInsert' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/tables/{}/range/merge", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookTableRangeMerge", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/range/merge and 'Invoke-MgDriveItemWorkbookTableRangeMerge' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/tables/{}/range/unmerge", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookTableRangeUnmerge", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/range/unmerge and 'Invoke-MgDriveItemWorkbookTableRangeUnmerge' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/tables/{}/reapplyfilters", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookTableReapplyFilters", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/reapplyFilters and 'Invoke-MgDriveItemWorkbookTableReapplyFilters' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/tables/{}/rows", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgDriveItemWorkbookTableRow", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/rows and 'New-MgDriveItemWorkbookTableRow' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/tables/{}/rows/{}/range/clear", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookTableRowRangeClear", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/clear and 'Invoke-MgDriveItemWorkbookTableRowRangeClear' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/tables/{}/rows/{}/range/delete", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookTableRowRangeDelete", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/delete and 'Invoke-MgDriveItemWorkbookTableRowRangeDelete' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/tables/{}/rows/{}/range/insert", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookTableRowRangeInsert", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/insert and 'Invoke-MgDriveItemWorkbookTableRowRangeInsert' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/tables/{}/rows/{}/range/merge", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookTableRowRangeMerge", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/merge and 'Invoke-MgDriveItemWorkbookTableRowRangeMerge' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/tables/{}/rows/{}/range/unmerge", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookTableRowRangeUnmerge", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/rows/{param}/range/unmerge and 'Invoke-MgDriveItemWorkbookTableRowRangeUnmerge' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/tables/{}/rows/add", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookTableRowAdd", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/rows/add and 'Invoke-MgDriveItemWorkbookTableRowAdd' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/tables/{}/sort/apply", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookTableSortApply", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/sort/apply and 'Invoke-MgDriveItemWorkbookTableSortApply' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/tables/{}/sort/clear", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookTableSortClear", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/sort/clear and 'Invoke-MgDriveItemWorkbookTableSortClear' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/tables/{}/sort/reapply", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookTableSortReapply", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/sort/reapply and 'Invoke-MgDriveItemWorkbookTableSortReapply' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/tables/{}/totalrowrange/clear", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookTableTotalRowRangeClear", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/clear and 'Invoke-MgDriveItemWorkbookTableTotalRowRangeClear' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/tables/{}/totalrowrange/delete", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookTableTotalRowRangeDelete", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/delete and 'Invoke-MgDriveItemWorkbookTableTotalRowRangeDelete' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/tables/{}/totalrowrange/insert", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookTableTotalRowRangeInsert", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/insert and 'Invoke-MgDriveItemWorkbookTableTotalRowRangeInsert' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/tables/{}/totalrowrange/merge", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookTableTotalRowRangeMerge", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/merge and 'Invoke-MgDriveItemWorkbookTableTotalRowRangeMerge' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/tables/{}/totalrowrange/unmerge", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookTableTotalRowRangeUnmerge", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/tables/{param}/totalRowRange/unmerge and 'Invoke-MgDriveItemWorkbookTableTotalRowRangeUnmerge' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/tables/add", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookTableAdd", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/tables/add and 'Invoke-MgDriveItemWorkbookTableAdd' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgDriveItemWorkbookWorksheet", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets and 'New-MgDriveItemWorkbookWorksheet' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgDriveItemWorkbookWorksheetChart", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/charts and 'New-MgDriveItemWorkbookWorksheetChart' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/categoryaxis/format/line/clear", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookWorksheetChartAxCategoryAxisFormatLineClear", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/format/line/clear and 'Invoke-MgDriveItemWorkbookWorksheetChartAxCategoryAxisFormatLineClear' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/categoryaxis/majorgridlines/format/line/clear", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMajorGridlineFormatLineClear", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/majorGridlines/format/line/clear and 'Invoke-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMajorGridlineFormatLineClear' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/categoryaxis/minorgridlines/format/line/clear", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMinorGridlineFormatLineClear", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/categoryAxis/minorGridlines/format/line/clear and 'Invoke-MgDriveItemWorkbookWorksheetChartAxCategoryAxisMinorGridlineFormatLineClear' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/seriesaxis/format/line/clear", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookWorksheetChartAxSeryAxisFormatLineClear", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/format/line/clear and 'Invoke-MgDriveItemWorkbookWorksheetChartAxSeryAxisFormatLineClear' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/seriesaxis/majorgridlines/format/line/clear", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookWorksheetChartAxSeryAxisMajorGridlineFormatLineClear", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/majorGridlines/format/line/clear and 'Invoke-MgDriveItemWorkbookWorksheetChartAxSeryAxisMajorGridlineFormatLineClear' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/seriesaxis/minorgridlines/format/line/clear", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookWorksheetChartAxSeryAxisMinorGridlineFormatLineClear", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/seriesAxis/minorGridlines/format/line/clear and 'Invoke-MgDriveItemWorkbookWorksheetChartAxSeryAxisMinorGridlineFormatLineClear' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/valueaxis/format/line/clear", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookWorksheetChartAxValueAxisFormatLineClear", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/format/line/clear and 'Invoke-MgDriveItemWorkbookWorksheetChartAxValueAxisFormatLineClear' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/valueaxis/majorgridlines/format/line/clear", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookWorksheetChartAxValueAxisMajorGridlineFormatLineClear", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/majorGridlines/format/line/clear and 'Invoke-MgDriveItemWorkbookWorksheetChartAxValueAxisMajorGridlineFormatLineClear' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/axes/valueaxis/minorgridlines/format/line/clear", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookWorksheetChartAxValueAxisMinorGridlineFormatLineClear", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/axes/valueAxis/minorGridlines/format/line/clear and 'Invoke-MgDriveItemWorkbookWorksheetChartAxValueAxisMinorGridlineFormatLineClear' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/datalabels/format/fill/clear", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookWorksheetChartDataLabelFormatFillClear", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/dataLabels/format/fill/clear and 'Invoke-MgDriveItemWorkbookWorksheetChartDataLabelFormatFillClear' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/datalabels/format/fill/setsolidcolor", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookWorksheetChartDataLabelFormatFillSetSolidColor", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/dataLabels/format/fill/setSolidColor and 'Invoke-MgDriveItemWorkbookWorksheetChartDataLabelFormatFillSetSolidColor' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/format/fill/clear", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookWorksheetChartFormatFillClear", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/format/fill/clear and 'Invoke-MgDriveItemWorkbookWorksheetChartFormatFillClear' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/format/fill/setsolidcolor", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookWorksheetChartFormatFillSetSolidColor", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/format/fill/setSolidColor and 'Invoke-MgDriveItemWorkbookWorksheetChartFormatFillSetSolidColor' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/legend/format/fill/clear", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookWorksheetChartLegendFormatFillClear", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/legend/format/fill/clear and 'Invoke-MgDriveItemWorkbookWorksheetChartLegendFormatFillClear' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/legend/format/fill/setsolidcolor", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookWorksheetChartLegendFormatFillSetSolidColor", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/legend/format/fill/setSolidColor and 'Invoke-MgDriveItemWorkbookWorksheetChartLegendFormatFillSetSolidColor' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/series", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgDriveItemWorkbookWorksheetChartSery", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series and 'New-MgDriveItemWorkbookWorksheetChartSery' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/series/{}/format/fill/clear", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookWorksheetChartSeryFormatFillClear", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/format/fill/clear and 'Invoke-MgDriveItemWorkbookWorksheetChartSeryFormatFillClear' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/series/{}/format/fill/setsolidcolor", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookWorksheetChartSeryFormatFillSetSolidColor", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/format/fill/setSolidColor and 'Invoke-MgDriveItemWorkbookWorksheetChartSeryFormatFillSetSolidColor' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/series/{}/format/line/clear", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookWorksheetChartSeryFormatLineClear", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/format/line/clear and 'Invoke-MgDriveItemWorkbookWorksheetChartSeryFormatLineClear' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/series/{}/points", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgDriveItemWorkbookWorksheetChartSeryPoint", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/points and 'New-MgDriveItemWorkbookWorksheetChartSeryPoint' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/series/{}/points/{}/format/fill/clear", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookWorksheetChartSeryPointFormatFillClear", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/points/{param}/format/fill/clear and 'Invoke-MgDriveItemWorkbookWorksheetChartSeryPointFormatFillClear' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/series/{}/points/{}/format/fill/setsolidcolor", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookWorksheetChartSeryPointFormatFillSetSolidColor", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/series/{param}/points/{param}/format/fill/setSolidColor and 'Invoke-MgDriveItemWorkbookWorksheetChartSeryPointFormatFillSetSolidColor' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/setdata", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookWorksheetChartSetData", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/setData and 'Invoke-MgDriveItemWorkbookWorksheetChartSetData' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/setposition", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookWorksheetChartSetPosition", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/setPosition and 'Invoke-MgDriveItemWorkbookWorksheetChartSetPosition' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/title/format/fill/clear", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookWorksheetChartTitleFormatFillClear", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/title/format/fill/clear and 'Invoke-MgDriveItemWorkbookWorksheetChartTitleFormatFillClear' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/{}/title/format/fill/setsolidcolor", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookWorksheetChartTitleFormatFillSetSolidColor", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/{param}/title/format/fill/setSolidColor and 'Invoke-MgDriveItemWorkbookWorksheetChartTitleFormatFillSetSolidColor' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/charts/add", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookWorksheetChartAdd", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/charts/add and 'Invoke-MgDriveItemWorkbookWorksheetChartAdd' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/names", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgDriveItemWorkbookWorksheetName", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/names and 'New-MgDriveItemWorkbookWorksheetName' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/names/{}/range/clear", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookWorksheetNameRangeClear", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/clear and 'Invoke-MgDriveItemWorkbookWorksheetNameRangeClear' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/names/{}/range/delete", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookWorksheetNameRangeDelete", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/delete and 'Invoke-MgDriveItemWorkbookWorksheetNameRangeDelete' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/names/{}/range/insert", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookWorksheetNameRangeInsert", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/insert and 'Invoke-MgDriveItemWorkbookWorksheetNameRangeInsert' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/names/{}/range/merge", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookWorksheetNameRangeMerge", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/merge and 'Invoke-MgDriveItemWorkbookWorksheetNameRangeMerge' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/names/{}/range/unmerge", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookWorksheetNameRangeUnmerge", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/names/{param}/range/unmerge and 'Invoke-MgDriveItemWorkbookWorksheetNameRangeUnmerge' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/names/add", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookWorksheetNameAdd", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/names/add and 'Invoke-MgDriveItemWorkbookWorksheetNameAdd' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/names/addformulalocal", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookWorksheetNameAddFormulaLocal", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/names/addFormulaLocal and 'Invoke-MgDriveItemWorkbookWorksheetNameAddFormulaLocal' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/pivottables", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgDriveItemWorkbookWorksheetPivotTable", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/pivotTables and 'New-MgDriveItemWorkbookWorksheetPivotTable' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/pivottables/{}/refresh", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookWorksheetPivotTableRefresh", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/pivotTables/{param}/refresh and 'Invoke-MgDriveItemWorkbookWorksheetPivotTableRefresh' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/pivottables/refreshall", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookWorksheetPivotTableRefreshAll", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/pivotTables/refreshAll and 'Invoke-MgDriveItemWorkbookWorksheetPivotTableRefreshAll' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/protection/protect", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookWorksheetProtectionProtect", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/protection/protect and 'Invoke-MgDriveItemWorkbookWorksheetProtectionProtect' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/protection/unprotect", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookWorksheetProtectionUnprotect", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/protection/unprotect and 'Invoke-MgDriveItemWorkbookWorksheetProtectionUnprotect' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/range/clear", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookWorksheetRangeClear", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/range/clear and 'Invoke-MgDriveItemWorkbookWorksheetRangeClear' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/range/delete", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookWorksheetRangeDelete", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/range/delete and 'Invoke-MgDriveItemWorkbookWorksheetRangeDelete' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/range/insert", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookWorksheetRangeInsert", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/range/insert and 'Invoke-MgDriveItemWorkbookWorksheetRangeInsert' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/range/merge", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookWorksheetRangeMerge", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/range/merge and 'Invoke-MgDriveItemWorkbookWorksheetRangeMerge' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/range/unmerge", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookWorksheetRangeUnmerge", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/range/unmerge and 'Invoke-MgDriveItemWorkbookWorksheetRangeUnmerge' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgDriveItemWorkbookWorksheetTable", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables and 'New-MgDriveItemWorkbookWorksheetTable' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/clearfilters", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookWorksheetTableClearFilters", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/clearFilters and 'Invoke-MgDriveItemWorkbookWorksheetTableClearFilters' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgDriveItemWorkbookWorksheetTableColumn", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns and 'New-MgDriveItemWorkbookWorksheetTableColumn' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/databodyrange/clear", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeClear", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/clear and 'Invoke-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeClear' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/databodyrange/delete", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeDelete", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/delete and 'Invoke-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeDelete' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/databodyrange/insert", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeInsert", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/insert and 'Invoke-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeInsert' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/databodyrange/merge", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeMerge", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/merge and 'Invoke-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeMerge' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/databodyrange/unmerge", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeUnmerge", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/dataBodyRange/unmerge and 'Invoke-MgDriveItemWorkbookWorksheetTableColumnDataBodyRangeUnmerge' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/filter/apply", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookWorksheetTableColumnFilterApply", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/filter/apply and 'Invoke-MgDriveItemWorkbookWorksheetTableColumnFilterApply' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/filter/applybottomitemsfilter", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookWorksheetTableColumnFilterApplyBottomItemsFilter", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/filter/applyBottomItemsFilter and 'Invoke-MgDriveItemWorkbookWorksheetTableColumnFilterApplyBottomItemsFilter' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/filter/applybottompercentfilter", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookWorksheetTableColumnFilterApplyBottomPercentFilter", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/filter/applyBottomPercentFilter and 'Invoke-MgDriveItemWorkbookWorksheetTableColumnFilterApplyBottomPercentFilter' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/filter/applycellcolorfilter", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookWorksheetTableColumnFilterApplyCellColorFilter", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/filter/applyCellColorFilter and 'Invoke-MgDriveItemWorkbookWorksheetTableColumnFilterApplyCellColorFilter' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/filter/applycustomfilter", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookWorksheetTableColumnFilterApplyCustomFilter", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/filter/applyCustomFilter and 'Invoke-MgDriveItemWorkbookWorksheetTableColumnFilterApplyCustomFilter' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/filter/applydynamicfilter", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookWorksheetTableColumnFilterApplyDynamicFilter", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/filter/applyDynamicFilter and 'Invoke-MgDriveItemWorkbookWorksheetTableColumnFilterApplyDynamicFilter' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/filter/applyfontcolorfilter", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookWorksheetTableColumnFilterApplyFontColorFilter", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/filter/applyFontColorFilter and 'Invoke-MgDriveItemWorkbookWorksheetTableColumnFilterApplyFontColorFilter' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/filter/applyiconfilter", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookWorksheetTableColumnFilterApplyIconFilter", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/filter/applyIconFilter and 'Invoke-MgDriveItemWorkbookWorksheetTableColumnFilterApplyIconFilter' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/filter/applytopitemsfilter", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookWorksheetTableColumnFilterApplyTopItemsFilter", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/filter/applyTopItemsFilter and 'Invoke-MgDriveItemWorkbookWorksheetTableColumnFilterApplyTopItemsFilter' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/filter/applytoppercentfilter", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookWorksheetTableColumnFilterApplyTopPercentFilter", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/filter/applyTopPercentFilter and 'Invoke-MgDriveItemWorkbookWorksheetTableColumnFilterApplyTopPercentFilter' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/filter/applyvaluesfilter", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookWorksheetTableColumnFilterApplyValuesFilter", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/filter/applyValuesFilter and 'Invoke-MgDriveItemWorkbookWorksheetTableColumnFilterApplyValuesFilter' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/filter/clear", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookWorksheetTableColumnFilterClear", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/filter/clear and 'Invoke-MgDriveItemWorkbookWorksheetTableColumnFilterClear' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/headerrowrange/clear", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeClear", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/clear and 'Invoke-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeClear' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/headerrowrange/delete", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeDelete", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/delete and 'Invoke-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeDelete' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/headerrowrange/insert", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeInsert", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/insert and 'Invoke-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeInsert' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/headerrowrange/merge", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeMerge", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/merge and 'Invoke-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeMerge' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/headerrowrange/unmerge", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeUnmerge", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/headerRowRange/unmerge and 'Invoke-MgDriveItemWorkbookWorksheetTableColumnHeaderRowRangeUnmerge' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/range/clear", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookWorksheetTableColumnRangeClear", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/clear and 'Invoke-MgDriveItemWorkbookWorksheetTableColumnRangeClear' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/range/delete", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookWorksheetTableColumnRangeDelete", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/delete and 'Invoke-MgDriveItemWorkbookWorksheetTableColumnRangeDelete' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/range/insert", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookWorksheetTableColumnRangeInsert", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/insert and 'Invoke-MgDriveItemWorkbookWorksheetTableColumnRangeInsert' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/range/merge", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookWorksheetTableColumnRangeMerge", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/merge and 'Invoke-MgDriveItemWorkbookWorksheetTableColumnRangeMerge' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/range/unmerge", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookWorksheetTableColumnRangeUnmerge", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/range/unmerge and 'Invoke-MgDriveItemWorkbookWorksheetTableColumnRangeUnmerge' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/totalrowrange/clear", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeClear", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/clear and 'Invoke-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeClear' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/totalrowrange/delete", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeDelete", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/delete and 'Invoke-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeDelete' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/totalrowrange/insert", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeInsert", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/insert and 'Invoke-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeInsert' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/totalrowrange/merge", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeMerge", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/merge and 'Invoke-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeMerge' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/{}/totalrowrange/unmerge", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeUnmerge", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/{param}/totalRowRange/unmerge and 'Invoke-MgDriveItemWorkbookWorksheetTableColumnTotalRowRangeUnmerge' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/columns/add", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookWorksheetTableColumnAdd", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/columns/add and 'Invoke-MgDriveItemWorkbookWorksheetTableColumnAdd' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/converttorange", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookWorksheetTableConvertToRange", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/convertToRange and 'Invoke-MgDriveItemWorkbookWorksheetTableConvertToRange' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/databodyrange/clear", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookWorksheetTableDataBodyRangeClear", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/clear and 'Invoke-MgDriveItemWorkbookWorksheetTableDataBodyRangeClear' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/databodyrange/delete", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookWorksheetTableDataBodyRangeDelete", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/delete and 'Invoke-MgDriveItemWorkbookWorksheetTableDataBodyRangeDelete' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/databodyrange/insert", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookWorksheetTableDataBodyRangeInsert", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/insert and 'Invoke-MgDriveItemWorkbookWorksheetTableDataBodyRangeInsert' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/databodyrange/merge", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookWorksheetTableDataBodyRangeMerge", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/merge and 'Invoke-MgDriveItemWorkbookWorksheetTableDataBodyRangeMerge' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/databodyrange/unmerge", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookWorksheetTableDataBodyRangeUnmerge", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/dataBodyRange/unmerge and 'Invoke-MgDriveItemWorkbookWorksheetTableDataBodyRangeUnmerge' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/headerrowrange/clear", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookWorksheetTableHeaderRowRangeClear", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/clear and 'Invoke-MgDriveItemWorkbookWorksheetTableHeaderRowRangeClear' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/headerrowrange/delete", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookWorksheetTableHeaderRowRangeDelete", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/delete and 'Invoke-MgDriveItemWorkbookWorksheetTableHeaderRowRangeDelete' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/headerrowrange/insert", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookWorksheetTableHeaderRowRangeInsert", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/insert and 'Invoke-MgDriveItemWorkbookWorksheetTableHeaderRowRangeInsert' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/headerrowrange/merge", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookWorksheetTableHeaderRowRangeMerge", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/merge and 'Invoke-MgDriveItemWorkbookWorksheetTableHeaderRowRangeMerge' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/headerrowrange/unmerge", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookWorksheetTableHeaderRowRangeUnmerge", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/headerRowRange/unmerge and 'Invoke-MgDriveItemWorkbookWorksheetTableHeaderRowRangeUnmerge' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/range/clear", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookWorksheetTableRangeClear", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/clear and 'Invoke-MgDriveItemWorkbookWorksheetTableRangeClear' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/range/delete", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookWorksheetTableRangeDelete", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/delete and 'Invoke-MgDriveItemWorkbookWorksheetTableRangeDelete' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/range/insert", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookWorksheetTableRangeInsert", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/insert and 'Invoke-MgDriveItemWorkbookWorksheetTableRangeInsert' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/range/merge", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookWorksheetTableRangeMerge", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/merge and 'Invoke-MgDriveItemWorkbookWorksheetTableRangeMerge' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/range/unmerge", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookWorksheetTableRangeUnmerge", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/range/unmerge and 'Invoke-MgDriveItemWorkbookWorksheetTableRangeUnmerge' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/reapplyfilters", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookWorksheetTableReapplyFilters", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/reapplyFilters and 'Invoke-MgDriveItemWorkbookWorksheetTableReapplyFilters' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/rows", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgDriveItemWorkbookWorksheetTableRow", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows and 'New-MgDriveItemWorkbookWorksheetTableRow' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/rows/{}/range/clear", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookWorksheetTableRowRangeClear", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/clear and 'Invoke-MgDriveItemWorkbookWorksheetTableRowRangeClear' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/rows/{}/range/delete", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookWorksheetTableRowRangeDelete", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/delete and 'Invoke-MgDriveItemWorkbookWorksheetTableRowRangeDelete' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/rows/{}/range/insert", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookWorksheetTableRowRangeInsert", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/insert and 'Invoke-MgDriveItemWorkbookWorksheetTableRowRangeInsert' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/rows/{}/range/merge", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookWorksheetTableRowRangeMerge", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/merge and 'Invoke-MgDriveItemWorkbookWorksheetTableRowRangeMerge' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/rows/{}/range/unmerge", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookWorksheetTableRowRangeUnmerge", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/{param}/range/unmerge and 'Invoke-MgDriveItemWorkbookWorksheetTableRowRangeUnmerge' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/rows/add", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookWorksheetTableRowAdd", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/rows/add and 'Invoke-MgDriveItemWorkbookWorksheetTableRowAdd' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/sort/apply", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookWorksheetTableSortApply", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/sort/apply and 'Invoke-MgDriveItemWorkbookWorksheetTableSortApply' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/sort/clear", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookWorksheetTableSortClear", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/sort/clear and 'Invoke-MgDriveItemWorkbookWorksheetTableSortClear' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/sort/reapply", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookWorksheetTableSortReapply", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/sort/reapply and 'Invoke-MgDriveItemWorkbookWorksheetTableSortReapply' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/totalrowrange/clear", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookWorksheetTableTotalRowRangeClear", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/clear and 'Invoke-MgDriveItemWorkbookWorksheetTableTotalRowRangeClear' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/totalrowrange/delete", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookWorksheetTableTotalRowRangeDelete", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/delete and 'Invoke-MgDriveItemWorkbookWorksheetTableTotalRowRangeDelete' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/totalrowrange/insert", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookWorksheetTableTotalRowRangeInsert", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/insert and 'Invoke-MgDriveItemWorkbookWorksheetTableTotalRowRangeInsert' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/totalrowrange/merge", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookWorksheetTableTotalRowRangeMerge", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/merge and 'Invoke-MgDriveItemWorkbookWorksheetTableTotalRowRangeMerge' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/{}/totalrowrange/unmerge", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookWorksheetTableTotalRowRangeUnmerge", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/{param}/totalRowRange/unmerge and 'Invoke-MgDriveItemWorkbookWorksheetTableTotalRowRangeUnmerge' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/tables/add", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookWorksheetTableAdd", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/tables/add and 'Invoke-MgDriveItemWorkbookWorksheetTableAdd' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/usedrange/clear", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookWorksheetUsedRangeClear", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange/clear and 'Invoke-MgDriveItemWorkbookWorksheetUsedRangeClear' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/usedrange/delete", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookWorksheetUsedRangeDelete", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange/delete and 'Invoke-MgDriveItemWorkbookWorksheetUsedRangeDelete' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/usedrange/insert", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookWorksheetUsedRangeInsert", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange/insert and 'Invoke-MgDriveItemWorkbookWorksheetUsedRangeInsert' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/usedrange/merge", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookWorksheetUsedRangeMerge", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange/merge and 'Invoke-MgDriveItemWorkbookWorksheetUsedRangeMerge' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/{}/usedrange/unmerge", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookWorksheetUsedRangeUnmerge", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/{param}/usedRange/unmerge and 'Invoke-MgDriveItemWorkbookWorksheetUsedRangeUnmerge' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/items/{}/workbook/worksheets/add", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveItemWorkbookWorksheetAdd", + "oracle": "no oracle row for POST /drives/{param}/items/{param}/workbook/worksheets/add and 'Invoke-MgDriveItemWorkbookWorksheetAdd' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/list/items/{}/permissions", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgDriveListItemPermission", + "oracle": "no oracle row for POST /drives/{param}/list/items/{param}/permissions and 'New-MgDriveListItemPermission' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/list/items/{}/permissions/{}/grant", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveListItemPermissionGrant", + "oracle": "no oracle row for POST /drives/{param}/list/items/{param}/permissions/{param}/grant and 'Invoke-MgDriveListItemPermissionGrant' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/list/permissions", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgDriveListPermission", + "oracle": "no oracle row for POST /drives/{param}/list/permissions and 'New-MgDriveListPermission' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/drives/{}/list/permissions/{}/grant", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgDriveListPermissionGrant", + "oracle": "no oracle row for POST /drives/{param}/list/permissions/{param}/grant and 'Invoke-MgDriveListPermissionGrant' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/calendar/events/{}/accept", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgGroupCalendarEventAccept", + "oracle": "no oracle row for POST /groups/{param}/calendar/events/{param}/accept and 'Invoke-MgGroupCalendarEventAccept' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/calendar/events/{}/attachments", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgGroupCalendarEventAttachment", + "oracle": "no oracle row for POST /groups/{param}/calendar/events/{param}/attachments and 'New-MgGroupCalendarEventAttachment' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/calendar/events/{}/attachments/createuploadsession", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgGroupCalendarEventAttachmentCreateUploadSession", + "oracle": "no oracle row for POST /groups/{param}/calendar/events/{param}/attachments/createUploadSession and 'Invoke-MgGroupCalendarEventAttachmentCreateUploadSession' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/calendar/events/{}/cancel", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgGroupCalendarEventCancel", + "oracle": "no oracle row for POST /groups/{param}/calendar/events/{param}/cancel and 'Invoke-MgGroupCalendarEventCancel' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/calendar/events/{}/decline", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgGroupCalendarEventDecline", + "oracle": "no oracle row for POST /groups/{param}/calendar/events/{param}/decline and 'Invoke-MgGroupCalendarEventDecline' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/calendar/events/{}/dismissreminder", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgGroupCalendarEventDismissReminder", + "oracle": "no oracle row for POST /groups/{param}/calendar/events/{param}/dismissReminder and 'Invoke-MgGroupCalendarEventDismissReminder' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/calendar/events/{}/extensions", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgGroupCalendarEventExtension", + "oracle": "no oracle row for POST /groups/{param}/calendar/events/{param}/extensions and 'New-MgGroupCalendarEventExtension' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/calendar/events/{}/forward", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgGroupCalendarEventForward", + "oracle": "no oracle row for POST /groups/{param}/calendar/events/{param}/forward and 'Invoke-MgGroupCalendarEventForward' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/calendar/events/{}/permanentdelete", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgGroupCalendarEventPermanentDelete", + "oracle": "no oracle row for POST /groups/{param}/calendar/events/{param}/permanentDelete and 'Invoke-MgGroupCalendarEventPermanentDelete' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/calendar/events/{}/snoozereminder", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgGroupCalendarEventSnoozeReminder", + "oracle": "no oracle row for POST /groups/{param}/calendar/events/{param}/snoozeReminder and 'Invoke-MgGroupCalendarEventSnoozeReminder' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/calendar/events/{}/tentativelyaccept", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgGroupCalendarEventTentativelyAccept", + "oracle": "no oracle row for POST /groups/{param}/calendar/events/{param}/tentativelyAccept and 'Invoke-MgGroupCalendarEventTentativelyAccept' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/planner/plans", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgGroupPlannerPlan", + "oracle": "no oracle row for POST /groups/{param}/planner/plans and 'New-MgGroupPlannerPlan' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/planner/plans/{}/buckets", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgGroupPlannerPlanBucket", + "oracle": "no oracle row for POST /groups/{param}/planner/plans/{param}/buckets and 'New-MgGroupPlannerPlanBucket' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/planner/plans/{}/buckets/{}/tasks", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgGroupPlannerPlanBucketTask", + "oracle": "no oracle row for POST /groups/{param}/planner/plans/{param}/buckets/{param}/tasks and 'New-MgGroupPlannerPlanBucketTask' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/planner/plans/{}/tasks", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgGroupPlannerPlanTask", + "oracle": "no oracle row for POST /groups/{param}/planner/plans/{param}/tasks and 'New-MgGroupPlannerPlanTask' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/restore", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgGroupRestore", + "oracle": "no oracle row for POST /groups/{param}/restore and 'Invoke-MgGroupRestore' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/sites/{}/onenote/notebooks/{}/sectiongroups/{}/sections/{}/pages/{}/onenotepatchcontent", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgGroupSiteOnenoteNotebookSectionGroupSectionPageOnenotePatchContent", + "oracle": "no oracle row for POST /groups/{param}/sites/{param}/onenote/notebooks/{param}/sectionGroups/{param}/sections/{param}/pages/{param}/onenotePatchContent and 'Invoke-MgGroupSiteOnenoteNotebookSectionGroupSectionPageOnenotePatchContent' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/sites/{}/onenote/notebooks/{}/sections/{}/pages/{}/onenotepatchcontent", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgGroupSiteOnenoteNotebookSectionPageOnenotePatchContent", + "oracle": "no oracle row for POST /groups/{param}/sites/{param}/onenote/notebooks/{param}/sections/{param}/pages/{param}/onenotePatchContent and 'Invoke-MgGroupSiteOnenoteNotebookSectionPageOnenotePatchContent' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/sites/{}/onenote/pages/{}/onenotepatchcontent", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgGroupSiteOnenotePageOnenotePatchContent", + "oracle": "no oracle row for POST /groups/{param}/sites/{param}/onenote/pages/{param}/onenotePatchContent and 'Invoke-MgGroupSiteOnenotePageOnenotePatchContent' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/sites/{}/onenote/sectiongroups/{}/sections/{}/pages/{}/onenotepatchcontent", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgGroupSiteOnenoteSectionGroupSectionPageOnenotePatchContent", + "oracle": "no oracle row for POST /groups/{param}/sites/{param}/onenote/sectionGroups/{param}/sections/{param}/pages/{param}/onenotePatchContent and 'Invoke-MgGroupSiteOnenoteSectionGroupSectionPageOnenotePatchContent' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/sites/{}/onenote/sections/{}/pages/{}/onenotepatchcontent", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgGroupSiteOnenoteSectionPageOnenotePatchContent", + "oracle": "no oracle row for POST /groups/{param}/sites/{param}/onenote/sections/{param}/pages/{param}/onenotePatchContent and 'Invoke-MgGroupSiteOnenoteSectionPageOnenotePatchContent' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/team/channels/{}/members", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgGroupTeamChannelMember", + "oracle": "no oracle row; 'New-MgGroupTeamChannelMember' ships from sibling family (see rename entries for this noun)" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/team/channels/{}/members/remove", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgGroupTeamChannelMemberRemove", + "oracle": "no oracle row for POST /groups/{param}/team/channels/{param}/members/remove and 'Invoke-MgGroupTeamChannelMemberRemove' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/team/members/remove", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgGroupTeamMemberRemove", + "oracle": "no oracle row for POST /groups/{param}/team/members/remove and 'Invoke-MgGroupTeamMemberRemove' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/team/primarychannel/members", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgGroupTeamPrimaryChannelMember", + "oracle": "no oracle row; 'New-MgGroupTeamPrimaryChannelMember' ships from sibling family (see rename entries for this noun)" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/{}/team/primarychannel/members/remove", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgGroupTeamPrimaryChannelMemberRemove", + "oracle": "no oracle row for POST /groups/{param}/team/primaryChannel/members/remove and 'Invoke-MgGroupTeamPrimaryChannelMemberRemove' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groups/getavailableextensionproperties", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgGroupGetAvailableExtensionProperties", + "oracle": "no oracle row for POST /groups/getAvailableExtensionProperties and 'Invoke-MgGroupGetAvailableExtensionProperties' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/groupsettingtemplates/getavailableextensionproperties", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgGroupSettingTemplateGetAvailableExtensionProperties", + "oracle": "no oracle row for POST /groupSettingTemplates/getAvailableExtensionProperties and 'Invoke-MgGroupSettingTemplateGetAvailableExtensionProperties' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identity/conditionalaccess/authenticationstrength/authenticationmethodmodes", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgIdentityConditionalAccessAuthenticationStrengthAuthenticationMethodMode", + "oracle": "no oracle row for POST /identity/conditionalAccess/authenticationStrength/authenticationMethodModes and 'New-MgIdentityConditionalAccessAuthenticationStrengthAuthenticationMethodMode' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identity/conditionalaccess/authenticationstrength/policies", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgIdentityConditionalAccessAuthenticationStrengthPolicy", + "oracle": "no oracle row for POST /identity/conditionalAccess/authenticationStrength/policies and 'New-MgIdentityConditionalAccessAuthenticationStrengthPolicy' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identity/conditionalaccess/authenticationstrength/policies/{}/updateallowedcombinations", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgIdentityConditionalAccessAuthenticationStrengthPolicyUpdateAllowedCombinations", + "oracle": "no oracle row for POST /identity/conditionalAccess/authenticationStrength/policies/{param}/updateAllowedCombinations and 'Invoke-MgIdentityConditionalAccessAuthenticationStrengthPolicyUpdateAllowedCombinations' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/accesspackageassignmentapprovals", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentApproval", + "oracle": "no oracle row for POST /identityGovernance/entitlementManagement/accessPackageAssignmentApprovals and 'New-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentApproval' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/assignmentpolicies/{}/customextensionstagesettings", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyCustomExtensionStageSetting", + "oracle": "no oracle row for POST /identityGovernance/entitlementManagement/accessPackages/{param}/assignmentPolicies/{param}/customExtensionStageSettings and 'New-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyCustomExtensionStageSetting' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/assignmentpolicies/{}/questions", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyQuestion", + "oracle": "no oracle row for POST /identityGovernance/entitlementManagement/accessPackages/{param}/assignmentPolicies/{param}/questions and 'New-MgIdentityGovernanceEntitlementManagementAccessPackageAssignmentPolicyQuestion' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/resourcerolescopes/{}/role/resource/refresh", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceRefresh", + "oracle": "no oracle row for POST /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/refresh and 'Invoke-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceRefresh' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/resourcerolescopes/{}/role/resource/roles", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceRole", + "oracle": "no oracle row for POST /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/roles and 'New-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceRole' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/resourcerolescopes/{}/role/resource/scopes", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScope", + "oracle": "no oracle row for POST /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/scopes and 'New-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScope' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/resourcerolescopes/{}/role/resource/scopes/{}/resource/refresh", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScopeResourceRefresh", + "oracle": "no oracle row for POST /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/scopes/{param}/resource/refresh and 'Invoke-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScopeResourceRefresh' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/resourcerolescopes/{}/role/resource/scopes/{}/resource/roles", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScopeResourceRole", + "oracle": "no oracle row for POST /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/role/resource/scopes/{param}/resource/roles and 'New-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeRoleResourceScopeResourceRole' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/resourcerolescopes/{}/scope/resource/refresh", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRefresh", + "oracle": "no oracle row for POST /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/refresh and 'Invoke-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRefresh' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/resourcerolescopes/{}/scope/resource/roles", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRole", + "oracle": "no oracle row for POST /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/roles and 'New-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRole' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/resourcerolescopes/{}/scope/resource/roles/{}/resource/refresh", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRoleResourceRefresh", + "oracle": "no oracle row for POST /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/roles/{param}/resource/refresh and 'Invoke-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRoleResourceRefresh' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/resourcerolescopes/{}/scope/resource/roles/{}/resource/scopes", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRoleResourceScope", + "oracle": "no oracle row for POST /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/roles/{param}/resource/scopes and 'New-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceRoleResourceScope' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/accesspackages/{}/resourcerolescopes/{}/scope/resource/scopes", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceScope", + "oracle": "no oracle row for POST /identityGovernance/entitlementManagement/accessPackages/{param}/resourceRoleScopes/{param}/scope/resource/scopes and 'New-MgIdentityGovernanceEntitlementManagementAccessPackageResourceRoleScopeResourceScope' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourceroles/{}/resource/roles", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceRole", + "oracle": "no oracle row for POST /identityGovernance/entitlementManagement/catalogs/{param}/resourceRoles/{param}/resource/roles and 'New-MgIdentityGovernanceEntitlementManagementCatalogResourceRoleResourceRole' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resources/{}/scopes", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementCatalogResourceScope", + "oracle": "no oracle row for POST /identityGovernance/entitlementManagement/catalogs/{param}/resources/{param}/scopes and 'New-MgIdentityGovernanceEntitlementManagementCatalogResourceScope' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/catalogs/{}/resourcescopes/{}/resource/scopes", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceScope", + "oracle": "no oracle row for POST /identityGovernance/entitlementManagement/catalogs/{param}/resourceScopes/{param}/resource/scopes and 'New-MgIdentityGovernanceEntitlementManagementCatalogResourceScopeResourceScope' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourceroles/{}/resource/roles", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceRole", + "oracle": "no oracle row for POST /identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceRoles/{param}/resource/roles and 'New-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceRoleResourceRole' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resources/{}/scopes", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScope", + "oracle": "no oracle row for POST /identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resources/{param}/scopes and 'New-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScope' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/entitlementmanagement/resourcerequests/{}/catalog/resourcescopes/{}/resource/scopes", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceScope", + "oracle": "no oracle row for POST /identityGovernance/entitlementManagement/resourceRequests/{param}/catalog/resourceScopes/{param}/resource/scopes and 'New-MgIdentityGovernanceEntitlementManagementResourceRequestCatalogResourceScopeResourceScope' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/identitygovernance/lifecycleworkflows/deleteditems/workflows/{}/versions/{}/tasks", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTask", + "oracle": "no oracle row for POST /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{param}/versions/{param}/tasks and 'New-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersionTask' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/organization/{}/restore", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgOrganizationRestore", + "oracle": "no oracle row for POST /organization/{param}/restore and 'Invoke-MgOrganizationRestore' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/organization/getavailableextensionproperties", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgOrganizationGetAvailableExtensionProperties", + "oracle": "no oracle row for POST /organization/getAvailableExtensionProperties and 'Invoke-MgOrganizationGetAvailableExtensionProperties' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/planner/buckets/{}/tasks", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgPlannerBucketTask", + "oracle": "no oracle row for POST /planner/buckets/{param}/tasks and 'New-MgPlannerBucketTask' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/planner/plans/{}/buckets", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgPlannerPlanBucket", + "oracle": "no oracle row for POST /planner/plans/{param}/buckets and 'New-MgPlannerPlanBucket' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/planner/plans/{}/buckets/{}/tasks", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgPlannerPlanBucketTask", + "oracle": "no oracle row for POST /planner/plans/{param}/buckets/{param}/tasks and 'New-MgPlannerPlanBucketTask' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/planner/plans/{}/tasks", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgPlannerPlanTask", + "oracle": "no oracle row for POST /planner/plans/{param}/tasks and 'New-MgPlannerPlanTask' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/policies/conditionalaccesspolicies", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgPolicyConditionalAccessPolicy", + "oracle": "no oracle row for POST /policies/conditionalAccessPolicies and 'New-MgPolicyConditionalAccessPolicy' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/print/printers", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgPrinter", + "oracle": "no oracle row for POST /print/printers and 'New-MgPrinter' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/reports/dailyprintusagebyprinter", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgReportDailyPrintUsageByPrinter", + "oracle": "no oracle row for POST /reports/dailyPrintUsageByPrinter and 'New-MgReportDailyPrintUsageByPrinter' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/reports/dailyprintusagebyuser", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgReportDailyPrintUsageByUser", + "oracle": "no oracle row for POST /reports/dailyPrintUsageByUser and 'New-MgReportDailyPrintUsageByUser' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/reports/monthlyprintusagebyprinter", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgReportMonthlyPrintUsageByPrinter", + "oracle": "no oracle row for POST /reports/monthlyPrintUsageByPrinter and 'New-MgReportMonthlyPrintUsageByPrinter' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/reports/monthlyprintusagebyuser", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgReportMonthlyPrintUsageByUser", + "oracle": "no oracle row for POST /reports/monthlyPrintUsageByUser and 'New-MgReportMonthlyPrintUsageByUser' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/serviceprincipals/{}/federatedidentitycredentials", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgServicePrincipalFederatedIdentityCredential", + "oracle": "no oracle row for POST /servicePrincipals/{param}/federatedIdentityCredentials and 'New-MgServicePrincipalFederatedIdentityCredential' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/serviceprincipals/{}/restore", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgServicePrincipalRestore", + "oracle": "no oracle row for POST /servicePrincipals/{param}/restore and 'Invoke-MgServicePrincipalRestore' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/serviceprincipals/getavailableextensionproperties", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgServicePrincipalGetAvailableExtensionProperties", + "oracle": "no oracle row for POST /servicePrincipals/getAvailableExtensionProperties and 'Invoke-MgServicePrincipalGetAvailableExtensionProperties' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/shares/{}/list/items/{}/createlink", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgShareListItemCreateLink", + "oracle": "no oracle row for POST /shares/{param}/list/items/{param}/createLink and 'Invoke-MgShareListItemCreateLink' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/shares/{}/list/items/{}/permissions", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgShareListItemPermission", + "oracle": "no oracle row for POST /shares/{param}/list/items/{param}/permissions and 'New-MgShareListItemPermission' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/shares/{}/list/items/{}/permissions/{}/grant", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgShareListItemPermissionGrant", + "oracle": "no oracle row for POST /shares/{param}/list/items/{param}/permissions/{param}/grant and 'Invoke-MgShareListItemPermissionGrant' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/shares/{}/list/permissions", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgShareListPermission", + "oracle": "no oracle row for POST /shares/{param}/list/permissions and 'New-MgShareListPermission' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/shares/{}/list/permissions/{}/grant", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgShareListPermissionGrant", + "oracle": "no oracle row for POST /shares/{param}/list/permissions/{param}/grant and 'Invoke-MgShareListPermissionGrant' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/sites/remove", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgSiteRemove", + "oracle": "no oracle row for POST /sites/remove and 'Invoke-MgSiteRemove' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/teams/{}/channels/{}/members", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgTeamChannelMember", + "oracle": "no oracle row; 'New-MgTeamChannelMember' ships from sibling family (see rename entries for this noun)" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/teams/{}/channels/{}/members/remove", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgTeamChannelMemberRemove", + "oracle": "no oracle row for POST /teams/{param}/channels/{param}/members/remove and 'Invoke-MgTeamChannelMemberRemove' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/teams/{}/members/remove", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgTeamMemberRemove", + "oracle": "no oracle row for POST /teams/{param}/members/remove and 'Invoke-MgTeamMemberRemove' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/teams/{}/primarychannel/members", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgTeamPrimaryChannelMember", + "oracle": "no oracle row; 'New-MgTeamPrimaryChannelMember' ships from sibling family (see rename entries for this noun)" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/teams/{}/primarychannel/members/remove", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgTeamPrimaryChannelMemberRemove", + "oracle": "no oracle row for POST /teams/{param}/primaryChannel/members/remove and 'Invoke-MgTeamPrimaryChannelMemberRemove' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/teamwork/deletedteams/{}/channels/{}/members", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgTeamworkDeletedTeamChannelMember", + "oracle": "no oracle row; 'New-MgTeamworkDeletedTeamChannelMember' ships from sibling family (see rename entries for this noun)" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/teamwork/deletedteams/{}/channels/{}/members/remove", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgTeamworkDeletedTeamChannelMemberRemove", + "oracle": "no oracle row for POST /teamwork/deletedTeams/{param}/channels/{param}/members/remove and 'Invoke-MgTeamworkDeletedTeamChannelMemberRemove' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/authentication/passwordmethods", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgUserAuthenticationPasswordMethod", + "oracle": "no oracle row for POST /users/{param}/authentication/passwordMethods and 'New-MgUserAuthenticationPasswordMethod' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/calendar/getschedule", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgUserCalendarGetSchedule", + "oracle": "no oracle row for POST /users/{param}/calendar/getSchedule and 'Invoke-MgUserCalendarGetSchedule' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/calendargroups/{}/calendars/{}/calendarpermissions", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgUserCalendarGroupCalendarPermission", + "oracle": "no oracle row for POST /users/{param}/calendarGroups/{param}/calendars/{param}/calendarPermissions and 'New-MgUserCalendarGroupCalendarPermission' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/calendargroups/{}/calendars/{}/events", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgUserCalendarGroupCalendarEvent", + "oracle": "no oracle row for POST /users/{param}/calendarGroups/{param}/calendars/{param}/events and 'New-MgUserCalendarGroupCalendarEvent' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/calendargroups/{}/calendars/{}/events/{}/accept", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgUserCalendarGroupCalendarEventAccept", + "oracle": "no oracle row for POST /users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/accept and 'Invoke-MgUserCalendarGroupCalendarEventAccept' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/calendargroups/{}/calendars/{}/events/{}/attachments", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgUserCalendarGroupCalendarEventAttachment", + "oracle": "no oracle row for POST /users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/attachments and 'New-MgUserCalendarGroupCalendarEventAttachment' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/calendargroups/{}/calendars/{}/events/{}/attachments/createuploadsession", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgUserCalendarGroupCalendarEventAttachmentCreateUploadSession", + "oracle": "no oracle row for POST /users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/attachments/createUploadSession and 'Invoke-MgUserCalendarGroupCalendarEventAttachmentCreateUploadSession' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/calendargroups/{}/calendars/{}/events/{}/cancel", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgUserCalendarGroupCalendarEventCancel", + "oracle": "no oracle row for POST /users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/cancel and 'Invoke-MgUserCalendarGroupCalendarEventCancel' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/calendargroups/{}/calendars/{}/events/{}/decline", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgUserCalendarGroupCalendarEventDecline", + "oracle": "no oracle row for POST /users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/decline and 'Invoke-MgUserCalendarGroupCalendarEventDecline' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/calendargroups/{}/calendars/{}/events/{}/dismissreminder", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgUserCalendarGroupCalendarEventDismissReminder", + "oracle": "no oracle row for POST /users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/dismissReminder and 'Invoke-MgUserCalendarGroupCalendarEventDismissReminder' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/calendargroups/{}/calendars/{}/events/{}/extensions", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgUserCalendarGroupCalendarEventExtension", + "oracle": "no oracle row for POST /users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/extensions and 'New-MgUserCalendarGroupCalendarEventExtension' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/calendargroups/{}/calendars/{}/events/{}/forward", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgUserCalendarGroupCalendarEventForward", + "oracle": "no oracle row for POST /users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/forward and 'Invoke-MgUserCalendarGroupCalendarEventForward' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/calendargroups/{}/calendars/{}/events/{}/permanentdelete", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgUserCalendarGroupCalendarEventPermanentDelete", + "oracle": "no oracle row for POST /users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/permanentDelete and 'Invoke-MgUserCalendarGroupCalendarEventPermanentDelete' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/calendargroups/{}/calendars/{}/events/{}/snoozereminder", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgUserCalendarGroupCalendarEventSnoozeReminder", + "oracle": "no oracle row for POST /users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/snoozeReminder and 'Invoke-MgUserCalendarGroupCalendarEventSnoozeReminder' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/calendargroups/{}/calendars/{}/events/{}/tentativelyaccept", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgUserCalendarGroupCalendarEventTentativelyAccept", + "oracle": "no oracle row for POST /users/{param}/calendarGroups/{param}/calendars/{param}/events/{param}/tentativelyAccept and 'Invoke-MgUserCalendarGroupCalendarEventTentativelyAccept' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/calendargroups/{}/calendars/{}/getschedule", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgUserCalendarGroupCalendarGetSchedule", + "oracle": "no oracle row for POST /users/{param}/calendarGroups/{param}/calendars/{param}/getSchedule and 'Invoke-MgUserCalendarGroupCalendarGetSchedule' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/calendargroups/{}/calendars/{}/permanentdelete", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgUserCalendarGroupCalendarPermanentDelete", + "oracle": "no oracle row for POST /users/{param}/calendarGroups/{param}/calendars/{param}/permanentDelete and 'Invoke-MgUserCalendarGroupCalendarPermanentDelete' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/chats/{}/members/remove", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgUserChatMemberRemove", + "oracle": "no oracle row for POST /users/{param}/chats/{param}/members/remove and 'Invoke-MgUserChatMemberRemove' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/joinedteams", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgUserJoinedTeam", + "oracle": "no oracle row for POST /users/{param}/joinedTeams and 'New-MgUserJoinedTeam' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/joinedteams/{}/archive", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgUserJoinedTeamArchive", + "oracle": "no oracle row for POST /users/{param}/joinedTeams/{param}/archive and 'Invoke-MgUserJoinedTeamArchive' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/joinedteams/{}/channels", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgUserJoinedTeamChannel", + "oracle": "no oracle row for POST /users/{param}/joinedTeams/{param}/channels and 'New-MgUserJoinedTeamChannel' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/joinedteams/{}/channels/{}/allmembers", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgUserJoinedTeamChannelAllMember", + "oracle": "no oracle row for POST /users/{param}/joinedTeams/{param}/channels/{param}/allMembers and 'New-MgUserJoinedTeamChannelAllMember' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/joinedteams/{}/channels/{}/allmembers/add", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgUserJoinedTeamChannelAllMemberAdd", + "oracle": "no oracle row for POST /users/{param}/joinedTeams/{param}/channels/{param}/allMembers/add and 'Invoke-MgUserJoinedTeamChannelAllMemberAdd' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/joinedteams/{}/channels/{}/allmembers/remove", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgUserJoinedTeamChannelAllMemberRemove", + "oracle": "no oracle row for POST /users/{param}/joinedTeams/{param}/channels/{param}/allMembers/remove and 'Invoke-MgUserJoinedTeamChannelAllMemberRemove' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/joinedteams/{}/channels/{}/archive", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgUserJoinedTeamChannelArchive", + "oracle": "no oracle row for POST /users/{param}/joinedTeams/{param}/channels/{param}/archive and 'Invoke-MgUserJoinedTeamChannelArchive' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/joinedteams/{}/channels/{}/completemigration", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgUserJoinedTeamChannelCompleteMigration", + "oracle": "no oracle row for POST /users/{param}/joinedTeams/{param}/channels/{param}/completeMigration and 'Invoke-MgUserJoinedTeamChannelCompleteMigration' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/joinedteams/{}/channels/{}/members", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgUserJoinedTeamChannelMember", + "oracle": "no oracle row for POST /users/{param}/joinedTeams/{param}/channels/{param}/members and 'New-MgUserJoinedTeamChannelMember' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/joinedteams/{}/channels/{}/members/add", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgUserJoinedTeamChannelMemberAdd", + "oracle": "no oracle row for POST /users/{param}/joinedTeams/{param}/channels/{param}/members/add and 'Invoke-MgUserJoinedTeamChannelMemberAdd' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/joinedteams/{}/channels/{}/members/remove", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgUserJoinedTeamChannelMemberRemove", + "oracle": "no oracle row for POST /users/{param}/joinedTeams/{param}/channels/{param}/members/remove and 'Invoke-MgUserJoinedTeamChannelMemberRemove' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/joinedteams/{}/channels/{}/messages", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgUserJoinedTeamChannelMessage", + "oracle": "no oracle row for POST /users/{param}/joinedTeams/{param}/channels/{param}/messages and 'New-MgUserJoinedTeamChannelMessage' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/joinedteams/{}/channels/{}/messages/{}/hostedcontents", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgUserJoinedTeamChannelMessageHostedContent", + "oracle": "no oracle row for POST /users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/hostedContents and 'New-MgUserJoinedTeamChannelMessageHostedContent' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/joinedteams/{}/channels/{}/messages/{}/replies", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgUserJoinedTeamChannelMessageReply", + "oracle": "no oracle row for POST /users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/replies and 'New-MgUserJoinedTeamChannelMessageReply' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/joinedteams/{}/channels/{}/messages/{}/replies/{}/hostedcontents", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgUserJoinedTeamChannelMessageReplyHostedContent", + "oracle": "no oracle row for POST /users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/replies/{param}/hostedContents and 'New-MgUserJoinedTeamChannelMessageReplyHostedContent' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/joinedteams/{}/channels/{}/messages/{}/replies/{}/setreaction", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgUserJoinedTeamChannelMessageReplySetReaction", + "oracle": "no oracle row for POST /users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/replies/{param}/setReaction and 'Invoke-MgUserJoinedTeamChannelMessageReplySetReaction' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/joinedteams/{}/channels/{}/messages/{}/replies/{}/softdelete", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgUserJoinedTeamChannelMessageReplySoftDelete", + "oracle": "no oracle row for POST /users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/replies/{param}/softDelete and 'Invoke-MgUserJoinedTeamChannelMessageReplySoftDelete' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/joinedteams/{}/channels/{}/messages/{}/replies/{}/undosoftdelete", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgUserJoinedTeamChannelMessageReplyUndoSoftDelete", + "oracle": "no oracle row for POST /users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/replies/{param}/undoSoftDelete and 'Invoke-MgUserJoinedTeamChannelMessageReplyUndoSoftDelete' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/joinedteams/{}/channels/{}/messages/{}/replies/{}/unsetreaction", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgUserJoinedTeamChannelMessageReplyUnsetReaction", + "oracle": "no oracle row for POST /users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/replies/{param}/unsetReaction and 'Invoke-MgUserJoinedTeamChannelMessageReplyUnsetReaction' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/joinedteams/{}/channels/{}/messages/{}/replies/replywithquote", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgUserJoinedTeamChannelMessageReplyReplyWithQuote", + "oracle": "no oracle row for POST /users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/replies/replyWithQuote and 'Invoke-MgUserJoinedTeamChannelMessageReplyReplyWithQuote' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/joinedteams/{}/channels/{}/messages/{}/setreaction", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgUserJoinedTeamChannelMessageSetReaction", + "oracle": "no oracle row for POST /users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/setReaction and 'Invoke-MgUserJoinedTeamChannelMessageSetReaction' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/joinedteams/{}/channels/{}/messages/{}/softdelete", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgUserJoinedTeamChannelMessageSoftDelete", + "oracle": "no oracle row for POST /users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/softDelete and 'Invoke-MgUserJoinedTeamChannelMessageSoftDelete' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/joinedteams/{}/channels/{}/messages/{}/undosoftdelete", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgUserJoinedTeamChannelMessageUndoSoftDelete", + "oracle": "no oracle row for POST /users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/undoSoftDelete and 'Invoke-MgUserJoinedTeamChannelMessageUndoSoftDelete' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/joinedteams/{}/channels/{}/messages/{}/unsetreaction", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgUserJoinedTeamChannelMessageUnsetReaction", + "oracle": "no oracle row for POST /users/{param}/joinedTeams/{param}/channels/{param}/messages/{param}/unsetReaction and 'Invoke-MgUserJoinedTeamChannelMessageUnsetReaction' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/joinedteams/{}/channels/{}/messages/replywithquote", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgUserJoinedTeamChannelMessageReplyWithQuote", + "oracle": "no oracle row for POST /users/{param}/joinedTeams/{param}/channels/{param}/messages/replyWithQuote and 'Invoke-MgUserJoinedTeamChannelMessageReplyWithQuote' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/joinedteams/{}/channels/{}/provisionemail", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgUserJoinedTeamChannelProvisionEmail", + "oracle": "no oracle row for POST /users/{param}/joinedTeams/{param}/channels/{param}/provisionEmail and 'Invoke-MgUserJoinedTeamChannelProvisionEmail' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/joinedteams/{}/channels/{}/removeemail", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgUserJoinedTeamChannelRemoveEmail", + "oracle": "no oracle row for POST /users/{param}/joinedTeams/{param}/channels/{param}/removeEmail and 'Invoke-MgUserJoinedTeamChannelRemoveEmail' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/joinedteams/{}/channels/{}/sharedwithteams", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgUserJoinedTeamChannelSharedWithTeam", + "oracle": "no oracle row for POST /users/{param}/joinedTeams/{param}/channels/{param}/sharedWithTeams and 'New-MgUserJoinedTeamChannelSharedWithTeam' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/joinedteams/{}/channels/{}/startmigration", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgUserJoinedTeamChannelStartMigration", + "oracle": "no oracle row for POST /users/{param}/joinedTeams/{param}/channels/{param}/startMigration and 'Invoke-MgUserJoinedTeamChannelStartMigration' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/joinedteams/{}/channels/{}/tabs", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgUserJoinedTeamChannelTab", + "oracle": "no oracle row for POST /users/{param}/joinedTeams/{param}/channels/{param}/tabs and 'New-MgUserJoinedTeamChannelTab' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/joinedteams/{}/channels/{}/unarchive", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgUserJoinedTeamChannelUnarchive", + "oracle": "no oracle row for POST /users/{param}/joinedTeams/{param}/channels/{param}/unarchive and 'Invoke-MgUserJoinedTeamChannelUnarchive' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/joinedteams/{}/clone", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgUserJoinedTeamClone", + "oracle": "no oracle row for POST /users/{param}/joinedTeams/{param}/clone and 'Invoke-MgUserJoinedTeamClone' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/joinedteams/{}/completemigration", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgUserJoinedTeamCompleteMigration", + "oracle": "no oracle row for POST /users/{param}/joinedTeams/{param}/completeMigration and 'Invoke-MgUserJoinedTeamCompleteMigration' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/joinedteams/{}/installedapps", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgUserJoinedTeamInstalledApp", + "oracle": "no oracle row for POST /users/{param}/joinedTeams/{param}/installedApps and 'New-MgUserJoinedTeamInstalledApp' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/joinedteams/{}/installedapps/{}/upgrade", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgUserJoinedTeamInstalledAppUpgrade", + "oracle": "no oracle row for POST /users/{param}/joinedTeams/{param}/installedApps/{param}/upgrade and 'Invoke-MgUserJoinedTeamInstalledAppUpgrade' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/joinedteams/{}/members", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgUserJoinedTeamMember", + "oracle": "no oracle row for POST /users/{param}/joinedTeams/{param}/members and 'New-MgUserJoinedTeamMember' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/joinedteams/{}/members/add", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgUserJoinedTeamMemberAdd", + "oracle": "no oracle row for POST /users/{param}/joinedTeams/{param}/members/add and 'Invoke-MgUserJoinedTeamMemberAdd' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/joinedteams/{}/members/remove", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgUserJoinedTeamMemberRemove", + "oracle": "no oracle row for POST /users/{param}/joinedTeams/{param}/members/remove and 'Invoke-MgUserJoinedTeamMemberRemove' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/joinedteams/{}/operations", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgUserJoinedTeamOperation", + "oracle": "no oracle row for POST /users/{param}/joinedTeams/{param}/operations and 'New-MgUserJoinedTeamOperation' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/joinedteams/{}/permissiongrants", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgUserJoinedTeamPermissionGrant", + "oracle": "no oracle row for POST /users/{param}/joinedTeams/{param}/permissionGrants and 'New-MgUserJoinedTeamPermissionGrant' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/joinedteams/{}/primarychannel/allmembers", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgUserJoinedTeamPrimaryChannelAllMember", + "oracle": "no oracle row for POST /users/{param}/joinedTeams/{param}/primaryChannel/allMembers and 'New-MgUserJoinedTeamPrimaryChannelAllMember' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/joinedteams/{}/primarychannel/allmembers/add", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgUserJoinedTeamPrimaryChannelAllMemberAdd", + "oracle": "no oracle row for POST /users/{param}/joinedTeams/{param}/primaryChannel/allMembers/add and 'Invoke-MgUserJoinedTeamPrimaryChannelAllMemberAdd' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/joinedteams/{}/primarychannel/allmembers/remove", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgUserJoinedTeamPrimaryChannelAllMemberRemove", + "oracle": "no oracle row for POST /users/{param}/joinedTeams/{param}/primaryChannel/allMembers/remove and 'Invoke-MgUserJoinedTeamPrimaryChannelAllMemberRemove' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/joinedteams/{}/primarychannel/archive", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgUserJoinedTeamPrimaryChannelArchive", + "oracle": "no oracle row for POST /users/{param}/joinedTeams/{param}/primaryChannel/archive and 'Invoke-MgUserJoinedTeamPrimaryChannelArchive' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/joinedteams/{}/primarychannel/completemigration", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgUserJoinedTeamPrimaryChannelCompleteMigration", + "oracle": "no oracle row for POST /users/{param}/joinedTeams/{param}/primaryChannel/completeMigration and 'Invoke-MgUserJoinedTeamPrimaryChannelCompleteMigration' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/joinedteams/{}/primarychannel/members", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgUserJoinedTeamPrimaryChannelMember", + "oracle": "no oracle row for POST /users/{param}/joinedTeams/{param}/primaryChannel/members and 'New-MgUserJoinedTeamPrimaryChannelMember' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/joinedteams/{}/primarychannel/members/add", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgUserJoinedTeamPrimaryChannelMemberAdd", + "oracle": "no oracle row for POST /users/{param}/joinedTeams/{param}/primaryChannel/members/add and 'Invoke-MgUserJoinedTeamPrimaryChannelMemberAdd' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/joinedteams/{}/primarychannel/members/remove", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgUserJoinedTeamPrimaryChannelMemberRemove", + "oracle": "no oracle row for POST /users/{param}/joinedTeams/{param}/primaryChannel/members/remove and 'Invoke-MgUserJoinedTeamPrimaryChannelMemberRemove' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/joinedteams/{}/primarychannel/messages", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgUserJoinedTeamPrimaryChannelMessage", + "oracle": "no oracle row for POST /users/{param}/joinedTeams/{param}/primaryChannel/messages and 'New-MgUserJoinedTeamPrimaryChannelMessage' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/joinedteams/{}/primarychannel/messages/{}/hostedcontents", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgUserJoinedTeamPrimaryChannelMessageHostedContent", + "oracle": "no oracle row for POST /users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/hostedContents and 'New-MgUserJoinedTeamPrimaryChannelMessageHostedContent' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/joinedteams/{}/primarychannel/messages/{}/replies", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgUserJoinedTeamPrimaryChannelMessageReply", + "oracle": "no oracle row for POST /users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/replies and 'New-MgUserJoinedTeamPrimaryChannelMessageReply' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/joinedteams/{}/primarychannel/messages/{}/replies/{}/hostedcontents", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgUserJoinedTeamPrimaryChannelMessageReplyHostedContent", + "oracle": "no oracle row for POST /users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/replies/{param}/hostedContents and 'New-MgUserJoinedTeamPrimaryChannelMessageReplyHostedContent' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/joinedteams/{}/primarychannel/messages/{}/replies/{}/setreaction", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgUserJoinedTeamPrimaryChannelMessageReplySetReaction", + "oracle": "no oracle row for POST /users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/replies/{param}/setReaction and 'Invoke-MgUserJoinedTeamPrimaryChannelMessageReplySetReaction' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/joinedteams/{}/primarychannel/messages/{}/replies/{}/softdelete", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgUserJoinedTeamPrimaryChannelMessageReplySoftDelete", + "oracle": "no oracle row for POST /users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/replies/{param}/softDelete and 'Invoke-MgUserJoinedTeamPrimaryChannelMessageReplySoftDelete' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/joinedteams/{}/primarychannel/messages/{}/replies/{}/undosoftdelete", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgUserJoinedTeamPrimaryChannelMessageReplyUndoSoftDelete", + "oracle": "no oracle row for POST /users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/replies/{param}/undoSoftDelete and 'Invoke-MgUserJoinedTeamPrimaryChannelMessageReplyUndoSoftDelete' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/joinedteams/{}/primarychannel/messages/{}/replies/{}/unsetreaction", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgUserJoinedTeamPrimaryChannelMessageReplyUnsetReaction", + "oracle": "no oracle row for POST /users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/replies/{param}/unsetReaction and 'Invoke-MgUserJoinedTeamPrimaryChannelMessageReplyUnsetReaction' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/joinedteams/{}/primarychannel/messages/{}/replies/replywithquote", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgUserJoinedTeamPrimaryChannelMessageReplyReplyWithQuote", + "oracle": "no oracle row for POST /users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/replies/replyWithQuote and 'Invoke-MgUserJoinedTeamPrimaryChannelMessageReplyReplyWithQuote' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/joinedteams/{}/primarychannel/messages/{}/setreaction", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgUserJoinedTeamPrimaryChannelMessageSetReaction", + "oracle": "no oracle row for POST /users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/setReaction and 'Invoke-MgUserJoinedTeamPrimaryChannelMessageSetReaction' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/joinedteams/{}/primarychannel/messages/{}/softdelete", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgUserJoinedTeamPrimaryChannelMessageSoftDelete", + "oracle": "no oracle row for POST /users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/softDelete and 'Invoke-MgUserJoinedTeamPrimaryChannelMessageSoftDelete' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/joinedteams/{}/primarychannel/messages/{}/undosoftdelete", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgUserJoinedTeamPrimaryChannelMessageUndoSoftDelete", + "oracle": "no oracle row for POST /users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/undoSoftDelete and 'Invoke-MgUserJoinedTeamPrimaryChannelMessageUndoSoftDelete' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/joinedteams/{}/primarychannel/messages/{}/unsetreaction", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgUserJoinedTeamPrimaryChannelMessageUnsetReaction", + "oracle": "no oracle row for POST /users/{param}/joinedTeams/{param}/primaryChannel/messages/{param}/unsetReaction and 'Invoke-MgUserJoinedTeamPrimaryChannelMessageUnsetReaction' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/joinedteams/{}/primarychannel/messages/replywithquote", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgUserJoinedTeamPrimaryChannelMessageReplyWithQuote", + "oracle": "no oracle row for POST /users/{param}/joinedTeams/{param}/primaryChannel/messages/replyWithQuote and 'Invoke-MgUserJoinedTeamPrimaryChannelMessageReplyWithQuote' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/joinedteams/{}/primarychannel/provisionemail", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgUserJoinedTeamPrimaryChannelProvisionEmail", + "oracle": "no oracle row for POST /users/{param}/joinedTeams/{param}/primaryChannel/provisionEmail and 'Invoke-MgUserJoinedTeamPrimaryChannelProvisionEmail' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/joinedteams/{}/primarychannel/removeemail", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgUserJoinedTeamPrimaryChannelRemoveEmail", + "oracle": "no oracle row for POST /users/{param}/joinedTeams/{param}/primaryChannel/removeEmail and 'Invoke-MgUserJoinedTeamPrimaryChannelRemoveEmail' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/joinedteams/{}/primarychannel/sharedwithteams", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgUserJoinedTeamPrimaryChannelSharedWithTeam", + "oracle": "no oracle row for POST /users/{param}/joinedTeams/{param}/primaryChannel/sharedWithTeams and 'New-MgUserJoinedTeamPrimaryChannelSharedWithTeam' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/joinedteams/{}/primarychannel/startmigration", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgUserJoinedTeamPrimaryChannelStartMigration", + "oracle": "no oracle row for POST /users/{param}/joinedTeams/{param}/primaryChannel/startMigration and 'Invoke-MgUserJoinedTeamPrimaryChannelStartMigration' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/joinedteams/{}/primarychannel/tabs", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgUserJoinedTeamPrimaryChannelTab", + "oracle": "no oracle row for POST /users/{param}/joinedTeams/{param}/primaryChannel/tabs and 'New-MgUserJoinedTeamPrimaryChannelTab' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/joinedteams/{}/primarychannel/unarchive", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgUserJoinedTeamPrimaryChannelUnarchive", + "oracle": "no oracle row for POST /users/{param}/joinedTeams/{param}/primaryChannel/unarchive and 'Invoke-MgUserJoinedTeamPrimaryChannelUnarchive' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/joinedteams/{}/schedule/daynotes", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgUserJoinedTeamScheduleDayNote", + "oracle": "no oracle row for POST /users/{param}/joinedTeams/{param}/schedule/dayNotes and 'New-MgUserJoinedTeamScheduleDayNote' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/joinedteams/{}/schedule/offershiftrequests", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgUserJoinedTeamScheduleOfferShiftRequest", + "oracle": "no oracle row for POST /users/{param}/joinedTeams/{param}/schedule/offerShiftRequests and 'New-MgUserJoinedTeamScheduleOfferShiftRequest' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/joinedteams/{}/schedule/openshiftchangerequests", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgUserJoinedTeamScheduleOpenShiftChangeRequest", + "oracle": "no oracle row for POST /users/{param}/joinedTeams/{param}/schedule/openShiftChangeRequests and 'New-MgUserJoinedTeamScheduleOpenShiftChangeRequest' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/joinedteams/{}/schedule/openshifts", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgUserJoinedTeamScheduleOpenShift", + "oracle": "no oracle row for POST /users/{param}/joinedTeams/{param}/schedule/openShifts and 'New-MgUserJoinedTeamScheduleOpenShift' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/joinedteams/{}/schedule/schedulinggroups", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgUserJoinedTeamScheduleSchedulingGroup", + "oracle": "no oracle row for POST /users/{param}/joinedTeams/{param}/schedule/schedulingGroups and 'New-MgUserJoinedTeamScheduleSchedulingGroup' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/joinedteams/{}/schedule/share", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgUserJoinedTeamScheduleShare", + "oracle": "no oracle row for POST /users/{param}/joinedTeams/{param}/schedule/share and 'Invoke-MgUserJoinedTeamScheduleShare' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/joinedteams/{}/schedule/shifts", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgUserJoinedTeamScheduleShift", + "oracle": "no oracle row for POST /users/{param}/joinedTeams/{param}/schedule/shifts and 'New-MgUserJoinedTeamScheduleShift' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/joinedteams/{}/schedule/swapshiftschangerequests", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgUserJoinedTeamScheduleSwapShiftChangeRequest", + "oracle": "no oracle row for POST /users/{param}/joinedTeams/{param}/schedule/swapShiftsChangeRequests and 'New-MgUserJoinedTeamScheduleSwapShiftChangeRequest' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/joinedteams/{}/schedule/timecards", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgUserJoinedTeamScheduleTimeCard", + "oracle": "no oracle row for POST /users/{param}/joinedTeams/{param}/schedule/timeCards and 'New-MgUserJoinedTeamScheduleTimeCard' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/joinedteams/{}/schedule/timecards/{}/clockout", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgUserJoinedTeamScheduleTimeCardClockOut", + "oracle": "no oracle row for POST /users/{param}/joinedTeams/{param}/schedule/timeCards/{param}/clockOut and 'Invoke-MgUserJoinedTeamScheduleTimeCardClockOut' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/joinedteams/{}/schedule/timecards/{}/confirm", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgUserJoinedTeamScheduleTimeCardConfirm", + "oracle": "no oracle row for POST /users/{param}/joinedTeams/{param}/schedule/timeCards/{param}/confirm and 'Invoke-MgUserJoinedTeamScheduleTimeCardConfirm' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/joinedteams/{}/schedule/timecards/{}/endbreak", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgUserJoinedTeamScheduleTimeCardEndBreak", + "oracle": "no oracle row for POST /users/{param}/joinedTeams/{param}/schedule/timeCards/{param}/endBreak and 'Invoke-MgUserJoinedTeamScheduleTimeCardEndBreak' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/joinedteams/{}/schedule/timecards/{}/startbreak", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgUserJoinedTeamScheduleTimeCardStartBreak", + "oracle": "no oracle row for POST /users/{param}/joinedTeams/{param}/schedule/timeCards/{param}/startBreak and 'Invoke-MgUserJoinedTeamScheduleTimeCardStartBreak' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/joinedteams/{}/schedule/timecards/clockin", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgUserJoinedTeamScheduleTimeCardClockIn", + "oracle": "no oracle row for POST /users/{param}/joinedTeams/{param}/schedule/timeCards/clockIn and 'Invoke-MgUserJoinedTeamScheduleTimeCardClockIn' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/joinedteams/{}/schedule/timeoffreasons", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgUserJoinedTeamScheduleTimeOffReason", + "oracle": "no oracle row for POST /users/{param}/joinedTeams/{param}/schedule/timeOffReasons and 'New-MgUserJoinedTeamScheduleTimeOffReason' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/joinedteams/{}/schedule/timeoffrequests", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgUserJoinedTeamScheduleTimeOffRequest", + "oracle": "no oracle row for POST /users/{param}/joinedTeams/{param}/schedule/timeOffRequests and 'New-MgUserJoinedTeamScheduleTimeOffRequest' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/joinedteams/{}/schedule/timesoff", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgUserJoinedTeamScheduleTimeOff", + "oracle": "no oracle row for POST /users/{param}/joinedTeams/{param}/schedule/timesOff and 'New-MgUserJoinedTeamScheduleTimeOff' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/joinedteams/{}/sendactivitynotification", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgUserJoinedTeamSendActivityNotification", + "oracle": "no oracle row for POST /users/{param}/joinedTeams/{param}/sendActivityNotification and 'Invoke-MgUserJoinedTeamSendActivityNotification' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/joinedteams/{}/tags", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgUserJoinedTeamTag", + "oracle": "no oracle row for POST /users/{param}/joinedTeams/{param}/tags and 'New-MgUserJoinedTeamTag' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/joinedteams/{}/tags/{}/members", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgUserJoinedTeamTagMember", + "oracle": "no oracle row for POST /users/{param}/joinedTeams/{param}/tags/{param}/members and 'New-MgUserJoinedTeamTagMember' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/joinedteams/{}/unarchive", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgUserJoinedTeamUnarchive", + "oracle": "no oracle row for POST /users/{param}/joinedTeams/{param}/unarchive and 'Invoke-MgUserJoinedTeamUnarchive' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/licensedetails", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgUserLicenseDetail", + "oracle": "no oracle row for POST /users/{param}/licenseDetails and 'New-MgUserLicenseDetail' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/manageddevices/{}/windowsdefenderupdatesignatures", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgUserManagedDeviceWindowsDefenderUpdateSignatures", + "oracle": "no oracle row for POST /users/{param}/managedDevices/{param}/windowsDefenderUpdateSignatures and 'Invoke-MgUserManagedDeviceWindowsDefenderUpdateSignatures' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/onlinemeetings/createorget", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgUserOnlineMeetingCreateOrGet", + "oracle": "no oracle row for POST /users/{param}/onlineMeetings/createOrGet and 'Invoke-MgUserOnlineMeetingCreateOrGet' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/planner/plans", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgUserPlannerPlan", + "oracle": "no oracle row for POST /users/{param}/planner/plans and 'New-MgUserPlannerPlan' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/planner/plans/{}/buckets", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgUserPlannerPlanBucket", + "oracle": "no oracle row for POST /users/{param}/planner/plans/{param}/buckets and 'New-MgUserPlannerPlanBucket' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/planner/plans/{}/buckets/{}/tasks", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgUserPlannerPlanBucketTask", + "oracle": "no oracle row for POST /users/{param}/planner/plans/{param}/buckets/{param}/tasks and 'New-MgUserPlannerPlanBucketTask' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/planner/plans/{}/tasks", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgUserPlannerPlanTask", + "oracle": "no oracle row for POST /users/{param}/planner/plans/{param}/tasks and 'New-MgUserPlannerPlanTask' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/planner/tasks", + "action": "suppress", + "evidence": { + "ourCommand": "New-MgUserPlannerTask", + "oracle": "no oracle row for POST /users/{param}/planner/tasks and 'New-MgUserPlannerTask' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/restore", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgUserRestore", + "oracle": "no oracle row for POST /users/{param}/restore and 'Invoke-MgUserRestore' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/{}/wipemanagedappregistrationsbydevicetag", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgUserWipeManagedAppRegistrationsByDeviceTag", + "oracle": "no oracle row for POST /users/{param}/wipeManagedAppRegistrationsByDeviceTag and 'Invoke-MgUserWipeManagedAppRegistrationsByDeviceTag' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "POST", + "uri": "/users/getavailableextensionproperties", + "action": "suppress", + "evidence": { + "ourCommand": "Invoke-MgUserGetAvailableExtensionProperties", + "oracle": "no oracle row for POST /users/getAvailableExtensionProperties and 'Invoke-MgUserGetAvailableExtensionProperties' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PUT", + "uri": "/admin/serviceannouncement/messages/{}/attachments/{}/$value", + "action": "suppress", + "evidence": { + "ourCommand": "Set-MgAdminServiceAnnouncementMessageAttachmentContent", + "oracle": "no oracle row for PUT /admin/serviceAnnouncement/messages/{param}/attachments/{param}/$value and 'Set-MgAdminServiceAnnouncementMessageAttachmentContent' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PUT", + "uri": "/drives/{}/items/{}/analytics/itemactivitystats/{}/activities/{}/driveitem/$value", + "action": "suppress", + "evidence": { + "ourCommand": "Set-MgDriveItemAnalyticItemActivityStatActivityDriveItemContent", + "oracle": "no oracle row for PUT /drives/{param}/items/{param}/analytics/itemActivityStats/{param}/activities/{param}/driveItem/$value and 'Set-MgDriveItemAnalyticItemActivityStatActivityDriveItemContent' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PUT", + "uri": "/users/{}/joinedteams/{}/channels/{}/filesfolder/$value", + "action": "suppress", + "evidence": { + "ourCommand": "Set-MgUserJoinedTeamChannelFileFolderContent", + "oracle": "no oracle row for PUT /users/{param}/joinedTeams/{param}/channels/{param}/filesFolder/$value and 'Set-MgUserJoinedTeamChannelFileFolderContent' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PUT", + "uri": "/users/{}/joinedteams/{}/primarychannel/filesfolder/$value", + "action": "suppress", + "evidence": { + "ourCommand": "Set-MgUserJoinedTeamPrimaryChannelFileFolderContent", + "oracle": "no oracle row for PUT /users/{param}/joinedTeams/{param}/primaryChannel/filesFolder/$value and 'Set-MgUserJoinedTeamPrimaryChannelFileFolderContent' unshipped" + } + }, + { + "apiVersion": "v1.0", + "method": "PUT", + "uri": "/users/{}/joinedteams/{}/schedule", + "action": "suppress", + "evidence": { + "ourCommand": "Set-MgUserJoinedTeamSchedule", + "oracle": "no oracle row for PUT /users/{param}/joinedTeams/{param}/schedule and 'Set-MgUserJoinedTeamSchedule' unshipped" + } + } +] \ No newline at end of file diff --git a/tools/WrapperGenerator/docs/body-property-binding.md b/tools/WrapperGenerator/docs/body-property-binding.md index 7252247c585..997acee0509 100644 --- a/tools/WrapperGenerator/docs/body-property-binding.md +++ b/tools/WrapperGenerator/docs/body-property-binding.md @@ -158,7 +158,8 @@ meaningless and must not be cited as evidence that nothing important is missing. ## Verification -Five gates, each proving something the others cannot: +Five gates, each proving something the others cannot (three are independent of the classifier; +see below for which): | Gate | Proves | Cannot prove | |---|---|---| @@ -175,7 +176,7 @@ that binds its model, so occurrences overstate the remaining work. Compilation is the authority for type compatibility; the omission oracle is the authority for omissions; runtime tests are the authority for PowerShell conversion. -**Only some of these are independent of the classifier, and the distinction matters.** +**Only three of these are independent of the classifier, and the distinction matters.** `Test-BodyBindingCoverage.ps1` builds its expectation from the *generated kiota models* and joins it against the *emitted parameters*, so the classifier is the subject rather than the judge — it catches a member the classifier never mentioned. `Measure-BodyPropertyCoverage.ps1` is different: @@ -219,10 +220,27 @@ This is the wrapper's own input contract; it is pinned by the runtime gate rathe ## Residual debt -**None among the operations the generator emits: the sweep reports 0 unbound properties across all 38 specs, and the oracle 0 failures across 2,633 body-writing cmdlets.** Of the 14,131 operations in those specs only 8,164 (57.8%) generate - 767 are suppressed (the published SDK ships no cmdlet) and 5,200 are unsupported (path segments, actions, PUT, streams) - so a zero here says nothing about an operation refused upstream. The -classifications for shapes that do not occur — `Union`, `UnknownFormat`, `InlineObject`, -`InlineEnum`, `Dictionary`, `Unresolvable` — are retained deliberately so a future corpus change -is reported rather than silently mis-bound. +**None among the operations the generator emits: the oracle reports 0 failures across 2,240 +body-writing cmdlets (24,050 model members seen, 15,872 bound).** The classifications for shapes that do not occur — `Union`, +`UnknownFormat`, `InlineObject`, `InlineEnum`, `Dictionary`, `Unresolvable` — are retained +deliberately so a future corpus change is reported rather than silently mis-bound. + +That qualifier is load-bearing. Properties are only counted for operations that generate, and of +the 14,131 operations in the 38 v1.0 specs **10,401 (73.6%)** do. The rest are 3,173 suppressed +because the published SDK ships no cmdlet for them (oracle-derived), and 557 unsupported — 345 +call segments on operations the spec does not class as an action or function, 125 routes calling a +parameterized function before their final segment, 42 whose content response is neither a stream nor a resolvable entity, and 45 others across four smaller causes. An operation refused upstream contributes +no properties here, so a zero says nothing about it. `InlineObject` in particular reads as zero +*because* action bodies are refused before classification, not because Graph avoids inline +objects. + +Beware two ways of miscounting this, both made here before the accounting was forced to balance: +emitted files include GET dispatchers that issue no request (1,336 of the current 11,737), so +files are not operations; and subtracting only the unsupported from the total silently counts +every suppressed operation as generated — that error would read 13,574 "generated" against a true +10,401. A third trap is in the file *names*: `BaseName` of `GetMgApplication_List.g.cs` is +`GetMgApplication_List.g`, since only the last extension is stripped, so an orphan check written +against `BaseName -match '_(List|Get)$'` examines nothing and passes vacuously. See [edge-cases/body-binding-edge-cases.md](edge-cases/body-binding-edge-cases.md) for each shape, its population, and its exit criteria. @@ -236,6 +254,10 @@ shape, its population, and its exit criteria. | After schema-less properties | **0** | **0** | `New-MgUser` went from 59 parameters to 82 over the same change **in a freshly generated tree**, -and the operation inventory is unchanged at 9,608 cmdlets — these slices altered which -*properties* bind, never which *operations* generate. The committed output under `src/` predates -this work and still shows 59; it has to be regenerated before the same figure applies there. +and across the body-binding slices the operation inventory was unchanged at 9,608 files — those +slices altered which *properties* bind, never which *operations* generate. The subsequent +parity derivation then changed the inventory deliberately (9,608 → 8,372 files: 1,896 removed as +suppressions and renames, 660 added as renames, reconciled row-by-row against the derivation +ledger); the operation shapes added since — actions, functions, `$count`, `$ref`, `$value`, PUT — +took it to the current 11,737. The committed output under `src/` predates all of this and still +shows 59 parameters; it has to be regenerated before any figure here applies there. diff --git a/tools/WrapperGenerator/docs/edge-cases/action-function-edge-cases.md b/tools/WrapperGenerator/docs/edge-cases/action-function-edge-cases.md new file mode 100644 index 00000000000..0b37e4689a0 --- /dev/null +++ b/tools/WrapperGenerator/docs/edge-cases/action-function-edge-cases.md @@ -0,0 +1,192 @@ +# Action and function edge cases + +Part of the wrapper generator's edge-case catalog (one file per **class** of issue, fixed +fields per entry). This file covers **OData actions and functions**: operations that call +something on a resource rather than doing CRUD over one. + +An action is `x-ms-docs-operation-type: action` (always POST, parameters in an inline request +body); a function is `x-ms-docs-operation-type: function` (always GET, parameters inline in the +path segment). The classification comes from that extension, never from guessing at a path +shape — a parenthesised segment is a *consequence* of being a function, not the definition. + +Population across the 38 configured v1.0 modules: **2,737 operations** (1,683 actions, 1,054 +functions) in 33 modules. 118 are `application/octet-stream` downloads, which fall under the +existing stream-download gap; 13 use OData parameter aliases (below). + +## Entry template + +``` +## +- **Class:** +- **Status:** +- **Evidence:** +- **Decision:** +- **References:** +``` + +## Status summary + +| Case | Class | Status | +|---|---|---| +| Per-operation types drop a qualifier the builder keeps | kiota-naming | handled | +| Entity `$ref` outranks a `value` member | spec-shape | handled | +| Function arguments are named by their placeholder | kiota-naming | handled | +| Reserved namespace names gain a `Namespace` suffix | kiota-naming | handled | +| Reserved model names gain an `Object` suffix | kiota-naming | handled | +| `/delete` segment clashes with the request methods | kiota-naming | handled | +| Value-wrapping responses have a non-obsolete accessor | kiota-naming | handled | +| Parameterized functions have no bindable accessor | spec-shape | workaround | +| Byte responses (`application/octet-stream`) | spec-shape | handled | +| `-OutFile` is only meaningful on a stream response | binding-model | handled | +| OData parameter aliases (`@name`) | binding-model | deferred | + +## Per-operation types drop a qualifier the request builder keeps + +- **Class:** kiota-naming +- **Status:** handled +- **Evidence:** for `/security/alerts_v2/microsoft.graph.security.moveAlerts`, kiota generates + the folder, namespace and builder as `MicrosoftGraphSecurityMoveAlerts…` but names the body + class `MoveAlertsPostRequestBody` — the qualifier is dropped from the type, not the namespace. + Same split on `…/microsoft.graph.callRecords.getDirectRoutingCalls(…)`, whose response class + is `GetDirectRoutingCallsWithFromDateTimeWithToDateTimeGetResponse`. +- **Decision:** `CmdletNaming` carries both `OperationMemberName` (qualified — namespace and + builder) and `OperationTypeName` (bare — request body, response, and the + `…AsResponseAsync` method). +- **References:** `PredictsTheKiotaMemberAndTypeNamespace` (ActionFunctionTests). + +## Entity `$ref` outranks a `value` member + +- **Class:** spec-shape +- **Status:** handled +- **Evidence:** `microsoft.graph.workbookFunctionResult` is a normal entity that happens to + declare a `value` property. Treating any response containing `value` as a value-wrapper made + every workbook function ask for a `CountIfPostResponse` class kiota never generates. +- **Decision:** resolve a referenced entity first; only an **inline** object whose payload hangs + off `value` gets the per-operation `Response`. +- **References:** `EmitsActionWithComplexRequestBodyAndEntityReturn`, + `CallsTheNonObsoleteMethodForAValueWrappingResponse`. + +## Function arguments are named by their placeholder + +- **Class:** kiota-naming +- **Status:** handled +- **Evidence:** `…/cell(row={row},column={column})/column(column={column1})` generates + `ColumnWithColumn1` — kiota takes the name from the `{placeholder}`, not the OData parameter + on the left of the `=`. The two usually match, so this only surfaces where the spec + disambiguates a repeated argument name. +- **Decision:** parse the placeholder as the parameter's name. It is also the key the URL + template expands, so taking the left-hand side would leave the value unbound at runtime as + well as mis-name the member. +- **References:** `ParameterizedFunctionCarriesItsArgumentsInPathOrder`. + +## Reserved namespace and model names + +- **Class:** kiota-naming +- **Status:** handled +- **Evidence:** kiota appends `Namespace` to a namespace whose name collides with a BCL type — + `/directory/…` generates under `DirectoryNamespace`. Observed across the 38 built clients: + Char, Convert, Date, Decimal, Directory, Environment, File, Range, Task, Type. The + model-class equivalent appends `Object`; the actions surfaced three names the previous list + lacked (`Action`, `DayOfWeek`, `ValueType`), each confirmed as a rename by the schema existing + unsuffixed in the spec — unlike `microsoft.graph.referencedObject` and + `microsoft.graph.expressionInputObject`, which are genuine Graph names. +- **Decision:** both sets are encoded as data with the observed corpus as their citation. A name + kiota starts renaming that is missing from either set is a module compile error, never a + silent mis-emission. + +## `/delete` segment clashes with the request methods + +- **Class:** kiota-naming +- **Status:** handled +- **Evidence:** kiota exposes the `/delete` navigation as `DeletePath`, because `Delete` would + clash with the request methods the builder declares. 25 v1.0 routes contain a `/delete` + segment; `/get`, `/post`, `/patch` and `/put` do not occur. +- **Decision:** rename only the clash that occurs. A new one appears as a compile error. + +## Value-wrapping responses have a non-obsolete accessor + +- **Class:** kiota-naming +- **Status:** handled +- **Evidence:** for a response wrapping its payload in `value`, kiota generates + `PostAsPostResponseAsync` returning `PostResponse`, and marks the plain + `PostAsync` beside it `[Obsolete]` (it returns `Response`, which derives from the + former). +- **Decision:** always call the non-obsolete accessor, so the emitted modules compile without + deprecation warnings and survive kiota removing the old overload. + +## Parameterized functions have no bindable accessor + +- **Class:** spec-shape +- **Status:** workaround (kiota's public path-parameter constructor) +- **Evidence:** `grep -c 'in: path' openApiDocs_KiotaCompat/v1.0/*.yml` is **0** — the DevX + `style=Plain` conversion emits no path-parameter declarations at all. Kiota still infers `{id}` + indexer segments structurally, but only lifts an in-segment function argument into a typed + accessor argument when the spec declares it, so it generates + `ReminderViewWithStartDateTimeWithEndDateTime()` with an empty signature while leaving + `{StartDateTime}` in the URL template. The same operation from the legacy `openApiDocs` spec, + which does declare them, generates `(string endDateTime, string startDateTime)`. + `BaseRequestBuilder.PathParameters` is protected, so the values cannot be set after the fact. +- **Decision:** construct the builder through its public `(Dictionary, + IRequestAdapter)` constructor with the path ids and function arguments populated, keyed by the + URL template's own placeholder names (percent-encoded as kiota encodes them: `{user-id}` is + `user%2Did`). This expands kiota's own template rather than assembling a URL by hand. + 524 operations take this path. The root fix is upstream: the KiotaCompat documents should + declare the parameters their paths already reference. +- **References:** `EmitsParameterizedFunctionBindingItsArgumentsThroughThePathParameters`. + +## Byte responses (`application/octet-stream`) + +- **Class:** spec-shape +- **Status:** handled +- **Evidence:** 118 action/function operations declare their success response as + `application/octet-stream` and nothing else — the Intune reporting surface is almost all of + them. **101 are cmdlets the published SDK ships** (94 in Reports, the rest spread across + Compliance, Devices.ServiceAnnouncement, Security and DeviceManagement.Administration), so + skipping the shape left a large hole in a module that otherwise generates. Kiota types every + one identically: the ordinary `PostAsync`/`GetAsync` returns `Task`. +- **Decision:** generate them. Request binding, naming and the call are unchanged from any other + action or function; only the response differs. The cmdlet declares + `[OutputType(typeof(byte[]))]` and copies the stream into a byte array before writing it, + because the raw `Stream` is bound to the request that produced it and would already be + unusable by the time a caller read it. No parameter is invented for this: the published + example (`src/DeviceManagement.Actions/v1.0/examples/Get-MgDeviceManagementReportCachedReport.md`) + shows the shipped cmdlet writing to the pipeline, not to a file. +- **Scope:** action and function operations only. The ~78 **resource** GETs that return a stream + (`/content`, `/$value`) are a separate emitter path and remain the pre-existing gap. +- **References:** `EmitsStreamReturningActionAsBytes` (ActionFunctionTests); `CallPlan.ReturnsStream`. + +## `-OutFile` is only meaningful on a stream response + +- **Class:** binding-model +- **Status:** handled +- **Evidence:** `EmitContentSet` is reached from two callers — the `/$value` PUT branch and + `EmitSetFor`'s non-JSON-request-body branch, which is how an ordinary content route such as + `PUT /drives/{drive-id}/bundles/{driveItem-id}/content` arrives. On 56 of the 190 v1.0 cmdlets + it produced, the success response is the updated **entity**, not the bytes back: + `Set-MgDriveBundleContent` emits `[OutputType(typeof(…Models.DriveItem))]` and declares + `DriveItem? result`. `-OutFile` is only ever read inside the stream-output block, so on those 56 + it was a parameter that accepted a file path and silently ignored it. +- **Decision:** the declaration is gated on the resolved response actually being a stream, which is + what `EmitAction` and `EmitFunction` already did — the two content emitters were the outliers. + Across the regenerated v1.0 corpus all 134 cmdlets that declare `-OutFile` now also read it + (was 190 declaring / 134 reading). +- **References:** `CmdletEmitter.EmitContentGet`, `CmdletEmitter.EmitContentSet`; + `ActionFunctionTests.ContentWriteDeclaresOutFileOnlyWhenTheResponseIsAStream`, which asserts the + entity case declares no `-OutFile` **and** the stream case still does, so neither deleting the + gate nor hard-coding it to empty passes. + +## OData parameter aliases (`@name`) + +- **Class:** binding-model +- **Status:** deferred (reported, not emitted) +- **Evidence:** 13 v1.0 operations pass arguments as OData parameter aliases — + `doesUserHaveAccess(userId='@userId',tenantId='@tenantId',userPrincipalName='@userPrincipalName')` + and the `getAllRecordings`/`getAllTranscripts` families. An alias supplies its value as a + **query option**, not a path substitution, which none of the emitted shapes cover; kiota's + member name for the quoted form is also irregular + (`GetAllRecordingsuserIdUserIdWithStartDateTimeWithEndDateTime`). +- **Decision:** skipped with a named reason rather than emitted against a guessed name. The + published SDK ships 5 of the 13 (the `doesUserHaveAccess` family, e.g. + `Invoke-MgHaveTeamChannel`), so this is a real coverage gap and is counted as one. +- **References:** `Compare-WrapperCmdletNames.ps1` reports them as unshipped-by-us; the skip + reason is "OData parameter-alias arguments (@name), not generated yet". diff --git a/tools/WrapperGenerator/docs/edge-cases/body-binding-edge-cases.md b/tools/WrapperGenerator/docs/edge-cases/body-binding-edge-cases.md index 9204454b916..99b08fb4f68 100644 --- a/tools/WrapperGenerator/docs/edge-cases/body-binding-edge-cases.md +++ b/tools/WrapperGenerator/docs/edge-cases/body-binding-edge-cases.md @@ -1,15 +1,43 @@ # Body-binding edge cases Request-body property shapes the generator classifies but does not bind. **Every shape reaching -the classifier now binds — the sweep reports 0 unbound properties across all 38 specs.** That is -a statement about the 8,164 operations (57.8% of 14,131) that generate: an operation refused -upstream — 767 suppressed because the published SDK ships no cmdlet, 5,200 unsupported shapes — -contributes no properties to any count in this file. What +the classifier now binds — the sweep reports 0 unbound properties across all 38 specs.** What remains here is one closed entry recording how the last gap was shut, and several classifications with zero population that are retained deliberately: they exist so a future corpus change is reported accurately instead of being silently mis-bound, and each is reported per property at `--log-level Information` and counted by `tools/Measure-BodyPropertyCoverage.ps1`. +**Scope of every count in this file.** These populations cover the bodies of operations the +generator emits. An operation skipped earlier — for an unsupported path segment or an +unresolvable request schema — contributes no properties to any count here, so a zero is evidence +about what we generate, never about what Graph declares. + +That boundary is large. Across the 38 v1.0 specs the generator reads **14,131** operations and +accounts for every one of them (current tree, parity data applied): + +| Population | Count | | +|---|---:|---| +| operation-backed cmdlets | 10,401 | **73.6%** — what actually generates | +| suppressed | 3,173 | the published SDK ships no cmdlet (oracle-derived) | +| unsupported | 557 | 345 call segments on non-action/function operations, 125 parameterized functions mid-route, 42 whose content response is neither a stream nor a resolvable entity, 45 other | +| **total** | **14,131** | | + +The first row rose from 49.8% as the operation shapes landed: actions and functions first, then the +OData `$`-segments (`$count`, `$ref`, `$value`) and PUT, which together had accounted for the bulk +of the unsupported bucket. + +A further 1,336 emitted files are GET dispatchers, which issue no request of their own — 11,737 +files, 10,401 operations. Counting files as operations, or deriving "generated" by subtracting only +the unsupported, overstates coverage: the first double-counts dispatchers, the second silently +folds every suppressed operation into the generated bucket. Both errors were made here before the +accounting was made to balance. + +`DeviceManagement.Actions` has no `openApiDocs_KiotaCompat` spec at all, so none of its operations +appear even in the 14,131. Every "0 unbound" in this file therefore describes the 73.6% that +generates — not the whole v1.0 surface — and must be quoted that way. Restating it against a +different denominator is the error this paragraph exists to prevent, so the figure has to be +updated here whenever the generated population moves. + The type evidence and the policies behind what is bound live in [../body-property-binding.md](../body-property-binding.md). @@ -91,17 +119,11 @@ Entry template (keep field names exact so the file converts cleanly): ## Inline objects and inline enums - **Class:** unsupported-shape -- **Status:** deferred — zero population **among the operations that generate**, which is not - the same as zero in v1.0. +- **Status:** deferred — zero population in v1.0 - **Counts:** 0 occurrences (`Measure-BodyPropertyCoverage.ps1`, 2026-08-12, all 38 specs). -- **Evidence:** the sweep produced no `InlineObject` or `InlineEnum` classification. For entity - CRUD bodies that is a real property of the corpus: Graph declares those objects and enums as - component `$ref`s, which is why referenced-type binding covers them. -- **Why the count is conditional:** action bodies are where Graph *does* write inline objects, - and they never reach the property classifier — an action's `requestBody` is a `$ref` to a - **requestBodies** component whose schema is an inline `type: object`, and the generator skips - the whole operation first (1,528 POSTs corpus-wide, logged as `missing supported request JSON - schema`). This population becomes non-zero the moment action generation lands. + Graph declares every object and enum as a component `$ref`, which is why referenced-type + binding covers the corpus. +- **Evidence:** the sweep produced no `InlineObject` or `InlineEnum` classification. - **Why unsafe today:** kiota synthesises a type name for an anonymous schema from its parent and property, and that name cannot be derived from the spec alone. Guessing it is the failure mode that produced 39 compile errors when numeric formats were first mapped.